Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1 | //===------- SemaTemplateInstantiate.cpp - C++ Template Instantiation ------===/ |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | //===----------------------------------------------------------------------===/ |
| 8 | // |
| 9 | // This file implements C++ template instantiation. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===/ |
| 12 | |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 13 | #include "clang/Sema/SemaInternal.h" |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 14 | #include "TreeTransform.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 15 | #include "clang/Sema/DeclSpec.h" |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 16 | #include "clang/Sema/Initialization.h" |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 17 | #include "clang/Sema/Lookup.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 18 | #include "clang/Sema/Template.h" |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 19 | #include "clang/Sema/TemplateDeduction.h" |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 20 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTContext.h" |
| 22 | #include "clang/AST/Expr.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 24 | #include "clang/Basic/LangOptions.h" |
| 25 | |
| 26 | using namespace clang; |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 27 | using namespace sema; |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 28 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 29 | //===----------------------------------------------------------------------===/ |
| 30 | // Template Instantiation Support |
| 31 | //===----------------------------------------------------------------------===/ |
| 32 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 33 | /// \brief Retrieve the template argument list(s) that should be used to |
| 34 | /// instantiate the definition of the given declaration. |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 35 | /// |
| 36 | /// \param D the declaration for which we are computing template instantiation |
| 37 | /// arguments. |
| 38 | /// |
| 39 | /// \param Innermost if non-NULL, the innermost template argument list. |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 40 | /// |
| 41 | /// \param RelativeToPrimary true if we should get the template |
| 42 | /// arguments relative to the primary template, even when we're |
| 43 | /// dealing with a specialization. This is only relevant for function |
| 44 | /// template specializations. |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 45 | /// |
| 46 | /// \param Pattern If non-NULL, indicates the pattern from which we will be |
| 47 | /// instantiating the definition of the given declaration, \p D. This is |
| 48 | /// used to determine the proper set of template instantiation arguments for |
| 49 | /// friend function template specializations. |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 50 | MultiLevelTemplateArgumentList |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 51 | Sema::getTemplateInstantiationArgs(NamedDecl *D, |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 52 | const TemplateArgumentList *Innermost, |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 53 | bool RelativeToPrimary, |
| 54 | const FunctionDecl *Pattern) { |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 55 | // Accumulate the set of template argument lists in this structure. |
| 56 | MultiLevelTemplateArgumentList Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 57 | |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 58 | if (Innermost) |
| 59 | Result.addOuterTemplateArguments(Innermost); |
| 60 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 61 | DeclContext *Ctx = dyn_cast<DeclContext>(D); |
Douglas Gregor | 93104c1 | 2011-05-22 00:21:10 +0000 | [diff] [blame] | 62 | if (!Ctx) { |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 63 | Ctx = D->getDeclContext(); |
Douglas Gregor | 93104c1 | 2011-05-22 00:21:10 +0000 | [diff] [blame] | 64 | |
Douglas Gregor | 383041d | 2011-06-15 14:20:42 +0000 | [diff] [blame] | 65 | // If we have a template template parameter with translation unit context, |
| 66 | // then we're performing substitution into a default template argument of |
| 67 | // this template template parameter before we've constructed the template |
| 68 | // that will own this template template parameter. In this case, we |
| 69 | // use empty template parameter lists for all of the outer templates |
| 70 | // to avoid performing any substitutions. |
| 71 | if (Ctx->isTranslationUnit()) { |
| 72 | if (TemplateTemplateParmDecl *TTP |
| 73 | = dyn_cast<TemplateTemplateParmDecl>(D)) { |
| 74 | for (unsigned I = 0, N = TTP->getDepth() + 1; I != N; ++I) |
| 75 | Result.addOuterTemplateArguments(0, 0); |
| 76 | return Result; |
| 77 | } |
| 78 | } |
Douglas Gregor | 93104c1 | 2011-05-22 00:21:10 +0000 | [diff] [blame] | 79 | } |
| 80 | |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 81 | while (!Ctx->isFileContext()) { |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 82 | // Add template arguments from a class template instantiation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 83 | if (ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 84 | = dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) { |
| 85 | // We're done when we hit an explicit specialization. |
Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 86 | if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization && |
| 87 | !isa<ClassTemplatePartialSpecializationDecl>(Spec)) |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 88 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 89 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 90 | Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs()); |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 91 | |
| 92 | // If this class template specialization was instantiated from a |
| 93 | // specialized member that is a class template, we're done. |
| 94 | assert(Spec->getSpecializedTemplate() && "No class template?"); |
| 95 | if (Spec->getSpecializedTemplate()->isMemberSpecialization()) |
| 96 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 97 | } |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 98 | // Add template arguments from a function template specialization. |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 99 | else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) { |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 100 | if (!RelativeToPrimary && |
Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 101 | (Function->getTemplateSpecializationKind() == |
| 102 | TSK_ExplicitSpecialization && |
| 103 | !Function->getClassScopeSpecializationPattern())) |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 104 | break; |
| 105 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 106 | if (const TemplateArgumentList *TemplateArgs |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 107 | = Function->getTemplateSpecializationArgs()) { |
| 108 | // Add the template arguments for this specialization. |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 109 | Result.addOuterTemplateArguments(TemplateArgs); |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 110 | |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 111 | // If this function was instantiated from a specialized member that is |
| 112 | // a function template, we're done. |
| 113 | assert(Function->getPrimaryTemplate() && "No function template?"); |
| 114 | if (Function->getPrimaryTemplate()->isMemberSpecialization()) |
| 115 | break; |
Douglas Gregor | c494f77 | 2011-03-05 17:54:25 +0000 | [diff] [blame] | 116 | } else if (FunctionTemplateDecl *FunTmpl |
| 117 | = Function->getDescribedFunctionTemplate()) { |
| 118 | // Add the "injected" template arguments. |
| 119 | std::pair<const TemplateArgument *, unsigned> |
| 120 | Injected = FunTmpl->getInjectedTemplateArgs(); |
| 121 | Result.addOuterTemplateArguments(Injected.first, Injected.second); |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 122 | } |
| 123 | |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 124 | // If this is a friend declaration and it declares an entity at |
| 125 | // namespace scope, take arguments from its lexical parent |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 126 | // instead of its semantic parent, unless of course the pattern we're |
| 127 | // instantiating actually comes from the file's context! |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 128 | if (Function->getFriendObjectKind() && |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 129 | Function->getDeclContext()->isFileContext() && |
| 130 | (!Pattern || !Pattern->getLexicalDeclContext()->isFileContext())) { |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 131 | Ctx = Function->getLexicalDeclContext(); |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 132 | RelativeToPrimary = false; |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 133 | continue; |
| 134 | } |
Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 135 | } else if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Ctx)) { |
| 136 | if (ClassTemplateDecl *ClassTemplate = Rec->getDescribedClassTemplate()) { |
| 137 | QualType T = ClassTemplate->getInjectedClassNameSpecialization(); |
| 138 | const TemplateSpecializationType *TST |
| 139 | = cast<TemplateSpecializationType>(Context.getCanonicalType(T)); |
| 140 | Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs()); |
| 141 | if (ClassTemplate->isMemberSpecialization()) |
| 142 | break; |
| 143 | } |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 144 | } |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 145 | |
| 146 | Ctx = Ctx->getParent(); |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 147 | RelativeToPrimary = false; |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 148 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 149 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 150 | return Result; |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 153 | bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const { |
| 154 | switch (Kind) { |
| 155 | case TemplateInstantiation: |
| 156 | case DefaultTemplateArgumentInstantiation: |
| 157 | case DefaultFunctionArgumentInstantiation: |
| 158 | return true; |
| 159 | |
| 160 | case ExplicitTemplateArgumentSubstitution: |
| 161 | case DeducedTemplateArgumentSubstitution: |
| 162 | case PriorTemplateArgumentSubstitution: |
| 163 | case DefaultTemplateArgumentChecking: |
| 164 | return false; |
| 165 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 166 | |
| 167 | llvm_unreachable("Invalid InstantiationKind!"); |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 170 | Sema::InstantiatingTemplate:: |
| 171 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 172 | Decl *Entity, |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 173 | SourceRange InstantiationRange) |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 174 | : SemaRef(SemaRef), |
| 175 | SavedInNonInstantiationSFINAEContext( |
| 176 | SemaRef.InNonInstantiationSFINAEContext) |
| 177 | { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 178 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 179 | InstantiationRange); |
| 180 | if (!Invalid) { |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 181 | ActiveTemplateInstantiation Inst; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 182 | Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 183 | Inst.PointOfInstantiation = PointOfInstantiation; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 184 | Inst.Entity = reinterpret_cast<uintptr_t>(Entity); |
Douglas Gregor | 313a81d | 2009-03-12 18:36:18 +0000 | [diff] [blame] | 185 | Inst.TemplateArgs = 0; |
| 186 | Inst.NumTemplateArgs = 0; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 187 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 188 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 189 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 193 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 194 | SourceLocation PointOfInstantiation, |
| 195 | TemplateDecl *Template, |
| 196 | const TemplateArgument *TemplateArgs, |
| 197 | unsigned NumTemplateArgs, |
| 198 | SourceRange InstantiationRange) |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 199 | : SemaRef(SemaRef), |
| 200 | SavedInNonInstantiationSFINAEContext( |
| 201 | SemaRef.InNonInstantiationSFINAEContext) |
| 202 | { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 203 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 204 | InstantiationRange); |
| 205 | if (!Invalid) { |
| 206 | ActiveTemplateInstantiation Inst; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 207 | Inst.Kind |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 208 | = ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation; |
| 209 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 210 | Inst.Entity = reinterpret_cast<uintptr_t>(Template); |
| 211 | Inst.TemplateArgs = TemplateArgs; |
| 212 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 213 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 214 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 215 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 219 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 220 | SourceLocation PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 221 | FunctionTemplateDecl *FunctionTemplate, |
| 222 | const TemplateArgument *TemplateArgs, |
| 223 | unsigned NumTemplateArgs, |
| 224 | ActiveTemplateInstantiation::InstantiationKind Kind, |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 225 | sema::TemplateDeductionInfo &DeductionInfo, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 226 | SourceRange InstantiationRange) |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 227 | : SemaRef(SemaRef), |
| 228 | SavedInNonInstantiationSFINAEContext( |
| 229 | SemaRef.InNonInstantiationSFINAEContext) |
| 230 | { |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 231 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 232 | InstantiationRange); |
| 233 | if (!Invalid) { |
| 234 | ActiveTemplateInstantiation Inst; |
| 235 | Inst.Kind = Kind; |
| 236 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 237 | Inst.Entity = reinterpret_cast<uintptr_t>(FunctionTemplate); |
| 238 | Inst.TemplateArgs = TemplateArgs; |
| 239 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 240 | Inst.DeductionInfo = &DeductionInfo; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 241 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 242 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 243 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 244 | |
| 245 | if (!Inst.isInstantiationRecord()) |
| 246 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 250 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 251 | SourceLocation PointOfInstantiation, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 252 | ClassTemplatePartialSpecializationDecl *PartialSpec, |
| 253 | const TemplateArgument *TemplateArgs, |
| 254 | unsigned NumTemplateArgs, |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 255 | sema::TemplateDeductionInfo &DeductionInfo, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 256 | SourceRange InstantiationRange) |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 257 | : SemaRef(SemaRef), |
| 258 | SavedInNonInstantiationSFINAEContext( |
| 259 | SemaRef.InNonInstantiationSFINAEContext) |
| 260 | { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 261 | Invalid = false; |
| 262 | |
| 263 | ActiveTemplateInstantiation Inst; |
| 264 | Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution; |
| 265 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 266 | Inst.Entity = reinterpret_cast<uintptr_t>(PartialSpec); |
| 267 | Inst.TemplateArgs = TemplateArgs; |
| 268 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 269 | Inst.DeductionInfo = &DeductionInfo; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 270 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 271 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 272 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 273 | |
| 274 | assert(!Inst.isInstantiationRecord()); |
| 275 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 278 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 279 | SourceLocation PointOfInstantiation, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 280 | ParmVarDecl *Param, |
| 281 | const TemplateArgument *TemplateArgs, |
| 282 | unsigned NumTemplateArgs, |
| 283 | SourceRange InstantiationRange) |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 284 | : SemaRef(SemaRef), |
| 285 | SavedInNonInstantiationSFINAEContext( |
| 286 | SemaRef.InNonInstantiationSFINAEContext) |
| 287 | { |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 288 | Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 289 | |
| 290 | if (!Invalid) { |
| 291 | ActiveTemplateInstantiation Inst; |
| 292 | Inst.Kind |
| 293 | = ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 294 | Inst.PointOfInstantiation = PointOfInstantiation; |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 295 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 296 | Inst.TemplateArgs = TemplateArgs; |
| 297 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 298 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 299 | SemaRef.InNonInstantiationSFINAEContext = false; |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 300 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | |
| 304 | Sema::InstantiatingTemplate:: |
| 305 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 306 | NamedDecl *Template, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 307 | NonTypeTemplateParmDecl *Param, |
| 308 | const TemplateArgument *TemplateArgs, |
| 309 | unsigned NumTemplateArgs, |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 310 | SourceRange InstantiationRange) |
| 311 | : SemaRef(SemaRef), |
| 312 | SavedInNonInstantiationSFINAEContext( |
| 313 | SemaRef.InNonInstantiationSFINAEContext) |
| 314 | { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 315 | Invalid = false; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 316 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 317 | ActiveTemplateInstantiation Inst; |
| 318 | Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution; |
| 319 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 320 | Inst.Template = Template; |
| 321 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 322 | Inst.TemplateArgs = TemplateArgs; |
| 323 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 324 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 325 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 326 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 327 | |
| 328 | assert(!Inst.isInstantiationRecord()); |
| 329 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | Sema::InstantiatingTemplate:: |
| 333 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 334 | NamedDecl *Template, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 335 | TemplateTemplateParmDecl *Param, |
| 336 | const TemplateArgument *TemplateArgs, |
| 337 | unsigned NumTemplateArgs, |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 338 | SourceRange InstantiationRange) |
| 339 | : SemaRef(SemaRef), |
| 340 | SavedInNonInstantiationSFINAEContext( |
| 341 | SemaRef.InNonInstantiationSFINAEContext) |
| 342 | { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 343 | Invalid = false; |
| 344 | ActiveTemplateInstantiation Inst; |
| 345 | Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution; |
| 346 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 347 | Inst.Template = Template; |
| 348 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 349 | Inst.TemplateArgs = TemplateArgs; |
| 350 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 351 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 352 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 353 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 354 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 355 | assert(!Inst.isInstantiationRecord()); |
| 356 | ++SemaRef.NonInstantiationEntries; |
| 357 | } |
| 358 | |
| 359 | Sema::InstantiatingTemplate:: |
| 360 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 361 | TemplateDecl *Template, |
| 362 | NamedDecl *Param, |
| 363 | const TemplateArgument *TemplateArgs, |
| 364 | unsigned NumTemplateArgs, |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 365 | SourceRange InstantiationRange) |
| 366 | : SemaRef(SemaRef), |
| 367 | SavedInNonInstantiationSFINAEContext( |
| 368 | SemaRef.InNonInstantiationSFINAEContext) |
| 369 | { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 370 | Invalid = false; |
| 371 | |
| 372 | ActiveTemplateInstantiation Inst; |
| 373 | Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking; |
| 374 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 375 | Inst.Template = Template; |
| 376 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 377 | Inst.TemplateArgs = TemplateArgs; |
| 378 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 379 | Inst.InstantiationRange = InstantiationRange; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 380 | SemaRef.InNonInstantiationSFINAEContext = false; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 381 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 382 | |
| 383 | assert(!Inst.isInstantiationRecord()); |
| 384 | ++SemaRef.NonInstantiationEntries; |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 387 | void Sema::InstantiatingTemplate::Clear() { |
| 388 | if (!Invalid) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 389 | if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) { |
| 390 | assert(SemaRef.NonInstantiationEntries > 0); |
| 391 | --SemaRef.NonInstantiationEntries; |
| 392 | } |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 393 | SemaRef.InNonInstantiationSFINAEContext |
| 394 | = SavedInNonInstantiationSFINAEContext; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 395 | SemaRef.ActiveTemplateInstantiations.pop_back(); |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 396 | Invalid = true; |
| 397 | } |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 398 | } |
| 399 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 400 | bool Sema::InstantiatingTemplate::CheckInstantiationDepth( |
| 401 | SourceLocation PointOfInstantiation, |
| 402 | SourceRange InstantiationRange) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 403 | assert(SemaRef.NonInstantiationEntries <= |
| 404 | SemaRef.ActiveTemplateInstantiations.size()); |
| 405 | if ((SemaRef.ActiveTemplateInstantiations.size() - |
| 406 | SemaRef.NonInstantiationEntries) |
| 407 | <= SemaRef.getLangOptions().InstantiationDepth) |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 408 | return false; |
| 409 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 410 | SemaRef.Diag(PointOfInstantiation, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 411 | diag::err_template_recursion_depth_exceeded) |
| 412 | << SemaRef.getLangOptions().InstantiationDepth |
| 413 | << InstantiationRange; |
| 414 | SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth) |
| 415 | << SemaRef.getLangOptions().InstantiationDepth; |
| 416 | return true; |
| 417 | } |
| 418 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 419 | /// \brief Prints the current instantiation stack through a series of |
| 420 | /// notes. |
| 421 | void Sema::PrintInstantiationStack() { |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 422 | // Determine which template instantiations to skip, if any. |
| 423 | unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart; |
| 424 | unsigned Limit = Diags.getTemplateBacktraceLimit(); |
| 425 | if (Limit && Limit < ActiveTemplateInstantiations.size()) { |
| 426 | SkipStart = Limit / 2 + Limit % 2; |
| 427 | SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2; |
| 428 | } |
| 429 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 430 | // FIXME: In all of these cases, we need to show the template arguments |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 431 | unsigned InstantiationIdx = 0; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 432 | for (SmallVector<ActiveTemplateInstantiation, 16>::reverse_iterator |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 433 | Active = ActiveTemplateInstantiations.rbegin(), |
| 434 | ActiveEnd = ActiveTemplateInstantiations.rend(); |
| 435 | Active != ActiveEnd; |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 436 | ++Active, ++InstantiationIdx) { |
| 437 | // Skip this instantiation? |
| 438 | if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) { |
| 439 | if (InstantiationIdx == SkipStart) { |
| 440 | // Note that we're skipping instantiations. |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 441 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 442 | diag::note_instantiation_contexts_suppressed) |
| 443 | << unsigned(ActiveTemplateInstantiations.size() - Limit); |
| 444 | } |
| 445 | continue; |
| 446 | } |
| 447 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 448 | switch (Active->Kind) { |
| 449 | case ActiveTemplateInstantiation::TemplateInstantiation: { |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 450 | Decl *D = reinterpret_cast<Decl *>(Active->Entity); |
| 451 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { |
| 452 | unsigned DiagID = diag::note_template_member_class_here; |
| 453 | if (isa<ClassTemplateSpecializationDecl>(Record)) |
| 454 | DiagID = diag::note_template_class_instantiation_here; |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 455 | Diags.Report(Active->PointOfInstantiation, DiagID) |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 456 | << Context.getTypeDeclType(Record) |
| 457 | << Active->InstantiationRange; |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 458 | } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 459 | unsigned DiagID; |
| 460 | if (Function->getPrimaryTemplate()) |
| 461 | DiagID = diag::note_function_template_spec_here; |
| 462 | else |
| 463 | DiagID = diag::note_template_member_function_here; |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 464 | Diags.Report(Active->PointOfInstantiation, DiagID) |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 465 | << Function |
| 466 | << Active->InstantiationRange; |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 467 | } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 468 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 469 | diag::note_template_static_data_member_def_here) |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 470 | << VD |
| 471 | << Active->InstantiationRange; |
| 472 | } else { |
| 473 | Diags.Report(Active->PointOfInstantiation, |
| 474 | diag::note_template_type_alias_instantiation_here) |
| 475 | << cast<TypeAliasTemplateDecl>(D) |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 476 | << Active->InstantiationRange; |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 477 | } |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 478 | break; |
| 479 | } |
| 480 | |
| 481 | case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: { |
| 482 | TemplateDecl *Template = cast<TemplateDecl>((Decl *)Active->Entity); |
| 483 | std::string TemplateArgsStr |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 484 | = TemplateSpecializationType::PrintTemplateArgumentList( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 | Active->TemplateArgs, |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 486 | Active->NumTemplateArgs, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 487 | getPrintingPolicy()); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 488 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 489 | diag::note_default_arg_instantiation_here) |
| 490 | << (Template->getNameAsString() + TemplateArgsStr) |
| 491 | << Active->InstantiationRange; |
| 492 | break; |
| 493 | } |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 494 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 495 | case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 496 | FunctionTemplateDecl *FnTmpl |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 497 | = cast<FunctionTemplateDecl>((Decl *)Active->Entity); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 498 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 499 | diag::note_explicit_template_arg_substitution_here) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 500 | << FnTmpl |
| 501 | << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(), |
| 502 | Active->TemplateArgs, |
| 503 | Active->NumTemplateArgs) |
| 504 | << Active->InstantiationRange; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 505 | break; |
| 506 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 507 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 508 | case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution: |
| 509 | if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 510 | = dyn_cast<ClassTemplatePartialSpecializationDecl>( |
| 511 | (Decl *)Active->Entity)) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 512 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 513 | diag::note_partial_spec_deduct_instantiation_here) |
| 514 | << Context.getTypeDeclType(PartialSpec) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 515 | << getTemplateArgumentBindingsText( |
| 516 | PartialSpec->getTemplateParameters(), |
| 517 | Active->TemplateArgs, |
| 518 | Active->NumTemplateArgs) |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 519 | << Active->InstantiationRange; |
| 520 | } else { |
| 521 | FunctionTemplateDecl *FnTmpl |
| 522 | = cast<FunctionTemplateDecl>((Decl *)Active->Entity); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 523 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 524 | diag::note_function_template_deduction_instantiation_here) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 525 | << FnTmpl |
| 526 | << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(), |
| 527 | Active->TemplateArgs, |
| 528 | Active->NumTemplateArgs) |
| 529 | << Active->InstantiationRange; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 530 | } |
| 531 | break; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 532 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 533 | case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: { |
| 534 | ParmVarDecl *Param = cast<ParmVarDecl>((Decl *)Active->Entity); |
| 535 | FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 536 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 537 | std::string TemplateArgsStr |
| 538 | = TemplateSpecializationType::PrintTemplateArgumentList( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 539 | Active->TemplateArgs, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 540 | Active->NumTemplateArgs, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 541 | getPrintingPolicy()); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 542 | Diags.Report(Active->PointOfInstantiation, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 543 | diag::note_default_function_arg_instantiation_here) |
Anders Carlsson | 6bc107b | 2009-09-05 05:38:54 +0000 | [diff] [blame] | 544 | << (FD->getNameAsString() + TemplateArgsStr) |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 545 | << Active->InstantiationRange; |
| 546 | break; |
| 547 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 548 | |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 549 | case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: { |
| 550 | NamedDecl *Parm = cast<NamedDecl>((Decl *)Active->Entity); |
| 551 | std::string Name; |
| 552 | if (!Parm->getName().empty()) |
| 553 | Name = std::string(" '") + Parm->getName().str() + "'"; |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 554 | |
| 555 | TemplateParameterList *TemplateParams = 0; |
| 556 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template)) |
| 557 | TemplateParams = Template->getTemplateParameters(); |
| 558 | else |
| 559 | TemplateParams = |
| 560 | cast<ClassTemplatePartialSpecializationDecl>(Active->Template) |
| 561 | ->getTemplateParameters(); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 562 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 563 | diag::note_prior_template_arg_substitution) |
| 564 | << isa<TemplateTemplateParmDecl>(Parm) |
| 565 | << Name |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 566 | << getTemplateArgumentBindingsText(TemplateParams, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 567 | Active->TemplateArgs, |
| 568 | Active->NumTemplateArgs) |
| 569 | << Active->InstantiationRange; |
| 570 | break; |
| 571 | } |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 572 | |
| 573 | case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: { |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 574 | TemplateParameterList *TemplateParams = 0; |
| 575 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template)) |
| 576 | TemplateParams = Template->getTemplateParameters(); |
| 577 | else |
| 578 | TemplateParams = |
| 579 | cast<ClassTemplatePartialSpecializationDecl>(Active->Template) |
| 580 | ->getTemplateParameters(); |
| 581 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 582 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 583 | diag::note_template_default_arg_checking) |
Douglas Gregor | 54c53cc | 2011-01-04 23:35:54 +0000 | [diff] [blame] | 584 | << getTemplateArgumentBindingsText(TemplateParams, |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 585 | Active->TemplateArgs, |
| 586 | Active->NumTemplateArgs) |
| 587 | << Active->InstantiationRange; |
| 588 | break; |
| 589 | } |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 590 | } |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 591 | } |
| 592 | } |
| 593 | |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 594 | llvm::Optional<TemplateDeductionInfo *> Sema::isSFINAEContext() const { |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 595 | if (InNonInstantiationSFINAEContext) |
| 596 | return llvm::Optional<TemplateDeductionInfo *>(0); |
| 597 | |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 598 | for (SmallVector<ActiveTemplateInstantiation, 16>::const_reverse_iterator |
| 599 | Active = ActiveTemplateInstantiations.rbegin(), |
| 600 | ActiveEnd = ActiveTemplateInstantiations.rend(); |
| 601 | Active != ActiveEnd; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 602 | ++Active) |
| 603 | { |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 604 | switch(Active->Kind) { |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 605 | case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 606 | case ActiveTemplateInstantiation::TemplateInstantiation: |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 607 | // This is a template instantiation, so there is no SFINAE. |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 608 | return llvm::Optional<TemplateDeductionInfo *>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 609 | |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 610 | case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 611 | case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 612 | case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 613 | // A default template argument instantiation and substitution into |
| 614 | // template parameters with arguments for prior parameters may or may |
| 615 | // not be a SFINAE context; look further up the stack. |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 616 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 617 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 618 | case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: |
| 619 | case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution: |
| 620 | // We're either substitution explicitly-specified template arguments |
| 621 | // or deduced template arguments, so SFINAE applies. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 622 | assert(Active->DeductionInfo && "Missing deduction info pointer"); |
| 623 | return Active->DeductionInfo; |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 627 | return llvm::Optional<TemplateDeductionInfo *>(); |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 630 | /// \brief Retrieve the depth and index of a parameter pack. |
| 631 | static std::pair<unsigned, unsigned> |
| 632 | getDepthAndIndex(NamedDecl *ND) { |
| 633 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND)) |
| 634 | return std::make_pair(TTP->getDepth(), TTP->getIndex()); |
| 635 | |
| 636 | if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND)) |
| 637 | return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); |
| 638 | |
| 639 | TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND); |
| 640 | return std::make_pair(TTP->getDepth(), TTP->getIndex()); |
| 641 | } |
| 642 | |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 643 | //===----------------------------------------------------------------------===/ |
| 644 | // Template Instantiation for Types |
| 645 | //===----------------------------------------------------------------------===/ |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 646 | namespace { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 647 | class TemplateInstantiator : public TreeTransform<TemplateInstantiator> { |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 648 | const MultiLevelTemplateArgumentList &TemplateArgs; |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 649 | SourceLocation Loc; |
| 650 | DeclarationName Entity; |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 651 | |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 652 | public: |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 653 | typedef TreeTransform<TemplateInstantiator> inherited; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 654 | |
| 655 | TemplateInstantiator(Sema &SemaRef, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 656 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 657 | SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 658 | DeclarationName Entity) |
| 659 | : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc), |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 660 | Entity(Entity) { } |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 661 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 662 | /// \brief Determine whether the given type \p T has already been |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 663 | /// transformed. |
| 664 | /// |
| 665 | /// For the purposes of template instantiation, a type has already been |
| 666 | /// transformed if it is NULL or if it is not dependent. |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 667 | bool AlreadyTransformed(QualType T); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 668 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 669 | /// \brief Returns the location of the entity being instantiated, if known. |
| 670 | SourceLocation getBaseLocation() { return Loc; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 671 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 672 | /// \brief Returns the name of the entity being instantiated, if any. |
| 673 | DeclarationName getBaseEntity() { return Entity; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 674 | |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 675 | /// \brief Sets the "base" location and entity when that |
| 676 | /// information is known based on another transformation. |
| 677 | void setBase(SourceLocation Loc, DeclarationName Entity) { |
| 678 | this->Loc = Loc; |
| 679 | this->Entity = Entity; |
| 680 | } |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 681 | |
| 682 | bool TryExpandParameterPacks(SourceLocation EllipsisLoc, |
| 683 | SourceRange PatternRange, |
David Blaikie | a71f9d0 | 2011-09-22 02:34:54 +0000 | [diff] [blame] | 684 | llvm::ArrayRef<UnexpandedParameterPack> Unexpanded, |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 685 | bool &ShouldExpand, |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 686 | bool &RetainExpansion, |
Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 687 | llvm::Optional<unsigned> &NumExpansions) { |
Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 688 | return getSema().CheckParameterPacksForExpansion(EllipsisLoc, |
| 689 | PatternRange, Unexpanded, |
Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 690 | TemplateArgs, |
| 691 | ShouldExpand, |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 692 | RetainExpansion, |
Douglas Gregor | b99268b | 2010-12-21 00:52:54 +0000 | [diff] [blame] | 693 | NumExpansions); |
| 694 | } |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 695 | |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 696 | void ExpandingFunctionParameterPack(ParmVarDecl *Pack) { |
| 697 | SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack); |
| 698 | } |
| 699 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 700 | TemplateArgument ForgetPartiallySubstitutedPack() { |
| 701 | TemplateArgument Result; |
| 702 | if (NamedDecl *PartialPack |
| 703 | = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){ |
| 704 | MultiLevelTemplateArgumentList &TemplateArgs |
| 705 | = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs); |
| 706 | unsigned Depth, Index; |
| 707 | llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack); |
| 708 | if (TemplateArgs.hasTemplateArgument(Depth, Index)) { |
| 709 | Result = TemplateArgs(Depth, Index); |
| 710 | TemplateArgs.setArgument(Depth, Index, TemplateArgument()); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | return Result; |
| 715 | } |
| 716 | |
| 717 | void RememberPartiallySubstitutedPack(TemplateArgument Arg) { |
| 718 | if (Arg.isNull()) |
| 719 | return; |
| 720 | |
| 721 | if (NamedDecl *PartialPack |
| 722 | = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){ |
| 723 | MultiLevelTemplateArgumentList &TemplateArgs |
| 724 | = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs); |
| 725 | unsigned Depth, Index; |
| 726 | llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack); |
| 727 | TemplateArgs.setArgument(Depth, Index, Arg); |
| 728 | } |
| 729 | } |
| 730 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 731 | /// \brief Transform the given declaration by instantiating a reference to |
| 732 | /// this declaration. |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 733 | Decl *TransformDecl(SourceLocation Loc, Decl *D); |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 734 | |
Douglas Gregor | dfca6f5 | 2012-02-13 22:00:16 +0000 | [diff] [blame] | 735 | void transformAttrs(Decl *Old, Decl *New) { |
| 736 | SemaRef.InstantiateAttrs(TemplateArgs, Old, New); |
| 737 | } |
| 738 | |
| 739 | void transformedLocalDecl(Decl *Old, Decl *New) { |
| 740 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(Old, New); |
| 741 | } |
| 742 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 743 | /// \brief Transform the definition of the given declaration by |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 744 | /// instantiating it. |
Douglas Gregor | aac571c | 2010-03-01 17:25:41 +0000 | [diff] [blame] | 745 | Decl *TransformDefinition(SourceLocation Loc, Decl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 746 | |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 747 | /// \bried Transform the first qualifier within a scope by instantiating the |
| 748 | /// declaration. |
| 749 | NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc); |
| 750 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 751 | /// \brief Rebuild the exception declaration and register the declaration |
| 752 | /// as an instantiated local. |
Douglas Gregor | 83cb942 | 2010-09-09 17:09:21 +0000 | [diff] [blame] | 753 | VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 754 | TypeSourceInfo *Declarator, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 755 | SourceLocation StartLoc, |
| 756 | SourceLocation NameLoc, |
| 757 | IdentifierInfo *Name); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 758 | |
Douglas Gregor | be270a0 | 2010-04-26 17:57:08 +0000 | [diff] [blame] | 759 | /// \brief Rebuild the Objective-C exception declaration and register the |
| 760 | /// declaration as an instantiated local. |
| 761 | VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, |
| 762 | TypeSourceInfo *TSInfo, QualType T); |
| 763 | |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 764 | /// \brief Check for tag mismatches when instantiating an |
| 765 | /// elaborated type. |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 766 | QualType RebuildElaboratedType(SourceLocation KeywordLoc, |
| 767 | ElaboratedTypeKeyword Keyword, |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 768 | NestedNameSpecifierLoc QualifierLoc, |
| 769 | QualType T); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 770 | |
Douglas Gregor | fd4ffeb | 2011-03-02 18:07:45 +0000 | [diff] [blame] | 771 | TemplateName TransformTemplateName(CXXScopeSpec &SS, |
| 772 | TemplateName Name, |
| 773 | SourceLocation NameLoc, |
| 774 | QualType ObjectType = QualType(), |
| 775 | NamedDecl *FirstQualifierInScope = 0); |
| 776 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 777 | ExprResult TransformPredefinedExpr(PredefinedExpr *E); |
| 778 | ExprResult TransformDeclRefExpr(DeclRefExpr *E); |
| 779 | ExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E); |
| 780 | ExprResult TransformTemplateParmRefExpr(DeclRefExpr *E, |
Douglas Gregor | 56bc983 | 2010-12-24 00:15:10 +0000 | [diff] [blame] | 781 | NonTypeTemplateParmDecl *D); |
Douglas Gregor | c7793c7 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 782 | ExprResult TransformSubstNonTypeTemplateParmPackExpr( |
| 783 | SubstNonTypeTemplateParmPackExpr *E); |
| 784 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 785 | QualType TransformFunctionProtoType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 786 | FunctionProtoTypeLoc TL); |
Douglas Gregor | 6a24bfd | 2011-01-14 22:40:04 +0000 | [diff] [blame] | 787 | ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm, |
John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 788 | int indexAdjustment, |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 789 | llvm::Optional<unsigned> NumExpansions, |
| 790 | bool ExpectParameterPack); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 791 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 792 | /// \brief Transforms a template type parameter type by performing |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 793 | /// substitution of the corresponding template type argument. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 794 | QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 795 | TemplateTypeParmTypeLoc TL); |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 796 | |
Douglas Gregor | c3069d6 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 797 | /// \brief Transforms an already-substituted template type parameter pack |
| 798 | /// into either itself (if we aren't substituting into its pack expansion) |
| 799 | /// or the appropriate substituted argument. |
| 800 | QualType TransformSubstTemplateTypeParmPackType(TypeLocBuilder &TLB, |
| 801 | SubstTemplateTypeParmPackTypeLoc TL); |
| 802 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 803 | ExprResult TransformCallExpr(CallExpr *CE) { |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 804 | getSema().CallsUndergoingInstantiation.push_back(CE); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 805 | ExprResult Result = |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 806 | TreeTransform<TemplateInstantiator>::TransformCallExpr(CE); |
| 807 | getSema().CallsUndergoingInstantiation.pop_back(); |
| 808 | return move(Result); |
| 809 | } |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 810 | |
| 811 | private: |
| 812 | ExprResult transformNonTypeTemplateParmRef(NonTypeTemplateParmDecl *parm, |
| 813 | SourceLocation loc, |
| 814 | const TemplateArgument &arg); |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 815 | }; |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 816 | } |
| 817 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 818 | bool TemplateInstantiator::AlreadyTransformed(QualType T) { |
| 819 | if (T.isNull()) |
| 820 | return true; |
| 821 | |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 822 | if (T->isInstantiationDependentType() || T->isVariablyModifiedType()) |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 823 | return false; |
| 824 | |
| 825 | getSema().MarkDeclarationsReferencedInType(Loc, T); |
| 826 | return true; |
| 827 | } |
| 828 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 829 | Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 830 | if (!D) |
| 831 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 832 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 833 | if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) { |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 834 | if (TTP->getDepth() < TemplateArgs.getNumLevels()) { |
Douglas Gregor | 6d3e627 | 2010-02-05 19:54:12 +0000 | [diff] [blame] | 835 | // If the corresponding template argument is NULL or non-existent, it's |
| 836 | // because we are performing instantiation from explicitly-specified |
| 837 | // template arguments in a function template, but there were some |
| 838 | // arguments left unspecified. |
| 839 | if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), |
| 840 | TTP->getPosition())) |
| 841 | return D; |
| 842 | |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 843 | TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition()); |
| 844 | |
| 845 | if (TTP->isParameterPack()) { |
| 846 | assert(Arg.getKind() == TemplateArgument::Pack && |
| 847 | "Missing argument pack"); |
| 848 | |
Douglas Gregor | 1aee05d | 2011-01-15 06:45:20 +0000 | [diff] [blame] | 849 | assert(getSema().ArgumentPackSubstitutionIndex >= 0); |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 850 | assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size()); |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 851 | Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex]; |
| 852 | } |
| 853 | |
| 854 | TemplateName Template = Arg.getAsTemplate(); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 855 | assert(!Template.isNull() && Template.getAsTemplateDecl() && |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 856 | "Wrong kind of template template argument"); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 857 | return Template.getAsTemplateDecl(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 858 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 859 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 860 | // Fall through to find the instantiated declaration for this template |
| 861 | // template parameter. |
Douglas Gregor | d1067e5 | 2009-08-06 06:41:21 +0000 | [diff] [blame] | 862 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 863 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 864 | return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs); |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 865 | } |
| 866 | |
Douglas Gregor | aac571c | 2010-03-01 17:25:41 +0000 | [diff] [blame] | 867 | Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) { |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 868 | Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs); |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 869 | if (!Inst) |
| 870 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 871 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 872 | getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst); |
| 873 | return Inst; |
| 874 | } |
| 875 | |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 876 | NamedDecl * |
| 877 | TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D, |
| 878 | SourceLocation Loc) { |
| 879 | // If the first part of the nested-name-specifier was a template type |
| 880 | // parameter, instantiate that type parameter down to a tag type. |
| 881 | if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) { |
| 882 | const TemplateTypeParmType *TTP |
| 883 | = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD)); |
Douglas Gregor | 984a58b | 2010-12-20 22:48:17 +0000 | [diff] [blame] | 884 | |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 885 | if (TTP->getDepth() < TemplateArgs.getNumLevels()) { |
Douglas Gregor | 984a58b | 2010-12-20 22:48:17 +0000 | [diff] [blame] | 886 | // FIXME: This needs testing w/ member access expressions. |
| 887 | TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getIndex()); |
| 888 | |
| 889 | if (TTP->isParameterPack()) { |
| 890 | assert(Arg.getKind() == TemplateArgument::Pack && |
| 891 | "Missing argument pack"); |
| 892 | |
Douglas Gregor | 2be29f4 | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 893 | if (getSema().ArgumentPackSubstitutionIndex == -1) |
Douglas Gregor | 984a58b | 2010-12-20 22:48:17 +0000 | [diff] [blame] | 894 | return 0; |
Douglas Gregor | 984a58b | 2010-12-20 22:48:17 +0000 | [diff] [blame] | 895 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 896 | assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size()); |
Douglas Gregor | 984a58b | 2010-12-20 22:48:17 +0000 | [diff] [blame] | 897 | Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex]; |
| 898 | } |
| 899 | |
| 900 | QualType T = Arg.getAsType(); |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 901 | if (T.isNull()) |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 902 | return cast_or_null<NamedDecl>(TransformDecl(Loc, D)); |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 903 | |
| 904 | if (const TagType *Tag = T->getAs<TagType>()) |
| 905 | return Tag->getDecl(); |
| 906 | |
| 907 | // The resulting type is not a tag; complain. |
| 908 | getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T; |
| 909 | return 0; |
| 910 | } |
| 911 | } |
| 912 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 913 | return cast_or_null<NamedDecl>(TransformDecl(Loc, D)); |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 914 | } |
| 915 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 916 | VarDecl * |
| 917 | TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 918 | TypeSourceInfo *Declarator, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 919 | SourceLocation StartLoc, |
| 920 | SourceLocation NameLoc, |
| 921 | IdentifierInfo *Name) { |
Douglas Gregor | 83cb942 | 2010-09-09 17:09:21 +0000 | [diff] [blame] | 922 | VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 923 | StartLoc, NameLoc, Name); |
Douglas Gregor | be270a0 | 2010-04-26 17:57:08 +0000 | [diff] [blame] | 924 | if (Var) |
| 925 | getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); |
| 926 | return Var; |
| 927 | } |
| 928 | |
| 929 | VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, |
| 930 | TypeSourceInfo *TSInfo, |
| 931 | QualType T) { |
| 932 | VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); |
| 933 | if (Var) |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 934 | getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); |
| 935 | return Var; |
| 936 | } |
| 937 | |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 938 | QualType |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 939 | TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, |
| 940 | ElaboratedTypeKeyword Keyword, |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 941 | NestedNameSpecifierLoc QualifierLoc, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 942 | QualType T) { |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 943 | if (const TagType *TT = T->getAs<TagType>()) { |
| 944 | TagDecl* TD = TT->getDecl(); |
| 945 | |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 946 | SourceLocation TagLocation = KeywordLoc; |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 947 | |
| 948 | // FIXME: type might be anonymous. |
| 949 | IdentifierInfo *Id = TD->getIdentifier(); |
| 950 | |
| 951 | // TODO: should we even warn on struct/class mismatches for this? Seems |
| 952 | // like it's likely to produce a lot of spurious errors. |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 953 | if (Keyword != ETK_None && Keyword != ETK_Typename) { |
| 954 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword); |
Richard Trieu | bbf34c0 | 2011-06-10 03:11:26 +0000 | [diff] [blame] | 955 | if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, /*isDefinition*/false, |
| 956 | TagLocation, *Id)) { |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 957 | SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag) |
| 958 | << Id |
| 959 | << FixItHint::CreateReplacement(SourceRange(TagLocation), |
| 960 | TD->getKindName()); |
| 961 | SemaRef.Diag(TD->getLocation(), diag::note_previous_use); |
| 962 | } |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 963 | } |
| 964 | } |
| 965 | |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 966 | return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, |
| 967 | Keyword, |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 968 | QualifierLoc, |
| 969 | T); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 970 | } |
| 971 | |
Douglas Gregor | fd4ffeb | 2011-03-02 18:07:45 +0000 | [diff] [blame] | 972 | TemplateName TemplateInstantiator::TransformTemplateName(CXXScopeSpec &SS, |
| 973 | TemplateName Name, |
| 974 | SourceLocation NameLoc, |
| 975 | QualType ObjectType, |
| 976 | NamedDecl *FirstQualifierInScope) { |
| 977 | if (TemplateTemplateParmDecl *TTP |
| 978 | = dyn_cast_or_null<TemplateTemplateParmDecl>(Name.getAsTemplateDecl())) { |
| 979 | if (TTP->getDepth() < TemplateArgs.getNumLevels()) { |
| 980 | // If the corresponding template argument is NULL or non-existent, it's |
| 981 | // because we are performing instantiation from explicitly-specified |
| 982 | // template arguments in a function template, but there were some |
| 983 | // arguments left unspecified. |
| 984 | if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), |
| 985 | TTP->getPosition())) |
| 986 | return Name; |
| 987 | |
| 988 | TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition()); |
| 989 | |
| 990 | if (TTP->isParameterPack()) { |
| 991 | assert(Arg.getKind() == TemplateArgument::Pack && |
| 992 | "Missing argument pack"); |
| 993 | |
| 994 | if (getSema().ArgumentPackSubstitutionIndex == -1) { |
| 995 | // We have the template argument pack to substitute, but we're not |
| 996 | // actually expanding the enclosing pack expansion yet. So, just |
| 997 | // keep the entire argument pack. |
| 998 | return getSema().Context.getSubstTemplateTemplateParmPack(TTP, Arg); |
| 999 | } |
| 1000 | |
| 1001 | assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size()); |
| 1002 | Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex]; |
| 1003 | } |
| 1004 | |
| 1005 | TemplateName Template = Arg.getAsTemplate(); |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 1006 | assert(!Template.isNull() && "Null template template argument"); |
John McCall | 1460604 | 2011-06-30 08:33:18 +0000 | [diff] [blame] | 1007 | |
Douglas Gregor | 5875038 | 2011-03-05 20:06:51 +0000 | [diff] [blame] | 1008 | // We don't ever want to substitute for a qualified template name, since |
| 1009 | // the qualifier is handled separately. So, look through the qualified |
| 1010 | // template name to its underlying declaration. |
| 1011 | if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) |
| 1012 | Template = TemplateName(QTN->getTemplateDecl()); |
John McCall | 1460604 | 2011-06-30 08:33:18 +0000 | [diff] [blame] | 1013 | |
| 1014 | Template = getSema().Context.getSubstTemplateTemplateParm(TTP, Template); |
Douglas Gregor | fd4ffeb | 2011-03-02 18:07:45 +0000 | [diff] [blame] | 1015 | return Template; |
| 1016 | } |
| 1017 | } |
| 1018 | |
| 1019 | if (SubstTemplateTemplateParmPackStorage *SubstPack |
| 1020 | = Name.getAsSubstTemplateTemplateParmPack()) { |
| 1021 | if (getSema().ArgumentPackSubstitutionIndex == -1) |
| 1022 | return Name; |
| 1023 | |
| 1024 | const TemplateArgument &ArgPack = SubstPack->getArgumentPack(); |
| 1025 | assert(getSema().ArgumentPackSubstitutionIndex < (int)ArgPack.pack_size() && |
| 1026 | "Pack substitution index out-of-range"); |
| 1027 | return ArgPack.pack_begin()[getSema().ArgumentPackSubstitutionIndex] |
| 1028 | .getAsTemplate(); |
| 1029 | } |
| 1030 | |
| 1031 | return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType, |
| 1032 | FirstQualifierInScope); |
| 1033 | } |
| 1034 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1035 | ExprResult |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 1036 | TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1037 | if (!E->isTypeDependent()) |
John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 1038 | return SemaRef.Owned(E); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1039 | |
| 1040 | FunctionDecl *currentDecl = getSema().getCurFunctionDecl(); |
| 1041 | assert(currentDecl && "Must have current function declaration when " |
| 1042 | "instantiating."); |
| 1043 | |
| 1044 | PredefinedExpr::IdentType IT = E->getIdentType(); |
| 1045 | |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 1046 | unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1047 | |
| 1048 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1049 | QualType ResTy = getSema().Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1050 | ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI, |
| 1051 | ArrayType::Normal, 0); |
| 1052 | PredefinedExpr *PE = |
| 1053 | new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT); |
| 1054 | return getSema().Owned(PE); |
| 1055 | } |
| 1056 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1057 | ExprResult |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1058 | TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, |
Douglas Gregor | dcee980 | 2010-02-08 23:41:45 +0000 | [diff] [blame] | 1059 | NonTypeTemplateParmDecl *NTTP) { |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1060 | // If the corresponding template argument is NULL or non-existent, it's |
| 1061 | // because we are performing instantiation from explicitly-specified |
| 1062 | // template arguments in a function template, but there were some |
| 1063 | // arguments left unspecified. |
| 1064 | if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(), |
| 1065 | NTTP->getPosition())) |
John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 1066 | return SemaRef.Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1067 | |
Douglas Gregor | 56bc983 | 2010-12-24 00:15:10 +0000 | [diff] [blame] | 1068 | TemplateArgument Arg = TemplateArgs(NTTP->getDepth(), NTTP->getPosition()); |
| 1069 | if (NTTP->isParameterPack()) { |
| 1070 | assert(Arg.getKind() == TemplateArgument::Pack && |
| 1071 | "Missing argument pack"); |
| 1072 | |
| 1073 | if (getSema().ArgumentPackSubstitutionIndex == -1) { |
Douglas Gregor | c7793c7 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 1074 | // We have an argument pack, but we can't select a particular argument |
| 1075 | // out of it yet. Therefore, we'll build an expression to hold on to that |
| 1076 | // argument pack. |
| 1077 | QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, |
| 1078 | E->getLocation(), |
| 1079 | NTTP->getDeclName()); |
| 1080 | if (TargetType.isNull()) |
| 1081 | return ExprError(); |
| 1082 | |
| 1083 | return new (SemaRef.Context) SubstNonTypeTemplateParmPackExpr(TargetType, |
| 1084 | NTTP, |
| 1085 | E->getLocation(), |
| 1086 | Arg); |
Douglas Gregor | 56bc983 | 2010-12-24 00:15:10 +0000 | [diff] [blame] | 1087 | } |
| 1088 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 1089 | assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size()); |
Douglas Gregor | 56bc983 | 2010-12-24 00:15:10 +0000 | [diff] [blame] | 1090 | Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex]; |
| 1091 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1092 | |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1093 | return transformNonTypeTemplateParmRef(NTTP, E->getLocation(), Arg); |
| 1094 | } |
| 1095 | |
| 1096 | ExprResult TemplateInstantiator::transformNonTypeTemplateParmRef( |
| 1097 | NonTypeTemplateParmDecl *parm, |
| 1098 | SourceLocation loc, |
| 1099 | const TemplateArgument &arg) { |
| 1100 | ExprResult result; |
| 1101 | QualType type; |
| 1102 | |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1103 | // The template argument itself might be an expression, in which |
| 1104 | // case we just return that expression. |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1105 | if (arg.getKind() == TemplateArgument::Expression) { |
| 1106 | Expr *argExpr = arg.getAsExpr(); |
| 1107 | result = SemaRef.Owned(argExpr); |
| 1108 | type = argExpr->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1109 | |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1110 | } else if (arg.getKind() == TemplateArgument::Declaration) { |
| 1111 | ValueDecl *VD = cast<ValueDecl>(arg.getAsDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1112 | |
John McCall | 645cf44 | 2010-02-06 10:23:53 +0000 | [diff] [blame] | 1113 | // Find the instantiation of the template argument. This is |
| 1114 | // required for nested templates. |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1115 | VD = cast_or_null<ValueDecl>( |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1116 | getSema().FindInstantiatedDecl(loc, VD, TemplateArgs)); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1117 | if (!VD) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1118 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1119 | |
John McCall | 645cf44 | 2010-02-06 10:23:53 +0000 | [diff] [blame] | 1120 | // Derive the type we want the substituted decl to have. This had |
| 1121 | // better be non-dependent, or these checks will have serious problems. |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1122 | if (parm->isExpandedParameterPack()) { |
| 1123 | type = parm->getExpansionType(SemaRef.ArgumentPackSubstitutionIndex); |
| 1124 | } else if (parm->isParameterPack() && |
| 1125 | isa<PackExpansionType>(parm->getType())) { |
| 1126 | type = SemaRef.SubstType( |
| 1127 | cast<PackExpansionType>(parm->getType())->getPattern(), |
| 1128 | TemplateArgs, loc, parm->getDeclName()); |
| 1129 | } else { |
| 1130 | type = SemaRef.SubstType(parm->getType(), TemplateArgs, |
| 1131 | loc, parm->getDeclName()); |
| 1132 | } |
| 1133 | assert(!type.isNull() && "type substitution failed for param type"); |
| 1134 | assert(!type->isDependentType() && "param type still dependent"); |
| 1135 | result = SemaRef.BuildExpressionFromDeclTemplateArgument(arg, type, loc); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1136 | |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1137 | if (!result.isInvalid()) type = result.get()->getType(); |
| 1138 | } else { |
| 1139 | result = SemaRef.BuildExpressionFromIntegralTemplateArgument(arg, loc); |
| 1140 | |
| 1141 | // Note that this type can be different from the type of 'result', |
| 1142 | // e.g. if it's an enum type. |
| 1143 | type = arg.getIntegralType(); |
| 1144 | } |
| 1145 | if (result.isInvalid()) return ExprError(); |
| 1146 | |
| 1147 | Expr *resultExpr = result.take(); |
| 1148 | return SemaRef.Owned(new (SemaRef.Context) |
| 1149 | SubstNonTypeTemplateParmExpr(type, |
| 1150 | resultExpr->getValueKind(), |
| 1151 | loc, parm, resultExpr)); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1152 | } |
| 1153 | |
Douglas Gregor | c7793c7 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 1154 | ExprResult |
| 1155 | TemplateInstantiator::TransformSubstNonTypeTemplateParmPackExpr( |
| 1156 | SubstNonTypeTemplateParmPackExpr *E) { |
| 1157 | if (getSema().ArgumentPackSubstitutionIndex == -1) { |
| 1158 | // We aren't expanding the parameter pack, so just return ourselves. |
| 1159 | return getSema().Owned(E); |
| 1160 | } |
| 1161 | |
Douglas Gregor | c7793c7 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 1162 | const TemplateArgument &ArgPack = E->getArgumentPack(); |
| 1163 | unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex; |
| 1164 | assert(Index < ArgPack.pack_size() && "Substitution index out-of-range"); |
| 1165 | |
| 1166 | const TemplateArgument &Arg = ArgPack.pack_begin()[Index]; |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1167 | return transformNonTypeTemplateParmRef(E->getParameterPack(), |
| 1168 | E->getParameterPackLocation(), |
| 1169 | Arg); |
Douglas Gregor | c7793c7 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 1170 | } |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1171 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1172 | ExprResult |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 1173 | TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) { |
| 1174 | NamedDecl *D = E->getDecl(); |
| 1175 | if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) { |
| 1176 | if (NTTP->getDepth() < TemplateArgs.getNumLevels()) |
| 1177 | return TransformTemplateParmRefExpr(E, NTTP); |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 1178 | |
| 1179 | // We have a non-type template parameter that isn't fully substituted; |
| 1180 | // FindInstantiatedDecl will find it in the local instantiation scope. |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 1181 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1182 | |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 1183 | return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E); |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1186 | ExprResult TemplateInstantiator::TransformCXXDefaultArgExpr( |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 1187 | CXXDefaultArgExpr *E) { |
Sebastian Redl | a29e51b | 2009-11-08 13:56:19 +0000 | [diff] [blame] | 1188 | assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())-> |
| 1189 | getDescribedFunctionTemplate() && |
| 1190 | "Default arg expressions are never formed in dependent cases."); |
Douglas Gregor | 036aed1 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 1191 | return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(), |
| 1192 | cast<FunctionDecl>(E->getParam()->getDeclContext()), |
| 1193 | E->getParam()); |
Sebastian Redl | a29e51b | 2009-11-08 13:56:19 +0000 | [diff] [blame] | 1194 | } |
| 1195 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 1196 | QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 1197 | FunctionProtoTypeLoc TL) { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 1198 | // We need a local instantiation scope for this function prototype. |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1199 | LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true); |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 1200 | return inherited::TransformFunctionProtoType(TLB, TL); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | ParmVarDecl * |
Douglas Gregor | 6a24bfd | 2011-01-14 22:40:04 +0000 | [diff] [blame] | 1204 | TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm, |
John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 1205 | int indexAdjustment, |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 1206 | llvm::Optional<unsigned> NumExpansions, |
| 1207 | bool ExpectParameterPack) { |
John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 1208 | return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs, indexAdjustment, |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 1209 | NumExpansions, ExpectParameterPack); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 1210 | } |
| 1211 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1212 | QualType |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 1213 | TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 1214 | TemplateTypeParmTypeLoc TL) { |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1215 | const TemplateTypeParmType *T = TL.getTypePtr(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1216 | if (T->getDepth() < TemplateArgs.getNumLevels()) { |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1217 | // Replace the template type parameter with its corresponding |
| 1218 | // template argument. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1219 | |
| 1220 | // If the corresponding template argument is NULL or doesn't exist, it's |
| 1221 | // because we are performing instantiation from explicitly-specified |
| 1222 | // template arguments in a function template class, but there were some |
Douglas Gregor | 16134c6 | 2009-07-01 00:28:38 +0000 | [diff] [blame] | 1223 | // arguments left unspecified. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 1224 | if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) { |
| 1225 | TemplateTypeParmTypeLoc NewTL |
| 1226 | = TLB.push<TemplateTypeParmTypeLoc>(TL.getType()); |
| 1227 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1228 | return TL.getType(); |
| 1229 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1230 | |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 1231 | TemplateArgument Arg = TemplateArgs(T->getDepth(), T->getIndex()); |
| 1232 | |
| 1233 | if (T->isParameterPack()) { |
| 1234 | assert(Arg.getKind() == TemplateArgument::Pack && |
| 1235 | "Missing argument pack"); |
| 1236 | |
| 1237 | if (getSema().ArgumentPackSubstitutionIndex == -1) { |
Douglas Gregor | c3069d6 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 1238 | // We have the template argument pack, but we're not expanding the |
| 1239 | // enclosing pack expansion yet. Just save the template argument |
| 1240 | // pack for later substitution. |
| 1241 | QualType Result |
| 1242 | = getSema().Context.getSubstTemplateTypeParmPackType(T, Arg); |
| 1243 | SubstTemplateTypeParmPackTypeLoc NewTL |
| 1244 | = TLB.push<SubstTemplateTypeParmPackTypeLoc>(Result); |
| 1245 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1246 | return Result; |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 1247 | } |
| 1248 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 1249 | assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size()); |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 1250 | Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex]; |
| 1251 | } |
| 1252 | |
| 1253 | assert(Arg.getKind() == TemplateArgument::Type && |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1254 | "Template argument kind mismatch"); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1255 | |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 1256 | QualType Replacement = Arg.getAsType(); |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 1257 | |
| 1258 | // TODO: only do this uniquing once, at the start of instantiation. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 1259 | QualType Result |
| 1260 | = getSema().Context.getSubstTemplateTypeParmType(T, Replacement); |
| 1261 | SubstTemplateTypeParmTypeLoc NewTL |
| 1262 | = TLB.push<SubstTemplateTypeParmTypeLoc>(Result); |
| 1263 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1264 | return Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1265 | } |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1266 | |
| 1267 | // The template type parameter comes from an inner template (e.g., |
| 1268 | // the template parameter list of a member template inside the |
| 1269 | // template we are instantiating). Create a new template type |
| 1270 | // parameter with the template "level" reduced by one. |
Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 1271 | TemplateTypeParmDecl *NewTTPDecl = 0; |
| 1272 | if (TemplateTypeParmDecl *OldTTPDecl = T->getDecl()) |
| 1273 | NewTTPDecl = cast_or_null<TemplateTypeParmDecl>( |
| 1274 | TransformDecl(TL.getNameLoc(), OldTTPDecl)); |
| 1275 | |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 1276 | QualType Result |
| 1277 | = getSema().Context.getTemplateTypeParmType(T->getDepth() |
| 1278 | - TemplateArgs.getNumLevels(), |
| 1279 | T->getIndex(), |
| 1280 | T->isParameterPack(), |
Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 1281 | NewTTPDecl); |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 1282 | TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result); |
| 1283 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1284 | return Result; |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 1285 | } |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1286 | |
Douglas Gregor | c3069d6 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 1287 | QualType |
| 1288 | TemplateInstantiator::TransformSubstTemplateTypeParmPackType( |
| 1289 | TypeLocBuilder &TLB, |
| 1290 | SubstTemplateTypeParmPackTypeLoc TL) { |
| 1291 | if (getSema().ArgumentPackSubstitutionIndex == -1) { |
| 1292 | // We aren't expanding the parameter pack, so just return ourselves. |
| 1293 | SubstTemplateTypeParmPackTypeLoc NewTL |
| 1294 | = TLB.push<SubstTemplateTypeParmPackTypeLoc>(TL.getType()); |
| 1295 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1296 | return TL.getType(); |
| 1297 | } |
| 1298 | |
| 1299 | const TemplateArgument &ArgPack = TL.getTypePtr()->getArgumentPack(); |
| 1300 | unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex; |
| 1301 | assert(Index < ArgPack.pack_size() && "Substitution index out-of-range"); |
| 1302 | |
| 1303 | QualType Result = ArgPack.pack_begin()[Index].getAsType(); |
| 1304 | Result = getSema().Context.getSubstTemplateTypeParmType( |
| 1305 | TL.getTypePtr()->getReplacedParameter(), |
| 1306 | Result); |
| 1307 | SubstTemplateTypeParmTypeLoc NewTL |
| 1308 | = TLB.push<SubstTemplateTypeParmTypeLoc>(Result); |
| 1309 | NewTL.setNameLoc(TL.getNameLoc()); |
| 1310 | return Result; |
| 1311 | } |
| 1312 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1313 | /// \brief Perform substitution on the type T with a given set of template |
| 1314 | /// arguments. |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1315 | /// |
| 1316 | /// This routine substitutes the given template arguments into the |
| 1317 | /// type T and produces the instantiated type. |
| 1318 | /// |
| 1319 | /// \param T the type into which the template arguments will be |
| 1320 | /// substituted. If this type is not dependent, it will be returned |
| 1321 | /// immediately. |
| 1322 | /// |
| 1323 | /// \param TemplateArgs the template arguments that will be |
| 1324 | /// substituted for the top-level template parameters within T. |
| 1325 | /// |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1326 | /// \param Loc the location in the source code where this substitution |
| 1327 | /// is being performed. It will typically be the location of the |
| 1328 | /// declarator (if we're instantiating the type of some declaration) |
| 1329 | /// or the location of the type in the source code (if, e.g., we're |
| 1330 | /// instantiating the type of a cast expression). |
| 1331 | /// |
| 1332 | /// \param Entity the name of the entity associated with a declaration |
| 1333 | /// being instantiated (if any). May be empty to indicate that there |
| 1334 | /// is no such entity (if, e.g., this is a type that occurs as part of |
| 1335 | /// a cast expression) or that the entity has no name (e.g., an |
| 1336 | /// unnamed function parameter). |
| 1337 | /// |
| 1338 | /// \returns If the instantiation succeeds, the instantiated |
| 1339 | /// type. Otherwise, produces diagnostics and returns a NULL type. |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1340 | TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T, |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 1341 | const MultiLevelTemplateArgumentList &Args, |
| 1342 | SourceLocation Loc, |
| 1343 | DeclarationName Entity) { |
| 1344 | assert(!ActiveTemplateInstantiations.empty() && |
| 1345 | "Cannot perform an instantiation without some context on the " |
| 1346 | "instantiation stack"); |
| 1347 | |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1348 | if (!T->getType()->isInstantiationDependentType() && |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 1349 | !T->getType()->isVariablyModifiedType()) |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 1350 | return T; |
| 1351 | |
| 1352 | TemplateInstantiator Instantiator(*this, Args, Loc, Entity); |
| 1353 | return Instantiator.TransformType(T); |
| 1354 | } |
| 1355 | |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1356 | TypeSourceInfo *Sema::SubstType(TypeLoc TL, |
| 1357 | const MultiLevelTemplateArgumentList &Args, |
| 1358 | SourceLocation Loc, |
| 1359 | DeclarationName Entity) { |
| 1360 | assert(!ActiveTemplateInstantiations.empty() && |
| 1361 | "Cannot perform an instantiation without some context on the " |
| 1362 | "instantiation stack"); |
| 1363 | |
| 1364 | if (TL.getType().isNull()) |
| 1365 | return 0; |
| 1366 | |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1367 | if (!TL.getType()->isInstantiationDependentType() && |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1368 | !TL.getType()->isVariablyModifiedType()) { |
| 1369 | // FIXME: Make a copy of the TypeLoc data here, so that we can |
| 1370 | // return a new TypeSourceInfo. Inefficient! |
| 1371 | TypeLocBuilder TLB; |
| 1372 | TLB.pushFullCopy(TL); |
| 1373 | return TLB.getTypeSourceInfo(Context, TL.getType()); |
| 1374 | } |
| 1375 | |
| 1376 | TemplateInstantiator Instantiator(*this, Args, Loc, Entity); |
| 1377 | TypeLocBuilder TLB; |
| 1378 | TLB.reserve(TL.getFullDataSize()); |
| 1379 | QualType Result = Instantiator.TransformType(TLB, TL); |
| 1380 | if (Result.isNull()) |
| 1381 | return 0; |
| 1382 | |
| 1383 | return TLB.getTypeSourceInfo(Context, Result); |
| 1384 | } |
| 1385 | |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 1386 | /// Deprecated form of the above. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1387 | QualType Sema::SubstType(QualType T, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1388 | const MultiLevelTemplateArgumentList &TemplateArgs, |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1389 | SourceLocation Loc, DeclarationName Entity) { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 1390 | assert(!ActiveTemplateInstantiations.empty() && |
| 1391 | "Cannot perform an instantiation without some context on the " |
| 1392 | "instantiation stack"); |
| 1393 | |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 1394 | // If T is not a dependent type or a variably-modified type, there |
| 1395 | // is nothing to do. |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1396 | if (!T->isInstantiationDependentType() && !T->isVariablyModifiedType()) |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1397 | return T; |
| 1398 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 1399 | TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity); |
| 1400 | return Instantiator.TransformType(T); |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 1401 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1402 | |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1403 | static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) { |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1404 | if (T->getType()->isInstantiationDependentType() || |
| 1405 | T->getType()->isVariablyModifiedType()) |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1406 | return true; |
| 1407 | |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 1408 | TypeLoc TL = T->getTypeLoc().IgnoreParens(); |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1409 | if (!isa<FunctionProtoTypeLoc>(TL)) |
| 1410 | return false; |
| 1411 | |
| 1412 | FunctionProtoTypeLoc FP = cast<FunctionProtoTypeLoc>(TL); |
| 1413 | for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) { |
| 1414 | ParmVarDecl *P = FP.getArg(I); |
| 1415 | |
Douglas Gregor | c056c17 | 2011-05-09 20:45:16 +0000 | [diff] [blame] | 1416 | // The parameter's type as written might be dependent even if the |
| 1417 | // decayed type was not dependent. |
| 1418 | if (TypeSourceInfo *TSInfo = P->getTypeSourceInfo()) |
Douglas Gregor | 561f812 | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 1419 | if (TSInfo->getType()->isInstantiationDependentType()) |
Douglas Gregor | c056c17 | 2011-05-09 20:45:16 +0000 | [diff] [blame] | 1420 | return true; |
| 1421 | |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1422 | // TODO: currently we always rebuild expressions. When we |
| 1423 | // properly get lazier about this, we should use the same |
| 1424 | // logic to avoid rebuilding prototypes here. |
Douglas Gregor | 7b1cf30 | 2011-01-05 21:14:17 +0000 | [diff] [blame] | 1425 | if (P->hasDefaultArg()) |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1426 | return true; |
| 1427 | } |
| 1428 | |
| 1429 | return false; |
| 1430 | } |
| 1431 | |
| 1432 | /// A form of SubstType intended specifically for instantiating the |
| 1433 | /// type of a FunctionDecl. Its purpose is solely to force the |
| 1434 | /// instantiation of default-argument expressions. |
| 1435 | TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T, |
| 1436 | const MultiLevelTemplateArgumentList &Args, |
| 1437 | SourceLocation Loc, |
| 1438 | DeclarationName Entity) { |
| 1439 | assert(!ActiveTemplateInstantiations.empty() && |
| 1440 | "Cannot perform an instantiation without some context on the " |
| 1441 | "instantiation stack"); |
| 1442 | |
| 1443 | if (!NeedsInstantiationAsFunctionType(T)) |
| 1444 | return T; |
| 1445 | |
| 1446 | TemplateInstantiator Instantiator(*this, Args, Loc, Entity); |
| 1447 | |
| 1448 | TypeLocBuilder TLB; |
| 1449 | |
| 1450 | TypeLoc TL = T->getTypeLoc(); |
| 1451 | TLB.reserve(TL.getFullDataSize()); |
| 1452 | |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 1453 | QualType Result = Instantiator.TransformType(TLB, TL); |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1454 | if (Result.isNull()) |
| 1455 | return 0; |
| 1456 | |
| 1457 | return TLB.getTypeSourceInfo(Context, Result); |
| 1458 | } |
| 1459 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1460 | ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm, |
Douglas Gregor | 6a24bfd | 2011-01-14 22:40:04 +0000 | [diff] [blame] | 1461 | const MultiLevelTemplateArgumentList &TemplateArgs, |
John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 1462 | int indexAdjustment, |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 1463 | llvm::Optional<unsigned> NumExpansions, |
| 1464 | bool ExpectParameterPack) { |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1465 | TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo(); |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1466 | TypeSourceInfo *NewDI = 0; |
| 1467 | |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1468 | TypeLoc OldTL = OldDI->getTypeLoc(); |
| 1469 | if (isa<PackExpansionTypeLoc>(OldTL)) { |
| 1470 | PackExpansionTypeLoc ExpansionTL = cast<PackExpansionTypeLoc>(OldTL); |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1471 | |
| 1472 | // We have a function parameter pack. Substitute into the pattern of the |
| 1473 | // expansion. |
| 1474 | NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, |
| 1475 | OldParm->getLocation(), OldParm->getDeclName()); |
| 1476 | if (!NewDI) |
| 1477 | return 0; |
| 1478 | |
| 1479 | if (NewDI->getType()->containsUnexpandedParameterPack()) { |
| 1480 | // We still have unexpanded parameter packs, which means that |
| 1481 | // our function parameter is still a function parameter pack. |
| 1482 | // Therefore, make its type a pack expansion type. |
Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 1483 | NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), |
Douglas Gregor | 6a24bfd | 2011-01-14 22:40:04 +0000 | [diff] [blame] | 1484 | NumExpansions); |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 1485 | } else if (ExpectParameterPack) { |
| 1486 | // We expected to get a parameter pack but didn't (because the type |
| 1487 | // itself is not a pack expansion type), so complain. This can occur when |
| 1488 | // the substitution goes through an alias template that "loses" the |
| 1489 | // pack expansion. |
| 1490 | Diag(OldParm->getLocation(), |
| 1491 | diag::err_function_parameter_pack_without_parameter_packs) |
| 1492 | << NewDI->getType(); |
| 1493 | return 0; |
| 1494 | } |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1495 | } else { |
| 1496 | NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), |
| 1497 | OldParm->getDeclName()); |
| 1498 | } |
| 1499 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1500 | if (!NewDI) |
| 1501 | return 0; |
| 1502 | |
| 1503 | if (NewDI->getType()->isVoidType()) { |
| 1504 | Diag(OldParm->getLocation(), diag::err_param_with_void_type); |
| 1505 | return 0; |
| 1506 | } |
| 1507 | |
| 1508 | ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1509 | OldParm->getInnerLocStart(), |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1510 | OldParm->getLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1511 | OldParm->getIdentifier(), |
| 1512 | NewDI->getType(), NewDI, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1513 | OldParm->getStorageClass(), |
| 1514 | OldParm->getStorageClassAsWritten()); |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1515 | if (!NewParm) |
| 1516 | return 0; |
Douglas Gregor | 4469e8a | 2010-05-19 17:02:24 +0000 | [diff] [blame] | 1517 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1518 | // Mark the (new) default argument as uninstantiated (if any). |
| 1519 | if (OldParm->hasUninstantiatedDefaultArg()) { |
| 1520 | Expr *Arg = OldParm->getUninstantiatedDefaultArg(); |
| 1521 | NewParm->setUninstantiatedDefaultArg(Arg); |
Douglas Gregor | 8cfb7a3 | 2010-10-12 18:23:32 +0000 | [diff] [blame] | 1522 | } else if (OldParm->hasUnparsedDefaultArg()) { |
| 1523 | NewParm->setUnparsedDefaultArg(); |
| 1524 | UnparsedDefaultArgInstantiations[OldParm].push_back(NewParm); |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1525 | } else if (Expr *Arg = OldParm->getDefaultArg()) |
| 1526 | NewParm->setUninstantiatedDefaultArg(Arg); |
| 1527 | |
| 1528 | NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg()); |
Douglas Gregor | d1bb4ae | 2012-01-25 16:15:54 +0000 | [diff] [blame] | 1529 | |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 1530 | if (OldParm->isParameterPack() && !NewParm->isParameterPack()) { |
Richard Smith | c0536c8 | 2012-01-25 02:14:59 +0000 | [diff] [blame] | 1531 | // Add the new parameter to the instantiated parameter pack. |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 1532 | CurrentInstantiationScope->InstantiatedLocalPackArg(OldParm, NewParm); |
| 1533 | } else { |
| 1534 | // Introduce an Old -> New mapping |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1535 | CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm); |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 1536 | } |
Douglas Gregor | 603cfb4 | 2011-01-05 23:12:31 +0000 | [diff] [blame] | 1537 | |
Argyrios Kyrtzidis | e3041be | 2010-07-19 10:14:41 +0000 | [diff] [blame] | 1538 | // FIXME: OldParm may come from a FunctionProtoType, in which case CurContext |
| 1539 | // can be anything, is this right ? |
Fariborz Jahanian | 55a17c0 | 2010-07-13 21:05:02 +0000 | [diff] [blame] | 1540 | NewParm->setDeclContext(CurContext); |
John McCall | fb44de9 | 2011-05-01 22:35:37 +0000 | [diff] [blame] | 1541 | |
| 1542 | NewParm->setScopeInfo(OldParm->getFunctionScopeDepth(), |
| 1543 | OldParm->getFunctionScopeIndex() + indexAdjustment); |
Fariborz Jahanian | e7ffbe2 | 2010-07-13 20:05:58 +0000 | [diff] [blame] | 1544 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1545 | return NewParm; |
| 1546 | } |
| 1547 | |
Douglas Gregor | a009b59 | 2011-01-07 00:20:55 +0000 | [diff] [blame] | 1548 | /// \brief Substitute the given template arguments into the given set of |
| 1549 | /// parameters, producing the set of parameter types that would be generated |
| 1550 | /// from such a substitution. |
| 1551 | bool Sema::SubstParmTypes(SourceLocation Loc, |
| 1552 | ParmVarDecl **Params, unsigned NumParams, |
| 1553 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1554 | SmallVectorImpl<QualType> &ParamTypes, |
| 1555 | SmallVectorImpl<ParmVarDecl *> *OutParams) { |
Douglas Gregor | a009b59 | 2011-01-07 00:20:55 +0000 | [diff] [blame] | 1556 | assert(!ActiveTemplateInstantiations.empty() && |
| 1557 | "Cannot perform an instantiation without some context on the " |
| 1558 | "instantiation stack"); |
| 1559 | |
| 1560 | TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, |
| 1561 | DeclarationName()); |
| 1562 | return Instantiator.TransformFunctionTypeParams(Loc, Params, NumParams, 0, |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 1563 | ParamTypes, OutParams); |
Douglas Gregor | a009b59 | 2011-01-07 00:20:55 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1566 | /// \brief Perform substitution on the base class specifiers of the |
| 1567 | /// given class template specialization. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1568 | /// |
| 1569 | /// Produces a diagnostic and returns true on error, returns false and |
| 1570 | /// attaches the instantiated base classes to the class template |
| 1571 | /// specialization if successful. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1572 | bool |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1573 | Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation, |
| 1574 | CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1575 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1576 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1577 | SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1578 | for (ClassTemplateSpecializationDecl::base_class_iterator |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1579 | Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end(); |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 1580 | Base != BaseEnd; ++Base) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1581 | if (!Base->getType()->isDependentType()) { |
Fariborz Jahanian | 71c6e71 | 2009-07-22 17:41:53 +0000 | [diff] [blame] | 1582 | InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base)); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1583 | continue; |
| 1584 | } |
| 1585 | |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1586 | SourceLocation EllipsisLoc; |
Douglas Gregor | 406f98f | 2011-03-02 02:04:06 +0000 | [diff] [blame] | 1587 | TypeSourceInfo *BaseTypeLoc; |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1588 | if (Base->isPackExpansion()) { |
| 1589 | // This is a pack expansion. See whether we should expand it now, or |
| 1590 | // wait until later. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1591 | SmallVector<UnexpandedParameterPack, 2> Unexpanded; |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1592 | collectUnexpandedParameterPacks(Base->getTypeSourceInfo()->getTypeLoc(), |
| 1593 | Unexpanded); |
| 1594 | bool ShouldExpand = false; |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 1595 | bool RetainExpansion = false; |
Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 1596 | llvm::Optional<unsigned> NumExpansions; |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1597 | if (CheckParameterPacksForExpansion(Base->getEllipsisLoc(), |
| 1598 | Base->getSourceRange(), |
David Blaikie | a71f9d0 | 2011-09-22 02:34:54 +0000 | [diff] [blame] | 1599 | Unexpanded, |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1600 | TemplateArgs, ShouldExpand, |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 1601 | RetainExpansion, |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1602 | NumExpansions)) { |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1603 | Invalid = true; |
Douglas Gregor | 3fb9e4b | 2011-01-04 00:32:56 +0000 | [diff] [blame] | 1604 | continue; |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | // If we should expand this pack expansion now, do so. |
| 1608 | if (ShouldExpand) { |
Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 1609 | for (unsigned I = 0; I != *NumExpansions; ++I) { |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1610 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I); |
| 1611 | |
| 1612 | TypeSourceInfo *BaseTypeLoc = SubstType(Base->getTypeSourceInfo(), |
| 1613 | TemplateArgs, |
| 1614 | Base->getSourceRange().getBegin(), |
| 1615 | DeclarationName()); |
| 1616 | if (!BaseTypeLoc) { |
| 1617 | Invalid = true; |
| 1618 | continue; |
| 1619 | } |
| 1620 | |
| 1621 | if (CXXBaseSpecifier *InstantiatedBase |
| 1622 | = CheckBaseSpecifier(Instantiation, |
| 1623 | Base->getSourceRange(), |
| 1624 | Base->isVirtual(), |
| 1625 | Base->getAccessSpecifierAsWritten(), |
| 1626 | BaseTypeLoc, |
| 1627 | SourceLocation())) |
| 1628 | InstantiatedBases.push_back(InstantiatedBase); |
| 1629 | else |
| 1630 | Invalid = true; |
| 1631 | } |
| 1632 | |
| 1633 | continue; |
| 1634 | } |
| 1635 | |
| 1636 | // The resulting base specifier will (still) be a pack expansion. |
| 1637 | EllipsisLoc = Base->getEllipsisLoc(); |
Douglas Gregor | 406f98f | 2011-03-02 02:04:06 +0000 | [diff] [blame] | 1638 | Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, -1); |
| 1639 | BaseTypeLoc = SubstType(Base->getTypeSourceInfo(), |
| 1640 | TemplateArgs, |
| 1641 | Base->getSourceRange().getBegin(), |
| 1642 | DeclarationName()); |
| 1643 | } else { |
| 1644 | BaseTypeLoc = SubstType(Base->getTypeSourceInfo(), |
| 1645 | TemplateArgs, |
| 1646 | Base->getSourceRange().getBegin(), |
| 1647 | DeclarationName()); |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 1650 | if (!BaseTypeLoc) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1651 | Invalid = true; |
| 1652 | continue; |
| 1653 | } |
| 1654 | |
| 1655 | if (CXXBaseSpecifier *InstantiatedBase |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1656 | = CheckBaseSpecifier(Instantiation, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1657 | Base->getSourceRange(), |
| 1658 | Base->isVirtual(), |
| 1659 | Base->getAccessSpecifierAsWritten(), |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1660 | BaseTypeLoc, |
| 1661 | EllipsisLoc)) |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1662 | InstantiatedBases.push_back(InstantiatedBase); |
| 1663 | else |
| 1664 | Invalid = true; |
| 1665 | } |
| 1666 | |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 1667 | if (!Invalid && |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1668 | AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(), |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1669 | InstantiatedBases.size())) |
| 1670 | Invalid = true; |
| 1671 | |
| 1672 | return Invalid; |
| 1673 | } |
| 1674 | |
DeLesley Hutchins | 23323e0 | 2012-01-20 22:50:54 +0000 | [diff] [blame] | 1675 | // Defined via #include from SemaTemplateInstantiateDecl.cpp |
Benjamin Kramer | 5bbc385 | 2012-02-06 11:13:08 +0000 | [diff] [blame] | 1676 | namespace clang { |
| 1677 | namespace sema { |
| 1678 | Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, Sema &S, |
| 1679 | const MultiLevelTemplateArgumentList &TemplateArgs); |
| 1680 | } |
| 1681 | } |
DeLesley Hutchins | 23323e0 | 2012-01-20 22:50:54 +0000 | [diff] [blame] | 1682 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1683 | /// \brief Instantiate the definition of a class from a given pattern. |
| 1684 | /// |
| 1685 | /// \param PointOfInstantiation The point of instantiation within the |
| 1686 | /// source code. |
| 1687 | /// |
| 1688 | /// \param Instantiation is the declaration whose definition is being |
| 1689 | /// instantiated. This will be either a class template specialization |
| 1690 | /// or a member class of a class template specialization. |
| 1691 | /// |
| 1692 | /// \param Pattern is the pattern from which the instantiation |
| 1693 | /// occurs. This will be either the declaration of a class template or |
| 1694 | /// the declaration of a member class of a class template. |
| 1695 | /// |
| 1696 | /// \param TemplateArgs The template arguments to be substituted into |
| 1697 | /// the pattern. |
| 1698 | /// |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1699 | /// \param TSK the kind of implicit or explicit instantiation to perform. |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1700 | /// |
| 1701 | /// \param Complain whether to complain if the class cannot be instantiated due |
| 1702 | /// to the lack of a definition. |
| 1703 | /// |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1704 | /// \returns true if an error occurred, false otherwise. |
| 1705 | bool |
| 1706 | Sema::InstantiateClass(SourceLocation PointOfInstantiation, |
| 1707 | CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1708 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1709 | TemplateSpecializationKind TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1710 | bool Complain) { |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1711 | bool Invalid = false; |
John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1712 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1713 | CXXRecordDecl *PatternDef |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 1714 | = cast_or_null<CXXRecordDecl>(Pattern->getDefinition()); |
John McCall | d46a112 | 2011-04-27 06:46:31 +0000 | [diff] [blame] | 1715 | if (!PatternDef || PatternDef->isBeingDefined()) { |
| 1716 | if (!Complain || (PatternDef && PatternDef->isInvalidDecl())) { |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1717 | // Say nothing |
John McCall | d46a112 | 2011-04-27 06:46:31 +0000 | [diff] [blame] | 1718 | } else if (PatternDef) { |
| 1719 | assert(PatternDef->isBeingDefined()); |
| 1720 | Diag(PointOfInstantiation, |
| 1721 | diag::err_template_instantiate_within_definition) |
| 1722 | << (TSK != TSK_ImplicitInstantiation) |
| 1723 | << Context.getTypeDeclType(Instantiation); |
| 1724 | // Not much point in noting the template declaration here, since |
| 1725 | // we're lexically inside it. |
| 1726 | Instantiation->setInvalidDecl(); |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1727 | } else if (Pattern == Instantiation->getInstantiatedFromMemberClass()) { |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1728 | Diag(PointOfInstantiation, |
| 1729 | diag::err_implicit_instantiate_member_undefined) |
| 1730 | << Context.getTypeDeclType(Instantiation); |
| 1731 | Diag(Pattern->getLocation(), diag::note_member_of_template_here); |
| 1732 | } else { |
Douglas Gregor | 93dfdb1 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 1733 | Diag(PointOfInstantiation, diag::err_template_instantiate_undefined) |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1734 | << (TSK != TSK_ImplicitInstantiation) |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1735 | << Context.getTypeDeclType(Instantiation); |
| 1736 | Diag(Pattern->getLocation(), diag::note_template_decl_here); |
| 1737 | } |
Nico Weber | c7feca0 | 2011-12-20 20:32:49 +0000 | [diff] [blame] | 1738 | |
| 1739 | // In general, Instantiation isn't marked invalid to get more than one |
| 1740 | // error for multiple undefined instantiations. But the code that does |
| 1741 | // explicit declaration -> explicit definition conversion can't handle |
| 1742 | // invalid declarations, so mark as invalid in that case. |
| 1743 | if (TSK == TSK_ExplicitInstantiationDeclaration) |
| 1744 | Instantiation->setInvalidDecl(); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1745 | return true; |
| 1746 | } |
| 1747 | Pattern = PatternDef; |
| 1748 | |
Douglas Gregor | 454885e | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 1749 | // \brief Record the point of instantiation. |
| 1750 | if (MemberSpecializationInfo *MSInfo |
| 1751 | = Instantiation->getMemberSpecializationInfo()) { |
| 1752 | MSInfo->setTemplateSpecializationKind(TSK); |
| 1753 | MSInfo->setPointOfInstantiation(PointOfInstantiation); |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1754 | } else if (ClassTemplateSpecializationDecl *Spec |
Nico Weber | c7feca0 | 2011-12-20 20:32:49 +0000 | [diff] [blame] | 1755 | = dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) { |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1756 | Spec->setTemplateSpecializationKind(TSK); |
| 1757 | Spec->setPointOfInstantiation(PointOfInstantiation); |
Douglas Gregor | 454885e | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 1758 | } |
| 1759 | |
Douglas Gregor | d048bb7 | 2009-03-25 21:23:52 +0000 | [diff] [blame] | 1760 | InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1761 | if (Inst) |
| 1762 | return true; |
| 1763 | |
| 1764 | // Enter the scope of this instantiation. We don't use |
| 1765 | // PushDeclContext because we don't have a scope. |
John McCall | f581382 | 2010-04-29 00:35:03 +0000 | [diff] [blame] | 1766 | ContextRAII SavedContext(*this, Instantiation); |
Douglas Gregor | 9679caf | 2010-05-12 17:27:19 +0000 | [diff] [blame] | 1767 | EnterExpressionEvaluationContext EvalContext(*this, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1768 | Sema::PotentiallyEvaluated); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1769 | |
Douglas Gregor | 05030bb | 2010-03-24 01:33:17 +0000 | [diff] [blame] | 1770 | // If this is an instantiation of a local class, merge this local |
| 1771 | // instantiation scope with the enclosing scope. Otherwise, every |
| 1772 | // instantiation of a class has its own local instantiation scope. |
| 1773 | bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod(); |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1774 | LocalInstantiationScope Scope(*this, MergeWithParentScope); |
Douglas Gregor | 05030bb | 2010-03-24 01:33:17 +0000 | [diff] [blame] | 1775 | |
John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 1776 | // Pull attributes from the pattern onto the instantiation. |
| 1777 | InstantiateAttrs(TemplateArgs, Pattern, Instantiation); |
| 1778 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1779 | // Start the definition of this instantiation. |
| 1780 | Instantiation->startDefinition(); |
Douglas Gregor | 13c8577 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 1781 | |
| 1782 | Instantiation->setTagKind(Pattern->getTagKind()); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1783 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1784 | // Do substitution on the base class specifiers. |
| 1785 | if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs)) |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1786 | Invalid = true; |
| 1787 | |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1788 | TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1789 | SmallVector<Decl*, 4> Fields; |
| 1790 | SmallVector<std::pair<FieldDecl*, FieldDecl*>, 4> |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1791 | FieldsWithMemberInitializers; |
DeLesley Hutchins | 23323e0 | 2012-01-20 22:50:54 +0000 | [diff] [blame] | 1792 | // Delay instantiation of late parsed attributes. |
| 1793 | LateInstantiatedAttrVec LateAttrs; |
| 1794 | Instantiator.enableLateAttributeInstantiation(&LateAttrs); |
| 1795 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1796 | for (RecordDecl::decl_iterator Member = Pattern->decls_begin(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1797 | MemberEnd = Pattern->decls_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1798 | Member != MemberEnd; ++Member) { |
Argyrios Kyrtzidis | bb5e431 | 2010-11-04 03:18:57 +0000 | [diff] [blame] | 1799 | // Don't instantiate members not belonging in this semantic context. |
| 1800 | // e.g. for: |
| 1801 | // @code |
| 1802 | // template <int i> class A { |
| 1803 | // class B *g; |
| 1804 | // }; |
| 1805 | // @endcode |
| 1806 | // 'class B' has the template as lexical context but semantically it is |
| 1807 | // introduced in namespace scope. |
| 1808 | if ((*Member)->getDeclContext() != Pattern) |
| 1809 | continue; |
| 1810 | |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1811 | if ((*Member)->isInvalidDecl()) { |
| 1812 | Invalid = true; |
| 1813 | continue; |
| 1814 | } |
| 1815 | |
| 1816 | Decl *NewMember = Instantiator.Visit(*Member); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1817 | if (NewMember) { |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1818 | if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember)) { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1819 | Fields.push_back(Field); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1820 | FieldDecl *OldField = cast<FieldDecl>(*Member); |
| 1821 | if (OldField->getInClassInitializer()) |
| 1822 | FieldsWithMemberInitializers.push_back(std::make_pair(OldField, |
| 1823 | Field)); |
| 1824 | } else if (NewMember->isInvalidDecl()) |
Eli Friedman | 721e77d | 2009-12-07 00:22:08 +0000 | [diff] [blame] | 1825 | Invalid = true; |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1826 | } else { |
| 1827 | // FIXME: Eventually, a NULL return will mean that one of the |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1828 | // instantiations was a semantic disaster, and we'll want to set Invalid = |
| 1829 | // true. For now, we expect to skip some members that we can't yet handle. |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1830 | } |
| 1831 | } |
| 1832 | |
| 1833 | // Finish checking fields. |
David Blaikie | 77b6de0 | 2011-09-22 02:58:26 +0000 | [diff] [blame] | 1834 | ActOnFields(0, Instantiation->getLocation(), Instantiation, Fields, |
| 1835 | SourceLocation(), SourceLocation(), 0); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1836 | CheckCompletedCXXClass(Instantiation); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1837 | |
| 1838 | // Attach any in-class member initializers now the class is complete. |
| 1839 | for (unsigned I = 0, N = FieldsWithMemberInitializers.size(); I != N; ++I) { |
| 1840 | FieldDecl *OldField = FieldsWithMemberInitializers[I].first; |
| 1841 | FieldDecl *NewField = FieldsWithMemberInitializers[I].second; |
| 1842 | Expr *OldInit = OldField->getInClassInitializer(); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1843 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 1844 | ExprResult NewInit = SubstInitializer(OldInit, TemplateArgs, |
| 1845 | /*CXXDirectInit=*/false); |
| 1846 | if (NewInit.isInvalid()) |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1847 | NewField->setInvalidDecl(); |
Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 1848 | else { |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 1849 | Expr *Init = NewInit.take(); |
| 1850 | assert(Init && "no-argument initializer in class"); |
| 1851 | assert(!isa<ParenListExpr>(Init) && "call-style init in class"); |
| 1852 | ActOnCXXInClassMemberInitializer(NewField, |
| 1853 | Init->getSourceRange().getBegin(), Init); |
Richard Smith | 0ff6f8f | 2011-07-20 00:12:52 +0000 | [diff] [blame] | 1854 | } |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1855 | } |
| 1856 | |
DeLesley Hutchins | 23323e0 | 2012-01-20 22:50:54 +0000 | [diff] [blame] | 1857 | // Instantiate late parsed attributes, and attach them to their decls. |
| 1858 | // See Sema::InstantiateAttrs |
| 1859 | for (LateInstantiatedAttrVec::iterator I = LateAttrs.begin(), |
| 1860 | E = LateAttrs.end(); I != E; ++I) { |
| 1861 | assert(CurrentInstantiationScope == Instantiator.getStartingScope()); |
| 1862 | CurrentInstantiationScope = I->Scope; |
| 1863 | Attr *NewAttr = |
| 1864 | instantiateTemplateAttribute(I->TmplAttr, Context, *this, TemplateArgs); |
| 1865 | I->NewDecl->addAttr(NewAttr); |
| 1866 | LocalInstantiationScope::deleteScopes(I->Scope, |
| 1867 | Instantiator.getStartingScope()); |
| 1868 | } |
| 1869 | Instantiator.disableLateAttributeInstantiation(); |
| 1870 | LateAttrs.clear(); |
| 1871 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1872 | if (!FieldsWithMemberInitializers.empty()) |
| 1873 | ActOnFinishDelayedMemberInitializers(Instantiation); |
| 1874 | |
Abramo Bagnara | e994624 | 2011-11-18 08:08:52 +0000 | [diff] [blame] | 1875 | if (TSK == TSK_ImplicitInstantiation) { |
Argyrios Kyrtzidis | 734bd6e | 2012-02-11 01:59:57 +0000 | [diff] [blame] | 1876 | Instantiation->setLocation(Pattern->getLocation()); |
Abramo Bagnara | e994624 | 2011-11-18 08:08:52 +0000 | [diff] [blame] | 1877 | Instantiation->setLocStart(Pattern->getInnerLocStart()); |
Abramo Bagnara | 09d8212 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 1878 | Instantiation->setRBraceLoc(Pattern->getRBraceLoc()); |
Abramo Bagnara | e994624 | 2011-11-18 08:08:52 +0000 | [diff] [blame] | 1879 | } |
Abramo Bagnara | 09d8212 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 1880 | |
Douglas Gregor | 663b5a0 | 2009-10-14 20:14:33 +0000 | [diff] [blame] | 1881 | if (Instantiation->isInvalidDecl()) |
| 1882 | Invalid = true; |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1883 | else { |
| 1884 | // Instantiate any out-of-line class template partial |
| 1885 | // specializations now. |
| 1886 | for (TemplateDeclInstantiator::delayed_partial_spec_iterator |
| 1887 | P = Instantiator.delayed_partial_spec_begin(), |
| 1888 | PEnd = Instantiator.delayed_partial_spec_end(); |
| 1889 | P != PEnd; ++P) { |
| 1890 | if (!Instantiator.InstantiateClassTemplatePartialSpecialization( |
| 1891 | P->first, |
| 1892 | P->second)) { |
| 1893 | Invalid = true; |
| 1894 | break; |
| 1895 | } |
| 1896 | } |
| 1897 | } |
| 1898 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1899 | // Exit the scope of this instantiation. |
John McCall | f581382 | 2010-04-29 00:35:03 +0000 | [diff] [blame] | 1900 | SavedContext.pop(); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1901 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1902 | if (!Invalid) { |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 1903 | Consumer.HandleTagDeclDefinition(Instantiation); |
| 1904 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1905 | // Always emit the vtable for an explicit instantiation definition |
| 1906 | // of a polymorphic class template specialization. |
| 1907 | if (TSK == TSK_ExplicitInstantiationDefinition) |
| 1908 | MarkVTableUsed(PointOfInstantiation, Instantiation, true); |
| 1909 | } |
| 1910 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1911 | return Invalid; |
| 1912 | } |
| 1913 | |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1914 | namespace { |
| 1915 | /// \brief A partial specialization whose template arguments have matched |
| 1916 | /// a given template-id. |
| 1917 | struct PartialSpecMatchResult { |
| 1918 | ClassTemplatePartialSpecializationDecl *Partial; |
| 1919 | TemplateArgumentList *Args; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1920 | }; |
| 1921 | } |
| 1922 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1923 | bool |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1924 | Sema::InstantiateClassTemplateSpecialization( |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1925 | SourceLocation PointOfInstantiation, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1926 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1927 | TemplateSpecializationKind TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1928 | bool Complain) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1929 | // Perform the actual instantiation on the canonical declaration. |
| 1930 | ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>( |
Argyrios Kyrtzidis | 97fbaa2 | 2009-07-18 00:34:25 +0000 | [diff] [blame] | 1931 | ClassTemplateSpec->getCanonicalDecl()); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1932 | |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1933 | // Check whether we have already instantiated or specialized this class |
| 1934 | // template specialization. |
| 1935 | if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) { |
| 1936 | if (ClassTemplateSpec->getSpecializationKind() == |
| 1937 | TSK_ExplicitInstantiationDeclaration && |
| 1938 | TSK == TSK_ExplicitInstantiationDefinition) { |
| 1939 | // An explicit instantiation definition follows an explicit instantiation |
| 1940 | // declaration (C++0x [temp.explicit]p10); go ahead and perform the |
| 1941 | // explicit instantiation. |
| 1942 | ClassTemplateSpec->setSpecializationKind(TSK); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1943 | |
| 1944 | // If this is an explicit instantiation definition, mark the |
| 1945 | // vtable as used. |
Nico Weber | c7feca0 | 2011-12-20 20:32:49 +0000 | [diff] [blame] | 1946 | if (TSK == TSK_ExplicitInstantiationDefinition && |
| 1947 | !ClassTemplateSpec->isInvalidDecl()) |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1948 | MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true); |
| 1949 | |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1950 | return false; |
| 1951 | } |
| 1952 | |
| 1953 | // We can only instantiate something that hasn't already been |
| 1954 | // instantiated or specialized. Fail without any diagnostics: our |
| 1955 | // caller will provide an error message. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1956 | return true; |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1957 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1958 | |
Douglas Gregor | 9eea08b | 2009-09-15 16:51:42 +0000 | [diff] [blame] | 1959 | if (ClassTemplateSpec->isInvalidDecl()) |
| 1960 | return true; |
| 1961 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1962 | ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1963 | CXXRecordDecl *Pattern = 0; |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 1964 | |
Douglas Gregor | c1efb3f | 2009-06-12 22:31:52 +0000 | [diff] [blame] | 1965 | // C++ [temp.class.spec.match]p1: |
| 1966 | // When a class template is used in a context that requires an |
| 1967 | // instantiation of the class, it is necessary to determine |
| 1968 | // whether the instantiation is to be generated using the primary |
| 1969 | // template or one of the partial specializations. This is done by |
| 1970 | // matching the template arguments of the class template |
| 1971 | // specialization with the template argument lists of the partial |
| 1972 | // specializations. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1973 | typedef PartialSpecMatchResult MatchResult; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1974 | SmallVector<MatchResult, 4> Matched; |
| 1975 | SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs; |
Douglas Gregor | dc60c1e | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 1976 | Template->getPartialSpecializations(PartialSpecs); |
| 1977 | for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) { |
| 1978 | ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I]; |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 1979 | TemplateDeductionInfo Info(Context, PointOfInstantiation); |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1980 | if (TemplateDeductionResult Result |
Douglas Gregor | dc60c1e | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 1981 | = DeduceTemplateArguments(Partial, |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1982 | ClassTemplateSpec->getTemplateArgs(), |
| 1983 | Info)) { |
| 1984 | // FIXME: Store the failed-deduction information for use in |
| 1985 | // diagnostics, later. |
| 1986 | (void)Result; |
| 1987 | } else { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1988 | Matched.push_back(PartialSpecMatchResult()); |
| 1989 | Matched.back().Partial = Partial; |
| 1990 | Matched.back().Args = Info.take(); |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1991 | } |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 1992 | } |
| 1993 | |
Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1994 | // If we're dealing with a member template where the template parameters |
| 1995 | // have been instantiated, this provides the original template parameters |
| 1996 | // from which the member template's parameters were instantiated. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1997 | SmallVector<const NamedDecl *, 4> InstantiatedTemplateParameters; |
Douglas Gregor | 6952f1e | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 1998 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1999 | if (Matched.size() >= 1) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2000 | SmallVector<MatchResult, 4>::iterator Best = Matched.begin(); |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2001 | if (Matched.size() == 1) { |
| 2002 | // -- If exactly one matching specialization is found, the |
| 2003 | // instantiation is generated from that specialization. |
| 2004 | // We don't need to do anything for this. |
| 2005 | } else { |
| 2006 | // -- If more than one matching specialization is found, the |
| 2007 | // partial order rules (14.5.4.2) are used to determine |
| 2008 | // whether one of the specializations is more specialized |
| 2009 | // than the others. If none of the specializations is more |
| 2010 | // specialized than all of the other matching |
| 2011 | // specializations, then the use of the class template is |
| 2012 | // ambiguous and the program is ill-formed. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2013 | for (SmallVector<MatchResult, 4>::iterator P = Best + 1, |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2014 | PEnd = Matched.end(); |
| 2015 | P != PEnd; ++P) { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2016 | if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial, |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 2017 | PointOfInstantiation) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2018 | == P->Partial) |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2019 | Best = P; |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2020 | } |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2021 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2022 | // Determine if the best partial specialization is more specialized than |
| 2023 | // the others. |
| 2024 | bool Ambiguous = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2025 | for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(), |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2026 | PEnd = Matched.end(); |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2027 | P != PEnd; ++P) { |
| 2028 | if (P != Best && |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2029 | getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial, |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 2030 | PointOfInstantiation) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2031 | != Best->Partial) { |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2032 | Ambiguous = true; |
| 2033 | break; |
| 2034 | } |
| 2035 | } |
| 2036 | |
| 2037 | if (Ambiguous) { |
| 2038 | // Partial ordering did not produce a clear winner. Complain. |
| 2039 | ClassTemplateSpec->setInvalidDecl(); |
| 2040 | Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous) |
| 2041 | << ClassTemplateSpec; |
| 2042 | |
| 2043 | // Print the matching partial specializations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2044 | for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(), |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2045 | PEnd = Matched.end(); |
| 2046 | P != PEnd; ++P) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2047 | Diag(P->Partial->getLocation(), diag::note_partial_spec_match) |
| 2048 | << getTemplateArgumentBindingsText( |
| 2049 | P->Partial->getTemplateParameters(), |
| 2050 | *P->Args); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2051 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2052 | return true; |
| 2053 | } |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 2054 | } |
| 2055 | |
| 2056 | // Instantiate using the best class template partial specialization. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2057 | ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->Partial; |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 2058 | while (OrigPartialSpec->getInstantiatedFromMember()) { |
| 2059 | // If we've found an explicit specialization of this class template, |
| 2060 | // stop here and use that as the pattern. |
| 2061 | if (OrigPartialSpec->isMemberSpecialization()) |
| 2062 | break; |
| 2063 | |
| 2064 | OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember(); |
| 2065 | } |
| 2066 | |
| 2067 | Pattern = OrigPartialSpec; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2068 | ClassTemplateSpec->setInstantiationOf(Best->Partial, Best->Args); |
Douglas Gregor | c1efb3f | 2009-06-12 22:31:52 +0000 | [diff] [blame] | 2069 | } else { |
| 2070 | // -- If no matches are found, the instantiation is generated |
| 2071 | // from the primary template. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2072 | ClassTemplateDecl *OrigTemplate = Template; |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 2073 | while (OrigTemplate->getInstantiatedFromMemberTemplate()) { |
| 2074 | // If we've found an explicit specialization of this class template, |
| 2075 | // stop here and use that as the pattern. |
| 2076 | if (OrigTemplate->isMemberSpecialization()) |
| 2077 | break; |
| 2078 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2079 | OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate(); |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 2080 | } |
| 2081 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2082 | Pattern = OrigTemplate->getTemplatedDecl(); |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 2083 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2084 | |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 2085 | bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec, |
| 2086 | Pattern, |
| 2087 | getTemplateInstantiationArgs(ClassTemplateSpec), |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2088 | TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 2089 | Complain); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2090 | |
Douglas Gregor | 199d991 | 2009-06-05 00:53:49 +0000 | [diff] [blame] | 2091 | return Result; |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2092 | } |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 2093 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2094 | /// \brief Instantiates the definitions of all of the member |
| 2095 | /// of the given class, which is an instantiation of a class template |
| 2096 | /// or a member class of a template. |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2097 | void |
| 2098 | Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2099 | CXXRecordDecl *Instantiation, |
| 2100 | const MultiLevelTemplateArgumentList &TemplateArgs, |
| 2101 | TemplateSpecializationKind TSK) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2102 | for (DeclContext::decl_iterator D = Instantiation->decls_begin(), |
| 2103 | DEnd = Instantiation->decls_end(); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2104 | D != DEnd; ++D) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2105 | bool SuppressNew = false; |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2106 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2107 | if (FunctionDecl *Pattern |
| 2108 | = Function->getInstantiatedFromMemberFunction()) { |
| 2109 | MemberSpecializationInfo *MSInfo |
| 2110 | = Function->getMemberSpecializationInfo(); |
| 2111 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 2112 | if (MSInfo->getTemplateSpecializationKind() |
| 2113 | == TSK_ExplicitSpecialization) |
| 2114 | continue; |
| 2115 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2116 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 2117 | Function, |
| 2118 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 2119 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2120 | SuppressNew) || |
| 2121 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 2122 | continue; |
| 2123 | |
Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 2124 | if (Function->isDefined()) |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2125 | continue; |
| 2126 | |
| 2127 | if (TSK == TSK_ExplicitInstantiationDefinition) { |
| 2128 | // C++0x [temp.explicit]p8: |
| 2129 | // An explicit instantiation definition that names a class template |
| 2130 | // specialization explicitly instantiates the class template |
| 2131 | // specialization and is only an explicit instantiation definition |
| 2132 | // of members whose definition is visible at the point of |
| 2133 | // instantiation. |
Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 2134 | if (!Pattern->isDefined()) |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2135 | continue; |
| 2136 | |
| 2137 | Function->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 2138 | |
| 2139 | InstantiateFunctionDefinition(PointOfInstantiation, Function); |
| 2140 | } else { |
| 2141 | Function->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 2142 | } |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 2143 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2144 | } else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) { |
Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2145 | if (Var->isStaticDataMember()) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2146 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 2147 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 2148 | if (MSInfo->getTemplateSpecializationKind() |
| 2149 | == TSK_ExplicitSpecialization) |
| 2150 | continue; |
| 2151 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2152 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 2153 | Var, |
| 2154 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 2155 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2156 | SuppressNew) || |
| 2157 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 2158 | continue; |
| 2159 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2160 | if (TSK == TSK_ExplicitInstantiationDefinition) { |
| 2161 | // C++0x [temp.explicit]p8: |
| 2162 | // An explicit instantiation definition that names a class template |
| 2163 | // specialization explicitly instantiates the class template |
| 2164 | // specialization and is only an explicit instantiation definition |
| 2165 | // of members whose definition is visible at the point of |
| 2166 | // instantiation. |
| 2167 | if (!Var->getInstantiatedFromStaticDataMember() |
| 2168 | ->getOutOfLineDefinition()) |
| 2169 | continue; |
| 2170 | |
| 2171 | Var->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 2172 | InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var); |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2173 | } else { |
| 2174 | Var->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 2175 | } |
| 2176 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2177 | } else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) { |
Douglas Gregor | a77eaa9 | 2010-04-18 18:11:38 +0000 | [diff] [blame] | 2178 | // Always skip the injected-class-name, along with any |
| 2179 | // redeclarations of nested classes, since both would cause us |
| 2180 | // to try to instantiate the members of a class twice. |
Douglas Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 2181 | if (Record->isInjectedClassName() || Record->getPreviousDecl()) |
Douglas Gregor | 2db3232 | 2009-10-07 23:56:10 +0000 | [diff] [blame] | 2182 | continue; |
| 2183 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2184 | MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo(); |
| 2185 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 2186 | |
| 2187 | if (MSInfo->getTemplateSpecializationKind() |
| 2188 | == TSK_ExplicitSpecialization) |
| 2189 | continue; |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 2190 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2191 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 2192 | Record, |
| 2193 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 2194 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2195 | SuppressNew) || |
| 2196 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 2197 | continue; |
| 2198 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2199 | CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass(); |
| 2200 | assert(Pattern && "Missing instantiated-from-template information"); |
| 2201 | |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 2202 | if (!Record->getDefinition()) { |
| 2203 | if (!Pattern->getDefinition()) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2204 | // C++0x [temp.explicit]p8: |
| 2205 | // An explicit instantiation definition that names a class template |
| 2206 | // specialization explicitly instantiates the class template |
| 2207 | // specialization and is only an explicit instantiation definition |
| 2208 | // of members whose definition is visible at the point of |
| 2209 | // instantiation. |
| 2210 | if (TSK == TSK_ExplicitInstantiationDeclaration) { |
| 2211 | MSInfo->setTemplateSpecializationKind(TSK); |
| 2212 | MSInfo->setPointOfInstantiation(PointOfInstantiation); |
| 2213 | } |
| 2214 | |
| 2215 | continue; |
| 2216 | } |
| 2217 | |
| 2218 | InstantiateClass(PointOfInstantiation, Record, Pattern, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2219 | TemplateArgs, |
| 2220 | TSK); |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 2221 | } else { |
| 2222 | if (TSK == TSK_ExplicitInstantiationDefinition && |
| 2223 | Record->getTemplateSpecializationKind() == |
| 2224 | TSK_ExplicitInstantiationDeclaration) { |
| 2225 | Record->setTemplateSpecializationKind(TSK); |
| 2226 | MarkVTableUsed(PointOfInstantiation, Record, true); |
| 2227 | } |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2228 | } |
Douglas Gregor | e9374d5 | 2009-10-08 01:19:17 +0000 | [diff] [blame] | 2229 | |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 2230 | Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition()); |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 2231 | if (Pattern) |
| 2232 | InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs, |
| 2233 | TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2234 | } |
| 2235 | } |
| 2236 | } |
| 2237 | |
| 2238 | /// \brief Instantiate the definitions of all of the members of the |
| 2239 | /// given class template specialization, which was named as part of an |
| 2240 | /// explicit instantiation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2241 | void |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2242 | Sema::InstantiateClassTemplateSpecializationMembers( |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2243 | SourceLocation PointOfInstantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2244 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
| 2245 | TemplateSpecializationKind TSK) { |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2246 | // C++0x [temp.explicit]p7: |
| 2247 | // An explicit instantiation that names a class template |
| 2248 | // specialization is an explicit instantion of the same kind |
| 2249 | // (declaration or definition) of each of its members (not |
| 2250 | // including members inherited from base classes) that has not |
| 2251 | // been previously explicitly specialized in the translation unit |
| 2252 | // containing the explicit instantiation, except as described |
| 2253 | // below. |
| 2254 | InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 2255 | getTemplateInstantiationArgs(ClassTemplateSpec), |
| 2256 | TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 2257 | } |
| 2258 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2259 | StmtResult |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2260 | Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 2261 | if (!S) |
| 2262 | return Owned(S); |
| 2263 | |
| 2264 | TemplateInstantiator Instantiator(*this, TemplateArgs, |
| 2265 | SourceLocation(), |
| 2266 | DeclarationName()); |
| 2267 | return Instantiator.TransformStmt(S); |
| 2268 | } |
| 2269 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2270 | ExprResult |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2271 | Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 2272 | if (!E) |
| 2273 | return Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2274 | |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 2275 | TemplateInstantiator Instantiator(*this, TemplateArgs, |
| 2276 | SourceLocation(), |
| 2277 | DeclarationName()); |
| 2278 | return Instantiator.TransformExpr(E); |
| 2279 | } |
| 2280 | |
Douglas Gregor | 91fc73e | 2011-01-07 19:35:17 +0000 | [diff] [blame] | 2281 | bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall, |
| 2282 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2283 | SmallVectorImpl<Expr *> &Outputs) { |
Douglas Gregor | 91fc73e | 2011-01-07 19:35:17 +0000 | [diff] [blame] | 2284 | if (NumExprs == 0) |
| 2285 | return false; |
| 2286 | |
| 2287 | TemplateInstantiator Instantiator(*this, TemplateArgs, |
| 2288 | SourceLocation(), |
| 2289 | DeclarationName()); |
| 2290 | return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs); |
| 2291 | } |
| 2292 | |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 2293 | NestedNameSpecifierLoc |
| 2294 | Sema::SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS, |
| 2295 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
| 2296 | if (!NNS) |
| 2297 | return NestedNameSpecifierLoc(); |
| 2298 | |
| 2299 | TemplateInstantiator Instantiator(*this, TemplateArgs, NNS.getBeginLoc(), |
| 2300 | DeclarationName()); |
| 2301 | return Instantiator.TransformNestedNameSpecifierLoc(NNS); |
| 2302 | } |
| 2303 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2304 | /// \brief Do template substitution on declaration name info. |
| 2305 | DeclarationNameInfo |
| 2306 | Sema::SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo, |
| 2307 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
| 2308 | TemplateInstantiator Instantiator(*this, TemplateArgs, NameInfo.getLoc(), |
| 2309 | NameInfo.getName()); |
| 2310 | return Instantiator.TransformDeclarationNameInfo(NameInfo); |
| 2311 | } |
| 2312 | |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 2313 | TemplateName |
Douglas Gregor | 1d752d7 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 2314 | Sema::SubstTemplateName(NestedNameSpecifierLoc QualifierLoc, |
| 2315 | TemplateName Name, SourceLocation Loc, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2316 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | d1067e5 | 2009-08-06 06:41:21 +0000 | [diff] [blame] | 2317 | TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, |
| 2318 | DeclarationName()); |
Douglas Gregor | 1d752d7 | 2011-03-02 18:46:51 +0000 | [diff] [blame] | 2319 | CXXScopeSpec SS; |
| 2320 | SS.Adopt(QualifierLoc); |
| 2321 | return Instantiator.TransformTemplateName(SS, Name, Loc); |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 2322 | } |
Douglas Gregor | 9133300 | 2009-06-11 00:06:24 +0000 | [diff] [blame] | 2323 | |
Douglas Gregor | e02e262 | 2010-12-22 21:19:48 +0000 | [diff] [blame] | 2324 | bool Sema::Subst(const TemplateArgumentLoc *Args, unsigned NumArgs, |
| 2325 | TemplateArgumentListInfo &Result, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2326 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 670444e | 2009-08-04 22:27:00 +0000 | [diff] [blame] | 2327 | TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(), |
| 2328 | DeclarationName()); |
Douglas Gregor | e02e262 | 2010-12-22 21:19:48 +0000 | [diff] [blame] | 2329 | |
| 2330 | return Instantiator.TransformTemplateArguments(Args, NumArgs, Result); |
Douglas Gregor | 9133300 | 2009-06-11 00:06:24 +0000 | [diff] [blame] | 2331 | } |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2332 | |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2333 | llvm::PointerUnion<Decl *, LocalInstantiationScope::DeclArgumentPack *> * |
| 2334 | LocalInstantiationScope::findInstantiationOf(const Decl *D) { |
Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 2335 | for (LocalInstantiationScope *Current = this; Current; |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2336 | Current = Current->Outer) { |
Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 2337 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2338 | // Check if we found something within this scope. |
Douglas Gregor | ebb1c56 | 2010-12-21 21:22:51 +0000 | [diff] [blame] | 2339 | const Decl *CheckD = D; |
| 2340 | do { |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2341 | LocalDeclsMap::iterator Found = Current->LocalDecls.find(CheckD); |
Douglas Gregor | ebb1c56 | 2010-12-21 21:22:51 +0000 | [diff] [blame] | 2342 | if (Found != Current->LocalDecls.end()) |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2343 | return &Found->second; |
Douglas Gregor | ebb1c56 | 2010-12-21 21:22:51 +0000 | [diff] [blame] | 2344 | |
| 2345 | // If this is a tag declaration, it's possible that we need to look for |
| 2346 | // a previous declaration. |
| 2347 | if (const TagDecl *Tag = dyn_cast<TagDecl>(CheckD)) |
Douglas Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 2348 | CheckD = Tag->getPreviousDecl(); |
Douglas Gregor | ebb1c56 | 2010-12-21 21:22:51 +0000 | [diff] [blame] | 2349 | else |
| 2350 | CheckD = 0; |
| 2351 | } while (CheckD); |
| 2352 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2353 | // If we aren't combined with our outer scope, we're done. |
| 2354 | if (!Current->CombineWithOuterScope) |
| 2355 | break; |
| 2356 | } |
Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 2357 | |
| 2358 | // If we didn't find the decl, then we either have a sema bug, or we have a |
| 2359 | // forward reference to a label declaration. Return null to indicate that |
| 2360 | // we have an uninstantiated label. |
| 2361 | assert(isa<LabelDecl>(D) && "declaration not instantiated in this scope"); |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2362 | return 0; |
| 2363 | } |
| 2364 | |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 2365 | void LocalInstantiationScope::InstantiatedLocal(const Decl *D, Decl *Inst) { |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2366 | llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2367 | if (Stored.isNull()) |
| 2368 | Stored = Inst; |
| 2369 | else if (Stored.is<Decl *>()) { |
| 2370 | assert(Stored.get<Decl *>() == Inst && "Already instantiated this local"); |
| 2371 | Stored = Inst; |
| 2372 | } else |
| 2373 | LocalDecls[D].get<DeclArgumentPack *>()->push_back(Inst); |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 2374 | } |
Douglas Gregor | 12c9c00 | 2011-01-07 16:43:16 +0000 | [diff] [blame] | 2375 | |
| 2376 | void LocalInstantiationScope::InstantiatedLocalPackArg(const Decl *D, |
| 2377 | Decl *Inst) { |
| 2378 | DeclArgumentPack *Pack = LocalDecls[D].get<DeclArgumentPack *>(); |
| 2379 | Pack->push_back(Inst); |
| 2380 | } |
| 2381 | |
| 2382 | void LocalInstantiationScope::MakeInstantiatedLocalArgPack(const Decl *D) { |
| 2383 | llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; |
| 2384 | assert(Stored.isNull() && "Already instantiated this local"); |
| 2385 | DeclArgumentPack *Pack = new DeclArgumentPack; |
| 2386 | Stored = Pack; |
| 2387 | ArgumentPacks.push_back(Pack); |
| 2388 | } |
| 2389 | |
Douglas Gregor | d373119 | 2011-01-10 07:32:04 +0000 | [diff] [blame] | 2390 | void LocalInstantiationScope::SetPartiallySubstitutedPack(NamedDecl *Pack, |
| 2391 | const TemplateArgument *ExplicitArgs, |
| 2392 | unsigned NumExplicitArgs) { |
| 2393 | assert((!PartiallySubstitutedPack || PartiallySubstitutedPack == Pack) && |
| 2394 | "Already have a partially-substituted pack"); |
| 2395 | assert((!PartiallySubstitutedPack |
| 2396 | || NumArgsInPartiallySubstitutedPack == NumExplicitArgs) && |
| 2397 | "Wrong number of arguments in partially-substituted pack"); |
| 2398 | PartiallySubstitutedPack = Pack; |
| 2399 | ArgsInPartiallySubstitutedPack = ExplicitArgs; |
| 2400 | NumArgsInPartiallySubstitutedPack = NumExplicitArgs; |
| 2401 | } |
| 2402 | |
| 2403 | NamedDecl *LocalInstantiationScope::getPartiallySubstitutedPack( |
| 2404 | const TemplateArgument **ExplicitArgs, |
| 2405 | unsigned *NumExplicitArgs) const { |
| 2406 | if (ExplicitArgs) |
| 2407 | *ExplicitArgs = 0; |
| 2408 | if (NumExplicitArgs) |
| 2409 | *NumExplicitArgs = 0; |
| 2410 | |
| 2411 | for (const LocalInstantiationScope *Current = this; Current; |
| 2412 | Current = Current->Outer) { |
| 2413 | if (Current->PartiallySubstitutedPack) { |
| 2414 | if (ExplicitArgs) |
| 2415 | *ExplicitArgs = Current->ArgsInPartiallySubstitutedPack; |
| 2416 | if (NumExplicitArgs) |
| 2417 | *NumExplicitArgs = Current->NumArgsInPartiallySubstitutedPack; |
| 2418 | |
| 2419 | return Current->PartiallySubstitutedPack; |
| 2420 | } |
| 2421 | |
| 2422 | if (!Current->CombineWithOuterScope) |
| 2423 | break; |
| 2424 | } |
| 2425 | |
| 2426 | return 0; |
| 2427 | } |