Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 1 | //===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===// |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 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. |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 7 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 8 | // |
| 9 | // This file implements semantic analysis for C++ templates. |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 10 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 11 | |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 12 | #include "TreeTransform.h" |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 13 | #include "clang/AST/ASTConsumer.h" |
Chandler Carruth | 5553d0d | 2014-01-07 11:51:46 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
John McCall | bbbbe4e | 2010-03-11 07:50:04 +0000 | [diff] [blame] | 15 | #include "clang/AST/DeclFriend.h" |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclTemplate.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "clang/AST/Expr.h" |
| 18 | #include "clang/AST/ExprCXX.h" |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecursiveASTVisitor.h" |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 20 | #include "clang/AST/TypeVisitor.h" |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 21 | #include "clang/Basic/Builtins.h" |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 22 | #include "clang/Basic/LangOptions.h" |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 23 | #include "clang/Basic/PartialDiagnostic.h" |
David Majnemer | 763584d | 2014-02-06 10:59:19 +0000 | [diff] [blame] | 24 | #include "clang/Basic/TargetInfo.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 25 | #include "clang/Sema/DeclSpec.h" |
| 26 | #include "clang/Sema/Lookup.h" |
| 27 | #include "clang/Sema/ParsedTemplate.h" |
| 28 | #include "clang/Sema/Scope.h" |
| 29 | #include "clang/Sema/SemaInternal.h" |
| 30 | #include "clang/Sema/Template.h" |
| 31 | #include "clang/Sema/TemplateDeduction.h" |
Benjamin Kramer | e0513cb | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallBitVector.h" |
Benjamin Kramer | 4903802 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallString.h" |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringExtras.h" |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 35 | |
Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 36 | #include <iterator> |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 37 | using namespace clang; |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 38 | using namespace sema; |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 39 | |
John McCall | 9b72f89 | 2010-11-10 02:40:36 +0000 | [diff] [blame] | 40 | // Exported for use by Parser. |
| 41 | SourceRange |
| 42 | clang::getTemplateParamsRange(TemplateParameterList const * const *Ps, |
| 43 | unsigned N) { |
| 44 | if (!N) return SourceRange(); |
| 45 | return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc()); |
| 46 | } |
| 47 | |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 48 | namespace clang { |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 49 | /// [temp.constr.decl]p2: A template's associated constraints are |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 50 | /// defined as a single constraint-expression derived from the introduced |
| 51 | /// constraint-expressions [ ... ]. |
| 52 | /// |
| 53 | /// \param Params The template parameter list and optional requires-clause. |
| 54 | /// |
| 55 | /// \param FD The underlying templated function declaration for a function |
| 56 | /// template. |
| 57 | static Expr *formAssociatedConstraints(TemplateParameterList *Params, |
| 58 | FunctionDecl *FD); |
| 59 | } |
| 60 | |
| 61 | static Expr *clang::formAssociatedConstraints(TemplateParameterList *Params, |
| 62 | FunctionDecl *FD) { |
| 63 | // FIXME: Concepts: collect additional introduced constraint-expressions |
| 64 | assert(!FD && "Cannot collect constraints from function declaration yet."); |
| 65 | return Params->getRequiresClause(); |
| 66 | } |
| 67 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 68 | /// Determine whether the declaration found is acceptable as the name |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 69 | /// of a template and, if so, return that template declaration. Otherwise, |
| 70 | /// returns NULL. |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 71 | static NamedDecl *isAcceptableTemplateName(ASTContext &Context, |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 72 | NamedDecl *Orig, |
| 73 | bool AllowFunctionTemplates) { |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 74 | NamedDecl *D = Orig->getUnderlyingDecl(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 76 | if (isa<TemplateDecl>(D)) { |
| 77 | if (!AllowFunctionTemplates && isa<FunctionTemplateDecl>(D)) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 78 | return nullptr; |
| 79 | |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 80 | return Orig; |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 81 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 82 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 83 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { |
| 84 | // C++ [temp.local]p1: |
| 85 | // Like normal (non-template) classes, class templates have an |
| 86 | // injected-class-name (Clause 9). The injected-class-name |
| 87 | // can be used with or without a template-argument-list. When |
| 88 | // it is used without a template-argument-list, it is |
| 89 | // equivalent to the injected-class-name followed by the |
| 90 | // template-parameters of the class template enclosed in |
| 91 | // <>. When it is used with a template-argument-list, it |
| 92 | // refers to the specified class template specialization, |
| 93 | // which could be the current specialization or another |
| 94 | // specialization. |
| 95 | if (Record->isInjectedClassName()) { |
Douglas Gregor | 568a071 | 2009-10-14 17:30:58 +0000 | [diff] [blame] | 96 | Record = cast<CXXRecordDecl>(Record->getDeclContext()); |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 97 | if (Record->getDescribedClassTemplate()) |
| 98 | return Record->getDescribedClassTemplate(); |
| 99 | |
| 100 | if (ClassTemplateSpecializationDecl *Spec |
| 101 | = dyn_cast<ClassTemplateSpecializationDecl>(Record)) |
| 102 | return Spec->getSpecializedTemplate(); |
| 103 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 105 | return nullptr; |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 106 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Richard Smith | cbebd62 | 2018-05-14 20:52:48 +0000 | [diff] [blame] | 108 | // 'using Dependent::foo;' can resolve to a template name. |
| 109 | // 'using typename Dependent::foo;' cannot (not even if 'foo' is an |
| 110 | // injected-class-name). |
| 111 | if (isa<UnresolvedUsingValueDecl>(D)) |
| 112 | return D; |
| 113 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 114 | return nullptr; |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 117 | void Sema::FilterAcceptableTemplateNames(LookupResult &R, |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 118 | bool AllowFunctionTemplates) { |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 119 | // The set of class templates we've already seen. |
| 120 | llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 121 | LookupResult::Filter filter = R.makeFilter(); |
| 122 | while (filter.hasNext()) { |
| 123 | NamedDecl *Orig = filter.next(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 124 | NamedDecl *Repl = isAcceptableTemplateName(Context, Orig, |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 125 | AllowFunctionTemplates); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 126 | if (!Repl) |
| 127 | filter.erase(); |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 128 | else if (Repl != Orig) { |
| 129 | |
| 130 | // C++ [temp.local]p3: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 131 | // A lookup that finds an injected-class-name (10.2) can result in an |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 132 | // ambiguity in certain cases (for example, if it is found in more than |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 133 | // one base class). If all of the injected-class-names that are found |
| 134 | // refer to specializations of the same class template, and if the name |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 135 | // is used as a template-name, the reference refers to the class |
| 136 | // template itself and not a specialization thereof, and is not |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 137 | // ambiguous. |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 138 | if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl)) |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 139 | if (!ClassTemplates.insert(ClassTmpl).second) { |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 140 | filter.erase(); |
| 141 | continue; |
| 142 | } |
John McCall | bd8062d | 2010-08-13 07:02:08 +0000 | [diff] [blame] | 143 | |
| 144 | // FIXME: we promote access to public here as a workaround to |
| 145 | // the fact that LookupResult doesn't let us remember that we |
| 146 | // found this template through a particular injected class name, |
| 147 | // which means we end up doing nasty things to the invariants. |
| 148 | // Pretending that access is public is *much* safer. |
| 149 | filter.replace(Repl, AS_public); |
Douglas Gregor | 41f9030 | 2010-04-12 20:54:26 +0000 | [diff] [blame] | 150 | } |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 151 | } |
| 152 | filter.done(); |
| 153 | } |
| 154 | |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 155 | bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R, |
| 156 | bool AllowFunctionTemplates) { |
Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 157 | for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 158 | if (isAcceptableTemplateName(Context, *I, AllowFunctionTemplates)) |
Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 159 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 160 | |
Douglas Gregor | 8b02cd0 | 2011-04-27 04:48:22 +0000 | [diff] [blame] | 161 | return false; |
Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 164 | TemplateNameKind Sema::isTemplateName(Scope *S, |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 165 | CXXScopeSpec &SS, |
Abramo Bagnara | 7c5dee4 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 166 | bool hasTemplateKeyword, |
Richard Smith | c08b693 | 2018-04-27 02:00:13 +0000 | [diff] [blame] | 167 | const UnqualifiedId &Name, |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 168 | ParsedType ObjectTypePtr, |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 169 | bool EnteringContext, |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 170 | TemplateTy &TemplateResult, |
| 171 | bool &MemberOfUnknownSpecialization) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 172 | assert(getLangOpts().CPlusPlus && "No template names in C!"); |
Douglas Gregor | 411e5ac | 2010-01-11 23:29:10 +0000 | [diff] [blame] | 173 | |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 174 | DeclarationName TName; |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 175 | MemberOfUnknownSpecialization = false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 176 | |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 177 | switch (Name.getKind()) { |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 178 | case UnqualifiedIdKind::IK_Identifier: |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 179 | TName = DeclarationName(Name.Identifier); |
| 180 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 181 | |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 182 | case UnqualifiedIdKind::IK_OperatorFunctionId: |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 183 | TName = Context.DeclarationNames.getCXXOperatorName( |
| 184 | Name.OperatorFunctionId.Operator); |
| 185 | break; |
| 186 | |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 187 | case UnqualifiedIdKind::IK_LiteralOperatorId: |
Alexis Hunt | 3d221f2 | 2009-11-29 07:34:05 +0000 | [diff] [blame] | 188 | TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier); |
| 189 | break; |
Alexis Hunt | ed0530f | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 190 | |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 191 | default: |
| 192 | return TNK_Non_template; |
| 193 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 194 | |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 195 | QualType ObjectType = ObjectTypePtr.get(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 196 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 197 | LookupResult R(*this, TName, Name.getBeginLoc(), LookupOrdinaryName); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 198 | if (LookupTemplateName(R, S, SS, ObjectType, EnteringContext, |
| 199 | MemberOfUnknownSpecialization)) |
| 200 | return TNK_Non_template; |
John McCall | fb3f9ba | 2010-08-28 20:17:00 +0000 | [diff] [blame] | 201 | if (R.empty()) return TNK_Non_template; |
| 202 | if (R.isAmbiguous()) { |
| 203 | // Suppress diagnostics; we'll redo this lookup later. |
John McCall | dcc7140 | 2010-08-13 02:23:42 +0000 | [diff] [blame] | 204 | R.suppressDiagnostics(); |
John McCall | fb3f9ba | 2010-08-28 20:17:00 +0000 | [diff] [blame] | 205 | |
| 206 | // FIXME: we might have ambiguous templates, in which case we |
| 207 | // should at least parse them properly! |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 208 | return TNK_Non_template; |
John McCall | dcc7140 | 2010-08-13 02:23:42 +0000 | [diff] [blame] | 209 | } |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 210 | |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 211 | TemplateName Template; |
| 212 | TemplateNameKind TemplateKind; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 213 | |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 214 | unsigned ResultCount = R.end() - R.begin(); |
| 215 | if (ResultCount > 1) { |
| 216 | // We assume that we'll preserve the qualifier from a function |
| 217 | // template name in other ways. |
| 218 | Template = Context.getOverloadedTemplateName(R.begin(), R.end()); |
| 219 | TemplateKind = TNK_Function_template; |
John McCall | dcc7140 | 2010-08-13 02:23:42 +0000 | [diff] [blame] | 220 | |
| 221 | // We'll do this lookup again later. |
| 222 | R.suppressDiagnostics(); |
Richard Smith | cbebd62 | 2018-05-14 20:52:48 +0000 | [diff] [blame] | 223 | } else if (isa<UnresolvedUsingValueDecl>((*R.begin())->getUnderlyingDecl())) { |
| 224 | // We don't yet know whether this is a template-name or not. |
| 225 | MemberOfUnknownSpecialization = true; |
| 226 | return TNK_Non_template; |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 227 | } else { |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 228 | TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl()); |
| 229 | |
| 230 | if (SS.isSet() && !SS.isInvalid()) { |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 231 | NestedNameSpecifier *Qualifier = SS.getScopeRep(); |
Abramo Bagnara | 7c5dee4 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 232 | Template = Context.getQualifiedTemplateName(Qualifier, |
| 233 | hasTemplateKeyword, TD); |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 234 | } else { |
| 235 | Template = TemplateName(TD); |
| 236 | } |
| 237 | |
John McCall | dcc7140 | 2010-08-13 02:23:42 +0000 | [diff] [blame] | 238 | if (isa<FunctionTemplateDecl>(TD)) { |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 239 | TemplateKind = TNK_Function_template; |
John McCall | dcc7140 | 2010-08-13 02:23:42 +0000 | [diff] [blame] | 240 | |
| 241 | // We'll do this lookup again later. |
| 242 | R.suppressDiagnostics(); |
| 243 | } else { |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 244 | assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) || |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 245 | isa<TypeAliasTemplateDecl>(TD) || isa<VarTemplateDecl>(TD) || |
Faisal Vali | a534f07 | 2018-04-26 00:42:40 +0000 | [diff] [blame] | 246 | isa<BuiltinTemplateDecl>(TD)); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 247 | TemplateKind = |
Faisal Vali | a534f07 | 2018-04-26 00:42:40 +0000 | [diff] [blame] | 248 | isa<VarTemplateDecl>(TD) ? TNK_Var_template : TNK_Type_template; |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 249 | } |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 250 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 251 | |
John McCall | d28ae27 | 2009-12-02 08:04:21 +0000 | [diff] [blame] | 252 | TemplateResult = TemplateTy::make(Template); |
| 253 | return TemplateKind; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Richard Smith | 278890f | 2017-02-10 20:39:58 +0000 | [diff] [blame] | 256 | bool Sema::isDeductionGuideName(Scope *S, const IdentifierInfo &Name, |
| 257 | SourceLocation NameLoc, |
| 258 | ParsedTemplateTy *Template) { |
| 259 | CXXScopeSpec SS; |
| 260 | bool MemberOfUnknownSpecialization = false; |
| 261 | |
| 262 | // We could use redeclaration lookup here, but we don't need to: the |
| 263 | // syntactic form of a deduction guide is enough to identify it even |
| 264 | // if we can't look up the template name at all. |
| 265 | LookupResult R(*this, DeclarationName(&Name), NameLoc, LookupOrdinaryName); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 266 | if (LookupTemplateName(R, S, SS, /*ObjectType*/ QualType(), |
| 267 | /*EnteringContext*/ false, |
| 268 | MemberOfUnknownSpecialization)) |
| 269 | return false; |
Richard Smith | 278890f | 2017-02-10 20:39:58 +0000 | [diff] [blame] | 270 | |
| 271 | if (R.empty()) return false; |
| 272 | if (R.isAmbiguous()) { |
| 273 | // FIXME: Diagnose an ambiguity if we find at least one template. |
| 274 | R.suppressDiagnostics(); |
| 275 | return false; |
| 276 | } |
| 277 | |
| 278 | // We only treat template-names that name type templates as valid deduction |
| 279 | // guide names. |
| 280 | TemplateDecl *TD = R.getAsSingle<TemplateDecl>(); |
| 281 | if (!TD || !getAsTypeTemplateDecl(TD)) |
| 282 | return false; |
| 283 | |
| 284 | if (Template) |
| 285 | *Template = TemplateTy::make(TemplateName(TD)); |
| 286 | return true; |
| 287 | } |
| 288 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 289 | bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II, |
Douglas Gregor | 18473f3 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 290 | SourceLocation IILoc, |
| 291 | Scope *S, |
| 292 | const CXXScopeSpec *SS, |
| 293 | TemplateTy &SuggestedTemplate, |
| 294 | TemplateNameKind &SuggestedKind) { |
| 295 | // We can't recover unless there's a dependent scope specifier preceding the |
| 296 | // template name. |
Douglas Gregor | 20c38a7 | 2010-05-21 23:43:39 +0000 | [diff] [blame] | 297 | // FIXME: Typo correction? |
Douglas Gregor | 18473f3 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 298 | if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || |
| 299 | computeDeclContext(*SS)) |
| 300 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 301 | |
Douglas Gregor | 18473f3 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 302 | // The code is missing a 'template' keyword prior to the dependent template |
| 303 | // name. |
| 304 | NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep(); |
| 305 | Diag(IILoc, diag::err_template_kw_missing) |
| 306 | << Qualifier << II.getName() |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 307 | << FixItHint::CreateInsertion(IILoc, "template "); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 308 | SuggestedTemplate |
Douglas Gregor | 18473f3 | 2010-01-12 21:28:44 +0000 | [diff] [blame] | 309 | = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II)); |
| 310 | SuggestedKind = TNK_Dependent_template_name; |
| 311 | return true; |
| 312 | } |
| 313 | |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 314 | bool Sema::LookupTemplateName(LookupResult &Found, |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 315 | Scope *S, CXXScopeSpec &SS, |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 316 | QualType ObjectType, |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 317 | bool EnteringContext, |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 318 | bool &MemberOfUnknownSpecialization, |
| 319 | SourceLocation TemplateKWLoc) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 320 | // Determine where to perform name lookup |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 321 | MemberOfUnknownSpecialization = false; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 322 | DeclContext *LookupCtx = nullptr; |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 323 | bool IsDependent = false; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 324 | if (!ObjectType.isNull()) { |
| 325 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 326 | // x->B::f, and we are looking into the type of the object. |
| 327 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
| 328 | LookupCtx = computeDeclContext(ObjectType); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 329 | IsDependent = !LookupCtx; |
| 330 | assert((IsDependent || !ObjectType->isIncompleteType() || |
Richard Smith | 5ed7956 | 2013-06-07 20:03:01 +0000 | [diff] [blame] | 331 | ObjectType->castAs<TagType>()->isBeingDefined()) && |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 332 | "Caller should have completed object type"); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 333 | |
Douglas Gregor | bf3a826 | 2012-01-12 16:11:24 +0000 | [diff] [blame] | 334 | // Template names cannot appear inside an Objective-C class or object type. |
| 335 | if (ObjectType->isObjCObjectOrInterfaceType()) { |
| 336 | Found.clear(); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 337 | return false; |
Douglas Gregor | bf3a826 | 2012-01-12 16:11:24 +0000 | [diff] [blame] | 338 | } |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 339 | } else if (SS.isSet()) { |
| 340 | // This nested-name-specifier occurs after another nested-name-specifier, |
| 341 | // so long into the context associated with the prior nested-name-specifier. |
| 342 | LookupCtx = computeDeclContext(SS, EnteringContext); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 343 | IsDependent = !LookupCtx; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 344 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 345 | // The declaration context must be complete. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 346 | if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx)) |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 347 | return true; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | bool ObjectTypeSearchedInScope = false; |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 351 | bool AllowFunctionTemplatesInLookup = true; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 352 | if (LookupCtx) { |
| 353 | // Perform "qualified" name lookup into the declaration context we |
| 354 | // computed, which is either the type of the base of a member access |
| 355 | // expression or the declaration context associated with a prior |
| 356 | // nested-name-specifier. |
| 357 | LookupQualifiedName(Found, LookupCtx); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 358 | |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 359 | // FIXME: The C++ standard does not clearly specify what happens in the |
| 360 | // case where the object type is dependent, and implementations vary. In |
| 361 | // Clang, we treat a name after a . or -> as a template-name if lookup |
| 362 | // finds a non-dependent member or member of the current instantiation that |
| 363 | // is a type template, or finds no such members and lookup in the context |
| 364 | // of the postfix-expression finds a type template. In the latter case, the |
| 365 | // name is nonetheless dependent, and we may resolve it to a member of an |
| 366 | // unknown specialization when we come to instantiate the template. |
| 367 | IsDependent |= Found.wasNotFoundInCurrentInstantiation(); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 370 | if (!SS.isSet() && (ObjectType.isNull() || Found.empty())) { |
| 371 | // C++ [basic.lookup.classref]p1: |
| 372 | // In a class member access expression (5.2.5), if the . or -> token is |
| 373 | // immediately followed by an identifier followed by a <, the |
| 374 | // identifier must be looked up to determine whether the < is the |
| 375 | // beginning of a template argument list (14.2) or a less-than operator. |
| 376 | // The identifier is first looked up in the class of the object |
| 377 | // expression. If the identifier is not found, it is then looked up in |
| 378 | // the context of the entire postfix-expression and shall name a class |
| 379 | // template. |
| 380 | if (S) |
| 381 | LookupName(Found, S); |
| 382 | |
| 383 | if (!ObjectType.isNull()) { |
| 384 | // FIXME: We should filter out all non-type templates here, particularly |
| 385 | // variable templates and concepts. But the exclusion of alias templates |
| 386 | // and template template parameters is a wording defect. |
| 387 | AllowFunctionTemplatesInLookup = false; |
| 388 | ObjectTypeSearchedInScope = true; |
| 389 | } |
| 390 | |
| 391 | IsDependent |= Found.wasNotFoundInCurrentInstantiation(); |
| 392 | } |
| 393 | |
| 394 | if (Found.empty() && !IsDependent) { |
Douglas Gregor | ff18cc1 | 2009-12-31 08:11:17 +0000 | [diff] [blame] | 395 | // If we did not find any names, attempt to correct any typos. |
| 396 | DeclarationName Name = Found.getLookupName(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 397 | Found.clear(); |
Kaelyn Uhrain | 637b5b3 | 2012-01-13 23:10:36 +0000 | [diff] [blame] | 398 | // Simple filter callback that, for keywords, only accepts the C++ *_cast |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 399 | auto FilterCCC = llvm::make_unique<CorrectionCandidateCallback>(); |
| 400 | FilterCCC->WantTypeSpecifiers = false; |
| 401 | FilterCCC->WantExpressionKeywords = false; |
| 402 | FilterCCC->WantRemainingKeywords = false; |
| 403 | FilterCCC->WantCXXNamedCasts = true; |
| 404 | if (TypoCorrection Corrected = CorrectTypo( |
| 405 | Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS, |
| 406 | std::move(FilterCCC), CTK_ErrorRecovery, LookupCtx)) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 407 | Found.setLookupName(Corrected.getCorrection()); |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 408 | if (auto *ND = Corrected.getFoundDecl()) |
| 409 | Found.addDecl(ND); |
Douglas Gregor | 0e7dde5 | 2011-04-24 05:37:28 +0000 | [diff] [blame] | 410 | FilterAcceptableTemplateNames(Found); |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 411 | if (!Found.empty()) { |
Kaelyn Uhrain | 10413a4 | 2013-07-02 23:47:44 +0000 | [diff] [blame] | 412 | if (LookupCtx) { |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 413 | std::string CorrectedStr(Corrected.getAsString(getLangOpts())); |
| 414 | bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && |
Kaelyn Uhrain | 10413a4 | 2013-07-02 23:47:44 +0000 | [diff] [blame] | 415 | Name.getAsString() == CorrectedStr; |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 416 | diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest) |
| 417 | << Name << LookupCtx << DroppedSpecifier |
| 418 | << SS.getRange()); |
Kaelyn Uhrain | 10413a4 | 2013-07-02 23:47:44 +0000 | [diff] [blame] | 419 | } else { |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 420 | diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name); |
Kaelyn Uhrain | 10413a4 | 2013-07-02 23:47:44 +0000 | [diff] [blame] | 421 | } |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 422 | } |
Douglas Gregor | ff18cc1 | 2009-12-31 08:11:17 +0000 | [diff] [blame] | 423 | } else { |
Douglas Gregor | c048c52 | 2010-06-29 19:27:42 +0000 | [diff] [blame] | 424 | Found.setLookupName(Name); |
Douglas Gregor | ff18cc1 | 2009-12-31 08:11:17 +0000 | [diff] [blame] | 425 | } |
| 426 | } |
| 427 | |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 428 | NamedDecl *ExampleLookupResult = |
| 429 | Found.empty() ? nullptr : Found.getRepresentativeDecl(); |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 430 | FilterAcceptableTemplateNames(Found, AllowFunctionTemplatesInLookup); |
Douglas Gregor | fc6c3e7 | 2010-07-16 16:54:17 +0000 | [diff] [blame] | 431 | if (Found.empty()) { |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 432 | if (IsDependent) { |
Douglas Gregor | fc6c3e7 | 2010-07-16 16:54:17 +0000 | [diff] [blame] | 433 | MemberOfUnknownSpecialization = true; |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 434 | return false; |
| 435 | } |
| 436 | |
| 437 | // If a 'template' keyword was used, a lookup that finds only non-template |
| 438 | // names is an error. |
| 439 | if (ExampleLookupResult && TemplateKWLoc.isValid()) { |
| 440 | Diag(Found.getNameLoc(), diag::err_template_kw_refers_to_non_template) |
| 441 | << Found.getLookupName() << SS.getRange(); |
Richard Smith | cbebd62 | 2018-05-14 20:52:48 +0000 | [diff] [blame] | 442 | Diag(ExampleLookupResult->getUnderlyingDecl()->getLocation(), |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 443 | diag::note_template_kw_refers_to_non_template) |
| 444 | << Found.getLookupName(); |
| 445 | return true; |
| 446 | } |
| 447 | |
| 448 | return false; |
Douglas Gregor | fc6c3e7 | 2010-07-16 16:54:17 +0000 | [diff] [blame] | 449 | } |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 450 | |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 451 | if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope && |
Richard Smith | e7d67f2 | 2013-09-03 21:22:41 +0000 | [diff] [blame] | 452 | !getLangOpts().CPlusPlus11) { |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 453 | // C++03 [basic.lookup.classref]p1: |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 454 | // [...] If the lookup in the class of the object expression finds a |
| 455 | // template, the name is also looked up in the context of the entire |
| 456 | // postfix-expression and [...] |
| 457 | // |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 458 | // Note: C++11 does not perform this second lookup. |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 459 | LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(), |
| 460 | LookupOrdinaryName); |
| 461 | LookupName(FoundOuter, S); |
Douglas Gregor | 50a3cdd | 2012-03-10 23:52:41 +0000 | [diff] [blame] | 462 | FilterAcceptableTemplateNames(FoundOuter, /*AllowFunctionTemplates=*/false); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 463 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 464 | if (FoundOuter.empty()) { |
| 465 | // - if the name is not found, the name found in the class of the |
| 466 | // object expression is used, otherwise |
Douglas Gregor | de0a43f | 2011-08-10 21:59:45 +0000 | [diff] [blame] | 467 | } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() || |
| 468 | FoundOuter.isAmbiguous()) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 469 | // - if the name is found in the context of the entire |
| 470 | // postfix-expression and does not name a class template, the name |
| 471 | // found in the class of the object expression is used, otherwise |
Douglas Gregor | de0a43f | 2011-08-10 21:59:45 +0000 | [diff] [blame] | 472 | FoundOuter.clear(); |
John McCall | e9cccd8 | 2010-06-16 08:42:20 +0000 | [diff] [blame] | 473 | } else if (!Found.isSuppressingDiagnostics()) { |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 474 | // - if the name found is a class template, it must refer to the same |
| 475 | // entity as the one found in the class of the object expression, |
| 476 | // otherwise the program is ill-formed. |
| 477 | if (!Found.isSingleResult() || |
| 478 | Found.getFoundDecl()->getCanonicalDecl() |
| 479 | != FoundOuter.getFoundDecl()->getCanonicalDecl()) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 480 | Diag(Found.getNameLoc(), |
Jeffrey Yasskin | 2f96e9f | 2010-06-05 01:39:57 +0000 | [diff] [blame] | 481 | diag::ext_nested_name_member_ref_lookup_ambiguous) |
| 482 | << Found.getLookupName() |
| 483 | << ObjectType; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 484 | Diag(Found.getRepresentativeDecl()->getLocation(), |
| 485 | diag::note_ambig_member_ref_object_type) |
| 486 | << ObjectType; |
| 487 | Diag(FoundOuter.getFoundDecl()->getLocation(), |
| 488 | diag::note_ambig_member_ref_scope); |
| 489 | |
| 490 | // Recover by taking the template that we found in the object |
| 491 | // expression's type. |
| 492 | } |
| 493 | } |
| 494 | } |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 495 | |
| 496 | return false; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 497 | } |
| 498 | |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 499 | void Sema::diagnoseExprIntendedAsTemplateName(Scope *S, ExprResult TemplateName, |
| 500 | SourceLocation Less, |
| 501 | SourceLocation Greater) { |
| 502 | if (TemplateName.isInvalid()) |
| 503 | return; |
| 504 | |
| 505 | DeclarationNameInfo NameInfo; |
| 506 | CXXScopeSpec SS; |
| 507 | LookupNameKind LookupKind; |
| 508 | |
| 509 | DeclContext *LookupCtx = nullptr; |
| 510 | NamedDecl *Found = nullptr; |
Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 511 | bool MissingTemplateKeyword = false; |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 512 | |
| 513 | // Figure out what name we looked up. |
Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 514 | if (auto *DRE = dyn_cast<DeclRefExpr>(TemplateName.get())) { |
| 515 | NameInfo = DRE->getNameInfo(); |
| 516 | SS.Adopt(DRE->getQualifierLoc()); |
| 517 | LookupKind = LookupOrdinaryName; |
| 518 | Found = DRE->getFoundDecl(); |
| 519 | } else if (auto *ME = dyn_cast<MemberExpr>(TemplateName.get())) { |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 520 | NameInfo = ME->getMemberNameInfo(); |
| 521 | SS.Adopt(ME->getQualifierLoc()); |
| 522 | LookupKind = LookupMemberName; |
| 523 | LookupCtx = ME->getBase()->getType()->getAsCXXRecordDecl(); |
| 524 | Found = ME->getMemberDecl(); |
Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 525 | } else if (auto *DSDRE = |
| 526 | dyn_cast<DependentScopeDeclRefExpr>(TemplateName.get())) { |
| 527 | NameInfo = DSDRE->getNameInfo(); |
| 528 | SS.Adopt(DSDRE->getQualifierLoc()); |
| 529 | MissingTemplateKeyword = true; |
| 530 | } else if (auto *DSME = |
| 531 | dyn_cast<CXXDependentScopeMemberExpr>(TemplateName.get())) { |
| 532 | NameInfo = DSME->getMemberNameInfo(); |
| 533 | SS.Adopt(DSME->getQualifierLoc()); |
| 534 | MissingTemplateKeyword = true; |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 535 | } else { |
Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 536 | llvm_unreachable("unexpected kind of potential template name"); |
| 537 | } |
| 538 | |
| 539 | // If this is a dependent-scope lookup, diagnose that the 'template' keyword |
| 540 | // was missing. |
| 541 | if (MissingTemplateKeyword) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 542 | Diag(NameInfo.getBeginLoc(), diag::err_template_kw_missing) |
| 543 | << "" << NameInfo.getName().getAsString() << SourceRange(Less, Greater); |
Richard Smith | bf5bcf2 | 2018-06-26 23:20:26 +0000 | [diff] [blame] | 544 | return; |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | // Try to correct the name by looking for templates and C++ named casts. |
| 548 | struct TemplateCandidateFilter : CorrectionCandidateCallback { |
| 549 | TemplateCandidateFilter() { |
| 550 | WantTypeSpecifiers = false; |
| 551 | WantExpressionKeywords = false; |
| 552 | WantRemainingKeywords = false; |
| 553 | WantCXXNamedCasts = true; |
| 554 | }; |
| 555 | bool ValidateCandidate(const TypoCorrection &Candidate) override { |
| 556 | if (auto *ND = Candidate.getCorrectionDecl()) |
| 557 | return isAcceptableTemplateName(ND->getASTContext(), ND, true); |
| 558 | return Candidate.isKeyword(); |
| 559 | } |
| 560 | }; |
| 561 | |
| 562 | DeclarationName Name = NameInfo.getName(); |
| 563 | if (TypoCorrection Corrected = |
| 564 | CorrectTypo(NameInfo, LookupKind, S, &SS, |
| 565 | llvm::make_unique<TemplateCandidateFilter>(), |
| 566 | CTK_ErrorRecovery, LookupCtx)) { |
| 567 | auto *ND = Corrected.getFoundDecl(); |
| 568 | if (ND) |
| 569 | ND = isAcceptableTemplateName(Context, ND, |
| 570 | /*AllowFunctionTemplates*/ true); |
| 571 | if (ND || Corrected.isKeyword()) { |
| 572 | if (LookupCtx) { |
| 573 | std::string CorrectedStr(Corrected.getAsString(getLangOpts())); |
| 574 | bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && |
| 575 | Name.getAsString() == CorrectedStr; |
| 576 | diagnoseTypo(Corrected, |
| 577 | PDiag(diag::err_non_template_in_member_template_id_suggest) |
| 578 | << Name << LookupCtx << DroppedSpecifier |
Richard Smith | 52f8d19 | 2017-05-10 21:32:16 +0000 | [diff] [blame] | 579 | << SS.getRange(), false); |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 580 | } else { |
| 581 | diagnoseTypo(Corrected, |
| 582 | PDiag(diag::err_non_template_in_template_id_suggest) |
Richard Smith | 52f8d19 | 2017-05-10 21:32:16 +0000 | [diff] [blame] | 583 | << Name, false); |
Richard Smith | 42bc73a | 2017-05-10 02:30:28 +0000 | [diff] [blame] | 584 | } |
| 585 | if (Found) |
| 586 | Diag(Found->getLocation(), |
| 587 | diag::note_non_template_in_template_id_found); |
| 588 | return; |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | Diag(NameInfo.getLoc(), diag::err_non_template_in_template_id) |
| 593 | << Name << SourceRange(Less, Greater); |
| 594 | if (Found) |
| 595 | Diag(Found->getLocation(), diag::note_non_template_in_template_id_found); |
| 596 | } |
| 597 | |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 598 | /// ActOnDependentIdExpression - Handle a dependent id-expression that |
| 599 | /// was just parsed. This is only possible with an explicit scope |
| 600 | /// specifier naming a dependent type. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 601 | ExprResult |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 602 | Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 603 | SourceLocation TemplateKWLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 604 | const DeclarationNameInfo &NameInfo, |
John McCall | cd4b477 | 2009-12-02 03:53:29 +0000 | [diff] [blame] | 605 | bool isAddressOfOperand, |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 606 | const TemplateArgumentListInfo *TemplateArgs) { |
John McCall | 87fe5d5 | 2010-05-20 01:18:31 +0000 | [diff] [blame] | 607 | DeclContext *DC = getFunctionLevelDeclContext(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 608 | |
Reid Kleckner | 1af391df | 2016-03-11 18:59:12 +0000 | [diff] [blame] | 609 | // C++11 [expr.prim.general]p12: |
| 610 | // An id-expression that denotes a non-static data member or non-static |
| 611 | // member function of a class can only be used: |
| 612 | // (...) |
| 613 | // - if that id-expression denotes a non-static data member and it |
| 614 | // appears in an unevaluated operand. |
| 615 | // |
| 616 | // If this might be the case, form a DependentScopeDeclRefExpr instead of a |
| 617 | // CXXDependentScopeMemberExpr. The former can instantiate to either |
| 618 | // DeclRefExpr or MemberExpr depending on lookup results, while the latter is |
| 619 | // always a MemberExpr. |
| 620 | bool MightBeCxx11UnevalField = |
| 621 | getLangOpts().CPlusPlus11 && isUnevaluatedContext(); |
| 622 | |
Akira Hatanaka | d644e02 | 2016-12-16 03:19:41 +0000 | [diff] [blame] | 623 | // Check if the nested name specifier is an enum type. |
| 624 | bool IsEnum = false; |
| 625 | if (NestedNameSpecifier *NNS = SS.getScopeRep()) |
| 626 | IsEnum = dyn_cast_or_null<EnumType>(NNS->getAsType()); |
| 627 | |
| 628 | if (!MightBeCxx11UnevalField && !isAddressOfOperand && !IsEnum && |
Reid Kleckner | 1af391df | 2016-03-11 18:59:12 +0000 | [diff] [blame] | 629 | isa<CXXMethodDecl>(DC) && cast<CXXMethodDecl>(DC)->isInstance()) { |
Brian Gesiak | 5488ab4 | 2019-01-11 01:54:53 +0000 | [diff] [blame] | 630 | QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 631 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 632 | // Since the 'this' expression is synthesized, we don't need to |
| 633 | // perform the double-lookup check. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 634 | NamedDecl *FirstQualifierInScope = nullptr; |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 635 | |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 636 | return CXXDependentScopeMemberExpr::Create( |
| 637 | Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true, |
| 638 | /*Op*/ SourceLocation(), SS.getWithLocInContext(Context), TemplateKWLoc, |
| 639 | FirstQualifierInScope, NameInfo, TemplateArgs); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 640 | } |
| 641 | |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 642 | return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 643 | } |
| 644 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 645 | ExprResult |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 646 | Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 647 | SourceLocation TemplateKWLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 648 | const DeclarationNameInfo &NameInfo, |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 649 | const TemplateArgumentListInfo *TemplateArgs) { |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 650 | return DependentScopeDeclRefExpr::Create( |
| 651 | Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo, |
| 652 | TemplateArgs); |
Douglas Gregor | 55ad91f | 2008-12-18 19:37:40 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 655 | |
| 656 | /// Determine whether we would be unable to instantiate this template (because |
| 657 | /// it either has no definition, or is in the process of being instantiated). |
| 658 | bool Sema::DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation, |
| 659 | NamedDecl *Instantiation, |
| 660 | bool InstantiatedFromMember, |
| 661 | const NamedDecl *Pattern, |
| 662 | const NamedDecl *PatternDef, |
| 663 | TemplateSpecializationKind TSK, |
| 664 | bool Complain /*= true*/) { |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 665 | assert(isa<TagDecl>(Instantiation) || isa<FunctionDecl>(Instantiation) || |
| 666 | isa<VarDecl>(Instantiation)); |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 667 | |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 668 | bool IsEntityBeingDefined = false; |
| 669 | if (const TagDecl *TD = dyn_cast_or_null<TagDecl>(PatternDef)) |
| 670 | IsEntityBeingDefined = TD->isBeingDefined(); |
| 671 | |
| 672 | if (PatternDef && !IsEntityBeingDefined) { |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 673 | NamedDecl *SuggestedDef = nullptr; |
| 674 | if (!hasVisibleDefinition(const_cast<NamedDecl*>(PatternDef), &SuggestedDef, |
| 675 | /*OnlyNeedComplete*/false)) { |
| 676 | // If we're allowed to diagnose this and recover, do so. |
| 677 | bool Recover = Complain && !isSFINAEContext(); |
| 678 | if (Complain) |
| 679 | diagnoseMissingImport(PointOfInstantiation, SuggestedDef, |
| 680 | Sema::MissingImportKind::Definition, Recover); |
| 681 | return !Recover; |
| 682 | } |
| 683 | return false; |
| 684 | } |
| 685 | |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 686 | if (!Complain || (PatternDef && PatternDef->isInvalidDecl())) |
| 687 | return true; |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 688 | |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 689 | llvm::Optional<unsigned> Note; |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 690 | QualType InstantiationTy; |
| 691 | if (TagDecl *TD = dyn_cast<TagDecl>(Instantiation)) |
| 692 | InstantiationTy = Context.getTypeDeclType(TD); |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 693 | if (PatternDef) { |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 694 | Diag(PointOfInstantiation, |
| 695 | diag::err_template_instantiate_within_definition) |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 696 | << /*implicit|explicit*/(TSK != TSK_ImplicitInstantiation) |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 697 | << InstantiationTy; |
| 698 | // Not much point in noting the template declaration here, since |
| 699 | // we're lexically inside it. |
| 700 | Instantiation->setInvalidDecl(); |
| 701 | } else if (InstantiatedFromMember) { |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 702 | if (isa<FunctionDecl>(Instantiation)) { |
| 703 | Diag(PointOfInstantiation, |
| 704 | diag::err_explicit_instantiation_undefined_member) |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 705 | << /*member function*/ 1 << Instantiation->getDeclName() |
| 706 | << Instantiation->getDeclContext(); |
| 707 | Note = diag::note_explicit_instantiation_here; |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 708 | } else { |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 709 | assert(isa<TagDecl>(Instantiation) && "Must be a TagDecl!"); |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 710 | Diag(PointOfInstantiation, |
| 711 | diag::err_implicit_instantiate_member_undefined) |
| 712 | << InstantiationTy; |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 713 | Note = diag::note_member_declared_at; |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 714 | } |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 715 | } else { |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 716 | if (isa<FunctionDecl>(Instantiation)) { |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 717 | Diag(PointOfInstantiation, |
| 718 | diag::err_explicit_instantiation_undefined_func_template) |
| 719 | << Pattern; |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 720 | Note = diag::note_explicit_instantiation_here; |
| 721 | } else if (isa<TagDecl>(Instantiation)) { |
Richard Smith | 6f4e2e0 | 2016-08-23 19:41:39 +0000 | [diff] [blame] | 722 | Diag(PointOfInstantiation, diag::err_template_instantiate_undefined) |
| 723 | << (TSK != TSK_ImplicitInstantiation) |
| 724 | << InstantiationTy; |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 725 | Note = diag::note_template_decl_here; |
| 726 | } else { |
| 727 | assert(isa<VarDecl>(Instantiation) && "Must be a VarDecl!"); |
| 728 | if (isa<VarTemplateSpecializationDecl>(Instantiation)) { |
| 729 | Diag(PointOfInstantiation, |
| 730 | diag::err_explicit_instantiation_undefined_var_template) |
| 731 | << Instantiation; |
| 732 | Instantiation->setInvalidDecl(); |
| 733 | } else |
| 734 | Diag(PointOfInstantiation, |
| 735 | diag::err_explicit_instantiation_undefined_member) |
| 736 | << /*static data member*/ 2 << Instantiation->getDeclName() |
| 737 | << Instantiation->getDeclContext(); |
| 738 | Note = diag::note_explicit_instantiation_here; |
| 739 | } |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 740 | } |
Richard Smith | edbc6e9 | 2016-10-14 21:41:24 +0000 | [diff] [blame] | 741 | if (Note) // Diagnostics were emitted. |
| 742 | Diag(Pattern->getLocation(), Note.getValue()); |
Vassil Vassilev | b21ee08 | 2016-08-18 22:01:25 +0000 | [diff] [blame] | 743 | |
| 744 | // In general, Instantiation isn't marked invalid to get more than one |
| 745 | // error for multiple undefined instantiations. But the code that does |
| 746 | // explicit declaration -> explicit definition conversion can't handle |
| 747 | // invalid declarations, so mark as invalid in that case. |
| 748 | if (TSK == TSK_ExplicitInstantiationDeclaration) |
| 749 | Instantiation->setInvalidDecl(); |
| 750 | return true; |
| 751 | } |
| 752 | |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 753 | /// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining |
| 754 | /// that the template parameter 'PrevDecl' is being shadowed by a new |
| 755 | /// declaration at location Loc. Returns true to indicate that this is |
| 756 | /// an error, and false otherwise. |
Douglas Gregor | f4ef4d2 | 2011-10-20 17:58:49 +0000 | [diff] [blame] | 757 | void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) { |
Douglas Gregor | 5daeee2 | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 758 | assert(PrevDecl->isTemplateParameter() && "Not a template parameter"); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 759 | |
| 760 | // Microsoft Visual C++ permits template parameters to be shadowed. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 761 | if (getLangOpts().MicrosoftExt) |
Douglas Gregor | f4ef4d2 | 2011-10-20 17:58:49 +0000 | [diff] [blame] | 762 | return; |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 763 | |
| 764 | // C++ [temp.local]p4: |
| 765 | // A template-parameter shall not be redeclared within its |
| 766 | // scope (including nested scopes). |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 767 | Diag(Loc, diag::err_template_param_shadow) |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 768 | << cast<NamedDecl>(PrevDecl)->getDeclName(); |
| 769 | Diag(PrevDecl->getLocation(), diag::note_template_param_here); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 772 | /// AdjustDeclIfTemplate - If the given decl happens to be a template, reset |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 773 | /// the parameter D to reference the templated declaration and return a pointer |
| 774 | /// to the template declaration. Otherwise, do nothing to D and return null. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 775 | TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) { |
| 776 | if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) { |
| 777 | D = Temp->getTemplatedDecl(); |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 778 | return Temp; |
| 779 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 780 | return nullptr; |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 781 | } |
| 782 | |
Douglas Gregor | eb29d18 | 2011-01-05 17:40:24 +0000 | [diff] [blame] | 783 | ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion( |
| 784 | SourceLocation EllipsisLoc) const { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 785 | assert(Kind == Template && |
Douglas Gregor | eb29d18 | 2011-01-05 17:40:24 +0000 | [diff] [blame] | 786 | "Only template template arguments can be pack expansions here"); |
| 787 | assert(getAsTemplate().get().containsUnexpandedParameterPack() && |
| 788 | "Template template argument pack expansion without packs"); |
| 789 | ParsedTemplateArgument Result(*this); |
| 790 | Result.EllipsisLoc = EllipsisLoc; |
| 791 | return Result; |
| 792 | } |
| 793 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 794 | static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef, |
| 795 | const ParsedTemplateArgument &Arg) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 796 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 797 | switch (Arg.getKind()) { |
| 798 | case ParsedTemplateArgument::Type: { |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 799 | TypeSourceInfo *DI; |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 800 | QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 801 | if (!DI) |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 802 | DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation()); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 803 | return TemplateArgumentLoc(TemplateArgument(T), DI); |
| 804 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 805 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 806 | case ParsedTemplateArgument::NonType: { |
| 807 | Expr *E = static_cast<Expr *>(Arg.getAsExpr()); |
| 808 | return TemplateArgumentLoc(TemplateArgument(E), E); |
| 809 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 810 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 811 | case ParsedTemplateArgument::Template: { |
John McCall | 3e56fd4 | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 812 | TemplateName Template = Arg.getAsTemplate().get(); |
Douglas Gregor | e1d60df | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 813 | TemplateArgument TArg; |
| 814 | if (Arg.getEllipsisLoc().isValid()) |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 815 | TArg = TemplateArgument(Template, Optional<unsigned int>()); |
Douglas Gregor | e1d60df | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 816 | else |
| 817 | TArg = Template; |
| 818 | return TemplateArgumentLoc(TArg, |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 819 | Arg.getScopeSpec().getWithLocInContext( |
| 820 | SemaRef.Context), |
Douglas Gregor | eb29d18 | 2011-01-05 17:40:24 +0000 | [diff] [blame] | 821 | Arg.getLocation(), |
| 822 | Arg.getEllipsisLoc()); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 823 | } |
| 824 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 825 | |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 826 | llvm_unreachable("Unhandled parsed template argument"); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 827 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 828 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 829 | /// Translates template arguments as provided by the parser |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 830 | /// into template arguments used by semantic analysis. |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 831 | void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn, |
| 832 | TemplateArgumentListInfo &TemplateArgs) { |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 833 | for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I) |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 834 | TemplateArgs.addArgument(translateTemplateArgument(*this, |
| 835 | TemplateArgsIn[I])); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 836 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 837 | |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 838 | static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S, |
| 839 | SourceLocation Loc, |
| 840 | IdentifierInfo *Name) { |
| 841 | NamedDecl *PrevDecl = SemaRef.LookupSingleName( |
Richard Smith | becb92d | 2017-10-10 22:33:17 +0000 | [diff] [blame] | 842 | S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration); |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 843 | if (PrevDecl && PrevDecl->isTemplateParameter()) |
| 844 | SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl); |
| 845 | } |
| 846 | |
Richard Smith | 77a9c60 | 2018-02-28 03:02:23 +0000 | [diff] [blame] | 847 | /// Convert a parsed type into a parsed template argument. This is mostly |
| 848 | /// trivial, except that we may have parsed a C++17 deduced class template |
| 849 | /// specialization type, in which case we should form a template template |
| 850 | /// argument instead of a type template argument. |
| 851 | ParsedTemplateArgument Sema::ActOnTemplateTypeArgument(TypeResult ParsedType) { |
| 852 | TypeSourceInfo *TInfo; |
| 853 | QualType T = GetTypeFromParser(ParsedType.get(), &TInfo); |
| 854 | if (T.isNull()) |
| 855 | return ParsedTemplateArgument(); |
| 856 | assert(TInfo && "template argument with no location"); |
| 857 | |
| 858 | // If we might have formed a deduced template specialization type, convert |
| 859 | // it to a template template argument. |
| 860 | if (getLangOpts().CPlusPlus17) { |
| 861 | TypeLoc TL = TInfo->getTypeLoc(); |
| 862 | SourceLocation EllipsisLoc; |
| 863 | if (auto PET = TL.getAs<PackExpansionTypeLoc>()) { |
| 864 | EllipsisLoc = PET.getEllipsisLoc(); |
| 865 | TL = PET.getPatternLoc(); |
| 866 | } |
| 867 | |
| 868 | CXXScopeSpec SS; |
| 869 | if (auto ET = TL.getAs<ElaboratedTypeLoc>()) { |
| 870 | SS.Adopt(ET.getQualifierLoc()); |
| 871 | TL = ET.getNamedTypeLoc(); |
| 872 | } |
| 873 | |
| 874 | if (auto DTST = TL.getAs<DeducedTemplateSpecializationTypeLoc>()) { |
| 875 | TemplateName Name = DTST.getTypePtr()->getTemplateName(); |
| 876 | if (SS.isSet()) |
| 877 | Name = Context.getQualifiedTemplateName(SS.getScopeRep(), |
| 878 | /*HasTemplateKeyword*/ false, |
| 879 | Name.getAsTemplateDecl()); |
| 880 | ParsedTemplateArgument Result(SS, TemplateTy::make(Name), |
| 881 | DTST.getTemplateNameLoc()); |
| 882 | if (EllipsisLoc.isValid()) |
| 883 | Result = Result.getTemplatePackExpansion(EllipsisLoc); |
| 884 | return Result; |
| 885 | } |
| 886 | } |
| 887 | |
| 888 | // This is a normal type template argument. Note, if the type template |
| 889 | // argument is an injected-class-name for a template, it has a dual nature |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 890 | // and can be used as either a type or a template. We handle that in |
Richard Smith | 77a9c60 | 2018-02-28 03:02:23 +0000 | [diff] [blame] | 891 | // convertTypeTemplateArgumentToTemplate. |
| 892 | return ParsedTemplateArgument(ParsedTemplateArgument::Type, |
| 893 | ParsedType.get().getAsOpaquePtr(), |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 894 | TInfo->getTypeLoc().getBeginLoc()); |
Richard Smith | 77a9c60 | 2018-02-28 03:02:23 +0000 | [diff] [blame] | 895 | } |
| 896 | |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 897 | /// ActOnTypeParameter - Called when a C++ template type parameter |
| 898 | /// (e.g., "typename T") has been parsed. Typename specifies whether |
| 899 | /// the keyword "typename" was used to declare the type parameter |
| 900 | /// (otherwise, "class" was used), and KeyLoc is the location of the |
| 901 | /// "class" or "typename" keyword. ParamName is the name of the |
| 902 | /// parameter (NULL indicates an unnamed template parameter) and |
Chandler Carruth | 0883632 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 903 | /// ParamNameLoc is the location of the parameter name (if any). |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 904 | /// If the type parameter has a default argument, it will be added |
| 905 | /// later via ActOnTypeParameterDefault. |
Faisal Vali | be29403 | 2017-12-23 18:56:34 +0000 | [diff] [blame] | 906 | NamedDecl *Sema::ActOnTypeParameter(Scope *S, bool Typename, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 907 | SourceLocation EllipsisLoc, |
| 908 | SourceLocation KeyLoc, |
| 909 | IdentifierInfo *ParamName, |
| 910 | SourceLocation ParamNameLoc, |
| 911 | unsigned Depth, unsigned Position, |
| 912 | SourceLocation EqualLoc, |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 913 | ParsedType DefaultArg) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 914 | assert(S->isTemplateParamScope() && |
| 915 | "Template type parameter not in template parameter scope!"); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 916 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 917 | SourceLocation Loc = ParamNameLoc; |
| 918 | if (!ParamName) |
| 919 | Loc = KeyLoc; |
| 920 | |
Nikola Smiljanic | 69fdc9f | 2014-06-06 02:58:59 +0000 | [diff] [blame] | 921 | bool IsParameterPack = EllipsisLoc.isValid(); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 922 | TemplateTypeParmDecl *Param |
John McCall | f7b2fb5 | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 923 | = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(), |
Abramo Bagnara | b3185b0 | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 924 | KeyLoc, Loc, Depth, Position, ParamName, |
Nikola Smiljanic | 69fdc9f | 2014-06-06 02:58:59 +0000 | [diff] [blame] | 925 | Typename, IsParameterPack); |
Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 926 | Param->setAccess(AS_public); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 927 | |
| 928 | if (ParamName) { |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 929 | maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName); |
| 930 | |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 931 | // Add the template parameter into the current scope. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 932 | S->AddDecl(Param); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 933 | IdResolver.AddDecl(Param); |
| 934 | } |
| 935 | |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 936 | // C++0x [temp.param]p9: |
| 937 | // A default template-argument may be specified for any kind of |
| 938 | // template-parameter that is not a template parameter pack. |
Nikola Smiljanic | 69fdc9f | 2014-06-06 02:58:59 +0000 | [diff] [blame] | 939 | if (DefaultArg && IsParameterPack) { |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 940 | Diag(EqualLoc, diag::err_template_param_pack_default_arg); |
David Blaikie | efdccaa | 2016-01-15 23:43:34 +0000 | [diff] [blame] | 941 | DefaultArg = nullptr; |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 944 | // Handle the default argument, if provided. |
| 945 | if (DefaultArg) { |
| 946 | TypeSourceInfo *DefaultTInfo; |
| 947 | GetTypeFromParser(DefaultArg, &DefaultTInfo); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 948 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 949 | assert(DefaultTInfo && "expected source information for type"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 950 | |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 951 | // Check for unexpanded parameter packs. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 952 | if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo, |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 953 | UPPC_DefaultArgument)) |
| 954 | return Param; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 955 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 956 | // Check the template argument itself. |
| 957 | if (CheckTemplateArgument(Param, DefaultTInfo)) { |
| 958 | Param->setInvalidDecl(); |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 959 | return Param; |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 960 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 961 | |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 962 | Param->setDefaultArgument(DefaultTInfo); |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 963 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 964 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 965 | return Param; |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 968 | /// Check that the type of a non-type template parameter is |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 969 | /// well-formed. |
| 970 | /// |
| 971 | /// \returns the (possibly-promoted) parameter type if valid; |
| 972 | /// otherwise, produces a diagnostic and returns a NULL type. |
Richard Smith | 15361a2 | 2016-12-28 06:27:18 +0000 | [diff] [blame] | 973 | QualType Sema::CheckNonTypeTemplateParameterType(TypeSourceInfo *&TSI, |
| 974 | SourceLocation Loc) { |
| 975 | if (TSI->getType()->isUndeducedType()) { |
Erik Pilkington | 9f9462a | 2018-08-07 22:59:02 +0000 | [diff] [blame] | 976 | // C++17 [temp.dep.expr]p3: |
Richard Smith | 15361a2 | 2016-12-28 06:27:18 +0000 | [diff] [blame] | 977 | // An id-expression is type-dependent if it contains |
| 978 | // - an identifier associated by name lookup with a non-type |
| 979 | // template-parameter declared with a type that contains a |
| 980 | // placeholder type (7.1.7.4), |
| 981 | TSI = SubstAutoTypeSourceInfo(TSI, Context.DependentTy); |
| 982 | } |
| 983 | |
| 984 | return CheckNonTypeTemplateParameterType(TSI->getType(), Loc); |
| 985 | } |
| 986 | |
| 987 | QualType Sema::CheckNonTypeTemplateParameterType(QualType T, |
| 988 | SourceLocation Loc) { |
Douglas Gregor | a09387d | 2010-05-23 19:57:01 +0000 | [diff] [blame] | 989 | // We don't allow variably-modified types as the type of non-type template |
| 990 | // parameters. |
| 991 | if (T->isVariablyModifiedType()) { |
| 992 | Diag(Loc, diag::err_variably_modified_nontype_template_param) |
| 993 | << T; |
| 994 | return QualType(); |
| 995 | } |
| 996 | |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 997 | // C++ [temp.param]p4: |
| 998 | // |
| 999 | // A non-type template-parameter shall have one of the following |
| 1000 | // (optionally cv-qualified) types: |
| 1001 | // |
| 1002 | // -- integral or enumeration type, |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 1003 | if (T->isIntegralOrEnumerationType() || |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1004 | // -- pointer to object or pointer to function, |
Eli Friedman | a170cd6 | 2010-08-05 02:49:48 +0000 | [diff] [blame] | 1005 | T->isPointerType() || |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1006 | // -- reference to object or reference to function, |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1007 | T->isReferenceType() || |
Douglas Gregor | 80af313 | 2011-05-21 23:15:46 +0000 | [diff] [blame] | 1008 | // -- pointer to member, |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1009 | T->isMemberPointerType() || |
Douglas Gregor | 80af313 | 2011-05-21 23:15:46 +0000 | [diff] [blame] | 1010 | // -- std::nullptr_t. |
| 1011 | T->isNullPtrType() || |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1012 | // If T is a dependent type, we can't do the check now, so we |
| 1013 | // assume that it is well-formed. |
Richard Smith | 5f27438 | 2016-09-28 23:55:27 +0000 | [diff] [blame] | 1014 | T->isDependentType() || |
| 1015 | // Allow use of auto in template parameter declarations. |
| 1016 | T->isUndeducedType()) { |
Richard Smith | d0e1c95 | 2012-03-13 07:21:50 +0000 | [diff] [blame] | 1017 | // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter |
| 1018 | // are ignored when determining its type. |
| 1019 | return T.getUnqualifiedType(); |
| 1020 | } |
| 1021 | |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1022 | // C++ [temp.param]p8: |
| 1023 | // |
| 1024 | // A non-type template-parameter of type "array of T" or |
| 1025 | // "function returning T" is adjusted to be of type "pointer to |
| 1026 | // T" or "pointer to function returning T", respectively. |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 1027 | else if (T->isArrayType() || T->isFunctionType()) |
| 1028 | return Context.getDecayedType(T); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1029 | |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1030 | Diag(Loc, diag::err_template_nontype_parm_bad_type) |
| 1031 | << T; |
| 1032 | |
| 1033 | return QualType(); |
| 1034 | } |
| 1035 | |
Faisal Vali | be29403 | 2017-12-23 18:56:34 +0000 | [diff] [blame] | 1036 | NamedDecl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1037 | unsigned Depth, |
| 1038 | unsigned Position, |
| 1039 | SourceLocation EqualLoc, |
John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1040 | Expr *Default) { |
John McCall | 8cb7bdf | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 1041 | TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); |
Richard Smith | 15361a2 | 2016-12-28 06:27:18 +0000 | [diff] [blame] | 1042 | |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1043 | // Check that we have valid decl-specifiers specified. |
| 1044 | auto CheckValidDeclSpecifiers = [this, &D] { |
| 1045 | // C++ [temp.param] |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1046 | // p1 |
Malcolm Parsons | fab3680 | 2018-04-16 08:31:08 +0000 | [diff] [blame] | 1047 | // template-parameter: |
| 1048 | // ... |
| 1049 | // parameter-declaration |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1050 | // p2 |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1051 | // ... A storage class shall not be specified in a template-parameter |
| 1052 | // declaration. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1053 | // [dcl.typedef]p1: |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1054 | // The typedef specifier [...] shall not be used in the decl-specifier-seq |
| 1055 | // of a parameter-declaration |
| 1056 | const DeclSpec &DS = D.getDeclSpec(); |
| 1057 | auto EmitDiag = [this](SourceLocation Loc) { |
| 1058 | Diag(Loc, diag::err_invalid_decl_specifier_in_nontype_parm) |
| 1059 | << FixItHint::CreateRemoval(Loc); |
| 1060 | }; |
| 1061 | if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) |
| 1062 | EmitDiag(DS.getStorageClassSpecLoc()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1063 | |
Sam McCall | 1371cba | 2017-12-22 07:09:51 +0000 | [diff] [blame] | 1064 | if (DS.getThreadStorageClassSpec() != TSCS_unspecified) |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1065 | EmitDiag(DS.getThreadStorageClassSpecLoc()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1066 | |
| 1067 | // [dcl.inline]p1: |
| 1068 | // The inline specifier can be applied only to the declaration or |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1069 | // definition of a variable or function. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1070 | |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1071 | if (DS.isInlineSpecified()) |
| 1072 | EmitDiag(DS.getInlineSpecLoc()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1073 | |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1074 | // [dcl.constexpr]p1: |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1075 | // The constexpr specifier shall be applied only to the definition of a |
| 1076 | // variable or variable template or the declaration of a function or |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1077 | // function template. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1078 | |
Faisal Vali | a223d1c | 2017-12-22 03:50:55 +0000 | [diff] [blame] | 1079 | if (DS.isConstexprSpecified()) |
| 1080 | EmitDiag(DS.getConstexprSpecLoc()); |
| 1081 | |
| 1082 | // [dcl.fct.spec]p1: |
| 1083 | // Function-specifiers can be used only in function declarations. |
| 1084 | |
| 1085 | if (DS.isVirtualSpecified()) |
| 1086 | EmitDiag(DS.getVirtualSpecLoc()); |
| 1087 | |
| 1088 | if (DS.isExplicitSpecified()) |
| 1089 | EmitDiag(DS.getExplicitSpecLoc()); |
| 1090 | |
| 1091 | if (DS.isNoreturnSpecified()) |
| 1092 | EmitDiag(DS.getNoreturnSpecLoc()); |
| 1093 | }; |
| 1094 | |
| 1095 | CheckValidDeclSpecifiers(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1096 | |
Richard Smith | 15361a2 | 2016-12-28 06:27:18 +0000 | [diff] [blame] | 1097 | if (TInfo->getType()->isUndeducedType()) { |
| 1098 | Diag(D.getIdentifierLoc(), |
| 1099 | diag::warn_cxx14_compat_template_nontype_parm_auto_type) |
| 1100 | << QualType(TInfo->getType()->getContainedAutoType(), 0); |
| 1101 | } |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1102 | |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1103 | assert(S->isTemplateParamScope() && |
| 1104 | "Non-type template parameter not in template parameter scope!"); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1105 | bool Invalid = false; |
| 1106 | |
Richard Smith | 15361a2 | 2016-12-28 06:27:18 +0000 | [diff] [blame] | 1107 | QualType T = CheckNonTypeTemplateParameterType(TInfo, D.getIdentifierLoc()); |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 1108 | if (T.isNull()) { |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1109 | T = Context.IntTy; // Recover with an 'int' type. |
Douglas Gregor | ce0fc86f | 2009-03-09 16:46:39 +0000 | [diff] [blame] | 1110 | Invalid = true; |
| 1111 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1112 | |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 1113 | IdentifierInfo *ParamName = D.getIdentifier(); |
Douglas Gregor | da3cc0d | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 1114 | bool IsParameterPack = D.hasEllipsis(); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1115 | NonTypeTemplateParmDecl *Param = NonTypeTemplateParmDecl::Create( |
| 1116 | Context, Context.getTranslationUnitDecl(), D.getBeginLoc(), |
| 1117 | D.getIdentifierLoc(), Depth, Position, ParamName, T, IsParameterPack, |
| 1118 | TInfo); |
Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 1119 | Param->setAccess(AS_public); |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 1120 | |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1121 | if (Invalid) |
| 1122 | Param->setInvalidDecl(); |
| 1123 | |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 1124 | if (ParamName) { |
| 1125 | maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(), |
| 1126 | ParamName); |
| 1127 | |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1128 | // Add the template parameter into the current scope. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1129 | S->AddDecl(Param); |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1130 | IdResolver.AddDecl(Param); |
| 1131 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1132 | |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1133 | // C++0x [temp.param]p9: |
| 1134 | // A default template-argument may be specified for any kind of |
| 1135 | // template-parameter that is not a template parameter pack. |
| 1136 | if (Default && IsParameterPack) { |
| 1137 | Diag(EqualLoc, diag::err_template_param_pack_default_arg); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1138 | Default = nullptr; |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1141 | // Check the well-formedness of the default template argument, if provided. |
Douglas Gregor | da3cc0d | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 1142 | if (Default) { |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 1143 | // Check for unexpanded parameter packs. |
| 1144 | if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument)) |
| 1145 | return Param; |
| 1146 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1147 | TemplateArgument Converted; |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 1148 | ExprResult DefaultRes = |
| 1149 | CheckTemplateArgument(Param, Param->getType(), Default, Converted); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1150 | if (DefaultRes.isInvalid()) { |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1151 | Param->setInvalidDecl(); |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1152 | return Param; |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1153 | } |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1154 | Default = DefaultRes.get(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1155 | |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 1156 | Param->setDefaultArgument(Default); |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1157 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1158 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1159 | return Param; |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1160 | } |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1161 | |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1162 | /// ActOnTemplateTemplateParameter - Called when a C++ template template |
James Dennett | 2a4d13c | 2012-06-15 07:13:21 +0000 | [diff] [blame] | 1163 | /// parameter (e.g. T in template <template \<typename> class T> class array) |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1164 | /// has been parsed. S is the current scope. |
Faisal Vali | be29403 | 2017-12-23 18:56:34 +0000 | [diff] [blame] | 1165 | NamedDecl *Sema::ActOnTemplateTemplateParameter(Scope* S, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1166 | SourceLocation TmpLoc, |
Richard Trieu | 9becef6 | 2011-09-09 03:18:59 +0000 | [diff] [blame] | 1167 | TemplateParameterList *Params, |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1168 | SourceLocation EllipsisLoc, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1169 | IdentifierInfo *Name, |
| 1170 | SourceLocation NameLoc, |
| 1171 | unsigned Depth, |
| 1172 | unsigned Position, |
| 1173 | SourceLocation EqualLoc, |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1174 | ParsedTemplateArgument Default) { |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1175 | assert(S->isTemplateParamScope() && |
| 1176 | "Template template parameter not in template parameter scope!"); |
| 1177 | |
| 1178 | // Construct the parameter object. |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1179 | bool IsParameterPack = EllipsisLoc.isValid(); |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1180 | TemplateTemplateParmDecl *Param = |
John McCall | f7b2fb5 | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 1181 | TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1182 | NameLoc.isInvalid()? TmpLoc : NameLoc, |
| 1183 | Depth, Position, IsParameterPack, |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1184 | Name, Params); |
Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 1185 | Param->setAccess(AS_public); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 1186 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1187 | // If the template template parameter has a name, then link the identifier |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1188 | // into the scope and lookup mechanisms. |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1189 | if (Name) { |
Richard Smith | b80d540 | 2013-06-25 22:21:36 +0000 | [diff] [blame] | 1190 | maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name); |
| 1191 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1192 | S->AddDecl(Param); |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1193 | IdResolver.AddDecl(Param); |
| 1194 | } |
| 1195 | |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 1196 | if (Params->size() == 0) { |
| 1197 | Diag(Param->getLocation(), diag::err_template_template_parm_no_parms) |
| 1198 | << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc()); |
| 1199 | Param->setInvalidDecl(); |
| 1200 | } |
| 1201 | |
Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 1202 | // C++0x [temp.param]p9: |
| 1203 | // A default template-argument may be specified for any kind of |
| 1204 | // template-parameter that is not a template parameter pack. |
| 1205 | if (IsParameterPack && !Default.isInvalid()) { |
| 1206 | Diag(EqualLoc, diag::err_template_param_pack_default_arg); |
| 1207 | Default = ParsedTemplateArgument(); |
| 1208 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1209 | |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1210 | if (!Default.isInvalid()) { |
| 1211 | // Check only that we have a template template argument. We don't want to |
| 1212 | // try to check well-formedness now, because our template template parameter |
| 1213 | // might have dependent types in its template parameters, which we wouldn't |
| 1214 | // be able to match now. |
| 1215 | // |
| 1216 | // If none of the template template parameter's template arguments mention |
| 1217 | // other template parameters, we could actually perform more checking here. |
| 1218 | // However, it isn't worth doing. |
| 1219 | TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default); |
| 1220 | if (DefaultArg.getArgument().getAsTemplate().isNull()) { |
Faisal Vali | b8b04f8 | 2016-03-26 20:46:45 +0000 | [diff] [blame] | 1221 | Diag(DefaultArg.getLocation(), diag::err_template_arg_not_valid_template) |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1222 | << DefaultArg.getSourceRange(); |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1223 | return Param; |
Douglas Gregor | dc13ded | 2010-07-01 00:00:45 +0000 | [diff] [blame] | 1224 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1225 | |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 1226 | // Check for unexpanded parameter packs. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1227 | if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(), |
Douglas Gregor | 6ff1fbf | 2010-12-16 08:48:57 +0000 | [diff] [blame] | 1228 | DefaultArg.getArgument().getAsTemplate(), |
| 1229 | UPPC_DefaultArgument)) |
| 1230 | return Param; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1231 | |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 1232 | Param->setDefaultArgument(Context, DefaultArg); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1233 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1234 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1235 | return Param; |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
Hubert Tong | f608c05 | 2016-04-29 18:05:37 +0000 | [diff] [blame] | 1238 | /// ActOnTemplateParameterList - Builds a TemplateParameterList, optionally |
| 1239 | /// constrained by RequiresClause, that contains the template parameters in |
| 1240 | /// Params. |
Richard Trieu | 9becef6 | 2011-09-09 03:18:59 +0000 | [diff] [blame] | 1241 | TemplateParameterList * |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1242 | Sema::ActOnTemplateParameterList(unsigned Depth, |
| 1243 | SourceLocation ExportLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1244 | SourceLocation TemplateLoc, |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1245 | SourceLocation LAngleLoc, |
Faisal Vali | f241b0d | 2017-08-25 18:24:20 +0000 | [diff] [blame] | 1246 | ArrayRef<NamedDecl *> Params, |
Hubert Tong | f608c05 | 2016-04-29 18:05:37 +0000 | [diff] [blame] | 1247 | SourceLocation RAngleLoc, |
| 1248 | Expr *RequiresClause) { |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1249 | if (ExportLoc.isValid()) |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 1250 | Diag(ExportLoc, diag::warn_template_export_unsupported); |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1251 | |
David Majnemer | 902f8c6 | 2015-12-27 07:16:27 +0000 | [diff] [blame] | 1252 | return TemplateParameterList::Create( |
| 1253 | Context, TemplateLoc, LAngleLoc, |
Faisal Vali | f241b0d | 2017-08-25 18:24:20 +0000 | [diff] [blame] | 1254 | llvm::makeArrayRef(Params.data(), Params.size()), |
Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 1255 | RAngleLoc, RequiresClause); |
Douglas Gregor | b9bd8a9 | 2008-12-24 02:52:09 +0000 | [diff] [blame] | 1256 | } |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1257 | |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 1258 | static void SetNestedNameSpecifier(Sema &S, TagDecl *T, |
| 1259 | const CXXScopeSpec &SS) { |
John McCall | 3e11ebe | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1260 | if (SS.isSet()) |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 1261 | T->setQualifierInfo(SS.getWithLocInContext(S.Context)); |
John McCall | 3e11ebe | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1262 | } |
| 1263 | |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1264 | DeclResult Sema::CheckClassTemplate( |
| 1265 | Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, |
| 1266 | CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, |
| 1267 | const ParsedAttributesView &Attr, TemplateParameterList *TemplateParams, |
| 1268 | AccessSpecifier AS, SourceLocation ModulePrivateLoc, |
| 1269 | SourceLocation FriendLoc, unsigned NumOuterTemplateParamLists, |
| 1270 | TemplateParameterList **OuterTemplateParamLists, SkipBodyInfo *SkipBody) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1271 | assert(TemplateParams && TemplateParams->size() > 0 && |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1272 | "No template parameters"); |
John McCall | 9bb74a5 | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 1273 | assert(TUK != TUK_Reference && "Can only declare or define class templates"); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1274 | bool Invalid = false; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1275 | |
| 1276 | // Check that we can declare a template here. |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1277 | if (CheckTemplateDeclScope(S, TemplateParams)) |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1278 | return true; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1279 | |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1280 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); |
| 1281 | assert(Kind != TTK_Enum && "can't build template of enumerated type"); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1282 | |
| 1283 | // There is no such thing as an unnamed class template. |
| 1284 | if (!Name) { |
| 1285 | Diag(KWLoc, diag::err_template_unnamed_class); |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1286 | return true; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
Richard Smith | 6483d22 | 2012-04-21 01:27:54 +0000 | [diff] [blame] | 1289 | // Find any previous declaration with this name. For a friend with no |
| 1290 | // scope explicitly specified, we only look for tag declarations (per |
| 1291 | // C++11 [basic.lookup.elab]p2). |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1292 | DeclContext *SemanticContext; |
Richard Smith | 6483d22 | 2012-04-21 01:27:54 +0000 | [diff] [blame] | 1293 | LookupResult Previous(*this, Name, NameLoc, |
| 1294 | (SS.isEmpty() && TUK == TUK_Friend) |
| 1295 | ? LookupTagName : LookupOrdinaryName, |
Richard Smith | becb92d | 2017-10-10 22:33:17 +0000 | [diff] [blame] | 1296 | forRedeclarationInCurContext()); |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1297 | if (SS.isNotEmpty() && !SS.isInvalid()) { |
| 1298 | SemanticContext = computeDeclContext(SS, true); |
| 1299 | if (!SemanticContext) { |
Douglas Gregor | 67daacb | 2012-03-30 16:20:47 +0000 | [diff] [blame] | 1300 | // FIXME: Horrible, horrible hack! We can't currently represent this |
| 1301 | // in the AST, and historically we have just ignored such friend |
| 1302 | // class templates, so don't complain here. |
Richard Smith | cd556eb | 2013-11-08 18:59:56 +0000 | [diff] [blame] | 1303 | Diag(NameLoc, TUK == TUK_Friend |
| 1304 | ? diag::warn_template_qualified_friend_ignored |
| 1305 | : diag::err_template_qualified_declarator_no_match) |
Douglas Gregor | 67daacb | 2012-03-30 16:20:47 +0000 | [diff] [blame] | 1306 | << SS.getScopeRep() << SS.getRange(); |
Richard Smith | cd556eb | 2013-11-08 18:59:56 +0000 | [diff] [blame] | 1307 | return TUK != TUK_Friend; |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1308 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1309 | |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 1310 | if (RequireCompleteDeclContext(SS, SemanticContext)) |
| 1311 | return true; |
| 1312 | |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 1313 | // If we're adding a template to a dependent context, we may need to |
| 1314 | // rebuilding some of the types used within the template parameter list, |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 1315 | // now that we know what the current instantiation is. |
| 1316 | if (SemanticContext->isDependentContext()) { |
| 1317 | ContextRAII SavedContext(*this, SemanticContext); |
| 1318 | if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams)) |
| 1319 | Invalid = true; |
Douglas Gregor | b7d17dd | 2012-03-28 16:01:27 +0000 | [diff] [blame] | 1320 | } else if (TUK != TUK_Friend && TUK != TUK_Reference) |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 1321 | diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc, false); |
Richard Smith | 6483d22 | 2012-04-21 01:27:54 +0000 | [diff] [blame] | 1322 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1323 | LookupQualifiedName(Previous, SemanticContext); |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1324 | } else { |
| 1325 | SemanticContext = CurContext; |
Richard Smith | 88fe69c | 2015-07-06 01:45:27 +0000 | [diff] [blame] | 1326 | |
| 1327 | // C++14 [class.mem]p14: |
| 1328 | // If T is the name of a class, then each of the following shall have a |
| 1329 | // name different from T: |
| 1330 | // -- every member template of class T |
| 1331 | if (TUK != TUK_Friend && |
| 1332 | DiagnoseClassNameShadow(SemanticContext, |
| 1333 | DeclarationNameInfo(Name, NameLoc))) |
| 1334 | return true; |
| 1335 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1336 | LookupName(Previous, S); |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 1337 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1338 | |
Douglas Gregor | ce40e2e | 2010-04-12 16:00:01 +0000 | [diff] [blame] | 1339 | if (Previous.isAmbiguous()) |
| 1340 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1341 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1342 | NamedDecl *PrevDecl = nullptr; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1343 | if (Previous.begin() != Previous.end()) |
Douglas Gregor | ce40e2e | 2010-04-12 16:00:01 +0000 | [diff] [blame] | 1344 | PrevDecl = (*Previous.begin())->getUnderlyingDecl(); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1345 | |
Serge Pavlov | e50bf75 | 2016-06-10 04:39:07 +0000 | [diff] [blame] | 1346 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
| 1347 | // Maybe we will complain about the shadowed template parameter. |
| 1348 | DiagnoseTemplateParameterShadow(NameLoc, PrevDecl); |
| 1349 | // Just pretend that we didn't see the previous declaration. |
| 1350 | PrevDecl = nullptr; |
| 1351 | } |
| 1352 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1353 | // If there is a previous declaration with the same name, check |
| 1354 | // whether this is a valid redeclaration. |
Richard Smith | becb92d | 2017-10-10 22:33:17 +0000 | [diff] [blame] | 1355 | ClassTemplateDecl *PrevClassTemplate = |
| 1356 | dyn_cast_or_null<ClassTemplateDecl>(PrevDecl); |
Douglas Gregor | 7f34bae | 2009-10-09 21:11:42 +0000 | [diff] [blame] | 1357 | |
| 1358 | // We may have found the injected-class-name of a class template, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1359 | // class template partial specialization, or class template specialization. |
Douglas Gregor | 7f34bae | 2009-10-09 21:11:42 +0000 | [diff] [blame] | 1360 | // In these cases, grab the template that is being defined or specialized. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1361 | if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) && |
Douglas Gregor | 7f34bae | 2009-10-09 21:11:42 +0000 | [diff] [blame] | 1362 | cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) { |
| 1363 | PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext()); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1364 | PrevClassTemplate |
Douglas Gregor | 7f34bae | 2009-10-09 21:11:42 +0000 | [diff] [blame] | 1365 | = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate(); |
| 1366 | if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) { |
| 1367 | PrevClassTemplate |
| 1368 | = cast<ClassTemplateSpecializationDecl>(PrevDecl) |
| 1369 | ->getSpecializedTemplate(); |
| 1370 | } |
| 1371 | } |
| 1372 | |
John McCall | d43784f | 2009-12-18 11:25:59 +0000 | [diff] [blame] | 1373 | if (TUK == TUK_Friend) { |
John McCall | 90d3bb9 | 2009-12-17 23:21:11 +0000 | [diff] [blame] | 1374 | // C++ [namespace.memdef]p3: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1375 | // [...] When looking for a prior declaration of a class or a function |
| 1376 | // declared as a friend, and when the name of the friend class or |
John McCall | 90d3bb9 | 2009-12-17 23:21:11 +0000 | [diff] [blame] | 1377 | // function is neither a qualified name nor a template-id, scopes outside |
| 1378 | // the innermost enclosing namespace scope are not considered. |
Douglas Gregor | b74b103 | 2010-04-18 17:37:40 +0000 | [diff] [blame] | 1379 | if (!SS.isSet()) { |
| 1380 | DeclContext *OutermostContext = CurContext; |
| 1381 | while (!OutermostContext->isFileContext()) |
| 1382 | OutermostContext = OutermostContext->getLookupParent(); |
John McCall | d43784f | 2009-12-18 11:25:59 +0000 | [diff] [blame] | 1383 | |
Richard Smith | 61e582f | 2012-04-20 07:12:26 +0000 | [diff] [blame] | 1384 | if (PrevDecl && |
Douglas Gregor | b74b103 | 2010-04-18 17:37:40 +0000 | [diff] [blame] | 1385 | (OutermostContext->Equals(PrevDecl->getDeclContext()) || |
| 1386 | OutermostContext->Encloses(PrevDecl->getDeclContext()))) { |
| 1387 | SemanticContext = PrevDecl->getDeclContext(); |
| 1388 | } else { |
| 1389 | // Declarations in outer scopes don't matter. However, the outermost |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1390 | // context we computed is the semantic context for our new |
Douglas Gregor | b74b103 | 2010-04-18 17:37:40 +0000 | [diff] [blame] | 1391 | // declaration. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1392 | PrevDecl = PrevClassTemplate = nullptr; |
Douglas Gregor | b74b103 | 2010-04-18 17:37:40 +0000 | [diff] [blame] | 1393 | SemanticContext = OutermostContext; |
Richard Smith | 6483d22 | 2012-04-21 01:27:54 +0000 | [diff] [blame] | 1394 | |
| 1395 | // Check that the chosen semantic context doesn't already contain a |
| 1396 | // declaration of this name as a non-tag type. |
Richard Smith | fc805ca | 2015-07-06 04:43:58 +0000 | [diff] [blame] | 1397 | Previous.clear(LookupOrdinaryName); |
Richard Smith | 6483d22 | 2012-04-21 01:27:54 +0000 | [diff] [blame] | 1398 | DeclContext *LookupContext = SemanticContext; |
| 1399 | while (LookupContext->isTransparentContext()) |
| 1400 | LookupContext = LookupContext->getLookupParent(); |
| 1401 | LookupQualifiedName(Previous, LookupContext); |
| 1402 | |
| 1403 | if (Previous.isAmbiguous()) |
| 1404 | return true; |
| 1405 | |
| 1406 | if (Previous.begin() != Previous.end()) |
| 1407 | PrevDecl = (*Previous.begin())->getUnderlyingDecl(); |
Douglas Gregor | b74b103 | 2010-04-18 17:37:40 +0000 | [diff] [blame] | 1408 | } |
John McCall | 90d3bb9 | 2009-12-17 23:21:11 +0000 | [diff] [blame] | 1409 | } |
Richard Smith | 72bcaec | 2013-12-05 04:30:04 +0000 | [diff] [blame] | 1410 | } else if (PrevDecl && |
Richard Smith | fc805ca | 2015-07-06 04:43:58 +0000 | [diff] [blame] | 1411 | !isDeclInScope(Previous.getRepresentativeDecl(), SemanticContext, |
| 1412 | S, SS.isValid())) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1413 | PrevDecl = PrevClassTemplate = nullptr; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1414 | |
Richard Smith | fc805ca | 2015-07-06 04:43:58 +0000 | [diff] [blame] | 1415 | if (auto *Shadow = dyn_cast_or_null<UsingShadowDecl>( |
| 1416 | PrevDecl ? Previous.getRepresentativeDecl() : nullptr)) { |
| 1417 | if (SS.isEmpty() && |
| 1418 | !(PrevClassTemplate && |
| 1419 | PrevClassTemplate->getDeclContext()->getRedeclContext()->Equals( |
| 1420 | SemanticContext->getRedeclContext()))) { |
| 1421 | Diag(KWLoc, diag::err_using_decl_conflict_reverse); |
| 1422 | Diag(Shadow->getTargetDecl()->getLocation(), |
| 1423 | diag::note_using_decl_target); |
| 1424 | Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) << 0; |
| 1425 | // Recover by ignoring the old declaration. |
| 1426 | PrevDecl = PrevClassTemplate = nullptr; |
| 1427 | } |
| 1428 | } |
| 1429 | |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1430 | // TODO Memory management; associated constraints are not always stored. |
| 1431 | Expr *const CurAC = formAssociatedConstraints(TemplateParams, nullptr); |
| 1432 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1433 | if (PrevClassTemplate) { |
Richard Smith | e85e176 | 2012-04-22 02:13:50 +0000 | [diff] [blame] | 1434 | // Ensure that the template parameter lists are compatible. Skip this check |
| 1435 | // for a friend in a dependent context: the template parameter list itself |
| 1436 | // could be dependent. |
| 1437 | if (!(TUK == TUK_Friend && CurContext->isDependentContext()) && |
| 1438 | !TemplateParameterListsAreEqual(TemplateParams, |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1439 | PrevClassTemplate->getTemplateParameters(), |
Douglas Gregor | 19ac2d6 | 2009-11-12 16:20:59 +0000 | [diff] [blame] | 1440 | /*Complain=*/true, |
| 1441 | TPL_TemplateMatch)) |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1442 | return true; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1443 | |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1444 | // Check for matching associated constraints on redeclarations. |
| 1445 | const Expr *const PrevAC = PrevClassTemplate->getAssociatedConstraints(); |
| 1446 | const bool RedeclACMismatch = [&] { |
| 1447 | if (!(CurAC || PrevAC)) |
| 1448 | return false; // Nothing to check; no mismatch. |
| 1449 | if (CurAC && PrevAC) { |
| 1450 | llvm::FoldingSetNodeID CurACInfo, PrevACInfo; |
| 1451 | CurAC->Profile(CurACInfo, Context, /*Canonical=*/true); |
| 1452 | PrevAC->Profile(PrevACInfo, Context, /*Canonical=*/true); |
| 1453 | if (CurACInfo == PrevACInfo) |
| 1454 | return false; // All good; no mismatch. |
| 1455 | } |
| 1456 | return true; |
| 1457 | }(); |
| 1458 | |
| 1459 | if (RedeclACMismatch) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1460 | Diag(CurAC ? CurAC->getBeginLoc() : NameLoc, |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1461 | diag::err_template_different_associated_constraints); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1462 | Diag(PrevAC ? PrevAC->getBeginLoc() : PrevClassTemplate->getLocation(), |
| 1463 | diag::note_template_prev_declaration) |
| 1464 | << /*declaration*/ 0; |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1465 | return true; |
| 1466 | } |
| 1467 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1468 | // C++ [temp.class]p4: |
| 1469 | // In a redeclaration, partial specialization, explicit |
| 1470 | // specialization or explicit instantiation of a class template, |
| 1471 | // the class-key shall agree in kind with the original class |
| 1472 | // template declaration (7.1.5.3). |
| 1473 | RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl(); |
Richard Trieu | caa33d3 | 2011-06-10 03:11:26 +0000 | [diff] [blame] | 1474 | if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind, |
Justin Bogner | c6ecb7c | 2015-07-10 23:05:47 +0000 | [diff] [blame] | 1475 | TUK == TUK_Definition, KWLoc, Name)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1476 | Diag(KWLoc, diag::err_use_with_wrong_tag) |
Douglas Gregor | 170512f | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 1477 | << Name |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1478 | << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName()); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1479 | Diag(PrevRecordDecl->getLocation(), diag::note_previous_use); |
Douglas Gregor | 170512f | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 1480 | Kind = PrevRecordDecl->getTagKind(); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1481 | } |
| 1482 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1483 | // Check for redefinition of this class template. |
John McCall | 9bb74a5 | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 1484 | if (TUK == TUK_Definition) { |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 1485 | if (TagDecl *Def = PrevRecordDecl->getDefinition()) { |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1486 | // If we have a prior definition that is not visible, treat this as |
| 1487 | // simply making that previous definition visible. |
| 1488 | NamedDecl *Hidden = nullptr; |
| 1489 | if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) { |
Richard Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 1490 | SkipBody->ShouldSkip = true; |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1491 | SkipBody->Previous = Def; |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1492 | auto *Tmpl = cast<CXXRecordDecl>(Hidden)->getDescribedClassTemplate(); |
| 1493 | assert(Tmpl && "original definition of a class template is not a " |
| 1494 | "class template?"); |
Richard Smith | 858e0e0 | 2017-05-11 23:11:16 +0000 | [diff] [blame] | 1495 | makeMergedDefinitionVisible(Hidden); |
| 1496 | makeMergedDefinitionVisible(Tmpl); |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1497 | } else { |
| 1498 | Diag(NameLoc, diag::err_redefinition) << Name; |
| 1499 | Diag(Def->getLocation(), diag::note_previous_definition); |
| 1500 | // FIXME: Would it make sense to try to "forget" the previous |
| 1501 | // definition, as part of error recovery? |
| 1502 | return true; |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1503 | } |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1504 | } |
Serge Pavlov | e50bf75 | 2016-06-10 04:39:07 +0000 | [diff] [blame] | 1505 | } |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1506 | } else if (PrevDecl) { |
| 1507 | // C++ [temp]p5: |
| 1508 | // A class template shall not have the same name as any other |
| 1509 | // template, class, function, object, enumeration, enumerator, |
| 1510 | // namespace, or type in the same scope (3.3), except as specified |
| 1511 | // in (14.5.4). |
| 1512 | Diag(NameLoc, diag::err_redefinition_different_kind) << Name; |
| 1513 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 1514 | return true; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1517 | // Check the template parameter list of this declaration, possibly |
| 1518 | // merging in the template parameter list from the previous class |
Richard Smith | e85e176 | 2012-04-22 02:13:50 +0000 | [diff] [blame] | 1519 | // template declaration. Skip this check for a friend in a dependent |
| 1520 | // context, because the template parameter list might be dependent. |
| 1521 | if (!(TUK == TUK_Friend && CurContext->isDependentContext()) && |
David Majnemer | ba8f17a | 2013-06-25 22:08:55 +0000 | [diff] [blame] | 1522 | CheckTemplateParameterList( |
| 1523 | TemplateParams, |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1524 | PrevClassTemplate |
| 1525 | ? PrevClassTemplate->getMostRecentDecl()->getTemplateParameters() |
| 1526 | : nullptr, |
David Majnemer | ba8f17a | 2013-06-25 22:08:55 +0000 | [diff] [blame] | 1527 | (SS.isSet() && SemanticContext && SemanticContext->isRecord() && |
| 1528 | SemanticContext->isDependentContext()) |
| 1529 | ? TPC_ClassTemplateMember |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1530 | : TUK == TUK_Friend ? TPC_FriendClassTemplate : TPC_ClassTemplate, |
| 1531 | SkipBody)) |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1532 | Invalid = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1533 | |
Douglas Gregor | ce40e2e | 2010-04-12 16:00:01 +0000 | [diff] [blame] | 1534 | if (SS.isSet()) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1535 | // If the name of the template was qualified, we must be defining the |
Douglas Gregor | ce40e2e | 2010-04-12 16:00:01 +0000 | [diff] [blame] | 1536 | // template out-of-line. |
Richard Smith | e85e176 | 2012-04-22 02:13:50 +0000 | [diff] [blame] | 1537 | if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) { |
| 1538 | Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 1539 | : diag::err_member_decl_does_not_match) |
| 1540 | << Name << SemanticContext << /*IsDefinition*/true << SS.getRange(); |
Douglas Gregor | fe0055e | 2011-11-01 21:35:16 +0000 | [diff] [blame] | 1541 | Invalid = true; |
| 1542 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1543 | } |
| 1544 | |
Vassil Vassilev | 352e441 | 2017-01-12 09:16:26 +0000 | [diff] [blame] | 1545 | // If this is a templated friend in a dependent context we should not put it |
| 1546 | // on the redecl chain. In some cases, the templated friend can be the most |
| 1547 | // recent declaration tricking the template instantiator to make substitutions |
| 1548 | // there. |
| 1549 | // FIXME: Figure out how to combine with shouldLinkDependentDeclWithPrevious |
| 1550 | bool ShouldAddRedecl |
| 1551 | = !(TUK == TUK_Friend && CurContext->isDependentContext()); |
| 1552 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1553 | CXXRecordDecl *NewClass = |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 1554 | CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name, |
Vassil Vassilev | 352e441 | 2017-01-12 09:16:26 +0000 | [diff] [blame] | 1555 | PrevClassTemplate && ShouldAddRedecl ? |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1556 | PrevClassTemplate->getTemplatedDecl() : nullptr, |
Douglas Gregor | 1ec5e9f | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 1557 | /*DelayTypeCreation=*/true); |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 1558 | SetNestedNameSpecifier(*this, NewClass, SS); |
Abramo Bagnara | 0adf29a | 2011-03-10 13:28:31 +0000 | [diff] [blame] | 1559 | if (NumOuterTemplateParamLists > 0) |
Benjamin Kramer | 9cc21065 | 2015-08-05 09:40:49 +0000 | [diff] [blame] | 1560 | NewClass->setTemplateParameterListsInfo( |
| 1561 | Context, llvm::makeArrayRef(OuterTemplateParamLists, |
| 1562 | NumOuterTemplateParamLists)); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1563 | |
Eli Friedman | edb6f5d | 2012-02-10 02:02:21 +0000 | [diff] [blame] | 1564 | // Add alignment attributes if necessary; these attributes are checked when |
| 1565 | // the ASTContext lays out the structure. |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1566 | if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) { |
Eli Friedman | 0415f3e1 | 2012-08-08 21:08:34 +0000 | [diff] [blame] | 1567 | AddAlignmentAttributesForRecord(NewClass); |
| 1568 | AddMsStructLayoutForRecord(NewClass); |
| 1569 | } |
Eli Friedman | edb6f5d | 2012-02-10 02:02:21 +0000 | [diff] [blame] | 1570 | |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1571 | // Attach the associated constraints when the declaration will not be part of |
| 1572 | // a decl chain. |
| 1573 | Expr *const ACtoAttach = |
| 1574 | PrevClassTemplate && ShouldAddRedecl ? nullptr : CurAC; |
| 1575 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1576 | ClassTemplateDecl *NewTemplate |
| 1577 | = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc, |
| 1578 | DeclarationName(Name), TemplateParams, |
Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 1579 | NewClass, ACtoAttach); |
Vassil Vassilev | 352e441 | 2017-01-12 09:16:26 +0000 | [diff] [blame] | 1580 | |
| 1581 | if (ShouldAddRedecl) |
| 1582 | NewTemplate->setPreviousDecl(PrevClassTemplate); |
| 1583 | |
Douglas Gregor | 97f1f1c | 2009-03-26 00:10:35 +0000 | [diff] [blame] | 1584 | NewClass->setDescribedClassTemplate(NewTemplate); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 1585 | |
Douglas Gregor | 21823bf | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 1586 | if (ModulePrivateLoc.isValid()) |
Douglas Gregor | ef15bdb | 2011-09-09 18:32:39 +0000 | [diff] [blame] | 1587 | NewTemplate->setModulePrivate(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 1588 | |
Douglas Gregor | 1ec5e9f | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 1589 | // Build the type for the class template declaration now. |
Douglas Gregor | 9961ce9 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 1590 | QualType T = NewTemplate->getInjectedClassNameSpecialization(); |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 1591 | T = Context.getInjectedClassNameType(NewClass, T); |
Douglas Gregor | 1ec5e9f | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 1592 | assert(T->isDependentType() && "Class template type is not dependent?"); |
| 1593 | (void)T; |
| 1594 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1595 | // If we are providing an explicit specialization of a member that is a |
Douglas Gregor | cf91555 | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 1596 | // class template, make a note of that. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1597 | if (PrevClassTemplate && |
Douglas Gregor | cf91555 | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 1598 | PrevClassTemplate->getInstantiatedFromMemberTemplate()) |
| 1599 | PrevClassTemplate->setMemberSpecialization(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1600 | |
Anders Carlsson | 137108d | 2009-03-26 01:24:28 +0000 | [diff] [blame] | 1601 | // Set the access specifier. |
Douglas Gregor | 31feb33 | 2012-03-17 23:06:31 +0000 | [diff] [blame] | 1602 | if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord()) |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1603 | SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1604 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1605 | // Set the lexical context of these templates |
| 1606 | NewClass->setLexicalDeclContext(CurContext); |
| 1607 | NewTemplate->setLexicalDeclContext(CurContext); |
| 1608 | |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1609 | if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1610 | NewClass->startDefinition(); |
| 1611 | |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 1612 | ProcessDeclAttributeList(S, NewClass, Attr); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1613 | |
Rafael Espindola | 0c6c405 | 2012-08-22 14:52:14 +0000 | [diff] [blame] | 1614 | if (PrevClassTemplate) |
| 1615 | mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl()); |
| 1616 | |
Rafael Espindola | 385c042 | 2012-07-13 18:04:45 +0000 | [diff] [blame] | 1617 | AddPushedVisibilityAttribute(NewClass); |
| 1618 | |
Richard Smith | 234ff47 | 2014-08-23 00:49:01 +0000 | [diff] [blame] | 1619 | if (TUK != TUK_Friend) { |
| 1620 | // Per C++ [basic.scope.temp]p2, skip the template parameter scopes. |
| 1621 | Scope *Outer = S; |
| 1622 | while ((Outer->getFlags() & Scope::TemplateParamScope) != 0) |
| 1623 | Outer = Outer->getParent(); |
| 1624 | PushOnScopeChains(NewTemplate, Outer); |
| 1625 | } else { |
Douglas Gregor | 3dad842 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1626 | if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) { |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1627 | NewTemplate->setAccess(PrevClassTemplate->getAccess()); |
Douglas Gregor | 3dad842 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1628 | NewClass->setAccess(PrevClassTemplate->getAccess()); |
| 1629 | } |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1630 | |
Richard Smith | 6401768 | 2013-07-17 23:53:16 +0000 | [diff] [blame] | 1631 | NewTemplate->setObjectOfFriendDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1632 | |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1633 | // Friend templates are visible in fairly strange ways. |
| 1634 | if (!CurContext->isDependentContext()) { |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 1635 | DeclContext *DC = SemanticContext->getRedeclContext(); |
Richard Smith | 05afe5e | 2012-03-13 03:12:56 +0000 | [diff] [blame] | 1636 | DC->makeDeclVisibleInContext(NewTemplate); |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1637 | if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) |
| 1638 | PushOnScopeChains(NewTemplate, EnclosingScope, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1639 | /* AddToContext = */ false); |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1640 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1641 | |
Nikola Smiljanic | 4fc9153 | 2014-07-17 01:59:34 +0000 | [diff] [blame] | 1642 | FriendDecl *Friend = FriendDecl::Create( |
| 1643 | Context, CurContext, NewClass->getLocation(), NewTemplate, FriendLoc); |
Douglas Gregor | 3dad842 | 2009-09-26 06:47:28 +0000 | [diff] [blame] | 1644 | Friend->setAccess(AS_public); |
| 1645 | CurContext->addDecl(Friend); |
John McCall | 27b5c25 | 2009-09-14 21:59:20 +0000 | [diff] [blame] | 1646 | } |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1647 | |
Richard Smith | becb92d | 2017-10-10 22:33:17 +0000 | [diff] [blame] | 1648 | if (PrevClassTemplate) |
| 1649 | CheckRedeclarationModuleOwnership(NewTemplate, PrevClassTemplate); |
| 1650 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 1651 | if (Invalid) { |
| 1652 | NewTemplate->setInvalidDecl(); |
| 1653 | NewClass->setInvalidDecl(); |
| 1654 | } |
Rafael Espindola | eca5cd2 | 2012-07-13 01:19:08 +0000 | [diff] [blame] | 1655 | |
Dmitri Gribenko | 34df220 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 1656 | ActOnDocumentableDecl(NewTemplate); |
| 1657 | |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 1658 | if (SkipBody && SkipBody->ShouldSkip) |
| 1659 | return SkipBody->Previous; |
| 1660 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1661 | return NewTemplate; |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 1662 | } |
| 1663 | |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1664 | namespace { |
Erik Pilkington | 69770d3 | 2018-07-27 21:23:48 +0000 | [diff] [blame] | 1665 | /// Tree transform to "extract" a transformed type from a class template's |
| 1666 | /// constructor to a deduction guide. |
| 1667 | class ExtractTypeForDeductionGuide |
| 1668 | : public TreeTransform<ExtractTypeForDeductionGuide> { |
| 1669 | public: |
| 1670 | typedef TreeTransform<ExtractTypeForDeductionGuide> Base; |
| 1671 | ExtractTypeForDeductionGuide(Sema &SemaRef) : Base(SemaRef) {} |
| 1672 | |
| 1673 | TypeSourceInfo *transform(TypeSourceInfo *TSI) { return TransformType(TSI); } |
| 1674 | |
| 1675 | QualType TransformTypedefType(TypeLocBuilder &TLB, TypedefTypeLoc TL) { |
| 1676 | return TransformType( |
| 1677 | TLB, |
| 1678 | TL.getTypedefNameDecl()->getTypeSourceInfo()->getTypeLoc()); |
| 1679 | } |
| 1680 | }; |
| 1681 | |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1682 | /// Transform to convert portions of a constructor declaration into the |
| 1683 | /// corresponding deduction guide, per C++1z [over.match.class.deduct]p1. |
| 1684 | struct ConvertConstructorToDeductionGuideTransform { |
| 1685 | ConvertConstructorToDeductionGuideTransform(Sema &S, |
| 1686 | ClassTemplateDecl *Template) |
| 1687 | : SemaRef(S), Template(Template) {} |
| 1688 | |
| 1689 | Sema &SemaRef; |
| 1690 | ClassTemplateDecl *Template; |
| 1691 | |
| 1692 | DeclContext *DC = Template->getDeclContext(); |
| 1693 | CXXRecordDecl *Primary = Template->getTemplatedDecl(); |
| 1694 | DeclarationName DeductionGuideName = |
| 1695 | SemaRef.Context.DeclarationNames.getCXXDeductionGuideName(Template); |
| 1696 | |
| 1697 | QualType DeducedType = SemaRef.Context.getTypeDeclType(Primary); |
| 1698 | |
| 1699 | // Index adjustment to apply to convert depth-1 template parameters into |
| 1700 | // depth-0 template parameters. |
| 1701 | unsigned Depth1IndexAdjustment = Template->getTemplateParameters()->size(); |
| 1702 | |
| 1703 | /// Transform a constructor declaration into a deduction guide. |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1704 | NamedDecl *transformConstructor(FunctionTemplateDecl *FTD, |
| 1705 | CXXConstructorDecl *CD) { |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1706 | SmallVector<TemplateArgument, 16> SubstArgs; |
| 1707 | |
Richard Smith | b4f9625 | 2017-02-21 06:30:38 +0000 | [diff] [blame] | 1708 | LocalInstantiationScope Scope(SemaRef); |
| 1709 | |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1710 | // C++ [over.match.class.deduct]p1: |
| 1711 | // -- For each constructor of the class template designated by the |
| 1712 | // template-name, a function template with the following properties: |
| 1713 | |
| 1714 | // -- The template parameters are the template parameters of the class |
| 1715 | // template followed by the template parameters (including default |
| 1716 | // template arguments) of the constructor, if any. |
| 1717 | TemplateParameterList *TemplateParams = Template->getTemplateParameters(); |
| 1718 | if (FTD) { |
| 1719 | TemplateParameterList *InnerParams = FTD->getTemplateParameters(); |
| 1720 | SmallVector<NamedDecl *, 16> AllParams; |
| 1721 | AllParams.reserve(TemplateParams->size() + InnerParams->size()); |
| 1722 | AllParams.insert(AllParams.begin(), |
| 1723 | TemplateParams->begin(), TemplateParams->end()); |
| 1724 | SubstArgs.reserve(InnerParams->size()); |
| 1725 | |
| 1726 | // Later template parameters could refer to earlier ones, so build up |
| 1727 | // a list of substituted template arguments as we go. |
| 1728 | for (NamedDecl *Param : *InnerParams) { |
| 1729 | MultiLevelTemplateArgumentList Args; |
| 1730 | Args.addOuterTemplateArguments(SubstArgs); |
Richard Smith | b4f9625 | 2017-02-21 06:30:38 +0000 | [diff] [blame] | 1731 | Args.addOuterRetainedLevel(); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1732 | NamedDecl *NewParam = transformTemplateParameter(Param, Args); |
| 1733 | if (!NewParam) |
| 1734 | return nullptr; |
| 1735 | AllParams.push_back(NewParam); |
| 1736 | SubstArgs.push_back(SemaRef.Context.getCanonicalTemplateArgument( |
| 1737 | SemaRef.Context.getInjectedTemplateArg(NewParam))); |
| 1738 | } |
| 1739 | TemplateParams = TemplateParameterList::Create( |
| 1740 | SemaRef.Context, InnerParams->getTemplateLoc(), |
| 1741 | InnerParams->getLAngleLoc(), AllParams, InnerParams->getRAngleLoc(), |
| 1742 | /*FIXME: RequiresClause*/ nullptr); |
| 1743 | } |
| 1744 | |
| 1745 | // If we built a new template-parameter-list, track that we need to |
| 1746 | // substitute references to the old parameters into references to the |
| 1747 | // new ones. |
| 1748 | MultiLevelTemplateArgumentList Args; |
| 1749 | if (FTD) { |
| 1750 | Args.addOuterTemplateArguments(SubstArgs); |
Richard Smith | b4f9625 | 2017-02-21 06:30:38 +0000 | [diff] [blame] | 1751 | Args.addOuterRetainedLevel(); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1752 | } |
| 1753 | |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1754 | FunctionProtoTypeLoc FPTL = CD->getTypeSourceInfo()->getTypeLoc() |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1755 | .getAsAdjusted<FunctionProtoTypeLoc>(); |
| 1756 | assert(FPTL && "no prototype for constructor declaration"); |
| 1757 | |
| 1758 | // Transform the type of the function, adjusting the return type and |
| 1759 | // replacing references to the old parameters with references to the |
| 1760 | // new ones. |
| 1761 | TypeLocBuilder TLB; |
| 1762 | SmallVector<ParmVarDecl*, 8> Params; |
| 1763 | QualType NewType = transformFunctionProtoType(TLB, FPTL, Params, Args); |
| 1764 | if (NewType.isNull()) |
| 1765 | return nullptr; |
| 1766 | TypeSourceInfo *NewTInfo = TLB.getTypeSourceInfo(SemaRef.Context, NewType); |
| 1767 | |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1768 | return buildDeductionGuide(TemplateParams, CD->isExplicit(), NewTInfo, |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1769 | CD->getBeginLoc(), CD->getLocation(), |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 1770 | CD->getEndLoc()); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
| 1773 | /// Build a deduction guide with the specified parameter types. |
| 1774 | NamedDecl *buildSimpleDeductionGuide(MutableArrayRef<QualType> ParamTypes) { |
| 1775 | SourceLocation Loc = Template->getLocation(); |
| 1776 | |
| 1777 | // Build the requested type. |
| 1778 | FunctionProtoType::ExtProtoInfo EPI; |
| 1779 | EPI.HasTrailingReturn = true; |
| 1780 | QualType Result = SemaRef.BuildFunctionType(DeducedType, ParamTypes, Loc, |
| 1781 | DeductionGuideName, EPI); |
| 1782 | TypeSourceInfo *TSI = SemaRef.Context.getTrivialTypeSourceInfo(Result, Loc); |
| 1783 | |
| 1784 | FunctionProtoTypeLoc FPTL = |
| 1785 | TSI->getTypeLoc().castAs<FunctionProtoTypeLoc>(); |
| 1786 | |
| 1787 | // Build the parameters, needed during deduction / substitution. |
| 1788 | SmallVector<ParmVarDecl*, 4> Params; |
| 1789 | for (auto T : ParamTypes) { |
| 1790 | ParmVarDecl *NewParam = ParmVarDecl::Create( |
| 1791 | SemaRef.Context, DC, Loc, Loc, nullptr, T, |
| 1792 | SemaRef.Context.getTrivialTypeSourceInfo(T, Loc), SC_None, nullptr); |
| 1793 | NewParam->setScopeInfo(0, Params.size()); |
| 1794 | FPTL.setParam(Params.size(), NewParam); |
| 1795 | Params.push_back(NewParam); |
| 1796 | } |
| 1797 | |
| 1798 | return buildDeductionGuide(Template->getTemplateParameters(), false, TSI, |
| 1799 | Loc, Loc, Loc); |
| 1800 | } |
| 1801 | |
| 1802 | private: |
| 1803 | /// Transform a constructor template parameter into a deduction guide template |
| 1804 | /// parameter, rebuilding any internal references to earlier parameters and |
| 1805 | /// renumbering as we go. |
| 1806 | NamedDecl *transformTemplateParameter(NamedDecl *TemplateParam, |
| 1807 | MultiLevelTemplateArgumentList &Args) { |
| 1808 | if (auto *TTP = dyn_cast<TemplateTypeParmDecl>(TemplateParam)) { |
| 1809 | // TemplateTypeParmDecl's index cannot be changed after creation, so |
| 1810 | // substitute it directly. |
| 1811 | auto *NewTTP = TemplateTypeParmDecl::Create( |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1812 | SemaRef.Context, DC, TTP->getBeginLoc(), TTP->getLocation(), |
| 1813 | /*Depth*/ 0, Depth1IndexAdjustment + TTP->getIndex(), |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1814 | TTP->getIdentifier(), TTP->wasDeclaredWithTypename(), |
| 1815 | TTP->isParameterPack()); |
| 1816 | if (TTP->hasDefaultArgument()) { |
| 1817 | TypeSourceInfo *InstantiatedDefaultArg = |
| 1818 | SemaRef.SubstType(TTP->getDefaultArgumentInfo(), Args, |
| 1819 | TTP->getDefaultArgumentLoc(), TTP->getDeclName()); |
| 1820 | if (InstantiatedDefaultArg) |
| 1821 | NewTTP->setDefaultArgument(InstantiatedDefaultArg); |
| 1822 | } |
Richard Smith | b4f9625 | 2017-02-21 06:30:38 +0000 | [diff] [blame] | 1823 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(TemplateParam, |
| 1824 | NewTTP); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1825 | return NewTTP; |
| 1826 | } |
| 1827 | |
| 1828 | if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(TemplateParam)) |
| 1829 | return transformTemplateParameterImpl(TTP, Args); |
| 1830 | |
| 1831 | return transformTemplateParameterImpl( |
| 1832 | cast<NonTypeTemplateParmDecl>(TemplateParam), Args); |
| 1833 | } |
| 1834 | template<typename TemplateParmDecl> |
| 1835 | TemplateParmDecl * |
| 1836 | transformTemplateParameterImpl(TemplateParmDecl *OldParam, |
| 1837 | MultiLevelTemplateArgumentList &Args) { |
| 1838 | // Ask the template instantiator to do the heavy lifting for us, then adjust |
| 1839 | // the index of the parameter once it's done. |
| 1840 | auto *NewParam = |
| 1841 | cast_or_null<TemplateParmDecl>(SemaRef.SubstDecl(OldParam, DC, Args)); |
| 1842 | assert(NewParam->getDepth() == 0 && "unexpected template param depth"); |
| 1843 | NewParam->setPosition(NewParam->getPosition() + Depth1IndexAdjustment); |
| 1844 | return NewParam; |
| 1845 | } |
| 1846 | |
| 1847 | QualType transformFunctionProtoType(TypeLocBuilder &TLB, |
| 1848 | FunctionProtoTypeLoc TL, |
| 1849 | SmallVectorImpl<ParmVarDecl*> &Params, |
| 1850 | MultiLevelTemplateArgumentList &Args) { |
| 1851 | SmallVector<QualType, 4> ParamTypes; |
| 1852 | const FunctionProtoType *T = TL.getTypePtr(); |
| 1853 | |
| 1854 | // -- The types of the function parameters are those of the constructor. |
| 1855 | for (auto *OldParam : TL.getParams()) { |
Richard Smith | c27b3d7 | 2017-02-14 01:49:59 +0000 | [diff] [blame] | 1856 | ParmVarDecl *NewParam = transformFunctionTypeParam(OldParam, Args); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1857 | if (!NewParam) |
| 1858 | return QualType(); |
| 1859 | ParamTypes.push_back(NewParam->getType()); |
| 1860 | Params.push_back(NewParam); |
| 1861 | } |
| 1862 | |
| 1863 | // -- The return type is the class template specialization designated by |
| 1864 | // the template-name and template arguments corresponding to the |
| 1865 | // template parameters obtained from the class template. |
| 1866 | // |
| 1867 | // We use the injected-class-name type of the primary template instead. |
| 1868 | // This has the convenient property that it is different from any type that |
| 1869 | // the user can write in a deduction-guide (because they cannot enter the |
| 1870 | // context of the template), so implicit deduction guides can never collide |
| 1871 | // with explicit ones. |
| 1872 | QualType ReturnType = DeducedType; |
| 1873 | TLB.pushTypeSpec(ReturnType).setNameLoc(Primary->getLocation()); |
| 1874 | |
| 1875 | // Resolving a wording defect, we also inherit the variadicness of the |
| 1876 | // constructor. |
| 1877 | FunctionProtoType::ExtProtoInfo EPI; |
| 1878 | EPI.Variadic = T->isVariadic(); |
| 1879 | EPI.HasTrailingReturn = true; |
| 1880 | |
| 1881 | QualType Result = SemaRef.BuildFunctionType( |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1882 | ReturnType, ParamTypes, TL.getBeginLoc(), DeductionGuideName, EPI); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1883 | if (Result.isNull()) |
| 1884 | return QualType(); |
| 1885 | |
| 1886 | FunctionProtoTypeLoc NewTL = TLB.push<FunctionProtoTypeLoc>(Result); |
| 1887 | NewTL.setLocalRangeBegin(TL.getLocalRangeBegin()); |
| 1888 | NewTL.setLParenLoc(TL.getLParenLoc()); |
| 1889 | NewTL.setRParenLoc(TL.getRParenLoc()); |
| 1890 | NewTL.setExceptionSpecRange(SourceRange()); |
| 1891 | NewTL.setLocalRangeEnd(TL.getLocalRangeEnd()); |
| 1892 | for (unsigned I = 0, E = NewTL.getNumParams(); I != E; ++I) |
| 1893 | NewTL.setParam(I, Params[I]); |
| 1894 | |
| 1895 | return Result; |
| 1896 | } |
| 1897 | |
| 1898 | ParmVarDecl * |
| 1899 | transformFunctionTypeParam(ParmVarDecl *OldParam, |
| 1900 | MultiLevelTemplateArgumentList &Args) { |
| 1901 | TypeSourceInfo *OldDI = OldParam->getTypeSourceInfo(); |
Richard Smith | 479ba8e | 2017-04-20 01:15:31 +0000 | [diff] [blame] | 1902 | TypeSourceInfo *NewDI; |
Erik Pilkington | 69770d3 | 2018-07-27 21:23:48 +0000 | [diff] [blame] | 1903 | if (auto PackTL = OldDI->getTypeLoc().getAs<PackExpansionTypeLoc>()) { |
Richard Smith | 479ba8e | 2017-04-20 01:15:31 +0000 | [diff] [blame] | 1904 | // Expand out the one and only element in each inner pack. |
| 1905 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, 0); |
| 1906 | NewDI = |
| 1907 | SemaRef.SubstType(PackTL.getPatternLoc(), Args, |
| 1908 | OldParam->getLocation(), OldParam->getDeclName()); |
| 1909 | if (!NewDI) return nullptr; |
| 1910 | NewDI = |
| 1911 | SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), |
| 1912 | PackTL.getTypePtr()->getNumExpansions()); |
| 1913 | } else |
| 1914 | NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), |
| 1915 | OldParam->getDeclName()); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1916 | if (!NewDI) |
| 1917 | return nullptr; |
| 1918 | |
Erik Pilkington | 69770d3 | 2018-07-27 21:23:48 +0000 | [diff] [blame] | 1919 | // Extract the type. This (for instance) replaces references to typedef |
| 1920 | // members of the current instantiations with the definitions of those |
| 1921 | // typedefs, avoiding triggering instantiation of the deduced type during |
| 1922 | // deduction. |
| 1923 | NewDI = ExtractTypeForDeductionGuide(SemaRef).transform(NewDI); |
Richard Smith | c27b3d7 | 2017-02-14 01:49:59 +0000 | [diff] [blame] | 1924 | |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1925 | // Resolving a wording defect, we also inherit default arguments from the |
| 1926 | // constructor. |
| 1927 | ExprResult NewDefArg; |
| 1928 | if (OldParam->hasDefaultArg()) { |
Erik Pilkington | 69770d3 | 2018-07-27 21:23:48 +0000 | [diff] [blame] | 1929 | NewDefArg = SemaRef.SubstExpr(OldParam->getDefaultArg(), Args); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1930 | if (NewDefArg.isInvalid()) |
| 1931 | return nullptr; |
| 1932 | } |
| 1933 | |
| 1934 | ParmVarDecl *NewParam = ParmVarDecl::Create(SemaRef.Context, DC, |
| 1935 | OldParam->getInnerLocStart(), |
| 1936 | OldParam->getLocation(), |
| 1937 | OldParam->getIdentifier(), |
| 1938 | NewDI->getType(), |
| 1939 | NewDI, |
| 1940 | OldParam->getStorageClass(), |
| 1941 | NewDefArg.get()); |
| 1942 | NewParam->setScopeInfo(OldParam->getFunctionScopeDepth(), |
| 1943 | OldParam->getFunctionScopeIndex()); |
Erik Pilkington | 69770d3 | 2018-07-27 21:23:48 +0000 | [diff] [blame] | 1944 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam, NewParam); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1945 | return NewParam; |
| 1946 | } |
| 1947 | |
| 1948 | NamedDecl *buildDeductionGuide(TemplateParameterList *TemplateParams, |
| 1949 | bool Explicit, TypeSourceInfo *TInfo, |
| 1950 | SourceLocation LocStart, SourceLocation Loc, |
| 1951 | SourceLocation LocEnd) { |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1952 | DeclarationNameInfo Name(DeductionGuideName, Loc); |
Richard Smith | efa919a | 2017-02-16 21:29:21 +0000 | [diff] [blame] | 1953 | ArrayRef<ParmVarDecl *> Params = |
| 1954 | TInfo->getTypeLoc().castAs<FunctionProtoTypeLoc>().getParams(); |
| 1955 | |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1956 | // Build the implicit deduction guide template. |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1957 | auto *Guide = |
| 1958 | CXXDeductionGuideDecl::Create(SemaRef.Context, DC, LocStart, Explicit, |
| 1959 | Name, TInfo->getType(), TInfo, LocEnd); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1960 | Guide->setImplicit(); |
Richard Smith | efa919a | 2017-02-16 21:29:21 +0000 | [diff] [blame] | 1961 | Guide->setParams(Params); |
| 1962 | |
| 1963 | for (auto *Param : Params) |
| 1964 | Param->setDeclContext(Guide); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 1965 | |
| 1966 | auto *GuideTemplate = FunctionTemplateDecl::Create( |
| 1967 | SemaRef.Context, DC, Loc, DeductionGuideName, TemplateParams, Guide); |
| 1968 | GuideTemplate->setImplicit(); |
| 1969 | Guide->setDescribedFunctionTemplate(GuideTemplate); |
| 1970 | |
| 1971 | if (isa<CXXRecordDecl>(DC)) { |
| 1972 | Guide->setAccess(AS_public); |
| 1973 | GuideTemplate->setAccess(AS_public); |
| 1974 | } |
| 1975 | |
| 1976 | DC->addDecl(GuideTemplate); |
| 1977 | return GuideTemplate; |
| 1978 | } |
| 1979 | }; |
| 1980 | } |
| 1981 | |
| 1982 | void Sema::DeclareImplicitDeductionGuides(TemplateDecl *Template, |
| 1983 | SourceLocation Loc) { |
| 1984 | DeclContext *DC = Template->getDeclContext(); |
| 1985 | if (DC->isDependentContext()) |
| 1986 | return; |
| 1987 | |
| 1988 | ConvertConstructorToDeductionGuideTransform Transform( |
| 1989 | *this, cast<ClassTemplateDecl>(Template)); |
| 1990 | if (!isCompleteType(Loc, Transform.DeducedType)) |
| 1991 | return; |
| 1992 | |
| 1993 | // Check whether we've already declared deduction guides for this template. |
| 1994 | // FIXME: Consider storing a flag on the template to indicate this. |
| 1995 | auto Existing = DC->lookup(Transform.DeductionGuideName); |
| 1996 | for (auto *D : Existing) |
| 1997 | if (D->isImplicit()) |
| 1998 | return; |
| 1999 | |
| 2000 | // In case we were expanding a pack when we attempted to declare deduction |
| 2001 | // guides, turn off pack expansion for everything we're about to do. |
| 2002 | ArgumentPackSubstitutionIndexRAII SubstIndex(*this, -1); |
| 2003 | // Create a template instantiation record to track the "instantiation" of |
| 2004 | // constructors into deduction guides. |
| 2005 | // FIXME: Add a kind for this to give more meaningful diagnostics. But can |
| 2006 | // this substitution process actually fail? |
| 2007 | InstantiatingTemplate BuildingDeductionGuides(*this, Loc, Template); |
Volodymyr Sapsai | 2f649f3 | 2018-05-14 22:49:44 +0000 | [diff] [blame] | 2008 | if (BuildingDeductionGuides.isInvalid()) |
| 2009 | return; |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2010 | |
| 2011 | // Convert declared constructors into deduction guide templates. |
| 2012 | // FIXME: Skip constructors for which deduction must necessarily fail (those |
| 2013 | // for which some class template parameter without a default argument never |
| 2014 | // appears in a deduced context). |
| 2015 | bool AddedAny = false; |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2016 | for (NamedDecl *D : LookupConstructors(Transform.Primary)) { |
| 2017 | D = D->getUnderlyingDecl(); |
| 2018 | if (D->isInvalidDecl() || D->isImplicit()) |
| 2019 | continue; |
| 2020 | D = cast<NamedDecl>(D->getCanonicalDecl()); |
| 2021 | |
| 2022 | auto *FTD = dyn_cast<FunctionTemplateDecl>(D); |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 2023 | auto *CD = |
| 2024 | dyn_cast_or_null<CXXConstructorDecl>(FTD ? FTD->getTemplatedDecl() : D); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2025 | // Class-scope explicit specializations (MS extension) do not result in |
| 2026 | // deduction guides. |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 2027 | if (!CD || (!FTD && CD->isFunctionTemplateSpecialization())) |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2028 | continue; |
| 2029 | |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 2030 | Transform.transformConstructor(FTD, CD); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2031 | AddedAny = true; |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2032 | } |
| 2033 | |
Faisal Vali | 81b756e | 2017-10-22 14:45:08 +0000 | [diff] [blame] | 2034 | // C++17 [over.match.class.deduct] |
| 2035 | // -- If C is not defined or does not declare any constructors, an |
| 2036 | // additional function template derived as above from a hypothetical |
| 2037 | // constructor C(). |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2038 | if (!AddedAny) |
| 2039 | Transform.buildSimpleDeductionGuide(None); |
| 2040 | |
Faisal Vali | 81b756e | 2017-10-22 14:45:08 +0000 | [diff] [blame] | 2041 | // -- An additional function template derived as above from a hypothetical |
| 2042 | // constructor C(C), called the copy deduction candidate. |
| 2043 | cast<CXXDeductionGuideDecl>( |
| 2044 | cast<FunctionTemplateDecl>( |
| 2045 | Transform.buildSimpleDeductionGuide(Transform.DeducedType)) |
| 2046 | ->getTemplatedDecl()) |
| 2047 | ->setIsCopyDeductionCandidate(); |
Richard Smith | 3291877 | 2017-02-14 00:25:28 +0000 | [diff] [blame] | 2048 | } |
| 2049 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2050 | /// Diagnose the presence of a default template argument on a |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2051 | /// template parameter, which is ill-formed in certain contexts. |
| 2052 | /// |
| 2053 | /// \returns true if the default template argument should be dropped. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2054 | static bool DiagnoseDefaultTemplateArgument(Sema &S, |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2055 | Sema::TemplateParamListContext TPC, |
| 2056 | SourceLocation ParamLoc, |
| 2057 | SourceRange DefArgRange) { |
| 2058 | switch (TPC) { |
| 2059 | case Sema::TPC_ClassTemplate: |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2060 | case Sema::TPC_VarTemplate: |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 2061 | case Sema::TPC_TypeAliasTemplate: |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2062 | return false; |
| 2063 | |
| 2064 | case Sema::TPC_FunctionTemplate: |
Douglas Gregor | a99fb4c | 2011-02-04 04:20:44 +0000 | [diff] [blame] | 2065 | case Sema::TPC_FriendFunctionTemplateDefinition: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2066 | // C++ [temp.param]p9: |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2067 | // A default template-argument shall not be specified in a |
| 2068 | // function template declaration or a function template |
| 2069 | // definition [...] |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2070 | // If a friend function template declaration specifies a default |
Douglas Gregor | a99fb4c | 2011-02-04 04:20:44 +0000 | [diff] [blame] | 2071 | // template-argument, that declaration shall be a definition and shall be |
| 2072 | // the only declaration of the function template in the translation unit. |
| 2073 | // (C++98/03 doesn't have this wording; see DR226). |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2074 | S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 2075 | diag::warn_cxx98_compat_template_parameter_default_in_function_template |
| 2076 | : diag::ext_template_parameter_default_in_function_template) |
| 2077 | << DefArgRange; |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2078 | return false; |
| 2079 | |
| 2080 | case Sema::TPC_ClassTemplateMember: |
| 2081 | // C++0x [temp.param]p9: |
| 2082 | // A default template-argument shall not be specified in the |
| 2083 | // template-parameter-lists of the definition of a member of a |
| 2084 | // class template that appears outside of the member's class. |
| 2085 | S.Diag(ParamLoc, diag::err_template_parameter_default_template_member) |
| 2086 | << DefArgRange; |
| 2087 | return true; |
| 2088 | |
David Majnemer | ba8f17a | 2013-06-25 22:08:55 +0000 | [diff] [blame] | 2089 | case Sema::TPC_FriendClassTemplate: |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2090 | case Sema::TPC_FriendFunctionTemplate: |
| 2091 | // C++ [temp.param]p9: |
| 2092 | // A default template-argument shall not be specified in a |
| 2093 | // friend template declaration. |
| 2094 | S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template) |
| 2095 | << DefArgRange; |
| 2096 | return true; |
| 2097 | |
| 2098 | // FIXME: C++0x [temp.param]p9 allows default template-arguments |
| 2099 | // for friend function templates if there is only a single |
| 2100 | // declaration (and it is a definition). Strange! |
| 2101 | } |
| 2102 | |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2103 | llvm_unreachable("Invalid TemplateParamListContext!"); |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2104 | } |
| 2105 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2106 | /// Check for unexpanded parameter packs within the template parameters |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2107 | /// of a template template parameter, recursively. |
Benjamin Kramer | 8aef596 | 2011-03-26 12:38:21 +0000 | [diff] [blame] | 2108 | static bool DiagnoseUnexpandedParameterPacks(Sema &S, |
| 2109 | TemplateTemplateParmDecl *TTP) { |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2110 | // A template template parameter which is a parameter pack is also a pack |
| 2111 | // expansion. |
| 2112 | if (TTP->isParameterPack()) |
| 2113 | return false; |
| 2114 | |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2115 | TemplateParameterList *Params = TTP->getTemplateParameters(); |
| 2116 | for (unsigned I = 0, N = Params->size(); I != N; ++I) { |
| 2117 | NamedDecl *P = Params->getParam(I); |
| 2118 | if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) { |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2119 | if (!NTTP->isParameterPack() && |
| 2120 | S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(), |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2121 | NTTP->getTypeSourceInfo(), |
| 2122 | Sema::UPPC_NonTypeTemplateParameterType)) |
| 2123 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2124 | |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2125 | continue; |
| 2126 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2127 | |
| 2128 | if (TemplateTemplateParmDecl *InnerTTP |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2129 | = dyn_cast<TemplateTemplateParmDecl>(P)) |
| 2130 | if (DiagnoseUnexpandedParameterPacks(S, InnerTTP)) |
| 2131 | return true; |
| 2132 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2133 | |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2134 | return false; |
| 2135 | } |
| 2136 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2137 | /// Checks the validity of a template parameter list, possibly |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2138 | /// considering the template parameter list from a previous |
| 2139 | /// declaration. |
| 2140 | /// |
| 2141 | /// If an "old" template parameter list is provided, it must be |
| 2142 | /// equivalent (per TemplateParameterListsAreEqual) to the "new" |
| 2143 | /// template parameter list. |
| 2144 | /// |
| 2145 | /// \param NewParams Template parameter list for a new template |
| 2146 | /// declaration. This template parameter list will be updated with any |
| 2147 | /// default arguments that are carried through from the previous |
| 2148 | /// template parameter list. |
| 2149 | /// |
| 2150 | /// \param OldParams If provided, template parameter list from a |
| 2151 | /// previous declaration of the same template. Default template |
| 2152 | /// arguments will be merged from the old template parameter list to |
| 2153 | /// the new template parameter list. |
| 2154 | /// |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2155 | /// \param TPC Describes the context in which we are checking the given |
| 2156 | /// template parameter list. |
| 2157 | /// |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 2158 | /// \param SkipBody If we might have already made a prior merged definition |
| 2159 | /// of this template visible, the corresponding body-skipping information. |
| 2160 | /// Default argument redefinition is not an error when skipping such a body, |
| 2161 | /// because (under the ODR) we can assume the default arguments are the same |
| 2162 | /// as the prior merged definition. |
| 2163 | /// |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2164 | /// \returns true if an error occurred, false otherwise. |
| 2165 | bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams, |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2166 | TemplateParameterList *OldParams, |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 2167 | TemplateParamListContext TPC, |
| 2168 | SkipBodyInfo *SkipBody) { |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2169 | bool Invalid = false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2170 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2171 | // C++ [temp.param]p10: |
| 2172 | // The set of default template-arguments available for use with a |
| 2173 | // template declaration or definition is obtained by merging the |
| 2174 | // default arguments from the definition (if in scope) and all |
| 2175 | // declarations in scope in the same way default function |
| 2176 | // arguments are (8.3.6). |
| 2177 | bool SawDefaultArgument = false; |
| 2178 | SourceLocation PreviousDefaultArgLoc; |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2179 | |
Mike Stump | c89c8e3 | 2009-02-11 23:03:27 +0000 | [diff] [blame] | 2180 | // Dummy initialization to avoid warnings. |
Douglas Gregor | 5bd22da | 2009-02-11 20:46:19 +0000 | [diff] [blame] | 2181 | TemplateParameterList::iterator OldParam = NewParams->end(); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2182 | if (OldParams) |
| 2183 | OldParam = OldParams->begin(); |
| 2184 | |
Douglas Gregor | 0693def | 2011-01-27 01:40:17 +0000 | [diff] [blame] | 2185 | bool RemoveDefaultArguments = false; |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2186 | for (TemplateParameterList::iterator NewParam = NewParams->begin(), |
| 2187 | NewParamEnd = NewParams->end(); |
| 2188 | NewParam != NewParamEnd; ++NewParam) { |
| 2189 | // Variables used to diagnose redundant default arguments |
| 2190 | bool RedundantDefaultArg = false; |
| 2191 | SourceLocation OldDefaultLoc; |
| 2192 | SourceLocation NewDefaultLoc; |
| 2193 | |
David Blaikie | 651c73c | 2011-10-19 05:19:50 +0000 | [diff] [blame] | 2194 | // Variable used to diagnose missing default arguments |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2195 | bool MissingDefaultArg = false; |
| 2196 | |
David Blaikie | 651c73c | 2011-10-19 05:19:50 +0000 | [diff] [blame] | 2197 | // Variable used to diagnose non-final parameter packs |
| 2198 | bool SawParameterPack = false; |
Anders Carlsson | 327865d | 2009-06-12 23:20:15 +0000 | [diff] [blame] | 2199 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2200 | if (TemplateTypeParmDecl *NewTypeParm |
| 2201 | = dyn_cast<TemplateTypeParmDecl>(*NewParam)) { |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2202 | // Check the presence of a default argument here. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2203 | if (NewTypeParm->hasDefaultArgument() && |
| 2204 | DiagnoseDefaultTemplateArgument(*this, TPC, |
| 2205 | NewTypeParm->getLocation(), |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2206 | NewTypeParm->getDefaultArgumentInfo()->getTypeLoc() |
Abramo Bagnara | 1108e7b | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 2207 | .getSourceRange())) |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2208 | NewTypeParm->removeDefaultArgument(); |
| 2209 | |
| 2210 | // Merge default arguments for template type parameters. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2211 | TemplateTypeParmDecl *OldTypeParm |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2212 | = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : nullptr; |
Anders Carlsson | 327865d | 2009-06-12 23:20:15 +0000 | [diff] [blame] | 2213 | if (NewTypeParm->isParameterPack()) { |
| 2214 | assert(!NewTypeParm->hasDefaultArgument() && |
| 2215 | "Parameter packs can't have a default argument!"); |
| 2216 | SawParameterPack = true; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 2217 | } else if (OldTypeParm && hasVisibleDefaultArgument(OldTypeParm) && |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 2218 | NewTypeParm->hasDefaultArgument() && |
| 2219 | (!SkipBody || !SkipBody->ShouldSkip)) { |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2220 | OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc(); |
| 2221 | NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc(); |
| 2222 | SawDefaultArgument = true; |
| 2223 | RedundantDefaultArg = true; |
| 2224 | PreviousDefaultArgLoc = NewDefaultLoc; |
| 2225 | } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) { |
| 2226 | // Merge the default argument from the old declaration to the |
| 2227 | // new declaration. |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 2228 | NewTypeParm->setInheritedDefaultArgument(Context, OldTypeParm); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2229 | PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc(); |
| 2230 | } else if (NewTypeParm->hasDefaultArgument()) { |
| 2231 | SawDefaultArgument = true; |
| 2232 | PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc(); |
| 2233 | } else if (SawDefaultArgument) |
| 2234 | MissingDefaultArg = true; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2235 | } else if (NonTypeTemplateParmDecl *NewNonTypeParm |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2236 | = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) { |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2237 | // Check for unexpanded parameter packs. |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2238 | if (!NewNonTypeParm->isParameterPack() && |
| 2239 | DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2240 | NewNonTypeParm->getTypeSourceInfo(), |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2241 | UPPC_NonTypeTemplateParameterType)) { |
| 2242 | Invalid = true; |
| 2243 | continue; |
| 2244 | } |
| 2245 | |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2246 | // Check the presence of a default argument here. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2247 | if (NewNonTypeParm->hasDefaultArgument() && |
| 2248 | DiagnoseDefaultTemplateArgument(*this, TPC, |
| 2249 | NewNonTypeParm->getLocation(), |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2250 | NewNonTypeParm->getDefaultArgument()->getSourceRange())) { |
Abramo Bagnara | 656e300 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 2251 | NewNonTypeParm->removeDefaultArgument(); |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2252 | } |
| 2253 | |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2254 | // Merge default arguments for non-type template parameters |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2255 | NonTypeTemplateParmDecl *OldNonTypeParm |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2256 | = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : nullptr; |
Douglas Gregor | 0018cdc | 2011-01-05 16:19:19 +0000 | [diff] [blame] | 2257 | if (NewNonTypeParm->isParameterPack()) { |
| 2258 | assert(!NewNonTypeParm->hasDefaultArgument() && |
| 2259 | "Parameter packs can't have a default argument!"); |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2260 | if (!NewNonTypeParm->isPackExpansion()) |
| 2261 | SawParameterPack = true; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 2262 | } else if (OldNonTypeParm && hasVisibleDefaultArgument(OldNonTypeParm) && |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 2263 | NewNonTypeParm->hasDefaultArgument() && |
| 2264 | (!SkipBody || !SkipBody->ShouldSkip)) { |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2265 | OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc(); |
| 2266 | NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc(); |
| 2267 | SawDefaultArgument = true; |
| 2268 | RedundantDefaultArg = true; |
| 2269 | PreviousDefaultArgLoc = NewDefaultLoc; |
| 2270 | } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) { |
| 2271 | // Merge the default argument from the old declaration to the |
| 2272 | // new declaration. |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 2273 | NewNonTypeParm->setInheritedDefaultArgument(Context, OldNonTypeParm); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2274 | PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc(); |
| 2275 | } else if (NewNonTypeParm->hasDefaultArgument()) { |
| 2276 | SawDefaultArgument = true; |
| 2277 | PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc(); |
| 2278 | } else if (SawDefaultArgument) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2279 | MissingDefaultArg = true; |
Mike Stump | 12b8ce1 | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2280 | } else { |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2281 | TemplateTemplateParmDecl *NewTemplateParm |
| 2282 | = cast<TemplateTemplateParmDecl>(*NewParam); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2283 | |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2284 | // Check for unexpanded parameter packs, recursively. |
Douglas Gregor | 4a2a8f7 | 2011-10-25 03:44:56 +0000 | [diff] [blame] | 2285 | if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) { |
Douglas Gregor | 38ee75e | 2010-12-16 15:36:43 +0000 | [diff] [blame] | 2286 | Invalid = true; |
| 2287 | continue; |
| 2288 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2289 | |
David Blaikie | 651c73c | 2011-10-19 05:19:50 +0000 | [diff] [blame] | 2290 | // Check the presence of a default argument here. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2291 | if (NewTemplateParm->hasDefaultArgument() && |
| 2292 | DiagnoseDefaultTemplateArgument(*this, TPC, |
| 2293 | NewTemplateParm->getLocation(), |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2294 | NewTemplateParm->getDefaultArgument().getSourceRange())) |
Abramo Bagnara | 656e300 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 2295 | NewTemplateParm->removeDefaultArgument(); |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2296 | |
| 2297 | // Merge default arguments for template template parameters |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2298 | TemplateTemplateParmDecl *OldTemplateParm |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2299 | = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : nullptr; |
Douglas Gregor | 0018cdc | 2011-01-05 16:19:19 +0000 | [diff] [blame] | 2300 | if (NewTemplateParm->isParameterPack()) { |
| 2301 | assert(!NewTemplateParm->hasDefaultArgument() && |
| 2302 | "Parameter packs can't have a default argument!"); |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2303 | if (!NewTemplateParm->isPackExpansion()) |
| 2304 | SawParameterPack = true; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 2305 | } else if (OldTemplateParm && |
| 2306 | hasVisibleDefaultArgument(OldTemplateParm) && |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 2307 | NewTemplateParm->hasDefaultArgument() && |
| 2308 | (!SkipBody || !SkipBody->ShouldSkip)) { |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2309 | OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation(); |
| 2310 | NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation(); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2311 | SawDefaultArgument = true; |
| 2312 | RedundantDefaultArg = true; |
| 2313 | PreviousDefaultArgLoc = NewDefaultLoc; |
| 2314 | } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) { |
| 2315 | // Merge the default argument from the old declaration to the |
| 2316 | // new declaration. |
Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 2317 | NewTemplateParm->setInheritedDefaultArgument(Context, OldTemplateParm); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2318 | PreviousDefaultArgLoc |
| 2319 | = OldTemplateParm->getDefaultArgument().getLocation(); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2320 | } else if (NewTemplateParm->hasDefaultArgument()) { |
| 2321 | SawDefaultArgument = true; |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2322 | PreviousDefaultArgLoc |
| 2323 | = NewTemplateParm->getDefaultArgument().getLocation(); |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2324 | } else if (SawDefaultArgument) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2325 | MissingDefaultArg = true; |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2326 | } |
| 2327 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2328 | // C++11 [temp.param]p11: |
David Blaikie | 651c73c | 2011-10-19 05:19:50 +0000 | [diff] [blame] | 2329 | // If a template parameter of a primary class template or alias template |
| 2330 | // is a template parameter pack, it shall be the last template parameter. |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 2331 | if (SawParameterPack && (NewParam + 1) != NewParamEnd && |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2332 | (TPC == TPC_ClassTemplate || TPC == TPC_VarTemplate || |
| 2333 | TPC == TPC_TypeAliasTemplate)) { |
David Blaikie | 651c73c | 2011-10-19 05:19:50 +0000 | [diff] [blame] | 2334 | Diag((*NewParam)->getLocation(), |
| 2335 | diag::err_template_param_pack_must_be_last_template_parameter); |
| 2336 | Invalid = true; |
| 2337 | } |
| 2338 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2339 | if (RedundantDefaultArg) { |
| 2340 | // C++ [temp.param]p12: |
| 2341 | // A template-parameter shall not be given default arguments |
| 2342 | // by two different declarations in the same scope. |
| 2343 | Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition); |
| 2344 | Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg); |
| 2345 | Invalid = true; |
Douglas Gregor | 8b481d8 | 2011-02-04 03:57:22 +0000 | [diff] [blame] | 2346 | } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) { |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2347 | // C++ [temp.param]p11: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2348 | // If a template-parameter of a class template has a default |
| 2349 | // template-argument, each subsequent template-parameter shall either |
Douglas Gregor | 7dba51f | 2011-01-05 16:21:17 +0000 | [diff] [blame] | 2350 | // have a default template-argument supplied or be a template parameter |
| 2351 | // pack. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2352 | Diag((*NewParam)->getLocation(), |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2353 | diag::err_template_param_default_arg_missing); |
| 2354 | Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg); |
| 2355 | Invalid = true; |
Douglas Gregor | 0693def | 2011-01-27 01:40:17 +0000 | [diff] [blame] | 2356 | RemoveDefaultArguments = true; |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2357 | } |
| 2358 | |
| 2359 | // If we have an old template parameter list that we're merging |
| 2360 | // in, move on to the next parameter. |
| 2361 | if (OldParams) |
| 2362 | ++OldParam; |
| 2363 | } |
| 2364 | |
Douglas Gregor | 0693def | 2011-01-27 01:40:17 +0000 | [diff] [blame] | 2365 | // We were missing some default arguments at the end of the list, so remove |
| 2366 | // all of the default arguments. |
| 2367 | if (RemoveDefaultArguments) { |
| 2368 | for (TemplateParameterList::iterator NewParam = NewParams->begin(), |
| 2369 | NewParamEnd = NewParams->end(); |
| 2370 | NewParam != NewParamEnd; ++NewParam) { |
| 2371 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam)) |
| 2372 | TTP->removeDefaultArgument(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2373 | else if (NonTypeTemplateParmDecl *NTTP |
Douglas Gregor | 0693def | 2011-01-27 01:40:17 +0000 | [diff] [blame] | 2374 | = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) |
| 2375 | NTTP->removeDefaultArgument(); |
| 2376 | else |
| 2377 | cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument(); |
| 2378 | } |
| 2379 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2380 | |
Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 2381 | return Invalid; |
| 2382 | } |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 2383 | |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2384 | namespace { |
| 2385 | |
| 2386 | /// A class which looks for a use of a certain level of template |
| 2387 | /// parameter. |
| 2388 | struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> { |
| 2389 | typedef RecursiveASTVisitor<DependencyChecker> super; |
| 2390 | |
| 2391 | unsigned Depth; |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 2392 | |
| 2393 | // Whether we're looking for a use of a template parameter that makes the |
| 2394 | // overall construct type-dependent / a dependent type. This is strictly |
| 2395 | // best-effort for now; we may fail to match at all for a dependent type |
| 2396 | // in some cases if this is set. |
| 2397 | bool IgnoreNonTypeDependent; |
| 2398 | |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2399 | bool Match; |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2400 | SourceLocation MatchLoc; |
| 2401 | |
Richard Smith | 1389418 | 2017-04-13 21:37:24 +0000 | [diff] [blame] | 2402 | DependencyChecker(unsigned Depth, bool IgnoreNonTypeDependent) |
| 2403 | : Depth(Depth), IgnoreNonTypeDependent(IgnoreNonTypeDependent), |
| 2404 | Match(false) {} |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2405 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 2406 | DependencyChecker(TemplateParameterList *Params, bool IgnoreNonTypeDependent) |
Richard Smith | 1389418 | 2017-04-13 21:37:24 +0000 | [diff] [blame] | 2407 | : IgnoreNonTypeDependent(IgnoreNonTypeDependent), Match(false) { |
| 2408 | NamedDecl *ND = Params->getParam(0); |
| 2409 | if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) { |
| 2410 | Depth = PD->getDepth(); |
| 2411 | } else if (NonTypeTemplateParmDecl *PD = |
| 2412 | dyn_cast<NonTypeTemplateParmDecl>(ND)) { |
| 2413 | Depth = PD->getDepth(); |
| 2414 | } else { |
| 2415 | Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth(); |
| 2416 | } |
| 2417 | } |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2418 | |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2419 | bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) { |
Richard Smith | 1389418 | 2017-04-13 21:37:24 +0000 | [diff] [blame] | 2420 | if (ParmDepth >= Depth) { |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2421 | Match = true; |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2422 | MatchLoc = Loc; |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2423 | return true; |
| 2424 | } |
| 2425 | return false; |
| 2426 | } |
| 2427 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 2428 | bool TraverseStmt(Stmt *S, DataRecursionQueue *Q = nullptr) { |
| 2429 | // Prune out non-type-dependent expressions if requested. This can |
| 2430 | // sometimes result in us failing to find a template parameter reference |
| 2431 | // (if a value-dependent expression creates a dependent type), but this |
| 2432 | // mode is best-effort only. |
| 2433 | if (auto *E = dyn_cast_or_null<Expr>(S)) |
| 2434 | if (IgnoreNonTypeDependent && !E->isTypeDependent()) |
| 2435 | return true; |
| 2436 | return super::TraverseStmt(S, Q); |
| 2437 | } |
| 2438 | |
| 2439 | bool TraverseTypeLoc(TypeLoc TL) { |
| 2440 | if (IgnoreNonTypeDependent && !TL.isNull() && |
| 2441 | !TL.getType()->isDependentType()) |
| 2442 | return true; |
| 2443 | return super::TraverseTypeLoc(TL); |
| 2444 | } |
| 2445 | |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2446 | bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { |
| 2447 | return !Matches(TL.getTypePtr()->getDepth(), TL.getNameLoc()); |
| 2448 | } |
| 2449 | |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2450 | bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) { |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 2451 | // For a best-effort search, keep looking until we find a location. |
| 2452 | return IgnoreNonTypeDependent || !Matches(T->getDepth()); |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2453 | } |
| 2454 | |
| 2455 | bool TraverseTemplateName(TemplateName N) { |
| 2456 | if (TemplateTemplateParmDecl *PD = |
| 2457 | dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl())) |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2458 | if (Matches(PD->getDepth())) |
| 2459 | return false; |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2460 | return super::TraverseTemplateName(N); |
| 2461 | } |
| 2462 | |
| 2463 | bool VisitDeclRefExpr(DeclRefExpr *E) { |
| 2464 | if (NonTypeTemplateParmDecl *PD = |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2465 | dyn_cast<NonTypeTemplateParmDecl>(E->getDecl())) |
| 2466 | if (Matches(PD->getDepth(), E->getExprLoc())) |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2467 | return false; |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2468 | return super::VisitDeclRefExpr(E); |
| 2469 | } |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 2470 | |
| 2471 | bool VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) { |
| 2472 | return TraverseType(T->getReplacementType()); |
| 2473 | } |
| 2474 | |
| 2475 | bool |
| 2476 | VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) { |
| 2477 | return TraverseTemplateArgument(T->getArgumentPack()); |
| 2478 | } |
| 2479 | |
Douglas Gregor | a6a7e3c | 2011-05-13 00:34:01 +0000 | [diff] [blame] | 2480 | bool TraverseInjectedClassNameType(const InjectedClassNameType *T) { |
| 2481 | return TraverseType(T->getInjectedSpecializationType()); |
| 2482 | } |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2483 | }; |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 2484 | } // end anonymous namespace |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2485 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2486 | /// Determines whether a given type depends on the given parameter |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2487 | /// list. |
| 2488 | static bool |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2489 | DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) { |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 2490 | DependencyChecker Checker(Params, /*IgnoreNonTypeDependent*/false); |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2491 | Checker.TraverseType(T); |
John McCall | a020a01 | 2010-10-20 05:44:58 +0000 | [diff] [blame] | 2492 | return Checker.Match; |
| 2493 | } |
| 2494 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2495 | // Find the source range corresponding to the named type in the given |
| 2496 | // nested-name-specifier, if any. |
| 2497 | static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context, |
| 2498 | QualType T, |
| 2499 | const CXXScopeSpec &SS) { |
| 2500 | NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data()); |
| 2501 | while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) { |
| 2502 | if (const Type *CurType = NNS->getAsType()) { |
| 2503 | if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0))) |
| 2504 | return NNSLoc.getTypeLoc().getSourceRange(); |
| 2505 | } else |
| 2506 | break; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2507 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2508 | NNSLoc = NNSLoc.getPrefix(); |
| 2509 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2510 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2511 | return SourceRange(); |
| 2512 | } |
| 2513 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2514 | /// Match the given template parameter lists to the given scope |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2515 | /// specifier, returning the template parameter list that applies to the |
| 2516 | /// name. |
| 2517 | /// |
| 2518 | /// \param DeclStartLoc the start of the declaration that has a scope |
| 2519 | /// specifier or a template parameter list. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2520 | /// |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2521 | /// \param DeclLoc The location of the declaration itself. |
| 2522 | /// |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2523 | /// \param SS the scope specifier that will be matched to the given template |
| 2524 | /// parameter lists. This scope specifier precedes a qualified name that is |
| 2525 | /// being declared. |
| 2526 | /// |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2527 | /// \param TemplateId The template-id following the scope specifier, if there |
| 2528 | /// is one. Used to check for a missing 'template<>'. |
| 2529 | /// |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2530 | /// \param ParamLists the template parameter lists, from the outermost to the |
| 2531 | /// innermost template parameter lists. |
| 2532 | /// |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 2533 | /// \param IsFriend Whether to apply the slightly different rules for |
| 2534 | /// matching template parameters to scope specifiers in friend |
| 2535 | /// declarations. |
| 2536 | /// |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2537 | /// \param IsMemberSpecialization will be set true if the scope specifier |
| 2538 | /// denotes a fully-specialized type, and therefore this is a declaration of |
| 2539 | /// a member specialization. |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 2540 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2541 | /// \returns the template parameter list, if any, that corresponds to the |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2542 | /// name that is preceded by the scope specifier @p SS. This template |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 2543 | /// parameter list may have template parameters (if we're declaring a |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2544 | /// template) or may have no template parameters (if we're declaring a |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 2545 | /// template specialization), or may be NULL (if what we're declaring isn't |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2546 | /// itself a template). |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2547 | TemplateParameterList *Sema::MatchTemplateParametersToScopeSpecifier( |
| 2548 | SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS, |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2549 | TemplateIdAnnotation *TemplateId, |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2550 | ArrayRef<TemplateParameterList *> ParamLists, bool IsFriend, |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2551 | bool &IsMemberSpecialization, bool &Invalid) { |
| 2552 | IsMemberSpecialization = false; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2553 | Invalid = false; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2554 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2555 | // The sequence of nested types to which we will match up the template |
| 2556 | // parameter lists. We first build this list by starting with the type named |
| 2557 | // by the nested-name-specifier and walking out until we run out of types. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2558 | SmallVector<QualType, 4> NestedTypes; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2559 | QualType T; |
Douglas Gregor | 9d07dfa | 2011-05-15 17:27:27 +0000 | [diff] [blame] | 2560 | if (SS.getScopeRep()) { |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2561 | if (CXXRecordDecl *Record |
Douglas Gregor | 9d07dfa | 2011-05-15 17:27:27 +0000 | [diff] [blame] | 2562 | = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true))) |
| 2563 | T = Context.getTypeDeclType(Record); |
| 2564 | else |
| 2565 | T = QualType(SS.getScopeRep()->getAsType(), 0); |
| 2566 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2567 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2568 | // If we found an explicit specialization that prevents us from needing |
| 2569 | // 'template<>' headers, this will be set to the location of that |
| 2570 | // explicit specialization. |
| 2571 | SourceLocation ExplicitSpecLoc; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2572 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2573 | while (!T.isNull()) { |
| 2574 | NestedTypes.push_back(T); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2575 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2576 | // Retrieve the parent of a record type. |
| 2577 | if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) { |
| 2578 | // If this type is an explicit specialization, we're done. |
| 2579 | if (ClassTemplateSpecializationDecl *Spec |
| 2580 | = dyn_cast<ClassTemplateSpecializationDecl>(Record)) { |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2581 | if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) && |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2582 | Spec->getSpecializationKind() == TSK_ExplicitSpecialization) { |
| 2583 | ExplicitSpecLoc = Spec->getLocation(); |
| 2584 | break; |
Douglas Gregor | 6591149 | 2009-11-23 12:11:45 +0000 | [diff] [blame] | 2585 | } |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2586 | } else if (Record->getTemplateSpecializationKind() |
| 2587 | == TSK_ExplicitSpecialization) { |
| 2588 | ExplicitSpecLoc = Record->getLocation(); |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 2589 | break; |
| 2590 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2591 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2592 | if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent())) |
| 2593 | T = Context.getTypeDeclType(Parent); |
| 2594 | else |
| 2595 | T = QualType(); |
| 2596 | continue; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2597 | } |
| 2598 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2599 | if (const TemplateSpecializationType *TST |
| 2600 | = T->getAs<TemplateSpecializationType>()) { |
| 2601 | if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) { |
| 2602 | if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext())) |
| 2603 | T = Context.getTypeDeclType(Parent); |
| 2604 | else |
| 2605 | T = QualType(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2606 | continue; |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2607 | } |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2608 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2609 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2610 | // Look one step prior in a dependent template specialization type. |
| 2611 | if (const DependentTemplateSpecializationType *DependentTST |
| 2612 | = T->getAs<DependentTemplateSpecializationType>()) { |
| 2613 | if (NestedNameSpecifier *NNS = DependentTST->getQualifier()) |
| 2614 | T = QualType(NNS->getAsType(), 0); |
| 2615 | else |
| 2616 | T = QualType(); |
| 2617 | continue; |
| 2618 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2619 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2620 | // Look one step prior in a dependent name type. |
| 2621 | if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){ |
| 2622 | if (NestedNameSpecifier *NNS = DependentName->getQualifier()) |
| 2623 | T = QualType(NNS->getAsType(), 0); |
| 2624 | else |
| 2625 | T = QualType(); |
| 2626 | continue; |
| 2627 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2628 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2629 | // Retrieve the parent of an enumeration type. |
| 2630 | if (const EnumType *EnumT = T->getAs<EnumType>()) { |
| 2631 | // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization |
| 2632 | // check here. |
| 2633 | EnumDecl *Enum = EnumT->getDecl(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2634 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2635 | // Get to the parent type. |
| 2636 | if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent())) |
| 2637 | T = Context.getTypeDeclType(Parent); |
| 2638 | else |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2639 | T = QualType(); |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2640 | continue; |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2641 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2642 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2643 | T = QualType(); |
| 2644 | } |
| 2645 | // Reverse the nested types list, since we want to traverse from the outermost |
| 2646 | // to the innermost while checking template-parameter-lists. |
| 2647 | std::reverse(NestedTypes.begin(), NestedTypes.end()); |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 2648 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2649 | // C++0x [temp.expl.spec]p17: |
| 2650 | // A member or a member template may be nested within many |
| 2651 | // enclosing class templates. In an explicit specialization for |
| 2652 | // such a member, the member declaration shall be preceded by a |
| 2653 | // template<> for each enclosing class template that is |
| 2654 | // explicitly specialized. |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2655 | bool SawNonEmptyTemplateParameterList = false; |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2656 | |
NAKAMURA Takumi | de4077a | 2014-04-17 08:57:09 +0000 | [diff] [blame] | 2657 | auto CheckExplicitSpecialization = [&](SourceRange Range, bool Recovery) { |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2658 | if (SawNonEmptyTemplateParameterList) { |
| 2659 | Diag(DeclLoc, diag::err_specialize_member_of_template) |
| 2660 | << !Recovery << Range; |
| 2661 | Invalid = true; |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2662 | IsMemberSpecialization = false; |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2663 | return true; |
| 2664 | } |
| 2665 | |
| 2666 | return false; |
| 2667 | }; |
| 2668 | |
| 2669 | auto DiagnoseMissingExplicitSpecialization = [&] (SourceRange Range) { |
| 2670 | // Check that we can have an explicit specialization here. |
| 2671 | if (CheckExplicitSpecialization(Range, true)) |
| 2672 | return true; |
| 2673 | |
| 2674 | // We don't have a template header, but we should. |
| 2675 | SourceLocation ExpectedTemplateLoc; |
| 2676 | if (!ParamLists.empty()) |
| 2677 | ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc(); |
| 2678 | else |
| 2679 | ExpectedTemplateLoc = DeclStartLoc; |
| 2680 | |
| 2681 | Diag(DeclLoc, diag::err_template_spec_needs_header) |
| 2682 | << Range |
| 2683 | << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> "); |
| 2684 | return false; |
| 2685 | }; |
| 2686 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2687 | unsigned ParamIdx = 0; |
| 2688 | for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes; |
| 2689 | ++TypeIdx) { |
| 2690 | T = NestedTypes[TypeIdx]; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2691 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2692 | // Whether we expect a 'template<>' header. |
| 2693 | bool NeedEmptyTemplateHeader = false; |
| 2694 | |
| 2695 | // Whether we expect a template header with parameters. |
| 2696 | bool NeedNonemptyTemplateHeader = false; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2697 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2698 | // For a dependent type, the set of template parameters that we |
| 2699 | // expect to see. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2700 | TemplateParameterList *ExpectedTemplateParams = nullptr; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2701 | |
Douglas Gregor | 373af9b | 2011-05-11 23:26:17 +0000 | [diff] [blame] | 2702 | // C++0x [temp.expl.spec]p15: |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2703 | // A member or a member template may be nested within many enclosing |
| 2704 | // class templates. In an explicit specialization for such a member, the |
| 2705 | // member declaration shall be preceded by a template<> for each |
Douglas Gregor | 373af9b | 2011-05-11 23:26:17 +0000 | [diff] [blame] | 2706 | // enclosing class template that is explicitly specialized. |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2707 | if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) { |
| 2708 | if (ClassTemplatePartialSpecializationDecl *Partial |
| 2709 | = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) { |
| 2710 | ExpectedTemplateParams = Partial->getTemplateParameters(); |
| 2711 | NeedNonemptyTemplateHeader = true; |
| 2712 | } else if (Record->isDependentType()) { |
| 2713 | if (Record->getDescribedClassTemplate()) { |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 2714 | ExpectedTemplateParams = Record->getDescribedClassTemplate() |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2715 | ->getTemplateParameters(); |
| 2716 | NeedNonemptyTemplateHeader = true; |
| 2717 | } |
| 2718 | } else if (ClassTemplateSpecializationDecl *Spec |
| 2719 | = dyn_cast<ClassTemplateSpecializationDecl>(Record)) { |
| 2720 | // C++0x [temp.expl.spec]p4: |
| 2721 | // Members of an explicitly specialized class template are defined |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2722 | // in the same manner as members of normal classes, and not using |
| 2723 | // the template<> syntax. |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2724 | if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization) |
| 2725 | NeedEmptyTemplateHeader = true; |
| 2726 | else |
Douglas Gregor | b32e825 | 2011-06-01 22:37:07 +0000 | [diff] [blame] | 2727 | continue; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2728 | } else if (Record->getTemplateSpecializationKind()) { |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2729 | if (Record->getTemplateSpecializationKind() |
Douglas Gregor | 373af9b | 2011-05-11 23:26:17 +0000 | [diff] [blame] | 2730 | != TSK_ExplicitSpecialization && |
| 2731 | TypeIdx == NumTypes - 1) |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2732 | IsMemberSpecialization = true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2733 | |
Douglas Gregor | 373af9b | 2011-05-11 23:26:17 +0000 | [diff] [blame] | 2734 | continue; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2735 | } |
| 2736 | } else if (const TemplateSpecializationType *TST |
| 2737 | = T->getAs<TemplateSpecializationType>()) { |
Nico Weber | 2890061 | 2015-01-30 02:35:21 +0000 | [diff] [blame] | 2738 | if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) { |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2739 | ExpectedTemplateParams = Template->getTemplateParameters(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2740 | NeedNonemptyTemplateHeader = true; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2741 | } |
| 2742 | } else if (T->getAs<DependentTemplateSpecializationType>()) { |
| 2743 | // FIXME: We actually could/should check the template arguments here |
| 2744 | // against the corresponding template parameter list. |
| 2745 | NeedNonemptyTemplateHeader = false; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2746 | } |
| 2747 | |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2748 | // C++ [temp.expl.spec]p16: |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2749 | // In an explicit specialization declaration for a member of a class |
| 2750 | // template or a member template that ap- pears in namespace scope, the |
| 2751 | // member template and some of its enclosing class templates may remain |
| 2752 | // unspecialized, except that the declaration shall not explicitly |
| 2753 | // specialize a class member template if its en- closing class templates |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2754 | // are not explicitly specialized as well. |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2755 | if (ParamIdx < ParamLists.size()) { |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2756 | if (ParamLists[ParamIdx]->size() == 0) { |
NAKAMURA Takumi | de4077a | 2014-04-17 08:57:09 +0000 | [diff] [blame] | 2757 | if (CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(), |
| 2758 | false)) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2759 | return nullptr; |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2760 | } else |
| 2761 | SawNonEmptyTemplateParameterList = true; |
| 2762 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2763 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2764 | if (NeedEmptyTemplateHeader) { |
| 2765 | // If we're on the last of the types, and we need a 'template<>' header |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2766 | // here, then it's a member specialization. |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2767 | if (TypeIdx == NumTypes - 1) |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 2768 | IsMemberSpecialization = true; |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2769 | |
| 2770 | if (ParamIdx < ParamLists.size()) { |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2771 | if (ParamLists[ParamIdx]->size() > 0) { |
| 2772 | // The header has template parameters when it shouldn't. Complain. |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2773 | Diag(ParamLists[ParamIdx]->getTemplateLoc(), |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2774 | diag::err_template_param_list_matches_nontemplate) |
| 2775 | << T |
| 2776 | << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(), |
| 2777 | ParamLists[ParamIdx]->getRAngleLoc()) |
| 2778 | << getRangeOfTypeInNestedNameSpecifier(Context, T, SS); |
| 2779 | Invalid = true; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2780 | return nullptr; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2781 | } |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2782 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2783 | // Consume this template header. |
| 2784 | ++ParamIdx; |
| 2785 | continue; |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2786 | } |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2787 | |
| 2788 | if (!IsFriend) |
| 2789 | if (DiagnoseMissingExplicitSpecialization( |
| 2790 | getRangeOfTypeInNestedNameSpecifier(Context, T, SS))) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2791 | return nullptr; |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2792 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2793 | continue; |
| 2794 | } |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2795 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2796 | if (NeedNonemptyTemplateHeader) { |
| 2797 | // In friend declarations we can have template-ids which don't |
| 2798 | // depend on the corresponding template parameter lists. But |
| 2799 | // assume that empty parameter lists are supposed to match this |
| 2800 | // template-id. |
| 2801 | if (IsFriend && T->isDependentType()) { |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2802 | if (ParamIdx < ParamLists.size() && |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2803 | DependsOnTemplateParameters(T, ParamLists[ParamIdx])) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2804 | ExpectedTemplateParams = nullptr; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2805 | else |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2806 | continue; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2807 | } |
Douglas Gregor | ed5731f | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 2808 | |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2809 | if (ParamIdx < ParamLists.size()) { |
| 2810 | // Check the template parameter list, if we can. |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2811 | if (ExpectedTemplateParams && |
| 2812 | !TemplateParameterListsAreEqual(ParamLists[ParamIdx], |
| 2813 | ExpectedTemplateParams, |
| 2814 | true, TPL_TemplateMatch)) |
| 2815 | Invalid = true; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2816 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2817 | if (!Invalid && |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2818 | CheckTemplateParameterList(ParamLists[ParamIdx], nullptr, |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2819 | TPC_ClassTemplateMember)) |
| 2820 | Invalid = true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2821 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2822 | ++ParamIdx; |
| 2823 | continue; |
| 2824 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2825 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2826 | Diag(DeclLoc, diag::err_template_spec_needs_template_parameters) |
| 2827 | << T |
| 2828 | << getRangeOfTypeInNestedNameSpecifier(Context, T, SS); |
| 2829 | Invalid = true; |
| 2830 | continue; |
| 2831 | } |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2832 | } |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2833 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2834 | // If there were at least as many template-ids as there were template |
| 2835 | // parameter lists, then there are no template parameter lists remaining for |
| 2836 | // the declaration itself. |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2837 | if (ParamIdx >= ParamLists.size()) { |
| 2838 | if (TemplateId && !IsFriend) { |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2839 | // We don't have a template header for the declaration itself, but we |
| 2840 | // should. |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2841 | DiagnoseMissingExplicitSpecialization(SourceRange(TemplateId->LAngleLoc, |
| 2842 | TemplateId->RAngleLoc)); |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2843 | |
| 2844 | // Fabricate an empty template parameter list for the invented header. |
| 2845 | return TemplateParameterList::Create(Context, SourceLocation(), |
David Majnemer | 902f8c6 | 2015-12-27 07:16:27 +0000 | [diff] [blame] | 2846 | SourceLocation(), None, |
Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 2847 | SourceLocation(), nullptr); |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2848 | } |
| 2849 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2850 | return nullptr; |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 2851 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2852 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2853 | // If there were too many template parameter lists, complain about that now. |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2854 | if (ParamIdx < ParamLists.size() - 1) { |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2855 | bool HasAnyExplicitSpecHeader = false; |
| 2856 | bool AllExplicitSpecHeaders = true; |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2857 | for (unsigned I = ParamIdx, E = ParamLists.size() - 1; I != E; ++I) { |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2858 | if (ParamLists[I]->size() == 0) |
| 2859 | HasAnyExplicitSpecHeader = true; |
| 2860 | else |
| 2861 | AllExplicitSpecHeaders = false; |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2862 | } |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2863 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2864 | Diag(ParamLists[ParamIdx]->getTemplateLoc(), |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2865 | AllExplicitSpecHeaders ? diag::warn_template_spec_extra_headers |
| 2866 | : diag::err_template_spec_extra_headers) |
| 2867 | << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(), |
| 2868 | ParamLists[ParamLists.size() - 2]->getRAngleLoc()); |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2869 | |
| 2870 | // If there was a specialization somewhere, such that 'template<>' is |
| 2871 | // not required, and there were any 'template<>' headers, note where the |
| 2872 | // specialization occurred. |
| 2873 | if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader) |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2874 | Diag(ExplicitSpecLoc, |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2875 | diag::note_explicit_template_spec_does_not_need_header) |
| 2876 | << NestedTypes.back(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2877 | |
Douglas Gregor | 972fe53 | 2011-05-10 18:27:06 +0000 | [diff] [blame] | 2878 | // We have a template parameter list with no corresponding scope, which |
| 2879 | // means that the resulting template declaration can't be instantiated |
| 2880 | // properly (we'll end up with dependent nodes when we shouldn't). |
| 2881 | if (!AllExplicitSpecHeaders) |
| 2882 | Invalid = true; |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2883 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2884 | |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2885 | // C++ [temp.expl.spec]p16: |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2886 | // In an explicit specialization declaration for a member of a class |
| 2887 | // template or a member template that ap- pears in namespace scope, the |
| 2888 | // member template and some of its enclosing class templates may remain |
| 2889 | // unspecialized, except that the declaration shall not explicitly |
| 2890 | // specialize a class member template if its en- closing class templates |
Douglas Gregor | 522d5eb | 2011-06-06 15:22:55 +0000 | [diff] [blame] | 2891 | // are not explicitly specialized as well. |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2892 | if (ParamLists.back()->size() == 0 && |
NAKAMURA Takumi | de4077a | 2014-04-17 08:57:09 +0000 | [diff] [blame] | 2893 | CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(), |
| 2894 | false)) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2895 | return nullptr; |
Richard Smith | 11a80dc | 2014-04-17 03:52:20 +0000 | [diff] [blame] | 2896 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2897 | // Return the last template parameter list, which corresponds to the |
| 2898 | // entity being declared. |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 2899 | return ParamLists.back(); |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 2900 | } |
| 2901 | |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 2902 | void Sema::NoteAllFoundTemplates(TemplateName Name) { |
| 2903 | if (TemplateDecl *Template = Name.getAsTemplateDecl()) { |
| 2904 | Diag(Template->getLocation(), diag::note_template_declared_here) |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2905 | << (isa<FunctionTemplateDecl>(Template) |
| 2906 | ? 0 |
| 2907 | : isa<ClassTemplateDecl>(Template) |
| 2908 | ? 1 |
| 2909 | : isa<VarTemplateDecl>(Template) |
| 2910 | ? 2 |
| 2911 | : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4) |
| 2912 | << Template->getDeclName(); |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 2913 | return; |
| 2914 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2915 | |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 2916 | if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) { |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2917 | for (OverloadedTemplateStorage::iterator I = OST->begin(), |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 2918 | IEnd = OST->end(); |
| 2919 | I != IEnd; ++I) |
| 2920 | Diag((*I)->getLocation(), diag::note_template_declared_here) |
| 2921 | << 0 << (*I)->getDeclName(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 2922 | |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 2923 | return; |
| 2924 | } |
| 2925 | } |
| 2926 | |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 2927 | static QualType |
| 2928 | checkBuiltinTemplateIdType(Sema &SemaRef, BuiltinTemplateDecl *BTD, |
| 2929 | const SmallVectorImpl<TemplateArgument> &Converted, |
| 2930 | SourceLocation TemplateLoc, |
| 2931 | TemplateArgumentListInfo &TemplateArgs) { |
| 2932 | ASTContext &Context = SemaRef.getASTContext(); |
| 2933 | switch (BTD->getBuiltinTemplateKind()) { |
Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 2934 | case BTK__make_integer_seq: { |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 2935 | // Specializations of __make_integer_seq<S, T, N> are treated like |
| 2936 | // S<T, 0, ..., N-1>. |
| 2937 | |
| 2938 | // C++14 [inteseq.intseq]p1: |
| 2939 | // T shall be an integer type. |
| 2940 | if (!Converted[1].getAsType()->isIntegralType(Context)) { |
| 2941 | SemaRef.Diag(TemplateArgs[1].getLocation(), |
| 2942 | diag::err_integer_sequence_integral_element_type); |
| 2943 | return QualType(); |
| 2944 | } |
| 2945 | |
| 2946 | // C++14 [inteseq.make]p1: |
| 2947 | // If N is negative the program is ill-formed. |
| 2948 | TemplateArgument NumArgsArg = Converted[2]; |
| 2949 | llvm::APSInt NumArgs = NumArgsArg.getAsIntegral(); |
| 2950 | if (NumArgs < 0) { |
| 2951 | SemaRef.Diag(TemplateArgs[2].getLocation(), |
| 2952 | diag::err_integer_sequence_negative_length); |
| 2953 | return QualType(); |
| 2954 | } |
| 2955 | |
| 2956 | QualType ArgTy = NumArgsArg.getIntegralType(); |
| 2957 | TemplateArgumentListInfo SyntheticTemplateArgs; |
| 2958 | // The type argument gets reused as the first template argument in the |
| 2959 | // synthetic template argument list. |
| 2960 | SyntheticTemplateArgs.addArgument(TemplateArgs[1]); |
| 2961 | // Expand N into 0 ... N-1. |
| 2962 | for (llvm::APSInt I(NumArgs.getBitWidth(), NumArgs.isUnsigned()); |
| 2963 | I < NumArgs; ++I) { |
| 2964 | TemplateArgument TA(Context, I, ArgTy); |
Richard Smith | 7873de0 | 2016-08-11 22:25:46 +0000 | [diff] [blame] | 2965 | SyntheticTemplateArgs.addArgument(SemaRef.getTrivialTemplateArgumentLoc( |
| 2966 | TA, ArgTy, TemplateArgs[2].getLocation())); |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 2967 | } |
| 2968 | // The first template argument will be reused as the template decl that |
| 2969 | // our synthetic template arguments will be applied to. |
| 2970 | return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(), |
| 2971 | TemplateLoc, SyntheticTemplateArgs); |
| 2972 | } |
Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 2973 | |
| 2974 | case BTK__type_pack_element: |
| 2975 | // Specializations of |
| 2976 | // __type_pack_element<Index, T_1, ..., T_N> |
| 2977 | // are treated like T_Index. |
| 2978 | assert(Converted.size() == 2 && |
| 2979 | "__type_pack_element should be given an index and a parameter pack"); |
| 2980 | |
| 2981 | // If the Index is out of bounds, the program is ill-formed. |
| 2982 | TemplateArgument IndexArg = Converted[0], Ts = Converted[1]; |
| 2983 | llvm::APSInt Index = IndexArg.getAsIntegral(); |
| 2984 | assert(Index >= 0 && "the index used with __type_pack_element should be of " |
| 2985 | "type std::size_t, and hence be non-negative"); |
| 2986 | if (Index >= Ts.pack_size()) { |
| 2987 | SemaRef.Diag(TemplateArgs[0].getLocation(), |
| 2988 | diag::err_type_pack_element_out_of_bounds); |
| 2989 | return QualType(); |
| 2990 | } |
| 2991 | |
| 2992 | // We simply return the type at index `Index`. |
| 2993 | auto Nth = std::next(Ts.pack_begin(), Index.getExtValue()); |
| 2994 | return Nth->getAsType(); |
| 2995 | } |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 2996 | llvm_unreachable("unexpected BuiltinTemplateDecl!"); |
| 2997 | } |
| 2998 | |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 2999 | /// Determine whether this alias template is "enable_if_t". |
| 3000 | static bool isEnableIfAliasTemplate(TypeAliasTemplateDecl *AliasTemplate) { |
| 3001 | return AliasTemplate->getName().equals("enable_if_t"); |
| 3002 | } |
| 3003 | |
| 3004 | /// Collect all of the separable terms in the given condition, which |
| 3005 | /// might be a conjunction. |
| 3006 | /// |
| 3007 | /// FIXME: The right answer is to convert the logical expression into |
| 3008 | /// disjunctive normal form, so we can find the first failed term |
| 3009 | /// within each possible clause. |
| 3010 | static void collectConjunctionTerms(Expr *Clause, |
| 3011 | SmallVectorImpl<Expr *> &Terms) { |
| 3012 | if (auto BinOp = dyn_cast<BinaryOperator>(Clause->IgnoreParenImpCasts())) { |
| 3013 | if (BinOp->getOpcode() == BO_LAnd) { |
| 3014 | collectConjunctionTerms(BinOp->getLHS(), Terms); |
| 3015 | collectConjunctionTerms(BinOp->getRHS(), Terms); |
| 3016 | } |
| 3017 | |
| 3018 | return; |
| 3019 | } |
| 3020 | |
| 3021 | Terms.push_back(Clause); |
| 3022 | } |
| 3023 | |
Douglas Gregor | bb33f57 | 2017-07-05 20:20:15 +0000 | [diff] [blame] | 3024 | // The ranges-v3 library uses an odd pattern of a top-level "||" with |
| 3025 | // a left-hand side that is value-dependent but never true. Identify |
| 3026 | // the idiom and ignore that term. |
| 3027 | static Expr *lookThroughRangesV3Condition(Preprocessor &PP, Expr *Cond) { |
| 3028 | // Top-level '||'. |
| 3029 | auto *BinOp = dyn_cast<BinaryOperator>(Cond->IgnoreParenImpCasts()); |
| 3030 | if (!BinOp) return Cond; |
| 3031 | |
| 3032 | if (BinOp->getOpcode() != BO_LOr) return Cond; |
| 3033 | |
| 3034 | // With an inner '==' that has a literal on the right-hand side. |
| 3035 | Expr *LHS = BinOp->getLHS(); |
Douglas Gregor | c0fe1f2 | 2017-07-05 21:12:37 +0000 | [diff] [blame] | 3036 | auto *InnerBinOp = dyn_cast<BinaryOperator>(LHS->IgnoreParenImpCasts()); |
Douglas Gregor | bb33f57 | 2017-07-05 20:20:15 +0000 | [diff] [blame] | 3037 | if (!InnerBinOp) return Cond; |
| 3038 | |
| 3039 | if (InnerBinOp->getOpcode() != BO_EQ || |
| 3040 | !isa<IntegerLiteral>(InnerBinOp->getRHS())) |
| 3041 | return Cond; |
| 3042 | |
| 3043 | // If the inner binary operation came from a macro expansion named |
| 3044 | // CONCEPT_REQUIRES or CONCEPT_REQUIRES_, return the right-hand side |
| 3045 | // of the '||', which is the real, user-provided condition. |
Douglas Gregor | c0fe1f2 | 2017-07-05 21:12:37 +0000 | [diff] [blame] | 3046 | SourceLocation Loc = InnerBinOp->getExprLoc(); |
Douglas Gregor | bb33f57 | 2017-07-05 20:20:15 +0000 | [diff] [blame] | 3047 | if (!Loc.isMacroID()) return Cond; |
| 3048 | |
| 3049 | StringRef MacroName = PP.getImmediateMacroName(Loc); |
| 3050 | if (MacroName == "CONCEPT_REQUIRES" || MacroName == "CONCEPT_REQUIRES_") |
| 3051 | return BinOp->getRHS(); |
| 3052 | |
| 3053 | return Cond; |
| 3054 | } |
| 3055 | |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3056 | namespace { |
| 3057 | |
| 3058 | // A PrinterHelper that prints more helpful diagnostics for some sub-expressions |
| 3059 | // within failing boolean expression, such as substituting template parameters |
| 3060 | // for actual types. |
| 3061 | class FailedBooleanConditionPrinterHelper : public PrinterHelper { |
| 3062 | public: |
| 3063 | explicit FailedBooleanConditionPrinterHelper(const PrintingPolicy &P) |
| 3064 | : Policy(P) {} |
| 3065 | |
| 3066 | bool handledStmt(Stmt *E, raw_ostream &OS) override { |
| 3067 | const auto *DR = dyn_cast<DeclRefExpr>(E); |
| 3068 | if (DR && DR->getQualifier()) { |
| 3069 | // If this is a qualified name, expand the template arguments in nested |
| 3070 | // qualifiers. |
| 3071 | DR->getQualifier()->print(OS, Policy, true); |
| 3072 | // Then print the decl itself. |
| 3073 | const ValueDecl *VD = DR->getDecl(); |
| 3074 | OS << VD->getName(); |
| 3075 | if (const auto *IV = dyn_cast<VarTemplateSpecializationDecl>(VD)) { |
| 3076 | // This is a template variable, print the expanded template arguments. |
| 3077 | printTemplateArgumentList(OS, IV->getTemplateArgs().asArray(), Policy); |
| 3078 | } |
| 3079 | return true; |
Clement Courbet | 9d432e0 | 2018-12-04 07:59:57 +0000 | [diff] [blame] | 3080 | } |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3081 | return false; |
Clement Courbet | 9d432e0 | 2018-12-04 07:59:57 +0000 | [diff] [blame] | 3082 | } |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3083 | |
| 3084 | private: |
| 3085 | const PrintingPolicy Policy; |
| 3086 | }; |
| 3087 | |
| 3088 | } // end anonymous namespace |
Clement Courbet | 9d432e0 | 2018-12-04 07:59:57 +0000 | [diff] [blame] | 3089 | |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3090 | std::pair<Expr *, std::string> |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3091 | Sema::findFailedBooleanCondition(Expr *Cond) { |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3092 | Cond = lookThroughRangesV3Condition(PP, Cond); |
Douglas Gregor | bb33f57 | 2017-07-05 20:20:15 +0000 | [diff] [blame] | 3093 | |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3094 | // Separate out all of the terms in a conjunction. |
| 3095 | SmallVector<Expr *, 4> Terms; |
| 3096 | collectConjunctionTerms(Cond, Terms); |
| 3097 | |
| 3098 | // Determine which term failed. |
| 3099 | Expr *FailedCond = nullptr; |
| 3100 | for (Expr *Term : Terms) { |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3101 | Expr *TermAsWritten = Term->IgnoreParenImpCasts(); |
| 3102 | |
Clement Courbet | d872041 | 2018-12-10 08:53:17 +0000 | [diff] [blame] | 3103 | // Literals are uninteresting. |
| 3104 | if (isa<CXXBoolLiteralExpr>(TermAsWritten) || |
| 3105 | isa<IntegerLiteral>(TermAsWritten)) |
| 3106 | continue; |
| 3107 | |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3108 | // The initialization of the parameter from the argument is |
| 3109 | // a constant-evaluated context. |
| 3110 | EnterExpressionEvaluationContext ConstantEvaluated( |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3111 | *this, Sema::ExpressionEvaluationContext::ConstantEvaluated); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3112 | |
| 3113 | bool Succeeded; |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3114 | if (Term->EvaluateAsBooleanCondition(Succeeded, Context) && |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3115 | !Succeeded) { |
Douglas Gregor | 672281a | 2017-09-14 23:38:42 +0000 | [diff] [blame] | 3116 | FailedCond = TermAsWritten; |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3117 | break; |
| 3118 | } |
| 3119 | } |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3120 | if (!FailedCond) |
Clement Courbet | d872041 | 2018-12-10 08:53:17 +0000 | [diff] [blame] | 3121 | FailedCond = Cond->IgnoreParenImpCasts(); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3122 | |
| 3123 | std::string Description; |
| 3124 | { |
| 3125 | llvm::raw_string_ostream Out(Description); |
Clement Courbet | fb2c74d | 2018-12-20 09:05:15 +0000 | [diff] [blame] | 3126 | PrintingPolicy Policy = getPrintingPolicy(); |
| 3127 | Policy.PrintCanonicalTypes = true; |
| 3128 | FailedBooleanConditionPrinterHelper Helper(Policy); |
| 3129 | FailedCond->printPretty(Out, &Helper, Policy, 0, "\n", nullptr); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3130 | } |
| 3131 | return { FailedCond, Description }; |
| 3132 | } |
| 3133 | |
Douglas Gregor | dc572a3 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 3134 | QualType Sema::CheckTemplateIdType(TemplateName Name, |
| 3135 | SourceLocation TemplateLoc, |
Douglas Gregor | 739b107a | 2011-03-03 02:41:12 +0000 | [diff] [blame] | 3136 | TemplateArgumentListInfo &TemplateArgs) { |
John McCall | d9dfe3a | 2011-06-30 08:33:18 +0000 | [diff] [blame] | 3137 | DependentTemplateName *DTN |
| 3138 | = Name.getUnderlying().getAsDependentTemplateName(); |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3139 | if (DTN && DTN->isIdentifier()) |
| 3140 | // When building a template-id where the template-name is dependent, |
| 3141 | // assume the template is a type template. Either our assumption is |
| 3142 | // correct, or the code is ill-formed and will be diagnosed when the |
| 3143 | // dependent name is substituted. |
| 3144 | return Context.getDependentTemplateSpecializationType(ETK_None, |
| 3145 | DTN->getQualifier(), |
| 3146 | DTN->getIdentifier(), |
| 3147 | TemplateArgs); |
| 3148 | |
Douglas Gregor | dc572a3 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 3149 | TemplateDecl *Template = Name.getAsTemplateDecl(); |
Richard Smith | 8f65806 | 2013-12-04 00:56:29 +0000 | [diff] [blame] | 3150 | if (!Template || isa<FunctionTemplateDecl>(Template) || |
Faisal Vali | a534f07 | 2018-04-26 00:42:40 +0000 | [diff] [blame] | 3151 | isa<VarTemplateDecl>(Template)) { |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 3152 | // We might have a substituted template template parameter pack. If so, |
| 3153 | // build a template specialization type for it. |
| 3154 | if (Name.getAsSubstTemplateTemplateParmPack()) |
| 3155 | return Context.getTemplateSpecializationType(Name, TemplateArgs); |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3156 | |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 3157 | Diag(TemplateLoc, diag::err_template_id_not_a_type) |
| 3158 | << Name; |
| 3159 | NoteAllFoundTemplates(Name); |
| 3160 | return QualType(); |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 3161 | } |
Douglas Gregor | dc572a3 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 3162 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3163 | // Check that the template argument list is well-formed for this |
| 3164 | // template. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3165 | SmallVector<TemplateArgument, 4> Converted; |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 3166 | if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs, |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 3167 | false, Converted)) |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3168 | return QualType(); |
| 3169 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3170 | QualType CanonType; |
| 3171 | |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3172 | bool InstantiationDependent = false; |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 3173 | if (TypeAliasTemplateDecl *AliasTemplate = |
| 3174 | dyn_cast<TypeAliasTemplateDecl>(Template)) { |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3175 | // Find the canonical type for this type alias template specialization. |
| 3176 | TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl(); |
| 3177 | if (Pattern->isInvalidDecl()) |
| 3178 | return QualType(); |
| 3179 | |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3180 | TemplateArgumentList StackTemplateArgs(TemplateArgumentList::OnStack, |
| 3181 | Converted); |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3182 | |
| 3183 | // Only substitute for the innermost template argument list. |
| 3184 | MultiLevelTemplateArgumentList TemplateArgLists; |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3185 | TemplateArgLists.addOuterTemplateArguments(&StackTemplateArgs); |
Richard Smith | 5e96d83 | 2011-05-12 00:06:17 +0000 | [diff] [blame] | 3186 | unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth(); |
| 3187 | for (unsigned I = 0; I < Depth; ++I) |
Richard Smith | 841d8b2 | 2013-05-17 03:04:50 +0000 | [diff] [blame] | 3188 | TemplateArgLists.addOuterTemplateArguments(None); |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3189 | |
Richard Smith | 802c4b7 | 2012-08-23 06:16:52 +0000 | [diff] [blame] | 3190 | LocalInstantiationScope Scope(*this); |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3191 | InstantiatingTemplate Inst(*this, TemplateLoc, Template); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 3192 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 3193 | return QualType(); |
Richard Smith | 802c4b7 | 2012-08-23 06:16:52 +0000 | [diff] [blame] | 3194 | |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3195 | CanonType = SubstType(Pattern->getUnderlyingType(), |
| 3196 | TemplateArgLists, AliasTemplate->getLocation(), |
| 3197 | AliasTemplate->getDeclName()); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3198 | if (CanonType.isNull()) { |
| 3199 | // If this was enable_if and we failed to find the nested type |
| 3200 | // within enable_if in a SFINAE context, dig out the specific |
| 3201 | // enable_if condition that failed and present that instead. |
| 3202 | if (isEnableIfAliasTemplate(AliasTemplate)) { |
| 3203 | if (auto DeductionInfo = isSFINAEContext()) { |
| 3204 | if (*DeductionInfo && |
| 3205 | (*DeductionInfo)->hasSFINAEDiagnostic() && |
| 3206 | (*DeductionInfo)->peekSFINAEDiagnostic().second.getDiagID() == |
| 3207 | diag::err_typename_nested_not_found_enable_if && |
| 3208 | TemplateArgs[0].getArgument().getKind() |
| 3209 | == TemplateArgument::Expression) { |
| 3210 | Expr *FailedCond; |
| 3211 | std::string FailedDescription; |
| 3212 | std::tie(FailedCond, FailedDescription) = |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 3213 | findFailedBooleanCondition(TemplateArgs[0].getSourceExpression()); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3214 | |
| 3215 | // Remove the old SFINAE diagnostic. |
| 3216 | PartialDiagnosticAt OldDiag = |
| 3217 | {SourceLocation(), PartialDiagnostic::NullDiagnostic()}; |
| 3218 | (*DeductionInfo)->takeSFINAEDiagnostic(OldDiag); |
| 3219 | |
| 3220 | // Add a new SFINAE diagnostic specifying which condition |
| 3221 | // failed. |
| 3222 | (*DeductionInfo)->addSFINAEDiagnostic( |
| 3223 | OldDiag.first, |
| 3224 | PDiag(diag::err_typename_nested_not_found_requirement) |
| 3225 | << FailedDescription |
| 3226 | << FailedCond->getSourceRange()); |
| 3227 | } |
| 3228 | } |
| 3229 | } |
| 3230 | |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3231 | return QualType(); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 3232 | } |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3233 | } else if (Name.isDependent() || |
| 3234 | TemplateSpecializationType::anyDependentTemplateArguments( |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 3235 | TemplateArgs, InstantiationDependent)) { |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3236 | // This class template specialization is a dependent |
| 3237 | // type. Therefore, its canonical type is another class template |
| 3238 | // specialization type that contains all of the converted |
| 3239 | // arguments in canonical form. This ensures that, e.g., A<T> and |
| 3240 | // A<T, T> have identical types when A is declared as: |
| 3241 | // |
| 3242 | // template<typename T, typename U = T> struct A; |
Vassil Vassilev | 2999d0e | 2017-01-10 09:09:09 +0000 | [diff] [blame] | 3243 | CanonType = Context.getCanonicalTemplateSpecializationType(Name, Converted); |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 3244 | |
| 3245 | // This might work out to be a current instantiation, in which |
| 3246 | // case the canonical type needs to be the InjectedClassNameType. |
| 3247 | // |
| 3248 | // TODO: in theory this could be a simple hashtable lookup; most |
| 3249 | // changes to CurContext don't change the set of current |
| 3250 | // instantiations. |
| 3251 | if (isa<ClassTemplateDecl>(Template)) { |
| 3252 | for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) { |
| 3253 | // If we get out to a namespace, we're done. |
| 3254 | if (Ctx->isFileContext()) break; |
| 3255 | |
| 3256 | // If this isn't a record, keep looking. |
| 3257 | CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx); |
| 3258 | if (!Record) continue; |
| 3259 | |
| 3260 | // Look for one of the two cases with InjectedClassNameTypes |
| 3261 | // and check whether it's the same template. |
| 3262 | if (!isa<ClassTemplatePartialSpecializationDecl>(Record) && |
| 3263 | !Record->getDescribedClassTemplate()) |
| 3264 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3265 | |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 3266 | // Fetch the injected class name type and check whether its |
| 3267 | // injected type is equal to the type we just built. |
| 3268 | QualType ICNT = Context.getTypeDeclType(Record); |
| 3269 | QualType Injected = cast<InjectedClassNameType>(ICNT) |
| 3270 | ->getInjectedSpecializationType(); |
| 3271 | |
| 3272 | if (CanonType != Injected->getCanonicalTypeInternal()) |
| 3273 | continue; |
| 3274 | |
| 3275 | // If so, the canonical type of this TST is the injected |
| 3276 | // class name type of the record we just found. |
| 3277 | assert(ICNT.isCanonical()); |
| 3278 | CanonType = ICNT; |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 3279 | break; |
| 3280 | } |
| 3281 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3282 | } else if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | dc572a3 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 3283 | = dyn_cast<ClassTemplateDecl>(Template)) { |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3284 | // Find the class template specialization declaration that |
| 3285 | // corresponds to these arguments. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3286 | void *InsertPos = nullptr; |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3287 | ClassTemplateSpecializationDecl *Decl |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 3288 | = ClassTemplate->findSpecialization(Converted, InsertPos); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3289 | if (!Decl) { |
| 3290 | // This is the first time we have referenced this class template |
| 3291 | // specialization. Create the canonical declaration and add it to |
| 3292 | // the set of specializations. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 3293 | Decl = ClassTemplateSpecializationDecl::Create( |
| 3294 | Context, ClassTemplate->getTemplatedDecl()->getTagKind(), |
| 3295 | ClassTemplate->getDeclContext(), |
| 3296 | ClassTemplate->getTemplatedDecl()->getBeginLoc(), |
| 3297 | ClassTemplate->getLocation(), ClassTemplate, Converted, nullptr); |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 3298 | ClassTemplate->AddSpecialization(Decl, InsertPos); |
Abramo Bagnara | 02b9553 | 2012-09-05 09:05:18 +0000 | [diff] [blame] | 3299 | if (ClassTemplate->isOutOfLine()) |
| 3300 | Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext()); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3301 | } |
| 3302 | |
Erich Keane | a32910d | 2017-03-23 18:51:54 +0000 | [diff] [blame] | 3303 | if (Decl->getSpecializationKind() == TSK_Undeclared) { |
| 3304 | MultiLevelTemplateArgumentList TemplateArgLists; |
| 3305 | TemplateArgLists.addOuterTemplateArguments(Converted); |
| 3306 | InstantiateAttrsForDecl(TemplateArgLists, ClassTemplate->getTemplatedDecl(), |
| 3307 | Decl); |
| 3308 | } |
| 3309 | |
Chandler Carruth | 2acfb22 | 2013-09-27 22:14:40 +0000 | [diff] [blame] | 3310 | // Diagnose uses of this specialization. |
| 3311 | (void)DiagnoseUseOfDecl(Decl, TemplateLoc); |
| 3312 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3313 | CanonType = Context.getTypeDeclType(Decl); |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 3314 | assert(isa<RecordType>(CanonType) && |
| 3315 | "type of non-dependent specialization is not a RecordType"); |
David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 3316 | } else if (auto *BTD = dyn_cast<BuiltinTemplateDecl>(Template)) { |
| 3317 | CanonType = checkBuiltinTemplateIdType(*this, BTD, Converted, TemplateLoc, |
| 3318 | TemplateArgs); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3319 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3320 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3321 | // Build the fully-sugared type for this class template |
| 3322 | // specialization, which refers back to the class template |
| 3323 | // specialization we created or found. |
John McCall | 30576cd | 2010-06-13 09:25:03 +0000 | [diff] [blame] | 3324 | return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3325 | } |
| 3326 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3327 | TypeResult |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3328 | Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc, |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 3329 | TemplateTy TemplateD, IdentifierInfo *TemplateII, |
| 3330 | SourceLocation TemplateIILoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3331 | SourceLocation LAngleLoc, |
Douglas Gregor | dc572a3 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 3332 | ASTTemplateArgsPtr TemplateArgsIn, |
Abramo Bagnara | 4244b43 | 2012-01-27 08:46:19 +0000 | [diff] [blame] | 3333 | SourceLocation RAngleLoc, |
Richard Smith | 62559bd | 2017-02-01 21:36:38 +0000 | [diff] [blame] | 3334 | bool IsCtorOrDtorName, bool IsClassName) { |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3335 | if (SS.isInvalid()) |
| 3336 | return true; |
| 3337 | |
Richard Smith | 62559bd | 2017-02-01 21:36:38 +0000 | [diff] [blame] | 3338 | if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) { |
| 3339 | DeclContext *LookupCtx = computeDeclContext(SS, /*EnteringContext*/false); |
| 3340 | |
| 3341 | // C++ [temp.res]p3: |
| 3342 | // A qualified-id that refers to a type and in which the |
| 3343 | // nested-name-specifier depends on a template-parameter (14.6.2) |
| 3344 | // shall be prefixed by the keyword typename to indicate that the |
| 3345 | // qualified-id denotes a type, forming an |
| 3346 | // elaborated-type-specifier (7.1.5.3). |
| 3347 | if (!LookupCtx && isDependentScopeSpecifier(SS)) { |
Richard Smith | 3411fbf | 2017-02-01 21:41:18 +0000 | [diff] [blame] | 3348 | Diag(SS.getBeginLoc(), diag::err_typename_missing_template) |
Richard Smith | 62559bd | 2017-02-01 21:36:38 +0000 | [diff] [blame] | 3349 | << SS.getScopeRep() << TemplateII->getName(); |
| 3350 | // Recover as if 'typename' were specified. |
| 3351 | // FIXME: This is not quite correct recovery as we don't transform SS |
| 3352 | // into the corresponding dependent form (and we don't diagnose missing |
| 3353 | // 'template' keywords within SS as a result). |
| 3354 | return ActOnTypenameType(nullptr, SourceLocation(), SS, TemplateKWLoc, |
| 3355 | TemplateD, TemplateII, TemplateIILoc, LAngleLoc, |
| 3356 | TemplateArgsIn, RAngleLoc); |
| 3357 | } |
| 3358 | |
| 3359 | // Per C++ [class.qual]p2, if the template-id was an injected-class-name, |
| 3360 | // it's not actually allowed to be used as a type in most cases. Because |
| 3361 | // we annotate it before we know whether it's valid, we have to check for |
| 3362 | // this case here. |
| 3363 | auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 3364 | if (LookupRD && LookupRD->getIdentifier() == TemplateII) { |
| 3365 | Diag(TemplateIILoc, |
| 3366 | TemplateKWLoc.isInvalid() |
| 3367 | ? diag::err_out_of_line_qualified_id_type_names_constructor |
| 3368 | : diag::ext_out_of_line_qualified_id_type_names_constructor) |
| 3369 | << TemplateII << 0 /*injected-class-name used as template name*/ |
| 3370 | << 1 /*if any keyword was present, it was 'template'*/; |
| 3371 | } |
| 3372 | } |
| 3373 | |
Serge Pavlov | 9ddb76e | 2013-08-27 13:15:56 +0000 | [diff] [blame] | 3374 | TemplateName Template = TemplateD.get(); |
Douglas Gregor | 8bf4205 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 3375 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 3376 | // Translate the parser's template argument list in our AST format. |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 3377 | TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); |
Douglas Gregor | b53edfb | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 3378 | translateTemplateArguments(TemplateArgsIn, TemplateArgs); |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 3379 | |
Douglas Gregor | 5a06472 | 2011-02-28 17:23:35 +0000 | [diff] [blame] | 3380 | if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) { |
Abramo Bagnara | 4244b43 | 2012-01-27 08:46:19 +0000 | [diff] [blame] | 3381 | QualType T |
| 3382 | = Context.getDependentTemplateSpecializationType(ETK_None, |
| 3383 | DTN->getQualifier(), |
| 3384 | DTN->getIdentifier(), |
| 3385 | TemplateArgs); |
| 3386 | // Build type-source information. |
Douglas Gregor | 5a06472 | 2011-02-28 17:23:35 +0000 | [diff] [blame] | 3387 | TypeLocBuilder TLB; |
| 3388 | DependentTemplateSpecializationTypeLoc SpecTL |
| 3389 | = TLB.push<DependentTemplateSpecializationTypeLoc>(T); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3390 | SpecTL.setElaboratedKeywordLoc(SourceLocation()); |
| 3391 | SpecTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
Abramo Bagnara | e0a70b2 | 2012-02-06 22:45:07 +0000 | [diff] [blame] | 3392 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 3393 | SpecTL.setTemplateNameLoc(TemplateIILoc); |
Douglas Gregor | 5a06472 | 2011-02-28 17:23:35 +0000 | [diff] [blame] | 3394 | SpecTL.setLAngleLoc(LAngleLoc); |
| 3395 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | 5a06472 | 2011-02-28 17:23:35 +0000 | [diff] [blame] | 3396 | for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I) |
| 3397 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
| 3398 | return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T)); |
| 3399 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3400 | |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 3401 | QualType Result = CheckTemplateIdType(Template, TemplateIILoc, TemplateArgs); |
Douglas Gregor | fe3d7d0 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 3402 | if (Result.isNull()) |
| 3403 | return true; |
| 3404 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3405 | // Build type-source information. |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3406 | TypeLocBuilder TLB; |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3407 | TemplateSpecializationTypeLoc SpecTL |
| 3408 | = TLB.push<TemplateSpecializationTypeLoc>(Result); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3409 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 3410 | SpecTL.setTemplateNameLoc(TemplateIILoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3411 | SpecTL.setLAngleLoc(LAngleLoc); |
| 3412 | SpecTL.setRAngleLoc(RAngleLoc); |
| 3413 | for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i) |
| 3414 | SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo()); |
John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 3415 | |
Abramo Bagnara | 4244b43 | 2012-01-27 08:46:19 +0000 | [diff] [blame] | 3416 | // NOTE: avoid constructing an ElaboratedTypeLoc if this is a |
| 3417 | // constructor or destructor name (in such a case, the scope specifier |
| 3418 | // will be attached to the enclosing Decl or Expr node). |
| 3419 | if (SS.isNotEmpty() && !IsCtorOrDtorName) { |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3420 | // Create an elaborated-type-specifier containing the nested-name-specifier. |
| 3421 | Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result); |
| 3422 | ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 3423 | ElabTL.setElaboratedKeywordLoc(SourceLocation()); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3424 | ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
| 3425 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3426 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3427 | return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result)); |
John McCall | d8fe9af | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 3428 | } |
John McCall | 06f6fe8d | 2009-09-04 01:14:41 +0000 | [diff] [blame] | 3429 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3430 | TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK, |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3431 | TypeSpecifierType TagSpec, |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3432 | SourceLocation TagLoc, |
| 3433 | CXXScopeSpec &SS, |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3434 | SourceLocation TemplateKWLoc, |
| 3435 | TemplateTy TemplateD, |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3436 | SourceLocation TemplateLoc, |
| 3437 | SourceLocation LAngleLoc, |
| 3438 | ASTTemplateArgsPtr TemplateArgsIn, |
| 3439 | SourceLocation RAngleLoc) { |
Serge Pavlov | 9ddb76e | 2013-08-27 13:15:56 +0000 | [diff] [blame] | 3440 | TemplateName Template = TemplateD.get(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3441 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3442 | // Translate the parser's template argument list in our AST format. |
| 3443 | TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); |
| 3444 | translateTemplateArguments(TemplateArgsIn, TemplateArgs); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3445 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3446 | // Determine the tag kind |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 3447 | TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3448 | ElaboratedTypeKeyword Keyword |
| 3449 | = TypeWithKeyword::getKeywordForTagTypeKind(TagKind); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3450 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3451 | if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) { |
| 3452 | QualType T = Context.getDependentTemplateSpecializationType(Keyword, |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3453 | DTN->getQualifier(), |
| 3454 | DTN->getIdentifier(), |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3455 | TemplateArgs); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3456 | |
| 3457 | // Build type-source information. |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3458 | TypeLocBuilder TLB; |
| 3459 | DependentTemplateSpecializationTypeLoc SpecTL |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3460 | = TLB.push<DependentTemplateSpecializationTypeLoc>(T); |
| 3461 | SpecTL.setElaboratedKeywordLoc(TagLoc); |
| 3462 | SpecTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
Abramo Bagnara | e0a70b2 | 2012-02-06 22:45:07 +0000 | [diff] [blame] | 3463 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3464 | SpecTL.setTemplateNameLoc(TemplateLoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3465 | SpecTL.setLAngleLoc(LAngleLoc); |
| 3466 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3467 | for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I) |
| 3468 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
| 3469 | return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T)); |
| 3470 | } |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3471 | |
| 3472 | if (TypeAliasTemplateDecl *TAT = |
| 3473 | dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) { |
| 3474 | // C++0x [dcl.type.elab]p2: |
| 3475 | // If the identifier resolves to a typedef-name or the simple-template-id |
| 3476 | // resolves to an alias template specialization, the |
| 3477 | // elaborated-type-specifier is ill-formed. |
Reid Kleckner | 1a4ab7e | 2016-12-09 19:47:58 +0000 | [diff] [blame] | 3478 | Diag(TemplateLoc, diag::err_tag_reference_non_tag) |
| 3479 | << TAT << NTK_TypeAliasTemplate << TagKind; |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 3480 | Diag(TAT->getLocation(), diag::note_declared_at); |
| 3481 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3482 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3483 | QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs); |
| 3484 | if (Result.isNull()) |
Matt Beaumont-Gay | 045bde4 | 2011-08-25 23:22:24 +0000 | [diff] [blame] | 3485 | return TypeResult(true); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3486 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3487 | // Check the tag kind |
| 3488 | if (const RecordType *RT = Result->getAs<RecordType>()) { |
John McCall | d8fe9af | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 3489 | RecordDecl *D = RT->getDecl(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3490 | |
John McCall | d8fe9af | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 3491 | IdentifierInfo *Id = D->getIdentifier(); |
| 3492 | assert(Id && "templated class must have an identifier"); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 3493 | |
Richard Trieu | caa33d3 | 2011-06-10 03:11:26 +0000 | [diff] [blame] | 3494 | if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition, |
Justin Bogner | c6ecb7c | 2015-07-10 23:05:47 +0000 | [diff] [blame] | 3495 | TagLoc, Id)) { |
John McCall | d8fe9af | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 3496 | Diag(TagLoc, diag::err_use_with_wrong_tag) |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3497 | << Result |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 3498 | << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName()); |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 3499 | Diag(D->getLocation(), diag::note_previous_use); |
John McCall | 06f6fe8d | 2009-09-04 01:14:41 +0000 | [diff] [blame] | 3500 | } |
| 3501 | } |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3502 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3503 | // Provide source-location information for the template specialization. |
| 3504 | TypeLocBuilder TLB; |
| 3505 | TemplateSpecializationTypeLoc SpecTL |
| 3506 | = TLB.push<TemplateSpecializationTypeLoc>(Result); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3507 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3508 | SpecTL.setTemplateNameLoc(TemplateLoc); |
| 3509 | SpecTL.setLAngleLoc(LAngleLoc); |
| 3510 | SpecTL.setRAngleLoc(RAngleLoc); |
| 3511 | for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i) |
| 3512 | SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo()); |
John McCall | 06f6fe8d | 2009-09-04 01:14:41 +0000 | [diff] [blame] | 3513 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3514 | // Construct an elaborated type containing the nested-name-specifier (if any) |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 3515 | // and tag keyword. |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3516 | Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result); |
| 3517 | ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 3518 | ElabTL.setElaboratedKeywordLoc(TagLoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 3519 | ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
| 3520 | return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result)); |
Douglas Gregor | 8bf4205 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 3521 | } |
| 3522 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3523 | static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized, |
| 3524 | NamedDecl *PrevDecl, |
| 3525 | SourceLocation Loc, |
| 3526 | bool IsPartialSpecialization); |
| 3527 | |
| 3528 | static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3529 | |
Richard Smith | 300e0c3 | 2013-09-24 04:49:23 +0000 | [diff] [blame] | 3530 | static bool isTemplateArgumentTemplateParameter( |
| 3531 | const TemplateArgument &Arg, unsigned Depth, unsigned Index) { |
| 3532 | switch (Arg.getKind()) { |
| 3533 | case TemplateArgument::Null: |
| 3534 | case TemplateArgument::NullPtr: |
| 3535 | case TemplateArgument::Integral: |
| 3536 | case TemplateArgument::Declaration: |
| 3537 | case TemplateArgument::Pack: |
| 3538 | case TemplateArgument::TemplateExpansion: |
| 3539 | return false; |
| 3540 | |
| 3541 | case TemplateArgument::Type: { |
| 3542 | QualType Type = Arg.getAsType(); |
| 3543 | const TemplateTypeParmType *TPT = |
| 3544 | Arg.getAsType()->getAs<TemplateTypeParmType>(); |
| 3545 | return TPT && !Type.hasQualifiers() && |
| 3546 | TPT->getDepth() == Depth && TPT->getIndex() == Index; |
| 3547 | } |
| 3548 | |
| 3549 | case TemplateArgument::Expression: { |
| 3550 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg.getAsExpr()); |
| 3551 | if (!DRE || !DRE->getDecl()) |
| 3552 | return false; |
| 3553 | const NonTypeTemplateParmDecl *NTTP = |
| 3554 | dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()); |
| 3555 | return NTTP && NTTP->getDepth() == Depth && NTTP->getIndex() == Index; |
| 3556 | } |
| 3557 | |
| 3558 | case TemplateArgument::Template: |
| 3559 | const TemplateTemplateParmDecl *TTP = |
| 3560 | dyn_cast_or_null<TemplateTemplateParmDecl>( |
| 3561 | Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl()); |
| 3562 | return TTP && TTP->getDepth() == Depth && TTP->getIndex() == Index; |
| 3563 | } |
| 3564 | llvm_unreachable("unexpected kind of template argument"); |
| 3565 | } |
| 3566 | |
| 3567 | static bool isSameAsPrimaryTemplate(TemplateParameterList *Params, |
| 3568 | ArrayRef<TemplateArgument> Args) { |
| 3569 | if (Params->size() != Args.size()) |
| 3570 | return false; |
| 3571 | |
| 3572 | unsigned Depth = Params->getDepth(); |
| 3573 | |
| 3574 | for (unsigned I = 0, N = Args.size(); I != N; ++I) { |
| 3575 | TemplateArgument Arg = Args[I]; |
| 3576 | |
| 3577 | // If the parameter is a pack expansion, the argument must be a pack |
| 3578 | // whose only element is a pack expansion. |
| 3579 | if (Params->getParam(I)->isParameterPack()) { |
| 3580 | if (Arg.getKind() != TemplateArgument::Pack || Arg.pack_size() != 1 || |
| 3581 | !Arg.pack_begin()->isPackExpansion()) |
| 3582 | return false; |
| 3583 | Arg = Arg.pack_begin()->getPackExpansionPattern(); |
| 3584 | } |
| 3585 | |
| 3586 | if (!isTemplateArgumentTemplateParameter(Arg, Depth, I)) |
| 3587 | return false; |
| 3588 | } |
| 3589 | |
| 3590 | return true; |
| 3591 | } |
| 3592 | |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 3593 | /// Convert the parser's template argument list representation into our form. |
| 3594 | static TemplateArgumentListInfo |
| 3595 | makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId) { |
| 3596 | TemplateArgumentListInfo TemplateArgs(TemplateId.LAngleLoc, |
| 3597 | TemplateId.RAngleLoc); |
| 3598 | ASTTemplateArgsPtr TemplateArgsPtr(TemplateId.getTemplateArgs(), |
| 3599 | TemplateId.NumArgs); |
| 3600 | S.translateTemplateArguments(TemplateArgsPtr, TemplateArgs); |
| 3601 | return TemplateArgs; |
| 3602 | } |
| 3603 | |
Richard Smith | 0e617ec | 2016-12-27 07:56:27 +0000 | [diff] [blame] | 3604 | template<typename PartialSpecDecl> |
| 3605 | static void checkMoreSpecializedThanPrimary(Sema &S, PartialSpecDecl *Partial) { |
| 3606 | if (Partial->getDeclContext()->isDependentContext()) |
| 3607 | return; |
| 3608 | |
| 3609 | // FIXME: Get the TDK from deduction in order to provide better diagnostics |
| 3610 | // for non-substitution-failure issues? |
| 3611 | TemplateDeductionInfo Info(Partial->getLocation()); |
| 3612 | if (S.isMoreSpecializedThanPrimary(Partial, Info)) |
| 3613 | return; |
| 3614 | |
| 3615 | auto *Template = Partial->getSpecializedTemplate(); |
| 3616 | S.Diag(Partial->getLocation(), |
Richard Smith | fa4a09d | 2016-12-27 20:03:09 +0000 | [diff] [blame] | 3617 | diag::ext_partial_spec_not_more_specialized_than_primary) |
| 3618 | << isa<VarTemplateDecl>(Template); |
Richard Smith | 0e617ec | 2016-12-27 07:56:27 +0000 | [diff] [blame] | 3619 | |
| 3620 | if (Info.hasSFINAEDiagnostic()) { |
| 3621 | PartialDiagnosticAt Diag = {SourceLocation(), |
| 3622 | PartialDiagnostic::NullDiagnostic()}; |
| 3623 | Info.takeSFINAEDiagnostic(Diag); |
| 3624 | SmallString<128> SFINAEArgString; |
| 3625 | Diag.second.EmitToString(S.getDiagnostics(), SFINAEArgString); |
| 3626 | S.Diag(Diag.first, |
| 3627 | diag::note_partial_spec_not_more_specialized_than_primary) |
| 3628 | << SFINAEArgString; |
| 3629 | } |
| 3630 | |
| 3631 | S.Diag(Template->getLocation(), diag::note_template_decl_here); |
| 3632 | } |
| 3633 | |
Richard Smith | 4e05eaa | 2017-02-16 00:36:47 +0000 | [diff] [blame] | 3634 | static void |
| 3635 | noteNonDeducibleParameters(Sema &S, TemplateParameterList *TemplateParams, |
| 3636 | const llvm::SmallBitVector &DeducibleParams) { |
| 3637 | for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) { |
| 3638 | if (!DeducibleParams[I]) { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 3639 | NamedDecl *Param = TemplateParams->getParam(I); |
Richard Smith | 4e05eaa | 2017-02-16 00:36:47 +0000 | [diff] [blame] | 3640 | if (Param->getDeclName()) |
| 3641 | S.Diag(Param->getLocation(), diag::note_non_deducible_parameter) |
| 3642 | << Param->getDeclName(); |
| 3643 | else |
| 3644 | S.Diag(Param->getLocation(), diag::note_non_deducible_parameter) |
| 3645 | << "(anonymous)"; |
| 3646 | } |
| 3647 | } |
| 3648 | } |
| 3649 | |
| 3650 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 3651 | template<typename PartialSpecDecl> |
| 3652 | static void checkTemplatePartialSpecialization(Sema &S, |
| 3653 | PartialSpecDecl *Partial) { |
| 3654 | // C++1z [temp.class.spec]p8: (DR1495) |
| 3655 | // - The specialization shall be more specialized than the primary |
| 3656 | // template (14.5.5.2). |
| 3657 | checkMoreSpecializedThanPrimary(S, Partial); |
| 3658 | |
| 3659 | // C++ [temp.class.spec]p8: (DR1315) |
| 3660 | // - Each template-parameter shall appear at least once in the |
| 3661 | // template-id outside a non-deduced context. |
| 3662 | // C++1z [temp.class.spec.match]p3 (P0127R2) |
| 3663 | // If the template arguments of a partial specialization cannot be |
| 3664 | // deduced because of the structure of its template-parameter-list |
| 3665 | // and the template-id, the program is ill-formed. |
| 3666 | auto *TemplateParams = Partial->getTemplateParameters(); |
| 3667 | llvm::SmallBitVector DeducibleParams(TemplateParams->size()); |
| 3668 | S.MarkUsedTemplateParameters(Partial->getTemplateArgs(), true, |
| 3669 | TemplateParams->getDepth(), DeducibleParams); |
| 3670 | |
| 3671 | if (!DeducibleParams.all()) { |
| 3672 | unsigned NumNonDeducible = DeducibleParams.size() - DeducibleParams.count(); |
| 3673 | S.Diag(Partial->getLocation(), diag::ext_partial_specs_not_deducible) |
| 3674 | << isa<VarTemplatePartialSpecializationDecl>(Partial) |
| 3675 | << (NumNonDeducible > 1) |
| 3676 | << SourceRange(Partial->getLocation(), |
| 3677 | Partial->getTemplateArgsAsWritten()->RAngleLoc); |
Richard Smith | 4e05eaa | 2017-02-16 00:36:47 +0000 | [diff] [blame] | 3678 | noteNonDeducibleParameters(S, TemplateParams, DeducibleParams); |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 3679 | } |
| 3680 | } |
| 3681 | |
| 3682 | void Sema::CheckTemplatePartialSpecialization( |
| 3683 | ClassTemplatePartialSpecializationDecl *Partial) { |
| 3684 | checkTemplatePartialSpecialization(*this, Partial); |
| 3685 | } |
| 3686 | |
| 3687 | void Sema::CheckTemplatePartialSpecialization( |
| 3688 | VarTemplatePartialSpecializationDecl *Partial) { |
| 3689 | checkTemplatePartialSpecialization(*this, Partial); |
| 3690 | } |
| 3691 | |
Richard Smith | 4e05eaa | 2017-02-16 00:36:47 +0000 | [diff] [blame] | 3692 | void Sema::CheckDeductionGuideTemplate(FunctionTemplateDecl *TD) { |
| 3693 | // C++1z [temp.param]p11: |
| 3694 | // A template parameter of a deduction guide template that does not have a |
| 3695 | // default-argument shall be deducible from the parameter-type-list of the |
| 3696 | // deduction guide template. |
| 3697 | auto *TemplateParams = TD->getTemplateParameters(); |
| 3698 | llvm::SmallBitVector DeducibleParams(TemplateParams->size()); |
| 3699 | MarkDeducedTemplateParameters(TD, DeducibleParams); |
| 3700 | for (unsigned I = 0; I != TemplateParams->size(); ++I) { |
| 3701 | // A parameter pack is deducible (to an empty pack). |
| 3702 | auto *Param = TemplateParams->getParam(I); |
| 3703 | if (Param->isParameterPack() || hasVisibleDefaultArgument(Param)) |
| 3704 | DeducibleParams[I] = true; |
| 3705 | } |
| 3706 | |
| 3707 | if (!DeducibleParams.all()) { |
| 3708 | unsigned NumNonDeducible = DeducibleParams.size() - DeducibleParams.count(); |
| 3709 | Diag(TD->getLocation(), diag::err_deduction_guide_template_not_deducible) |
| 3710 | << (NumNonDeducible > 1); |
| 3711 | noteNonDeducibleParameters(*this, TemplateParams, DeducibleParams); |
| 3712 | } |
| 3713 | } |
| 3714 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3715 | DeclResult Sema::ActOnVarTemplateSpecialization( |
Richard Smith | beef345 | 2014-01-16 23:39:20 +0000 | [diff] [blame] | 3716 | Scope *S, Declarator &D, TypeSourceInfo *DI, SourceLocation TemplateKWLoc, |
Craig Topper | c79e5e3 | 2014-10-31 06:57:13 +0000 | [diff] [blame] | 3717 | TemplateParameterList *TemplateParams, StorageClass SC, |
Richard Smith | beef345 | 2014-01-16 23:39:20 +0000 | [diff] [blame] | 3718 | bool IsPartialSpecialization) { |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3719 | // D must be variable template id. |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 3720 | assert(D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId && |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3721 | "Variable template specialization is declared with a template it."); |
| 3722 | |
| 3723 | TemplateIdAnnotation *TemplateId = D.getName().TemplateId; |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 3724 | TemplateArgumentListInfo TemplateArgs = |
| 3725 | makeTemplateArgumentListInfo(*this, *TemplateId); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3726 | SourceLocation TemplateNameLoc = D.getIdentifierLoc(); |
| 3727 | SourceLocation LAngleLoc = TemplateId->LAngleLoc; |
| 3728 | SourceLocation RAngleLoc = TemplateId->RAngleLoc; |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 3729 | |
Richard Smith | beef345 | 2014-01-16 23:39:20 +0000 | [diff] [blame] | 3730 | TemplateName Name = TemplateId->Template.get(); |
| 3731 | |
| 3732 | // The template-id must name a variable template. |
| 3733 | VarTemplateDecl *VarTemplate = |
Karthik Bhat | 967c13d | 2014-05-08 13:16:20 +0000 | [diff] [blame] | 3734 | dyn_cast_or_null<VarTemplateDecl>(Name.getAsTemplateDecl()); |
| 3735 | if (!VarTemplate) { |
| 3736 | NamedDecl *FnTemplate; |
| 3737 | if (auto *OTS = Name.getAsOverloadedTemplate()) |
| 3738 | FnTemplate = *OTS->begin(); |
| 3739 | else |
| 3740 | FnTemplate = dyn_cast_or_null<FunctionTemplateDecl>(Name.getAsTemplateDecl()); |
| 3741 | if (FnTemplate) |
| 3742 | return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template_but_method) |
| 3743 | << FnTemplate->getDeclName(); |
Richard Smith | beef345 | 2014-01-16 23:39:20 +0000 | [diff] [blame] | 3744 | return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template) |
| 3745 | << IsPartialSpecialization; |
Karthik Bhat | 967c13d | 2014-05-08 13:16:20 +0000 | [diff] [blame] | 3746 | } |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3747 | |
| 3748 | // Check for unexpanded parameter packs in any of the template arguments. |
| 3749 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
| 3750 | if (DiagnoseUnexpandedParameterPack(TemplateArgs[I], |
| 3751 | UPPC_PartialSpecialization)) |
| 3752 | return true; |
| 3753 | |
| 3754 | // Check that the template argument list is well-formed for this |
| 3755 | // template. |
| 3756 | SmallVector<TemplateArgument, 4> Converted; |
| 3757 | if (CheckTemplateArgumentList(VarTemplate, TemplateNameLoc, TemplateArgs, |
| 3758 | false, Converted)) |
| 3759 | return true; |
| 3760 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3761 | // Find the variable template (partial) specialization declaration that |
| 3762 | // corresponds to these arguments. |
| 3763 | if (IsPartialSpecialization) { |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 3764 | if (CheckTemplatePartialSpecializationArgs(TemplateNameLoc, VarTemplate, |
| 3765 | TemplateArgs.size(), Converted)) |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3766 | return true; |
| 3767 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 3768 | // FIXME: Move these checks to CheckTemplatePartialSpecializationArgs so we |
| 3769 | // also do them during instantiation. |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3770 | bool InstantiationDependent; |
| 3771 | if (!Name.isDependent() && |
| 3772 | !TemplateSpecializationType::anyDependentTemplateArguments( |
David Majnemer | 6fbeee3 | 2016-07-07 04:43:07 +0000 | [diff] [blame] | 3773 | TemplateArgs.arguments(), |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3774 | InstantiationDependent)) { |
| 3775 | Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized) |
| 3776 | << VarTemplate->getDeclName(); |
| 3777 | IsPartialSpecialization = false; |
| 3778 | } |
Richard Smith | 300e0c3 | 2013-09-24 04:49:23 +0000 | [diff] [blame] | 3779 | |
| 3780 | if (isSameAsPrimaryTemplate(VarTemplate->getTemplateParameters(), |
| 3781 | Converted)) { |
| 3782 | // C++ [temp.class.spec]p9b3: |
| 3783 | // |
| 3784 | // -- The argument list of the specialization shall not be identical |
| 3785 | // to the implicit argument list of the primary template. |
| 3786 | Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template) |
| 3787 | << /*variable template*/ 1 |
| 3788 | << /*is definition*/(SC != SC_Extern && !CurContext->isRecord()) |
| 3789 | << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc)); |
| 3790 | // FIXME: Recover from this by treating the declaration as a redeclaration |
| 3791 | // of the primary template. |
| 3792 | return true; |
| 3793 | } |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3794 | } |
| 3795 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3796 | void *InsertPos = nullptr; |
| 3797 | VarTemplateSpecializationDecl *PrevDecl = nullptr; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3798 | |
| 3799 | if (IsPartialSpecialization) |
| 3800 | // FIXME: Template parameter list matters too |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 3801 | PrevDecl = VarTemplate->findPartialSpecialization(Converted, InsertPos); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3802 | else |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 3803 | PrevDecl = VarTemplate->findSpecialization(Converted, InsertPos); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3804 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3805 | VarTemplateSpecializationDecl *Specialization = nullptr; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3806 | |
| 3807 | // Check whether we can declare a variable template specialization in |
| 3808 | // the current scope. |
| 3809 | if (CheckTemplateSpecializationScope(*this, VarTemplate, PrevDecl, |
| 3810 | TemplateNameLoc, |
| 3811 | IsPartialSpecialization)) |
| 3812 | return true; |
| 3813 | |
| 3814 | if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) { |
| 3815 | // Since the only prior variable template specialization with these |
| 3816 | // arguments was referenced but not declared, reuse that |
| 3817 | // declaration node as our own, updating its source location and |
| 3818 | // the list of outer template parameters to reflect our new declaration. |
| 3819 | Specialization = PrevDecl; |
| 3820 | Specialization->setLocation(TemplateNameLoc); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3821 | PrevDecl = nullptr; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3822 | } else if (IsPartialSpecialization) { |
| 3823 | // Create a new class template partial specialization declaration node. |
| 3824 | VarTemplatePartialSpecializationDecl *PrevPartial = |
| 3825 | cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3826 | VarTemplatePartialSpecializationDecl *Partial = |
| 3827 | VarTemplatePartialSpecializationDecl::Create( |
| 3828 | Context, VarTemplate->getDeclContext(), TemplateKWLoc, |
| 3829 | TemplateNameLoc, TemplateParams, VarTemplate, DI->getType(), DI, SC, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 3830 | Converted, TemplateArgs); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3831 | |
| 3832 | if (!PrevPartial) |
| 3833 | VarTemplate->AddPartialSpecialization(Partial, InsertPos); |
| 3834 | Specialization = Partial; |
| 3835 | |
| 3836 | // If we are providing an explicit specialization of a member variable |
| 3837 | // template specialization, make a note of that. |
| 3838 | if (PrevPartial && PrevPartial->getInstantiatedFromMember()) |
Larisse Voufo | 4cda461 | 2013-08-22 00:28:27 +0000 | [diff] [blame] | 3839 | PrevPartial->setMemberSpecialization(); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3840 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 3841 | CheckTemplatePartialSpecialization(Partial); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3842 | } else { |
| 3843 | // Create a new class template specialization declaration node for |
| 3844 | // this explicit specialization or friend declaration. |
| 3845 | Specialization = VarTemplateSpecializationDecl::Create( |
| 3846 | Context, VarTemplate->getDeclContext(), TemplateKWLoc, TemplateNameLoc, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 3847 | VarTemplate, DI->getType(), DI, SC, Converted); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3848 | Specialization->setTemplateArgsInfo(TemplateArgs); |
| 3849 | |
| 3850 | if (!PrevDecl) |
| 3851 | VarTemplate->AddSpecialization(Specialization, InsertPos); |
| 3852 | } |
| 3853 | |
| 3854 | // C++ [temp.expl.spec]p6: |
| 3855 | // If a template, a member template or the member of a class template is |
| 3856 | // explicitly specialized then that specialization shall be declared |
| 3857 | // before the first use of that specialization that would cause an implicit |
| 3858 | // instantiation to take place, in every translation unit in which such a |
| 3859 | // use occurs; no diagnostic is required. |
| 3860 | if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) { |
| 3861 | bool Okay = false; |
| 3862 | for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) { |
| 3863 | // Is there any previous explicit specialization declaration? |
| 3864 | if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) { |
| 3865 | Okay = true; |
| 3866 | break; |
| 3867 | } |
| 3868 | } |
| 3869 | |
| 3870 | if (!Okay) { |
| 3871 | SourceRange Range(TemplateNameLoc, RAngleLoc); |
| 3872 | Diag(TemplateNameLoc, diag::err_specialization_after_instantiation) |
| 3873 | << Name << Range; |
| 3874 | |
| 3875 | Diag(PrevDecl->getPointOfInstantiation(), |
| 3876 | diag::note_instantiation_required_here) |
| 3877 | << (PrevDecl->getTemplateSpecializationKind() != |
| 3878 | TSK_ImplicitInstantiation); |
| 3879 | return true; |
| 3880 | } |
| 3881 | } |
| 3882 | |
| 3883 | Specialization->setTemplateKeywordLoc(TemplateKWLoc); |
| 3884 | Specialization->setLexicalDeclContext(CurContext); |
| 3885 | |
| 3886 | // Add the specialization into its lexical context, so that it can |
| 3887 | // be seen when iterating through the list of declarations in that |
| 3888 | // context. However, specializations are not found by name lookup. |
| 3889 | CurContext->addDecl(Specialization); |
| 3890 | |
| 3891 | // Note that this is an explicit specialization. |
| 3892 | Specialization->setSpecializationKind(TSK_ExplicitSpecialization); |
| 3893 | |
| 3894 | if (PrevDecl) { |
| 3895 | // Check that this isn't a redefinition of this specialization, |
| 3896 | // merging with previous declarations. |
| 3897 | LookupResult PrevSpec(*this, GetNameForDeclarator(D), LookupOrdinaryName, |
Richard Smith | becb92d | 2017-10-10 22:33:17 +0000 | [diff] [blame] | 3898 | forRedeclarationInCurContext()); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3899 | PrevSpec.addDecl(PrevDecl); |
| 3900 | D.setRedeclaration(CheckVariableDeclaration(Specialization, PrevSpec)); |
Larisse Voufo | 4cda461 | 2013-08-22 00:28:27 +0000 | [diff] [blame] | 3901 | } else if (Specialization->isStaticDataMember() && |
| 3902 | Specialization->isOutOfLine()) { |
| 3903 | Specialization->setAccess(VarTemplate->getAccess()); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3904 | } |
| 3905 | |
| 3906 | // Link instantiations of static data members back to the template from |
| 3907 | // which they were instantiated. |
| 3908 | if (Specialization->isStaticDataMember()) |
| 3909 | Specialization->setInstantiationOfStaticDataMember( |
| 3910 | VarTemplate->getTemplatedDecl(), |
| 3911 | Specialization->getSpecializationKind()); |
| 3912 | |
| 3913 | return Specialization; |
| 3914 | } |
| 3915 | |
| 3916 | namespace { |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3917 | /// A partial specialization whose template arguments have matched |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3918 | /// a given template-id. |
| 3919 | struct PartialSpecMatchResult { |
| 3920 | VarTemplatePartialSpecializationDecl *Partial; |
| 3921 | TemplateArgumentList *Args; |
| 3922 | }; |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 3923 | } // end anonymous namespace |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3924 | |
| 3925 | DeclResult |
| 3926 | Sema::CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc, |
| 3927 | SourceLocation TemplateNameLoc, |
| 3928 | const TemplateArgumentListInfo &TemplateArgs) { |
| 3929 | assert(Template && "A variable template id without template?"); |
| 3930 | |
| 3931 | // Check that the template argument list is well-formed for this template. |
| 3932 | SmallVector<TemplateArgument, 4> Converted; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3933 | if (CheckTemplateArgumentList( |
| 3934 | Template, TemplateNameLoc, |
| 3935 | const_cast<TemplateArgumentListInfo &>(TemplateArgs), false, |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 3936 | Converted)) |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3937 | return true; |
| 3938 | |
| 3939 | // Find the variable template specialization declaration that |
| 3940 | // corresponds to these arguments. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3941 | void *InsertPos = nullptr; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3942 | if (VarTemplateSpecializationDecl *Spec = Template->findSpecialization( |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 3943 | Converted, InsertPos)) { |
| 3944 | checkSpecializationVisibility(TemplateNameLoc, Spec); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3945 | // If we already have a variable template specialization, return it. |
| 3946 | return Spec; |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 3947 | } |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3948 | |
| 3949 | // This is the first time we have referenced this variable template |
| 3950 | // specialization. Create the canonical declaration and add it to |
| 3951 | // the set of specializations, based on the closest partial specialization |
| 3952 | // that it represents. That is, |
| 3953 | VarDecl *InstantiationPattern = Template->getTemplatedDecl(); |
| 3954 | TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 3955 | Converted); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3956 | TemplateArgumentList *InstantiationArgs = &TemplateArgList; |
| 3957 | bool AmbiguousPartialSpec = false; |
| 3958 | typedef PartialSpecMatchResult MatchResult; |
| 3959 | SmallVector<MatchResult, 4> Matched; |
| 3960 | SourceLocation PointOfInstantiation = TemplateNameLoc; |
George Burgess IV | 3e3bb95b | 2015-12-02 21:58:08 +0000 | [diff] [blame] | 3961 | TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation, |
| 3962 | /*ForTakingAddress=*/false); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3963 | |
| 3964 | // 1. Attempt to find the closest partial specialization that this |
| 3965 | // specializes, if any. |
| 3966 | // If any of the template arguments is dependent, then this is probably |
| 3967 | // a placeholder for an incomplete declarative context; which must be |
| 3968 | // complete by instantiation time. Thus, do not search through the partial |
| 3969 | // specializations yet. |
Larisse Voufo | 3061638 | 2013-08-23 22:21:36 +0000 | [diff] [blame] | 3970 | // TODO: Unify with InstantiateClassTemplateSpecialization()? |
| 3971 | // Perhaps better after unification of DeduceTemplateArguments() and |
| 3972 | // getMoreSpecializedPartialSpecialization(). |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3973 | bool InstantiationDependent = false; |
| 3974 | if (!TemplateSpecializationType::anyDependentTemplateArguments( |
| 3975 | TemplateArgs, InstantiationDependent)) { |
| 3976 | |
| 3977 | SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs; |
| 3978 | Template->getPartialSpecializations(PartialSpecs); |
| 3979 | |
| 3980 | for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) { |
| 3981 | VarTemplatePartialSpecializationDecl *Partial = PartialSpecs[I]; |
| 3982 | TemplateDeductionInfo Info(FailedCandidates.getLocation()); |
| 3983 | |
| 3984 | if (TemplateDeductionResult Result = |
| 3985 | DeduceTemplateArguments(Partial, TemplateArgList, Info)) { |
| 3986 | // Store the failed-deduction information for use in diagnostics, later. |
Larisse Voufo | 3061638 | 2013-08-23 22:21:36 +0000 | [diff] [blame] | 3987 | // TODO: Actually use the failed-deduction info? |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 3988 | FailedCandidates.addCandidate().set( |
| 3989 | DeclAccessPair::make(Template, AS_public), Partial, |
| 3990 | MakeDeductionFailureInfo(Context, Result, Info)); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3991 | (void)Result; |
| 3992 | } else { |
| 3993 | Matched.push_back(PartialSpecMatchResult()); |
| 3994 | Matched.back().Partial = Partial; |
| 3995 | Matched.back().Args = Info.take(); |
| 3996 | } |
| 3997 | } |
| 3998 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 3999 | if (Matched.size() >= 1) { |
| 4000 | SmallVector<MatchResult, 4>::iterator Best = Matched.begin(); |
| 4001 | if (Matched.size() == 1) { |
| 4002 | // -- If exactly one matching specialization is found, the |
| 4003 | // instantiation is generated from that specialization. |
| 4004 | // We don't need to do anything for this. |
| 4005 | } else { |
| 4006 | // -- If more than one matching specialization is found, the |
| 4007 | // partial order rules (14.5.4.2) are used to determine |
| 4008 | // whether one of the specializations is more specialized |
| 4009 | // than the others. If none of the specializations is more |
| 4010 | // specialized than all of the other matching |
| 4011 | // specializations, then the use of the variable template is |
| 4012 | // ambiguous and the program is ill-formed. |
| 4013 | for (SmallVector<MatchResult, 4>::iterator P = Best + 1, |
| 4014 | PEnd = Matched.end(); |
| 4015 | P != PEnd; ++P) { |
| 4016 | if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial, |
| 4017 | PointOfInstantiation) == |
| 4018 | P->Partial) |
| 4019 | Best = P; |
| 4020 | } |
| 4021 | |
| 4022 | // Determine if the best partial specialization is more specialized than |
| 4023 | // the others. |
| 4024 | for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(), |
| 4025 | PEnd = Matched.end(); |
| 4026 | P != PEnd; ++P) { |
| 4027 | if (P != Best && getMoreSpecializedPartialSpecialization( |
| 4028 | P->Partial, Best->Partial, |
| 4029 | PointOfInstantiation) != Best->Partial) { |
| 4030 | AmbiguousPartialSpec = true; |
| 4031 | break; |
| 4032 | } |
| 4033 | } |
| 4034 | } |
| 4035 | |
| 4036 | // Instantiate using the best variable template partial specialization. |
| 4037 | InstantiationPattern = Best->Partial; |
| 4038 | InstantiationArgs = Best->Args; |
| 4039 | } else { |
| 4040 | // -- If no match is found, the instantiation is generated |
| 4041 | // from the primary template. |
| 4042 | // InstantiationPattern = Template->getTemplatedDecl(); |
| 4043 | } |
| 4044 | } |
| 4045 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4046 | // 2. Create the canonical declaration. |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4047 | // Note that we do not instantiate a definition until we see an odr-use |
| 4048 | // in DoMarkVarDeclReferenced(). |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4049 | // FIXME: LateAttrs et al.? |
| 4050 | VarTemplateSpecializationDecl *Decl = BuildVarTemplateInstantiation( |
| 4051 | Template, InstantiationPattern, *InstantiationArgs, TemplateArgs, |
| 4052 | Converted, TemplateNameLoc, InsertPos /*, LateAttrs, StartingScope*/); |
| 4053 | if (!Decl) |
| 4054 | return true; |
| 4055 | |
| 4056 | if (AmbiguousPartialSpec) { |
| 4057 | // Partial ordering did not produce a clear winner. Complain. |
| 4058 | Decl->setInvalidDecl(); |
| 4059 | Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous) |
| 4060 | << Decl; |
| 4061 | |
| 4062 | // Print the matching partial specializations. |
Yaron Keren | 1cb8146 | 2016-11-16 13:45:34 +0000 | [diff] [blame] | 4063 | for (MatchResult P : Matched) |
| 4064 | Diag(P.Partial->getLocation(), diag::note_partial_spec_match) |
| 4065 | << getTemplateArgumentBindingsText(P.Partial->getTemplateParameters(), |
| 4066 | *P.Args); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4067 | return true; |
| 4068 | } |
| 4069 | |
| 4070 | if (VarTemplatePartialSpecializationDecl *D = |
| 4071 | dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern)) |
| 4072 | Decl->setInstantiationOf(D, InstantiationArgs); |
| 4073 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4074 | checkSpecializationVisibility(TemplateNameLoc, Decl); |
| 4075 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4076 | assert(Decl && "No variable template specialization?"); |
| 4077 | return Decl; |
| 4078 | } |
| 4079 | |
| 4080 | ExprResult |
| 4081 | Sema::CheckVarTemplateId(const CXXScopeSpec &SS, |
| 4082 | const DeclarationNameInfo &NameInfo, |
| 4083 | VarTemplateDecl *Template, SourceLocation TemplateLoc, |
| 4084 | const TemplateArgumentListInfo *TemplateArgs) { |
| 4085 | |
| 4086 | DeclResult Decl = CheckVarTemplateId(Template, TemplateLoc, NameInfo.getLoc(), |
| 4087 | *TemplateArgs); |
| 4088 | if (Decl.isInvalid()) |
| 4089 | return ExprError(); |
| 4090 | |
| 4091 | VarDecl *Var = cast<VarDecl>(Decl.get()); |
| 4092 | if (!Var->getTemplateSpecializationKind()) |
| 4093 | Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation, |
| 4094 | NameInfo.getLoc()); |
| 4095 | |
| 4096 | // Build an ordinary singleton decl ref. |
| 4097 | return BuildDeclarationNameExpr(SS, NameInfo, Var, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4098 | /*FoundD=*/nullptr, TemplateArgs); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4099 | } |
| 4100 | |
Richard Smith | ecad88d | 2018-04-26 01:08:00 +0000 | [diff] [blame] | 4101 | void Sema::diagnoseMissingTemplateArguments(TemplateName Name, |
| 4102 | SourceLocation Loc) { |
| 4103 | Diag(Loc, diag::err_template_missing_args) |
| 4104 | << (int)getTemplateNameKindForDiagnostics(Name) << Name; |
| 4105 | if (TemplateDecl *TD = Name.getAsTemplateDecl()) { |
| 4106 | Diag(TD->getLocation(), diag::note_template_decl_here) |
| 4107 | << TD->getTemplateParameters()->getSourceRange(); |
| 4108 | } |
| 4109 | } |
| 4110 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4111 | ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4112 | SourceLocation TemplateKWLoc, |
Douglas Gregor | 0da1d43 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 4113 | LookupResult &R, |
| 4114 | bool RequiresADL, |
Abramo Bagnara | 65f7c3d | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 4115 | const TemplateArgumentListInfo *TemplateArgs) { |
Douglas Gregor | a727cb9 | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 4116 | // FIXME: Can we do any checking at this point? I guess we could check the |
| 4117 | // template arguments that we have against the template name, if the template |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4118 | // name refers to a single template. That's not a terribly common case, |
Douglas Gregor | a727cb9 | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 4119 | // though. |
Douglas Gregor | b491ed3 | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 4120 | // foo<int> could identify a single function unambiguously |
| 4121 | // This approach does NOT work, since f<int>(1); |
| 4122 | // gets resolved prior to resorting to overload resolution |
| 4123 | // i.e., template<class T> void f(double); |
| 4124 | // vs template<class T, class U> void f(U); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4125 | |
| 4126 | // These should be filtered out by our callers. |
| 4127 | assert(!R.empty() && "empty lookup results when building templateid"); |
| 4128 | assert(!R.isAmbiguous() && "ambiguous lookup when building templateid"); |
| 4129 | |
Richard Smith | 0410094 | 2018-04-26 02:10:22 +0000 | [diff] [blame] | 4130 | // Non-function templates require a template argument list. |
| 4131 | if (auto *TD = R.getAsSingle<TemplateDecl>()) { |
| 4132 | if (!TemplateArgs && !isa<FunctionTemplateDecl>(TD)) { |
| 4133 | diagnoseMissingTemplateArguments(TemplateName(TD), R.getNameLoc()); |
| 4134 | return ExprError(); |
| 4135 | } |
| 4136 | } |
| 4137 | |
Richard Smith | 0bf96f9 | 2018-04-25 22:58:55 +0000 | [diff] [blame] | 4138 | auto AnyDependentArguments = [&]() -> bool { |
| 4139 | bool InstantiationDependent; |
| 4140 | return TemplateArgs && |
| 4141 | TemplateSpecializationType::anyDependentTemplateArguments( |
| 4142 | *TemplateArgs, InstantiationDependent); |
| 4143 | }; |
| 4144 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4145 | // In C++1y, check variable template ids. |
Richard Smith | 0bf96f9 | 2018-04-25 22:58:55 +0000 | [diff] [blame] | 4146 | if (R.getAsSingle<VarTemplateDecl>() && !AnyDependentArguments()) { |
Richard Smith | d7d11ef | 2014-02-03 20:09:56 +0000 | [diff] [blame] | 4147 | return CheckVarTemplateId(SS, R.getLookupNameInfo(), |
| 4148 | R.getAsSingle<VarTemplateDecl>(), |
| 4149 | TemplateKWLoc, TemplateArgs); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4150 | } |
| 4151 | |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 4152 | // We don't want lookup warnings at this point. |
| 4153 | R.suppressDiagnostics(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4154 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4155 | UnresolvedLookupExpr *ULE |
Douglas Gregor | a6e053e | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 4156 | = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), |
Douglas Gregor | 0da1d43 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 4157 | SS.getWithLocInContext(Context), |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4158 | TemplateKWLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 4159 | R.getLookupNameInfo(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4160 | RequiresADL, TemplateArgs, |
Douglas Gregor | 30a4f4c | 2010-05-23 18:57:34 +0000 | [diff] [blame] | 4161 | R.begin(), R.end()); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4162 | |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 4163 | return ULE; |
Douglas Gregor | a727cb9 | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 4164 | } |
| 4165 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4166 | // We actually only call this from template instantiation. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4167 | ExprResult |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4168 | Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4169 | SourceLocation TemplateKWLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 4170 | const DeclarationNameInfo &NameInfo, |
Abramo Bagnara | 65f7c3d | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 4171 | const TemplateArgumentListInfo *TemplateArgs) { |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 4172 | |
Abramo Bagnara | 65f7c3d | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 4173 | assert(TemplateArgs || TemplateKWLoc.isValid()); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4174 | DeclContext *DC; |
| 4175 | if (!(DC = computeDeclContext(SS, false)) || |
| 4176 | DC->isDependentContext() || |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 4177 | RequireCompleteDeclContext(SS, DC)) |
Reid Kleckner | 034531d | 2014-12-18 18:17:42 +0000 | [diff] [blame] | 4178 | return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4179 | |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 4180 | bool MemberOfUnknownSpecialization; |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 4181 | LookupResult R(*this, NameInfo, LookupOrdinaryName); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4182 | if (LookupTemplateName(R, (Scope *)nullptr, SS, QualType(), |
| 4183 | /*Entering*/false, MemberOfUnknownSpecialization, |
| 4184 | TemplateKWLoc)) |
| 4185 | return ExprError(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4186 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4187 | if (R.isAmbiguous()) |
| 4188 | return ExprError(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4189 | |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4190 | if (R.empty()) { |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4191 | Diag(NameInfo.getLoc(), diag::err_no_member) |
| 4192 | << NameInfo.getName() << DC << SS.getRange(); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4193 | return ExprError(); |
| 4194 | } |
| 4195 | |
| 4196 | if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) { |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 4197 | Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template) |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 4198 | << SS.getScopeRep() |
Reid Kleckner | 32506ed | 2014-06-12 23:03:48 +0000 | [diff] [blame] | 4199 | << NameInfo.getName().getAsString() << SS.getRange(); |
John McCall | e66edc1 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 4200 | Diag(Temp->getLocation(), diag::note_referenced_class_template); |
| 4201 | return ExprError(); |
| 4202 | } |
| 4203 | |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4204 | return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs); |
Douglas Gregor | a727cb9 | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 4205 | } |
| 4206 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4207 | /// Form a dependent template name. |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 4208 | /// |
| 4209 | /// This action forms a dependent template name given the template |
| 4210 | /// name and its (presumably dependent) scope specifier. For |
| 4211 | /// example, given "MetaFun::template apply", the scope specifier \p |
| 4212 | /// SS will be "MetaFun::", \p TemplateKWLoc contains the location |
| 4213 | /// of the "template" keyword, and "apply" is the \p Name. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4214 | TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S, |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4215 | CXXScopeSpec &SS, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4216 | SourceLocation TemplateKWLoc, |
Richard Smith | c08b693 | 2018-04-27 02:00:13 +0000 | [diff] [blame] | 4217 | const UnqualifiedId &Name, |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4218 | ParsedType ObjectType, |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4219 | bool EnteringContext, |
Richard Smith | fd3dae0 | 2017-01-20 00:20:39 +0000 | [diff] [blame] | 4220 | TemplateTy &Result, |
| 4221 | bool AllowInjectedClassName) { |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 4222 | if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent()) |
| 4223 | Diag(TemplateKWLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4224 | getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 4225 | diag::warn_cxx98_compat_template_outside_of_template : |
| 4226 | diag::ext_template_outside_of_template) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4227 | << FixItHint::CreateRemoval(TemplateKWLoc); |
| 4228 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4229 | DeclContext *LookupCtx = nullptr; |
Douglas Gregor | 9abe237 | 2010-01-19 16:01:07 +0000 | [diff] [blame] | 4230 | if (SS.isSet()) |
| 4231 | LookupCtx = computeDeclContext(SS, EnteringContext); |
| 4232 | if (!LookupCtx && ObjectType) |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4233 | LookupCtx = computeDeclContext(ObjectType.get()); |
Douglas Gregor | 9abe237 | 2010-01-19 16:01:07 +0000 | [diff] [blame] | 4234 | if (LookupCtx) { |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 4235 | // C++0x [temp.names]p5: |
| 4236 | // If a name prefixed by the keyword template is not the name of |
| 4237 | // a template, the program is ill-formed. [Note: the keyword |
| 4238 | // template may not be applied to non-template members of class |
| 4239 | // templates. -end note ] [ Note: as is the case with the |
| 4240 | // typename prefix, the template prefix is allowed in cases |
| 4241 | // where it is not strictly necessary; i.e., when the |
| 4242 | // nested-name-specifier or the expression on the left of the -> |
| 4243 | // or . is not dependent on a template-parameter, or the use |
| 4244 | // does not appear in the scope of a template. -end note] |
| 4245 | // |
| 4246 | // Note: C++03 was more strict here, because it banned the use of |
| 4247 | // the "template" keyword prior to a template-name that was not a |
| 4248 | // dependent name. C++ DR468 relaxed this requirement (the |
| 4249 | // "template" keyword is now permitted). We follow the C++0x |
Douglas Gregor | c9d2682 | 2010-06-14 22:07:54 +0000 | [diff] [blame] | 4250 | // rules, even in C++03 mode with a warning, retroactively applying the DR. |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 4251 | bool MemberOfUnknownSpecialization; |
Richard Smith | af41696 | 2012-11-15 00:31:27 +0000 | [diff] [blame] | 4252 | TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name, |
Abramo Bagnara | 7c5dee4 | 2010-08-06 12:11:11 +0000 | [diff] [blame] | 4253 | ObjectType, EnteringContext, Result, |
Douglas Gregor | 786123d | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 4254 | MemberOfUnknownSpecialization); |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4255 | if (TNK == TNK_Non_template && MemberOfUnknownSpecialization) { |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4256 | // This is a dependent template. Handle it below. |
Douglas Gregor | d2e6a45 | 2010-01-14 17:47:39 +0000 | [diff] [blame] | 4257 | } else if (TNK == TNK_Non_template) { |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4258 | // Do the lookup again to determine if this is a "nothing found" case or |
| 4259 | // a "not a template" case. FIXME: Refactor isTemplateName so we don't |
| 4260 | // need to do this. |
| 4261 | DeclarationNameInfo DNI = GetNameFromUnqualifiedId(Name); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 4262 | LookupResult R(*this, DNI.getName(), Name.getBeginLoc(), |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4263 | LookupOrdinaryName); |
| 4264 | bool MOUS; |
| 4265 | if (!LookupTemplateName(R, S, SS, ObjectType.get(), EnteringContext, |
| 4266 | MOUS, TemplateKWLoc)) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 4267 | Diag(Name.getBeginLoc(), diag::err_no_member) |
Richard Smith | 7981004 | 2018-05-11 02:43:08 +0000 | [diff] [blame] | 4268 | << DNI.getName() << LookupCtx << SS.getRange(); |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4269 | return TNK_Non_template; |
Douglas Gregor | d2e6a45 | 2010-01-14 17:47:39 +0000 | [diff] [blame] | 4270 | } else { |
| 4271 | // We found something; return it. |
Richard Smith | fd3dae0 | 2017-01-20 00:20:39 +0000 | [diff] [blame] | 4272 | auto *LookupRD = dyn_cast<CXXRecordDecl>(LookupCtx); |
| 4273 | if (!AllowInjectedClassName && SS.isSet() && LookupRD && |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 4274 | Name.getKind() == UnqualifiedIdKind::IK_Identifier && |
| 4275 | Name.Identifier && LookupRD->getIdentifier() == Name.Identifier) { |
Richard Smith | fd3dae0 | 2017-01-20 00:20:39 +0000 | [diff] [blame] | 4276 | // C++14 [class.qual]p2: |
| 4277 | // In a lookup in which function names are not ignored and the |
| 4278 | // nested-name-specifier nominates a class C, if the name specified |
| 4279 | // [...] is the injected-class-name of C, [...] the name is instead |
| 4280 | // considered to name the constructor |
| 4281 | // |
| 4282 | // We don't get here if naming the constructor would be valid, so we |
| 4283 | // just reject immediately and recover by treating the |
| 4284 | // injected-class-name as naming the template. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 4285 | Diag(Name.getBeginLoc(), |
Richard Smith | fd3dae0 | 2017-01-20 00:20:39 +0000 | [diff] [blame] | 4286 | diag::ext_out_of_line_qualified_id_type_names_constructor) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 4287 | << Name.Identifier |
| 4288 | << 0 /*injected-class-name used as template name*/ |
| 4289 | << 1 /*'template' keyword was used*/; |
Richard Smith | fd3dae0 | 2017-01-20 00:20:39 +0000 | [diff] [blame] | 4290 | } |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4291 | return TNK; |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 4292 | } |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 4293 | } |
| 4294 | |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 4295 | NestedNameSpecifier *Qualifier = SS.getScopeRep(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4296 | |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 4297 | switch (Name.getKind()) { |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 4298 | case UnqualifiedIdKind::IK_Identifier: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4299 | Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier, |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4300 | Name.Identifier)); |
| 4301 | return TNK_Dependent_template_name; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4302 | |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 4303 | case UnqualifiedIdKind::IK_OperatorFunctionId: |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4304 | Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier, |
Douglas Gregor | 71395fa | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 4305 | Name.OperatorFunctionId.Operator)); |
Richard Smith | 72bfbd8 | 2013-12-04 00:28:23 +0000 | [diff] [blame] | 4306 | return TNK_Function_template; |
Alexis Hunt | ed0530f | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 4307 | |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 4308 | case UnqualifiedIdKind::IK_LiteralOperatorId: |
Richard Smith | d091dc1 | 2013-12-05 00:58:33 +0000 | [diff] [blame] | 4309 | llvm_unreachable("literal operator id cannot have a dependent scope"); |
Alexis Hunt | ed0530f | 2009-11-28 08:58:14 +0000 | [diff] [blame] | 4310 | |
Douglas Gregor | 3cf8131 | 2009-11-03 23:16:33 +0000 | [diff] [blame] | 4311 | default: |
| 4312 | break; |
| 4313 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4314 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 4315 | Diag(Name.getBeginLoc(), diag::err_template_kw_refers_to_non_template) |
| 4316 | << GetNameFromUnqualifiedId(Name).getName() << Name.getSourceRange() |
| 4317 | << TemplateKWLoc; |
Douglas Gregor | bb11965 | 2010-06-16 23:00:59 +0000 | [diff] [blame] | 4318 | return TNK_Non_template; |
Douglas Gregor | b67535d | 2009-03-31 00:43:58 +0000 | [diff] [blame] | 4319 | } |
| 4320 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4321 | bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param, |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4322 | TemplateArgumentLoc &AL, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4323 | SmallVectorImpl<TemplateArgument> &Converted) { |
John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4324 | const TemplateArgument &Arg = AL.getArgument(); |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4325 | QualType ArgType; |
| 4326 | TypeSourceInfo *TSI = nullptr; |
John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4327 | |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4328 | // Check template type parameter. |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4329 | switch(Arg.getKind()) { |
| 4330 | case TemplateArgument::Type: |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4331 | // C++ [temp.arg.type]p1: |
| 4332 | // A template-argument for a template-parameter which is a |
| 4333 | // type shall be a type-id. |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4334 | ArgType = Arg.getAsType(); |
| 4335 | TSI = AL.getTypeSourceInfo(); |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4336 | break; |
Richard Smith | 77a9c60 | 2018-02-28 03:02:23 +0000 | [diff] [blame] | 4337 | case TemplateArgument::Template: |
| 4338 | case TemplateArgument::TemplateExpansion: { |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4339 | // We have a template type parameter but the template argument |
| 4340 | // is a template without any arguments. |
| 4341 | SourceRange SR = AL.getSourceRange(); |
Richard Smith | 77a9c60 | 2018-02-28 03:02:23 +0000 | [diff] [blame] | 4342 | TemplateName Name = Arg.getAsTemplateOrTemplatePattern(); |
Richard Smith | ecad88d | 2018-04-26 01:08:00 +0000 | [diff] [blame] | 4343 | diagnoseMissingTemplateArguments(Name, SR.getEnd()); |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4344 | return true; |
| 4345 | } |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4346 | case TemplateArgument::Expression: { |
| 4347 | // We have a template type parameter but the template argument is an |
| 4348 | // expression; see if maybe it is missing the "typename" keyword. |
| 4349 | CXXScopeSpec SS; |
| 4350 | DeclarationNameInfo NameInfo; |
| 4351 | |
| 4352 | if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) { |
| 4353 | SS.Adopt(ArgExpr->getQualifierLoc()); |
| 4354 | NameInfo = ArgExpr->getNameInfo(); |
| 4355 | } else if (DependentScopeDeclRefExpr *ArgExpr = |
| 4356 | dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) { |
| 4357 | SS.Adopt(ArgExpr->getQualifierLoc()); |
| 4358 | NameInfo = ArgExpr->getNameInfo(); |
| 4359 | } else if (CXXDependentScopeMemberExpr *ArgExpr = |
| 4360 | dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) { |
Kaelyn Uhrain | 055e947 | 2012-06-08 01:07:26 +0000 | [diff] [blame] | 4361 | if (ArgExpr->isImplicitAccess()) { |
| 4362 | SS.Adopt(ArgExpr->getQualifierLoc()); |
| 4363 | NameInfo = ArgExpr->getMemberNameInfo(); |
| 4364 | } |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4365 | } |
| 4366 | |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4367 | if (auto *II = NameInfo.getName().getAsIdentifierInfo()) { |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4368 | LookupResult Result(*this, NameInfo, LookupOrdinaryName); |
| 4369 | LookupParsedName(Result, CurScope, &SS); |
| 4370 | |
Kaelyn Uhrain | 055e947 | 2012-06-08 01:07:26 +0000 | [diff] [blame] | 4371 | if (Result.getAsSingle<TypeDecl>() || |
| 4372 | Result.getResultKind() == |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4373 | LookupResult::NotFoundInCurrentInstantiation) { |
| 4374 | // Suggest that the user add 'typename' before the NNS. |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4375 | SourceLocation Loc = AL.getSourceRange().getBegin(); |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4376 | Diag(Loc, getLangOpts().MSVCCompat |
| 4377 | ? diag::ext_ms_template_type_arg_missing_typename |
| 4378 | : diag::err_template_arg_must_be_type_suggest) |
| 4379 | << FixItHint::CreateInsertion(Loc, "typename "); |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4380 | Diag(Param->getLocation(), diag::note_template_param_here); |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4381 | |
| 4382 | // Recover by synthesizing a type using the location information that we |
| 4383 | // already have. |
| 4384 | ArgType = |
| 4385 | Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II); |
| 4386 | TypeLocBuilder TLB; |
| 4387 | DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(ArgType); |
| 4388 | TL.setElaboratedKeywordLoc(SourceLocation(/*synthesized*/)); |
| 4389 | TL.setQualifierLoc(SS.getWithLocInContext(Context)); |
| 4390 | TL.setNameLoc(NameInfo.getLoc()); |
| 4391 | TSI = TLB.getTypeSourceInfo(Context, ArgType); |
| 4392 | |
| 4393 | // Overwrite our input TemplateArgumentLoc so that we can recover |
| 4394 | // properly. |
| 4395 | AL = TemplateArgumentLoc(TemplateArgument(ArgType), |
| 4396 | TemplateArgumentLocInfo(TSI)); |
| 4397 | |
| 4398 | break; |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4399 | } |
| 4400 | } |
| 4401 | // fallthrough |
Galina Kistanova | 3779cb3 | 2017-06-07 06:25:05 +0000 | [diff] [blame] | 4402 | LLVM_FALLTHROUGH; |
Kaelyn Uhrain | 864d0b0 | 2012-05-18 23:42:49 +0000 | [diff] [blame] | 4403 | } |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4404 | default: { |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4405 | // We have a template type parameter but the template argument |
| 4406 | // is not a type. |
John McCall | 0d07eb3 | 2009-10-29 18:45:58 +0000 | [diff] [blame] | 4407 | SourceRange SR = AL.getSourceRange(); |
| 4408 | Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR; |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4409 | Diag(Param->getLocation(), diag::note_template_param_here); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4410 | |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4411 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4412 | } |
Jeffrey Yasskin | 823015d | 2010-04-08 00:03:06 +0000 | [diff] [blame] | 4413 | } |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4414 | |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4415 | if (CheckTemplateArgument(Param, TSI)) |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4416 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4417 | |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4418 | // Add the converted template type argument. |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4419 | ArgType = Context.getCanonicalType(ArgType); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 4420 | |
Douglas Gregor | e46db90 | 2011-06-17 22:11:49 +0000 | [diff] [blame] | 4421 | // Objective-C ARC: |
| 4422 | // If an explicitly-specified template argument type is a lifetime type |
| 4423 | // with no lifetime qualifier, the __strong lifetime qualifier is inferred. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4424 | if (getLangOpts().ObjCAutoRefCount && |
Douglas Gregor | e46db90 | 2011-06-17 22:11:49 +0000 | [diff] [blame] | 4425 | ArgType->isObjCLifetimeType() && |
| 4426 | !ArgType.getObjCLifetime()) { |
| 4427 | Qualifiers Qs; |
| 4428 | Qs.setObjCLifetime(Qualifiers::OCL_Strong); |
| 4429 | ArgType = Context.getQualifiedType(ArgType, Qs); |
| 4430 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 4431 | |
Douglas Gregor | e46db90 | 2011-06-17 22:11:49 +0000 | [diff] [blame] | 4432 | Converted.push_back(TemplateArgument(ArgType)); |
Anders Carlsson | c8cbb2d | 2009-06-13 00:33:33 +0000 | [diff] [blame] | 4433 | return false; |
| 4434 | } |
| 4435 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4436 | /// Substitute template arguments into the default template argument for |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4437 | /// the given template type parameter. |
| 4438 | /// |
| 4439 | /// \param SemaRef the semantic analysis object for which we are performing |
| 4440 | /// the substitution. |
| 4441 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4442 | /// \param Template the template that we are synthesizing template arguments |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4443 | /// for. |
| 4444 | /// |
| 4445 | /// \param TemplateLoc the location of the template name that started the |
| 4446 | /// template-id we are checking. |
| 4447 | /// |
| 4448 | /// \param RAngleLoc the location of the right angle bracket ('>') that |
| 4449 | /// terminates the template-id. |
| 4450 | /// |
| 4451 | /// \param Param the template template parameter whose default we are |
| 4452 | /// substituting into. |
| 4453 | /// |
| 4454 | /// \param Converted the list of template arguments provided for template |
| 4455 | /// parameters that precede \p Param in the template parameter list. |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4456 | /// \returns the substituted template argument, or NULL if an error occurred. |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 4457 | static TypeSourceInfo * |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4458 | SubstDefaultTemplateArgument(Sema &SemaRef, |
| 4459 | TemplateDecl *Template, |
| 4460 | SourceLocation TemplateLoc, |
| 4461 | SourceLocation RAngleLoc, |
| 4462 | TemplateTypeParmDecl *Param, |
Vassil Vassilev | 2999d0e | 2017-01-10 09:09:09 +0000 | [diff] [blame] | 4463 | SmallVectorImpl<TemplateArgument> &Converted) { |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 4464 | TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo(); |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4465 | |
| 4466 | // If the argument type is dependent, instantiate it now based |
| 4467 | // on the previously-computed template arguments. |
Erik Pilkington | ba88e21 | 2018-11-12 21:31:06 +0000 | [diff] [blame] | 4468 | if (ArgType->getType()->isInstantiationDependentType()) { |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4469 | Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc, |
Richard Smith | 54f18e8 | 2016-08-31 02:15:21 +0000 | [diff] [blame] | 4470 | Param, Template, Converted, |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4471 | SourceRange(TemplateLoc, RAngleLoc)); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 4472 | if (Inst.isInvalid()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4473 | return nullptr; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4474 | |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 4475 | TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4476 | |
| 4477 | // Only substitute for the innermost template argument list. |
| 4478 | MultiLevelTemplateArgumentList TemplateArgLists; |
| 4479 | TemplateArgLists.addOuterTemplateArguments(&TemplateArgs); |
| 4480 | for (unsigned i = 0, e = Param->getDepth(); i != e; ++i) |
| 4481 | TemplateArgLists.addOuterTemplateArguments(None); |
| 4482 | |
Argyrios Kyrtzidis | 6fe744c | 2012-04-25 18:39:17 +0000 | [diff] [blame] | 4483 | Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext()); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4484 | ArgType = |
| 4485 | SemaRef.SubstType(ArgType, TemplateArgLists, |
| 4486 | Param->getDefaultArgumentLoc(), Param->getDeclName()); |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4487 | } |
| 4488 | |
| 4489 | return ArgType; |
| 4490 | } |
| 4491 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4492 | /// Substitute template arguments into the default template argument for |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4493 | /// the given non-type template parameter. |
| 4494 | /// |
| 4495 | /// \param SemaRef the semantic analysis object for which we are performing |
| 4496 | /// the substitution. |
| 4497 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4498 | /// \param Template the template that we are synthesizing template arguments |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4499 | /// for. |
| 4500 | /// |
| 4501 | /// \param TemplateLoc the location of the template name that started the |
| 4502 | /// template-id we are checking. |
| 4503 | /// |
| 4504 | /// \param RAngleLoc the location of the right angle bracket ('>') that |
| 4505 | /// terminates the template-id. |
| 4506 | /// |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4507 | /// \param Param the non-type template parameter whose default we are |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4508 | /// substituting into. |
| 4509 | /// |
| 4510 | /// \param Converted the list of template arguments provided for template |
| 4511 | /// parameters that precede \p Param in the template parameter list. |
| 4512 | /// |
| 4513 | /// \returns the substituted template argument, or NULL if an error occurred. |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4514 | static ExprResult |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4515 | SubstDefaultTemplateArgument(Sema &SemaRef, |
| 4516 | TemplateDecl *Template, |
| 4517 | SourceLocation TemplateLoc, |
| 4518 | SourceLocation RAngleLoc, |
| 4519 | NonTypeTemplateParmDecl *Param, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4520 | SmallVectorImpl<TemplateArgument> &Converted) { |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4521 | Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc, |
Richard Smith | 54f18e8 | 2016-08-31 02:15:21 +0000 | [diff] [blame] | 4522 | Param, Template, Converted, |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4523 | SourceRange(TemplateLoc, RAngleLoc)); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 4524 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 4525 | return ExprError(); |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4526 | |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 4527 | TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4528 | |
| 4529 | // Only substitute for the innermost template argument list. |
| 4530 | MultiLevelTemplateArgumentList TemplateArgLists; |
| 4531 | TemplateArgLists.addOuterTemplateArguments(&TemplateArgs); |
| 4532 | for (unsigned i = 0, e = Param->getDepth(); i != e; ++i) |
| 4533 | TemplateArgLists.addOuterTemplateArguments(None); |
| 4534 | |
Faisal Vali | d143a0c | 2017-04-01 21:30:49 +0000 | [diff] [blame] | 4535 | EnterExpressionEvaluationContext ConstantEvaluated( |
| 4536 | SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4537 | return SemaRef.SubstExpr(Param->getDefaultArgument(), TemplateArgLists); |
Douglas Gregor | 36d7c5f | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 4538 | } |
| 4539 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4540 | /// Substitute template arguments into the default template argument for |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4541 | /// the given template template parameter. |
| 4542 | /// |
| 4543 | /// \param SemaRef the semantic analysis object for which we are performing |
| 4544 | /// the substitution. |
| 4545 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4546 | /// \param Template the template that we are synthesizing template arguments |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4547 | /// for. |
| 4548 | /// |
| 4549 | /// \param TemplateLoc the location of the template name that started the |
| 4550 | /// template-id we are checking. |
| 4551 | /// |
| 4552 | /// \param RAngleLoc the location of the right angle bracket ('>') that |
| 4553 | /// terminates the template-id. |
| 4554 | /// |
| 4555 | /// \param Param the template template parameter whose default we are |
| 4556 | /// substituting into. |
| 4557 | /// |
| 4558 | /// \param Converted the list of template arguments provided for template |
| 4559 | /// parameters that precede \p Param in the template parameter list. |
| 4560 | /// |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 4561 | /// \param QualifierLoc Will be set to the nested-name-specifier (with |
Douglas Gregor | df846d1 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 4562 | /// source-location information) that precedes the template name. |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4563 | /// |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4564 | /// \returns the substituted template argument, or NULL if an error occurred. |
| 4565 | static TemplateName |
| 4566 | SubstDefaultTemplateArgument(Sema &SemaRef, |
| 4567 | TemplateDecl *Template, |
| 4568 | SourceLocation TemplateLoc, |
| 4569 | SourceLocation RAngleLoc, |
| 4570 | TemplateTemplateParmDecl *Param, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4571 | SmallVectorImpl<TemplateArgument> &Converted, |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4572 | NestedNameSpecifierLoc &QualifierLoc) { |
Richard Smith | 54f18e8 | 2016-08-31 02:15:21 +0000 | [diff] [blame] | 4573 | Sema::InstantiatingTemplate Inst( |
| 4574 | SemaRef, TemplateLoc, TemplateParameter(Param), Template, Converted, |
| 4575 | SourceRange(TemplateLoc, RAngleLoc)); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 4576 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 4577 | return TemplateName(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4578 | |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 4579 | TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4580 | |
| 4581 | // Only substitute for the innermost template argument list. |
| 4582 | MultiLevelTemplateArgumentList TemplateArgLists; |
| 4583 | TemplateArgLists.addOuterTemplateArguments(&TemplateArgs); |
| 4584 | for (unsigned i = 0, e = Param->getDepth(); i != e; ++i) |
| 4585 | TemplateArgLists.addOuterTemplateArguments(None); |
| 4586 | |
Argyrios Kyrtzidis | 6fe744c | 2012-04-25 18:39:17 +0000 | [diff] [blame] | 4587 | Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext()); |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4588 | // Substitute into the nested-name-specifier first, |
Douglas Gregor | df846d1 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 4589 | QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc(); |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4590 | if (QualifierLoc) { |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4591 | QualifierLoc = |
| 4592 | SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgLists); |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4593 | if (!QualifierLoc) |
| 4594 | return TemplateName(); |
| 4595 | } |
David Majnemer | 8918920 | 2013-08-28 23:48:32 +0000 | [diff] [blame] | 4596 | |
| 4597 | return SemaRef.SubstTemplateName( |
| 4598 | QualifierLoc, |
| 4599 | Param->getDefaultArgument().getArgument().getAsTemplate(), |
| 4600 | Param->getDefaultArgument().getTemplateNameLoc(), |
| 4601 | TemplateArgLists); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4602 | } |
| 4603 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4604 | /// If the given template parameter has a default template |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4605 | /// argument, substitute into that default template argument and |
| 4606 | /// return the corresponding template argument. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4607 | TemplateArgumentLoc |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4608 | Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template, |
| 4609 | SourceLocation TemplateLoc, |
| 4610 | SourceLocation RAngleLoc, |
| 4611 | Decl *Param, |
Richard Smith | c87b938 | 2013-07-04 01:01:24 +0000 | [diff] [blame] | 4612 | SmallVectorImpl<TemplateArgument> |
| 4613 | &Converted, |
| 4614 | bool &HasDefaultArg) { |
| 4615 | HasDefaultArg = false; |
| 4616 | |
| 4617 | if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) { |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 4618 | if (!hasVisibleDefaultArgument(TypeParm)) |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4619 | return TemplateArgumentLoc(); |
| 4620 | |
Richard Smith | c87b938 | 2013-07-04 01:01:24 +0000 | [diff] [blame] | 4621 | HasDefaultArg = true; |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 4622 | TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template, |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4623 | TemplateLoc, |
| 4624 | RAngleLoc, |
| 4625 | TypeParm, |
| 4626 | Converted); |
| 4627 | if (DI) |
| 4628 | return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI); |
| 4629 | |
| 4630 | return TemplateArgumentLoc(); |
| 4631 | } |
| 4632 | |
| 4633 | if (NonTypeTemplateParmDecl *NonTypeParm |
| 4634 | = dyn_cast<NonTypeTemplateParmDecl>(Param)) { |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 4635 | if (!hasVisibleDefaultArgument(NonTypeParm)) |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4636 | return TemplateArgumentLoc(); |
| 4637 | |
Richard Smith | c87b938 | 2013-07-04 01:01:24 +0000 | [diff] [blame] | 4638 | HasDefaultArg = true; |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4639 | ExprResult Arg = SubstDefaultTemplateArgument(*this, Template, |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4640 | TemplateLoc, |
| 4641 | RAngleLoc, |
| 4642 | NonTypeParm, |
| 4643 | Converted); |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4644 | if (Arg.isInvalid()) |
| 4645 | return TemplateArgumentLoc(); |
| 4646 | |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 4647 | Expr *ArgE = Arg.getAs<Expr>(); |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4648 | return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE); |
| 4649 | } |
| 4650 | |
| 4651 | TemplateTemplateParmDecl *TempTempParm |
| 4652 | = cast<TemplateTemplateParmDecl>(Param); |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 4653 | if (!hasVisibleDefaultArgument(TempTempParm)) |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4654 | return TemplateArgumentLoc(); |
| 4655 | |
Richard Smith | c87b938 | 2013-07-04 01:01:24 +0000 | [diff] [blame] | 4656 | HasDefaultArg = true; |
Douglas Gregor | df846d1 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 4657 | NestedNameSpecifierLoc QualifierLoc; |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4658 | TemplateName TName = SubstDefaultTemplateArgument(*this, Template, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4659 | TemplateLoc, |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4660 | RAngleLoc, |
| 4661 | TempTempParm, |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4662 | Converted, |
| 4663 | QualifierLoc); |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4664 | if (TName.isNull()) |
| 4665 | return TemplateArgumentLoc(); |
| 4666 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4667 | return TemplateArgumentLoc(TemplateArgument(TName), |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4668 | TempTempParm->getDefaultArgument().getTemplateQualifierLoc(), |
Douglas Gregor | 5c80a27b | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 4669 | TempTempParm->getDefaultArgument().getTemplateNameLoc()); |
| 4670 | } |
| 4671 | |
Richard Smith | 11255ec | 2017-01-18 19:19:22 +0000 | [diff] [blame] | 4672 | /// Convert a template-argument that we parsed as a type into a template, if |
| 4673 | /// possible. C++ permits injected-class-names to perform dual service as |
| 4674 | /// template template arguments and as template type arguments. |
| 4675 | static TemplateArgumentLoc convertTypeTemplateArgumentToTemplate(TypeLoc TLoc) { |
| 4676 | // Extract and step over any surrounding nested-name-specifier. |
| 4677 | NestedNameSpecifierLoc QualLoc; |
| 4678 | if (auto ETLoc = TLoc.getAs<ElaboratedTypeLoc>()) { |
| 4679 | if (ETLoc.getTypePtr()->getKeyword() != ETK_None) |
| 4680 | return TemplateArgumentLoc(); |
| 4681 | |
| 4682 | QualLoc = ETLoc.getQualifierLoc(); |
| 4683 | TLoc = ETLoc.getNamedTypeLoc(); |
| 4684 | } |
| 4685 | |
| 4686 | // If this type was written as an injected-class-name, it can be used as a |
| 4687 | // template template argument. |
| 4688 | if (auto InjLoc = TLoc.getAs<InjectedClassNameTypeLoc>()) |
| 4689 | return TemplateArgumentLoc(InjLoc.getTypePtr()->getTemplateName(), |
| 4690 | QualLoc, InjLoc.getNameLoc()); |
| 4691 | |
| 4692 | // If this type was written as an injected-class-name, it may have been |
| 4693 | // converted to a RecordType during instantiation. If the RecordType is |
| 4694 | // *not* wrapped in a TemplateSpecializationType and denotes a class |
| 4695 | // template specialization, it must have come from an injected-class-name. |
| 4696 | if (auto RecLoc = TLoc.getAs<RecordTypeLoc>()) |
| 4697 | if (auto *CTSD = |
| 4698 | dyn_cast<ClassTemplateSpecializationDecl>(RecLoc.getDecl())) |
| 4699 | return TemplateArgumentLoc(TemplateName(CTSD->getSpecializedTemplate()), |
| 4700 | QualLoc, RecLoc.getNameLoc()); |
| 4701 | |
| 4702 | return TemplateArgumentLoc(); |
| 4703 | } |
| 4704 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4705 | /// Check that the given template argument corresponds to the given |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4706 | /// template parameter. |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 4707 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4708 | /// \param Param The template parameter against which the argument will be |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 4709 | /// checked. |
| 4710 | /// |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 4711 | /// \param Arg The template argument, which may be updated due to conversions. |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 4712 | /// |
| 4713 | /// \param Template The template in which the template argument resides. |
| 4714 | /// |
| 4715 | /// \param TemplateLoc The location of the template name for the template |
| 4716 | /// whose argument list we're matching. |
| 4717 | /// |
| 4718 | /// \param RAngleLoc The location of the right angle bracket ('>') that closes |
| 4719 | /// the template argument list. |
| 4720 | /// |
| 4721 | /// \param ArgumentPackIndex The index into the argument pack where this |
| 4722 | /// argument will be placed. Only valid if the parameter is a parameter pack. |
| 4723 | /// |
| 4724 | /// \param Converted The checked, converted argument will be added to the |
| 4725 | /// end of this small vector. |
| 4726 | /// |
| 4727 | /// \param CTAK Describes how we arrived at this particular template argument: |
| 4728 | /// explicitly written, deduced, etc. |
| 4729 | /// |
| 4730 | /// \returns true on error, false otherwise. |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4731 | bool Sema::CheckTemplateArgument(NamedDecl *Param, |
Reid Kleckner | 377c159 | 2014-06-10 23:29:48 +0000 | [diff] [blame] | 4732 | TemplateArgumentLoc &Arg, |
Douglas Gregor | ca4686d | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 4733 | NamedDecl *Template, |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4734 | SourceLocation TemplateLoc, |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4735 | SourceLocation RAngleLoc, |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 4736 | unsigned ArgumentPackIndex, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4737 | SmallVectorImpl<TemplateArgument> &Converted, |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 4738 | CheckTemplateArgumentKind CTAK) { |
Douglas Gregor | eebed72 | 2009-11-11 19:41:09 +0000 | [diff] [blame] | 4739 | // Check template type parameters. |
| 4740 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4741 | return CheckTemplateTypeArgument(TTP, Arg, Converted); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4742 | |
Douglas Gregor | eebed72 | 2009-11-11 19:41:09 +0000 | [diff] [blame] | 4743 | // Check non-type template parameters. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4744 | if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) { |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4745 | // Do substitution on the type of the non-type template parameter |
Peter Collingbourne | 0168763 | 2010-12-10 17:08:53 +0000 | [diff] [blame] | 4746 | // with the template arguments we've seen thus far. But if the |
| 4747 | // template has a dependent context then we cannot substitute yet. |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4748 | QualType NTTPType = NTTP->getType(); |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 4749 | if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack()) |
| 4750 | NTTPType = NTTP->getExpansionType(ArgumentPackIndex); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4751 | |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 4752 | // FIXME: Do we need to substitute into parameters here if they're |
| 4753 | // instantiation-dependent but not dependent? |
Peter Collingbourne | 0168763 | 2010-12-10 17:08:53 +0000 | [diff] [blame] | 4754 | if (NTTPType->isDependentType() && |
| 4755 | !isa<TemplateTemplateParmDecl>(Template) && |
| 4756 | !Template->getDeclContext()->isDependentContext()) { |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4757 | // Do substitution on the type of the non-type template parameter. |
| 4758 | InstantiatingTemplate Inst(*this, TemplateLoc, Template, |
Richard Smith | 8093465 | 2012-07-16 01:09:10 +0000 | [diff] [blame] | 4759 | NTTP, Converted, |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4760 | SourceRange(TemplateLoc, RAngleLoc)); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 4761 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 4762 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4763 | |
| 4764 | TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 4765 | Converted); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4766 | NTTPType = SubstType(NTTPType, |
| 4767 | MultiLevelTemplateArgumentList(TemplateArgs), |
| 4768 | NTTP->getLocation(), |
| 4769 | NTTP->getDeclName()); |
| 4770 | // If that worked, check the non-type template parameter type |
| 4771 | // for validity. |
| 4772 | if (!NTTPType.isNull()) |
| 4773 | NTTPType = CheckNonTypeTemplateParameterType(NTTPType, |
| 4774 | NTTP->getLocation()); |
| 4775 | if (NTTPType.isNull()) |
| 4776 | return true; |
| 4777 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4778 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4779 | switch (Arg.getArgument().getKind()) { |
| 4780 | case TemplateArgument::Null: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4781 | llvm_unreachable("Should never see a NULL template argument here"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4782 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4783 | case TemplateArgument::Expression: { |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4784 | TemplateArgument Result; |
Erich Keane | c90bb6d | 2018-05-07 17:05:20 +0000 | [diff] [blame] | 4785 | unsigned CurSFINAEErrors = NumSFINAEErrors; |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4786 | ExprResult Res = |
| 4787 | CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(), |
| 4788 | Result, CTAK); |
| 4789 | if (Res.isInvalid()) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4790 | return true; |
Erich Keane | c90bb6d | 2018-05-07 17:05:20 +0000 | [diff] [blame] | 4791 | // If the current template argument causes an error, give up now. |
| 4792 | if (CurSFINAEErrors < NumSFINAEErrors) |
| 4793 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4794 | |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 4795 | // If the resulting expression is new, then use it in place of the |
| 4796 | // old expression in the template argument. |
| 4797 | if (Res.get() != Arg.getArgument().getAsExpr()) { |
| 4798 | TemplateArgument TA(Res.get()); |
| 4799 | Arg = TemplateArgumentLoc(TA, Res.get()); |
| 4800 | } |
| 4801 | |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 4802 | Converted.push_back(Result); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4803 | break; |
| 4804 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4805 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4806 | case TemplateArgument::Declaration: |
| 4807 | case TemplateArgument::Integral: |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 4808 | case TemplateArgument::NullPtr: |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4809 | // We've already checked this template argument, so just copy |
| 4810 | // it to the list of converted arguments. |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 4811 | Converted.push_back(Arg.getArgument()); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4812 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4813 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4814 | case TemplateArgument::Template: |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4815 | case TemplateArgument::TemplateExpansion: |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4816 | // We were given a template template argument. It may not be ill-formed; |
| 4817 | // see below. |
| 4818 | if (DependentTemplateName *DTN |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4819 | = Arg.getArgument().getAsTemplateOrTemplatePattern() |
| 4820 | .getAsDependentTemplateName()) { |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4821 | // We have a template argument such as \c T::template X, which we |
| 4822 | // parsed as a template template argument. However, since we now |
| 4823 | // know that we need a non-type template argument, convert this |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 4824 | // template name into an expression. |
| 4825 | |
| 4826 | DeclarationNameInfo NameInfo(DTN->getIdentifier(), |
| 4827 | Arg.getTemplateNameLoc()); |
| 4828 | |
Douglas Gregor | 3a43fd6 | 2011-02-25 20:49:16 +0000 | [diff] [blame] | 4829 | CXXScopeSpec SS; |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4830 | SS.Adopt(Arg.getTemplateQualifierLoc()); |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 4831 | // FIXME: the template-template arg was a DependentTemplateName, |
| 4832 | // so it was provided with a template keyword. However, its source |
| 4833 | // location is not stored in the template argument structure. |
| 4834 | SourceLocation TemplateKWLoc; |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 4835 | ExprResult E = DependentScopeDeclRefExpr::Create( |
| 4836 | Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo, |
| 4837 | nullptr); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4838 | |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4839 | // If we parsed the template argument as a pack expansion, create a |
| 4840 | // pack expansion expression. |
| 4841 | if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){ |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 4842 | E = ActOnPackExpansion(E.get(), Arg.getTemplateEllipsisLoc()); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4843 | if (E.isInvalid()) |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4844 | return true; |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4845 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4846 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4847 | TemplateArgument Result; |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 4848 | E = CheckTemplateArgument(NTTP, NTTPType, E.get(), Result); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4849 | if (E.isInvalid()) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4850 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4851 | |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 4852 | Converted.push_back(Result); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4853 | break; |
| 4854 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4855 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4856 | // We have a template argument that actually does refer to a class |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 4857 | // template, alias template, or template template parameter, and |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4858 | // therefore cannot be a non-type template argument. |
| 4859 | Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr) |
| 4860 | << Arg.getSourceRange(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4861 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4862 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 4863 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4864 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4865 | case TemplateArgument::Type: { |
| 4866 | // We have a non-type template parameter but the template |
| 4867 | // argument is a type. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4868 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4869 | // C++ [temp.arg]p2: |
| 4870 | // In a template-argument, an ambiguity between a type-id and |
| 4871 | // an expression is resolved to a type-id, regardless of the |
| 4872 | // form of the corresponding template-parameter. |
| 4873 | // |
| 4874 | // We warn specifically about this case, since it can be rather |
| 4875 | // confusing for users. |
| 4876 | QualType T = Arg.getArgument().getAsType(); |
| 4877 | SourceRange SR = Arg.getSourceRange(); |
| 4878 | if (T->isFunctionType()) |
| 4879 | Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T; |
| 4880 | else |
| 4881 | Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR; |
| 4882 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 4883 | return true; |
| 4884 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4885 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4886 | case TemplateArgument::Pack: |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 4887 | llvm_unreachable("Caller must expand template argument packs"); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4888 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4889 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4890 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4891 | } |
| 4892 | |
| 4893 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4894 | // Check template template parameters. |
| 4895 | TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4896 | |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 4897 | TemplateParameterList *Params = TempParm->getTemplateParameters(); |
| 4898 | if (TempParm->isExpandedParameterPack()) |
| 4899 | Params = TempParm->getExpansionTemplateParameters(ArgumentPackIndex); |
| 4900 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4901 | // Substitute into the template parameter list of the template |
| 4902 | // template parameter, since previously-supplied template arguments |
| 4903 | // may appear within the template template parameter. |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 4904 | // |
| 4905 | // FIXME: Skip this if the parameters aren't instantiation-dependent. |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4906 | { |
| 4907 | // Set up a template instantiation context. |
| 4908 | LocalInstantiationScope Scope(*this); |
| 4909 | InstantiatingTemplate Inst(*this, TemplateLoc, Template, |
Richard Smith | 8093465 | 2012-07-16 01:09:10 +0000 | [diff] [blame] | 4910 | TempParm, Converted, |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4911 | SourceRange(TemplateLoc, RAngleLoc)); |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 4912 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 4913 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4914 | |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 4915 | TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Converted); |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 4916 | Params = SubstTemplateParams(Params, CurContext, |
| 4917 | MultiLevelTemplateArgumentList(TemplateArgs)); |
| 4918 | if (!Params) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4919 | return true; |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4920 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4921 | |
Richard Smith | 11255ec | 2017-01-18 19:19:22 +0000 | [diff] [blame] | 4922 | // C++1z [temp.local]p1: (DR1004) |
| 4923 | // When [the injected-class-name] is used [...] as a template-argument for |
| 4924 | // a template template-parameter [...] it refers to the class template |
| 4925 | // itself. |
| 4926 | if (Arg.getArgument().getKind() == TemplateArgument::Type) { |
| 4927 | TemplateArgumentLoc ConvertedArg = convertTypeTemplateArgumentToTemplate( |
| 4928 | Arg.getTypeSourceInfo()->getTypeLoc()); |
| 4929 | if (!ConvertedArg.getArgument().isNull()) |
| 4930 | Arg = ConvertedArg; |
| 4931 | } |
| 4932 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4933 | switch (Arg.getArgument().getKind()) { |
| 4934 | case TemplateArgument::Null: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4935 | llvm_unreachable("Should never see a NULL template argument here"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4936 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4937 | case TemplateArgument::Template: |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4938 | case TemplateArgument::TemplateExpansion: |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 4939 | if (CheckTemplateTemplateArgument(Params, Arg)) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4940 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4941 | |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 4942 | Converted.push_back(Arg.getArgument()); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4943 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4944 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4945 | case TemplateArgument::Expression: |
| 4946 | case TemplateArgument::Type: |
| 4947 | // We have a template template parameter but the template |
| 4948 | // argument does not refer to a template. |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 4949 | Diag(Arg.getLocation(), diag::err_template_arg_must_be_template) |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4950 | << getLangOpts().CPlusPlus11; |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4951 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4952 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4953 | case TemplateArgument::Declaration: |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4954 | llvm_unreachable("Declaration argument with template template parameter"); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4955 | case TemplateArgument::Integral: |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4956 | llvm_unreachable("Integral argument with template template parameter"); |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 4957 | case TemplateArgument::NullPtr: |
| 4958 | llvm_unreachable("Null pointer argument with template template parameter"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4959 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4960 | case TemplateArgument::Pack: |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 4961 | llvm_unreachable("Caller must expand template argument packs"); |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4962 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4963 | |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 4964 | return false; |
| 4965 | } |
| 4966 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4967 | /// Check whether the template parameter is a pack expansion, and if so, |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 4968 | /// determine the number of parameters produced by that expansion. For instance: |
| 4969 | /// |
| 4970 | /// \code |
| 4971 | /// template<typename ...Ts> struct A { |
| 4972 | /// template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B; |
| 4973 | /// }; |
| 4974 | /// \endcode |
| 4975 | /// |
| 4976 | /// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us |
| 4977 | /// is not a pack expansion, so returns an empty Optional. |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 4978 | static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) { |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 4979 | if (NonTypeTemplateParmDecl *NTTP |
| 4980 | = dyn_cast<NonTypeTemplateParmDecl>(Param)) { |
| 4981 | if (NTTP->isExpandedParameterPack()) |
| 4982 | return NTTP->getNumExpansionTypes(); |
| 4983 | } |
| 4984 | |
| 4985 | if (TemplateTemplateParmDecl *TTP |
| 4986 | = dyn_cast<TemplateTemplateParmDecl>(Param)) { |
| 4987 | if (TTP->isExpandedParameterPack()) |
| 4988 | return TTP->getNumExpansionTemplateParameters(); |
| 4989 | } |
| 4990 | |
David Blaikie | 7a30dc5 | 2013-02-21 01:47:18 +0000 | [diff] [blame] | 4991 | return None; |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 4992 | } |
| 4993 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4994 | /// Diagnose a missing template argument. |
| 4995 | template<typename TemplateParmDecl> |
| 4996 | static bool diagnoseMissingArgument(Sema &S, SourceLocation Loc, |
| 4997 | TemplateDecl *TD, |
| 4998 | const TemplateParmDecl *D, |
| 4999 | TemplateArgumentListInfo &Args) { |
| 5000 | // Dig out the most recent declaration of the template parameter; there may be |
| 5001 | // declarations of the template that are more recent than TD. |
| 5002 | D = cast<TemplateParmDecl>(cast<TemplateDecl>(TD->getMostRecentDecl()) |
| 5003 | ->getTemplateParameters() |
| 5004 | ->getParam(D->getIndex())); |
| 5005 | |
| 5006 | // If there's a default argument that's not visible, diagnose that we're |
| 5007 | // missing a module import. |
| 5008 | llvm::SmallVector<Module*, 8> Modules; |
| 5009 | if (D->hasDefaultArgument() && !S.hasVisibleDefaultArgument(D, &Modules)) { |
| 5010 | S.diagnoseMissingImport(Loc, cast<NamedDecl>(TD), |
| 5011 | D->getDefaultArgumentLoc(), Modules, |
| 5012 | Sema::MissingImportKind::DefaultArgument, |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 5013 | /*Recover*/true); |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5014 | return true; |
| 5015 | } |
| 5016 | |
| 5017 | // FIXME: If there's a more recent default argument that *is* visible, |
| 5018 | // diagnose that it was declared too late. |
| 5019 | |
Richard Smith | 4a8f351 | 2018-07-19 19:00:37 +0000 | [diff] [blame] | 5020 | TemplateParameterList *Params = TD->getTemplateParameters(); |
| 5021 | |
| 5022 | S.Diag(Loc, diag::err_template_arg_list_different_arity) |
| 5023 | << /*not enough args*/0 |
| 5024 | << (int)S.getTemplateNameKindForDiagnostics(TemplateName(TD)) |
| 5025 | << TD; |
| 5026 | S.Diag(TD->getLocation(), diag::note_template_decl_here) |
| 5027 | << Params->getSourceRange(); |
| 5028 | return true; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5029 | } |
| 5030 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5031 | /// Check that the given template argument list is well-formed |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5032 | /// for specializing the given template. |
Richard Smith | 11255ec | 2017-01-18 19:19:22 +0000 | [diff] [blame] | 5033 | bool Sema::CheckTemplateArgumentList( |
| 5034 | TemplateDecl *Template, SourceLocation TemplateLoc, |
| 5035 | TemplateArgumentListInfo &TemplateArgs, bool PartialTemplateArgs, |
| 5036 | SmallVectorImpl<TemplateArgument> &Converted, |
| 5037 | bool UpdateArgsWithConversions) { |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5038 | // Make a copy of the template arguments for processing. Only make the |
| 5039 | // changes at the end when successful in matching the arguments to the |
| 5040 | // template. |
| 5041 | TemplateArgumentListInfo NewArgs = TemplateArgs; |
| 5042 | |
Erich Keane | af0795b | 2017-10-24 01:39:56 +0000 | [diff] [blame] | 5043 | // Make sure we get the template parameter list from the most |
| 5044 | // recentdeclaration, since that is the only one that has is guaranteed to |
| 5045 | // have all the default template argument information. |
| 5046 | TemplateParameterList *Params = |
| 5047 | cast<TemplateDecl>(Template->getMostRecentDecl()) |
| 5048 | ->getTemplateParameters(); |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5049 | |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5050 | SourceLocation RAngleLoc = NewArgs.getRAngleLoc(); |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 5051 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5052 | // C++ [temp.arg]p1: |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5053 | // [...] The type and form of each template-argument specified in |
| 5054 | // a template-id shall match the type and form specified for the |
| 5055 | // corresponding parameter declared by the template in its |
| 5056 | // template-parameter-list. |
Douglas Gregor | 739b107a | 2011-03-03 02:41:12 +0000 | [diff] [blame] | 5057 | bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5058 | SmallVector<TemplateArgument, 2> ArgumentPack; |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5059 | unsigned ArgIdx = 0, NumArgs = NewArgs.size(); |
Douglas Gregor | f143cd5 | 2011-01-24 16:14:37 +0000 | [diff] [blame] | 5060 | LocalInstantiationScope InstScope(*this, true); |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5061 | for (TemplateParameterList::iterator Param = Params->begin(), |
| 5062 | ParamEnd = Params->end(); |
| 5063 | Param != ParamEnd; /* increment in loop */) { |
| 5064 | // If we have an expanded parameter pack, make sure we don't have too |
| 5065 | // many arguments. |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 5066 | if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) { |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5067 | if (*Expansions == ArgumentPack.size()) { |
| 5068 | // We're done with this parameter pack. Pack up its arguments and add |
| 5069 | // them to the list. |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 5070 | Converted.push_back( |
Benjamin Kramer | cce6347 | 2015-08-05 09:40:22 +0000 | [diff] [blame] | 5071 | TemplateArgument::CreatePackCopy(Context, ArgumentPack)); |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 5072 | ArgumentPack.clear(); |
| 5073 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5074 | // This argument is assigned to the next parameter. |
| 5075 | ++Param; |
| 5076 | continue; |
| 5077 | } else if (ArgIdx == NumArgs && !PartialTemplateArgs) { |
| 5078 | // Not enough arguments for this parameter pack. |
| 5079 | Diag(TemplateLoc, diag::err_template_arg_list_different_arity) |
Richard Smith | 4a8f351 | 2018-07-19 19:00:37 +0000 | [diff] [blame] | 5080 | << /*not enough args*/0 |
Richard Smith | 0c062b4 | 2017-01-14 02:19:59 +0000 | [diff] [blame] | 5081 | << (int)getTemplateNameKindForDiagnostics(TemplateName(Template)) |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5082 | << Template; |
| 5083 | Diag(Template->getLocation(), diag::note_template_decl_here) |
| 5084 | << Params->getSourceRange(); |
| 5085 | return true; |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 5086 | } |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5087 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5088 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5089 | if (ArgIdx < NumArgs) { |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5090 | // Check the template argument we were given. |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5091 | if (CheckTemplateArgument(*Param, NewArgs[ArgIdx], Template, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5092 | TemplateLoc, RAngleLoc, |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 5093 | ArgumentPack.size(), Converted)) |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5094 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5095 | |
Richard Smith | 96d71c3 | 2014-11-12 23:38:38 +0000 | [diff] [blame] | 5096 | bool PackExpansionIntoNonPack = |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5097 | NewArgs[ArgIdx].getArgument().isPackExpansion() && |
Richard Smith | 96d71c3 | 2014-11-12 23:38:38 +0000 | [diff] [blame] | 5098 | (!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param)); |
| 5099 | if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) { |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 5100 | // Core issue 1430: we have a pack expansion as an argument to an |
Richard Smith | 96d71c3 | 2014-11-12 23:38:38 +0000 | [diff] [blame] | 5101 | // alias template, and it's not part of a parameter pack. This |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 5102 | // can't be canonicalized, so reject it now. |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5103 | Diag(NewArgs[ArgIdx].getLocation(), |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 5104 | diag::err_alias_template_expansion_into_fixed_list) |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5105 | << NewArgs[ArgIdx].getSourceRange(); |
Richard Smith | 83b11aa | 2014-01-09 02:22:22 +0000 | [diff] [blame] | 5106 | Diag((*Param)->getLocation(), diag::note_template_param_here); |
| 5107 | return true; |
| 5108 | } |
| 5109 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5110 | // We're now done with this argument. |
| 5111 | ++ArgIdx; |
| 5112 | |
Douglas Gregor | 9abeaf5 | 2010-12-20 16:57:52 +0000 | [diff] [blame] | 5113 | if ((*Param)->isTemplateParameterPack()) { |
| 5114 | // The template parameter was a template parameter pack, so take the |
| 5115 | // deduced argument and place it on the argument pack. Note that we |
| 5116 | // stay on the same template parameter so that we can deduce more |
| 5117 | // arguments. |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 5118 | ArgumentPack.push_back(Converted.pop_back_val()); |
Douglas Gregor | 9abeaf5 | 2010-12-20 16:57:52 +0000 | [diff] [blame] | 5119 | } else { |
| 5120 | // Move to the next template parameter. |
| 5121 | ++Param; |
| 5122 | } |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5123 | |
Richard Smith | 96d71c3 | 2014-11-12 23:38:38 +0000 | [diff] [blame] | 5124 | // If we just saw a pack expansion into a non-pack, then directly convert |
| 5125 | // the remaining arguments, because we don't know what parameters they'll |
| 5126 | // match up with. |
| 5127 | if (PackExpansionIntoNonPack) { |
| 5128 | if (!ArgumentPack.empty()) { |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5129 | // If we were part way through filling in an expanded parameter pack, |
| 5130 | // fall back to just producing individual arguments. |
| 5131 | Converted.insert(Converted.end(), |
| 5132 | ArgumentPack.begin(), ArgumentPack.end()); |
| 5133 | ArgumentPack.clear(); |
| 5134 | } |
| 5135 | |
| 5136 | while (ArgIdx < NumArgs) { |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5137 | Converted.push_back(NewArgs[ArgIdx].getArgument()); |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5138 | ++ArgIdx; |
| 5139 | } |
| 5140 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5141 | return false; |
Douglas Gregor | 8e07261 | 2012-02-03 07:34:46 +0000 | [diff] [blame] | 5142 | } |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5143 | |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5144 | continue; |
Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 5145 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5146 | |
Douglas Gregor | 2f157c9 | 2011-06-03 02:59:40 +0000 | [diff] [blame] | 5147 | // If we're checking a partial template argument list, we're done. |
| 5148 | if (PartialTemplateArgs) { |
| 5149 | if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty()) |
Benjamin Kramer | cce6347 | 2015-08-05 09:40:22 +0000 | [diff] [blame] | 5150 | Converted.push_back( |
| 5151 | TemplateArgument::CreatePackCopy(Context, ArgumentPack)); |
| 5152 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5153 | return false; |
Douglas Gregor | 2f157c9 | 2011-06-03 02:59:40 +0000 | [diff] [blame] | 5154 | } |
| 5155 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5156 | // If we have a template parameter pack with no more corresponding |
Douglas Gregor | 9abeaf5 | 2010-12-20 16:57:52 +0000 | [diff] [blame] | 5157 | // arguments, just break out now and we'll fill in the argument pack below. |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5158 | if ((*Param)->isTemplateParameterPack()) { |
| 5159 | assert(!getExpandedPackSize(*Param) && |
| 5160 | "Should have dealt with this already"); |
| 5161 | |
| 5162 | // A non-expanded parameter pack before the end of the parameter list |
| 5163 | // only occurs for an ill-formed template parameter list, unless we've |
| 5164 | // got a partial argument list for a function template, so just bail out. |
| 5165 | if (Param + 1 != ParamEnd) |
| 5166 | return true; |
| 5167 | |
Benjamin Kramer | cce6347 | 2015-08-05 09:40:22 +0000 | [diff] [blame] | 5168 | Converted.push_back( |
| 5169 | TemplateArgument::CreatePackCopy(Context, ArgumentPack)); |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 5170 | ArgumentPack.clear(); |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5171 | |
| 5172 | ++Param; |
| 5173 | continue; |
| 5174 | } |
| 5175 | |
Douglas Gregor | 8e07261 | 2012-02-03 07:34:46 +0000 | [diff] [blame] | 5176 | // Check whether we have a default argument. |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5177 | TemplateArgumentLoc Arg; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5178 | |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5179 | // Retrieve the default template argument from the template |
| 5180 | // parameter. For each kind of template parameter, we substitute the |
| 5181 | // template arguments provided thus far and any "outer" template arguments |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5182 | // (when the template parameter was part of a nested template) into |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5183 | // the default argument. |
| 5184 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) { |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 5185 | if (!hasVisibleDefaultArgument(TTP)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5186 | return diagnoseMissingArgument(*this, TemplateLoc, Template, TTP, |
| 5187 | NewArgs); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5188 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5189 | TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this, |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5190 | Template, |
| 5191 | TemplateLoc, |
| 5192 | RAngleLoc, |
| 5193 | TTP, |
| 5194 | Converted); |
| 5195 | if (!ArgType) |
| 5196 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5197 | |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5198 | Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()), |
| 5199 | ArgType); |
| 5200 | } else if (NonTypeTemplateParmDecl *NTTP |
| 5201 | = dyn_cast<NonTypeTemplateParmDecl>(*Param)) { |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 5202 | if (!hasVisibleDefaultArgument(NTTP)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5203 | return diagnoseMissingArgument(*this, TemplateLoc, Template, NTTP, |
| 5204 | NewArgs); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5205 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5206 | ExprResult E = SubstDefaultTemplateArgument(*this, Template, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5207 | TemplateLoc, |
| 5208 | RAngleLoc, |
| 5209 | NTTP, |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5210 | Converted); |
| 5211 | if (E.isInvalid()) |
| 5212 | return true; |
| 5213 | |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 5214 | Expr *Ex = E.getAs<Expr>(); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5215 | Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex); |
| 5216 | } else { |
| 5217 | TemplateTemplateParmDecl *TempParm |
| 5218 | = cast<TemplateTemplateParmDecl>(*Param); |
| 5219 | |
Richard Smith | 95d8395 | 2015-06-10 20:36:34 +0000 | [diff] [blame] | 5220 | if (!hasVisibleDefaultArgument(TempParm)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5221 | return diagnoseMissingArgument(*this, TemplateLoc, Template, TempParm, |
| 5222 | NewArgs); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5223 | |
Douglas Gregor | df846d1 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 5224 | NestedNameSpecifierLoc QualifierLoc; |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5225 | TemplateName Name = SubstDefaultTemplateArgument(*this, Template, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5226 | TemplateLoc, |
| 5227 | RAngleLoc, |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5228 | TempParm, |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 5229 | Converted, |
| 5230 | QualifierLoc); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5231 | if (Name.isNull()) |
| 5232 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5233 | |
Douglas Gregor | 9d80212 | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 5234 | Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc, |
| 5235 | TempParm->getDefaultArgument().getTemplateNameLoc()); |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5236 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5237 | |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5238 | // Introduce an instantiation record that describes where we are using |
Richard Smith | 54f18e8 | 2016-08-31 02:15:21 +0000 | [diff] [blame] | 5239 | // the default template argument. We're not actually instantiating a |
| 5240 | // template here, we just create this object to put a note into the |
| 5241 | // context stack. |
Alp Toker | d4a72d5 | 2013-10-08 08:09:04 +0000 | [diff] [blame] | 5242 | InstantiatingTemplate Inst(*this, RAngleLoc, Template, *Param, Converted, |
| 5243 | SourceRange(TemplateLoc, RAngleLoc)); |
| 5244 | if (Inst.isInvalid()) |
Richard Smith | 8a874c9 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 5245 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5246 | |
Douglas Gregor | 84d49a2 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 5247 | // Check the default template argument. |
Douglas Gregor | eebed72 | 2009-11-11 19:41:09 +0000 | [diff] [blame] | 5248 | if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc, |
Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 5249 | RAngleLoc, 0, Converted)) |
Douglas Gregor | da0fb53 | 2009-11-11 19:31:23 +0000 | [diff] [blame] | 5250 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5251 | |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5252 | // Core issue 150 (assumed resolution): if this is a template template |
| 5253 | // parameter, keep track of the default template arguments from the |
Douglas Gregor | 739b107a | 2011-03-03 02:41:12 +0000 | [diff] [blame] | 5254 | // template definition. |
| 5255 | if (isTemplateTemplateParameter) |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5256 | NewArgs.addArgument(Arg); |
| 5257 | |
Douglas Gregor | 9abeaf5 | 2010-12-20 16:57:52 +0000 | [diff] [blame] | 5258 | // Move to the next template parameter and argument. |
| 5259 | ++Param; |
| 5260 | ++ArgIdx; |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5261 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5262 | |
Richard Smith | 07f7991 | 2014-06-06 16:00:50 +0000 | [diff] [blame] | 5263 | // If we're performing a partial argument substitution, allow any trailing |
| 5264 | // pack expansions; they might be empty. This can happen even if |
| 5265 | // PartialTemplateArgs is false (the list of arguments is complete but |
| 5266 | // still dependent). |
| 5267 | if (ArgIdx < NumArgs && CurrentInstantiationScope && |
| 5268 | CurrentInstantiationScope->getPartiallySubstitutedPack()) { |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5269 | while (ArgIdx < NumArgs && NewArgs[ArgIdx].getArgument().isPackExpansion()) |
| 5270 | Converted.push_back(NewArgs[ArgIdx++].getArgument()); |
Richard Smith | 07f7991 | 2014-06-06 16:00:50 +0000 | [diff] [blame] | 5271 | } |
| 5272 | |
Douglas Gregor | 8e07261 | 2012-02-03 07:34:46 +0000 | [diff] [blame] | 5273 | // If we have any leftover arguments, then there were too many arguments. |
| 5274 | // Complain and fail. |
Richard Smith | 4a8f351 | 2018-07-19 19:00:37 +0000 | [diff] [blame] | 5275 | if (ArgIdx < NumArgs) { |
| 5276 | Diag(TemplateLoc, diag::err_template_arg_list_different_arity) |
| 5277 | << /*too many args*/1 |
| 5278 | << (int)getTemplateNameKindForDiagnostics(TemplateName(Template)) |
| 5279 | << Template |
| 5280 | << SourceRange(NewArgs[ArgIdx].getLocation(), NewArgs.getRAngleLoc()); |
| 5281 | Diag(Template->getLocation(), diag::note_template_decl_here) |
| 5282 | << Params->getSourceRange(); |
| 5283 | return true; |
| 5284 | } |
Richard Trieu | 15b6653 | 2015-01-24 02:48:32 +0000 | [diff] [blame] | 5285 | |
| 5286 | // No problems found with the new argument list, propagate changes back |
| 5287 | // to caller. |
Richard Smith | 11255ec | 2017-01-18 19:19:22 +0000 | [diff] [blame] | 5288 | if (UpdateArgsWithConversions) |
| 5289 | TemplateArgs = std::move(NewArgs); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5290 | |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 5291 | return false; |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5292 | } |
| 5293 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5294 | namespace { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5295 | class UnnamedLocalNoLinkageFinder |
| 5296 | : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool> |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5297 | { |
| 5298 | Sema &S; |
| 5299 | SourceRange SR; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5300 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5301 | typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5302 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5303 | public: |
| 5304 | UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { } |
| 5305 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5306 | bool Visit(QualType T) { |
Daniel Jasper | 5cad685 | 2017-01-02 22:55:45 +0000 | [diff] [blame] | 5307 | return T.isNull() ? false : inherited::Visit(T.getTypePtr()); |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5308 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5309 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5310 | #define TYPE(Class, Parent) \ |
| 5311 | bool Visit##Class##Type(const Class##Type *); |
| 5312 | #define ABSTRACT_TYPE(Class, Parent) \ |
| 5313 | bool Visit##Class##Type(const Class##Type *) { return false; } |
| 5314 | #define NON_CANONICAL_TYPE(Class, Parent) \ |
| 5315 | bool Visit##Class##Type(const Class##Type *) { return false; } |
| 5316 | #include "clang/AST/TypeNodes.def" |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5317 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5318 | bool VisitTagDecl(const TagDecl *Tag); |
| 5319 | bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS); |
| 5320 | }; |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 5321 | } // end anonymous namespace |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5322 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5323 | bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5324 | return false; |
| 5325 | } |
| 5326 | |
| 5327 | bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) { |
| 5328 | return Visit(T->getElementType()); |
| 5329 | } |
| 5330 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5331 | bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5332 | return Visit(T->getPointeeType()); |
| 5333 | } |
| 5334 | |
| 5335 | bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5336 | const BlockPointerType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5337 | return Visit(T->getPointeeType()); |
| 5338 | } |
| 5339 | |
| 5340 | bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5341 | const LValueReferenceType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5342 | return Visit(T->getPointeeType()); |
| 5343 | } |
| 5344 | |
| 5345 | bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5346 | const RValueReferenceType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5347 | return Visit(T->getPointeeType()); |
| 5348 | } |
| 5349 | |
| 5350 | bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5351 | const MemberPointerType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5352 | return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0)); |
| 5353 | } |
| 5354 | |
| 5355 | bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5356 | const ConstantArrayType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5357 | return Visit(T->getElementType()); |
| 5358 | } |
| 5359 | |
| 5360 | bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5361 | const IncompleteArrayType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5362 | return Visit(T->getElementType()); |
| 5363 | } |
| 5364 | |
| 5365 | bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5366 | const VariableArrayType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5367 | return Visit(T->getElementType()); |
| 5368 | } |
| 5369 | |
| 5370 | bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5371 | const DependentSizedArrayType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5372 | return Visit(T->getElementType()); |
| 5373 | } |
| 5374 | |
| 5375 | bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5376 | const DependentSizedExtVectorType* T) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5377 | return Visit(T->getElementType()); |
| 5378 | } |
| 5379 | |
Andrew Gozillon | 572bbb0 | 2017-10-02 06:25:51 +0000 | [diff] [blame] | 5380 | bool UnnamedLocalNoLinkageFinder::VisitDependentAddressSpaceType( |
| 5381 | const DependentAddressSpaceType *T) { |
| 5382 | return Visit(T->getPointeeType()); |
| 5383 | } |
| 5384 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5385 | bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) { |
| 5386 | return Visit(T->getElementType()); |
| 5387 | } |
| 5388 | |
Erich Keane | f702b02 | 2018-07-13 19:46:04 +0000 | [diff] [blame] | 5389 | bool UnnamedLocalNoLinkageFinder::VisitDependentVectorType( |
| 5390 | const DependentVectorType *T) { |
| 5391 | return Visit(T->getElementType()); |
| 5392 | } |
| 5393 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5394 | bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) { |
| 5395 | return Visit(T->getElementType()); |
| 5396 | } |
| 5397 | |
| 5398 | bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType( |
| 5399 | const FunctionProtoType* T) { |
Aaron Ballman | 40bd0aa | 2014-03-17 15:23:01 +0000 | [diff] [blame] | 5400 | for (const auto &A : T->param_types()) { |
| 5401 | if (Visit(A)) |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5402 | return true; |
| 5403 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5404 | |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 5405 | return Visit(T->getReturnType()); |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5406 | } |
| 5407 | |
| 5408 | bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType( |
| 5409 | const FunctionNoProtoType* T) { |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 5410 | return Visit(T->getReturnType()); |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5411 | } |
| 5412 | |
| 5413 | bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType( |
| 5414 | const UnresolvedUsingType*) { |
| 5415 | return false; |
| 5416 | } |
| 5417 | |
| 5418 | bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) { |
| 5419 | return false; |
| 5420 | } |
| 5421 | |
| 5422 | bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) { |
| 5423 | return Visit(T->getUnderlyingType()); |
| 5424 | } |
| 5425 | |
| 5426 | bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) { |
| 5427 | return false; |
| 5428 | } |
| 5429 | |
Alexis Hunt | e852b10 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 5430 | bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType( |
| 5431 | const UnaryTransformType*) { |
| 5432 | return false; |
| 5433 | } |
| 5434 | |
Richard Smith | 30482bc | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 5435 | bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) { |
| 5436 | return Visit(T->getDeducedType()); |
| 5437 | } |
| 5438 | |
Richard Smith | 600b526 | 2017-01-26 20:40:47 +0000 | [diff] [blame] | 5439 | bool UnnamedLocalNoLinkageFinder::VisitDeducedTemplateSpecializationType( |
| 5440 | const DeducedTemplateSpecializationType *T) { |
| 5441 | return Visit(T->getDeducedType()); |
| 5442 | } |
| 5443 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5444 | bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) { |
| 5445 | return VisitTagDecl(T->getDecl()); |
| 5446 | } |
| 5447 | |
| 5448 | bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) { |
| 5449 | return VisitTagDecl(T->getDecl()); |
| 5450 | } |
| 5451 | |
| 5452 | bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType( |
| 5453 | const TemplateTypeParmType*) { |
| 5454 | return false; |
| 5455 | } |
| 5456 | |
Douglas Gregor | ada4b79 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 5457 | bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType( |
| 5458 | const SubstTemplateTypeParmPackType *) { |
| 5459 | return false; |
| 5460 | } |
| 5461 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5462 | bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType( |
| 5463 | const TemplateSpecializationType*) { |
| 5464 | return false; |
| 5465 | } |
| 5466 | |
| 5467 | bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType( |
| 5468 | const InjectedClassNameType* T) { |
| 5469 | return VisitTagDecl(T->getDecl()); |
| 5470 | } |
| 5471 | |
| 5472 | bool UnnamedLocalNoLinkageFinder::VisitDependentNameType( |
| 5473 | const DependentNameType* T) { |
| 5474 | return VisitNestedNameSpecifier(T->getQualifier()); |
| 5475 | } |
| 5476 | |
| 5477 | bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType( |
| 5478 | const DependentTemplateSpecializationType* T) { |
| 5479 | return VisitNestedNameSpecifier(T->getQualifier()); |
| 5480 | } |
| 5481 | |
Douglas Gregor | d2fa766 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 5482 | bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType( |
| 5483 | const PackExpansionType* T) { |
| 5484 | return Visit(T->getPattern()); |
| 5485 | } |
| 5486 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5487 | bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) { |
| 5488 | return false; |
| 5489 | } |
| 5490 | |
| 5491 | bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType( |
| 5492 | const ObjCInterfaceType *) { |
| 5493 | return false; |
| 5494 | } |
| 5495 | |
| 5496 | bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType( |
| 5497 | const ObjCObjectPointerType *) { |
| 5498 | return false; |
| 5499 | } |
| 5500 | |
Eli Friedman | 0dfb889 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5501 | bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) { |
| 5502 | return Visit(T->getValueType()); |
| 5503 | } |
| 5504 | |
Xiuli Pan | 9c14e28 | 2016-01-09 12:53:17 +0000 | [diff] [blame] | 5505 | bool UnnamedLocalNoLinkageFinder::VisitPipeType(const PipeType* T) { |
| 5506 | return false; |
| 5507 | } |
| 5508 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5509 | bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) { |
| 5510 | if (Tag->getDeclContext()->isFunctionOrMethod()) { |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 5511 | S.Diag(SR.getBegin(), |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5512 | S.getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 5513 | diag::warn_cxx98_compat_template_arg_local_type : |
| 5514 | diag::ext_template_arg_local_type) |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5515 | << S.Context.getTypeDeclType(Tag) << SR; |
| 5516 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5517 | } |
| 5518 | |
John McCall | 5ea9577 | 2013-03-09 00:54:27 +0000 | [diff] [blame] | 5519 | if (!Tag->hasNameForLinkage()) { |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 5520 | S.Diag(SR.getBegin(), |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5521 | S.getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 5522 | diag::warn_cxx98_compat_template_arg_unnamed_type : |
| 5523 | diag::ext_template_arg_unnamed_type) << SR; |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5524 | S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here); |
| 5525 | return true; |
| 5526 | } |
| 5527 | |
| 5528 | return false; |
| 5529 | } |
| 5530 | |
| 5531 | bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier( |
| 5532 | NestedNameSpecifier *NNS) { |
| 5533 | if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix())) |
| 5534 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5535 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5536 | switch (NNS->getKind()) { |
| 5537 | case NestedNameSpecifier::Identifier: |
| 5538 | case NestedNameSpecifier::Namespace: |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 5539 | case NestedNameSpecifier::NamespaceAlias: |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5540 | case NestedNameSpecifier::Global: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 5541 | case NestedNameSpecifier::Super: |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5542 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5543 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5544 | case NestedNameSpecifier::TypeSpec: |
| 5545 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 5546 | return Visit(QualType(NNS->getAsType(), 0)); |
| 5547 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 5548 | llvm_unreachable("Invalid NestedNameSpecifier::Kind!"); |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5549 | } |
| 5550 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5551 | /// Check a template argument against its corresponding |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5552 | /// template type parameter. |
| 5553 | /// |
| 5554 | /// This routine implements the semantics of C++ [temp.arg.type]. It |
| 5555 | /// returns true if an error occurred, and false otherwise. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5556 | bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param, |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5557 | TypeSourceInfo *ArgInfo) { |
| 5558 | assert(ArgInfo && "invalid TypeSourceInfo"); |
John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 5559 | QualType Arg = ArgInfo->getType(); |
Douglas Gregor | 959d5a0 | 2010-05-22 16:17:30 +0000 | [diff] [blame] | 5560 | SourceRange SR = ArgInfo->getTypeLoc().getSourceRange(); |
Chandler Carruth | 9bb67f4 | 2010-09-03 21:12:34 +0000 | [diff] [blame] | 5561 | |
| 5562 | if (Arg->isVariablyModifiedType()) { |
| 5563 | return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg; |
Douglas Gregor | 8364e6b | 2009-12-21 23:17:24 +0000 | [diff] [blame] | 5564 | } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) { |
Douglas Gregor | 8364e6b | 2009-12-21 23:17:24 +0000 | [diff] [blame] | 5565 | return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR; |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5566 | } |
| 5567 | |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5568 | // C++03 [temp.arg.type]p2: |
| 5569 | // A local type, a type with no linkage, an unnamed type or a type |
| 5570 | // compounded from any of these types shall not be used as a |
| 5571 | // template-argument for a template type-parameter. |
| 5572 | // |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 5573 | // C++11 allows these, and even in C++03 we allow them as an extension with |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5574 | // a warning. |
Daniel Jasper | 5cad685 | 2017-01-02 22:55:45 +0000 | [diff] [blame] | 5575 | if (LangOpts.CPlusPlus11 || Arg->hasUnnamedOrLocalType()) { |
Douglas Gregor | 7731d3f | 2010-10-13 00:27:52 +0000 | [diff] [blame] | 5576 | UnnamedLocalNoLinkageFinder Finder(*this, SR); |
| 5577 | (void)Finder.Visit(Context.getCanonicalType(Arg)); |
| 5578 | } |
| 5579 | |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 5580 | return false; |
| 5581 | } |
| 5582 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5583 | enum NullPointerValueKind { |
| 5584 | NPV_NotNullPointer, |
| 5585 | NPV_NullPointer, |
| 5586 | NPV_Error |
| 5587 | }; |
| 5588 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5589 | /// Determine whether the given template argument is a null pointer |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5590 | /// value of the appropriate type. |
| 5591 | static NullPointerValueKind |
| 5592 | isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param, |
Reid Kleckner | cd016d8 | 2017-07-07 22:04:29 +0000 | [diff] [blame] | 5593 | QualType ParamType, Expr *Arg, |
| 5594 | Decl *Entity = nullptr) { |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5595 | if (Arg->isValueDependent() || Arg->isTypeDependent()) |
| 5596 | return NPV_NotNullPointer; |
David Majnemer | 69c3ddc | 2015-09-11 20:18:09 +0000 | [diff] [blame] | 5597 | |
Reid Kleckner | cd016d8 | 2017-07-07 22:04:29 +0000 | [diff] [blame] | 5598 | // dllimport'd entities aren't constant but are available inside of template |
| 5599 | // arguments. |
| 5600 | if (Entity && Entity->hasAttr<DLLImportAttr>()) |
| 5601 | return NPV_NotNullPointer; |
| 5602 | |
Richard Smith | db0ac55 | 2015-12-18 22:40:25 +0000 | [diff] [blame] | 5603 | if (!S.isCompleteType(Arg->getExprLoc(), ParamType)) |
David Majnemer | b54368c | 2015-09-11 20:55:29 +0000 | [diff] [blame] | 5604 | llvm_unreachable( |
| 5605 | "Incomplete parameter type in isNullPointerValueTemplateArgument!"); |
David Majnemer | 69c3ddc | 2015-09-11 20:18:09 +0000 | [diff] [blame] | 5606 | |
David Majnemer | 5c734ad | 2014-08-14 00:49:23 +0000 | [diff] [blame] | 5607 | if (!S.getLangOpts().CPlusPlus11) |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5608 | return NPV_NotNullPointer; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5609 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5610 | // Determine whether we have a constant expression. |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5611 | ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg); |
| 5612 | if (ArgRV.isInvalid()) |
| 5613 | return NPV_Error; |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 5614 | Arg = ArgRV.get(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5615 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5616 | Expr::EvalResult EvalResult; |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 5617 | SmallVector<PartialDiagnosticAt, 8> Notes; |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5618 | EvalResult.Diag = &Notes; |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5619 | if (!Arg->EvaluateAsRValue(EvalResult, S.Context) || |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5620 | EvalResult.HasSideEffects) { |
| 5621 | SourceLocation DiagLoc = Arg->getExprLoc(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5622 | |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5623 | // If our only note is the usual "invalid subexpression" note, just point |
| 5624 | // the caret at its location rather than producing an essentially |
| 5625 | // redundant note. |
| 5626 | if (Notes.size() == 1 && Notes[0].second.getDiagID() == |
| 5627 | diag::note_invalid_subexpr_in_const_expr) { |
| 5628 | DiagLoc = Notes[0].first; |
| 5629 | Notes.clear(); |
| 5630 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5631 | |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5632 | S.Diag(DiagLoc, diag::err_template_arg_not_address_constant) |
| 5633 | << Arg->getType() << Arg->getSourceRange(); |
| 5634 | for (unsigned I = 0, N = Notes.size(); I != N; ++I) |
| 5635 | S.Diag(Notes[I].first, Notes[I].second); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5636 | |
Douglas Gregor | 350880c | 2012-04-10 19:03:30 +0000 | [diff] [blame] | 5637 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5638 | return NPV_Error; |
| 5639 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5640 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5641 | // C++11 [temp.arg.nontype]p1: |
| 5642 | // - an address constant expression of type std::nullptr_t |
| 5643 | if (Arg->getType()->isNullPtrType()) |
| 5644 | return NPV_NullPointer; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5645 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5646 | // - a constant expression that evaluates to a null pointer value (4.10); or |
| 5647 | // - a constant expression that evaluates to a null member pointer value |
| 5648 | // (4.11); or |
| 5649 | if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) || |
| 5650 | (EvalResult.Val.isMemberPointer() && |
| 5651 | !EvalResult.Val.getMemberPointerDecl())) { |
| 5652 | // If our expression has an appropriate type, we've succeeded. |
| 5653 | bool ObjCLifetimeConversion; |
| 5654 | if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) || |
| 5655 | S.IsQualificationConversion(Arg->getType(), ParamType, false, |
| 5656 | ObjCLifetimeConversion)) |
| 5657 | return NPV_NullPointer; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5658 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5659 | // The types didn't match, but we know we got a null pointer; complain, |
| 5660 | // then recover as if the types were correct. |
| 5661 | S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant) |
| 5662 | << Arg->getType() << ParamType << Arg->getSourceRange(); |
| 5663 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5664 | return NPV_NullPointer; |
| 5665 | } |
| 5666 | |
| 5667 | // If we don't have a null pointer value, but we do have a NULL pointer |
| 5668 | // constant, suggest a cast to the appropriate type. |
| 5669 | if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) { |
| 5670 | std::string Code = "static_cast<" + ParamType.getAsString() + ">("; |
| 5671 | S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5672 | << ParamType << FixItHint::CreateInsertion(Arg->getBeginLoc(), Code) |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 5673 | << FixItHint::CreateInsertion(S.getLocForEndOfToken(Arg->getEndLoc()), |
Alp Toker | b6cc592 | 2014-05-03 03:45:55 +0000 | [diff] [blame] | 5674 | ")"); |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5675 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5676 | return NPV_NullPointer; |
| 5677 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 5678 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 5679 | // FIXME: If we ever want to support general, address-constant expressions |
| 5680 | // as non-type template arguments, we should return the ExprResult here to |
| 5681 | // be interpreted by the caller. |
| 5682 | return NPV_NotNullPointer; |
| 5683 | } |
| 5684 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5685 | /// Checks whether the given template argument is compatible with its |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5686 | /// template parameter. |
| 5687 | static bool CheckTemplateArgumentIsCompatibleWithParameter( |
| 5688 | Sema &S, NonTypeTemplateParmDecl *Param, QualType ParamType, Expr *ArgIn, |
| 5689 | Expr *Arg, QualType ArgType) { |
| 5690 | bool ObjCLifetimeConversion; |
| 5691 | if (ParamType->isPointerType() && |
| 5692 | !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() && |
| 5693 | S.IsQualificationConversion(ArgType, ParamType, false, |
| 5694 | ObjCLifetimeConversion)) { |
| 5695 | // For pointer-to-object types, qualification conversions are |
| 5696 | // permitted. |
| 5697 | } else { |
| 5698 | if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) { |
| 5699 | if (!ParamRef->getPointeeType()->isFunctionType()) { |
| 5700 | // C++ [temp.arg.nontype]p5b3: |
| 5701 | // For a non-type template-parameter of type reference to |
| 5702 | // object, no conversions apply. The type referred to by the |
| 5703 | // reference may be more cv-qualified than the (otherwise |
| 5704 | // identical) type of the template- argument. The |
| 5705 | // template-parameter is bound directly to the |
| 5706 | // template-argument, which shall be an lvalue. |
| 5707 | |
| 5708 | // FIXME: Other qualifiers? |
| 5709 | unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers(); |
| 5710 | unsigned ArgQuals = ArgType.getCVRQualifiers(); |
| 5711 | |
| 5712 | if ((ParamQuals | ArgQuals) != ParamQuals) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5713 | S.Diag(Arg->getBeginLoc(), |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5714 | diag::err_template_arg_ref_bind_ignores_quals) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5715 | << ParamType << Arg->getType() << Arg->getSourceRange(); |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5716 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5717 | return true; |
| 5718 | } |
| 5719 | } |
| 5720 | } |
| 5721 | |
| 5722 | // At this point, the template argument refers to an object or |
| 5723 | // function with external linkage. We now need to check whether the |
| 5724 | // argument and parameter types are compatible. |
| 5725 | if (!S.Context.hasSameUnqualifiedType(ArgType, |
| 5726 | ParamType.getNonReferenceType())) { |
| 5727 | // We can't perform this conversion or binding. |
| 5728 | if (ParamType->isReferenceType()) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5729 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_no_ref_bind) |
| 5730 | << ParamType << ArgIn->getType() << Arg->getSourceRange(); |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5731 | else |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5732 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_convertible) |
| 5733 | << ArgIn->getType() << ParamType << Arg->getSourceRange(); |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5734 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5735 | return true; |
| 5736 | } |
| 5737 | } |
| 5738 | |
| 5739 | return false; |
| 5740 | } |
| 5741 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5742 | /// Checks whether the given template argument is the address |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5743 | /// of an object or function according to C++ [temp.arg.nontype]p1. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5744 | static bool |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5745 | CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S, |
| 5746 | NonTypeTemplateParmDecl *Param, |
| 5747 | QualType ParamType, |
| 5748 | Expr *ArgIn, |
| 5749 | TemplateArgument &Converted) { |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5750 | bool Invalid = false; |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5751 | Expr *Arg = ArgIn; |
| 5752 | QualType ArgType = Arg->getType(); |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5753 | |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5754 | bool AddressTaken = false; |
| 5755 | SourceLocation AddrOpLoc; |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5756 | if (S.getLangOpts().MicrosoftExt) { |
| 5757 | // Microsoft Visual C++ strips all casts, allows an arbitrary number of |
| 5758 | // dereference and address-of operators. |
| 5759 | Arg = Arg->IgnoreParenCasts(); |
| 5760 | |
| 5761 | bool ExtWarnMSTemplateArg = false; |
| 5762 | UnaryOperatorKind FirstOpKind; |
| 5763 | SourceLocation FirstOpLoc; |
| 5764 | while (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) { |
| 5765 | UnaryOperatorKind UnOpKind = UnOp->getOpcode(); |
| 5766 | if (UnOpKind == UO_Deref) |
| 5767 | ExtWarnMSTemplateArg = true; |
| 5768 | if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) { |
| 5769 | Arg = UnOp->getSubExpr()->IgnoreParenCasts(); |
| 5770 | if (!AddrOpLoc.isValid()) { |
| 5771 | FirstOpKind = UnOpKind; |
| 5772 | FirstOpLoc = UnOp->getOperatorLoc(); |
| 5773 | } |
| 5774 | } else |
| 5775 | break; |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5776 | } |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5777 | if (FirstOpLoc.isValid()) { |
| 5778 | if (ExtWarnMSTemplateArg) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5779 | S.Diag(ArgIn->getBeginLoc(), diag::ext_ms_deref_template_argument) |
| 5780 | << ArgIn->getSourceRange(); |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 5781 | |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5782 | if (FirstOpKind == UO_AddrOf) |
| 5783 | AddressTaken = true; |
| 5784 | else if (Arg->getType()->isPointerType()) { |
| 5785 | // We cannot let pointers get dereferenced here, that is obviously not a |
| 5786 | // constant expression. |
| 5787 | assert(FirstOpKind == UO_Deref); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5788 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_decl_ref) |
| 5789 | << Arg->getSourceRange(); |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5790 | } |
| 5791 | } |
| 5792 | } else { |
| 5793 | // See through any implicit casts we added to fix the type. |
| 5794 | Arg = Arg->IgnoreImpCasts(); |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 5795 | |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5796 | // C++ [temp.arg.nontype]p1: |
| 5797 | // |
| 5798 | // A template-argument for a non-type, non-template |
| 5799 | // template-parameter shall be one of: [...] |
| 5800 | // |
| 5801 | // -- the address of an object or function with external |
| 5802 | // linkage, including function templates and function |
| 5803 | // template-ids but excluding non-static class members, |
| 5804 | // expressed as & id-expression where the & is optional if |
| 5805 | // the name refers to a function or array, or if the |
| 5806 | // corresponding template-parameter is a reference; or |
| 5807 | |
| 5808 | // In C++98/03 mode, give an extension warning on any extra parentheses. |
| 5809 | // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773 |
| 5810 | bool ExtraParens = false; |
| 5811 | while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) { |
| 5812 | if (!Invalid && !ExtraParens) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5813 | S.Diag(Arg->getBeginLoc(), |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5814 | S.getLangOpts().CPlusPlus11 |
| 5815 | ? diag::warn_cxx98_compat_template_arg_extra_parens |
| 5816 | : diag::ext_template_arg_extra_parens) |
| 5817 | << Arg->getSourceRange(); |
| 5818 | ExtraParens = true; |
| 5819 | } |
| 5820 | |
| 5821 | Arg = Parens->getSubExpr(); |
| 5822 | } |
| 5823 | |
| 5824 | while (SubstNonTypeTemplateParmExpr *subst = |
| 5825 | dyn_cast<SubstNonTypeTemplateParmExpr>(Arg)) |
| 5826 | Arg = subst->getReplacement()->IgnoreImpCasts(); |
| 5827 | |
| 5828 | if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) { |
| 5829 | if (UnOp->getOpcode() == UO_AddrOf) { |
| 5830 | Arg = UnOp->getSubExpr(); |
| 5831 | AddressTaken = true; |
| 5832 | AddrOpLoc = UnOp->getOperatorLoc(); |
| 5833 | } |
| 5834 | } |
| 5835 | |
| 5836 | while (SubstNonTypeTemplateParmExpr *subst = |
| 5837 | dyn_cast<SubstNonTypeTemplateParmExpr>(Arg)) |
| 5838 | Arg = subst->getReplacement()->IgnoreImpCasts(); |
| 5839 | } |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 5840 | |
David Majnemer | 07910d6 | 2014-06-26 07:48:46 +0000 | [diff] [blame] | 5841 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg); |
| 5842 | ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr; |
| 5843 | |
| 5844 | // If our parameter has pointer type, check for a null template value. |
| 5845 | if (ParamType->isPointerType() || ParamType->isNullPtrType()) { |
Reid Kleckner | cd016d8 | 2017-07-07 22:04:29 +0000 | [diff] [blame] | 5846 | switch (isNullPointerValueTemplateArgument(S, Param, ParamType, ArgIn, |
| 5847 | Entity)) { |
David Majnemer | 07910d6 | 2014-06-26 07:48:46 +0000 | [diff] [blame] | 5848 | case NPV_NullPointer: |
| 5849 | S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null); |
Richard Smith | 78bb36f | 2014-07-24 02:27:39 +0000 | [diff] [blame] | 5850 | Converted = TemplateArgument(S.Context.getCanonicalType(ParamType), |
| 5851 | /*isNullPtr=*/true); |
David Majnemer | 07910d6 | 2014-06-26 07:48:46 +0000 | [diff] [blame] | 5852 | return false; |
| 5853 | |
| 5854 | case NPV_Error: |
| 5855 | return true; |
| 5856 | |
| 5857 | case NPV_NotNullPointer: |
| 5858 | break; |
| 5859 | } |
| 5860 | } |
| 5861 | |
Chandler Carruth | 724a8a1 | 2010-01-31 10:01:20 +0000 | [diff] [blame] | 5862 | // Stop checking the precise nature of the argument if it is value dependent, |
| 5863 | // it should be checked when instantiated. |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5864 | if (Arg->isValueDependent()) { |
John McCall | c3007a2 | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 5865 | Converted = TemplateArgument(ArgIn); |
Chandler Carruth | 724a8a1 | 2010-01-31 10:01:20 +0000 | [diff] [blame] | 5866 | return false; |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5867 | } |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 5868 | |
| 5869 | if (isa<CXXUuidofExpr>(Arg)) { |
| 5870 | if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, |
| 5871 | ArgIn, Arg, ArgType)) |
| 5872 | return true; |
| 5873 | |
| 5874 | Converted = TemplateArgument(ArgIn); |
| 5875 | return false; |
| 5876 | } |
| 5877 | |
Douglas Gregor | 31f55dc | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 5878 | if (!DRE) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5879 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_decl_ref) |
| 5880 | << Arg->getSourceRange(); |
Douglas Gregor | 31f55dc | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 5881 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5882 | return true; |
| 5883 | } |
Chandler Carruth | 724a8a1 | 2010-01-31 10:01:20 +0000 | [diff] [blame] | 5884 | |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5885 | // Cannot refer to non-static data members |
David Majnemer | 6bedcfa | 2013-10-26 06:12:44 +0000 | [diff] [blame] | 5886 | if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5887 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_field) |
| 5888 | << Entity << Arg->getSourceRange(); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5889 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5890 | return true; |
| 5891 | } |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5892 | |
| 5893 | // Cannot refer to non-static member functions |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5894 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) { |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5895 | if (!Method->isStatic()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5896 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_method) |
| 5897 | << Method << Arg->getSourceRange(); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5898 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5899 | return true; |
| 5900 | } |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5901 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5902 | |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5903 | FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity); |
| 5904 | VarDecl *Var = dyn_cast<VarDecl>(Entity); |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5905 | |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5906 | // A non-type template argument must refer to an object or function. |
| 5907 | if (!Func && !Var) { |
| 5908 | // We found something, but we don't know specifically what it is. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5909 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_object_or_func) |
| 5910 | << Arg->getSourceRange(); |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5911 | S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here); |
| 5912 | return true; |
| 5913 | } |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 5914 | |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5915 | // Address / reference template args must have external linkage in C++98. |
Rafael Espindola | 3ae0005 | 2013-05-13 00:12:11 +0000 | [diff] [blame] | 5916 | if (Entity->getFormalLinkage() == InternalLinkage) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5917 | S.Diag(Arg->getBeginLoc(), |
| 5918 | S.getLangOpts().CPlusPlus11 |
| 5919 | ? diag::warn_cxx98_compat_template_arg_object_internal |
| 5920 | : diag::ext_template_arg_object_internal) |
| 5921 | << !Func << Entity << Arg->getSourceRange(); |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5922 | S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object) |
| 5923 | << !Func; |
Rafael Espindola | 3ae0005 | 2013-05-13 00:12:11 +0000 | [diff] [blame] | 5924 | } else if (!Entity->hasLinkage()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5925 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_object_no_linkage) |
| 5926 | << !Func << Entity << Arg->getSourceRange(); |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5927 | S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object) |
| 5928 | << !Func; |
| 5929 | return true; |
| 5930 | } |
| 5931 | |
| 5932 | if (Func) { |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5933 | // If the template parameter has pointer type, the function decays. |
| 5934 | if (ParamType->isPointerType() && !AddressTaken) |
| 5935 | ArgType = S.Context.getPointerType(Func->getType()); |
| 5936 | else if (AddressTaken && ParamType->isReferenceType()) { |
| 5937 | // If we originally had an address-of operator, but the |
| 5938 | // parameter has reference type, complain and (if things look |
| 5939 | // like they will work) drop the address-of operator. |
| 5940 | if (!S.Context.hasSameUnqualifiedType(Func->getType(), |
| 5941 | ParamType.getNonReferenceType())) { |
| 5942 | S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer) |
| 5943 | << ParamType; |
| 5944 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5945 | return true; |
| 5946 | } |
| 5947 | |
| 5948 | S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer) |
| 5949 | << ParamType |
| 5950 | << FixItHint::CreateRemoval(AddrOpLoc); |
| 5951 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5952 | |
| 5953 | ArgType = Func->getType(); |
| 5954 | } |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5955 | } else { |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5956 | // A value of reference type is not an object. |
| 5957 | if (Var->getType()->isReferenceType()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5958 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_reference_var) |
| 5959 | << Var->getType() << Arg->getSourceRange(); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5960 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5961 | return true; |
| 5962 | } |
| 5963 | |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5964 | // A template argument must have static storage duration. |
Richard Smith | fd3834f | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 5965 | if (Var->getTLSKind()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 5966 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_thread_local) |
| 5967 | << Arg->getSourceRange(); |
Richard Smith | 9380e0e | 2012-04-04 21:11:30 +0000 | [diff] [blame] | 5968 | S.Diag(Var->getLocation(), diag::note_template_arg_refers_here); |
| 5969 | return true; |
| 5970 | } |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 5971 | |
| 5972 | // If the template parameter has pointer type, we must have taken |
| 5973 | // the address of this object. |
| 5974 | if (ParamType->isReferenceType()) { |
| 5975 | if (AddressTaken) { |
| 5976 | // If we originally had an address-of operator, but the |
| 5977 | // parameter has reference type, complain and (if things look |
| 5978 | // like they will work) drop the address-of operator. |
| 5979 | if (!S.Context.hasSameUnqualifiedType(Var->getType(), |
| 5980 | ParamType.getNonReferenceType())) { |
| 5981 | S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer) |
| 5982 | << ParamType; |
| 5983 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5984 | return true; |
| 5985 | } |
| 5986 | |
| 5987 | S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer) |
| 5988 | << ParamType |
| 5989 | << FixItHint::CreateRemoval(AddrOpLoc); |
| 5990 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 5991 | |
| 5992 | ArgType = Var->getType(); |
| 5993 | } |
| 5994 | } else if (!AddressTaken && ParamType->isPointerType()) { |
| 5995 | if (Var->getType()->isArrayType()) { |
| 5996 | // Array-to-pointer decay. |
| 5997 | ArgType = S.Context.getArrayDecayedType(Var->getType()); |
| 5998 | } else { |
| 5999 | // If the template parameter has pointer type but the address of |
| 6000 | // this object was not taken, complain and (possibly) recover by |
| 6001 | // taking the address of the entity. |
| 6002 | ArgType = S.Context.getPointerType(Var->getType()); |
| 6003 | if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6004 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_address_of) |
| 6005 | << ParamType; |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6006 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 6007 | return true; |
| 6008 | } |
| 6009 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6010 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_address_of) |
| 6011 | << ParamType << FixItHint::CreateInsertion(Arg->getBeginLoc(), "&"); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6012 | |
| 6013 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 6014 | } |
| 6015 | } |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6016 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6017 | |
David Majnemer | 61c39a1 | 2013-08-23 05:39:39 +0000 | [diff] [blame] | 6018 | if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, ArgIn, |
| 6019 | Arg, ArgType)) |
| 6020 | return true; |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6021 | |
| 6022 | // Create the template argument. |
David Blaikie | 0f62c8d | 2014-10-16 04:21:25 +0000 | [diff] [blame] | 6023 | Converted = |
| 6024 | TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()), ParamType); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6025 | S.MarkAnyDeclReferenced(Arg->getBeginLoc(), Entity, false); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6026 | return false; |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6027 | } |
| 6028 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6029 | /// Checks whether the given template argument is a pointer to |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6030 | /// member constant according to C++ [temp.arg.nontype]p1. |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6031 | static bool CheckTemplateArgumentPointerToMember(Sema &S, |
| 6032 | NonTypeTemplateParmDecl *Param, |
| 6033 | QualType ParamType, |
| 6034 | Expr *&ResultArg, |
| 6035 | TemplateArgument &Converted) { |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6036 | bool Invalid = false; |
| 6037 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6038 | Expr *Arg = ResultArg; |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6039 | bool ObjCLifetimeConversion; |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6040 | |
| 6041 | // C++ [temp.arg.nontype]p1: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6042 | // |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6043 | // A template-argument for a non-type, non-template |
| 6044 | // template-parameter shall be one of: [...] |
| 6045 | // |
| 6046 | // -- a pointer to member expressed as described in 5.3.1. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6047 | DeclRefExpr *DRE = nullptr; |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6048 | |
Abramo Bagnara | 6a0c409 | 2010-09-13 06:06:58 +0000 | [diff] [blame] | 6049 | // In C++98/03 mode, give an extension warning on any extra parentheses. |
| 6050 | // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773 |
| 6051 | bool ExtraParens = false; |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6052 | while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) { |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 6053 | if (!Invalid && !ExtraParens) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6054 | S.Diag(Arg->getBeginLoc(), |
| 6055 | S.getLangOpts().CPlusPlus11 |
| 6056 | ? diag::warn_cxx98_compat_template_arg_extra_parens |
| 6057 | : diag::ext_template_arg_extra_parens) |
| 6058 | << Arg->getSourceRange(); |
Abramo Bagnara | 6a0c409 | 2010-09-13 06:06:58 +0000 | [diff] [blame] | 6059 | ExtraParens = true; |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6060 | } |
| 6061 | |
| 6062 | Arg = Parens->getSubExpr(); |
| 6063 | } |
| 6064 | |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 6065 | while (SubstNonTypeTemplateParmExpr *subst = |
| 6066 | dyn_cast<SubstNonTypeTemplateParmExpr>(Arg)) |
| 6067 | Arg = subst->getReplacement()->IgnoreImpCasts(); |
| 6068 | |
Douglas Gregor | 49ba3ca | 2009-11-12 18:38:13 +0000 | [diff] [blame] | 6069 | // A pointer-to-member constant written &Class::member. |
| 6070 | if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6071 | if (UnOp->getOpcode() == UO_AddrOf) { |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 6072 | DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr()); |
| 6073 | if (DRE && !DRE->getQualifier()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6074 | DRE = nullptr; |
Douglas Gregor | 4bd90e5 | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 6075 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6076 | } |
Douglas Gregor | 49ba3ca | 2009-11-12 18:38:13 +0000 | [diff] [blame] | 6077 | // A constant of pointer-to-member type. |
| 6078 | else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 6079 | ValueDecl *VD = DRE->getDecl(); |
| 6080 | if (VD->getType()->isMemberPointerType()) { |
| 6081 | if (isa<NonTypeTemplateParmDecl>(VD)) { |
| 6082 | if (Arg->isTypeDependent() || Arg->isValueDependent()) { |
| 6083 | Converted = TemplateArgument(Arg); |
| 6084 | } else { |
| 6085 | VD = cast<ValueDecl>(VD->getCanonicalDecl()); |
| 6086 | Converted = TemplateArgument(VD, ParamType); |
Douglas Gregor | 49ba3ca | 2009-11-12 18:38:13 +0000 | [diff] [blame] | 6087 | } |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 6088 | return Invalid; |
Douglas Gregor | 49ba3ca | 2009-11-12 18:38:13 +0000 | [diff] [blame] | 6089 | } |
| 6090 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6091 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6092 | DRE = nullptr; |
Douglas Gregor | 49ba3ca | 2009-11-12 18:38:13 +0000 | [diff] [blame] | 6093 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6094 | |
Reid Kleckner | cd016d8 | 2017-07-07 22:04:29 +0000 | [diff] [blame] | 6095 | ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr; |
| 6096 | |
| 6097 | // Check for a null pointer value. |
| 6098 | switch (isNullPointerValueTemplateArgument(S, Param, ParamType, ResultArg, |
| 6099 | Entity)) { |
| 6100 | case NPV_Error: |
| 6101 | return true; |
| 6102 | case NPV_NullPointer: |
| 6103 | S.Diag(ResultArg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null); |
| 6104 | Converted = TemplateArgument(S.Context.getCanonicalType(ParamType), |
| 6105 | /*isNullPtr*/true); |
| 6106 | return false; |
| 6107 | case NPV_NotNullPointer: |
| 6108 | break; |
| 6109 | } |
| 6110 | |
| 6111 | if (S.IsQualificationConversion(ResultArg->getType(), |
| 6112 | ParamType.getNonReferenceType(), false, |
| 6113 | ObjCLifetimeConversion)) { |
| 6114 | ResultArg = S.ImpCastExprToType(ResultArg, ParamType, CK_NoOp, |
| 6115 | ResultArg->getValueKind()) |
| 6116 | .get(); |
| 6117 | } else if (!S.Context.hasSameUnqualifiedType( |
| 6118 | ResultArg->getType(), ParamType.getNonReferenceType())) { |
| 6119 | // We can't perform this conversion. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6120 | S.Diag(ResultArg->getBeginLoc(), diag::err_template_arg_not_convertible) |
Reid Kleckner | cd016d8 | 2017-07-07 22:04:29 +0000 | [diff] [blame] | 6121 | << ResultArg->getType() << ParamType << ResultArg->getSourceRange(); |
| 6122 | S.Diag(Param->getLocation(), diag::note_template_param_here); |
| 6123 | return true; |
| 6124 | } |
| 6125 | |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6126 | if (!DRE) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6127 | return S.Diag(Arg->getBeginLoc(), |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6128 | diag::err_template_arg_not_pointer_to_member_form) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6129 | << Arg->getSourceRange(); |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6130 | |
David Majnemer | 3ac84e6 | 2013-10-22 21:56:38 +0000 | [diff] [blame] | 6131 | if (isa<FieldDecl>(DRE->getDecl()) || |
| 6132 | isa<IndirectFieldDecl>(DRE->getDecl()) || |
| 6133 | isa<CXXMethodDecl>(DRE->getDecl())) { |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6134 | assert((isa<FieldDecl>(DRE->getDecl()) || |
David Majnemer | 3ac84e6 | 2013-10-22 21:56:38 +0000 | [diff] [blame] | 6135 | isa<IndirectFieldDecl>(DRE->getDecl()) || |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6136 | !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) && |
| 6137 | "Only non-static member pointers can make it here"); |
| 6138 | |
| 6139 | // Okay: this is the address of a non-static member, and therefore |
| 6140 | // a member pointer constant. |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6141 | if (Arg->isTypeDependent() || Arg->isValueDependent()) { |
John McCall | c3007a2 | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 6142 | Converted = TemplateArgument(Arg); |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6143 | } else { |
| 6144 | ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl()); |
David Blaikie | 0f62c8d | 2014-10-16 04:21:25 +0000 | [diff] [blame] | 6145 | Converted = TemplateArgument(D, ParamType); |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6146 | } |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6147 | return Invalid; |
| 6148 | } |
| 6149 | |
| 6150 | // We found something else, but we don't know specifically what it is. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6151 | S.Diag(Arg->getBeginLoc(), diag::err_template_arg_not_pointer_to_member_form) |
| 6152 | << Arg->getSourceRange(); |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6153 | S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here); |
Douglas Gregor | ccb0776 | 2009-02-11 19:52:55 +0000 | [diff] [blame] | 6154 | return true; |
| 6155 | } |
| 6156 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6157 | /// Check a template argument against its corresponding |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 6158 | /// non-type template parameter. |
| 6159 | /// |
Douglas Gregor | 463421d | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 6160 | /// This routine implements the semantics of C++ [temp.arg.nontype]. |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6161 | /// If an error occurred, it returns ExprError(); otherwise, it |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6162 | /// returns the converted template argument. \p ParamType is the |
| 6163 | /// type of the non-type template parameter after it has been instantiated. |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6164 | ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param, |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6165 | QualType ParamType, Expr *Arg, |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6166 | TemplateArgument &Converted, |
| 6167 | CheckTemplateArgumentKind CTAK) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6168 | SourceLocation StartLoc = Arg->getBeginLoc(); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 6169 | |
Richard Smith | 5f27438 | 2016-09-28 23:55:27 +0000 | [diff] [blame] | 6170 | // If the parameter type somehow involves auto, deduce the type now. |
Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 6171 | if (getLangOpts().CPlusPlus17 && ParamType->isUndeducedType()) { |
Richard Smith | 4ae5ec8 | 2017-02-22 20:01:55 +0000 | [diff] [blame] | 6172 | // During template argument deduction, we allow 'decltype(auto)' to |
| 6173 | // match an arbitrary dependent argument. |
| 6174 | // FIXME: The language rules don't say what happens in this case. |
| 6175 | // FIXME: We get an opaque dependent type out of decltype(auto) if the |
| 6176 | // expression is merely instantiation-dependent; is this enough? |
| 6177 | if (CTAK == CTAK_Deduced && Arg->isTypeDependent()) { |
| 6178 | auto *AT = dyn_cast<AutoType>(ParamType); |
| 6179 | if (AT && AT->isDecltypeAuto()) { |
| 6180 | Converted = TemplateArgument(Arg); |
| 6181 | return Arg; |
| 6182 | } |
| 6183 | } |
| 6184 | |
Richard Smith | 87d263e | 2016-12-25 08:05:23 +0000 | [diff] [blame] | 6185 | // When checking a deduced template argument, deduce from its type even if |
| 6186 | // the type is dependent, in order to check the types of non-type template |
| 6187 | // arguments line up properly in partial ordering. |
| 6188 | Optional<unsigned> Depth; |
| 6189 | if (CTAK != CTAK_Specified) |
| 6190 | Depth = Param->getDepth() + 1; |
Richard Smith | 5f27438 | 2016-09-28 23:55:27 +0000 | [diff] [blame] | 6191 | if (DeduceAutoType( |
| 6192 | Context.getTrivialTypeSourceInfo(ParamType, Param->getLocation()), |
Richard Smith | 87d263e | 2016-12-25 08:05:23 +0000 | [diff] [blame] | 6193 | Arg, ParamType, Depth) == DAR_Failed) { |
Richard Smith | 5f27438 | 2016-09-28 23:55:27 +0000 | [diff] [blame] | 6194 | Diag(Arg->getExprLoc(), |
| 6195 | diag::err_non_type_template_parm_type_deduction_failure) |
| 6196 | << Param->getDeclName() << Param->getType() << Arg->getType() |
| 6197 | << Arg->getSourceRange(); |
| 6198 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6199 | return ExprError(); |
| 6200 | } |
| 6201 | // CheckNonTypeTemplateParameterType will produce a diagnostic if there's |
| 6202 | // an error. The error message normally references the parameter |
| 6203 | // declaration, but here we'll pass the argument location because that's |
| 6204 | // where the parameter type is deduced. |
| 6205 | ParamType = CheckNonTypeTemplateParameterType(ParamType, Arg->getExprLoc()); |
| 6206 | if (ParamType.isNull()) { |
| 6207 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6208 | return ExprError(); |
| 6209 | } |
| 6210 | } |
| 6211 | |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6212 | // We should have already dropped all cv-qualifiers by now. |
| 6213 | assert(!ParamType.hasQualifiers() && |
| 6214 | "non-type template parameter type cannot be qualified"); |
| 6215 | |
| 6216 | if (CTAK == CTAK_Deduced && |
Richard Smith | d92eddf | 2016-12-27 06:14:37 +0000 | [diff] [blame] | 6217 | !Context.hasSameType(ParamType.getNonLValueExprType(Context), |
Richard Smith | 0e617ec | 2016-12-27 07:56:27 +0000 | [diff] [blame] | 6218 | Arg->getType())) { |
Richard Smith | 957fbf1 | 2017-01-17 02:14:37 +0000 | [diff] [blame] | 6219 | // FIXME: If either type is dependent, we skip the check. This isn't |
| 6220 | // correct, since during deduction we're supposed to have replaced each |
| 6221 | // template parameter with some unique (non-dependent) placeholder. |
| 6222 | // FIXME: If the argument type contains 'auto', we carry on and fail the |
| 6223 | // type check in order to force specific types to be more specialized than |
| 6224 | // 'auto'. It's not clear how partial ordering with 'auto' is supposed to |
| 6225 | // work. |
| 6226 | if ((ParamType->isDependentType() || Arg->isTypeDependent()) && |
| 6227 | !Arg->getType()->getContainedAutoType()) { |
| 6228 | Converted = TemplateArgument(Arg); |
| 6229 | return Arg; |
| 6230 | } |
| 6231 | // FIXME: This attempts to implement C++ [temp.deduct.type]p17. Per DR1770, |
| 6232 | // we should actually be checking the type of the template argument in P, |
| 6233 | // not the type of the template argument deduced from A, against the |
| 6234 | // template parameter type. |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6235 | Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch) |
Richard Smith | 0e617ec | 2016-12-27 07:56:27 +0000 | [diff] [blame] | 6236 | << Arg->getType() |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6237 | << ParamType.getUnqualifiedType(); |
| 6238 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6239 | return ExprError(); |
| 6240 | } |
| 6241 | |
Richard Smith | 87d263e | 2016-12-25 08:05:23 +0000 | [diff] [blame] | 6242 | // If either the parameter has a dependent type or the argument is |
| 6243 | // type-dependent, there's nothing we can check now. |
| 6244 | if (ParamType->isDependentType() || Arg->isTypeDependent()) { |
| 6245 | // FIXME: Produce a cloned, canonical expression? |
| 6246 | Converted = TemplateArgument(Arg); |
| 6247 | return Arg; |
| 6248 | } |
| 6249 | |
Richard Smith | e594587 | 2017-01-06 22:52:53 +0000 | [diff] [blame] | 6250 | // The initialization of the parameter from the argument is |
| 6251 | // a constant-evaluated context. |
Faisal Vali | d143a0c | 2017-04-01 21:30:49 +0000 | [diff] [blame] | 6252 | EnterExpressionEvaluationContext ConstantEvaluated( |
| 6253 | *this, Sema::ExpressionEvaluationContext::ConstantEvaluated); |
Richard Smith | e594587 | 2017-01-06 22:52:53 +0000 | [diff] [blame] | 6254 | |
Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 6255 | if (getLangOpts().CPlusPlus17) { |
| 6256 | // C++17 [temp.arg.nontype]p1: |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6257 | // A template-argument for a non-type template parameter shall be |
| 6258 | // a converted constant expression of the type of the template-parameter. |
| 6259 | APValue Value; |
| 6260 | ExprResult ArgResult = CheckConvertedConstantExpression( |
| 6261 | Arg, ParamType, Value, CCEK_TemplateArg); |
| 6262 | if (ArgResult.isInvalid()) |
| 6263 | return ExprError(); |
| 6264 | |
Richard Smith | 52e624f | 2016-12-21 21:42:57 +0000 | [diff] [blame] | 6265 | // For a value-dependent argument, CheckConvertedConstantExpression is |
| 6266 | // permitted (and expected) to be unable to determine a value. |
| 6267 | if (ArgResult.get()->isValueDependent()) { |
Richard Smith | 01bfa68 | 2016-12-27 02:02:09 +0000 | [diff] [blame] | 6268 | Converted = TemplateArgument(ArgResult.get()); |
| 6269 | return ArgResult; |
Richard Smith | 52e624f | 2016-12-21 21:42:57 +0000 | [diff] [blame] | 6270 | } |
| 6271 | |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6272 | QualType CanonParamType = Context.getCanonicalType(ParamType); |
| 6273 | |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6274 | // Convert the APValue to a TemplateArgument. |
| 6275 | switch (Value.getKind()) { |
| 6276 | case APValue::Uninitialized: |
| 6277 | assert(ParamType->isNullPtrType()); |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6278 | Converted = TemplateArgument(CanonParamType, /*isNullPtr*/true); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6279 | break; |
| 6280 | case APValue::Int: |
| 6281 | assert(ParamType->isIntegralOrEnumerationType()); |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6282 | Converted = TemplateArgument(Context, Value.getInt(), CanonParamType); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6283 | break; |
| 6284 | case APValue::MemberPointer: { |
| 6285 | assert(ParamType->isMemberPointerType()); |
| 6286 | |
| 6287 | // FIXME: We need TemplateArgument representation and mangling for these. |
| 6288 | if (!Value.getMemberPointerPath().empty()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6289 | Diag(Arg->getBeginLoc(), |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6290 | diag::err_template_arg_member_ptr_base_derived_not_supported) |
| 6291 | << Value.getMemberPointerDecl() << ParamType |
| 6292 | << Arg->getSourceRange(); |
| 6293 | return ExprError(); |
| 6294 | } |
| 6295 | |
| 6296 | auto *VD = const_cast<ValueDecl*>(Value.getMemberPointerDecl()); |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6297 | Converted = VD ? TemplateArgument(VD, CanonParamType) |
| 6298 | : TemplateArgument(CanonParamType, /*isNullPtr*/true); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6299 | break; |
| 6300 | } |
| 6301 | case APValue::LValue: { |
| 6302 | // For a non-type template-parameter of pointer or reference type, |
| 6303 | // the value of the constant expression shall not refer to |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6304 | assert(ParamType->isPointerType() || ParamType->isReferenceType() || |
| 6305 | ParamType->isNullPtrType()); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6306 | // -- a temporary object |
| 6307 | // -- a string literal |
| 6308 | // -- the result of a typeid expression, or |
Eric Christopher | 0d2c56a | 2017-03-31 01:45:39 +0000 | [diff] [blame] | 6309 | // -- a predefined __func__ variable |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6310 | if (auto *E = Value.getLValueBase().dyn_cast<const Expr*>()) { |
| 6311 | if (isa<CXXUuidofExpr>(E)) { |
Nico Weber | d60bbce | 2018-05-17 15:26:37 +0000 | [diff] [blame] | 6312 | Converted = TemplateArgument(ArgResult.get()); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6313 | break; |
| 6314 | } |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6315 | Diag(Arg->getBeginLoc(), diag::err_template_arg_not_decl_ref) |
| 6316 | << Arg->getSourceRange(); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6317 | return ExprError(); |
| 6318 | } |
| 6319 | auto *VD = const_cast<ValueDecl *>( |
| 6320 | Value.getLValueBase().dyn_cast<const ValueDecl *>()); |
| 6321 | // -- a subobject |
| 6322 | if (Value.hasLValuePath() && Value.getLValuePath().size() == 1 && |
| 6323 | VD && VD->getType()->isArrayType() && |
| 6324 | Value.getLValuePath()[0].ArrayIndex == 0 && |
| 6325 | !Value.isLValueOnePastTheEnd() && ParamType->isPointerType()) { |
| 6326 | // Per defect report (no number yet): |
| 6327 | // ... other than a pointer to the first element of a complete array |
| 6328 | // object. |
| 6329 | } else if (!Value.hasLValuePath() || Value.getLValuePath().size() || |
| 6330 | Value.isLValueOnePastTheEnd()) { |
| 6331 | Diag(StartLoc, diag::err_non_type_template_arg_subobject) |
| 6332 | << Value.getAsString(Context, ParamType); |
| 6333 | return ExprError(); |
| 6334 | } |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6335 | assert((VD || !ParamType->isReferenceType()) && |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6336 | "null reference should not be a constant expression"); |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6337 | assert((!VD || !ParamType->isNullPtrType()) && |
| 6338 | "non-null value of type nullptr_t?"); |
| 6339 | Converted = VD ? TemplateArgument(VD, CanonParamType) |
| 6340 | : TemplateArgument(CanonParamType, /*isNullPtr*/true); |
Richard Smith | 410cc89 | 2014-11-26 03:26:53 +0000 | [diff] [blame] | 6341 | break; |
| 6342 | } |
| 6343 | case APValue::AddrLabelDiff: |
| 6344 | return Diag(StartLoc, diag::err_non_type_template_arg_addr_label_diff); |
| 6345 | case APValue::Float: |
| 6346 | case APValue::ComplexInt: |
| 6347 | case APValue::ComplexFloat: |
| 6348 | case APValue::Vector: |
| 6349 | case APValue::Array: |
| 6350 | case APValue::Struct: |
| 6351 | case APValue::Union: |
| 6352 | llvm_unreachable("invalid kind for template argument"); |
| 6353 | } |
| 6354 | |
| 6355 | return ArgResult.get(); |
| 6356 | } |
| 6357 | |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6358 | // C++ [temp.arg.nontype]p5: |
| 6359 | // The following conversions are performed on each expression used |
| 6360 | // as a non-type template-argument. If a non-type |
| 6361 | // template-argument cannot be converted to the type of the |
| 6362 | // corresponding template-parameter then the program is |
| 6363 | // ill-formed. |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 6364 | if (ParamType->isIntegralOrEnumerationType()) { |
Richard Smith | f8379a0 | 2012-01-18 23:55:52 +0000 | [diff] [blame] | 6365 | // C++11: |
| 6366 | // -- for a non-type template-parameter of integral or |
| 6367 | // enumeration type, conversions permitted in a converted |
| 6368 | // constant expression are applied. |
| 6369 | // |
| 6370 | // C++98: |
| 6371 | // -- for a non-type template-parameter of integral or |
| 6372 | // enumeration type, integral promotions (4.5) and integral |
| 6373 | // conversions (4.7) are applied. |
| 6374 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6375 | if (getLangOpts().CPlusPlus11) { |
Richard Smith | f8379a0 | 2012-01-18 23:55:52 +0000 | [diff] [blame] | 6376 | // C++ [temp.arg.nontype]p1: |
| 6377 | // A template-argument for a non-type, non-template template-parameter |
| 6378 | // shall be one of: |
| 6379 | // |
| 6380 | // -- for a non-type template-parameter of integral or enumeration |
| 6381 | // type, a converted constant expression of the type of the |
| 6382 | // template-parameter; or |
| 6383 | llvm::APSInt Value; |
| 6384 | ExprResult ArgResult = |
| 6385 | CheckConvertedConstantExpression(Arg, ParamType, Value, |
| 6386 | CCEK_TemplateArg); |
| 6387 | if (ArgResult.isInvalid()) |
| 6388 | return ExprError(); |
| 6389 | |
Richard Smith | 01bfa68 | 2016-12-27 02:02:09 +0000 | [diff] [blame] | 6390 | // We can't check arbitrary value-dependent arguments. |
| 6391 | if (ArgResult.get()->isValueDependent()) { |
| 6392 | Converted = TemplateArgument(ArgResult.get()); |
| 6393 | return ArgResult; |
| 6394 | } |
| 6395 | |
Richard Smith | f8379a0 | 2012-01-18 23:55:52 +0000 | [diff] [blame] | 6396 | // Widen the argument value to sizeof(parameter type). This is almost |
| 6397 | // always a no-op, except when the parameter type is bool. In |
| 6398 | // that case, this may extend the argument from 1 bit to 8 bits. |
| 6399 | QualType IntegerType = ParamType; |
| 6400 | if (const EnumType *Enum = IntegerType->getAs<EnumType>()) |
| 6401 | IntegerType = Enum->getDecl()->getIntegerType(); |
| 6402 | Value = Value.extOrTrunc(Context.getTypeSize(IntegerType)); |
| 6403 | |
Benjamin Kramer | 6003ad5 | 2012-06-07 15:09:51 +0000 | [diff] [blame] | 6404 | Converted = TemplateArgument(Context, Value, |
| 6405 | Context.getCanonicalType(ParamType)); |
Richard Smith | f8379a0 | 2012-01-18 23:55:52 +0000 | [diff] [blame] | 6406 | return ArgResult; |
| 6407 | } |
| 6408 | |
Richard Smith | 08b12f1 | 2011-10-27 22:11:44 +0000 | [diff] [blame] | 6409 | ExprResult ArgResult = DefaultLvalueConversion(Arg); |
| 6410 | if (ArgResult.isInvalid()) |
| 6411 | return ExprError(); |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6412 | Arg = ArgResult.get(); |
Richard Smith | 08b12f1 | 2011-10-27 22:11:44 +0000 | [diff] [blame] | 6413 | |
| 6414 | QualType ArgType = Arg->getType(); |
| 6415 | |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6416 | // C++ [temp.arg.nontype]p1: |
| 6417 | // A template-argument for a non-type, non-template |
| 6418 | // template-parameter shall be one of: |
| 6419 | // |
| 6420 | // -- an integral constant-expression of integral or enumeration |
| 6421 | // type; or |
| 6422 | // -- the name of a non-type template-parameter; or |
Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 6423 | llvm::APSInt Value; |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 6424 | if (!ArgType->isIntegralOrEnumerationType()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6425 | Diag(Arg->getBeginLoc(), diag::err_template_arg_not_integral_or_enumeral) |
| 6426 | << ArgType << Arg->getSourceRange(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6427 | Diag(Param->getLocation(), diag::note_template_param_here); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6428 | return ExprError(); |
Richard Smith | f4c51d9 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 6429 | } else if (!Arg->isValueDependent()) { |
Douglas Gregor | e2b3744 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 6430 | class TmplArgICEDiagnoser : public VerifyICEDiagnoser { |
| 6431 | QualType T; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6432 | |
Douglas Gregor | e2b3744 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 6433 | public: |
| 6434 | TmplArgICEDiagnoser(QualType T) : T(T) { } |
Craig Topper | e14c0f8 | 2014-03-12 04:55:44 +0000 | [diff] [blame] | 6435 | |
| 6436 | void diagnoseNotICE(Sema &S, SourceLocation Loc, |
| 6437 | SourceRange SR) override { |
Douglas Gregor | e2b3744 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 6438 | S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR; |
| 6439 | } |
| 6440 | } Diagnoser(ArgType); |
| 6441 | |
| 6442 | Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser, |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6443 | false).get(); |
Richard Smith | f4c51d9 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 6444 | if (!Arg) |
| 6445 | return ExprError(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6446 | } |
| 6447 | |
Richard Smith | d663fdd | 2014-12-17 20:42:37 +0000 | [diff] [blame] | 6448 | // From here on out, all we care about is the unqualified form |
| 6449 | // of the argument type. |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6450 | ArgType = ArgType.getUnqualifiedType(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6451 | |
| 6452 | // Try to convert the argument to the parameter's type. |
Douglas Gregor | 4d0c38a | 2009-11-04 21:50:46 +0000 | [diff] [blame] | 6453 | if (Context.hasSameType(ParamType, ArgType)) { |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6454 | // Okay: no conversion necessary |
John McCall | 8cb679e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6455 | } else if (ParamType->isBooleanType()) { |
| 6456 | // This is an integral-to-boolean conversion. |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6457 | Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).get(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6458 | } else if (IsIntegralPromotion(Arg, ArgType, ParamType) || |
| 6459 | !ParamType->isEnumeralType()) { |
| 6460 | // This is an integral promotion or conversion. |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6461 | Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).get(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6462 | } else { |
| 6463 | // We can't perform this conversion. |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6464 | Diag(Arg->getBeginLoc(), diag::err_template_arg_not_convertible) |
| 6465 | << Arg->getType() << ParamType << Arg->getSourceRange(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6466 | Diag(Param->getLocation(), diag::note_template_param_here); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6467 | return ExprError(); |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6468 | } |
| 6469 | |
Douglas Gregor | b4f4d51 | 2011-05-04 21:55:00 +0000 | [diff] [blame] | 6470 | // Add the value of this argument to the list of converted |
| 6471 | // arguments. We use the bitwidth and signedness of the template |
| 6472 | // parameter. |
| 6473 | if (Arg->isValueDependent()) { |
| 6474 | // The argument is value-dependent. Create a new |
| 6475 | // TemplateArgument with the converted expression. |
| 6476 | Converted = TemplateArgument(Arg); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6477 | return Arg; |
Douglas Gregor | b4f4d51 | 2011-05-04 21:55:00 +0000 | [diff] [blame] | 6478 | } |
| 6479 | |
Douglas Gregor | 52aba87 | 2009-03-14 00:20:21 +0000 | [diff] [blame] | 6480 | QualType IntegerType = Context.getCanonicalType(ParamType); |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 6481 | if (const EnumType *Enum = IntegerType->getAs<EnumType>()) |
Douglas Gregor | 74eba0b | 2009-06-11 18:10:32 +0000 | [diff] [blame] | 6482 | IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType()); |
Douglas Gregor | 52aba87 | 2009-03-14 00:20:21 +0000 | [diff] [blame] | 6483 | |
Douglas Gregor | b4f4d51 | 2011-05-04 21:55:00 +0000 | [diff] [blame] | 6484 | if (ParamType->isBooleanType()) { |
| 6485 | // Value must be zero or one. |
| 6486 | Value = Value != 0; |
| 6487 | unsigned AllowedBits = Context.getTypeSize(IntegerType); |
| 6488 | if (Value.getBitWidth() != AllowedBits) |
| 6489 | Value = Value.extOrTrunc(AllowedBits); |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 6490 | Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType()); |
Douglas Gregor | b4f4d51 | 2011-05-04 21:55:00 +0000 | [diff] [blame] | 6491 | } else { |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6492 | llvm::APSInt OldValue = Value; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6493 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6494 | // Coerce the template argument's value to the value it will have |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6495 | // based on the template parameter's type. |
Douglas Gregor | a14cb9f | 2010-03-26 00:39:40 +0000 | [diff] [blame] | 6496 | unsigned AllowedBits = Context.getTypeSize(IntegerType); |
Douglas Gregor | a14cb9f | 2010-03-26 00:39:40 +0000 | [diff] [blame] | 6497 | if (Value.getBitWidth() != AllowedBits) |
Jay Foad | 6d4db0c | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 6498 | Value = Value.extOrTrunc(AllowedBits); |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 6499 | Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType()); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6500 | |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6501 | // Complain if an unsigned parameter received a negative value. |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 6502 | if (IntegerType->isUnsignedIntegerOrEnumerationType() |
Douglas Gregor | b4f4d51 | 2011-05-04 21:55:00 +0000 | [diff] [blame] | 6503 | && (OldValue.isSigned() && OldValue.isNegative())) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6504 | Diag(Arg->getBeginLoc(), diag::warn_template_arg_negative) |
| 6505 | << OldValue.toString(10) << Value.toString(10) << Param->getType() |
| 6506 | << Arg->getSourceRange(); |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6507 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6508 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6509 | |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6510 | // Complain if we overflowed the template parameter's type. |
| 6511 | unsigned RequiredBits; |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 6512 | if (IntegerType->isUnsignedIntegerOrEnumerationType()) |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6513 | RequiredBits = OldValue.getActiveBits(); |
| 6514 | else if (OldValue.isUnsigned()) |
| 6515 | RequiredBits = OldValue.getActiveBits() + 1; |
| 6516 | else |
| 6517 | RequiredBits = OldValue.getMinSignedBits(); |
| 6518 | if (RequiredBits > AllowedBits) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6519 | Diag(Arg->getBeginLoc(), diag::warn_template_arg_too_large) |
| 6520 | << OldValue.toString(10) << Value.toString(10) << Param->getType() |
| 6521 | << Arg->getSourceRange(); |
Douglas Gregor | bb3d786 | 2010-03-26 02:38:37 +0000 | [diff] [blame] | 6522 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6523 | } |
Douglas Gregor | 52aba87 | 2009-03-14 00:20:21 +0000 | [diff] [blame] | 6524 | } |
Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 6525 | |
Benjamin Kramer | 6003ad5 | 2012-06-07 15:09:51 +0000 | [diff] [blame] | 6526 | Converted = TemplateArgument(Context, Value, |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6527 | ParamType->isEnumeralType() |
Douglas Gregor | 3d63a9e | 2011-08-09 01:55:14 +0000 | [diff] [blame] | 6528 | ? Context.getCanonicalType(ParamType) |
| 6529 | : IntegerType); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6530 | return Arg; |
Douglas Gregor | 8656040 | 2009-02-10 23:36:10 +0000 | [diff] [blame] | 6531 | } |
Douglas Gregor | 3a7796b | 2009-02-11 00:19:33 +0000 | [diff] [blame] | 6532 | |
Richard Smith | 08b12f1 | 2011-10-27 22:11:44 +0000 | [diff] [blame] | 6533 | QualType ArgType = Arg->getType(); |
John McCall | 16df1e5 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 6534 | DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction |
| 6535 | |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6536 | // Handle pointer-to-function, reference-to-function, and |
| 6537 | // pointer-to-member-function all in (roughly) the same way. |
| 6538 | if (// -- For a non-type template-parameter of type pointer to |
| 6539 | // function, only the function-to-pointer conversion (4.3) is |
| 6540 | // applied. If the template-argument represents a set of |
| 6541 | // overloaded functions (or a pointer to such), the matching |
| 6542 | // function is selected from the set (13.4). |
| 6543 | (ParamType->isPointerType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 6544 | ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) || |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6545 | // -- For a non-type template-parameter of type reference to |
| 6546 | // function, no conversions apply. If the template-argument |
| 6547 | // represents a set of overloaded functions, the matching |
| 6548 | // function is selected from the set (13.4). |
| 6549 | (ParamType->isReferenceType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 6550 | ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) || |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6551 | // -- For a non-type template-parameter of type pointer to |
| 6552 | // member function, no conversions apply. If the |
| 6553 | // template-argument represents a set of overloaded member |
| 6554 | // functions, the matching member function is selected from |
| 6555 | // the set (13.4). |
| 6556 | (ParamType->isMemberPointerType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 6557 | ParamType->getAs<MemberPointerType>()->getPointeeType() |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6558 | ->isFunctionType())) { |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6559 | |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6560 | if (Arg->getType() == Context.OverloadTy) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6561 | if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType, |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6562 | true, |
| 6563 | FoundResult)) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6564 | if (DiagnoseUseOfDecl(Fn, Arg->getBeginLoc())) |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6565 | return ExprError(); |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6566 | |
| 6567 | Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn); |
| 6568 | ArgType = Arg->getType(); |
| 6569 | } else |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6570 | return ExprError(); |
Douglas Gregor | 3a7796b | 2009-02-11 00:19:33 +0000 | [diff] [blame] | 6571 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6572 | |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6573 | if (!ParamType->isMemberPointerType()) { |
| 6574 | if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param, |
| 6575 | ParamType, |
| 6576 | Arg, Converted)) |
| 6577 | return ExprError(); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6578 | return Arg; |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6579 | } |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6580 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6581 | if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg, |
| 6582 | Converted)) |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6583 | return ExprError(); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6584 | return Arg; |
Douglas Gregor | 3a7796b | 2009-02-11 00:19:33 +0000 | [diff] [blame] | 6585 | } |
| 6586 | |
Chris Lattner | 696197c | 2009-02-20 21:37:53 +0000 | [diff] [blame] | 6587 | if (ParamType->isPointerType()) { |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6588 | // -- for a non-type template-parameter of type pointer to |
| 6589 | // object, qualification conversions (4.4) and the |
| 6590 | // array-to-pointer conversion (4.2) are applied. |
Sebastian Redl | 576fd42 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 6591 | // C++0x also allows a value of std::nullptr_t. |
Eli Friedman | a170cd6 | 2010-08-05 02:49:48 +0000 | [diff] [blame] | 6592 | assert(ParamType->getPointeeType()->isIncompleteOrObjectType() && |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6593 | "Only object pointers allowed here"); |
Douglas Gregor | a9faa44 | 2009-02-11 00:44:29 +0000 | [diff] [blame] | 6594 | |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6595 | if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param, |
| 6596 | ParamType, |
| 6597 | Arg, Converted)) |
| 6598 | return ExprError(); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6599 | return Arg; |
Douglas Gregor | a9faa44 | 2009-02-11 00:44:29 +0000 | [diff] [blame] | 6600 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6601 | |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 6602 | if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) { |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6603 | // -- For a non-type template-parameter of type reference to |
| 6604 | // object, no conversions apply. The type referred to by the |
| 6605 | // reference may be more cv-qualified than the (otherwise |
| 6606 | // identical) type of the template-argument. The |
| 6607 | // template-parameter is bound directly to the |
| 6608 | // template-argument, which must be an lvalue. |
Eli Friedman | a170cd6 | 2010-08-05 02:49:48 +0000 | [diff] [blame] | 6609 | assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() && |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6610 | "Only object references allowed here"); |
Douglas Gregor | a9faa44 | 2009-02-11 00:44:29 +0000 | [diff] [blame] | 6611 | |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6612 | if (Arg->getType() == Context.OverloadTy) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6613 | if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, |
| 6614 | ParamRefType->getPointeeType(), |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6615 | true, |
| 6616 | FoundResult)) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 6617 | if (DiagnoseUseOfDecl(Fn, Arg->getBeginLoc())) |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6618 | return ExprError(); |
Douglas Gregor | 064fdb2 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 6619 | |
| 6620 | Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn); |
| 6621 | ArgType = Arg->getType(); |
| 6622 | } else |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6623 | return ExprError(); |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6624 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6625 | |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6626 | if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param, |
| 6627 | ParamType, |
| 6628 | Arg, Converted)) |
| 6629 | return ExprError(); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6630 | return Arg; |
Douglas Gregor | 6f233ef | 2009-02-11 01:18:59 +0000 | [diff] [blame] | 6631 | } |
Douglas Gregor | 0e55853 | 2009-02-11 16:16:59 +0000 | [diff] [blame] | 6632 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6633 | // Deal with parameters of type std::nullptr_t. |
| 6634 | if (ParamType->isNullPtrType()) { |
| 6635 | if (Arg->isTypeDependent() || Arg->isValueDependent()) { |
| 6636 | Converted = TemplateArgument(Arg); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6637 | return Arg; |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6638 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6639 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6640 | switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) { |
| 6641 | case NPV_NotNullPointer: |
| 6642 | Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible) |
| 6643 | << Arg->getType() << ParamType; |
| 6644 | Diag(Param->getLocation(), diag::note_template_param_here); |
| 6645 | return ExprError(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6646 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6647 | case NPV_Error: |
| 6648 | return ExprError(); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6649 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6650 | case NPV_NullPointer: |
Richard Smith | bc8c5b5 | 2012-04-26 01:51:03 +0000 | [diff] [blame] | 6651 | Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null); |
Richard Smith | 78bb36f | 2014-07-24 02:27:39 +0000 | [diff] [blame] | 6652 | Converted = TemplateArgument(Context.getCanonicalType(ParamType), |
| 6653 | /*isNullPtr*/true); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6654 | return Arg; |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6655 | } |
| 6656 | } |
| 6657 | |
Douglas Gregor | 0e55853 | 2009-02-11 16:16:59 +0000 | [diff] [blame] | 6658 | // -- For a non-type template-parameter of type pointer to data |
| 6659 | // member, qualification conversions (4.4) are applied. |
| 6660 | assert(ParamType->isMemberPointerType() && "Only pointers to members remain"); |
| 6661 | |
Douglas Gregor | 20fdef3 | 2012-04-10 17:08:25 +0000 | [diff] [blame] | 6662 | if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg, |
| 6663 | Converted)) |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6664 | return ExprError(); |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6665 | return Arg; |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 6666 | } |
| 6667 | |
Richard Smith | 26b86ea | 2016-12-31 21:41:23 +0000 | [diff] [blame] | 6668 | static void DiagnoseTemplateParameterListArityMismatch( |
| 6669 | Sema &S, TemplateParameterList *New, TemplateParameterList *Old, |
| 6670 | Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc); |
| 6671 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6672 | /// Check a template argument against its corresponding |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 6673 | /// template template parameter. |
| 6674 | /// |
| 6675 | /// This routine implements the semantics of C++ [temp.arg.template]. |
| 6676 | /// It returns true if an error occurred, and false otherwise. |
Richard Smith | 5d33102 | 2018-03-08 01:07:33 +0000 | [diff] [blame] | 6677 | bool Sema::CheckTemplateTemplateArgument(TemplateParameterList *Params, |
| 6678 | TemplateArgumentLoc &Arg) { |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6679 | TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern(); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 6680 | TemplateDecl *Template = Name.getAsTemplateDecl(); |
| 6681 | if (!Template) { |
| 6682 | // Any dependent template name is fine. |
| 6683 | assert(Name.isDependent() && "Non-dependent template isn't a declaration?"); |
| 6684 | return false; |
| 6685 | } |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 6686 | |
Richard Smith | 26b86ea | 2016-12-31 21:41:23 +0000 | [diff] [blame] | 6687 | if (Template->isInvalidDecl()) |
| 6688 | return true; |
| 6689 | |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 6690 | // C++0x [temp.arg.template]p1: |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 6691 | // A template-argument for a template template-parameter shall be |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 6692 | // the name of a class template or an alias template, expressed as an |
| 6693 | // id-expression. When the template-argument names a class template, only |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 6694 | // primary class templates are considered when matching the |
| 6695 | // template template argument with the corresponding parameter; |
| 6696 | // partial specializations are not considered even if their |
| 6697 | // parameter lists match that of the template template parameter. |
Douglas Gregor | d522205 | 2009-06-12 19:43:02 +0000 | [diff] [blame] | 6698 | // |
| 6699 | // Note that we also allow template template parameters here, which |
| 6700 | // will happen when we are dealing with, e.g., class template |
| 6701 | // partial specializations. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6702 | if (!isa<ClassTemplateDecl>(Template) && |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 6703 | !isa<TemplateTemplateParmDecl>(Template) && |
David Majnemer | c2406d4 | 2016-07-11 17:09:56 +0000 | [diff] [blame] | 6704 | !isa<TypeAliasTemplateDecl>(Template) && |
| 6705 | !isa<BuiltinTemplateDecl>(Template)) { |
| 6706 | assert(isa<FunctionTemplateDecl>(Template) && |
| 6707 | "Only function templates are possible here"); |
Faisal Vali | b8b04f8 | 2016-03-26 20:46:45 +0000 | [diff] [blame] | 6708 | Diag(Arg.getLocation(), diag::err_template_arg_not_valid_template); |
David Majnemer | c2406d4 | 2016-07-11 17:09:56 +0000 | [diff] [blame] | 6709 | Diag(Template->getLocation(), diag::note_template_arg_refers_here_func) |
| 6710 | << Template; |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 6711 | } |
| 6712 | |
Richard Smith | 26b86ea | 2016-12-31 21:41:23 +0000 | [diff] [blame] | 6713 | // C++1z [temp.arg.template]p3: (DR 150) |
| 6714 | // A template-argument matches a template template-parameter P when P |
| 6715 | // is at least as specialized as the template-argument A. |
| 6716 | if (getLangOpts().RelaxedTemplateTemplateArgs) { |
| 6717 | // Quick check for the common case: |
| 6718 | // If P contains a parameter pack, then A [...] matches P if each of A's |
| 6719 | // template parameters matches the corresponding template parameter in |
| 6720 | // the template-parameter-list of P. |
| 6721 | if (TemplateParameterListsAreEqual( |
| 6722 | Template->getTemplateParameters(), Params, false, |
| 6723 | TPL_TemplateTemplateArgumentMatch, Arg.getLocation())) |
| 6724 | return false; |
| 6725 | |
| 6726 | if (isTemplateTemplateParameterAtLeastAsSpecializedAs(Params, Template, |
| 6727 | Arg.getLocation())) |
| 6728 | return false; |
| 6729 | // FIXME: Produce better diagnostics for deduction failures. |
| 6730 | } |
| 6731 | |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 6732 | return !TemplateParameterListsAreEqual(Template->getTemplateParameters(), |
Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 6733 | Params, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6734 | true, |
Douglas Gregor | 19ac2d6 | 2009-11-12 16:20:59 +0000 | [diff] [blame] | 6735 | TPL_TemplateTemplateArgumentMatch, |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 6736 | Arg.getLocation()); |
Douglas Gregor | d32e028 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 6737 | } |
| 6738 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6739 | /// Given a non-type template argument that refers to a |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6740 | /// declaration and the type of its corresponding non-type template |
| 6741 | /// parameter, produce an expression that properly refers to that |
| 6742 | /// declaration. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6743 | ExprResult |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6744 | Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg, |
| 6745 | QualType ParamType, |
| 6746 | SourceLocation Loc) { |
David Blaikie | dc601e3 | 2013-02-27 22:10:40 +0000 | [diff] [blame] | 6747 | // C++ [temp.param]p8: |
| 6748 | // |
| 6749 | // A non-type template-parameter of type "array of T" or |
| 6750 | // "function returning T" is adjusted to be of type "pointer to |
| 6751 | // T" or "pointer to function returning T", respectively. |
| 6752 | if (ParamType->isArrayType()) |
| 6753 | ParamType = Context.getArrayDecayedType(ParamType); |
| 6754 | else if (ParamType->isFunctionType()) |
| 6755 | ParamType = Context.getPointerType(ParamType); |
| 6756 | |
Douglas Gregor | 31f55dc | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 6757 | // For a NULL non-type template argument, return nullptr casted to the |
| 6758 | // parameter's type. |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6759 | if (Arg.getKind() == TemplateArgument::NullPtr) { |
Douglas Gregor | 31f55dc | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 6760 | return ImpCastExprToType( |
| 6761 | new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc), |
| 6762 | ParamType, |
| 6763 | ParamType->getAs<MemberPointerType>() |
| 6764 | ? CK_NullToMemberPointer |
| 6765 | : CK_NullToPointer); |
| 6766 | } |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 6767 | assert(Arg.getKind() == TemplateArgument::Declaration && |
| 6768 | "Only declaration template arguments permitted here"); |
| 6769 | |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 6770 | ValueDecl *VD = Arg.getAsDecl(); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6771 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6772 | if (VD->getDeclContext()->isRecord() && |
David Majnemer | 3ae0bfa | 2013-10-26 05:02:13 +0000 | [diff] [blame] | 6773 | (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD) || |
| 6774 | isa<IndirectFieldDecl>(VD))) { |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6775 | // If the value is a class member, we might have a pointer-to-member. |
| 6776 | // Determine whether the non-type template template parameter is of |
| 6777 | // pointer-to-member type. If so, we need to build an appropriate |
| 6778 | // expression for a pointer-to-member, since a "normal" DeclRefExpr |
| 6779 | // would refer to the member itself. |
| 6780 | if (ParamType->isMemberPointerType()) { |
| 6781 | QualType ClassType |
| 6782 | = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext())); |
| 6783 | NestedNameSpecifier *Qualifier |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6784 | = NestedNameSpecifier::Create(Context, nullptr, false, |
John McCall | b268a28 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 6785 | ClassType.getTypePtr()); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6786 | CXXScopeSpec SS; |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 6787 | SS.MakeTrivial(Context, Qualifier, Loc); |
John McCall | feb624a | 2010-11-23 20:48:44 +0000 | [diff] [blame] | 6788 | |
| 6789 | // The actual value-ness of this is unimportant, but for |
| 6790 | // internal consistency's sake, references to instance methods |
| 6791 | // are r-values. |
| 6792 | ExprValueKind VK = VK_LValue; |
| 6793 | if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance()) |
| 6794 | VK = VK_RValue; |
| 6795 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6796 | ExprResult RefExpr = BuildDeclRefExpr(VD, |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6797 | VD->getType().getNonReferenceType(), |
John McCall | feb624a | 2010-11-23 20:48:44 +0000 | [diff] [blame] | 6798 | VK, |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6799 | Loc, |
| 6800 | &SS); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6801 | if (RefExpr.isInvalid()) |
| 6802 | return ExprError(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6803 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6804 | RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get()); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6805 | |
Douglas Gregor | fabf95d | 2010-04-30 21:46:38 +0000 | [diff] [blame] | 6806 | // We might need to perform a trailing qualification conversion, since |
| 6807 | // the element type on the parameter could be more qualified than the |
| 6808 | // element type in the expression we constructed. |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6809 | bool ObjCLifetimeConversion; |
Douglas Gregor | fabf95d | 2010-04-30 21:46:38 +0000 | [diff] [blame] | 6810 | if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(), |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6811 | ParamType.getUnqualifiedType(), false, |
| 6812 | ObjCLifetimeConversion)) |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6813 | RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6814 | |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6815 | assert(!RefExpr.isInvalid() && |
| 6816 | Context.hasSameType(((Expr*) RefExpr.get())->getType(), |
Douglas Gregor | fabf95d | 2010-04-30 21:46:38 +0000 | [diff] [blame] | 6817 | ParamType.getUnqualifiedType())); |
Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6818 | return RefExpr; |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6819 | } |
| 6820 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6821 | |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6822 | QualType T = VD->getType().getNonReferenceType(); |
Douglas Gregor | effe2a1 | 2013-01-16 00:52:15 +0000 | [diff] [blame] | 6823 | |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6824 | if (ParamType->isPointerType()) { |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6825 | // When the non-type template parameter is a pointer, take the |
| 6826 | // address of the declaration. |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6827 | ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6828 | if (RefExpr.isInvalid()) |
| 6829 | return ExprError(); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6830 | |
Richard Smith | fc6fca1 | 2017-01-28 00:38:35 +0000 | [diff] [blame] | 6831 | if (!Context.hasSameUnqualifiedType(ParamType->getPointeeType(), T) && |
| 6832 | (T->isFunctionType() || T->isArrayType())) { |
| 6833 | // Decay functions and arrays unless we're forming a pointer to array. |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6834 | RefExpr = DefaultFunctionArrayConversion(RefExpr.get()); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6835 | if (RefExpr.isInvalid()) |
| 6836 | return ExprError(); |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6837 | |
Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6838 | return RefExpr; |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6839 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6840 | |
Douglas Gregor | b242683d | 2010-04-01 18:32:35 +0000 | [diff] [blame] | 6841 | // Take the address of everything else |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6842 | return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get()); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6843 | } |
| 6844 | |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6845 | ExprValueKind VK = VK_RValue; |
| 6846 | |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6847 | // If the non-type template parameter has reference type, qualify the |
| 6848 | // resulting declaration reference with the extra qualifiers on the |
| 6849 | // type that the reference refers to. |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6850 | if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) { |
| 6851 | VK = VK_LValue; |
| 6852 | T = Context.getQualifiedType(T, |
| 6853 | TargetRef->getPointeeType().getQualifiers()); |
Douglas Gregor | effe2a1 | 2013-01-16 00:52:15 +0000 | [diff] [blame] | 6854 | } else if (isa<FunctionDecl>(VD)) { |
| 6855 | // References to functions are always lvalues. |
| 6856 | VK = VK_LValue; |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6857 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6858 | |
John McCall | 7decc9e | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 6859 | return BuildDeclRefExpr(VD, T, VK, Loc); |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6860 | } |
| 6861 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6862 | /// Construct a new expression that refers to the given |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6863 | /// integral template argument with the given source-location |
| 6864 | /// information. |
| 6865 | /// |
| 6866 | /// This routine takes care of the mapping from an integral template |
| 6867 | /// argument (which may have any integral type) to the appropriate |
| 6868 | /// literal value. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6869 | ExprResult |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6870 | Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg, |
| 6871 | SourceLocation Loc) { |
| 6872 | assert(Arg.getKind() == TemplateArgument::Integral && |
Douglas Gregor | a8bac7f | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 6873 | "Operation is only valid for integral template arguments"); |
Benjamin Kramer | 3d3ddce | 2012-11-21 17:42:47 +0000 | [diff] [blame] | 6874 | QualType OrigT = Arg.getIntegralType(); |
| 6875 | |
| 6876 | // If this is an enum type that we're instantiating, we need to use an integer |
| 6877 | // type the same size as the enumerator. We don't want to build an |
| 6878 | // IntegerLiteral with enum type. The integer type of an enum type can be of |
| 6879 | // any integral type with C++11 enum classes, make sure we create the right |
| 6880 | // type of literal for it. |
| 6881 | QualType T = OrigT; |
| 6882 | if (const EnumType *ET = OrigT->getAs<EnumType>()) |
| 6883 | T = ET->getDecl()->getIntegerType(); |
| 6884 | |
| 6885 | Expr *E; |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 6886 | if (T->isAnyCharacterType()) { |
| 6887 | CharacterLiteral::CharacterKind Kind; |
| 6888 | if (T->isWideCharType()) |
| 6889 | Kind = CharacterLiteral::Wide; |
Richard Smith | 3a8244d | 2018-05-01 05:02:45 +0000 | [diff] [blame] | 6890 | else if (T->isChar8Type() && getLangOpts().Char8) |
| 6891 | Kind = CharacterLiteral::UTF8; |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 6892 | else if (T->isChar16Type()) |
| 6893 | Kind = CharacterLiteral::UTF16; |
| 6894 | else if (T->isChar32Type()) |
| 6895 | Kind = CharacterLiteral::UTF32; |
| 6896 | else |
| 6897 | Kind = CharacterLiteral::Ascii; |
| 6898 | |
Benjamin Kramer | 3d3ddce | 2012-11-21 17:42:47 +0000 | [diff] [blame] | 6899 | E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(), |
| 6900 | Kind, T, Loc); |
| 6901 | } else if (T->isBooleanType()) { |
| 6902 | E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(), |
| 6903 | T, Loc); |
| 6904 | } else if (T->isNullPtrType()) { |
| 6905 | E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc); |
| 6906 | } else { |
| 6907 | E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc); |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 6908 | } |
| 6909 | |
Benjamin Kramer | 3d3ddce | 2012-11-21 17:42:47 +0000 | [diff] [blame] | 6910 | if (OrigT->isEnumeralType()) { |
John McCall | 6730e4d | 2011-07-15 07:47:58 +0000 | [diff] [blame] | 6911 | // FIXME: This is a hack. We need a better way to handle substituted |
| 6912 | // non-type template parameters. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6913 | E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E, |
| 6914 | nullptr, |
Benjamin Kramer | 3d3ddce | 2012-11-21 17:42:47 +0000 | [diff] [blame] | 6915 | Context.getTrivialTypeSourceInfo(OrigT, Loc), |
John McCall | 6730e4d | 2011-07-15 07:47:58 +0000 | [diff] [blame] | 6916 | Loc, Loc); |
| 6917 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 6918 | |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 6919 | return E; |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 6920 | } |
| 6921 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6922 | /// Match two template parameters within template parameter lists. |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6923 | static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old, |
| 6924 | bool Complain, |
| 6925 | Sema::TemplateParameterListEqualKind Kind, |
| 6926 | SourceLocation TemplateArgLoc) { |
| 6927 | // Check the actual kind (type, non-type, template). |
| 6928 | if (Old->getKind() != New->getKind()) { |
| 6929 | if (Complain) { |
| 6930 | unsigned NextDiag = diag::err_template_param_different_kind; |
| 6931 | if (TemplateArgLoc.isValid()) { |
| 6932 | S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch); |
| 6933 | NextDiag = diag::note_template_param_different_kind; |
| 6934 | } |
| 6935 | S.Diag(New->getLocation(), NextDiag) |
| 6936 | << (Kind != Sema::TPL_TemplateMatch); |
| 6937 | S.Diag(Old->getLocation(), diag::note_template_prev_declaration) |
| 6938 | << (Kind != Sema::TPL_TemplateMatch); |
| 6939 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6940 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6941 | return false; |
| 6942 | } |
| 6943 | |
Richard Smith | 26b86ea | 2016-12-31 21:41:23 +0000 | [diff] [blame] | 6944 | // Check that both are parameter packs or neither are parameter packs. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6945 | // However, if we are matching a template template argument to a |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 6946 | // template template parameter, the template template parameter can have |
| 6947 | // a parameter pack where the template template argument does not. |
| 6948 | if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() && |
| 6949 | !(Kind == Sema::TPL_TemplateTemplateArgumentMatch && |
| 6950 | Old->isTemplateParameterPack())) { |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6951 | if (Complain) { |
| 6952 | unsigned NextDiag = diag::err_template_parameter_pack_non_pack; |
| 6953 | if (TemplateArgLoc.isValid()) { |
| 6954 | S.Diag(TemplateArgLoc, |
| 6955 | diag::err_template_arg_template_params_mismatch); |
| 6956 | NextDiag = diag::note_template_parameter_pack_non_pack; |
| 6957 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6958 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6959 | unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0 |
| 6960 | : isa<NonTypeTemplateParmDecl>(New)? 1 |
| 6961 | : 2; |
| 6962 | S.Diag(New->getLocation(), NextDiag) |
| 6963 | << ParamKind << New->isParameterPack(); |
| 6964 | S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here) |
| 6965 | << ParamKind << Old->isParameterPack(); |
| 6966 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6967 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6968 | return false; |
| 6969 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6970 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6971 | // For non-type template parameters, check the type of the parameter. |
| 6972 | if (NonTypeTemplateParmDecl *OldNTTP |
| 6973 | = dyn_cast<NonTypeTemplateParmDecl>(Old)) { |
| 6974 | NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6975 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6976 | // If we are matching a template template argument to a template |
| 6977 | // template parameter and one of the non-type template parameter types |
Richard Smith | 1389418 | 2017-04-13 21:37:24 +0000 | [diff] [blame] | 6978 | // is dependent, then we must wait until template instantiation time |
| 6979 | // to actually compare the arguments. |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6980 | if (Kind == Sema::TPL_TemplateTemplateArgumentMatch && |
Richard Smith | 1389418 | 2017-04-13 21:37:24 +0000 | [diff] [blame] | 6981 | (OldNTTP->getType()->isDependentType() || |
| 6982 | NewNTTP->getType()->isDependentType())) |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6983 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6984 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6985 | if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) { |
| 6986 | if (Complain) { |
| 6987 | unsigned NextDiag = diag::err_template_nontype_parm_different_type; |
| 6988 | if (TemplateArgLoc.isValid()) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6989 | S.Diag(TemplateArgLoc, |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 6990 | diag::err_template_arg_template_params_mismatch); |
| 6991 | NextDiag = diag::note_template_nontype_parm_different_type; |
| 6992 | } |
| 6993 | S.Diag(NewNTTP->getLocation(), NextDiag) |
| 6994 | << NewNTTP->getType() |
| 6995 | << (Kind != Sema::TPL_TemplateMatch); |
| 6996 | S.Diag(OldNTTP->getLocation(), |
| 6997 | diag::note_template_nontype_parm_prev_declaration) |
| 6998 | << OldNTTP->getType(); |
| 6999 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7000 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7001 | return false; |
| 7002 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7003 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7004 | return true; |
| 7005 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7006 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7007 | // For template template parameters, check the template parameter types. |
| 7008 | // The template parameter lists of template template |
| 7009 | // parameters must agree. |
| 7010 | if (TemplateTemplateParmDecl *OldTTP |
| 7011 | = dyn_cast<TemplateTemplateParmDecl>(Old)) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7012 | TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New); |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7013 | return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(), |
| 7014 | OldTTP->getTemplateParameters(), |
| 7015 | Complain, |
| 7016 | (Kind == Sema::TPL_TemplateMatch |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7017 | ? Sema::TPL_TemplateTemplateParmMatch |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7018 | : Kind), |
| 7019 | TemplateArgLoc); |
| 7020 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7021 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7022 | return true; |
| 7023 | } |
Douglas Gregor | d5cb1dd | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 7024 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7025 | /// Diagnose a known arity mismatch when comparing template argument |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7026 | /// lists. |
| 7027 | static |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7028 | void DiagnoseTemplateParameterListArityMismatch(Sema &S, |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7029 | TemplateParameterList *New, |
| 7030 | TemplateParameterList *Old, |
| 7031 | Sema::TemplateParameterListEqualKind Kind, |
| 7032 | SourceLocation TemplateArgLoc) { |
| 7033 | unsigned NextDiag = diag::err_template_param_list_different_arity; |
| 7034 | if (TemplateArgLoc.isValid()) { |
| 7035 | S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch); |
| 7036 | NextDiag = diag::note_template_param_list_different_arity; |
| 7037 | } |
| 7038 | S.Diag(New->getTemplateLoc(), NextDiag) |
| 7039 | << (New->size() > Old->size()) |
| 7040 | << (Kind != Sema::TPL_TemplateMatch) |
| 7041 | << SourceRange(New->getTemplateLoc(), New->getRAngleLoc()); |
| 7042 | S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration) |
| 7043 | << (Kind != Sema::TPL_TemplateMatch) |
| 7044 | << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc()); |
| 7045 | } |
| 7046 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7047 | /// Determine whether the given template parameter lists are |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7048 | /// equivalent. |
| 7049 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7050 | /// \param New The new template parameter list, typically written in the |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7051 | /// source code as part of a new template declaration. |
| 7052 | /// |
| 7053 | /// \param Old The old template parameter list, typically found via |
| 7054 | /// name lookup of the template declared with this template parameter |
| 7055 | /// list. |
| 7056 | /// |
| 7057 | /// \param Complain If true, this routine will produce a diagnostic if |
| 7058 | /// the template parameter lists are not equivalent. |
| 7059 | /// |
Douglas Gregor | 19ac2d6 | 2009-11-12 16:20:59 +0000 | [diff] [blame] | 7060 | /// \param Kind describes how we are to match the template parameter lists. |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 7061 | /// |
| 7062 | /// \param TemplateArgLoc If this source location is valid, then we |
| 7063 | /// are actually checking the template parameter list of a template |
| 7064 | /// argument (New) against the template parameter list of its |
| 7065 | /// corresponding template template parameter (Old). We produce |
| 7066 | /// slightly different diagnostics in this scenario. |
| 7067 | /// |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7068 | /// \returns True if the template parameter lists are equal, false |
| 7069 | /// otherwise. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7070 | bool |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7071 | Sema::TemplateParameterListsAreEqual(TemplateParameterList *New, |
| 7072 | TemplateParameterList *Old, |
| 7073 | bool Complain, |
Douglas Gregor | 19ac2d6 | 2009-11-12 16:20:59 +0000 | [diff] [blame] | 7074 | TemplateParameterListEqualKind Kind, |
Douglas Gregor | 85e0f66 | 2009-02-10 00:24:35 +0000 | [diff] [blame] | 7075 | SourceLocation TemplateArgLoc) { |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7076 | if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) { |
| 7077 | if (Complain) |
| 7078 | DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind, |
| 7079 | TemplateArgLoc); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7080 | |
| 7081 | return false; |
| 7082 | } |
| 7083 | |
Douglas Gregor | 641040a | 2011-01-12 23:45:44 +0000 | [diff] [blame] | 7084 | // C++0x [temp.arg.template]p3: |
| 7085 | // A template-argument matches a template template-parameter (call it P) |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 7086 | // when each of the template parameters in the template-parameter-list of |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 7087 | // the template-argument's corresponding class template or alias template |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 7088 | // (call it A) matches the corresponding template parameter in the |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7089 | // template-parameter-list of P. [...] |
| 7090 | TemplateParameterList::iterator NewParm = New->begin(); |
| 7091 | TemplateParameterList::iterator NewParmEnd = New->end(); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7092 | for (TemplateParameterList::iterator OldParm = Old->begin(), |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7093 | OldParmEnd = Old->end(); |
| 7094 | OldParm != OldParmEnd; ++OldParm) { |
Douglas Gregor | 018778a | 2011-01-13 18:47:47 +0000 | [diff] [blame] | 7095 | if (Kind != TPL_TemplateTemplateArgumentMatch || |
| 7096 | !(*OldParm)->isTemplateParameterPack()) { |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7097 | if (NewParm == NewParmEnd) { |
| 7098 | if (Complain) |
| 7099 | DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind, |
| 7100 | TemplateArgLoc); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7101 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7102 | return false; |
| 7103 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7104 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7105 | if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain, |
| 7106 | Kind, TemplateArgLoc)) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7107 | return false; |
| 7108 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7109 | ++NewParm; |
| 7110 | continue; |
| 7111 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7112 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7113 | // C++0x [temp.arg.template]p3: |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 7114 | // [...] When P's template- parameter-list contains a template parameter |
| 7115 | // pack (14.5.3), the template parameter pack will match zero or more |
| 7116 | // template parameters or template parameter packs in the |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7117 | // template-parameter-list of A with the same type and form as the |
| 7118 | // template parameter pack in P (ignoring whether those template |
| 7119 | // parameters are template parameter packs). |
| 7120 | for (; NewParm != NewParmEnd; ++NewParm) { |
| 7121 | if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain, |
| 7122 | Kind, TemplateArgLoc)) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7123 | return false; |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7124 | } |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7125 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7126 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7127 | // Make sure we exhausted all of the arguments. |
| 7128 | if (NewParm != NewParmEnd) { |
| 7129 | if (Complain) |
| 7130 | DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind, |
| 7131 | TemplateArgLoc); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7132 | |
Douglas Gregor | fd4344b | 2011-01-13 00:08:50 +0000 | [diff] [blame] | 7133 | return false; |
| 7134 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7135 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7136 | return true; |
| 7137 | } |
| 7138 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7139 | /// Check whether a template can be declared within this scope. |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7140 | /// |
| 7141 | /// If the template declaration is valid in this scope, returns |
| 7142 | /// false. Otherwise, issues a diagnostic and returns true. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7143 | bool |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7144 | Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) { |
Douglas Gregor | dd847ba | 2011-11-03 16:37:14 +0000 | [diff] [blame] | 7145 | if (!S) |
| 7146 | return false; |
| 7147 | |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7148 | // Find the nearest enclosing declaration scope. |
| 7149 | while ((S->getFlags() & Scope::DeclScope) == 0 || |
| 7150 | (S->getFlags() & Scope::TemplateParamScope) != 0) |
| 7151 | S = S->getParent(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7152 | |
Benjamin Kramer | 35e6fee | 2014-02-02 16:35:43 +0000 | [diff] [blame] | 7153 | // C++ [temp]p4: |
| 7154 | // A template [...] shall not have C linkage. |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 7155 | DeclContext *Ctx = S->getEntity(); |
Alex Lorenz | 560ae56 | 2016-11-02 15:46:34 +0000 | [diff] [blame] | 7156 | if (Ctx && Ctx->isExternCContext()) { |
| 7157 | Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage) |
| 7158 | << TemplateParams->getSourceRange(); |
| 7159 | if (const LinkageSpecDecl *LSD = Ctx->getExternCContext()) |
| 7160 | Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here); |
| 7161 | return true; |
| 7162 | } |
Richard Smith | 8df390f | 2016-09-08 23:14:54 +0000 | [diff] [blame] | 7163 | Ctx = Ctx->getRedeclContext(); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7164 | |
Benjamin Kramer | 35e6fee | 2014-02-02 16:35:43 +0000 | [diff] [blame] | 7165 | // C++ [temp]p2: |
| 7166 | // A template-declaration can appear only as a namespace scope or |
| 7167 | // class scope declaration. |
David Majnemer | 766e259 | 2013-10-22 04:14:18 +0000 | [diff] [blame] | 7168 | if (Ctx) { |
| 7169 | if (Ctx->isFileContext()) |
| 7170 | return false; |
| 7171 | if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) { |
| 7172 | // C++ [temp.mem]p2: |
| 7173 | // A local class shall not have member templates. |
| 7174 | if (RD->isLocalClass()) |
| 7175 | return Diag(TemplateParams->getTemplateLoc(), |
| 7176 | diag::err_template_inside_local_class) |
| 7177 | << TemplateParams->getSourceRange(); |
| 7178 | else |
| 7179 | return false; |
| 7180 | } |
| 7181 | } |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7182 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7183 | return Diag(TemplateParams->getTemplateLoc(), |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7184 | diag::err_template_outside_namespace_or_class_scope) |
| 7185 | << TemplateParams->getSourceRange(); |
Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 7186 | } |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7187 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7188 | /// Determine what kind of template specialization the given declaration |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7189 | /// is. |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 7190 | static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) { |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7191 | if (!D) |
| 7192 | return TSK_Undeclared; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7193 | |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 7194 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) |
| 7195 | return Record->getTemplateSpecializationKind(); |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7196 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) |
| 7197 | return Function->getTemplateSpecializationKind(); |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 7198 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) |
| 7199 | return Var->getTemplateSpecializationKind(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7200 | |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7201 | return TSK_Undeclared; |
| 7202 | } |
| 7203 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7204 | /// Check whether a specialization is well-formed in the current |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7205 | /// context. |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7206 | /// |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7207 | /// This routine determines whether a template specialization can be declared |
| 7208 | /// in the current context (C++ [temp.expl.spec]p2). |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7209 | /// |
| 7210 | /// \param S the semantic analysis object for which this check is being |
| 7211 | /// performed. |
| 7212 | /// |
| 7213 | /// \param Specialized the entity being specialized or instantiated, which |
| 7214 | /// may be a kind of template (class template, function template, etc.) or |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7215 | /// a member of a class template (member function, static data member, |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7216 | /// member class). |
| 7217 | /// |
| 7218 | /// \param PrevDecl the previous declaration of this entity, if any. |
| 7219 | /// |
| 7220 | /// \param Loc the location of the explicit specialization or instantiation of |
| 7221 | /// this entity. |
| 7222 | /// |
| 7223 | /// \param IsPartialSpecialization whether this is a partial specialization of |
| 7224 | /// a class template. |
| 7225 | /// |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7226 | /// \returns true if there was an error that we cannot recover from, false |
| 7227 | /// otherwise. |
| 7228 | static bool CheckTemplateSpecializationScope(Sema &S, |
| 7229 | NamedDecl *Specialized, |
| 7230 | NamedDecl *PrevDecl, |
| 7231 | SourceLocation Loc, |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7232 | bool IsPartialSpecialization) { |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7233 | // Keep these "kind" numbers in sync with the %select statements in the |
| 7234 | // various diagnostics emitted by this routine. |
| 7235 | int EntityKind = 0; |
Ted Kremenek | 7f1f3f6 | 2011-01-14 22:31:36 +0000 | [diff] [blame] | 7236 | if (isa<ClassTemplateDecl>(Specialized)) |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7237 | EntityKind = IsPartialSpecialization? 1 : 0; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7238 | else if (isa<VarTemplateDecl>(Specialized)) |
| 7239 | EntityKind = IsPartialSpecialization ? 3 : 2; |
Ted Kremenek | 7f1f3f6 | 2011-01-14 22:31:36 +0000 | [diff] [blame] | 7240 | else if (isa<FunctionTemplateDecl>(Specialized)) |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7241 | EntityKind = 4; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7242 | else if (isa<CXXMethodDecl>(Specialized)) |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7243 | EntityKind = 5; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7244 | else if (isa<VarDecl>(Specialized)) |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 7245 | EntityKind = 6; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7246 | else if (isa<RecordDecl>(Specialized)) |
| 7247 | EntityKind = 7; |
| 7248 | else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11) |
| 7249 | EntityKind = 8; |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7250 | else { |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 7251 | S.Diag(Loc, diag::err_template_spec_unknown_kind) |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 7252 | << S.getLangOpts().CPlusPlus11; |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7253 | S.Diag(Specialized->getLocation(), diag::note_specialized_entity); |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7254 | return true; |
| 7255 | } |
| 7256 | |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7257 | // C++ [temp.expl.spec]p2: |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7258 | // An explicit specialization may be declared in any scope in which |
| 7259 | // the corresponding primary template may be defined. |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 7260 | if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) { |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 7261 | S.Diag(Loc, diag::err_template_spec_decl_function_scope) |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7262 | << Specialized; |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7263 | return true; |
| 7264 | } |
Douglas Gregor | e4b0516 | 2009-10-07 17:21:34 +0000 | [diff] [blame] | 7265 | |
| 7266 | // C++ [temp.class.spec]p6: |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7267 | // A class template partial specialization may be declared in any |
| 7268 | // scope in which the primary template may be defined. |
| 7269 | DeclContext *SpecializedContext = |
| 7270 | Specialized->getDeclContext()->getRedeclContext(); |
| 7271 | DeclContext *DC = S.CurContext->getRedeclContext(); |
Richard Smith | a98f8fc | 2013-12-07 05:09:50 +0000 | [diff] [blame] | 7272 | |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7273 | // Make sure that this redeclaration (or definition) occurs in the same |
| 7274 | // scope or an enclosing namespace. |
| 7275 | if (!(DC->isFileContext() ? DC->Encloses(SpecializedContext) |
| 7276 | : DC->Equals(SpecializedContext))) { |
Richard Smith | a98f8fc | 2013-12-07 05:09:50 +0000 | [diff] [blame] | 7277 | if (isa<TranslationUnitDecl>(SpecializedContext)) |
| 7278 | S.Diag(Loc, diag::err_template_spec_redecl_global_scope) |
| 7279 | << EntityKind << Specialized; |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7280 | else { |
| 7281 | auto *ND = cast<NamedDecl>(SpecializedContext); |
Alexey Bataev | 0068cb2 | 2015-03-20 07:21:46 +0000 | [diff] [blame] | 7282 | int Diag = diag::err_template_spec_redecl_out_of_scope; |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7283 | if (S.getLangOpts().MicrosoftExt && !DC->isRecord()) |
Alexey Bataev | 0068cb2 | 2015-03-20 07:21:46 +0000 | [diff] [blame] | 7284 | Diag = diag::ext_ms_template_spec_redecl_out_of_scope; |
| 7285 | S.Diag(Loc, Diag) << EntityKind << Specialized |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7286 | << ND << isa<CXXRecordDecl>(ND); |
| 7287 | } |
Richard Smith | a98f8fc | 2013-12-07 05:09:50 +0000 | [diff] [blame] | 7288 | |
| 7289 | S.Diag(Specialized->getLocation(), diag::note_specialized_entity); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7290 | |
Richard Smith | c660c8f | 2018-03-16 13:36:56 +0000 | [diff] [blame] | 7291 | // Don't allow specializing in the wrong class during error recovery. |
| 7292 | // Otherwise, things can go horribly wrong. |
| 7293 | if (DC->isRecord()) |
| 7294 | return true; |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7295 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7296 | |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7297 | return false; |
| 7298 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7299 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7300 | static SourceRange findTemplateParameterInType(unsigned Depth, Expr *E) { |
| 7301 | if (!E->isTypeDependent()) |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7302 | return SourceLocation(); |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7303 | DependencyChecker Checker(Depth, /*IgnoreNonTypeDependent*/true); |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7304 | Checker.TraverseStmt(E); |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7305 | if (Checker.MatchLoc.isInvalid()) |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7306 | return E->getSourceRange(); |
| 7307 | return Checker.MatchLoc; |
| 7308 | } |
| 7309 | |
| 7310 | static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL) { |
| 7311 | if (!TL.getType()->isDependentType()) |
| 7312 | return SourceLocation(); |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7313 | DependencyChecker Checker(Depth, /*IgnoreNonTypeDependent*/true); |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7314 | Checker.TraverseTypeLoc(TL); |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7315 | if (Checker.MatchLoc.isInvalid()) |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7316 | return TL.getSourceRange(); |
| 7317 | return Checker.MatchLoc; |
| 7318 | } |
| 7319 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7320 | /// Subroutine of Sema::CheckTemplatePartialSpecializationArgs |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7321 | /// that checks non-type template partial specialization arguments. |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7322 | static bool CheckNonTypeTemplatePartialSpecializationArgs( |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7323 | Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param, |
| 7324 | const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument) { |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7325 | for (unsigned I = 0; I != NumArgs; ++I) { |
| 7326 | if (Args[I].getKind() == TemplateArgument::Pack) { |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 7327 | if (CheckNonTypeTemplatePartialSpecializationArgs( |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7328 | S, TemplateNameLoc, Param, Args[I].pack_begin(), |
| 7329 | Args[I].pack_size(), IsDefaultArgument)) |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7330 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7331 | |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7332 | continue; |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7333 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7334 | |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 7335 | if (Args[I].getKind() != TemplateArgument::Expression) |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7336 | continue; |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 7337 | |
| 7338 | Expr *ArgExpr = Args[I].getAsExpr(); |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7339 | |
Douglas Gregor | 98318c2 | 2011-01-03 21:37:45 +0000 | [diff] [blame] | 7340 | // We can have a pack expansion of any of the bullets below. |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7341 | if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr)) |
| 7342 | ArgExpr = Expansion->getPattern(); |
Douglas Gregor | ca4686d | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 7343 | |
| 7344 | // Strip off any implicit casts we added as part of type checking. |
| 7345 | while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) |
| 7346 | ArgExpr = ICE->getSubExpr(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7347 | |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7348 | // C++ [temp.class.spec]p8: |
| 7349 | // A non-type argument is non-specialized if it is the name of a |
| 7350 | // non-type parameter. All other non-type arguments are |
| 7351 | // specialized. |
| 7352 | // |
| 7353 | // Below, we check the two conditions that only apply to |
| 7354 | // specialized non-type arguments, so skip any non-specialized |
| 7355 | // arguments. |
| 7356 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr)) |
Douglas Gregor | ca4686d | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 7357 | if (isa<NonTypeTemplateParmDecl>(DRE->getDecl())) |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7358 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7359 | |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7360 | // C++ [temp.class.spec]p9: |
| 7361 | // Within the argument list of a class template partial |
| 7362 | // specialization, the following restrictions apply: |
| 7363 | // -- A partially specialized non-type argument expression |
| 7364 | // shall not involve a template parameter of the partial |
| 7365 | // specialization except when the argument expression is a |
| 7366 | // simple identifier. |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7367 | // -- The type of a template parameter corresponding to a |
| 7368 | // specialized non-type argument shall not be dependent on a |
| 7369 | // parameter of the specialization. |
| 7370 | // DR1315 removes the first bullet, leaving an incoherent set of rules. |
| 7371 | // We implement a compromise between the original rules and DR1315: |
| 7372 | // -- A specialized non-type template argument shall not be |
| 7373 | // type-dependent and the corresponding template parameter |
| 7374 | // shall have a non-dependent type. |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7375 | SourceRange ParamUseRange = |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7376 | findTemplateParameterInType(Param->getDepth(), ArgExpr); |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7377 | if (ParamUseRange.isValid()) { |
| 7378 | if (IsDefaultArgument) { |
| 7379 | S.Diag(TemplateNameLoc, |
| 7380 | diag::err_dependent_non_type_arg_in_partial_spec); |
| 7381 | S.Diag(ParamUseRange.getBegin(), |
| 7382 | diag::note_dependent_non_type_default_arg_in_partial_spec) |
| 7383 | << ParamUseRange; |
| 7384 | } else { |
| 7385 | S.Diag(ParamUseRange.getBegin(), |
| 7386 | diag::err_dependent_non_type_arg_in_partial_spec) |
| 7387 | << ParamUseRange; |
| 7388 | } |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7389 | return true; |
| 7390 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7391 | |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7392 | ParamUseRange = findTemplateParameter( |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7393 | Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc()); |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7394 | if (ParamUseRange.isValid()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 7395 | S.Diag(IsDefaultArgument ? TemplateNameLoc : ArgExpr->getBeginLoc(), |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7396 | diag::err_dependent_typed_non_type_arg_in_partial_spec) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 7397 | << Param->getType(); |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7398 | S.Diag(Param->getLocation(), diag::note_template_param_here) |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7399 | << (IsDefaultArgument ? ParamUseRange : SourceRange()) |
| 7400 | << ParamUseRange; |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7401 | return true; |
| 7402 | } |
| 7403 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7404 | |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7405 | return false; |
| 7406 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7407 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7408 | /// Check the non-type template arguments of a class template |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7409 | /// partial specialization according to C++ [temp.class.spec]p9. |
| 7410 | /// |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7411 | /// \param TemplateNameLoc the location of the template name. |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 7412 | /// \param PrimaryTemplate the template parameters of the primary class |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7413 | /// template. |
| 7414 | /// \param NumExplicit the number of explicitly-specified template arguments. |
James Dennett | 634962f | 2012-06-14 21:40:34 +0000 | [diff] [blame] | 7415 | /// \param TemplateArgs the template arguments of the class template |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7416 | /// partial specialization. |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7417 | /// |
Richard Smith | 6056d5e | 2014-02-09 00:54:43 +0000 | [diff] [blame] | 7418 | /// \returns \c true if there was an error, \c false otherwise. |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7419 | bool Sema::CheckTemplatePartialSpecializationArgs( |
| 7420 | SourceLocation TemplateNameLoc, TemplateDecl *PrimaryTemplate, |
| 7421 | unsigned NumExplicit, ArrayRef<TemplateArgument> TemplateArgs) { |
| 7422 | // We have to be conservative when checking a template in a dependent |
| 7423 | // context. |
| 7424 | if (PrimaryTemplate->getDeclContext()->isDependentContext()) |
| 7425 | return false; |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7426 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7427 | TemplateParameterList *TemplateParams = |
| 7428 | PrimaryTemplate->getTemplateParameters(); |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7429 | for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) { |
| 7430 | NonTypeTemplateParmDecl *Param |
| 7431 | = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I)); |
| 7432 | if (!Param) |
| 7433 | continue; |
| 7434 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7435 | if (CheckNonTypeTemplatePartialSpecializationArgs(*this, TemplateNameLoc, |
| 7436 | Param, &TemplateArgs[I], |
| 7437 | 1, I >= NumExplicit)) |
Douglas Gregor | 875b6fe | 2011-01-03 21:13:47 +0000 | [diff] [blame] | 7438 | return true; |
| 7439 | } |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7440 | |
| 7441 | return false; |
| 7442 | } |
| 7443 | |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 7444 | DeclResult Sema::ActOnClassTemplateSpecialization( |
| 7445 | Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, |
| 7446 | SourceLocation ModulePrivateLoc, TemplateIdAnnotation &TemplateId, |
| 7447 | const ParsedAttributesView &Attr, |
| 7448 | MultiTemplateParamsArg TemplateParameterLists, SkipBodyInfo *SkipBody) { |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7449 | assert(TUK != TUK_Reference && "References are not specializations"); |
John McCall | 06f6fe8d | 2009-09-04 01:14:41 +0000 | [diff] [blame] | 7450 | |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7451 | CXXScopeSpec &SS = TemplateId.SS; |
| 7452 | |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7453 | // NOTE: KWLoc is the location of the tag keyword. This will instead |
| 7454 | // store the location of the outermost template keyword in the declaration. |
| 7455 | SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0 |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7456 | ? TemplateParameterLists[0]->getTemplateLoc() : KWLoc; |
| 7457 | SourceLocation TemplateNameLoc = TemplateId.TemplateNameLoc; |
| 7458 | SourceLocation LAngleLoc = TemplateId.LAngleLoc; |
| 7459 | SourceLocation RAngleLoc = TemplateId.RAngleLoc; |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7460 | |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7461 | // Find the class template we're specializing |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7462 | TemplateName Name = TemplateId.Template.get(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7463 | ClassTemplateDecl *ClassTemplate |
Douglas Gregor | dd6c035 | 2009-11-12 00:46:20 +0000 | [diff] [blame] | 7464 | = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl()); |
| 7465 | |
| 7466 | if (!ClassTemplate) { |
| 7467 | Diag(TemplateNameLoc, diag::err_not_class_template_specialization) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7468 | << (Name.getAsTemplateDecl() && |
Douglas Gregor | dd6c035 | 2009-11-12 00:46:20 +0000 | [diff] [blame] | 7469 | isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl())); |
| 7470 | return true; |
| 7471 | } |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7472 | |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 7473 | bool isMemberSpecialization = false; |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7474 | bool isPartialSpecialization = false; |
| 7475 | |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7476 | // Check the validity of the template headers that introduce this |
| 7477 | // template. |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7478 | // FIXME: We probably shouldn't complain about these headers for |
| 7479 | // friend declarations. |
Douglas Gregor | 5f0e252 | 2010-07-14 23:14:12 +0000 | [diff] [blame] | 7480 | bool Invalid = false; |
Robert Wilhelm | f2d2e8f | 2013-07-21 15:20:44 +0000 | [diff] [blame] | 7481 | TemplateParameterList *TemplateParams = |
| 7482 | MatchTemplateParametersToScopeSpecifier( |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7483 | KWLoc, TemplateNameLoc, SS, &TemplateId, |
Richard Smith | f445f19 | 2017-02-09 21:04:43 +0000 | [diff] [blame] | 7484 | TemplateParameterLists, TUK == TUK_Friend, isMemberSpecialization, |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7485 | Invalid); |
Douglas Gregor | 5f0e252 | 2010-07-14 23:14:12 +0000 | [diff] [blame] | 7486 | if (Invalid) |
| 7487 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7488 | |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7489 | if (TemplateParams && TemplateParams->size() > 0) { |
| 7490 | isPartialSpecialization = true; |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7491 | |
Douglas Gregor | ec9518b | 2010-12-21 08:14:57 +0000 | [diff] [blame] | 7492 | if (TUK == TUK_Friend) { |
| 7493 | Diag(KWLoc, diag::err_partial_specialization_friend) |
| 7494 | << SourceRange(LAngleLoc, RAngleLoc); |
| 7495 | return true; |
| 7496 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7497 | |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7498 | // C++ [temp.class.spec]p10: |
| 7499 | // The template parameter list of a specialization shall not |
| 7500 | // contain default template argument values. |
| 7501 | for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) { |
| 7502 | Decl *Param = TemplateParams->getParam(I); |
| 7503 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) { |
| 7504 | if (TTP->hasDefaultArgument()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7505 | Diag(TTP->getDefaultArgumentLoc(), |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7506 | diag::err_default_arg_in_partial_spec); |
John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 7507 | TTP->removeDefaultArgument(); |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7508 | } |
| 7509 | } else if (NonTypeTemplateParmDecl *NTTP |
| 7510 | = dyn_cast<NonTypeTemplateParmDecl>(Param)) { |
| 7511 | if (Expr *DefArg = NTTP->getDefaultArgument()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7512 | Diag(NTTP->getDefaultArgumentLoc(), |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7513 | diag::err_default_arg_in_partial_spec) |
| 7514 | << DefArg->getSourceRange(); |
Abramo Bagnara | 656e300 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 7515 | NTTP->removeDefaultArgument(); |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7516 | } |
| 7517 | } else { |
| 7518 | TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param); |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 7519 | if (TTP->hasDefaultArgument()) { |
| 7520 | Diag(TTP->getDefaultArgument().getLocation(), |
Douglas Gregor | 1d5e9f9 | 2009-08-25 17:23:04 +0000 | [diff] [blame] | 7521 | diag::err_default_arg_in_partial_spec) |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 7522 | << TTP->getDefaultArgument().getSourceRange(); |
Abramo Bagnara | 656e300 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 7523 | TTP->removeDefaultArgument(); |
Douglas Gregor | d522205 | 2009-06-12 19:43:02 +0000 | [diff] [blame] | 7524 | } |
| 7525 | } |
| 7526 | } |
Douglas Gregor | 3a88c1d | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 7527 | } else if (TemplateParams) { |
| 7528 | if (TUK == TUK_Friend) |
| 7529 | Diag(KWLoc, diag::err_template_spec_friend) |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 7530 | << FixItHint::CreateRemoval( |
Douglas Gregor | 3a88c1d | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 7531 | SourceRange(TemplateParams->getTemplateLoc(), |
| 7532 | TemplateParams->getRAngleLoc())) |
| 7533 | << SourceRange(LAngleLoc, RAngleLoc); |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7534 | } else { |
| 7535 | assert(TUK == TUK_Friend && "should have a 'template<>' for this decl"); |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 7536 | } |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7537 | |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7538 | // Check that the specialization uses the same tag kind as the |
| 7539 | // original template. |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 7540 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); |
| 7541 | assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!"); |
Douglas Gregor | d9034f0 | 2009-05-14 16:41:31 +0000 | [diff] [blame] | 7542 | if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(), |
Richard Trieu | caa33d3 | 2011-06-10 03:11:26 +0000 | [diff] [blame] | 7543 | Kind, TUK == TUK_Definition, KWLoc, |
Justin Bogner | c6ecb7c | 2015-07-10 23:05:47 +0000 | [diff] [blame] | 7544 | ClassTemplate->getIdentifier())) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7545 | Diag(KWLoc, diag::err_use_with_wrong_tag) |
Douglas Gregor | 170512f | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 7546 | << ClassTemplate |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 7547 | << FixItHint::CreateReplacement(KWLoc, |
Douglas Gregor | 170512f | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 7548 | ClassTemplate->getTemplatedDecl()->getKindName()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7549 | Diag(ClassTemplate->getTemplatedDecl()->getLocation(), |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7550 | diag::note_previous_use); |
| 7551 | Kind = ClassTemplate->getTemplatedDecl()->getTagKind(); |
| 7552 | } |
| 7553 | |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 7554 | // Translate the parser's template argument list in our AST format. |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 7555 | TemplateArgumentListInfo TemplateArgs = |
| 7556 | makeTemplateArgumentListInfo(*this, TemplateId); |
Douglas Gregor | c40290e | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 7557 | |
Douglas Gregor | 1440693 | 2011-01-03 20:35:03 +0000 | [diff] [blame] | 7558 | // Check for unexpanded parameter packs in any of the template arguments. |
| 7559 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7560 | if (DiagnoseUnexpandedParameterPack(TemplateArgs[I], |
Douglas Gregor | 1440693 | 2011-01-03 20:35:03 +0000 | [diff] [blame] | 7561 | UPPC_PartialSpecialization)) |
| 7562 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7563 | |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7564 | // Check that the template argument list is well-formed for this |
| 7565 | // template. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7566 | SmallVector<TemplateArgument, 4> Converted; |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 7567 | if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc, |
| 7568 | TemplateArgs, false, Converted)) |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 7569 | return true; |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7570 | |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7571 | // Find the class template (partial) specialization declaration that |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7572 | // corresponds to these arguments. |
Douglas Gregor | d522205 | 2009-06-12 19:43:02 +0000 | [diff] [blame] | 7573 | if (isPartialSpecialization) { |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7574 | if (CheckTemplatePartialSpecializationArgs(TemplateNameLoc, ClassTemplate, |
| 7575 | TemplateArgs.size(), Converted)) |
Douglas Gregor | 8cfd2ba | 2009-06-12 21:21:02 +0000 | [diff] [blame] | 7576 | return true; |
| 7577 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7578 | // FIXME: Move this to CheckTemplatePartialSpecializationArgs so we |
| 7579 | // also do it during instantiation. |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 7580 | bool InstantiationDependent; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7581 | if (!Name.isDependent() && |
Douglas Gregor | 92354b6 | 2010-02-09 00:37:32 +0000 | [diff] [blame] | 7582 | !TemplateSpecializationType::anyDependentTemplateArguments( |
David Majnemer | 6fbeee3 | 2016-07-07 04:43:07 +0000 | [diff] [blame] | 7583 | TemplateArgs.arguments(), InstantiationDependent)) { |
Douglas Gregor | 92354b6 | 2010-02-09 00:37:32 +0000 | [diff] [blame] | 7584 | Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized) |
| 7585 | << ClassTemplate->getDeclName(); |
| 7586 | isPartialSpecialization = false; |
Douglas Gregor | 92354b6 | 2010-02-09 00:37:32 +0000 | [diff] [blame] | 7587 | } |
| 7588 | } |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 7589 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7590 | void *InsertPos = nullptr; |
| 7591 | ClassTemplateSpecializationDecl *PrevDecl = nullptr; |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7592 | |
| 7593 | if (isPartialSpecialization) |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 7594 | // FIXME: Template parameter list matters, too |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 7595 | PrevDecl = ClassTemplate->findPartialSpecialization(Converted, InsertPos); |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7596 | else |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 7597 | PrevDecl = ClassTemplate->findSpecialization(Converted, InsertPos); |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7598 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7599 | ClassTemplateSpecializationDecl *Specialization = nullptr; |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7600 | |
Douglas Gregor | f47b911 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 7601 | // Check whether we can declare a class template specialization in |
| 7602 | // the current scope. |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7603 | if (TUK != TUK_Friend && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7604 | CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl, |
| 7605 | TemplateNameLoc, |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 7606 | isPartialSpecialization)) |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 7607 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7608 | |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 7609 | // The canonical type |
| 7610 | QualType CanonType; |
Richard Smith | 871cd4c | 2014-05-23 21:00:28 +0000 | [diff] [blame] | 7611 | if (isPartialSpecialization) { |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 7612 | // Build the canonical type that describes the converted template |
| 7613 | // arguments of the class template partial specialization. |
Douglas Gregor | 92354b6 | 2010-02-09 00:37:32 +0000 | [diff] [blame] | 7614 | TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name); |
| 7615 | CanonType = Context.getTemplateSpecializationType(CanonTemplate, |
David Majnemer | 6fbeee3 | 2016-07-07 04:43:07 +0000 | [diff] [blame] | 7616 | Converted); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7617 | |
| 7618 | if (Context.hasSameType(CanonType, |
Douglas Gregor | dd7ec463 | 2010-12-23 17:13:55 +0000 | [diff] [blame] | 7619 | ClassTemplate->getInjectedClassNameSpecialization())) { |
| 7620 | // C++ [temp.class.spec]p9b3: |
| 7621 | // |
| 7622 | // -- The argument list of the specialization shall not be identical |
| 7623 | // to the implicit argument list of the primary template. |
Richard Smith | 0e617ec | 2016-12-27 07:56:27 +0000 | [diff] [blame] | 7624 | // |
| 7625 | // This rule has since been removed, because it's redundant given DR1495, |
| 7626 | // but we keep it because it produces better diagnostics and recovery. |
Douglas Gregor | dd7ec463 | 2010-12-23 17:13:55 +0000 | [diff] [blame] | 7627 | Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template) |
Richard Smith | 300e0c3 | 2013-09-24 04:49:23 +0000 | [diff] [blame] | 7628 | << /*class template*/0 << (TUK == TUK_Definition) |
Douglas Gregor | 26701a4 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 7629 | << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc)); |
Douglas Gregor | dd7ec463 | 2010-12-23 17:13:55 +0000 | [diff] [blame] | 7630 | return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS, |
| 7631 | ClassTemplate->getIdentifier(), |
| 7632 | TemplateNameLoc, |
| 7633 | Attr, |
| 7634 | TemplateParams, |
Douglas Gregor | 2820e69 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 7635 | AS_none, /*ModulePrivateLoc=*/SourceLocation(), |
Nikola Smiljanic | 4fc9153 | 2014-07-17 01:59:34 +0000 | [diff] [blame] | 7636 | /*FriendLoc*/SourceLocation(), |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7637 | TemplateParameterLists.size() - 1, |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 7638 | TemplateParameterLists.data()); |
Douglas Gregor | dd7ec463 | 2010-12-23 17:13:55 +0000 | [diff] [blame] | 7639 | } |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 7640 | |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7641 | // Create a new class template partial specialization declaration node. |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7642 | ClassTemplatePartialSpecializationDecl *PrevPartial |
| 7643 | = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7644 | ClassTemplatePartialSpecializationDecl *Partial |
Douglas Gregor | e902956 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 7645 | = ClassTemplatePartialSpecializationDecl::Create(Context, Kind, |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7646 | ClassTemplate->getDeclContext(), |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 7647 | KWLoc, TemplateNameLoc, |
Anders Carlsson | 1b28c3e | 2009-06-05 04:06:48 +0000 | [diff] [blame] | 7648 | TemplateParams, |
| 7649 | ClassTemplate, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 7650 | Converted, |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 7651 | TemplateArgs, |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 7652 | CanonType, |
Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 7653 | PrevPartial); |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 7654 | SetNestedNameSpecifier(*this, Partial, SS); |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7655 | if (TemplateParameterLists.size() > 1 && SS.isSet()) { |
Benjamin Kramer | 9cc21065 | 2015-08-05 09:40:49 +0000 | [diff] [blame] | 7656 | Partial->setTemplateParameterListsInfo( |
| 7657 | Context, TemplateParameterLists.drop_back(1)); |
Abramo Bagnara | da41d0c | 2010-06-12 08:15:14 +0000 | [diff] [blame] | 7658 | } |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7659 | |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 7660 | if (!PrevPartial) |
| 7661 | ClassTemplate->AddPartialSpecialization(Partial, InsertPos); |
Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 7662 | Specialization = Partial; |
Douglas Gregor | 91772d1 | 2009-06-13 00:26:55 +0000 | [diff] [blame] | 7663 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7664 | // If we are providing an explicit specialization of a member class |
Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 7665 | // template specialization, make a note of that. |
| 7666 | if (PrevPartial && PrevPartial->getInstantiatedFromMember()) |
| 7667 | PrevPartial->setMemberSpecialization(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7668 | |
Richard Smith | 57aae07 | 2016-12-28 02:37:25 +0000 | [diff] [blame] | 7669 | CheckTemplatePartialSpecialization(Partial); |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7670 | } else { |
| 7671 | // Create a new class template specialization declaration node for |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7672 | // this explicit specialization or friend declaration. |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7673 | Specialization |
Douglas Gregor | e902956 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 7674 | = ClassTemplateSpecializationDecl::Create(Context, Kind, |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7675 | ClassTemplate->getDeclContext(), |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 7676 | KWLoc, TemplateNameLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7677 | ClassTemplate, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 7678 | Converted, |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7679 | PrevDecl); |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 7680 | SetNestedNameSpecifier(*this, Specialization, SS); |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7681 | if (TemplateParameterLists.size() > 0) { |
Douglas Gregor | 20527e2 | 2010-06-15 17:44:38 +0000 | [diff] [blame] | 7682 | Specialization->setTemplateParameterListsInfo(Context, |
Benjamin Kramer | 9cc21065 | 2015-08-05 09:40:49 +0000 | [diff] [blame] | 7683 | TemplateParameterLists); |
Abramo Bagnara | da41d0c | 2010-06-12 08:15:14 +0000 | [diff] [blame] | 7684 | } |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7685 | |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 7686 | if (!PrevDecl) |
| 7687 | ClassTemplate->AddSpecialization(Specialization, InsertPos); |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 7688 | |
David Majnemer | 678f50b | 2015-11-18 19:49:19 +0000 | [diff] [blame] | 7689 | if (CurContext->isDependentContext()) { |
David Majnemer | 678f50b | 2015-11-18 19:49:19 +0000 | [diff] [blame] | 7690 | TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name); |
| 7691 | CanonType = Context.getTemplateSpecializationType( |
David Majnemer | 6fbeee3 | 2016-07-07 04:43:07 +0000 | [diff] [blame] | 7692 | CanonTemplate, Converted); |
David Majnemer | 678f50b | 2015-11-18 19:49:19 +0000 | [diff] [blame] | 7693 | } else { |
| 7694 | CanonType = Context.getTypeDeclType(Specialization); |
| 7695 | } |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7696 | } |
| 7697 | |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7698 | // C++ [temp.expl.spec]p6: |
| 7699 | // If a template, a member template or the member of a class template is |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7700 | // explicitly specialized then that specialization shall be declared |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7701 | // before the first use of that specialization that would cause an implicit |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7702 | // instantiation to take place, in every translation unit in which such a |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7703 | // use occurs; no diagnostic is required. |
| 7704 | if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) { |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7705 | bool Okay = false; |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 7706 | for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) { |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7707 | // Is there any previous explicit specialization declaration? |
| 7708 | if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) { |
| 7709 | Okay = true; |
| 7710 | break; |
| 7711 | } |
| 7712 | } |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7713 | |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7714 | if (!Okay) { |
| 7715 | SourceRange Range(TemplateNameLoc, RAngleLoc); |
| 7716 | Diag(TemplateNameLoc, diag::err_specialization_after_instantiation) |
| 7717 | << Context.getTypeDeclType(Specialization) << Range; |
| 7718 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7719 | Diag(PrevDecl->getPointOfInstantiation(), |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7720 | diag::note_instantiation_required_here) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7721 | << (PrevDecl->getTemplateSpecializationKind() |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7722 | != TSK_ImplicitInstantiation); |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7723 | return true; |
| 7724 | } |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 7725 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7726 | |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7727 | // If this is not a friend, note that this is an explicit specialization. |
| 7728 | if (TUK != TUK_Friend) |
| 7729 | Specialization->setSpecializationKind(TSK_ExplicitSpecialization); |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7730 | |
| 7731 | // Check that this isn't a redefinition of this specialization. |
John McCall | 9bb74a5 | 2009-07-31 02:45:11 +0000 | [diff] [blame] | 7732 | if (TUK == TUK_Definition) { |
Richard Smith | c7e6ff0 | 2015-05-18 20:36:47 +0000 | [diff] [blame] | 7733 | RecordDecl *Def = Specialization->getDefinition(); |
| 7734 | NamedDecl *Hidden = nullptr; |
| 7735 | if (Def && SkipBody && !hasVisibleDefinition(Def, &Hidden)) { |
| 7736 | SkipBody->ShouldSkip = true; |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 7737 | SkipBody->Previous = Def; |
Richard Smith | 858e0e0 | 2017-05-11 23:11:16 +0000 | [diff] [blame] | 7738 | makeMergedDefinitionVisible(Hidden); |
Richard Smith | c7e6ff0 | 2015-05-18 20:36:47 +0000 | [diff] [blame] | 7739 | } else if (Def) { |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7740 | SourceRange Range(TemplateNameLoc, RAngleLoc); |
Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 7741 | Diag(TemplateNameLoc, diag::err_redefinition) << Specialization << Range; |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7742 | Diag(Def->getLocation(), diag::note_previous_definition); |
| 7743 | Specialization->setInvalidDecl(); |
Douglas Gregor | c08f489 | 2009-03-25 00:13:59 +0000 | [diff] [blame] | 7744 | return true; |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7745 | } |
| 7746 | } |
| 7747 | |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 7748 | ProcessDeclAttributeList(S, Specialization, Attr); |
John McCall | 659a337 | 2010-12-18 03:30:47 +0000 | [diff] [blame] | 7749 | |
Richard Smith | 034b94a | 2012-08-17 03:20:55 +0000 | [diff] [blame] | 7750 | // Add alignment attributes if necessary; these attributes are checked when |
| 7751 | // the ASTContext lays out the structure. |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 7752 | if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) { |
Richard Smith | 034b94a | 2012-08-17 03:20:55 +0000 | [diff] [blame] | 7753 | AddAlignmentAttributesForRecord(Specialization); |
| 7754 | AddMsStructLayoutForRecord(Specialization); |
| 7755 | } |
| 7756 | |
Douglas Gregor | 3c7cd6a | 2011-09-09 20:53:38 +0000 | [diff] [blame] | 7757 | if (ModulePrivateLoc.isValid()) |
| 7758 | Diag(Specialization->getLocation(), diag::err_module_private_specialization) |
| 7759 | << (isPartialSpecialization? 1 : 0) |
| 7760 | << FixItHint::CreateRemoval(ModulePrivateLoc); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 7761 | |
Douglas Gregor | d56a91e | 2009-02-26 22:19:44 +0000 | [diff] [blame] | 7762 | // Build the fully-sugared type for this class template |
| 7763 | // specialization as the user wrote in the specialization |
| 7764 | // itself. This means that we'll pretty-print the type retrieved |
| 7765 | // from the specialization's declaration the way that the user |
| 7766 | // actually wrote the specialization, rather than formatting the |
| 7767 | // name based on the "canonical" representation used to store the |
| 7768 | // template arguments in the specialization. |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 7769 | TypeSourceInfo *WrittenTy |
| 7770 | = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc, |
| 7771 | TemplateArgs, CanonType); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7772 | if (TUK != TUK_Friend) { |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7773 | Specialization->setTypeAsWritten(WrittenTy); |
Abramo Bagnara | 60804e1 | 2011-03-18 15:16:37 +0000 | [diff] [blame] | 7774 | Specialization->setTemplateKeywordLoc(TemplateKWLoc); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7775 | } |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7776 | |
Douglas Gregor | 1e249f8 | 2009-02-25 22:18:32 +0000 | [diff] [blame] | 7777 | // C++ [temp.expl.spec]p9: |
| 7778 | // A template explicit specialization is in the scope of the |
| 7779 | // namespace in which the template was defined. |
| 7780 | // |
| 7781 | // We actually implement this paragraph where we set the semantic |
| 7782 | // context (in the creation of the ClassTemplateSpecializationDecl), |
| 7783 | // but we also maintain the lexical context where the actual |
| 7784 | // definition occurs. |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7785 | Specialization->setLexicalDeclContext(CurContext); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7786 | |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7787 | // We may be starting the definition of this specialization. |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 7788 | if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7789 | Specialization->startDefinition(); |
| 7790 | |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7791 | if (TUK == TUK_Friend) { |
| 7792 | FriendDecl *Friend = FriendDecl::Create(Context, CurContext, |
| 7793 | TemplateNameLoc, |
John McCall | 15ad096 | 2010-03-25 18:04:51 +0000 | [diff] [blame] | 7794 | WrittenTy, |
Douglas Gregor | 2208a29 | 2009-09-26 20:57:03 +0000 | [diff] [blame] | 7795 | /*FIXME:*/KWLoc); |
| 7796 | Friend->setAccess(AS_public); |
| 7797 | CurContext->addDecl(Friend); |
| 7798 | } else { |
| 7799 | // Add the specialization into its lexical context, so that it can |
| 7800 | // be seen when iterating through the list of declarations in that |
| 7801 | // context. However, specializations are not found by name lookup. |
| 7802 | CurContext->addDecl(Specialization); |
| 7803 | } |
Richard Smith | c457766 | 2018-09-12 02:13:47 +0000 | [diff] [blame] | 7804 | |
| 7805 | if (SkipBody && SkipBody->ShouldSkip) |
| 7806 | return SkipBody->Previous; |
| 7807 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 7808 | return Specialization; |
Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 7809 | } |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 7810 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 7811 | Decl *Sema::ActOnTemplateDeclarator(Scope *S, |
Douglas Gregor | b52fabb | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 7812 | MultiTemplateParamsArg TemplateParameterLists, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 7813 | Declarator &D) { |
Benjamin Kramer | 62b95d8 | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 7814 | Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists); |
Dmitri Gribenko | 34df220 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 7815 | ActOnDocumentableDecl(NewDecl); |
| 7816 | return NewDecl; |
Douglas Gregor | b52fabb | 2009-06-23 23:11:28 +0000 | [diff] [blame] | 7817 | } |
| 7818 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7819 | /// Strips various properties off an implicit instantiation |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 7820 | /// that has just been explicitly specialized. |
| 7821 | static void StripImplicitInstantiation(NamedDecl *D) { |
Nico Weber | e497438 | 2014-12-19 23:52:45 +0000 | [diff] [blame] | 7822 | D->dropAttr<DLLImportAttr>(); |
| 7823 | D->dropAttr<DLLExportAttr>(); |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 7824 | |
Nico Weber | e497438 | 2014-12-19 23:52:45 +0000 | [diff] [blame] | 7825 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 7826 | FD->setInlineSpecified(false); |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 7827 | } |
| 7828 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7829 | /// Compute the diagnostic location for an explicit instantiation |
Nico Weber | a8f80b3 | 2012-01-09 19:52:25 +0000 | [diff] [blame] | 7830 | // declaration or definition. |
| 7831 | static SourceLocation DiagLocForExplicitInstantiation( |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 7832 | NamedDecl* D, SourceLocation PointOfInstantiation) { |
Nico Weber | a8f80b3 | 2012-01-09 19:52:25 +0000 | [diff] [blame] | 7833 | // Explicit instantiations following a specialization have no effect and |
| 7834 | // hence no PointOfInstantiation. In that case, walk decl backwards |
| 7835 | // until a valid name loc is found. |
| 7836 | SourceLocation PrevDiagLoc = PointOfInstantiation; |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 7837 | for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid(); |
| 7838 | Prev = Prev->getPreviousDecl()) { |
Nico Weber | a8f80b3 | 2012-01-09 19:52:25 +0000 | [diff] [blame] | 7839 | PrevDiagLoc = Prev->getLocation(); |
| 7840 | } |
| 7841 | assert(PrevDiagLoc.isValid() && |
| 7842 | "Explicit instantiation without point of instantiation?"); |
| 7843 | return PrevDiagLoc; |
| 7844 | } |
| 7845 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7846 | /// Diagnose cases where we have an explicit template specialization |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7847 | /// before/after an explicit template instantiation, producing diagnostics |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7848 | /// for those cases where they are required and determining whether the |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7849 | /// new specialization/instantiation will have any effect. |
| 7850 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7851 | /// \param NewLoc the location of the new explicit specialization or |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7852 | /// instantiation. |
| 7853 | /// |
| 7854 | /// \param NewTSK the kind of the new explicit specialization or instantiation. |
| 7855 | /// |
| 7856 | /// \param PrevDecl the previous declaration of the entity. |
| 7857 | /// |
| 7858 | /// \param PrevTSK the kind of the old explicit specialization or instantiatin. |
| 7859 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7860 | /// \param PrevPointOfInstantiation if valid, indicates where the previus |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7861 | /// declaration was instantiated (either implicitly or explicitly). |
| 7862 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7863 | /// \param HasNoEffect will be set to true to indicate that the new |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7864 | /// specialization or instantiation has no effect and should be ignored. |
| 7865 | /// |
| 7866 | /// \returns true if there was an error that should prevent the introduction of |
| 7867 | /// the new declaration into the AST, false otherwise. |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 7868 | bool |
| 7869 | Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc, |
| 7870 | TemplateSpecializationKind NewTSK, |
| 7871 | NamedDecl *PrevDecl, |
| 7872 | TemplateSpecializationKind PrevTSK, |
| 7873 | SourceLocation PrevPointOfInstantiation, |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7874 | bool &HasNoEffect) { |
| 7875 | HasNoEffect = false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7876 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7877 | switch (NewTSK) { |
| 7878 | case TSK_Undeclared: |
| 7879 | case TSK_ImplicitInstantiation: |
David Majnemer | 192d179 | 2013-11-27 08:20:38 +0000 | [diff] [blame] | 7880 | assert( |
| 7881 | (PrevTSK == TSK_Undeclared || PrevTSK == TSK_ImplicitInstantiation) && |
| 7882 | "previous declaration must be implicit!"); |
| 7883 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7884 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7885 | case TSK_ExplicitSpecialization: |
| 7886 | switch (PrevTSK) { |
| 7887 | case TSK_Undeclared: |
| 7888 | case TSK_ExplicitSpecialization: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7889 | // Okay, we're just specializing something that is either already |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7890 | // explicitly specialized or has merely been mentioned without any |
| 7891 | // instantiation. |
| 7892 | return false; |
| 7893 | |
| 7894 | case TSK_ImplicitInstantiation: |
| 7895 | if (PrevPointOfInstantiation.isInvalid()) { |
| 7896 | // The declaration itself has not actually been instantiated, so it is |
| 7897 | // still okay to specialize it. |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 7898 | StripImplicitInstantiation(PrevDecl); |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7899 | return false; |
| 7900 | } |
| 7901 | // Fall through |
Galina Kistanova | 3779cb3 | 2017-06-07 06:25:05 +0000 | [diff] [blame] | 7902 | LLVM_FALLTHROUGH; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7903 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7904 | case TSK_ExplicitInstantiationDeclaration: |
| 7905 | case TSK_ExplicitInstantiationDefinition: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7906 | assert((PrevTSK == TSK_ImplicitInstantiation || |
| 7907 | PrevPointOfInstantiation.isValid()) && |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7908 | "Explicit instantiation without point of instantiation?"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7909 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7910 | // C++ [temp.expl.spec]p6: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7911 | // If a template, a member template or the member of a class template |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7912 | // is explicitly specialized then that specialization shall be declared |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7913 | // before the first use of that specialization that would cause an |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7914 | // implicit instantiation to take place, in every translation unit in |
| 7915 | // which such a use occurs; no diagnostic is required. |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 7916 | for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) { |
Douglas Gregor | c854c66 | 2010-02-26 06:03:23 +0000 | [diff] [blame] | 7917 | // Is there any previous explicit specialization declaration? |
| 7918 | if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) |
| 7919 | return false; |
| 7920 | } |
| 7921 | |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 7922 | Diag(NewLoc, diag::err_specialization_after_instantiation) |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7923 | << PrevDecl; |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 7924 | Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here) |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7925 | << (PrevTSK != TSK_ImplicitInstantiation); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7926 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7927 | return true; |
| 7928 | } |
Galina Kistanova | 1d36e83 | 2017-06-08 18:20:32 +0000 | [diff] [blame] | 7929 | llvm_unreachable("The switch over PrevTSK must be exhaustive."); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7930 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7931 | case TSK_ExplicitInstantiationDeclaration: |
| 7932 | switch (PrevTSK) { |
| 7933 | case TSK_ExplicitInstantiationDeclaration: |
| 7934 | // This explicit instantiation declaration is redundant (that's okay). |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7935 | HasNoEffect = true; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7936 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7937 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7938 | case TSK_Undeclared: |
| 7939 | case TSK_ImplicitInstantiation: |
| 7940 | // We're explicitly instantiating something that may have already been |
| 7941 | // implicitly instantiated; that's fine. |
| 7942 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7943 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7944 | case TSK_ExplicitSpecialization: |
| 7945 | // C++0x [temp.explicit]p4: |
| 7946 | // For a given set of template parameters, if an explicit instantiation |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7947 | // of a template appears after a declaration of an explicit |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7948 | // specialization for that template, the explicit instantiation has no |
| 7949 | // effect. |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7950 | HasNoEffect = true; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7951 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7952 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7953 | case TSK_ExplicitInstantiationDefinition: |
| 7954 | // C++0x [temp.explicit]p10: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7955 | // If an entity is the subject of both an explicit instantiation |
| 7956 | // declaration and an explicit instantiation definition in the same |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7957 | // translation unit, the definition shall follow the declaration. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7958 | Diag(NewLoc, |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 7959 | diag::err_explicit_instantiation_declaration_after_definition); |
Nico Weber | d3bdadf | 2011-12-23 20:58:04 +0000 | [diff] [blame] | 7960 | |
| 7961 | // Explicit instantiations following a specialization have no effect and |
| 7962 | // hence no PrevPointOfInstantiation. In that case, walk decl backwards |
| 7963 | // until a valid name loc is found. |
Nico Weber | a8f80b3 | 2012-01-09 19:52:25 +0000 | [diff] [blame] | 7964 | Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation), |
| 7965 | diag::note_explicit_instantiation_definition_here); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7966 | HasNoEffect = true; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7967 | return false; |
| 7968 | } |
Bruno Ricci | d8c1767 | 2018-12-21 20:38:06 +0000 | [diff] [blame] | 7969 | llvm_unreachable("Unexpected TemplateSpecializationKind!"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7970 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7971 | case TSK_ExplicitInstantiationDefinition: |
| 7972 | switch (PrevTSK) { |
| 7973 | case TSK_Undeclared: |
| 7974 | case TSK_ImplicitInstantiation: |
| 7975 | // We're explicitly instantiating something that may have already been |
| 7976 | // implicitly instantiated; that's fine. |
| 7977 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7978 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7979 | case TSK_ExplicitSpecialization: |
| 7980 | // C++ DR 259, C++0x [temp.explicit]p4: |
| 7981 | // For a given set of template parameters, if an explicit |
| 7982 | // instantiation of a template appears after a declaration of |
| 7983 | // an explicit specialization for that template, the explicit |
| 7984 | // instantiation has no effect. |
Richard Smith | e4caa48 | 2016-08-31 23:23:25 +0000 | [diff] [blame] | 7985 | Diag(NewLoc, diag::warn_explicit_instantiation_after_specialization) |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 7986 | << PrevDecl; |
| 7987 | Diag(PrevDecl->getLocation(), |
| 7988 | diag::note_previous_template_specialization); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 7989 | HasNoEffect = true; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7990 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7991 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 7992 | case TSK_ExplicitInstantiationDeclaration: |
Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 7993 | // We're explicitly instantiating a definition for something for which we |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7994 | // were previously asked to suppress instantiations. That's fine. |
Nico Weber | d3bdadf | 2011-12-23 20:58:04 +0000 | [diff] [blame] | 7995 | |
| 7996 | // C++0x [temp.explicit]p4: |
| 7997 | // For a given set of template parameters, if an explicit instantiation |
| 7998 | // of a template appears after a declaration of an explicit |
| 7999 | // specialization for that template, the explicit instantiation has no |
| 8000 | // effect. |
Douglas Gregor | 0bc8a21 | 2012-01-14 15:55:47 +0000 | [diff] [blame] | 8001 | for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) { |
Nico Weber | d3bdadf | 2011-12-23 20:58:04 +0000 | [diff] [blame] | 8002 | // Is there any previous explicit specialization declaration? |
| 8003 | if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) { |
| 8004 | HasNoEffect = true; |
| 8005 | break; |
| 8006 | } |
| 8007 | } |
| 8008 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8009 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8010 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8011 | case TSK_ExplicitInstantiationDefinition: |
| 8012 | // C++0x [temp.spec]p5: |
| 8013 | // For a given template and a given set of template-arguments, |
| 8014 | // - an explicit instantiation definition shall appear at most once |
| 8015 | // in a program, |
Will Wilson | eadcdbb | 2014-05-09 09:52:13 +0000 | [diff] [blame] | 8016 | |
| 8017 | // MSVCCompat: MSVC silently ignores duplicate explicit instantiations. |
| 8018 | Diag(NewLoc, (getLangOpts().MSVCCompat) |
Richard Smith | 1b98ccc | 2014-07-19 01:39:17 +0000 | [diff] [blame] | 8019 | ? diag::ext_explicit_instantiation_duplicate |
Will Wilson | eadcdbb | 2014-05-09 09:52:13 +0000 | [diff] [blame] | 8020 | : diag::err_explicit_instantiation_duplicate) |
| 8021 | << PrevDecl; |
Nico Weber | a8f80b3 | 2012-01-09 19:52:25 +0000 | [diff] [blame] | 8022 | Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation), |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 8023 | diag::note_previous_explicit_instantiation); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8024 | HasNoEffect = true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8025 | return false; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8026 | } |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8027 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8028 | |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 8029 | llvm_unreachable("Missing specialization/instantiation case?"); |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8030 | } |
| 8031 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 8032 | /// Perform semantic analysis for the given dependent function |
James Dennett | f14a6e5 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 8033 | /// template specialization. |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8034 | /// |
James Dennett | f14a6e5 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 8035 | /// The only possible way to get a dependent function template specialization |
| 8036 | /// is with a friend declaration, like so: |
| 8037 | /// |
| 8038 | /// \code |
| 8039 | /// template \<class T> void foo(T); |
| 8040 | /// template \<class T> class A { |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8041 | /// friend void foo<>(T); |
| 8042 | /// }; |
James Dennett | f14a6e5 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 8043 | /// \endcode |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8044 | /// |
| 8045 | /// There really isn't any useful analysis we can do here, so we |
| 8046 | /// just store the information. |
| 8047 | bool |
| 8048 | Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD, |
| 8049 | const TemplateArgumentListInfo &ExplicitTemplateArgs, |
| 8050 | LookupResult &Previous) { |
| 8051 | // Remove anything from Previous that isn't a function template in |
| 8052 | // the correct context. |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 8053 | DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext(); |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8054 | LookupResult::Filter F = Previous.makeFilter(); |
Erik Pilkington | 0b75dc5 | 2018-07-19 20:40:20 +0000 | [diff] [blame] | 8055 | enum DiscardReason { NotAFunctionTemplate, NotAMemberOfEnclosing }; |
| 8056 | SmallVector<std::pair<DiscardReason, Decl *>, 8> DiscardedCandidates; |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8057 | while (F.hasNext()) { |
| 8058 | NamedDecl *D = F.next()->getUnderlyingDecl(); |
Erik Pilkington | 0b75dc5 | 2018-07-19 20:40:20 +0000 | [diff] [blame] | 8059 | if (!isa<FunctionTemplateDecl>(D)) { |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8060 | F.erase(); |
Erik Pilkington | 0b75dc5 | 2018-07-19 20:40:20 +0000 | [diff] [blame] | 8061 | DiscardedCandidates.push_back(std::make_pair(NotAFunctionTemplate, D)); |
| 8062 | continue; |
| 8063 | } |
| 8064 | |
| 8065 | if (!FDLookupContext->InEnclosingNamespaceSetOf( |
| 8066 | D->getDeclContext()->getRedeclContext())) { |
| 8067 | F.erase(); |
| 8068 | DiscardedCandidates.push_back(std::make_pair(NotAMemberOfEnclosing, D)); |
| 8069 | continue; |
| 8070 | } |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8071 | } |
| 8072 | F.done(); |
| 8073 | |
Erik Pilkington | 0b75dc5 | 2018-07-19 20:40:20 +0000 | [diff] [blame] | 8074 | if (Previous.empty()) { |
| 8075 | Diag(FD->getLocation(), |
| 8076 | diag::err_dependent_function_template_spec_no_match); |
| 8077 | for (auto &P : DiscardedCandidates) |
| 8078 | Diag(P.second->getLocation(), |
| 8079 | diag::note_dependent_function_template_spec_discard_reason) |
| 8080 | << P.first; |
| 8081 | return true; |
| 8082 | } |
John McCall | b9c7848 | 2010-04-08 09:05:18 +0000 | [diff] [blame] | 8083 | |
| 8084 | FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(), |
| 8085 | ExplicitTemplateArgs); |
| 8086 | return false; |
| 8087 | } |
| 8088 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 8089 | /// Perform semantic analysis for the given function template |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8090 | /// specialization. |
| 8091 | /// |
Abramo Bagnara | 02ccd28 | 2010-05-20 15:32:11 +0000 | [diff] [blame] | 8092 | /// This routine performs all of the semantic analysis required for an |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8093 | /// explicit function template specialization. On successful completion, |
| 8094 | /// the function declaration \p FD will become a function template |
| 8095 | /// specialization. |
| 8096 | /// |
| 8097 | /// \param FD the function declaration, which will be updated to become a |
| 8098 | /// function template specialization. |
| 8099 | /// |
Abramo Bagnara | 02ccd28 | 2010-05-20 15:32:11 +0000 | [diff] [blame] | 8100 | /// \param ExplicitTemplateArgs the explicitly-provided template arguments, |
| 8101 | /// if any. Note that this may be valid info even when 0 arguments are |
| 8102 | /// explicitly provided as in, e.g., \c void sort<>(char*, char*); |
| 8103 | /// as it anyway contains info on the angle brackets locations. |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8104 | /// |
Francois Pichet | 3a44e43 | 2011-07-08 06:21:47 +0000 | [diff] [blame] | 8105 | /// \param Previous the set of declarations that may be specialized by |
Abramo Bagnara | 02ccd28 | 2010-05-20 15:32:11 +0000 | [diff] [blame] | 8106 | /// this function specialization. |
Richard Smith | 8ce732b | 2019-01-07 06:00:46 +0000 | [diff] [blame] | 8107 | /// |
| 8108 | /// \param QualifiedFriend whether this is a lookup for a qualified friend |
| 8109 | /// declaration with no explicit template argument list that might be |
| 8110 | /// befriending a function template specialization. |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8111 | bool Sema::CheckFunctionTemplateSpecialization( |
| 8112 | FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs, |
Richard Smith | 8ce732b | 2019-01-07 06:00:46 +0000 | [diff] [blame] | 8113 | LookupResult &Previous, bool QualifiedFriend) { |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8114 | // The set of function template specializations that could match this |
| 8115 | // explicit function template specialization. |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 8116 | UnresolvedSet<8> Candidates; |
George Burgess IV | 3e3bb95b | 2015-12-02 21:58:08 +0000 | [diff] [blame] | 8117 | TemplateSpecCandidateSet FailedCandidates(FD->getLocation(), |
| 8118 | /*ForTakingAddress=*/false); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8119 | |
Richard Smith | 7d3c3ef | 2015-10-02 00:49:37 +0000 | [diff] [blame] | 8120 | llvm::SmallDenseMap<FunctionDecl *, TemplateArgumentListInfo, 8> |
| 8121 | ConvertedTemplateArgs; |
| 8122 | |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 8123 | DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext(); |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8124 | for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); |
| 8125 | I != E; ++I) { |
| 8126 | NamedDecl *Ovl = (*I)->getUnderlyingDecl(); |
| 8127 | if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8128 | // Only consider templates found within the same semantic lookup scope as |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8129 | // FD. |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 8130 | if (!FDLookupContext->InEnclosingNamespaceSetOf( |
| 8131 | Ovl->getDeclContext()->getRedeclContext())) |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8132 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8133 | |
Richard Smith | 574f4f6 | 2013-01-14 05:37:29 +0000 | [diff] [blame] | 8134 | // When matching a constexpr member function template specialization |
| 8135 | // against the primary template, we don't yet know whether the |
| 8136 | // specialization has an implicit 'const' (because we don't know whether |
| 8137 | // it will be a static member function until we know which template it |
| 8138 | // specializes), so adjust it now assuming it specializes this template. |
| 8139 | QualType FT = FD->getType(); |
| 8140 | if (FD->isConstexpr()) { |
Rafael Espindola | 92045bc | 2013-11-19 21:07:04 +0000 | [diff] [blame] | 8141 | CXXMethodDecl *OldMD = |
| 8142 | dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl()); |
Richard Smith | 574f4f6 | 2013-01-14 05:37:29 +0000 | [diff] [blame] | 8143 | if (OldMD && OldMD->isConst()) { |
Rafael Espindola | 92045bc | 2013-11-19 21:07:04 +0000 | [diff] [blame] | 8144 | const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>(); |
Richard Smith | 574f4f6 | 2013-01-14 05:37:29 +0000 | [diff] [blame] | 8145 | FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); |
Mikael Nilsson | 9d2872d | 2018-12-13 10:15:27 +0000 | [diff] [blame] | 8146 | EPI.TypeQuals.addConst(); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 8147 | FT = Context.getFunctionType(FPT->getReturnType(), |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 8148 | FPT->getParamTypes(), EPI); |
Richard Smith | 574f4f6 | 2013-01-14 05:37:29 +0000 | [diff] [blame] | 8149 | } |
| 8150 | } |
| 8151 | |
Richard Smith | 7d3c3ef | 2015-10-02 00:49:37 +0000 | [diff] [blame] | 8152 | TemplateArgumentListInfo Args; |
| 8153 | if (ExplicitTemplateArgs) |
| 8154 | Args = *ExplicitTemplateArgs; |
| 8155 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8156 | // C++ [temp.expl.spec]p11: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8157 | // A trailing template-argument can be left unspecified in the |
| 8158 | // template-id naming an explicit function template specialization |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8159 | // provided it can be deduced from the function argument type. |
| 8160 | // Perform template argument deduction to determine whether we may be |
| 8161 | // specializing this template. |
| 8162 | // FIXME: It is somewhat wasteful to build |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8163 | TemplateDeductionInfo Info(FailedCandidates.getLocation()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8164 | FunctionDecl *Specialization = nullptr; |
Richard Smith | 3298368 | 2013-12-14 03:18:05 +0000 | [diff] [blame] | 8165 | if (TemplateDeductionResult TDK = DeduceTemplateArguments( |
| 8166 | cast<FunctionTemplateDecl>(FunTmpl->getFirstDecl()), |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 8167 | ExplicitTemplateArgs ? &Args : nullptr, FT, Specialization, |
| 8168 | Info)) { |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8169 | // Template argument deduction failed; record why it failed, so |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8170 | // that we can provide nifty diagnostics. |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 8171 | FailedCandidates.addCandidate().set( |
| 8172 | I.getPair(), FunTmpl->getTemplatedDecl(), |
| 8173 | MakeDeductionFailureInfo(Context, TDK, Info)); |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8174 | (void)TDK; |
| 8175 | continue; |
| 8176 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8177 | |
Artem Belevich | 64135c3 | 2016-12-08 19:38:13 +0000 | [diff] [blame] | 8178 | // Target attributes are part of the cuda function signature, so |
| 8179 | // the deduced template's cuda target must match that of the |
| 8180 | // specialization. Given that C++ template deduction does not |
| 8181 | // take target attributes into account, we reject candidates |
| 8182 | // here that have a different target. |
Artem Belevich | 13e9b4d | 2016-12-07 19:27:16 +0000 | [diff] [blame] | 8183 | if (LangOpts.CUDA && |
Artem Belevich | 64135c3 | 2016-12-08 19:38:13 +0000 | [diff] [blame] | 8184 | IdentifyCUDATarget(Specialization, |
| 8185 | /* IgnoreImplicitHDAttributes = */ true) != |
| 8186 | IdentifyCUDATarget(FD, /* IgnoreImplicitHDAttributes = */ true)) { |
Artem Belevich | 13e9b4d | 2016-12-07 19:27:16 +0000 | [diff] [blame] | 8187 | FailedCandidates.addCandidate().set( |
| 8188 | I.getPair(), FunTmpl->getTemplatedDecl(), |
| 8189 | MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info)); |
| 8190 | continue; |
| 8191 | } |
| 8192 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8193 | // Record this candidate. |
Richard Smith | 7d3c3ef | 2015-10-02 00:49:37 +0000 | [diff] [blame] | 8194 | if (ExplicitTemplateArgs) |
| 8195 | ConvertedTemplateArgs[Specialization] = std::move(Args); |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 8196 | Candidates.addDecl(Specialization, I.getAccess()); |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8197 | } |
| 8198 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8199 | |
Richard Smith | 8ce732b | 2019-01-07 06:00:46 +0000 | [diff] [blame] | 8200 | // For a qualified friend declaration (with no explicit marker to indicate |
| 8201 | // that a template specialization was intended), note all (template and |
| 8202 | // non-template) candidates. |
| 8203 | if (QualifiedFriend && Candidates.empty()) { |
| 8204 | Diag(FD->getLocation(), diag::err_qualified_friend_no_match) |
| 8205 | << FD->getDeclName() << FDLookupContext; |
| 8206 | // FIXME: We should form a single candidate list and diagnose all |
| 8207 | // candidates at once, to get proper sorting and limiting. |
| 8208 | for (auto *OldND : Previous) { |
| 8209 | if (auto *OldFD = dyn_cast<FunctionDecl>(OldND->getUnderlyingDecl())) |
| 8210 | NoteOverloadCandidate(OldND, OldFD, FD->getType(), false); |
| 8211 | } |
| 8212 | FailedCandidates.NoteCandidates(*this, FD->getLocation()); |
| 8213 | return true; |
| 8214 | } |
| 8215 | |
Douglas Gregor | 5de279c | 2009-09-26 03:41:46 +0000 | [diff] [blame] | 8216 | // Find the most specialized function template. |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8217 | UnresolvedSetIterator Result = getMostSpecialized( |
Richard Smith | 8ce732b | 2019-01-07 06:00:46 +0000 | [diff] [blame] | 8218 | Candidates.begin(), Candidates.end(), FailedCandidates, FD->getLocation(), |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8219 | PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(), |
| 8220 | PDiag(diag::err_function_template_spec_ambiguous) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8221 | << FD->getDeclName() << (ExplicitTemplateArgs != nullptr), |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 8222 | PDiag(diag::note_function_template_spec_matched)); |
| 8223 | |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 8224 | if (Result == Candidates.end()) |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8225 | return true; |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 8226 | |
| 8227 | // Ignore access information; it doesn't figure into redeclaration checking. |
| 8228 | FunctionDecl *Specialization = cast<FunctionDecl>(*Result); |
Abramo Bagnara | b9893d6 | 2011-03-04 17:20:30 +0000 | [diff] [blame] | 8229 | |
| 8230 | FunctionTemplateSpecializationInfo *SpecInfo |
| 8231 | = Specialization->getTemplateSpecializationInfo(); |
| 8232 | assert(SpecInfo && "Function template specialization info missing?"); |
Francois Pichet | 3a44e43 | 2011-07-08 06:21:47 +0000 | [diff] [blame] | 8233 | |
| 8234 | // Note: do not overwrite location info if previous template |
| 8235 | // specialization kind was explicit. |
| 8236 | TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind(); |
Richard Smith | 5b8b3db | 2012-02-20 23:28:05 +0000 | [diff] [blame] | 8237 | if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) { |
Francois Pichet | 3a44e43 | 2011-07-08 06:21:47 +0000 | [diff] [blame] | 8238 | Specialization->setLocation(FD->getLocation()); |
Richard Smith | 54f0440 | 2017-05-18 02:29:20 +0000 | [diff] [blame] | 8239 | Specialization->setLexicalDeclContext(FD->getLexicalDeclContext()); |
Richard Smith | 5b8b3db | 2012-02-20 23:28:05 +0000 | [diff] [blame] | 8240 | // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr |
| 8241 | // function can differ from the template declaration with respect to |
| 8242 | // the constexpr specifier. |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8243 | // FIXME: We need an update record for this AST mutation. |
| 8244 | // FIXME: What if there are multiple such prior declarations (for instance, |
| 8245 | // from different modules)? |
Richard Smith | 5b8b3db | 2012-02-20 23:28:05 +0000 | [diff] [blame] | 8246 | Specialization->setConstexpr(FD->isConstexpr()); |
| 8247 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8248 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8249 | // FIXME: Check if the prior specialization has a point of instantiation. |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8250 | // If so, we have run afoul of . |
John McCall | 816d75b | 2010-03-24 07:46:06 +0000 | [diff] [blame] | 8251 | |
| 8252 | // If this is a friend declaration, then we're not really declaring |
| 8253 | // an explicit specialization. |
| 8254 | bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8255 | |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 8256 | // Check the scope of this explicit specialization. |
John McCall | 816d75b | 2010-03-24 07:46:06 +0000 | [diff] [blame] | 8257 | if (!isFriend && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8258 | CheckTemplateSpecializationScope(*this, |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 8259 | Specialization->getPrimaryTemplate(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8260 | Specialization, FD->getLocation(), |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 8261 | false)) |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 8262 | return true; |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8263 | |
| 8264 | // C++ [temp.expl.spec]p6: |
| 8265 | // If a template, a member template or the member of a class template is |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8266 | // explicitly specialized then that specialization shall be declared |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8267 | // before the first use of that specialization that would cause an implicit |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8268 | // instantiation to take place, in every translation unit in which such a |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8269 | // use occurs; no diagnostic is required. |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8270 | bool HasNoEffect = false; |
John McCall | 816d75b | 2010-03-24 07:46:06 +0000 | [diff] [blame] | 8271 | if (!isFriend && |
| 8272 | CheckSpecializationInstantiationRedecl(FD->getLocation(), |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 8273 | TSK_ExplicitSpecialization, |
| 8274 | Specialization, |
| 8275 | SpecInfo->getTemplateSpecializationKind(), |
| 8276 | SpecInfo->getPointOfInstantiation(), |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8277 | HasNoEffect)) |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8278 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 8279 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8280 | // Mark the prior declaration as an explicit specialization, so that later |
| 8281 | // clients know that this is an explicit specialization. |
Argyrios Kyrtzidis | 1b30d9c | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 8282 | if (!isFriend) { |
Faisal Vali | 81a88be | 2016-06-14 03:23:15 +0000 | [diff] [blame] | 8283 | // Since explicit specializations do not inherit '=delete' from their |
| 8284 | // primary function template - check if the 'specialization' that was |
| 8285 | // implicitly generated (during template argument deduction for partial |
| 8286 | // ordering) from the most specialized of all the function templates that |
| 8287 | // 'FD' could have been specializing, has a 'deleted' definition. If so, |
| 8288 | // first check that it was implicitly generated during template argument |
| 8289 | // deduction by making sure it wasn't referenced, and then reset the deleted |
| 8290 | // flag to not-deleted, so that we can inherit that information from 'FD'. |
| 8291 | if (Specialization->isDeleted() && !SpecInfo->isExplicitSpecialization() && |
| 8292 | !Specialization->getCanonicalDecl()->isReferenced()) { |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8293 | // FIXME: This assert will not hold in the presence of modules. |
Faisal Vali | 81a88be | 2016-06-14 03:23:15 +0000 | [diff] [blame] | 8294 | assert( |
| 8295 | Specialization->getCanonicalDecl() == Specialization && |
| 8296 | "This must be the only existing declaration of this specialization"); |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8297 | // FIXME: We need an update record for this AST mutation. |
Faisal Vali | 81a88be | 2016-06-14 03:23:15 +0000 | [diff] [blame] | 8298 | Specialization->setDeletedAsWritten(false); |
Faisal Vali | 5e9e8ac | 2016-04-17 17:32:04 +0000 | [diff] [blame] | 8299 | } |
Richard Smith | 54f0440 | 2017-05-18 02:29:20 +0000 | [diff] [blame] | 8300 | // FIXME: We need an update record for this AST mutation. |
John McCall | 816d75b | 2010-03-24 07:46:06 +0000 | [diff] [blame] | 8301 | SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization); |
Argyrios Kyrtzidis | 1b30d9c | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 8302 | MarkUnusedFileScopedDecl(Specialization); |
| 8303 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8304 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8305 | // Turn the given function declaration into a function template |
| 8306 | // specialization, with the template arguments from the previous |
| 8307 | // specialization. |
Abramo Bagnara | 02ccd28 | 2010-05-20 15:32:11 +0000 | [diff] [blame] | 8308 | // Take copies of (semantic and syntactic) template argument lists. |
| 8309 | const TemplateArgumentList* TemplArgs = new (Context) |
| 8310 | TemplateArgumentList(Specialization->getTemplateSpecializationArgs()); |
Richard Smith | 7d3c3ef | 2015-10-02 00:49:37 +0000 | [diff] [blame] | 8311 | FD->setFunctionTemplateSpecialization( |
| 8312 | Specialization->getPrimaryTemplate(), TemplArgs, /*InsertPos=*/nullptr, |
| 8313 | SpecInfo->getTemplateSpecializationKind(), |
| 8314 | ExplicitTemplateArgs ? &ConvertedTemplateArgs[Specialization] : nullptr); |
Rafael Espindola | 6ae7e50 | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 8315 | |
Artem Belevich | 64135c3 | 2016-12-08 19:38:13 +0000 | [diff] [blame] | 8316 | // A function template specialization inherits the target attributes |
| 8317 | // of its template. (We require the attributes explicitly in the |
| 8318 | // code to match, but a template may have implicit attributes by |
| 8319 | // virtue e.g. of being constexpr, and it passes these implicit |
| 8320 | // attributes on to its specializations.) |
| 8321 | if (LangOpts.CUDA) |
| 8322 | inheritCUDATargetAttrs(FD, *Specialization->getPrimaryTemplate()); |
| 8323 | |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8324 | // The "previous declaration" for this function template specialization is |
| 8325 | // the prior function template specialization. |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8326 | Previous.clear(); |
| 8327 | Previous.addDecl(Specialization); |
Douglas Gregor | 3a923c2d | 2009-09-24 23:14:47 +0000 | [diff] [blame] | 8328 | return false; |
| 8329 | } |
| 8330 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 8331 | /// Perform semantic analysis for the given non-template member |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8332 | /// specialization. |
| 8333 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8334 | /// This routine performs all of the semantic analysis required for an |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8335 | /// explicit member function specialization. On successful completion, |
| 8336 | /// the function declaration \p FD will become a member function |
| 8337 | /// specialization. |
| 8338 | /// |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8339 | /// \param Member the member declaration, which will be updated to become a |
| 8340 | /// specialization. |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8341 | /// |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8342 | /// \param Previous the set of declarations, one of which may be specialized |
| 8343 | /// by this function specialization; the set will be modified to contain the |
| 8344 | /// redeclared member. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8345 | bool |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8346 | Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) { |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8347 | assert(!isa<TemplateDecl>(Member) && "Only for non-template members"); |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 8348 | |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8349 | // Try to find the member we are instantiating. |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8350 | NamedDecl *FoundInstantiation = nullptr; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8351 | NamedDecl *Instantiation = nullptr; |
| 8352 | NamedDecl *InstantiatedFrom = nullptr; |
| 8353 | MemberSpecializationInfo *MSInfo = nullptr; |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8354 | |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8355 | if (Previous.empty()) { |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8356 | // Nowhere to look anyway. |
| 8357 | } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) { |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8358 | for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); |
| 8359 | I != E; ++I) { |
| 8360 | NamedDecl *D = (*I)->getUnderlyingDecl(); |
| 8361 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
Rafael Espindola | 6674722 | 2013-12-10 00:59:31 +0000 | [diff] [blame] | 8362 | QualType Adjusted = Function->getType(); |
| 8363 | if (!hasExplicitCallingConv(Adjusted)) |
| 8364 | Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType()); |
Richard Smith | 4576a77 | 2018-09-10 06:35:32 +0000 | [diff] [blame] | 8365 | // This doesn't handle deduced return types, but both function |
| 8366 | // declarations should be undeduced at this point. |
Rafael Espindola | 6674722 | 2013-12-10 00:59:31 +0000 | [diff] [blame] | 8367 | if (Context.hasSameType(Adjusted, Method->getType())) { |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8368 | FoundInstantiation = *I; |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8369 | Instantiation = Method; |
| 8370 | InstantiatedFrom = Method->getInstantiatedFromMemberFunction(); |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8371 | MSInfo = Method->getMemberSpecializationInfo(); |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8372 | break; |
| 8373 | } |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8374 | } |
| 8375 | } |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8376 | } else if (isa<VarDecl>(Member)) { |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8377 | VarDecl *PrevVar; |
| 8378 | if (Previous.isSingleResult() && |
| 8379 | (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl()))) |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8380 | if (PrevVar->isStaticDataMember()) { |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8381 | FoundInstantiation = Previous.getRepresentativeDecl(); |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8382 | Instantiation = PrevVar; |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8383 | InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember(); |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8384 | MSInfo = PrevVar->getMemberSpecializationInfo(); |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8385 | } |
| 8386 | } else if (isa<RecordDecl>(Member)) { |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8387 | CXXRecordDecl *PrevRecord; |
| 8388 | if (Previous.isSingleResult() && |
| 8389 | (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) { |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8390 | FoundInstantiation = Previous.getRepresentativeDecl(); |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8391 | Instantiation = PrevRecord; |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8392 | InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass(); |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8393 | MSInfo = PrevRecord->getMemberSpecializationInfo(); |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8394 | } |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 8395 | } else if (isa<EnumDecl>(Member)) { |
| 8396 | EnumDecl *PrevEnum; |
| 8397 | if (Previous.isSingleResult() && |
| 8398 | (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) { |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8399 | FoundInstantiation = Previous.getRepresentativeDecl(); |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 8400 | Instantiation = PrevEnum; |
| 8401 | InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum(); |
| 8402 | MSInfo = PrevEnum->getMemberSpecializationInfo(); |
| 8403 | } |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8404 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8405 | |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8406 | if (!Instantiation) { |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8407 | // There is no previous declaration that matches. Since member |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8408 | // specializations are always out-of-line, the caller will complain about |
| 8409 | // this mismatch later. |
| 8410 | return false; |
| 8411 | } |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 8412 | |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8413 | // A member specialization in a friend declaration isn't really declaring |
| 8414 | // an explicit specialization, just identifying a specific (possibly implicit) |
| 8415 | // specialization. Don't change the template specialization kind. |
| 8416 | // |
| 8417 | // FIXME: Is this really valid? Other compilers reject. |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 8418 | if (Member->getFriendObjectKind() != Decl::FOK_None) { |
| 8419 | // Preserve instantiation information. |
| 8420 | if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) { |
| 8421 | cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction( |
| 8422 | cast<CXXMethodDecl>(InstantiatedFrom), |
| 8423 | cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind()); |
| 8424 | } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) { |
| 8425 | cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass( |
| 8426 | cast<CXXRecordDecl>(InstantiatedFrom), |
| 8427 | cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind()); |
| 8428 | } |
| 8429 | |
| 8430 | Previous.clear(); |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8431 | Previous.addDecl(FoundInstantiation); |
John McCall | e820e5e | 2010-04-13 20:37:33 +0000 | [diff] [blame] | 8432 | return false; |
| 8433 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8434 | |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8435 | // Make sure that this is a specialization of a member. |
| 8436 | if (!InstantiatedFrom) { |
| 8437 | Diag(Member->getLocation(), diag::err_spec_member_not_instantiated) |
| 8438 | << Member; |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8439 | Diag(Instantiation->getLocation(), diag::note_specialized_decl); |
| 8440 | return true; |
| 8441 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8442 | |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8443 | // C++ [temp.expl.spec]p6: |
| 8444 | // If a template, a member template or the member of a class template is |
Nico Weber | d3bdadf | 2011-12-23 20:58:04 +0000 | [diff] [blame] | 8445 | // explicitly specialized then that specialization shall be declared |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8446 | // before the first use of that specialization that would cause an implicit |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8447 | // instantiation to take place, in every translation unit in which such a |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8448 | // use occurs; no diagnostic is required. |
| 8449 | assert(MSInfo && "Member specialization info missing?"); |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 8450 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8451 | bool HasNoEffect = false; |
John McCall | 4f7ced6 | 2010-02-11 01:33:53 +0000 | [diff] [blame] | 8452 | if (CheckSpecializationInstantiationRedecl(Member->getLocation(), |
| 8453 | TSK_ExplicitSpecialization, |
| 8454 | Instantiation, |
| 8455 | MSInfo->getTemplateSpecializationKind(), |
| 8456 | MSInfo->getPointOfInstantiation(), |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8457 | HasNoEffect)) |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 8458 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8459 | |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8460 | // Check the scope of this explicit specialization. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8461 | if (CheckTemplateSpecializationScope(*this, |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8462 | InstantiatedFrom, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8463 | Instantiation, Member->getLocation(), |
Douglas Gregor | ba8e1ac | 2009-10-14 23:50:59 +0000 | [diff] [blame] | 8464 | false)) |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8465 | return true; |
Douglas Gregor | d801b06 | 2009-10-07 23:56:10 +0000 | [diff] [blame] | 8466 | |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8467 | // Note that this member specialization is an "instantiation of" the |
| 8468 | // corresponding member of the original template. |
| 8469 | if (auto *MemberFunction = dyn_cast<FunctionDecl>(Member)) { |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 8470 | FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation); |
| 8471 | if (InstantiationFunction->getTemplateSpecializationKind() == |
| 8472 | TSK_ImplicitInstantiation) { |
Faisal Vali | 5e9e8ac | 2016-04-17 17:32:04 +0000 | [diff] [blame] | 8473 | // Explicit specializations of member functions of class templates do not |
| 8474 | // inherit '=delete' from the member function they are specializing. |
| 8475 | if (InstantiationFunction->isDeleted()) { |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8476 | // FIXME: This assert will not hold in the presence of modules. |
Faisal Vali | 5e9e8ac | 2016-04-17 17:32:04 +0000 | [diff] [blame] | 8477 | assert(InstantiationFunction->getCanonicalDecl() == |
| 8478 | InstantiationFunction); |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8479 | // FIXME: We need an update record for this AST mutation. |
Richard Smith | 5f27438 | 2016-09-28 23:55:27 +0000 | [diff] [blame] | 8480 | InstantiationFunction->setDeletedAsWritten(false); |
Faisal Vali | 5e9e8ac | 2016-04-17 17:32:04 +0000 | [diff] [blame] | 8481 | } |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 8482 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8483 | |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8484 | MemberFunction->setInstantiationOfMemberFunction( |
| 8485 | cast<CXXMethodDecl>(InstantiatedFrom), TSK_ExplicitSpecialization); |
| 8486 | } else if (auto *MemberVar = dyn_cast<VarDecl>(Member)) { |
| 8487 | MemberVar->setInstantiationOfStaticDataMember( |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 8488 | cast<VarDecl>(InstantiatedFrom), TSK_ExplicitSpecialization); |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8489 | } else if (auto *MemberClass = dyn_cast<CXXRecordDecl>(Member)) { |
| 8490 | MemberClass->setInstantiationOfMemberClass( |
| 8491 | cast<CXXRecordDecl>(InstantiatedFrom), TSK_ExplicitSpecialization); |
| 8492 | } else if (auto *MemberEnum = dyn_cast<EnumDecl>(Member)) { |
| 8493 | MemberEnum->setInstantiationOfMemberEnum( |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 8494 | cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization); |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8495 | } else { |
| 8496 | llvm_unreachable("unknown member specialization kind"); |
Douglas Gregor | 86d142a | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 8497 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8498 | |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8499 | // Save the caller the trouble of having to figure out which declaration |
| 8500 | // this specialization matches. |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 8501 | Previous.clear(); |
Richard Smith | 22e7cc6 | 2016-05-24 00:01:49 +0000 | [diff] [blame] | 8502 | Previous.addDecl(FoundInstantiation); |
Douglas Gregor | 5c0405d | 2009-10-07 22:35:40 +0000 | [diff] [blame] | 8503 | return false; |
| 8504 | } |
| 8505 | |
Richard Smith | 77e9e84 | 2017-05-09 23:02:10 +0000 | [diff] [blame] | 8506 | /// Complete the explicit specialization of a member of a class template by |
| 8507 | /// updating the instantiated member to be marked as an explicit specialization. |
| 8508 | /// |
| 8509 | /// \param OrigD The member declaration instantiated from the template. |
| 8510 | /// \param Loc The location of the explicit specialization of the member. |
| 8511 | template<typename DeclT> |
| 8512 | static void completeMemberSpecializationImpl(Sema &S, DeclT *OrigD, |
| 8513 | SourceLocation Loc) { |
| 8514 | if (OrigD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) |
| 8515 | return; |
| 8516 | |
| 8517 | // FIXME: Inform AST mutation listeners of this AST mutation. |
| 8518 | // FIXME: If there are multiple in-class declarations of the member (from |
| 8519 | // multiple modules, or a declaration and later definition of a member type), |
| 8520 | // should we update all of them? |
| 8521 | OrigD->setTemplateSpecializationKind(TSK_ExplicitSpecialization); |
| 8522 | OrigD->setLocation(Loc); |
| 8523 | } |
| 8524 | |
| 8525 | void Sema::CompleteMemberSpecialization(NamedDecl *Member, |
| 8526 | LookupResult &Previous) { |
| 8527 | NamedDecl *Instantiation = cast<NamedDecl>(Member->getCanonicalDecl()); |
| 8528 | if (Instantiation == Member) |
| 8529 | return; |
| 8530 | |
| 8531 | if (auto *Function = dyn_cast<CXXMethodDecl>(Instantiation)) |
| 8532 | completeMemberSpecializationImpl(*this, Function, Member->getLocation()); |
| 8533 | else if (auto *Var = dyn_cast<VarDecl>(Instantiation)) |
| 8534 | completeMemberSpecializationImpl(*this, Var, Member->getLocation()); |
| 8535 | else if (auto *Record = dyn_cast<CXXRecordDecl>(Instantiation)) |
| 8536 | completeMemberSpecializationImpl(*this, Record, Member->getLocation()); |
| 8537 | else if (auto *Enum = dyn_cast<EnumDecl>(Instantiation)) |
| 8538 | completeMemberSpecializationImpl(*this, Enum, Member->getLocation()); |
| 8539 | else |
| 8540 | llvm_unreachable("unknown member specialization kind"); |
| 8541 | } |
| 8542 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 8543 | /// Check the scope of an explicit instantiation. |
Douglas Gregor | 6cc1df5 | 2010-07-13 00:10:04 +0000 | [diff] [blame] | 8544 | /// |
| 8545 | /// \returns true if a serious error occurs, false otherwise. |
| 8546 | static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D, |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8547 | SourceLocation InstLoc, |
| 8548 | bool WasQualifiedName) { |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 8549 | DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext(); |
| 8550 | DeclContext *CurContext = S.CurContext->getRedeclContext(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8551 | |
Douglas Gregor | 6cc1df5 | 2010-07-13 00:10:04 +0000 | [diff] [blame] | 8552 | if (CurContext->isRecord()) { |
| 8553 | S.Diag(InstLoc, diag::err_explicit_instantiation_in_class) |
| 8554 | << D; |
| 8555 | return true; |
| 8556 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8557 | |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8558 | // C++11 [temp.explicit]p3: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8559 | // An explicit instantiation shall appear in an enclosing namespace of its |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8560 | // template. If the name declared in the explicit instantiation is an |
| 8561 | // unqualified name, the explicit instantiation shall appear in the |
| 8562 | // namespace where its template is declared or, if that namespace is inline |
| 8563 | // (7.3.1), any namespace from its enclosing namespace set. |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8564 | // |
| 8565 | // This is DR275, which we do not retroactively apply to C++98/03. |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8566 | if (WasQualifiedName) { |
| 8567 | if (CurContext->Encloses(OrigContext)) |
| 8568 | return false; |
| 8569 | } else { |
| 8570 | if (CurContext->InEnclosingNamespaceSetOf(OrigContext)) |
| 8571 | return false; |
| 8572 | } |
| 8573 | |
| 8574 | if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) { |
| 8575 | if (WasQualifiedName) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8576 | S.Diag(InstLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 8577 | S.getLangOpts().CPlusPlus11? |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8578 | diag::err_explicit_instantiation_out_of_scope : |
| 8579 | diag::warn_explicit_instantiation_out_of_scope_0x) |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8580 | << D << NS; |
| 8581 | else |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8582 | S.Diag(InstLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 8583 | S.getLangOpts().CPlusPlus11? |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8584 | diag::err_explicit_instantiation_unqualified_wrong_namespace : |
| 8585 | diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x) |
| 8586 | << D << NS; |
| 8587 | } else |
| 8588 | S.Diag(InstLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 8589 | S.getLangOpts().CPlusPlus11? |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8590 | diag::err_explicit_instantiation_must_be_global : |
| 8591 | diag::warn_explicit_instantiation_must_be_global_0x) |
| 8592 | << D; |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8593 | S.Diag(D->getLocation(), diag::note_explicit_instantiation_here); |
Douglas Gregor | 6cc1df5 | 2010-07-13 00:10:04 +0000 | [diff] [blame] | 8594 | return false; |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8595 | } |
| 8596 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 8597 | /// Determine whether the given scope specifier has a template-id in it. |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8598 | static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) { |
| 8599 | if (!SS.isSet()) |
| 8600 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8601 | |
Richard Smith | 050d261 | 2011-10-18 02:28:33 +0000 | [diff] [blame] | 8602 | // C++11 [temp.explicit]p3: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8603 | // If the explicit instantiation is for a member function, a member class |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8604 | // or a static data member of a class template specialization, the name of |
| 8605 | // the class template specialization in the qualified-id for the member |
| 8606 | // name shall be a simple-template-id. |
| 8607 | // |
| 8608 | // C++98 has the same restriction, just worded differently. |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 8609 | for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS; |
| 8610 | NNS = NNS->getPrefix()) |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 8611 | if (const Type *T = NNS->getAsType()) |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8612 | if (isa<TemplateSpecializationType>(T)) |
| 8613 | return true; |
| 8614 | |
| 8615 | return false; |
| 8616 | } |
| 8617 | |
Shoaib Meenai | fc78d7c | 2016-12-05 18:01:35 +0000 | [diff] [blame] | 8618 | /// Make a dllexport or dllimport attr on a class template specialization take |
| 8619 | /// effect. |
| 8620 | static void dllExportImportClassTemplateSpecialization( |
| 8621 | Sema &S, ClassTemplateSpecializationDecl *Def) { |
| 8622 | auto *A = cast_or_null<InheritableAttr>(getDLLAttr(Def)); |
| 8623 | assert(A && "dllExportImportClassTemplateSpecialization called " |
| 8624 | "on Def without dllexport or dllimport"); |
| 8625 | |
| 8626 | // We reject explicit instantiations in class scope, so there should |
| 8627 | // never be any delayed exported classes to worry about. |
| 8628 | assert(S.DelayedDllExportClasses.empty() && |
| 8629 | "delayed exports present at explicit instantiation"); |
| 8630 | S.checkClassLevelDLLAttribute(Def); |
| 8631 | |
| 8632 | // Propagate attribute to base class templates. |
| 8633 | for (auto &B : Def->bases()) { |
| 8634 | if (auto *BT = dyn_cast_or_null<ClassTemplateSpecializationDecl>( |
| 8635 | B.getType()->getAsCXXRecordDecl())) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 8636 | S.propagateDLLAttrToBaseClassTemplate(Def, A, BT, B.getBeginLoc()); |
Shoaib Meenai | fc78d7c | 2016-12-05 18:01:35 +0000 | [diff] [blame] | 8637 | } |
| 8638 | |
| 8639 | S.referenceDLLExportedClassMethods(); |
| 8640 | } |
| 8641 | |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8642 | // Explicit instantiation of a class template specialization |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 8643 | DeclResult Sema::ActOnExplicitInstantiation( |
| 8644 | Scope *S, SourceLocation ExternLoc, SourceLocation TemplateLoc, |
| 8645 | unsigned TagSpec, SourceLocation KWLoc, const CXXScopeSpec &SS, |
| 8646 | TemplateTy TemplateD, SourceLocation TemplateNameLoc, |
| 8647 | SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgsIn, |
| 8648 | SourceLocation RAngleLoc, const ParsedAttributesView &Attr) { |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8649 | // Find the class template we're specializing |
Serge Pavlov | 9ddb76e | 2013-08-27 13:15:56 +0000 | [diff] [blame] | 8650 | TemplateName Name = TemplateD.get(); |
Richard Smith | 392497b | 2013-06-22 22:03:31 +0000 | [diff] [blame] | 8651 | TemplateDecl *TD = Name.getAsTemplateDecl(); |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8652 | // Check that the specialization uses the same tag kind as the |
| 8653 | // original template. |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 8654 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); |
| 8655 | assert(Kind != TTK_Enum && |
| 8656 | "Invalid enum tag in class template explicit instantiation!"); |
Richard Smith | 392497b | 2013-06-22 22:03:31 +0000 | [diff] [blame] | 8657 | |
Richard Trieu | 265c344 | 2016-04-05 21:13:54 +0000 | [diff] [blame] | 8658 | ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(TD); |
| 8659 | |
| 8660 | if (!ClassTemplate) { |
Reid Kleckner | 1a4ab7e | 2016-12-09 19:47:58 +0000 | [diff] [blame] | 8661 | NonTagKind NTK = getNonTagTypeDeclKind(TD, Kind); |
| 8662 | Diag(TemplateNameLoc, diag::err_tag_reference_non_tag) << TD << NTK << Kind; |
Richard Trieu | 265c344 | 2016-04-05 21:13:54 +0000 | [diff] [blame] | 8663 | Diag(TD->getLocation(), diag::note_previous_use); |
Richard Smith | 392497b | 2013-06-22 22:03:31 +0000 | [diff] [blame] | 8664 | return true; |
| 8665 | } |
| 8666 | |
Douglas Gregor | d9034f0 | 2009-05-14 16:41:31 +0000 | [diff] [blame] | 8667 | if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(), |
Richard Trieu | caa33d3 | 2011-06-10 03:11:26 +0000 | [diff] [blame] | 8668 | Kind, /*isDefinition*/false, KWLoc, |
Justin Bogner | c6ecb7c | 2015-07-10 23:05:47 +0000 | [diff] [blame] | 8669 | ClassTemplate->getIdentifier())) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 8670 | Diag(KWLoc, diag::err_use_with_wrong_tag) |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8671 | << ClassTemplate |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 8672 | << FixItHint::CreateReplacement(KWLoc, |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8673 | ClassTemplate->getTemplatedDecl()->getKindName()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 8674 | Diag(ClassTemplate->getTemplatedDecl()->getLocation(), |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8675 | diag::note_previous_use); |
| 8676 | Kind = ClassTemplate->getTemplatedDecl()->getTagKind(); |
| 8677 | } |
| 8678 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8679 | // C++0x [temp.explicit]p2: |
| 8680 | // There are two forms of explicit instantiation: an explicit instantiation |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8681 | // definition and an explicit instantiation declaration. An explicit |
| 8682 | // instantiation declaration begins with the extern keyword. [...] |
Hans Wennborg | fd76d91 | 2015-01-15 21:18:30 +0000 | [diff] [blame] | 8683 | TemplateSpecializationKind TSK = ExternLoc.isInvalid() |
| 8684 | ? TSK_ExplicitInstantiationDefinition |
| 8685 | : TSK_ExplicitInstantiationDeclaration; |
| 8686 | |
| 8687 | if (TSK == TSK_ExplicitInstantiationDeclaration) { |
| 8688 | // Check for dllexport class template instantiation declarations. |
Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 8689 | for (const ParsedAttr &AL : Attr) { |
| 8690 | if (AL.getKind() == ParsedAttr::AT_DLLExport) { |
Hans Wennborg | fd76d91 | 2015-01-15 21:18:30 +0000 | [diff] [blame] | 8691 | Diag(ExternLoc, |
| 8692 | diag::warn_attribute_dllexport_explicit_instantiation_decl); |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 8693 | Diag(AL.getLoc(), diag::note_attribute); |
Hans Wennborg | fd76d91 | 2015-01-15 21:18:30 +0000 | [diff] [blame] | 8694 | break; |
| 8695 | } |
| 8696 | } |
| 8697 | |
| 8698 | if (auto *A = ClassTemplate->getTemplatedDecl()->getAttr<DLLExportAttr>()) { |
| 8699 | Diag(ExternLoc, |
| 8700 | diag::warn_attribute_dllexport_explicit_instantiation_decl); |
| 8701 | Diag(A->getLocation(), diag::note_attribute); |
| 8702 | } |
| 8703 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8704 | |
Hans Wennborg | a86a83b | 2016-05-26 19:42:56 +0000 | [diff] [blame] | 8705 | // In MSVC mode, dllimported explicit instantiation definitions are treated as |
| 8706 | // instantiation declarations for most purposes. |
| 8707 | bool DLLImportExplicitInstantiationDef = false; |
| 8708 | if (TSK == TSK_ExplicitInstantiationDefinition && |
| 8709 | Context.getTargetInfo().getCXXABI().isMicrosoft()) { |
| 8710 | // Check for dllimport class template instantiation definitions. |
| 8711 | bool DLLImport = |
| 8712 | ClassTemplate->getTemplatedDecl()->getAttr<DLLImportAttr>(); |
Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 8713 | for (const ParsedAttr &AL : Attr) { |
| 8714 | if (AL.getKind() == ParsedAttr::AT_DLLImport) |
Hans Wennborg | a86a83b | 2016-05-26 19:42:56 +0000 | [diff] [blame] | 8715 | DLLImport = true; |
Erich Keane | e891aa9 | 2018-07-13 15:07:47 +0000 | [diff] [blame] | 8716 | if (AL.getKind() == ParsedAttr::AT_DLLExport) { |
Hans Wennborg | a86a83b | 2016-05-26 19:42:56 +0000 | [diff] [blame] | 8717 | // dllexport trumps dllimport here. |
| 8718 | DLLImport = false; |
| 8719 | break; |
| 8720 | } |
| 8721 | } |
| 8722 | if (DLLImport) { |
| 8723 | TSK = TSK_ExplicitInstantiationDeclaration; |
| 8724 | DLLImportExplicitInstantiationDef = true; |
| 8725 | } |
| 8726 | } |
| 8727 | |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8728 | // Translate the parser's template argument list in our AST format. |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 8729 | TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); |
Douglas Gregor | b53edfb | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 8730 | translateTemplateArguments(TemplateArgsIn, TemplateArgs); |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8731 | |
| 8732 | // Check that the template argument list is well-formed for this |
| 8733 | // template. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8734 | SmallVector<TemplateArgument, 4> Converted; |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 8735 | if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc, |
| 8736 | TemplateArgs, false, Converted)) |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8737 | return true; |
| 8738 | |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8739 | // Find the class template specialization declaration that |
| 8740 | // corresponds to these arguments. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8741 | void *InsertPos = nullptr; |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8742 | ClassTemplateSpecializationDecl *PrevDecl |
Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 8743 | = ClassTemplate->findSpecialization(Converted, InsertPos); |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8744 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8745 | TemplateSpecializationKind PrevDecl_TSK |
| 8746 | = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared; |
| 8747 | |
Douglas Gregor | 5488865 | 2009-10-07 00:13:32 +0000 | [diff] [blame] | 8748 | // C++0x [temp.explicit]p2: |
| 8749 | // [...] An explicit instantiation shall appear in an enclosing |
| 8750 | // namespace of its template. [...] |
| 8751 | // |
| 8752 | // This is C++ DR 275. |
Douglas Gregor | 6cc1df5 | 2010-07-13 00:10:04 +0000 | [diff] [blame] | 8753 | if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc, |
| 8754 | SS.isSet())) |
| 8755 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8756 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8757 | ClassTemplateSpecializationDecl *Specialization = nullptr; |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8758 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8759 | bool HasNoEffect = false; |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8760 | if (PrevDecl) { |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 8761 | if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK, |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8762 | PrevDecl, PrevDecl_TSK, |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 8763 | PrevDecl->getPointOfInstantiation(), |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8764 | HasNoEffect)) |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8765 | return PrevDecl; |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8766 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8767 | // Even though HasNoEffect == true means that this explicit instantiation |
| 8768 | // has no effect on semantics, we go on to put its syntax in the AST. |
| 8769 | |
| 8770 | if (PrevDecl_TSK == TSK_ImplicitInstantiation || |
| 8771 | PrevDecl_TSK == TSK_Undeclared) { |
Douglas Gregor | 4aa04b1 | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 8772 | // Since the only prior class template specialization with these |
| 8773 | // arguments was referenced but not declared, reuse that |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8774 | // declaration node as our own, updating the source location |
| 8775 | // for the template name to reflect our new declaration. |
| 8776 | // (Other source locations will be updated later.) |
Douglas Gregor | 4aa04b1 | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 8777 | Specialization = PrevDecl; |
| 8778 | Specialization->setLocation(TemplateNameLoc); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8779 | PrevDecl = nullptr; |
Douglas Gregor | 4aa04b1 | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 8780 | } |
Hans Wennborg | a86a83b | 2016-05-26 19:42:56 +0000 | [diff] [blame] | 8781 | |
| 8782 | if (PrevDecl_TSK == TSK_ExplicitInstantiationDeclaration && |
| 8783 | DLLImportExplicitInstantiationDef) { |
| 8784 | // The new specialization might add a dllimport attribute. |
| 8785 | HasNoEffect = false; |
| 8786 | } |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 8787 | } |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8788 | |
Douglas Gregor | 4aa04b1 | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 8789 | if (!Specialization) { |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8790 | // Create a new class template specialization declaration node for |
| 8791 | // this explicit specialization. |
| 8792 | Specialization |
Douglas Gregor | e902956 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 8793 | = ClassTemplateSpecializationDecl::Create(Context, Kind, |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8794 | ClassTemplate->getDeclContext(), |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 8795 | KWLoc, TemplateNameLoc, |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8796 | ClassTemplate, |
David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 8797 | Converted, |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 8798 | PrevDecl); |
Bruno Ricci | 4224c87 | 2018-12-21 14:35:24 +0000 | [diff] [blame] | 8799 | SetNestedNameSpecifier(*this, Specialization, SS); |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8800 | |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 8801 | if (!HasNoEffect && !PrevDecl) { |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8802 | // Insert the new specialization. |
Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 8803 | ClassTemplate->AddSpecialization(Specialization, InsertPos); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8804 | } |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8805 | } |
| 8806 | |
| 8807 | // Build the fully-sugared type for this explicit instantiation as |
| 8808 | // the user wrote in the explicit instantiation itself. This means |
| 8809 | // that we'll pretty-print the type retrieved from the |
| 8810 | // specialization's declaration the way that the user actually wrote |
| 8811 | // the explicit instantiation, rather than formatting the name based |
| 8812 | // on the "canonical" representation used to store the template |
| 8813 | // arguments in the specialization. |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 8814 | TypeSourceInfo *WrittenTy |
| 8815 | = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc, |
| 8816 | TemplateArgs, |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8817 | Context.getTypeDeclType(Specialization)); |
| 8818 | Specialization->setTypeAsWritten(WrittenTy); |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8819 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8820 | // Set source locations for keywords. |
| 8821 | Specialization->setExternLoc(ExternLoc); |
| 8822 | Specialization->setTemplateKeywordLoc(TemplateLoc); |
Argyrios Kyrtzidis | d798c05 | 2016-07-15 18:11:33 +0000 | [diff] [blame] | 8823 | Specialization->setBraceRange(SourceRange()); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8824 | |
Shoaib Meenai | 5adfb5a | 2017-01-13 01:28:34 +0000 | [diff] [blame] | 8825 | bool PreviouslyDLLExported = Specialization->hasAttr<DLLExportAttr>(); |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 8826 | ProcessDeclAttributeList(S, Specialization, Attr); |
Rafael Espindola | 0b06207 | 2012-01-03 06:04:21 +0000 | [diff] [blame] | 8827 | |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8828 | // Add the explicit instantiation into its lexical context. However, |
| 8829 | // since explicit instantiations are never found by name lookup, we |
| 8830 | // just put it into the declaration context directly. |
| 8831 | Specialization->setLexicalDeclContext(CurContext); |
| 8832 | CurContext->addDecl(Specialization); |
| 8833 | |
| 8834 | // Syntax is now OK, so return if it has no other effect on semantics. |
| 8835 | if (HasNoEffect) { |
| 8836 | // Set the template specialization kind. |
| 8837 | Specialization->setTemplateSpecializationKind(TSK); |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8838 | return Specialization; |
Douglas Gregor | 0681a35 | 2009-11-25 06:01:46 +0000 | [diff] [blame] | 8839 | } |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8840 | |
| 8841 | // C++ [temp.explicit]p3: |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8842 | // A definition of a class template or class member template |
| 8843 | // shall be in scope at the point of the explicit instantiation of |
| 8844 | // the class template or class member template. |
| 8845 | // |
| 8846 | // This check comes when we actually try to perform the |
| 8847 | // instantiation. |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 8848 | ClassTemplateSpecializationDecl *Def |
| 8849 | = cast_or_null<ClassTemplateSpecializationDecl>( |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 8850 | Specialization->getDefinition()); |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 8851 | if (!Def) |
Douglas Gregor | ef6ab41 | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 8852 | InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8853 | else if (TSK == TSK_ExplicitInstantiationDefinition) { |
Douglas Gregor | 88d292c | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 8854 | MarkVTableUsed(TemplateNameLoc, Specialization, true); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8855 | Specialization->setPointOfInstantiation(Def->getPointOfInstantiation()); |
| 8856 | } |
Douglas Gregor | 88d292c | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 8857 | |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 8858 | // Instantiate the members of this class template specialization. |
| 8859 | Def = cast_or_null<ClassTemplateSpecializationDecl>( |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 8860 | Specialization->getDefinition()); |
Rafael Espindola | 8d04f06 | 2010-03-22 23:12:48 +0000 | [diff] [blame] | 8861 | if (Def) { |
Rafael Espindola | fa1708fd | 2010-03-23 19:55:22 +0000 | [diff] [blame] | 8862 | TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind(); |
Rafael Espindola | fa1708fd | 2010-03-23 19:55:22 +0000 | [diff] [blame] | 8863 | // Fix a TSK_ExplicitInstantiationDeclaration followed by a |
| 8864 | // TSK_ExplicitInstantiationDefinition |
| 8865 | if (Old_TSK == TSK_ExplicitInstantiationDeclaration && |
Hans Wennborg | a86a83b | 2016-05-26 19:42:56 +0000 | [diff] [blame] | 8866 | (TSK == TSK_ExplicitInstantiationDefinition || |
| 8867 | DLLImportExplicitInstantiationDef)) { |
Richard Smith | eb36ddf | 2014-04-24 22:45:46 +0000 | [diff] [blame] | 8868 | // FIXME: Need to notify the ASTMutationListener that we did this. |
Rafael Espindola | fa1708fd | 2010-03-23 19:55:22 +0000 | [diff] [blame] | 8869 | Def->setTemplateSpecializationKind(TSK); |
Rafael Espindola | 8d04f06 | 2010-03-22 23:12:48 +0000 | [diff] [blame] | 8870 | |
Hans Wennborg | c087550 | 2015-06-09 00:39:05 +0000 | [diff] [blame] | 8871 | if (!getDLLAttr(Def) && getDLLAttr(Specialization) && |
Shoaib Meenai | ab3f96c | 2016-11-09 23:52:20 +0000 | [diff] [blame] | 8872 | (Context.getTargetInfo().getCXXABI().isMicrosoft() || |
| 8873 | Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) { |
Hans Wennborg | c087550 | 2015-06-09 00:39:05 +0000 | [diff] [blame] | 8874 | // In the MS ABI, an explicit instantiation definition can add a dll |
| 8875 | // attribute to a template with a previous instantiation declaration. |
| 8876 | // MinGW doesn't allow this. |
Hans Wennborg | 17f9b44 | 2015-05-27 00:06:45 +0000 | [diff] [blame] | 8877 | auto *A = cast<InheritableAttr>( |
| 8878 | getDLLAttr(Specialization)->clone(getASTContext())); |
| 8879 | A->setInherited(true); |
| 8880 | Def->addAttr(A); |
Shoaib Meenai | fc78d7c | 2016-12-05 18:01:35 +0000 | [diff] [blame] | 8881 | dllExportImportClassTemplateSpecialization(*this, Def); |
Hans Wennborg | 17f9b44 | 2015-05-27 00:06:45 +0000 | [diff] [blame] | 8882 | } |
| 8883 | } |
| 8884 | |
Shoaib Meenai | fc78d7c | 2016-12-05 18:01:35 +0000 | [diff] [blame] | 8885 | // Fix a TSK_ImplicitInstantiation followed by a |
| 8886 | // TSK_ExplicitInstantiationDefinition |
Shoaib Meenai | 5adfb5a | 2017-01-13 01:28:34 +0000 | [diff] [blame] | 8887 | bool NewlyDLLExported = |
| 8888 | !PreviouslyDLLExported && Specialization->hasAttr<DLLExportAttr>(); |
| 8889 | if (Old_TSK == TSK_ImplicitInstantiation && NewlyDLLExported && |
Shoaib Meenai | fc78d7c | 2016-12-05 18:01:35 +0000 | [diff] [blame] | 8890 | (Context.getTargetInfo().getCXXABI().isMicrosoft() || |
| 8891 | Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) { |
| 8892 | // In the MS ABI, an explicit instantiation definition can add a dll |
| 8893 | // attribute to a template with a previous implicit instantiation. |
| 8894 | // MinGW doesn't allow this. We limit clang to only adding dllexport, to |
| 8895 | // avoid potentially strange codegen behavior. For example, if we extend |
| 8896 | // this conditional to dllimport, and we have a source file calling a |
| 8897 | // method on an implicitly instantiated template class instance and then |
| 8898 | // declaring a dllimport explicit instantiation definition for the same |
| 8899 | // template class, the codegen for the method call will not respect the |
| 8900 | // dllimport, while it will with cl. The Def will already have the DLL |
| 8901 | // attribute, since the Def and Specialization will be the same in the |
| 8902 | // case of Old_TSK == TSK_ImplicitInstantiation, and we already added the |
| 8903 | // attribute to the Specialization; we just need to make it take effect. |
| 8904 | assert(Def == Specialization && |
| 8905 | "Def and Specialization should match for implicit instantiation"); |
| 8906 | dllExportImportClassTemplateSpecialization(*this, Def); |
| 8907 | } |
| 8908 | |
Argyrios Kyrtzidis | 322d853 | 2015-09-11 01:44:56 +0000 | [diff] [blame] | 8909 | // Set the template specialization kind. Make sure it is set before |
| 8910 | // instantiating the members which will trigger ASTConsumer callbacks. |
| 8911 | Specialization->setTemplateSpecializationKind(TSK); |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 8912 | InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK); |
Argyrios Kyrtzidis | 322d853 | 2015-09-11 01:44:56 +0000 | [diff] [blame] | 8913 | } else { |
| 8914 | |
| 8915 | // Set the template specialization kind. |
| 8916 | Specialization->setTemplateSpecializationKind(TSK); |
Rafael Espindola | 8d04f06 | 2010-03-22 23:12:48 +0000 | [diff] [blame] | 8917 | } |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8918 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8919 | return Specialization; |
Douglas Gregor | a1f4997 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 8920 | } |
| 8921 | |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8922 | // Explicit instantiation of a member class of a class template. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8923 | DeclResult |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 8924 | Sema::ActOnExplicitInstantiation(Scope *S, SourceLocation ExternLoc, |
| 8925 | SourceLocation TemplateLoc, unsigned TagSpec, |
| 8926 | SourceLocation KWLoc, CXXScopeSpec &SS, |
| 8927 | IdentifierInfo *Name, SourceLocation NameLoc, |
| 8928 | const ParsedAttributesView &Attr) { |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8929 | |
Douglas Gregor | d6ab874 | 2009-05-28 23:31:59 +0000 | [diff] [blame] | 8930 | bool Owned = false; |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 8931 | bool IsDependent = false; |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 8932 | Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8933 | KWLoc, SS, Name, NameLoc, Attr, AS_none, |
Douglas Gregor | 2820e69 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 8934 | /*ModulePrivateLoc=*/SourceLocation(), |
Benjamin Kramer | cc4c49d | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 8935 | MultiTemplateParamsArg(), Owned, IsDependent, |
Richard Smith | 649c7b06 | 2014-01-08 00:56:48 +0000 | [diff] [blame] | 8936 | SourceLocation(), false, TypeResult(), |
Akira Hatanaka | 12ddcee | 2017-06-26 18:46:12 +0000 | [diff] [blame] | 8937 | /*IsTypeSpecifier*/false, |
| 8938 | /*IsTemplateParamOrArg*/false); |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 8939 | assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); |
| 8940 | |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8941 | if (!TagD) |
| 8942 | return true; |
| 8943 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8944 | TagDecl *Tag = cast<TagDecl>(TagD); |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 8945 | assert(!Tag->isEnum() && "shouldn't see enumerations here"); |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8946 | |
Douglas Gregor | b8006faf | 2009-05-27 17:30:49 +0000 | [diff] [blame] | 8947 | if (Tag->isInvalidDecl()) |
| 8948 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8949 | |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8950 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag); |
| 8951 | CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass(); |
| 8952 | if (!Pattern) { |
| 8953 | Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type) |
| 8954 | << Context.getTypeDeclType(Record); |
| 8955 | Diag(Record->getLocation(), diag::note_nontemplate_decl_here); |
| 8956 | return true; |
| 8957 | } |
| 8958 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8959 | // C++0x [temp.explicit]p2: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8960 | // If the explicit instantiation is for a class or member class, the |
| 8961 | // elaborated-type-specifier in the declaration shall include a |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8962 | // simple-template-id. |
| 8963 | // |
| 8964 | // C++98 has the same restriction, just worded differently. |
| 8965 | if (!ScopeSpecifierHasTemplateId(SS)) |
Douglas Gregor | 010815a | 2010-06-16 16:26:47 +0000 | [diff] [blame] | 8966 | Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id) |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8967 | << Record << SS.getRange(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8968 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8969 | // C++0x [temp.explicit]p2: |
| 8970 | // There are two forms of explicit instantiation: an explicit instantiation |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8971 | // definition and an explicit instantiation declaration. An explicit |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8972 | // instantiation declaration begins with the extern keyword. [...] |
Douglas Gregor | 5d85197 | 2009-10-14 21:46:58 +0000 | [diff] [blame] | 8973 | TemplateSpecializationKind TSK |
| 8974 | = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition |
| 8975 | : TSK_ExplicitInstantiationDeclaration; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8976 | |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 8977 | // C++0x [temp.explicit]p2: |
| 8978 | // [...] An explicit instantiation shall appear in an enclosing |
| 8979 | // namespace of its template. [...] |
| 8980 | // |
| 8981 | // This is C++ DR 275. |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 8982 | CheckExplicitInstantiationScope(*this, Record, NameLoc, true); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8983 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8984 | // Verify that it is okay to explicitly instantiate here. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8985 | CXXRecordDecl *PrevDecl |
Douglas Gregor | ec9fd13 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 8986 | = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl()); |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 8987 | if (!PrevDecl && Record->getDefinition()) |
Douglas Gregor | 8f003d0 | 2009-10-15 18:07:02 +0000 | [diff] [blame] | 8988 | PrevDecl = Record; |
| 8989 | if (PrevDecl) { |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8990 | MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo(); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8991 | bool HasNoEffect = false; |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8992 | assert(MSInfo && "No member specialization information?"); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8993 | if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK, |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8994 | PrevDecl, |
| 8995 | MSInfo->getTemplateSpecializationKind(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 8996 | MSInfo->getPointOfInstantiation(), |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8997 | HasNoEffect)) |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 8998 | return true; |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 8999 | if (HasNoEffect) |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 9000 | return TagD; |
| 9001 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9002 | |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 9003 | CXXRecordDecl *RecordDef |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 9004 | = cast_or_null<CXXRecordDecl>(Record->getDefinition()); |
Douglas Gregor | 12e49d3 | 2009-10-15 22:53:21 +0000 | [diff] [blame] | 9005 | if (!RecordDef) { |
Douglas Gregor | 68edf13 | 2009-10-15 12:53:22 +0000 | [diff] [blame] | 9006 | // C++ [temp.explicit]p3: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9007 | // A definition of a member class of a class template shall be in scope |
Douglas Gregor | 68edf13 | 2009-10-15 12:53:22 +0000 | [diff] [blame] | 9008 | // at the point of an explicit instantiation of the member class. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9009 | CXXRecordDecl *Def |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 9010 | = cast_or_null<CXXRecordDecl>(Pattern->getDefinition()); |
Douglas Gregor | 68edf13 | 2009-10-15 12:53:22 +0000 | [diff] [blame] | 9011 | if (!Def) { |
Douglas Gregor | a8b89d2 | 2009-10-15 14:05:49 +0000 | [diff] [blame] | 9012 | Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member) |
| 9013 | << 0 << Record->getDeclName() << Record->getDeclContext(); |
Douglas Gregor | 68edf13 | 2009-10-15 12:53:22 +0000 | [diff] [blame] | 9014 | Diag(Pattern->getLocation(), diag::note_forward_declaration) |
| 9015 | << Pattern; |
| 9016 | return true; |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 9017 | } else { |
| 9018 | if (InstantiateClass(NameLoc, Record, Def, |
| 9019 | getTemplateInstantiationArgs(Record), |
| 9020 | TSK)) |
| 9021 | return true; |
| 9022 | |
Douglas Gregor | 0a5a221 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 9023 | RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition()); |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 9024 | if (!RecordDef) |
| 9025 | return true; |
| 9026 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9027 | } |
| 9028 | |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 9029 | // Instantiate all of the members of the class. |
| 9030 | InstantiateClassMembers(NameLoc, RecordDef, |
| 9031 | getTemplateInstantiationArgs(Record), TSK); |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 9032 | |
Douglas Gregor | 88d292c | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 9033 | if (TSK == TSK_ExplicitInstantiationDefinition) |
| 9034 | MarkVTableUsed(NameLoc, RecordDef, true); |
| 9035 | |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 9036 | // FIXME: We don't have any representation for explicit instantiations of |
| 9037 | // member classes. Such a representation is not needed for compilation, but it |
| 9038 | // should be available for clients that want to see all of the declarations in |
| 9039 | // the source code. |
Douglas Gregor | 2ec748c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 9040 | return TagD; |
| 9041 | } |
| 9042 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 9043 | DeclResult Sema::ActOnExplicitInstantiation(Scope *S, |
| 9044 | SourceLocation ExternLoc, |
| 9045 | SourceLocation TemplateLoc, |
| 9046 | Declarator &D) { |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9047 | // Explicit instantiations always require a name. |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 9048 | // TODO: check if/when DNInfo should replace Name. |
| 9049 | DeclarationNameInfo NameInfo = GetNameForDeclarator(D); |
| 9050 | DeclarationName Name = NameInfo.getName(); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9051 | if (!Name) { |
| 9052 | if (!D.isInvalidType()) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9053 | Diag(D.getDeclSpec().getBeginLoc(), |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9054 | diag::err_explicit_instantiation_requires_name) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9055 | << D.getDeclSpec().getSourceRange() << D.getSourceRange(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9056 | |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9057 | return true; |
| 9058 | } |
| 9059 | |
| 9060 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 9061 | // we find one that is. |
| 9062 | while ((S->getFlags() & Scope::DeclScope) == 0 || |
| 9063 | (S->getFlags() & Scope::TemplateParamScope) != 0) |
| 9064 | S = S->getParent(); |
| 9065 | |
| 9066 | // Determine the type of the declaration. |
John McCall | 8cb7bdf | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 9067 | TypeSourceInfo *T = GetTypeForDeclarator(D, S); |
| 9068 | QualType R = T->getType(); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9069 | if (R.isNull()) |
| 9070 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9071 | |
Douglas Gregor | 781ba6e | 2011-05-21 18:53:30 +0000 | [diff] [blame] | 9072 | // C++ [dcl.stc]p1: |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9073 | // A storage-class-specifier shall not be specified in [...] an explicit |
Douglas Gregor | 781ba6e | 2011-05-21 18:53:30 +0000 | [diff] [blame] | 9074 | // instantiation (14.7.2) directive. |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9075 | if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9076 | Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef) |
| 9077 | << Name; |
| 9078 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9079 | } else if (D.getDeclSpec().getStorageClassSpec() |
Douglas Gregor | 781ba6e | 2011-05-21 18:53:30 +0000 | [diff] [blame] | 9080 | != DeclSpec::SCS_unspecified) { |
| 9081 | // Complain about then remove the storage class specifier. |
| 9082 | Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class) |
| 9083 | << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9084 | |
Douglas Gregor | 781ba6e | 2011-05-21 18:53:30 +0000 | [diff] [blame] | 9085 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9086 | } |
| 9087 | |
Douglas Gregor | 3c74d41 | 2009-10-14 20:14:33 +0000 | [diff] [blame] | 9088 | // C++0x [temp.explicit]p1: |
| 9089 | // [...] An explicit instantiation of a function template shall not use the |
| 9090 | // inline or constexpr specifiers. |
| 9091 | // Presumably, this also applies to member functions of class templates as |
| 9092 | // well. |
Richard Smith | 83c1929 | 2011-10-18 03:44:03 +0000 | [diff] [blame] | 9093 | if (D.getDeclSpec().isInlineSpecified()) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9094 | Diag(D.getDeclSpec().getInlineSpecLoc(), |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 9095 | getLangOpts().CPlusPlus11 ? |
Richard Smith | 83c1929 | 2011-10-18 03:44:03 +0000 | [diff] [blame] | 9096 | diag::err_explicit_instantiation_inline : |
| 9097 | diag::warn_explicit_instantiation_inline_0x) |
Richard Smith | 465841e | 2011-10-14 19:58:02 +0000 | [diff] [blame] | 9098 | << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9099 | if (D.getDeclSpec().isConstexprSpecified() && R->isFunctionType()) |
Richard Smith | 465841e | 2011-10-14 19:58:02 +0000 | [diff] [blame] | 9100 | // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is |
| 9101 | // not already specified. |
| 9102 | Diag(D.getDeclSpec().getConstexprSpecLoc(), |
| 9103 | diag::err_explicit_instantiation_constexpr); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9104 | |
Richard Smith | 19a311a | 2017-02-09 22:47:51 +0000 | [diff] [blame] | 9105 | // A deduction guide is not on the list of entities that can be explicitly |
| 9106 | // instantiated. |
| 9107 | if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9108 | Diag(D.getDeclSpec().getBeginLoc(), diag::err_deduction_guide_specialized) |
| 9109 | << /*explicit instantiation*/ 0; |
Richard Smith | 19a311a | 2017-02-09 22:47:51 +0000 | [diff] [blame] | 9110 | return true; |
| 9111 | } |
| 9112 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9113 | // C++0x [temp.explicit]p2: |
| 9114 | // There are two forms of explicit instantiation: an explicit instantiation |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9115 | // definition and an explicit instantiation declaration. An explicit |
| 9116 | // instantiation declaration begins with the extern keyword. [...] |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9117 | TemplateSpecializationKind TSK |
| 9118 | = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition |
| 9119 | : TSK_ExplicitInstantiationDeclaration; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9120 | |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 9121 | LookupResult Previous(*this, NameInfo, LookupOrdinaryName); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 9122 | LookupParsedName(Previous, S, &D.getCXXScopeSpec()); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9123 | |
| 9124 | if (!R->isFunctionType()) { |
| 9125 | // C++ [temp.explicit]p1: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9126 | // A [...] static data member of a class template can be explicitly |
| 9127 | // instantiated from the member definition associated with its class |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9128 | // template. |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9129 | // C++1y [temp.explicit]p1: |
| 9130 | // A [...] variable [...] template specialization can be explicitly |
| 9131 | // instantiated from its template. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 9132 | if (Previous.isAmbiguous()) |
| 9133 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9134 | |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 9135 | VarDecl *Prev = Previous.getAsSingle<VarDecl>(); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9136 | VarTemplateDecl *PrevTemplate = Previous.getAsSingle<VarTemplateDecl>(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9137 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9138 | if (!PrevTemplate) { |
| 9139 | if (!Prev || !Prev->isStaticDataMember()) { |
| 9140 | // We expect to see a data data member here. |
| 9141 | Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known) |
| 9142 | << Name; |
| 9143 | for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end(); |
| 9144 | P != PEnd; ++P) |
| 9145 | Diag((*P)->getLocation(), diag::note_explicit_instantiation_here); |
| 9146 | return true; |
| 9147 | } |
| 9148 | |
| 9149 | if (!Prev->getInstantiatedFromStaticDataMember()) { |
| 9150 | // FIXME: Check for explicit specialization? |
| 9151 | Diag(D.getIdentifierLoc(), |
| 9152 | diag::err_explicit_instantiation_data_member_not_instantiated) |
| 9153 | << Prev; |
| 9154 | Diag(Prev->getLocation(), diag::note_explicit_instantiation_here); |
| 9155 | // FIXME: Can we provide a note showing where this was declared? |
| 9156 | return true; |
| 9157 | } |
| 9158 | } else { |
| 9159 | // Explicitly instantiate a variable template. |
| 9160 | |
| 9161 | // C++1y [dcl.spec.auto]p6: |
| 9162 | // ... A program that uses auto or decltype(auto) in a context not |
| 9163 | // explicitly allowed in this section is ill-formed. |
| 9164 | // |
| 9165 | // This includes auto-typed variable template instantiations. |
| 9166 | if (R->isUndeducedType()) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9167 | Diag(T->getTypeLoc().getBeginLoc(), |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9168 | diag::err_auto_not_allowed_var_inst); |
| 9169 | return true; |
| 9170 | } |
| 9171 | |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 9172 | if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) { |
Richard Smith | ef985ac | 2013-09-18 02:10:12 +0000 | [diff] [blame] | 9173 | // C++1y [temp.explicit]p3: |
| 9174 | // If the explicit instantiation is for a variable, the unqualified-id |
| 9175 | // in the declaration shall be a template-id. |
| 9176 | Diag(D.getIdentifierLoc(), |
| 9177 | diag::err_explicit_instantiation_without_template_id) |
| 9178 | << PrevTemplate; |
| 9179 | Diag(PrevTemplate->getLocation(), |
| 9180 | diag::note_explicit_instantiation_here); |
| 9181 | return true; |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9182 | } |
| 9183 | |
Richard Smith | ef985ac | 2013-09-18 02:10:12 +0000 | [diff] [blame] | 9184 | // Translate the parser's template argument list into our AST format. |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 9185 | TemplateArgumentListInfo TemplateArgs = |
| 9186 | makeTemplateArgumentListInfo(*this, *D.getName().TemplateId); |
Richard Smith | ef985ac | 2013-09-18 02:10:12 +0000 | [diff] [blame] | 9187 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9188 | DeclResult Res = CheckVarTemplateId(PrevTemplate, TemplateLoc, |
| 9189 | D.getIdentifierLoc(), TemplateArgs); |
| 9190 | if (Res.isInvalid()) |
| 9191 | return true; |
| 9192 | |
| 9193 | // Ignore access control bits, we don't need them for redeclaration |
| 9194 | // checking. |
| 9195 | Prev = cast<VarDecl>(Res.get()); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9196 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9197 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9198 | // C++0x [temp.explicit]p2: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9199 | // If the explicit instantiation is for a member function, a member class |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9200 | // or a static data member of a class template specialization, the name of |
| 9201 | // the class template specialization in the qualified-id for the member |
| 9202 | // name shall be a simple-template-id. |
| 9203 | // |
| 9204 | // C++98 has the same restriction, just worded differently. |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9205 | // |
Richard Smith | 5977d87 | 2013-09-18 21:55:14 +0000 | [diff] [blame] | 9206 | // This does not apply to variable template specializations, where the |
| 9207 | // template-id is in the unqualified-id instead. |
| 9208 | if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()) && !PrevTemplate) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9209 | Diag(D.getIdentifierLoc(), |
Douglas Gregor | 010815a | 2010-06-16 16:26:47 +0000 | [diff] [blame] | 9210 | diag::ext_explicit_instantiation_without_qualified_id) |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9211 | << Prev << D.getCXXScopeSpec().getRange(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9212 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9213 | // Check the scope of this explicit instantiation. |
| 9214 | CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9215 | |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 9216 | // Verify that it is okay to explicitly instantiate here. |
Richard Smith | 8809a0c | 2013-09-27 20:14:12 +0000 | [diff] [blame] | 9217 | TemplateSpecializationKind PrevTSK = Prev->getTemplateSpecializationKind(); |
| 9218 | SourceLocation POI = Prev->getPointOfInstantiation(); |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 9219 | bool HasNoEffect = false; |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 9220 | if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev, |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9221 | PrevTSK, POI, HasNoEffect)) |
Douglas Gregor | d6ba93d | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 9222 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9223 | |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9224 | if (!HasNoEffect) { |
| 9225 | // Instantiate static data member or variable template. |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9226 | Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc()); |
Louis Dionne | e6e8175 | 2018-10-10 15:32:29 +0000 | [diff] [blame] | 9227 | // Merge attributes. |
| 9228 | ProcessDeclAttributeList(S, Prev, D.getDeclSpec().getAttributes()); |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9229 | if (TSK == TSK_ExplicitInstantiationDefinition) |
| 9230 | InstantiateVariableDefinition(D.getIdentifierLoc(), Prev); |
| 9231 | } |
| 9232 | |
| 9233 | // Check the new variable specialization against the parsed input. |
| 9234 | if (PrevTemplate && Prev && !Context.hasSameType(Prev->getType(), R)) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9235 | Diag(T->getTypeLoc().getBeginLoc(), |
Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 9236 | diag::err_invalid_var_template_spec_type) |
| 9237 | << 0 << PrevTemplate << R << Prev->getType(); |
| 9238 | Diag(PrevTemplate->getLocation(), diag::note_template_declared_here) |
| 9239 | << 2 << PrevTemplate->getDeclName(); |
| 9240 | return true; |
| 9241 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9242 | |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9243 | // FIXME: Create an ExplicitInstantiation node? |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9244 | return (Decl*) nullptr; |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9245 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9246 | |
| 9247 | // If the declarator is a template-id, translate the parser's template |
Douglas Gregor | 0e876e0 | 2009-09-25 23:53:26 +0000 | [diff] [blame] | 9248 | // argument list into our AST format. |
Douglas Gregor | d90fd52 | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 9249 | bool HasExplicitTemplateArgs = false; |
John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 9250 | TemplateArgumentListInfo TemplateArgs; |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 9251 | if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) { |
Richard Smith | 4b55a9c | 2014-04-17 03:29:33 +0000 | [diff] [blame] | 9252 | TemplateArgs = makeTemplateArgumentListInfo(*this, *D.getName().TemplateId); |
Douglas Gregor | d90fd52 | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 9253 | HasExplicitTemplateArgs = true; |
| 9254 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9255 | |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9256 | // C++ [temp.explicit]p1: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9257 | // A [...] function [...] can be explicitly instantiated from its template. |
| 9258 | // A member function [...] of a class template can be explicitly |
| 9259 | // instantiated from the member definition associated with its class |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9260 | // template. |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9261 | UnresolvedSet<8> TemplateMatches; |
| 9262 | FunctionDecl *NonTemplateMatch = nullptr; |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 9263 | TemplateSpecCandidateSet FailedCandidates(D.getIdentifierLoc()); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9264 | for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end(); |
| 9265 | P != PEnd; ++P) { |
| 9266 | NamedDecl *Prev = *P; |
Douglas Gregor | d90fd52 | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 9267 | if (!HasExplicitTemplateArgs) { |
| 9268 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) { |
Richard Smith | baa4783 | 2016-12-01 02:11:49 +0000 | [diff] [blame] | 9269 | QualType Adjusted = adjustCCAndNoReturn(R, Method->getType(), |
| 9270 | /*AdjustExceptionSpec*/true); |
Rafael Espindola | 6edca7d | 2013-12-01 16:54:29 +0000 | [diff] [blame] | 9271 | if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) { |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9272 | if (Method->getPrimaryTemplate()) { |
| 9273 | TemplateMatches.addDecl(Method, P.getAccess()); |
| 9274 | } else { |
| 9275 | // FIXME: Can this assert ever happen? Needs a test. |
| 9276 | assert(!NonTemplateMatch && "Multiple NonTemplateMatches"); |
| 9277 | NonTemplateMatch = Method; |
| 9278 | } |
Douglas Gregor | d90fd52 | 2009-09-25 21:45:23 +0000 | [diff] [blame] | 9279 | } |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9280 | } |
| 9281 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9282 | |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9283 | FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev); |
| 9284 | if (!FunTmpl) |
| 9285 | continue; |
| 9286 | |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 9287 | TemplateDeductionInfo Info(FailedCandidates.getLocation()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9288 | FunctionDecl *Specialization = nullptr; |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9289 | if (TemplateDeductionResult TDK |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9290 | = DeduceTemplateArguments(FunTmpl, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9291 | (HasExplicitTemplateArgs ? &TemplateArgs |
| 9292 | : nullptr), |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9293 | R, Specialization, Info)) { |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 9294 | // Keep track of almost-matches. |
| 9295 | FailedCandidates.addCandidate() |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 9296 | .set(P.getPair(), FunTmpl->getTemplatedDecl(), |
Larisse Voufo | 98b20f1 | 2013-07-19 23:00:19 +0000 | [diff] [blame] | 9297 | MakeDeductionFailureInfo(Context, TDK, Info)); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9298 | (void)TDK; |
| 9299 | continue; |
| 9300 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9301 | |
Artem Belevich | 64135c3 | 2016-12-08 19:38:13 +0000 | [diff] [blame] | 9302 | // Target attributes are part of the cuda function signature, so |
| 9303 | // the cuda target of the instantiated function must match that of its |
| 9304 | // template. Given that C++ template deduction does not take |
| 9305 | // target attributes into account, we reject candidates here that |
| 9306 | // have a different target. |
| 9307 | if (LangOpts.CUDA && |
| 9308 | IdentifyCUDATarget(Specialization, |
| 9309 | /* IgnoreImplicitHDAttributes = */ true) != |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 9310 | IdentifyCUDATarget(D.getDeclSpec().getAttributes())) { |
Artem Belevich | 64135c3 | 2016-12-08 19:38:13 +0000 | [diff] [blame] | 9311 | FailedCandidates.addCandidate().set( |
| 9312 | P.getPair(), FunTmpl->getTemplatedDecl(), |
| 9313 | MakeDeductionFailureInfo(Context, TDK_CUDATargetMismatch, Info)); |
| 9314 | continue; |
Artem Belevich | 13e9b4d | 2016-12-07 19:27:16 +0000 | [diff] [blame] | 9315 | } |
| 9316 | |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9317 | TemplateMatches.addDecl(Specialization, P.getAccess()); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9318 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9319 | |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9320 | FunctionDecl *Specialization = NonTemplateMatch; |
| 9321 | if (!Specialization) { |
| 9322 | // Find the most specialized function template specialization. |
| 9323 | UnresolvedSetIterator Result = getMostSpecialized( |
| 9324 | TemplateMatches.begin(), TemplateMatches.end(), FailedCandidates, |
| 9325 | D.getIdentifierLoc(), |
| 9326 | PDiag(diag::err_explicit_instantiation_not_known) << Name, |
| 9327 | PDiag(diag::err_explicit_instantiation_ambiguous) << Name, |
| 9328 | PDiag(diag::note_explicit_instantiation_candidate)); |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9329 | |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9330 | if (Result == TemplateMatches.end()) |
| 9331 | return true; |
John McCall | 58cc69d | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 9332 | |
John McCall | 27c11dd | 2017-06-07 23:00:05 +0000 | [diff] [blame] | 9333 | // Ignore access control bits, we don't need them for redeclaration checking. |
| 9334 | Specialization = cast<FunctionDecl>(*Result); |
| 9335 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9336 | |
Alexey Bataev | 7398391 | 2014-11-06 10:10:50 +0000 | [diff] [blame] | 9337 | // C++11 [except.spec]p4 |
| 9338 | // In an explicit instantiation an exception-specification may be specified, |
| 9339 | // but is not required. |
| 9340 | // If an exception-specification is specified in an explicit instantiation |
| 9341 | // directive, it shall be compatible with the exception-specifications of |
| 9342 | // other declarations of that function. |
| 9343 | if (auto *FPT = R->getAs<FunctionProtoType>()) |
| 9344 | if (FPT->hasExceptionSpec()) { |
| 9345 | unsigned DiagID = |
| 9346 | diag::err_mismatched_exception_spec_explicit_instantiation; |
| 9347 | if (getLangOpts().MicrosoftExt) |
| 9348 | DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation; |
| 9349 | bool Result = CheckEquivalentExceptionSpec( |
| 9350 | PDiag(DiagID) << Specialization->getType(), |
| 9351 | PDiag(diag::note_explicit_instantiation_here), |
| 9352 | Specialization->getType()->getAs<FunctionProtoType>(), |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 9353 | Specialization->getLocation(), FPT, D.getBeginLoc()); |
Alexey Bataev | 7398391 | 2014-11-06 10:10:50 +0000 | [diff] [blame] | 9354 | // In Microsoft mode, mismatching exception specifications just cause a |
| 9355 | // warning. |
| 9356 | if (!getLangOpts().MicrosoftExt && Result) |
| 9357 | return true; |
| 9358 | } |
| 9359 | |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9360 | if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9361 | Diag(D.getIdentifierLoc(), |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9362 | diag::err_explicit_instantiation_member_function_not_instantiated) |
| 9363 | << Specialization |
| 9364 | << (Specialization->getTemplateSpecializationKind() == |
| 9365 | TSK_ExplicitSpecialization); |
| 9366 | Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here); |
| 9367 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9368 | } |
| 9369 | |
Douglas Gregor | ec9fd13 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 9370 | FunctionDecl *PrevDecl = Specialization->getPreviousDecl(); |
Douglas Gregor | 8f003d0 | 2009-10-15 18:07:02 +0000 | [diff] [blame] | 9371 | if (!PrevDecl && Specialization->isThisDeclarationADefinition()) |
| 9372 | PrevDecl = Specialization; |
| 9373 | |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9374 | if (PrevDecl) { |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 9375 | bool HasNoEffect = false; |
Douglas Gregor | 1d957a3 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 9376 | if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9377 | PrevDecl, |
| 9378 | PrevDecl->getTemplateSpecializationKind(), |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9379 | PrevDecl->getPointOfInstantiation(), |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 9380 | HasNoEffect)) |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9381 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9382 | |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9383 | // FIXME: We may still want to build some representation of this |
| 9384 | // explicit specialization. |
Abramo Bagnara | 8075c85 | 2010-06-12 07:44:57 +0000 | [diff] [blame] | 9385 | if (HasNoEffect) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9386 | return (Decl*) nullptr; |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9387 | } |
Anders Carlsson | 65e6d13 | 2009-11-24 05:34:41 +0000 | [diff] [blame] | 9388 | |
Erich Keane | c480f30 | 2018-07-12 21:09:05 +0000 | [diff] [blame] | 9389 | ProcessDeclAttributeList(S, Specialization, D.getDeclSpec().getAttributes()); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9390 | |
Hans Wennborg | b8304a6 | 2017-11-29 23:44:11 +0000 | [diff] [blame] | 9391 | // In MSVC mode, dllimported explicit instantiation definitions are treated as |
| 9392 | // instantiation declarations. |
| 9393 | if (TSK == TSK_ExplicitInstantiationDefinition && |
| 9394 | Specialization->hasAttr<DLLImportAttr>() && |
| 9395 | Context.getTargetInfo().getCXXABI().isMicrosoft()) |
| 9396 | TSK = TSK_ExplicitInstantiationDeclaration; |
| 9397 | |
| 9398 | Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc()); |
| 9399 | |
Richard Smith | eb36ddf | 2014-04-24 22:45:46 +0000 | [diff] [blame] | 9400 | if (Specialization->isDefined()) { |
| 9401 | // Let the ASTConsumer know that this function has been explicitly |
| 9402 | // instantiated now, and its linkage might have changed. |
| 9403 | Consumer.HandleTopLevelDecl(DeclGroupRef(Specialization)); |
| 9404 | } else if (TSK == TSK_ExplicitInstantiationDefinition) |
Chandler Carruth | cfe41db | 2010-08-25 08:27:02 +0000 | [diff] [blame] | 9405 | InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9406 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9407 | // C++0x [temp.explicit]p2: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9408 | // If the explicit instantiation is for a member function, a member class |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9409 | // or a static data member of a class template specialization, the name of |
| 9410 | // the class template specialization in the qualified-id for the member |
| 9411 | // name shall be a simple-template-id. |
| 9412 | // |
| 9413 | // C++98 has the same restriction, just worded differently. |
Douglas Gregor | 3d7e69f | 2009-10-15 17:21:20 +0000 | [diff] [blame] | 9414 | FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate(); |
Faisal Vali | 2ab8c15 | 2017-12-30 04:15:27 +0000 | [diff] [blame] | 9415 | if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId && !FunTmpl && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9416 | D.getCXXScopeSpec().isSet() && |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9417 | !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec())) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9418 | Diag(D.getIdentifierLoc(), |
Douglas Gregor | 010815a | 2010-06-16 16:26:47 +0000 | [diff] [blame] | 9419 | diag::ext_explicit_instantiation_without_qualified_id) |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9420 | << Specialization << D.getCXXScopeSpec().getRange(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9421 | |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9422 | CheckExplicitInstantiationScope(*this, |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9423 | FunTmpl? (NamedDecl *)FunTmpl |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9424 | : Specialization->getInstantiatedFromMemberFunction(), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9425 | D.getIdentifierLoc(), |
Douglas Gregor | e47f5a7 | 2009-10-14 23:41:34 +0000 | [diff] [blame] | 9426 | D.getCXXScopeSpec().isSet()); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9427 | |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9428 | // FIXME: Create some kind of ExplicitInstantiationDecl here. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9429 | return (Decl*) nullptr; |
Douglas Gregor | 450f0084 | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 9430 | } |
| 9431 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 9432 | TypeResult |
Faisal Vali | 090da2d | 2018-01-01 18:23:28 +0000 | [diff] [blame] | 9433 | Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK, |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 9434 | const CXXScopeSpec &SS, IdentifierInfo *Name, |
| 9435 | SourceLocation TagLoc, SourceLocation NameLoc) { |
| 9436 | // This has to hold, because SS is expected to be defined. |
| 9437 | assert(Name && "Expected a name in a dependent tag"); |
| 9438 | |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 9439 | NestedNameSpecifier *NNS = SS.getScopeRep(); |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 9440 | if (!NNS) |
| 9441 | return true; |
| 9442 | |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9443 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); |
Daniel Dunbar | f4b37e1 | 2010-04-01 16:50:48 +0000 | [diff] [blame] | 9444 | |
Douglas Gregor | ba41d01 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 9445 | if (TUK == TUK_Declaration || TUK == TUK_Definition) { |
| 9446 | Diag(NameLoc, diag::err_dependent_tag_decl) |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9447 | << (TUK == TUK_Definition) << Kind << SS.getRange(); |
Douglas Gregor | ba41d01 | 2010-04-24 16:38:41 +0000 | [diff] [blame] | 9448 | return true; |
| 9449 | } |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9450 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 9451 | // Create the resulting type. |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9452 | ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 9453 | QualType Result = Context.getDependentNameType(Kwd, NNS, Name); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9454 | |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 9455 | // Create type-source location information for this type. |
| 9456 | TypeLocBuilder TLB; |
| 9457 | DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 9458 | TL.setElaboratedKeywordLoc(TagLoc); |
Douglas Gregor | e7c2065 | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 9459 | TL.setQualifierLoc(SS.getWithLocInContext(Context)); |
| 9460 | TL.setNameLoc(NameLoc); |
| 9461 | return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result)); |
John McCall | 7f41d98 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 9462 | } |
| 9463 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 9464 | TypeResult |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9465 | Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, |
| 9466 | const CXXScopeSpec &SS, const IdentifierInfo &II, |
Douglas Gregor | f7d7771 | 2010-06-16 22:31:08 +0000 | [diff] [blame] | 9467 | SourceLocation IdLoc) { |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9468 | if (SS.isInvalid()) |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9469 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9470 | |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 9471 | if (TypenameLoc.isValid() && S && !S->getTemplateParamParent()) |
| 9472 | Diag(TypenameLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 9473 | getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 9474 | diag::warn_cxx98_compat_typename_outside_of_template : |
| 9475 | diag::ext_typename_outside_of_template) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9476 | << FixItHint::CreateRemoval(TypenameLoc); |
| 9477 | |
Douglas Gregor | 3d0da5f | 2011-03-01 01:34:45 +0000 | [diff] [blame] | 9478 | NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); |
Douglas Gregor | 844cb50 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 9479 | QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None, |
| 9480 | TypenameLoc, QualifierLoc, II, IdLoc); |
Douglas Gregor | fe3d7d0 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 9481 | if (T.isNull()) |
| 9482 | return true; |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9483 | |
| 9484 | TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); |
| 9485 | if (isa<DependentNameType>(T)) { |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9486 | DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 9487 | TL.setElaboratedKeywordLoc(TypenameLoc); |
Douglas Gregor | 3d0da5f | 2011-03-01 01:34:45 +0000 | [diff] [blame] | 9488 | TL.setQualifierLoc(QualifierLoc); |
John McCall | f7bcc81 | 2010-05-28 23:32:21 +0000 | [diff] [blame] | 9489 | TL.setNameLoc(IdLoc); |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9490 | } else { |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9491 | ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 9492 | TL.setElaboratedKeywordLoc(TypenameLoc); |
Douglas Gregor | 844cb50 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 9493 | TL.setQualifierLoc(QualifierLoc); |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9494 | TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc); |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9495 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9496 | |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 9497 | return CreateParsedType(T, TSI); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9498 | } |
| 9499 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 9500 | TypeResult |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 9501 | Sema::ActOnTypenameType(Scope *S, |
| 9502 | SourceLocation TypenameLoc, |
| 9503 | const CXXScopeSpec &SS, |
| 9504 | SourceLocation TemplateKWLoc, |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9505 | TemplateTy TemplateIn, |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9506 | IdentifierInfo *TemplateII, |
| 9507 | SourceLocation TemplateIILoc, |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9508 | SourceLocation LAngleLoc, |
| 9509 | ASTTemplateArgsPtr TemplateArgsIn, |
| 9510 | SourceLocation RAngleLoc) { |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 9511 | if (TypenameLoc.isValid() && S && !S->getTemplateParamParent()) |
| 9512 | Diag(TypenameLoc, |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 9513 | getLangOpts().CPlusPlus11 ? |
Richard Smith | 0bf8a492 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 9514 | diag::warn_cxx98_compat_typename_outside_of_template : |
| 9515 | diag::ext_typename_outside_of_template) |
| 9516 | << FixItHint::CreateRemoval(TypenameLoc); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9517 | |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9518 | // Strangely, non-type results are not ignored by this lookup, so the |
| 9519 | // program is ill-formed if it finds an injected-class-name. |
Richard Smith | 62559bd | 2017-02-01 21:36:38 +0000 | [diff] [blame] | 9520 | if (TypenameLoc.isValid()) { |
| 9521 | auto *LookupRD = |
| 9522 | dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, false)); |
| 9523 | if (LookupRD && LookupRD->getIdentifier() == TemplateII) { |
| 9524 | Diag(TemplateIILoc, |
| 9525 | diag::ext_out_of_line_qualified_id_type_names_constructor) |
| 9526 | << TemplateII << 0 /*injected-class-name used as template name*/ |
| 9527 | << (TemplateKWLoc.isValid() ? 1 : 0 /*'template'/'typename' keyword*/); |
| 9528 | } |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9529 | } |
| 9530 | |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9531 | // Translate the parser's template argument list in our AST format. |
| 9532 | TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); |
| 9533 | translateTemplateArguments(TemplateArgsIn, TemplateArgs); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9534 | |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9535 | TemplateName Template = TemplateIn.get(); |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9536 | if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) { |
| 9537 | // Construct a dependent template specialization type. |
| 9538 | assert(DTN && "dependent template has non-dependent name?"); |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 9539 | assert(DTN->getQualifier() == SS.getScopeRep()); |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9540 | QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename, |
| 9541 | DTN->getQualifier(), |
| 9542 | DTN->getIdentifier(), |
| 9543 | TemplateArgs); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9544 | |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9545 | // Create source-location information for this type. |
John McCall | f7bcc81 | 2010-05-28 23:32:21 +0000 | [diff] [blame] | 9546 | TypeLocBuilder Builder; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9547 | DependentTemplateSpecializationTypeLoc SpecTL |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9548 | = Builder.push<DependentTemplateSpecializationTypeLoc>(T); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 9549 | SpecTL.setElaboratedKeywordLoc(TypenameLoc); |
| 9550 | SpecTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
Abramo Bagnara | e0a70b2 | 2012-02-06 22:45:07 +0000 | [diff] [blame] | 9551 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9552 | SpecTL.setTemplateNameLoc(TemplateIILoc); |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9553 | SpecTL.setLAngleLoc(LAngleLoc); |
| 9554 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9555 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
| 9556 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9557 | return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); |
Douglas Gregor | 12bbfe1 | 2009-09-02 13:05:45 +0000 | [diff] [blame] | 9558 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9559 | |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9560 | QualType T = CheckTemplateIdType(Template, TemplateIILoc, TemplateArgs); |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9561 | if (T.isNull()) |
| 9562 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9563 | |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 9564 | // Provide source-location information for the template specialization type. |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9565 | TypeLocBuilder Builder; |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 9566 | TemplateSpecializationTypeLoc SpecTL |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9567 | = Builder.push<TemplateSpecializationTypeLoc>(T); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 9568 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9569 | SpecTL.setTemplateNameLoc(TemplateIILoc); |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9570 | SpecTL.setLAngleLoc(LAngleLoc); |
| 9571 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9572 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
| 9573 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9574 | |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9575 | T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T); |
| 9576 | ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T); |
Abramo Bagnara | 9033e2b | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 9577 | TL.setElaboratedKeywordLoc(TypenameLoc); |
Douglas Gregor | 844cb50 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 9578 | TL.setQualifierLoc(SS.getWithLocInContext(Context)); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9579 | |
Douglas Gregor | 84a6a0a | 2011-03-01 16:44:30 +0000 | [diff] [blame] | 9580 | TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T); |
| 9581 | return CreateParsedType(T, TSI); |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 9582 | } |
| 9583 | |
Douglas Gregor | b09518c | 2011-02-27 22:46:49 +0000 | [diff] [blame] | 9584 | |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9585 | /// Determine whether this failed name lookup should be treated as being |
| 9586 | /// disabled by a usage of std::enable_if. |
| 9587 | static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II, |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 9588 | SourceRange &CondRange, Expr *&Cond) { |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9589 | // We must be looking for a ::type... |
| 9590 | if (!II.isStr("type")) |
| 9591 | return false; |
| 9592 | |
| 9593 | // ... within an explicitly-written template specialization... |
| 9594 | if (!NNS || !NNS.getNestedNameSpecifier()->getAsType()) |
| 9595 | return false; |
| 9596 | TypeLoc EnableIfTy = NNS.getTypeLoc(); |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9597 | TemplateSpecializationTypeLoc EnableIfTSTLoc = |
| 9598 | EnableIfTy.getAs<TemplateSpecializationTypeLoc>(); |
| 9599 | if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0) |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9600 | return false; |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 9601 | const TemplateSpecializationType *EnableIfTST = EnableIfTSTLoc.getTypePtr(); |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9602 | |
| 9603 | // ... which names a complete class template declaration... |
| 9604 | const TemplateDecl *EnableIfDecl = |
| 9605 | EnableIfTST->getTemplateName().getAsTemplateDecl(); |
| 9606 | if (!EnableIfDecl || EnableIfTST->isIncompleteType()) |
| 9607 | return false; |
| 9608 | |
| 9609 | // ... called "enable_if". |
| 9610 | const IdentifierInfo *EnableIfII = |
| 9611 | EnableIfDecl->getDeclName().getAsIdentifierInfo(); |
| 9612 | if (!EnableIfII || !EnableIfII->isStr("enable_if")) |
| 9613 | return false; |
| 9614 | |
| 9615 | // Assume the first template argument is the condition. |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9616 | CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange(); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 9617 | |
| 9618 | // Dig out the condition. |
| 9619 | Cond = nullptr; |
| 9620 | if (EnableIfTSTLoc.getArgLoc(0).getArgument().getKind() |
| 9621 | != TemplateArgument::Expression) |
| 9622 | return true; |
| 9623 | |
| 9624 | Cond = EnableIfTSTLoc.getArgLoc(0).getSourceExpression(); |
| 9625 | |
| 9626 | // Ignore Boolean literals; they add no value. |
| 9627 | if (isa<CXXBoolLiteralExpr>(Cond->IgnoreParenCasts())) |
| 9628 | Cond = nullptr; |
| 9629 | |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9630 | return true; |
| 9631 | } |
| 9632 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9633 | /// Build the type that describes a C++ typename specifier, |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9634 | /// e.g., "typename T::type". |
| 9635 | QualType |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9636 | Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9637 | SourceLocation KeywordLoc, |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9638 | NestedNameSpecifierLoc QualifierLoc, |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9639 | const IdentifierInfo &II, |
Abramo Bagnara | d754848 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 9640 | SourceLocation IILoc) { |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 9641 | CXXScopeSpec SS; |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9642 | SS.Adopt(QualifierLoc); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9643 | |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 9644 | DeclContext *Ctx = computeDeclContext(SS); |
| 9645 | if (!Ctx) { |
| 9646 | // If the nested-name-specifier is dependent and couldn't be |
| 9647 | // resolved to a type, build a typename type. |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9648 | assert(QualifierLoc.getNestedNameSpecifier()->isDependent()); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9649 | return Context.getDependentNameType(Keyword, |
| 9650 | QualifierLoc.getNestedNameSpecifier(), |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9651 | &II); |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 9652 | } |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9653 | |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 9654 | // If the nested-name-specifier refers to the current instantiation, |
| 9655 | // the "typename" keyword itself is superfluous. In C++03, the |
| 9656 | // program is actually ill-formed. However, DR 382 (in C++0x CD1) |
| 9657 | // allows such extraneous "typename" keywords, and we retroactively |
Douglas Gregor | c9d2682 | 2010-06-14 22:07:54 +0000 | [diff] [blame] | 9658 | // apply this DR to C++03 code with only a warning. In any case we continue. |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 9659 | |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 9660 | if (RequireCompleteDeclContext(SS, Ctx)) |
| 9661 | return QualType(); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9662 | |
| 9663 | DeclarationName Name(&II); |
Abramo Bagnara | d754848 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 9664 | LookupResult Result(*this, Name, IILoc, LookupOrdinaryName); |
Nikola Smiljanic | fce370e | 2014-12-01 23:15:01 +0000 | [diff] [blame] | 9665 | LookupQualifiedName(Result, Ctx, SS); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9666 | unsigned DiagID = 0; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 9667 | Decl *Referenced = nullptr; |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 9668 | switch (Result.getResultKind()) { |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9669 | case LookupResult::NotFound: { |
| 9670 | // If we're looking up 'type' within a template named 'enable_if', produce |
| 9671 | // a more specific diagnostic. |
| 9672 | SourceRange CondRange; |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 9673 | Expr *Cond = nullptr; |
| 9674 | if (isEnableIf(QualifierLoc, II, CondRange, Cond)) { |
| 9675 | // If we have a condition, narrow it down to the specific failed |
| 9676 | // condition. |
| 9677 | if (Cond) { |
| 9678 | Expr *FailedCond; |
| 9679 | std::string FailedDescription; |
| 9680 | std::tie(FailedCond, FailedDescription) = |
Clement Courbet | f44c6f4 | 2018-12-11 08:39:11 +0000 | [diff] [blame] | 9681 | findFailedBooleanCondition(Cond); |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 9682 | |
| 9683 | Diag(FailedCond->getExprLoc(), |
| 9684 | diag::err_typename_nested_not_found_requirement) |
| 9685 | << FailedDescription |
| 9686 | << FailedCond->getSourceRange(); |
| 9687 | return QualType(); |
| 9688 | } |
| 9689 | |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9690 | Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if) |
Douglas Gregor | 00fa10b | 2017-07-05 20:20:14 +0000 | [diff] [blame] | 9691 | << Ctx << CondRange; |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9692 | return QualType(); |
| 9693 | } |
| 9694 | |
Douglas Gregor | e40876a | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 9695 | DiagID = diag::err_typename_nested_not_found; |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9696 | break; |
Richard Smith | 6f8d2c6 | 2012-05-09 05:17:00 +0000 | [diff] [blame] | 9697 | } |
Douglas Gregor | aed2efb | 2010-12-09 00:06:27 +0000 | [diff] [blame] | 9698 | |
| 9699 | case LookupResult::FoundUnresolvedValue: { |
| 9700 | // We found a using declaration that is a value. Most likely, the using |
| 9701 | // declaration itself is meant to have the 'typename' keyword. |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9702 | SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), |
Douglas Gregor | aed2efb | 2010-12-09 00:06:27 +0000 | [diff] [blame] | 9703 | IILoc); |
| 9704 | Diag(IILoc, diag::err_typename_refers_to_using_value_decl) |
| 9705 | << Name << Ctx << FullRange; |
| 9706 | if (UnresolvedUsingValueDecl *Using |
| 9707 | = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){ |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 9708 | SourceLocation Loc = Using->getQualifierLoc().getBeginLoc(); |
Douglas Gregor | aed2efb | 2010-12-09 00:06:27 +0000 | [diff] [blame] | 9709 | Diag(Loc, diag::note_using_value_decl_missing_typename) |
| 9710 | << FixItHint::CreateInsertion(Loc, "typename "); |
| 9711 | } |
| 9712 | } |
| 9713 | // Fall through to create a dependent typename type, from which we can recover |
| 9714 | // better. |
Galina Kistanova | 3779cb3 | 2017-06-07 06:25:05 +0000 | [diff] [blame] | 9715 | LLVM_FALLTHROUGH; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9716 | |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 9717 | case LookupResult::NotFoundInCurrentInstantiation: |
| 9718 | // Okay, it's a member of an unknown instantiation. |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9719 | return Context.getDependentNameType(Keyword, |
| 9720 | QualifierLoc.getNestedNameSpecifier(), |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9721 | &II); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9722 | |
| 9723 | case LookupResult::Found: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9724 | if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) { |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9725 | // C++ [class.qual]p2: |
| 9726 | // In a lookup in which function names are not ignored and the |
| 9727 | // nested-name-specifier nominates a class C, if the name specified |
| 9728 | // after the nested-name-specifier, when looked up in C, is the |
| 9729 | // injected-class-name of C [...] then the name is instead considered |
| 9730 | // to name the constructor of class C. |
| 9731 | // |
| 9732 | // Unlike in an elaborated-type-specifier, function names are not ignored |
| 9733 | // in typename-specifier lookup. However, they are ignored in all the |
| 9734 | // contexts where we form a typename type with no keyword (that is, in |
| 9735 | // mem-initializer-ids, base-specifiers, and elaborated-type-specifiers). |
| 9736 | // |
| 9737 | // FIXME: That's not strictly true: mem-initializer-id lookup does not |
| 9738 | // ignore functions, but that appears to be an oversight. |
| 9739 | auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(Ctx); |
| 9740 | auto *FoundRD = dyn_cast<CXXRecordDecl>(Type); |
| 9741 | if (Keyword == ETK_Typename && LookupRD && FoundRD && |
| 9742 | FoundRD->isInjectedClassName() && |
| 9743 | declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent()))) |
| 9744 | Diag(IILoc, diag::ext_out_of_line_qualified_id_type_names_constructor) |
| 9745 | << &II << 1 << 0 /*'typename' keyword used*/; |
| 9746 | |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9747 | // We found a type. Build an ElaboratedType, since the |
| 9748 | // typename-specifier was just sugar. |
Nico Weber | 7288943 | 2014-09-06 01:25:55 +0000 | [diff] [blame] | 9749 | MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false); |
Richard Smith | 74f0234 | 2017-01-19 21:00:13 +0000 | [diff] [blame] | 9750 | return Context.getElaboratedType(Keyword, |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9751 | QualifierLoc.getNestedNameSpecifier(), |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9752 | Context.getTypeDeclType(Type)); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9753 | } |
| 9754 | |
Richard Smith | ee57984 | 2017-01-30 20:39:26 +0000 | [diff] [blame] | 9755 | // C++ [dcl.type.simple]p2: |
| 9756 | // A type-specifier of the form |
| 9757 | // typename[opt] nested-name-specifier[opt] template-name |
| 9758 | // is a placeholder for a deduced class type [...]. |
Aaron Ballman | c351fba | 2017-12-04 20:27:34 +0000 | [diff] [blame] | 9759 | if (getLangOpts().CPlusPlus17) { |
Richard Smith | ee57984 | 2017-01-30 20:39:26 +0000 | [diff] [blame] | 9760 | if (auto *TD = getAsTypeTemplateDecl(Result.getFoundDecl())) { |
| 9761 | return Context.getElaboratedType( |
| 9762 | Keyword, QualifierLoc.getNestedNameSpecifier(), |
| 9763 | Context.getDeducedTemplateSpecializationType(TemplateName(TD), |
| 9764 | QualType(), false)); |
| 9765 | } |
| 9766 | } |
Richard Smith | 600b526 | 2017-01-26 20:40:47 +0000 | [diff] [blame] | 9767 | |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9768 | DiagID = diag::err_typename_nested_not_type; |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 9769 | Referenced = Result.getFoundDecl(); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9770 | break; |
| 9771 | |
| 9772 | case LookupResult::FoundOverloaded: |
| 9773 | DiagID = diag::err_typename_nested_not_type; |
| 9774 | Referenced = *Result.begin(); |
| 9775 | break; |
| 9776 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 9777 | case LookupResult::Ambiguous: |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9778 | return QualType(); |
| 9779 | } |
| 9780 | |
| 9781 | // If we get here, it's because name lookup did not find a |
| 9782 | // type. Emit an appropriate diagnostic and return an error. |
Douglas Gregor | 9cbc22b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 9783 | SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(), |
Abramo Bagnara | d754848 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 9784 | IILoc); |
| 9785 | Diag(IILoc, DiagID) << FullRange << Name << Ctx; |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 9786 | if (Referenced) |
| 9787 | Diag(Referenced->getLocation(), diag::note_typename_refers_here) |
| 9788 | << Name; |
| 9789 | return QualType(); |
| 9790 | } |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9791 | |
| 9792 | namespace { |
| 9793 | // See Sema::RebuildTypeInCurrentInstantiation |
Benjamin Kramer | 337e3a5 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 9794 | class CurrentInstantiationRebuilder |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9795 | : public TreeTransform<CurrentInstantiationRebuilder> { |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9796 | SourceLocation Loc; |
| 9797 | DeclarationName Entity; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9798 | |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9799 | public: |
Douglas Gregor | 14cf752 | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 9800 | typedef TreeTransform<CurrentInstantiationRebuilder> inherited; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9801 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9802 | CurrentInstantiationRebuilder(Sema &SemaRef, |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9803 | SourceLocation Loc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9804 | DeclarationName Entity) |
| 9805 | : TreeTransform<CurrentInstantiationRebuilder>(SemaRef), |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9806 | Loc(Loc), Entity(Entity) { } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9807 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9808 | /// Determine whether the given type \p T has already been |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9809 | /// transformed. |
| 9810 | /// |
| 9811 | /// For the purposes of type reconstruction, a type has already been |
| 9812 | /// transformed if it is NULL or if it is not dependent. |
| 9813 | bool AlreadyTransformed(QualType T) { |
| 9814 | return T.isNull() || !T->isDependentType(); |
| 9815 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9816 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9817 | /// Returns the location of the entity whose type is being |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9818 | /// rebuilt. |
| 9819 | SourceLocation getBaseLocation() { return Loc; } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9820 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9821 | /// Returns the name of the entity whose type is being rebuilt. |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9822 | DeclarationName getBaseEntity() { return Entity; } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9823 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9824 | /// Sets the "base" location and entity when that |
Douglas Gregor | ef6ab41 | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 9825 | /// information is known based on another transformation. |
| 9826 | void setBase(SourceLocation Loc, DeclarationName Entity) { |
| 9827 | this->Loc = Loc; |
| 9828 | this->Entity = Entity; |
| 9829 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9830 | |
Douglas Gregor | 0c46b2b | 2012-02-13 22:00:16 +0000 | [diff] [blame] | 9831 | ExprResult TransformLambdaExpr(LambdaExpr *E) { |
| 9832 | // Lambdas never need to be transformed. |
| 9833 | return E; |
| 9834 | } |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9835 | }; |
Eugene Zelenko | 1ced509 | 2016-02-12 22:53:10 +0000 | [diff] [blame] | 9836 | } // end anonymous namespace |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9837 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9838 | /// Rebuilds a type within the context of the current instantiation. |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9839 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9840 | /// The type \p T is part of the type of an out-of-line member definition of |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9841 | /// a class template (or class template partial specialization) that was parsed |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9842 | /// and constructed before we entered the scope of the class template (or |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9843 | /// partial specialization thereof). This routine will rebuild that type now |
| 9844 | /// that we have entered the declarator's scope, which may produce different |
| 9845 | /// canonical types, e.g., |
| 9846 | /// |
| 9847 | /// \code |
| 9848 | /// template<typename T> |
| 9849 | /// struct X { |
| 9850 | /// typedef T* pointer; |
| 9851 | /// pointer data(); |
| 9852 | /// }; |
| 9853 | /// |
| 9854 | /// template<typename T> |
| 9855 | /// typename X<T>::pointer X<T>::data() { ... } |
| 9856 | /// \endcode |
| 9857 | /// |
Douglas Gregor | c1d2d8a | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 9858 | /// Here, the type "typename X<T>::pointer" will be created as a DependentNameType, |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9859 | /// since we do not know that we can look into X<T> when we parsed the type. |
| 9860 | /// This function will rebuild the type, performing the lookup of "pointer" |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 9861 | /// in X<T> and returning an ElaboratedType whose canonical type is the same |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9862 | /// as the canonical type of T*, allowing the return types of the out-of-line |
| 9863 | /// definition and the declaration to match. |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9864 | TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T, |
| 9865 | SourceLocation Loc, |
| 9866 | DeclarationName Name) { |
| 9867 | if (!T || !T->getType()->isDependentType()) |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9868 | return T; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9869 | |
Douglas Gregor | 15acfb9 | 2009-08-06 16:20:37 +0000 | [diff] [blame] | 9870 | CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name); |
| 9871 | return Rebuilder.TransformType(T); |
Benjamin Kramer | 854d7de | 2009-08-11 22:33:06 +0000 | [diff] [blame] | 9872 | } |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9873 | |
John McCall | dadc575 | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9874 | ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) { |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 9875 | CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(), |
| 9876 | DeclarationName()); |
| 9877 | return Rebuilder.TransformExpr(E); |
| 9878 | } |
| 9879 | |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9880 | bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) { |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9881 | if (SS.isInvalid()) |
Douglas Gregor | 1017641 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 9882 | return true; |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 9883 | |
Douglas Gregor | 1017641 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 9884 | NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 9885 | CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(), |
| 9886 | DeclarationName()); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9887 | NestedNameSpecifierLoc Rebuilt |
Douglas Gregor | 1017641 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 9888 | = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9889 | if (!Rebuilt) |
Douglas Gregor | 1017641 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 9890 | return true; |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9891 | |
Douglas Gregor | 1017641 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 9892 | SS.Adopt(Rebuilt); |
John McCall | 99b2fe5 | 2010-04-29 23:50:39 +0000 | [diff] [blame] | 9893 | return false; |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 9894 | } |
| 9895 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9896 | /// Rebuild the template parameters now that we know we're in a current |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9897 | /// instantiation. |
| 9898 | bool Sema::RebuildTemplateParamsInCurrentInstantiation( |
| 9899 | TemplateParameterList *Params) { |
| 9900 | for (unsigned I = 0, N = Params->size(); I != N; ++I) { |
| 9901 | Decl *Param = Params->getParam(I); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9902 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9903 | // There is nothing to rebuild in a type parameter. |
| 9904 | if (isa<TemplateTypeParmDecl>(Param)) |
| 9905 | continue; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9906 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9907 | // Rebuild the template parameter list of a template template parameter. |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9908 | if (TemplateTemplateParmDecl *TTP |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9909 | = dyn_cast<TemplateTemplateParmDecl>(Param)) { |
| 9910 | if (RebuildTemplateParamsInCurrentInstantiation( |
| 9911 | TTP->getTemplateParameters())) |
| 9912 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9913 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9914 | continue; |
| 9915 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9916 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9917 | // Rebuild the type of a non-type template parameter. |
| 9918 | NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param); |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9919 | TypeSourceInfo *NewTSI |
| 9920 | = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(), |
| 9921 | NTTP->getLocation(), |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9922 | NTTP->getDeclName()); |
| 9923 | if (!NewTSI) |
| 9924 | return true; |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9925 | |
Erik Pilkington | 9f9462a | 2018-08-07 22:59:02 +0000 | [diff] [blame] | 9926 | if (NewTSI->getType()->isUndeducedType()) { |
| 9927 | // C++17 [temp.dep.expr]p3: |
| 9928 | // An id-expression is type-dependent if it contains |
| 9929 | // - an identifier associated by name lookup with a non-type |
| 9930 | // template-parameter declared with a type that contains a |
| 9931 | // placeholder type (7.1.7.4), |
| 9932 | NewTSI = SubstAutoTypeSourceInfo(NewTSI, Context.DependentTy); |
| 9933 | } |
| 9934 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9935 | if (NewTSI != NTTP->getTypeSourceInfo()) { |
| 9936 | NTTP->setTypeSourceInfo(NewTSI); |
| 9937 | NTTP->setType(NewTSI->getType()); |
| 9938 | } |
| 9939 | } |
Simon Pilgrim | 6905d22 | 2016-12-30 22:55:33 +0000 | [diff] [blame] | 9940 | |
Douglas Gregor | 041b084 | 2011-10-14 15:31:12 +0000 | [diff] [blame] | 9941 | return false; |
| 9942 | } |
| 9943 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 9944 | /// Produces a formatted string that describes the binding of |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9945 | /// template parameters to template arguments. |
| 9946 | std::string |
| 9947 | Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params, |
| 9948 | const TemplateArgumentList &Args) { |
Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 9949 | return getTemplateArgumentBindingsText(Params, Args.data(), Args.size()); |
Douglas Gregor | e62e6a0 | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 9950 | } |
| 9951 | |
| 9952 | std::string |
| 9953 | Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params, |
| 9954 | const TemplateArgument *Args, |
| 9955 | unsigned NumArgs) { |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 9956 | SmallString<128> Str; |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9957 | llvm::raw_svector_ostream Out(Str); |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9958 | |
Douglas Gregor | e62e6a0 | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 9959 | if (!Params || Params->size() == 0 || NumArgs == 0) |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9960 | return std::string(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9961 | |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9962 | for (unsigned I = 0, N = Params->size(); I != N; ++I) { |
Douglas Gregor | e62e6a0 | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 9963 | if (I >= NumArgs) |
| 9964 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9965 | |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9966 | if (I == 0) |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9967 | Out << "[with "; |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9968 | else |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9969 | Out << ", "; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9970 | |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9971 | if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) { |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9972 | Out << Id->getName(); |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9973 | } else { |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9974 | Out << '$' << I; |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9975 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 9976 | |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9977 | Out << " = "; |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 9978 | Args[I].print(getPrintingPolicy(), Out); |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9979 | } |
Douglas Gregor | 0192c23 | 2010-12-20 16:52:59 +0000 | [diff] [blame] | 9980 | |
| 9981 | Out << ']'; |
| 9982 | return Out.str(); |
Douglas Gregor | be99939 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 9983 | } |
Francois Pichet | 1c229c0 | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 9984 | |
Richard Smith | e40f2ba | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 9985 | void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD, |
| 9986 | CachedTokens &Toks) { |
Francois Pichet | 1c229c0 | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 9987 | if (!FD) |
| 9988 | return; |
Richard Smith | e40f2ba | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 9989 | |
Justin Lebar | 28f09c5 | 2016-10-10 16:26:08 +0000 | [diff] [blame] | 9990 | auto LPT = llvm::make_unique<LateParsedTemplate>(); |
Richard Smith | e40f2ba | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 9991 | |
| 9992 | // Take tokens to avoid allocations |
| 9993 | LPT->Toks.swap(Toks); |
| 9994 | LPT->D = FnD; |
Justin Lebar | 28f09c5 | 2016-10-10 16:26:08 +0000 | [diff] [blame] | 9995 | LateParsedTemplateMap.insert(std::make_pair(FD, std::move(LPT))); |
Richard Smith | e40f2ba | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 9996 | |
| 9997 | FD->setLateTemplateParsed(true); |
| 9998 | } |
| 9999 | |
| 10000 | void Sema::UnmarkAsLateParsedTemplate(FunctionDecl *FD) { |
| 10001 | if (!FD) |
| 10002 | return; |
| 10003 | FD->setLateTemplateParsed(false); |
| 10004 | } |
Francois Pichet | 1c229c0 | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 10005 | |
| 10006 | bool Sema::IsInsideALocalClassWithinATemplateFunction() { |
| 10007 | DeclContext *DC = CurContext; |
| 10008 | |
| 10009 | while (DC) { |
| 10010 | if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) { |
| 10011 | const FunctionDecl *FD = RD->isLocalClass(); |
| 10012 | return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate); |
| 10013 | } else if (DC->isTranslationUnit() || DC->isNamespace()) |
| 10014 | return false; |
| 10015 | |
| 10016 | DC = DC->getParent(); |
| 10017 | } |
| 10018 | return false; |
| 10019 | } |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 10020 | |
Benjamin Kramer | a0a13c3 | 2016-08-06 11:21:04 +0000 | [diff] [blame] | 10021 | namespace { |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 10022 | /// Walk the path from which a declaration was instantiated, and check |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 10023 | /// that every explicit specialization along that path is visible. This enforces |
| 10024 | /// C++ [temp.expl.spec]/6: |
| 10025 | /// |
| 10026 | /// If a template, a member template or a member of a class template is |
| 10027 | /// explicitly specialized then that specialization shall be declared before |
| 10028 | /// the first use of that specialization that would cause an implicit |
| 10029 | /// instantiation to take place, in every translation unit in which such a |
| 10030 | /// use occurs; no diagnostic is required. |
| 10031 | /// |
| 10032 | /// and also C++ [temp.class.spec]/1: |
| 10033 | /// |
| 10034 | /// A partial specialization shall be declared before the first use of a |
| 10035 | /// class template specialization that would make use of the partial |
| 10036 | /// specialization as the result of an implicit or explicit instantiation |
| 10037 | /// in every translation unit in which such a use occurs; no diagnostic is |
| 10038 | /// required. |
| 10039 | class ExplicitSpecializationVisibilityChecker { |
| 10040 | Sema &S; |
| 10041 | SourceLocation Loc; |
| 10042 | llvm::SmallVector<Module *, 8> Modules; |
| 10043 | |
| 10044 | public: |
| 10045 | ExplicitSpecializationVisibilityChecker(Sema &S, SourceLocation Loc) |
| 10046 | : S(S), Loc(Loc) {} |
| 10047 | |
| 10048 | void check(NamedDecl *ND) { |
| 10049 | if (auto *FD = dyn_cast<FunctionDecl>(ND)) |
| 10050 | return checkImpl(FD); |
| 10051 | if (auto *RD = dyn_cast<CXXRecordDecl>(ND)) |
| 10052 | return checkImpl(RD); |
| 10053 | if (auto *VD = dyn_cast<VarDecl>(ND)) |
| 10054 | return checkImpl(VD); |
| 10055 | if (auto *ED = dyn_cast<EnumDecl>(ND)) |
| 10056 | return checkImpl(ED); |
| 10057 | } |
| 10058 | |
| 10059 | private: |
| 10060 | void diagnose(NamedDecl *D, bool IsPartialSpec) { |
| 10061 | auto Kind = IsPartialSpec ? Sema::MissingImportKind::PartialSpecialization |
| 10062 | : Sema::MissingImportKind::ExplicitSpecialization; |
| 10063 | const bool Recover = true; |
| 10064 | |
| 10065 | // If we got a custom set of modules (because only a subset of the |
| 10066 | // declarations are interesting), use them, otherwise let |
| 10067 | // diagnoseMissingImport intelligently pick some. |
| 10068 | if (Modules.empty()) |
| 10069 | S.diagnoseMissingImport(Loc, D, Kind, Recover); |
| 10070 | else |
| 10071 | S.diagnoseMissingImport(Loc, D, D->getLocation(), Modules, Kind, Recover); |
| 10072 | } |
| 10073 | |
| 10074 | // Check a specific declaration. There are three problematic cases: |
| 10075 | // |
| 10076 | // 1) The declaration is an explicit specialization of a template |
| 10077 | // specialization. |
| 10078 | // 2) The declaration is an explicit specialization of a member of an |
| 10079 | // templated class. |
| 10080 | // 3) The declaration is an instantiation of a template, and that template |
| 10081 | // is an explicit specialization of a member of a templated class. |
| 10082 | // |
| 10083 | // We don't need to go any deeper than that, as the instantiation of the |
| 10084 | // surrounding class / etc is not triggered by whatever triggered this |
| 10085 | // instantiation, and thus should be checked elsewhere. |
| 10086 | template<typename SpecDecl> |
| 10087 | void checkImpl(SpecDecl *Spec) { |
| 10088 | bool IsHiddenExplicitSpecialization = false; |
| 10089 | if (Spec->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) { |
| 10090 | IsHiddenExplicitSpecialization = |
| 10091 | Spec->getMemberSpecializationInfo() |
| 10092 | ? !S.hasVisibleMemberSpecialization(Spec, &Modules) |
Richard Smith | 54f0440 | 2017-05-18 02:29:20 +0000 | [diff] [blame] | 10093 | : !S.hasVisibleExplicitSpecialization(Spec, &Modules); |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 10094 | } else { |
| 10095 | checkInstantiated(Spec); |
| 10096 | } |
| 10097 | |
| 10098 | if (IsHiddenExplicitSpecialization) |
| 10099 | diagnose(Spec->getMostRecentDecl(), false); |
| 10100 | } |
| 10101 | |
| 10102 | void checkInstantiated(FunctionDecl *FD) { |
| 10103 | if (auto *TD = FD->getPrimaryTemplate()) |
| 10104 | checkTemplate(TD); |
| 10105 | } |
| 10106 | |
| 10107 | void checkInstantiated(CXXRecordDecl *RD) { |
| 10108 | auto *SD = dyn_cast<ClassTemplateSpecializationDecl>(RD); |
| 10109 | if (!SD) |
| 10110 | return; |
| 10111 | |
| 10112 | auto From = SD->getSpecializedTemplateOrPartial(); |
| 10113 | if (auto *TD = From.dyn_cast<ClassTemplateDecl *>()) |
| 10114 | checkTemplate(TD); |
| 10115 | else if (auto *TD = |
| 10116 | From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) { |
| 10117 | if (!S.hasVisibleDeclaration(TD)) |
| 10118 | diagnose(TD, true); |
| 10119 | checkTemplate(TD); |
| 10120 | } |
| 10121 | } |
| 10122 | |
| 10123 | void checkInstantiated(VarDecl *RD) { |
| 10124 | auto *SD = dyn_cast<VarTemplateSpecializationDecl>(RD); |
| 10125 | if (!SD) |
| 10126 | return; |
| 10127 | |
| 10128 | auto From = SD->getSpecializedTemplateOrPartial(); |
| 10129 | if (auto *TD = From.dyn_cast<VarTemplateDecl *>()) |
| 10130 | checkTemplate(TD); |
| 10131 | else if (auto *TD = |
| 10132 | From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) { |
| 10133 | if (!S.hasVisibleDeclaration(TD)) |
| 10134 | diagnose(TD, true); |
| 10135 | checkTemplate(TD); |
| 10136 | } |
| 10137 | } |
| 10138 | |
| 10139 | void checkInstantiated(EnumDecl *FD) {} |
| 10140 | |
| 10141 | template<typename TemplDecl> |
| 10142 | void checkTemplate(TemplDecl *TD) { |
| 10143 | if (TD->isMemberSpecialization()) { |
| 10144 | if (!S.hasVisibleMemberSpecialization(TD, &Modules)) |
| 10145 | diagnose(TD->getMostRecentDecl(), false); |
| 10146 | } |
| 10147 | } |
| 10148 | }; |
Benjamin Kramer | a0a13c3 | 2016-08-06 11:21:04 +0000 | [diff] [blame] | 10149 | } // end anonymous namespace |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 10150 | |
| 10151 | void Sema::checkSpecializationVisibility(SourceLocation Loc, NamedDecl *Spec) { |
| 10152 | if (!getLangOpts().Modules) |
| 10153 | return; |
| 10154 | |
| 10155 | ExplicitSpecializationVisibilityChecker(*this, Loc).check(Spec); |
| 10156 | } |
| 10157 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 10158 | /// Check whether a template partial specialization that we've discovered |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 10159 | /// is hidden, and produce suitable diagnostics if so. |
| 10160 | void Sema::checkPartialSpecializationVisibility(SourceLocation Loc, |
| 10161 | NamedDecl *Spec) { |
| 10162 | llvm::SmallVector<Module *, 8> Modules; |
| 10163 | if (!hasVisibleDeclaration(Spec, &Modules)) |
| 10164 | diagnoseMissingImport(Loc, Spec, Spec->getLocation(), Modules, |
| 10165 | MissingImportKind::PartialSpecialization, |
| 10166 | /*Recover*/true); |
| 10167 | } |