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" |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 16 | #include "clang/Sema/Lookup.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 17 | #include "clang/Sema/Template.h" |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 18 | #include "clang/Sema/TemplateDeduction.h" |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 19 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 20 | #include "clang/AST/ASTContext.h" |
| 21 | #include "clang/AST/Expr.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 23 | #include "clang/Basic/LangOptions.h" |
| 24 | |
| 25 | using namespace clang; |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 26 | using namespace sema; |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 27 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 28 | //===----------------------------------------------------------------------===/ |
| 29 | // Template Instantiation Support |
| 30 | //===----------------------------------------------------------------------===/ |
| 31 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 32 | /// \brief Retrieve the template argument list(s) that should be used to |
| 33 | /// instantiate the definition of the given declaration. |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 34 | /// |
| 35 | /// \param D the declaration for which we are computing template instantiation |
| 36 | /// arguments. |
| 37 | /// |
| 38 | /// \param Innermost if non-NULL, the innermost template argument list. |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 39 | /// |
| 40 | /// \param RelativeToPrimary true if we should get the template |
| 41 | /// arguments relative to the primary template, even when we're |
| 42 | /// dealing with a specialization. This is only relevant for function |
| 43 | /// template specializations. |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 44 | /// |
| 45 | /// \param Pattern If non-NULL, indicates the pattern from which we will be |
| 46 | /// instantiating the definition of the given declaration, \p D. This is |
| 47 | /// used to determine the proper set of template instantiation arguments for |
| 48 | /// friend function template specializations. |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 49 | MultiLevelTemplateArgumentList |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 50 | Sema::getTemplateInstantiationArgs(NamedDecl *D, |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 51 | const TemplateArgumentList *Innermost, |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 52 | bool RelativeToPrimary, |
| 53 | const FunctionDecl *Pattern) { |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 54 | // Accumulate the set of template argument lists in this structure. |
| 55 | MultiLevelTemplateArgumentList Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 56 | |
Douglas Gregor | 0f8716b | 2009-11-09 19:17:50 +0000 | [diff] [blame] | 57 | if (Innermost) |
| 58 | Result.addOuterTemplateArguments(Innermost); |
| 59 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 60 | DeclContext *Ctx = dyn_cast<DeclContext>(D); |
| 61 | if (!Ctx) |
| 62 | Ctx = D->getDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 63 | |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 64 | while (!Ctx->isFileContext()) { |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 65 | // Add template arguments from a class template instantiation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 66 | if (ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 67 | = dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) { |
| 68 | // We're done when we hit an explicit specialization. |
Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 69 | if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization && |
| 70 | !isa<ClassTemplatePartialSpecializationDecl>(Spec)) |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 71 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 72 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 73 | Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs()); |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 74 | |
| 75 | // If this class template specialization was instantiated from a |
| 76 | // specialized member that is a class template, we're done. |
| 77 | assert(Spec->getSpecializedTemplate() && "No class template?"); |
| 78 | if (Spec->getSpecializedTemplate()->isMemberSpecialization()) |
| 79 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 80 | } |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 81 | // Add template arguments from a function template specialization. |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 82 | else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) { |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 83 | if (!RelativeToPrimary && |
| 84 | Function->getTemplateSpecializationKind() |
| 85 | == TSK_ExplicitSpecialization) |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 86 | break; |
| 87 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 88 | if (const TemplateArgumentList *TemplateArgs |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 89 | = Function->getTemplateSpecializationArgs()) { |
| 90 | // Add the template arguments for this specialization. |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 91 | Result.addOuterTemplateArguments(TemplateArgs); |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 92 | |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 93 | // If this function was instantiated from a specialized member that is |
| 94 | // a function template, we're done. |
| 95 | assert(Function->getPrimaryTemplate() && "No function template?"); |
| 96 | if (Function->getPrimaryTemplate()->isMemberSpecialization()) |
| 97 | break; |
| 98 | } |
| 99 | |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 100 | // If this is a friend declaration and it declares an entity at |
| 101 | // namespace scope, take arguments from its lexical parent |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 102 | // instead of its semantic parent, unless of course the pattern we're |
| 103 | // instantiating actually comes from the file's context! |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 104 | if (Function->getFriendObjectKind() && |
Douglas Gregor | e7089b0 | 2010-05-03 23:29:10 +0000 | [diff] [blame] | 105 | Function->getDeclContext()->isFileContext() && |
| 106 | (!Pattern || !Pattern->getLexicalDeclContext()->isFileContext())) { |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 107 | Ctx = Function->getLexicalDeclContext(); |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 108 | RelativeToPrimary = false; |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 109 | continue; |
| 110 | } |
Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 111 | } else if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Ctx)) { |
| 112 | if (ClassTemplateDecl *ClassTemplate = Rec->getDescribedClassTemplate()) { |
| 113 | QualType T = ClassTemplate->getInjectedClassNameSpecialization(); |
| 114 | const TemplateSpecializationType *TST |
| 115 | = cast<TemplateSpecializationType>(Context.getCanonicalType(T)); |
| 116 | Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs()); |
| 117 | if (ClassTemplate->isMemberSpecialization()) |
| 118 | break; |
| 119 | } |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 120 | } |
John McCall | f181d8a | 2009-08-29 03:16:09 +0000 | [diff] [blame] | 121 | |
| 122 | Ctx = Ctx->getParent(); |
Douglas Gregor | 525f96c | 2010-02-05 07:33:43 +0000 | [diff] [blame] | 123 | RelativeToPrimary = false; |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 124 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 125 | |
Douglas Gregor | d110243 | 2009-08-28 17:37:35 +0000 | [diff] [blame] | 126 | return Result; |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 129 | bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const { |
| 130 | switch (Kind) { |
| 131 | case TemplateInstantiation: |
| 132 | case DefaultTemplateArgumentInstantiation: |
| 133 | case DefaultFunctionArgumentInstantiation: |
| 134 | return true; |
| 135 | |
| 136 | case ExplicitTemplateArgumentSubstitution: |
| 137 | case DeducedTemplateArgumentSubstitution: |
| 138 | case PriorTemplateArgumentSubstitution: |
| 139 | case DefaultTemplateArgumentChecking: |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | return true; |
| 144 | } |
| 145 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 146 | Sema::InstantiatingTemplate:: |
| 147 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 148 | Decl *Entity, |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 149 | SourceRange InstantiationRange) |
| 150 | : SemaRef(SemaRef) { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 151 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 152 | InstantiationRange); |
| 153 | if (!Invalid) { |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 154 | ActiveTemplateInstantiation Inst; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 155 | Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 156 | Inst.PointOfInstantiation = PointOfInstantiation; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 157 | Inst.Entity = reinterpret_cast<uintptr_t>(Entity); |
Douglas Gregor | 313a81d | 2009-03-12 18:36:18 +0000 | [diff] [blame] | 158 | Inst.TemplateArgs = 0; |
| 159 | Inst.NumTemplateArgs = 0; |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 160 | Inst.InstantiationRange = InstantiationRange; |
| 161 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 165 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 166 | SourceLocation PointOfInstantiation, |
| 167 | TemplateDecl *Template, |
| 168 | const TemplateArgument *TemplateArgs, |
| 169 | unsigned NumTemplateArgs, |
| 170 | SourceRange InstantiationRange) |
| 171 | : SemaRef(SemaRef) { |
| 172 | |
| 173 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 174 | InstantiationRange); |
| 175 | if (!Invalid) { |
| 176 | ActiveTemplateInstantiation Inst; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 177 | Inst.Kind |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 178 | = ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation; |
| 179 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 180 | Inst.Entity = reinterpret_cast<uintptr_t>(Template); |
| 181 | Inst.TemplateArgs = TemplateArgs; |
| 182 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 183 | Inst.InstantiationRange = InstantiationRange; |
| 184 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 185 | } |
| 186 | } |
| 187 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 188 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 189 | SourceLocation PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 190 | FunctionTemplateDecl *FunctionTemplate, |
| 191 | const TemplateArgument *TemplateArgs, |
| 192 | unsigned NumTemplateArgs, |
| 193 | ActiveTemplateInstantiation::InstantiationKind Kind, |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 194 | sema::TemplateDeductionInfo &DeductionInfo, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 195 | SourceRange InstantiationRange) |
Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame^] | 196 | : SemaRef(SemaRef) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 197 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 198 | Invalid = CheckInstantiationDepth(PointOfInstantiation, |
| 199 | InstantiationRange); |
| 200 | if (!Invalid) { |
| 201 | ActiveTemplateInstantiation Inst; |
| 202 | Inst.Kind = Kind; |
| 203 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 204 | Inst.Entity = reinterpret_cast<uintptr_t>(FunctionTemplate); |
| 205 | Inst.TemplateArgs = TemplateArgs; |
| 206 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 207 | Inst.DeductionInfo = &DeductionInfo; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 208 | Inst.InstantiationRange = InstantiationRange; |
| 209 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 210 | |
| 211 | if (!Inst.isInstantiationRecord()) |
| 212 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 216 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 217 | SourceLocation PointOfInstantiation, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 218 | ClassTemplatePartialSpecializationDecl *PartialSpec, |
| 219 | const TemplateArgument *TemplateArgs, |
| 220 | unsigned NumTemplateArgs, |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 221 | sema::TemplateDeductionInfo &DeductionInfo, |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 222 | SourceRange InstantiationRange) |
| 223 | : SemaRef(SemaRef) { |
| 224 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 225 | Invalid = false; |
| 226 | |
| 227 | ActiveTemplateInstantiation Inst; |
| 228 | Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution; |
| 229 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 230 | Inst.Entity = reinterpret_cast<uintptr_t>(PartialSpec); |
| 231 | Inst.TemplateArgs = TemplateArgs; |
| 232 | Inst.NumTemplateArgs = NumTemplateArgs; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 233 | Inst.DeductionInfo = &DeductionInfo; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 234 | Inst.InstantiationRange = InstantiationRange; |
| 235 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 236 | |
| 237 | assert(!Inst.isInstantiationRecord()); |
| 238 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 | Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 242 | SourceLocation PointOfInstantiation, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 243 | ParmVarDecl *Param, |
| 244 | const TemplateArgument *TemplateArgs, |
| 245 | unsigned NumTemplateArgs, |
| 246 | SourceRange InstantiationRange) |
| 247 | : SemaRef(SemaRef) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 248 | |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 249 | Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 250 | |
| 251 | if (!Invalid) { |
| 252 | ActiveTemplateInstantiation Inst; |
| 253 | Inst.Kind |
| 254 | = ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 255 | Inst.PointOfInstantiation = PointOfInstantiation; |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 256 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 257 | Inst.TemplateArgs = TemplateArgs; |
| 258 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 259 | Inst.InstantiationRange = InstantiationRange; |
| 260 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 261 | } |
| 262 | } |
| 263 | |
| 264 | Sema::InstantiatingTemplate:: |
| 265 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 266 | TemplateDecl *Template, |
| 267 | NonTypeTemplateParmDecl *Param, |
| 268 | const TemplateArgument *TemplateArgs, |
| 269 | unsigned NumTemplateArgs, |
| 270 | SourceRange InstantiationRange) : SemaRef(SemaRef) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 271 | Invalid = false; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 272 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 273 | ActiveTemplateInstantiation Inst; |
| 274 | Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution; |
| 275 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 276 | Inst.Template = Template; |
| 277 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 278 | Inst.TemplateArgs = TemplateArgs; |
| 279 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 280 | Inst.InstantiationRange = InstantiationRange; |
| 281 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 282 | |
| 283 | assert(!Inst.isInstantiationRecord()); |
| 284 | ++SemaRef.NonInstantiationEntries; |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | Sema::InstantiatingTemplate:: |
| 288 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 289 | TemplateDecl *Template, |
| 290 | TemplateTemplateParmDecl *Param, |
| 291 | const TemplateArgument *TemplateArgs, |
| 292 | unsigned NumTemplateArgs, |
| 293 | SourceRange InstantiationRange) : SemaRef(SemaRef) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 294 | Invalid = false; |
| 295 | ActiveTemplateInstantiation Inst; |
| 296 | Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution; |
| 297 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 298 | Inst.Template = Template; |
| 299 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 300 | Inst.TemplateArgs = TemplateArgs; |
| 301 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 302 | Inst.InstantiationRange = InstantiationRange; |
| 303 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 304 | |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 305 | assert(!Inst.isInstantiationRecord()); |
| 306 | ++SemaRef.NonInstantiationEntries; |
| 307 | } |
| 308 | |
| 309 | Sema::InstantiatingTemplate:: |
| 310 | InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation, |
| 311 | TemplateDecl *Template, |
| 312 | NamedDecl *Param, |
| 313 | const TemplateArgument *TemplateArgs, |
| 314 | unsigned NumTemplateArgs, |
| 315 | SourceRange InstantiationRange) : SemaRef(SemaRef) { |
| 316 | Invalid = false; |
| 317 | |
| 318 | ActiveTemplateInstantiation Inst; |
| 319 | Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking; |
| 320 | Inst.PointOfInstantiation = PointOfInstantiation; |
| 321 | Inst.Template = Template; |
| 322 | Inst.Entity = reinterpret_cast<uintptr_t>(Param); |
| 323 | Inst.TemplateArgs = TemplateArgs; |
| 324 | Inst.NumTemplateArgs = NumTemplateArgs; |
| 325 | Inst.InstantiationRange = InstantiationRange; |
| 326 | SemaRef.ActiveTemplateInstantiations.push_back(Inst); |
| 327 | |
| 328 | assert(!Inst.isInstantiationRecord()); |
| 329 | ++SemaRef.NonInstantiationEntries; |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 332 | void Sema::InstantiatingTemplate::Clear() { |
| 333 | if (!Invalid) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 334 | if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) { |
| 335 | assert(SemaRef.NonInstantiationEntries > 0); |
| 336 | --SemaRef.NonInstantiationEntries; |
| 337 | } |
| 338 | |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 339 | SemaRef.ActiveTemplateInstantiations.pop_back(); |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 340 | Invalid = true; |
| 341 | } |
Douglas Gregor | 26dce44 | 2009-03-10 00:06:19 +0000 | [diff] [blame] | 342 | } |
| 343 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 344 | bool Sema::InstantiatingTemplate::CheckInstantiationDepth( |
| 345 | SourceLocation PointOfInstantiation, |
| 346 | SourceRange InstantiationRange) { |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 347 | assert(SemaRef.NonInstantiationEntries <= |
| 348 | SemaRef.ActiveTemplateInstantiations.size()); |
| 349 | if ((SemaRef.ActiveTemplateInstantiations.size() - |
| 350 | SemaRef.NonInstantiationEntries) |
| 351 | <= SemaRef.getLangOptions().InstantiationDepth) |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 352 | return false; |
| 353 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 354 | SemaRef.Diag(PointOfInstantiation, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 355 | diag::err_template_recursion_depth_exceeded) |
| 356 | << SemaRef.getLangOptions().InstantiationDepth |
| 357 | << InstantiationRange; |
| 358 | SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth) |
| 359 | << SemaRef.getLangOptions().InstantiationDepth; |
| 360 | return true; |
| 361 | } |
| 362 | |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 363 | /// \brief Prints the current instantiation stack through a series of |
| 364 | /// notes. |
| 365 | void Sema::PrintInstantiationStack() { |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 366 | // Determine which template instantiations to skip, if any. |
| 367 | unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart; |
| 368 | unsigned Limit = Diags.getTemplateBacktraceLimit(); |
| 369 | if (Limit && Limit < ActiveTemplateInstantiations.size()) { |
| 370 | SkipStart = Limit / 2 + Limit % 2; |
| 371 | SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2; |
| 372 | } |
| 373 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 374 | // 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] | 375 | unsigned InstantiationIdx = 0; |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 376 | for (llvm::SmallVector<ActiveTemplateInstantiation, 16>::reverse_iterator |
| 377 | Active = ActiveTemplateInstantiations.rbegin(), |
| 378 | ActiveEnd = ActiveTemplateInstantiations.rend(); |
| 379 | Active != ActiveEnd; |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 380 | ++Active, ++InstantiationIdx) { |
| 381 | // Skip this instantiation? |
| 382 | if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) { |
| 383 | if (InstantiationIdx == SkipStart) { |
| 384 | // Note that we're skipping instantiations. |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 385 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 575cf37 | 2010-04-20 07:18:24 +0000 | [diff] [blame] | 386 | diag::note_instantiation_contexts_suppressed) |
| 387 | << unsigned(ActiveTemplateInstantiations.size() - Limit); |
| 388 | } |
| 389 | continue; |
| 390 | } |
| 391 | |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 392 | switch (Active->Kind) { |
| 393 | case ActiveTemplateInstantiation::TemplateInstantiation: { |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 394 | Decl *D = reinterpret_cast<Decl *>(Active->Entity); |
| 395 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) { |
| 396 | unsigned DiagID = diag::note_template_member_class_here; |
| 397 | if (isa<ClassTemplateSpecializationDecl>(Record)) |
| 398 | DiagID = diag::note_template_class_instantiation_here; |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 399 | Diags.Report(Active->PointOfInstantiation, DiagID) |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 400 | << Context.getTypeDeclType(Record) |
| 401 | << Active->InstantiationRange; |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 402 | } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 403 | unsigned DiagID; |
| 404 | if (Function->getPrimaryTemplate()) |
| 405 | DiagID = diag::note_function_template_spec_here; |
| 406 | else |
| 407 | DiagID = diag::note_template_member_function_here; |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 408 | Diags.Report(Active->PointOfInstantiation, DiagID) |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 409 | << Function |
| 410 | << Active->InstantiationRange; |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 411 | } else { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 412 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 413 | diag::note_template_static_data_member_def_here) |
| 414 | << cast<VarDecl>(D) |
| 415 | << Active->InstantiationRange; |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 416 | } |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 417 | break; |
| 418 | } |
| 419 | |
| 420 | case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: { |
| 421 | TemplateDecl *Template = cast<TemplateDecl>((Decl *)Active->Entity); |
| 422 | std::string TemplateArgsStr |
Douglas Gregor | 7532dc6 | 2009-03-30 22:58:21 +0000 | [diff] [blame] | 423 | = TemplateSpecializationType::PrintTemplateArgumentList( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 424 | Active->TemplateArgs, |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 425 | Active->NumTemplateArgs, |
| 426 | Context.PrintingPolicy); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 427 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 428 | diag::note_default_arg_instantiation_here) |
| 429 | << (Template->getNameAsString() + TemplateArgsStr) |
| 430 | << Active->InstantiationRange; |
| 431 | break; |
| 432 | } |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 433 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 434 | case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 435 | FunctionTemplateDecl *FnTmpl |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 436 | = cast<FunctionTemplateDecl>((Decl *)Active->Entity); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 437 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 438 | diag::note_explicit_template_arg_substitution_here) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 439 | << FnTmpl |
| 440 | << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(), |
| 441 | Active->TemplateArgs, |
| 442 | Active->NumTemplateArgs) |
| 443 | << Active->InstantiationRange; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 444 | break; |
| 445 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 446 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 447 | case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution: |
| 448 | if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 449 | = dyn_cast<ClassTemplatePartialSpecializationDecl>( |
| 450 | (Decl *)Active->Entity)) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 451 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 452 | diag::note_partial_spec_deduct_instantiation_here) |
| 453 | << Context.getTypeDeclType(PartialSpec) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 454 | << getTemplateArgumentBindingsText( |
| 455 | PartialSpec->getTemplateParameters(), |
| 456 | Active->TemplateArgs, |
| 457 | Active->NumTemplateArgs) |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 458 | << Active->InstantiationRange; |
| 459 | } else { |
| 460 | FunctionTemplateDecl *FnTmpl |
| 461 | = cast<FunctionTemplateDecl>((Decl *)Active->Entity); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 462 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 463 | diag::note_function_template_deduction_instantiation_here) |
Douglas Gregor | 5e40291 | 2010-03-30 20:35:20 +0000 | [diff] [blame] | 464 | << FnTmpl |
| 465 | << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(), |
| 466 | Active->TemplateArgs, |
| 467 | Active->NumTemplateArgs) |
| 468 | << Active->InstantiationRange; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 469 | } |
| 470 | break; |
Douglas Gregor | 637a409 | 2009-06-10 23:47:09 +0000 | [diff] [blame] | 471 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 472 | case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: { |
| 473 | ParmVarDecl *Param = cast<ParmVarDecl>((Decl *)Active->Entity); |
| 474 | FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 475 | |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 476 | std::string TemplateArgsStr |
| 477 | = TemplateSpecializationType::PrintTemplateArgumentList( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 478 | Active->TemplateArgs, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 479 | Active->NumTemplateArgs, |
| 480 | Context.PrintingPolicy); |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 481 | Diags.Report(Active->PointOfInstantiation, |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 482 | diag::note_default_function_arg_instantiation_here) |
Anders Carlsson | 6bc107b | 2009-09-05 05:38:54 +0000 | [diff] [blame] | 483 | << (FD->getNameAsString() + TemplateArgsStr) |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 484 | << Active->InstantiationRange; |
| 485 | break; |
| 486 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 487 | |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 488 | case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: { |
| 489 | NamedDecl *Parm = cast<NamedDecl>((Decl *)Active->Entity); |
| 490 | std::string Name; |
| 491 | if (!Parm->getName().empty()) |
| 492 | Name = std::string(" '") + Parm->getName().str() + "'"; |
| 493 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 494 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 495 | diag::note_prior_template_arg_substitution) |
| 496 | << isa<TemplateTemplateParmDecl>(Parm) |
| 497 | << Name |
| 498 | << getTemplateArgumentBindingsText( |
| 499 | Active->Template->getTemplateParameters(), |
| 500 | Active->TemplateArgs, |
| 501 | Active->NumTemplateArgs) |
| 502 | << Active->InstantiationRange; |
| 503 | break; |
| 504 | } |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 505 | |
| 506 | case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 507 | Diags.Report(Active->PointOfInstantiation, |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 508 | diag::note_template_default_arg_checking) |
| 509 | << getTemplateArgumentBindingsText( |
| 510 | Active->Template->getTemplateParameters(), |
| 511 | Active->TemplateArgs, |
| 512 | Active->NumTemplateArgs) |
| 513 | << Active->InstantiationRange; |
| 514 | break; |
| 515 | } |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 516 | } |
Douglas Gregor | ee1828a | 2009-03-10 18:03:33 +0000 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 520 | TemplateDeductionInfo *Sema::isSFINAEContext() const { |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 521 | using llvm::SmallVector; |
| 522 | for (SmallVector<ActiveTemplateInstantiation, 16>::const_reverse_iterator |
| 523 | Active = ActiveTemplateInstantiations.rbegin(), |
| 524 | ActiveEnd = ActiveTemplateInstantiations.rend(); |
| 525 | Active != ActiveEnd; |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 526 | ++Active) |
| 527 | { |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 528 | switch(Active->Kind) { |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 529 | case ActiveTemplateInstantiation::TemplateInstantiation: |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 530 | case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 531 | // This is a template instantiation, so there is no SFINAE. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 532 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 534 | case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 535 | case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 536 | case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: |
Douglas Gregor | 9148c3f | 2009-11-11 19:13:48 +0000 | [diff] [blame] | 537 | // A default template argument instantiation and substitution into |
| 538 | // template parameters with arguments for prior parameters may or may |
| 539 | // not be a SFINAE context; look further up the stack. |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 540 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 541 | |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 542 | case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: |
| 543 | case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution: |
| 544 | // We're either substitution explicitly-specified template arguments |
| 545 | // or deduced template arguments, so SFINAE applies. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 546 | assert(Active->DeductionInfo && "Missing deduction info pointer"); |
| 547 | return Active->DeductionInfo; |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 548 | } |
| 549 | } |
| 550 | |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 551 | return 0; |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 554 | //===----------------------------------------------------------------------===/ |
| 555 | // Template Instantiation for Types |
| 556 | //===----------------------------------------------------------------------===/ |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 557 | namespace { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 558 | class TemplateInstantiator : public TreeTransform<TemplateInstantiator> { |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 559 | const MultiLevelTemplateArgumentList &TemplateArgs; |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 560 | SourceLocation Loc; |
| 561 | DeclarationName Entity; |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 562 | |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 563 | public: |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 564 | typedef TreeTransform<TemplateInstantiator> inherited; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 565 | |
| 566 | TemplateInstantiator(Sema &SemaRef, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 567 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 568 | SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 569 | DeclarationName Entity) |
| 570 | : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc), |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 571 | Entity(Entity) { } |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 572 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 573 | /// \brief Determine whether the given type \p T has already been |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 574 | /// transformed. |
| 575 | /// |
| 576 | /// For the purposes of template instantiation, a type has already been |
| 577 | /// transformed if it is NULL or if it is not dependent. |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 578 | bool AlreadyTransformed(QualType T); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 579 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 580 | /// \brief Returns the location of the entity being instantiated, if known. |
| 581 | SourceLocation getBaseLocation() { return Loc; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 582 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 583 | /// \brief Returns the name of the entity being instantiated, if any. |
| 584 | DeclarationName getBaseEntity() { return Entity; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 585 | |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 586 | /// \brief Sets the "base" location and entity when that |
| 587 | /// information is known based on another transformation. |
| 588 | void setBase(SourceLocation Loc, DeclarationName Entity) { |
| 589 | this->Loc = Loc; |
| 590 | this->Entity = Entity; |
| 591 | } |
| 592 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 593 | /// \brief Transform the given declaration by instantiating a reference to |
| 594 | /// this declaration. |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 595 | Decl *TransformDecl(SourceLocation Loc, Decl *D); |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 596 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 597 | /// \brief Transform the definition of the given declaration by |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 598 | /// instantiating it. |
Douglas Gregor | aac571c | 2010-03-01 17:25:41 +0000 | [diff] [blame] | 599 | Decl *TransformDefinition(SourceLocation Loc, Decl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 600 | |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 601 | /// \bried Transform the first qualifier within a scope by instantiating the |
| 602 | /// declaration. |
| 603 | NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc); |
| 604 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 605 | /// \brief Rebuild the exception declaration and register the declaration |
| 606 | /// as an instantiated local. |
Douglas Gregor | 83cb942 | 2010-09-09 17:09:21 +0000 | [diff] [blame] | 607 | VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 608 | TypeSourceInfo *Declarator, |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 609 | IdentifierInfo *Name, |
Douglas Gregor | 83cb942 | 2010-09-09 17:09:21 +0000 | [diff] [blame] | 610 | SourceLocation Loc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 611 | |
Douglas Gregor | be270a0 | 2010-04-26 17:57:08 +0000 | [diff] [blame] | 612 | /// \brief Rebuild the Objective-C exception declaration and register the |
| 613 | /// declaration as an instantiated local. |
| 614 | VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, |
| 615 | TypeSourceInfo *TSInfo, QualType T); |
| 616 | |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 617 | /// \brief Check for tag mismatches when instantiating an |
| 618 | /// elaborated type. |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 619 | QualType RebuildElaboratedType(SourceLocation KeywordLoc, |
| 620 | ElaboratedTypeKeyword Keyword, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 621 | NestedNameSpecifier *NNS, QualType T); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 622 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 623 | ExprResult TransformPredefinedExpr(PredefinedExpr *E); |
| 624 | ExprResult TransformDeclRefExpr(DeclRefExpr *E); |
| 625 | ExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E); |
| 626 | ExprResult TransformTemplateParmRefExpr(DeclRefExpr *E, |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 627 | NonTypeTemplateParmDecl *D); |
Sebastian Redl | a29e51b | 2009-11-08 13:56:19 +0000 | [diff] [blame] | 628 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 629 | QualType TransformFunctionProtoType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 630 | FunctionProtoTypeLoc TL); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 631 | ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm); |
| 632 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 633 | /// \brief Transforms a template type parameter type by performing |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 634 | /// substitution of the corresponding template type argument. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 635 | QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 636 | TemplateTypeParmTypeLoc TL); |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 637 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 638 | ExprResult TransformCallExpr(CallExpr *CE) { |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 639 | getSema().CallsUndergoingInstantiation.push_back(CE); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 640 | ExprResult Result = |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 641 | TreeTransform<TemplateInstantiator>::TransformCallExpr(CE); |
| 642 | getSema().CallsUndergoingInstantiation.pop_back(); |
| 643 | return move(Result); |
| 644 | } |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 645 | }; |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 648 | bool TemplateInstantiator::AlreadyTransformed(QualType T) { |
| 649 | if (T.isNull()) |
| 650 | return true; |
| 651 | |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 652 | if (T->isDependentType() || T->isVariablyModifiedType()) |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 653 | return false; |
| 654 | |
| 655 | getSema().MarkDeclarationsReferencedInType(Loc, T); |
| 656 | return true; |
| 657 | } |
| 658 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 659 | Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 660 | if (!D) |
| 661 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 662 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 663 | if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) { |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 664 | if (TTP->getDepth() < TemplateArgs.getNumLevels()) { |
Douglas Gregor | 6d3e627 | 2010-02-05 19:54:12 +0000 | [diff] [blame] | 665 | // If the corresponding template argument is NULL or non-existent, it's |
| 666 | // because we are performing instantiation from explicitly-specified |
| 667 | // template arguments in a function template, but there were some |
| 668 | // arguments left unspecified. |
| 669 | if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(), |
| 670 | TTP->getPosition())) |
| 671 | return D; |
| 672 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 673 | TemplateName Template |
| 674 | = TemplateArgs(TTP->getDepth(), TTP->getPosition()).getAsTemplate(); |
| 675 | assert(!Template.isNull() && Template.getAsTemplateDecl() && |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 676 | "Wrong kind of template template argument"); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 677 | return Template.getAsTemplateDecl(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 678 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 680 | // Fall through to find the instantiated declaration for this template |
| 681 | // template parameter. |
Douglas Gregor | d1067e5 | 2009-08-06 06:41:21 +0000 | [diff] [blame] | 682 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 683 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 684 | return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs); |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Douglas Gregor | aac571c | 2010-03-01 17:25:41 +0000 | [diff] [blame] | 687 | Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) { |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 688 | Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs); |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 689 | if (!Inst) |
| 690 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 691 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 692 | getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst); |
| 693 | return Inst; |
| 694 | } |
| 695 | |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 696 | NamedDecl * |
| 697 | TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D, |
| 698 | SourceLocation Loc) { |
| 699 | // If the first part of the nested-name-specifier was a template type |
| 700 | // parameter, instantiate that type parameter down to a tag type. |
| 701 | if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) { |
| 702 | const TemplateTypeParmType *TTP |
| 703 | = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD)); |
| 704 | if (TTP->getDepth() < TemplateArgs.getNumLevels()) { |
| 705 | QualType T = TemplateArgs(TTP->getDepth(), TTP->getIndex()).getAsType(); |
| 706 | if (T.isNull()) |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 707 | return cast_or_null<NamedDecl>(TransformDecl(Loc, D)); |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 708 | |
| 709 | if (const TagType *Tag = T->getAs<TagType>()) |
| 710 | return Tag->getDecl(); |
| 711 | |
| 712 | // The resulting type is not a tag; complain. |
| 713 | getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T; |
| 714 | return 0; |
| 715 | } |
| 716 | } |
| 717 | |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 718 | return cast_or_null<NamedDecl>(TransformDecl(Loc, D)); |
Douglas Gregor | 6cd2198 | 2009-10-20 05:58:46 +0000 | [diff] [blame] | 719 | } |
| 720 | |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 721 | VarDecl * |
| 722 | TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 723 | TypeSourceInfo *Declarator, |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 724 | IdentifierInfo *Name, |
Douglas Gregor | 83cb942 | 2010-09-09 17:09:21 +0000 | [diff] [blame] | 725 | SourceLocation Loc) { |
| 726 | VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator, |
| 727 | Name, Loc); |
Douglas Gregor | be270a0 | 2010-04-26 17:57:08 +0000 | [diff] [blame] | 728 | if (Var) |
| 729 | getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); |
| 730 | return Var; |
| 731 | } |
| 732 | |
| 733 | VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, |
| 734 | TypeSourceInfo *TSInfo, |
| 735 | QualType T) { |
| 736 | VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); |
| 737 | if (Var) |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 738 | getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); |
| 739 | return Var; |
| 740 | } |
| 741 | |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 742 | QualType |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 743 | TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc, |
| 744 | ElaboratedTypeKeyword Keyword, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 745 | NestedNameSpecifier *NNS, |
| 746 | QualType T) { |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 747 | if (const TagType *TT = T->getAs<TagType>()) { |
| 748 | TagDecl* TD = TT->getDecl(); |
| 749 | |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 750 | SourceLocation TagLocation = KeywordLoc; |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 751 | |
| 752 | // FIXME: type might be anonymous. |
| 753 | IdentifierInfo *Id = TD->getIdentifier(); |
| 754 | |
| 755 | // TODO: should we even warn on struct/class mismatches for this? Seems |
| 756 | // like it's likely to produce a lot of spurious errors. |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 757 | if (Keyword != ETK_None && Keyword != ETK_Typename) { |
| 758 | TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword); |
| 759 | if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, TagLocation, *Id)) { |
| 760 | SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag) |
| 761 | << Id |
| 762 | << FixItHint::CreateReplacement(SourceRange(TagLocation), |
| 763 | TD->getKindName()); |
| 764 | SemaRef.Diag(TD->getLocation(), diag::note_previous_use); |
| 765 | } |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | |
John McCall | 21e413f | 2010-11-04 19:04:38 +0000 | [diff] [blame] | 769 | return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc, |
| 770 | Keyword, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 771 | NNS, T); |
John McCall | c4e7019 | 2009-09-11 04:59:25 +0000 | [diff] [blame] | 772 | } |
| 773 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 774 | ExprResult |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 775 | TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 776 | if (!E->isTypeDependent()) |
John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 777 | return SemaRef.Owned(E); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 778 | |
| 779 | FunctionDecl *currentDecl = getSema().getCurFunctionDecl(); |
| 780 | assert(currentDecl && "Must have current function declaration when " |
| 781 | "instantiating."); |
| 782 | |
| 783 | PredefinedExpr::IdentType IT = E->getIdentType(); |
| 784 | |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 785 | unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 786 | |
| 787 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 788 | QualType ResTy = getSema().Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 789 | ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI, |
| 790 | ArrayType::Normal, 0); |
| 791 | PredefinedExpr *PE = |
| 792 | new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT); |
| 793 | return getSema().Owned(PE); |
| 794 | } |
| 795 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 796 | ExprResult |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 797 | TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, |
Douglas Gregor | dcee980 | 2010-02-08 23:41:45 +0000 | [diff] [blame] | 798 | NonTypeTemplateParmDecl *NTTP) { |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 799 | // If the corresponding template argument is NULL or non-existent, it's |
| 800 | // because we are performing instantiation from explicitly-specified |
| 801 | // template arguments in a function template, but there were some |
| 802 | // arguments left unspecified. |
| 803 | if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(), |
| 804 | NTTP->getPosition())) |
John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 805 | return SemaRef.Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 806 | |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 807 | const TemplateArgument &Arg = TemplateArgs(NTTP->getDepth(), |
| 808 | NTTP->getPosition()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 809 | |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 810 | // The template argument itself might be an expression, in which |
| 811 | // case we just return that expression. |
| 812 | if (Arg.getKind() == TemplateArgument::Expression) |
John McCall | 3fa5cae | 2010-10-26 07:05:15 +0000 | [diff] [blame] | 813 | return SemaRef.Owned(Arg.getAsExpr()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 814 | |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 815 | if (Arg.getKind() == TemplateArgument::Declaration) { |
| 816 | ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 817 | |
John McCall | 645cf44 | 2010-02-06 10:23:53 +0000 | [diff] [blame] | 818 | // Find the instantiation of the template argument. This is |
| 819 | // required for nested templates. |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 820 | VD = cast_or_null<ValueDecl>( |
Douglas Gregor | 7c1e98f | 2010-03-01 15:56:25 +0000 | [diff] [blame] | 821 | getSema().FindInstantiatedDecl(E->getLocation(), |
| 822 | VD, TemplateArgs)); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 823 | if (!VD) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 824 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 825 | |
John McCall | 645cf44 | 2010-02-06 10:23:53 +0000 | [diff] [blame] | 826 | // Derive the type we want the substituted decl to have. This had |
| 827 | // better be non-dependent, or these checks will have serious problems. |
| 828 | QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, |
Douglas Gregor | dcee980 | 2010-02-08 23:41:45 +0000 | [diff] [blame] | 829 | E->getLocation(), |
| 830 | DeclarationName()); |
John McCall | 645cf44 | 2010-02-06 10:23:53 +0000 | [diff] [blame] | 831 | assert(!TargetType.isNull() && "type substitution failed for param type"); |
| 832 | assert(!TargetType->isDependentType() && "param type still dependent"); |
Douglas Gregor | 02024a9 | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 833 | return SemaRef.BuildExpressionFromDeclTemplateArgument(Arg, |
| 834 | TargetType, |
| 835 | E->getLocation()); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 836 | } |
| 837 | |
Douglas Gregor | 02024a9 | 2010-03-28 02:42:43 +0000 | [diff] [blame] | 838 | return SemaRef.BuildExpressionFromIntegralTemplateArgument(Arg, |
| 839 | E->getSourceRange().getBegin()); |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 843 | ExprResult |
John McCall | b8fc053 | 2010-02-06 08:42:39 +0000 | [diff] [blame] | 844 | TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) { |
| 845 | NamedDecl *D = E->getDecl(); |
| 846 | if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) { |
| 847 | if (NTTP->getDepth() < TemplateArgs.getNumLevels()) |
| 848 | return TransformTemplateParmRefExpr(E, NTTP); |
Douglas Gregor | 550d9b2 | 2009-10-31 17:21:17 +0000 | [diff] [blame] | 849 | |
| 850 | // We have a non-type template parameter that isn't fully substituted; |
| 851 | // FindInstantiatedDecl will find it in the local instantiation scope. |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 852 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 853 | |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 854 | return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E); |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 855 | } |
| 856 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 857 | ExprResult TemplateInstantiator::TransformCXXDefaultArgExpr( |
John McCall | 454feb9 | 2009-12-08 09:21:05 +0000 | [diff] [blame] | 858 | CXXDefaultArgExpr *E) { |
Sebastian Redl | a29e51b | 2009-11-08 13:56:19 +0000 | [diff] [blame] | 859 | assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())-> |
| 860 | getDescribedFunctionTemplate() && |
| 861 | "Default arg expressions are never formed in dependent cases."); |
Douglas Gregor | 036aed1 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 862 | return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(), |
| 863 | cast<FunctionDecl>(E->getParam()->getDeclContext()), |
| 864 | E->getParam()); |
Sebastian Redl | a29e51b | 2009-11-08 13:56:19 +0000 | [diff] [blame] | 865 | } |
| 866 | |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 867 | QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 868 | FunctionProtoTypeLoc TL) { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 869 | // We need a local instantiation scope for this function prototype. |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 870 | LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true); |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 871 | return inherited::TransformFunctionProtoType(TLB, TL); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | ParmVarDecl * |
| 875 | TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm) { |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 876 | return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs); |
John McCall | 21ef0fa | 2010-03-11 09:03:00 +0000 | [diff] [blame] | 877 | } |
| 878 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 879 | QualType |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 880 | TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB, |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 881 | TemplateTypeParmTypeLoc TL) { |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 882 | TemplateTypeParmType *T = TL.getTypePtr(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 883 | if (T->getDepth() < TemplateArgs.getNumLevels()) { |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 884 | // Replace the template type parameter with its corresponding |
| 885 | // template argument. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 886 | |
| 887 | // If the corresponding template argument is NULL or doesn't exist, it's |
| 888 | // because we are performing instantiation from explicitly-specified |
| 889 | // template arguments in a function template class, but there were some |
Douglas Gregor | 16134c6 | 2009-07-01 00:28:38 +0000 | [diff] [blame] | 890 | // arguments left unspecified. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 891 | if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) { |
| 892 | TemplateTypeParmTypeLoc NewTL |
| 893 | = TLB.push<TemplateTypeParmTypeLoc>(TL.getType()); |
| 894 | NewTL.setNameLoc(TL.getNameLoc()); |
| 895 | return TL.getType(); |
| 896 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 897 | |
| 898 | assert(TemplateArgs(T->getDepth(), T->getIndex()).getKind() |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 899 | == TemplateArgument::Type && |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 900 | "Template argument kind mismatch"); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 901 | |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 902 | QualType Replacement |
| 903 | = TemplateArgs(T->getDepth(), T->getIndex()).getAsType(); |
| 904 | |
| 905 | // TODO: only do this uniquing once, at the start of instantiation. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 906 | QualType Result |
| 907 | = getSema().Context.getSubstTemplateTypeParmType(T, Replacement); |
| 908 | SubstTemplateTypeParmTypeLoc NewTL |
| 909 | = TLB.push<SubstTemplateTypeParmTypeLoc>(Result); |
| 910 | NewTL.setNameLoc(TL.getNameLoc()); |
| 911 | return Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 912 | } |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 913 | |
| 914 | // The template type parameter comes from an inner template (e.g., |
| 915 | // the template parameter list of a member template inside the |
| 916 | // template we are instantiating). Create a new template type |
| 917 | // parameter with the template "level" reduced by one. |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 918 | QualType Result |
| 919 | = getSema().Context.getTemplateTypeParmType(T->getDepth() |
| 920 | - TemplateArgs.getNumLevels(), |
| 921 | T->getIndex(), |
| 922 | T->isParameterPack(), |
Douglas Gregor | efed5c8 | 2010-06-16 15:23:05 +0000 | [diff] [blame] | 923 | T->getName()); |
John McCall | a2becad | 2009-10-21 00:40:46 +0000 | [diff] [blame] | 924 | TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result); |
| 925 | NewTL.setNameLoc(TL.getNameLoc()); |
| 926 | return Result; |
Douglas Gregor | cd281c3 | 2009-02-28 00:25:32 +0000 | [diff] [blame] | 927 | } |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 928 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 929 | /// \brief Perform substitution on the type T with a given set of template |
| 930 | /// arguments. |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 931 | /// |
| 932 | /// This routine substitutes the given template arguments into the |
| 933 | /// type T and produces the instantiated type. |
| 934 | /// |
| 935 | /// \param T the type into which the template arguments will be |
| 936 | /// substituted. If this type is not dependent, it will be returned |
| 937 | /// immediately. |
| 938 | /// |
| 939 | /// \param TemplateArgs the template arguments that will be |
| 940 | /// substituted for the top-level template parameters within T. |
| 941 | /// |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 942 | /// \param Loc the location in the source code where this substitution |
| 943 | /// is being performed. It will typically be the location of the |
| 944 | /// declarator (if we're instantiating the type of some declaration) |
| 945 | /// or the location of the type in the source code (if, e.g., we're |
| 946 | /// instantiating the type of a cast expression). |
| 947 | /// |
| 948 | /// \param Entity the name of the entity associated with a declaration |
| 949 | /// being instantiated (if any). May be empty to indicate that there |
| 950 | /// is no such entity (if, e.g., this is a type that occurs as part of |
| 951 | /// a cast expression) or that the entity has no name (e.g., an |
| 952 | /// unnamed function parameter). |
| 953 | /// |
| 954 | /// \returns If the instantiation succeeds, the instantiated |
| 955 | /// type. Otherwise, produces diagnostics and returns a NULL type. |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 956 | TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T, |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 957 | const MultiLevelTemplateArgumentList &Args, |
| 958 | SourceLocation Loc, |
| 959 | DeclarationName Entity) { |
| 960 | assert(!ActiveTemplateInstantiations.empty() && |
| 961 | "Cannot perform an instantiation without some context on the " |
| 962 | "instantiation stack"); |
| 963 | |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 964 | if (!T->getType()->isDependentType() && |
| 965 | !T->getType()->isVariablyModifiedType()) |
John McCall | cd7ba1c | 2009-10-21 00:58:09 +0000 | [diff] [blame] | 966 | return T; |
| 967 | |
| 968 | TemplateInstantiator Instantiator(*this, Args, Loc, Entity); |
| 969 | return Instantiator.TransformType(T); |
| 970 | } |
| 971 | |
| 972 | /// Deprecated form of the above. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 973 | QualType Sema::SubstType(QualType T, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 974 | const MultiLevelTemplateArgumentList &TemplateArgs, |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 975 | SourceLocation Loc, DeclarationName Entity) { |
Douglas Gregor | df667e7 | 2009-03-10 20:44:00 +0000 | [diff] [blame] | 976 | assert(!ActiveTemplateInstantiations.empty() && |
| 977 | "Cannot perform an instantiation without some context on the " |
| 978 | "instantiation stack"); |
| 979 | |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 980 | // If T is not a dependent type or a variably-modified type, there |
| 981 | // is nothing to do. |
| 982 | if (!T->isDependentType() && !T->isVariablyModifiedType()) |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 983 | return T; |
| 984 | |
Douglas Gregor | 577f75a | 2009-08-04 16:50:30 +0000 | [diff] [blame] | 985 | TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity); |
| 986 | return Instantiator.TransformType(T); |
Douglas Gregor | 99ebf65 | 2009-02-27 19:31:52 +0000 | [diff] [blame] | 987 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 988 | |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 989 | static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) { |
Douglas Gregor | 836adf6 | 2010-05-24 17:22:01 +0000 | [diff] [blame] | 990 | if (T->getType()->isDependentType() || T->getType()->isVariablyModifiedType()) |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 991 | return true; |
| 992 | |
| 993 | TypeLoc TL = T->getTypeLoc(); |
| 994 | if (!isa<FunctionProtoTypeLoc>(TL)) |
| 995 | return false; |
| 996 | |
| 997 | FunctionProtoTypeLoc FP = cast<FunctionProtoTypeLoc>(TL); |
| 998 | for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) { |
| 999 | ParmVarDecl *P = FP.getArg(I); |
| 1000 | |
| 1001 | // TODO: currently we always rebuild expressions. When we |
| 1002 | // properly get lazier about this, we should use the same |
| 1003 | // logic to avoid rebuilding prototypes here. |
| 1004 | if (P->hasInit()) |
| 1005 | return true; |
| 1006 | } |
| 1007 | |
| 1008 | return false; |
| 1009 | } |
| 1010 | |
| 1011 | /// A form of SubstType intended specifically for instantiating the |
| 1012 | /// type of a FunctionDecl. Its purpose is solely to force the |
| 1013 | /// instantiation of default-argument expressions. |
| 1014 | TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T, |
| 1015 | const MultiLevelTemplateArgumentList &Args, |
| 1016 | SourceLocation Loc, |
| 1017 | DeclarationName Entity) { |
| 1018 | assert(!ActiveTemplateInstantiations.empty() && |
| 1019 | "Cannot perform an instantiation without some context on the " |
| 1020 | "instantiation stack"); |
| 1021 | |
| 1022 | if (!NeedsInstantiationAsFunctionType(T)) |
| 1023 | return T; |
| 1024 | |
| 1025 | TemplateInstantiator Instantiator(*this, Args, Loc, Entity); |
| 1026 | |
| 1027 | TypeLocBuilder TLB; |
| 1028 | |
| 1029 | TypeLoc TL = T->getTypeLoc(); |
| 1030 | TLB.reserve(TL.getFullDataSize()); |
| 1031 | |
John McCall | 43fed0d | 2010-11-12 08:19:04 +0000 | [diff] [blame] | 1032 | QualType Result = Instantiator.TransformType(TLB, TL); |
John McCall | 6cd3b9f | 2010-04-09 17:38:44 +0000 | [diff] [blame] | 1033 | if (Result.isNull()) |
| 1034 | return 0; |
| 1035 | |
| 1036 | return TLB.getTypeSourceInfo(Context, Result); |
| 1037 | } |
| 1038 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1039 | ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm, |
| 1040 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
| 1041 | TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo(); |
| 1042 | TypeSourceInfo *NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), |
| 1043 | OldParm->getDeclName()); |
| 1044 | if (!NewDI) |
| 1045 | return 0; |
| 1046 | |
| 1047 | if (NewDI->getType()->isVoidType()) { |
| 1048 | Diag(OldParm->getLocation(), diag::err_param_with_void_type); |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(), |
| 1053 | NewDI, NewDI->getType(), |
| 1054 | OldParm->getIdentifier(), |
| 1055 | OldParm->getLocation(), |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1056 | OldParm->getStorageClass(), |
| 1057 | OldParm->getStorageClassAsWritten()); |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1058 | if (!NewParm) |
| 1059 | return 0; |
Douglas Gregor | 4469e8a | 2010-05-19 17:02:24 +0000 | [diff] [blame] | 1060 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1061 | // Mark the (new) default argument as uninstantiated (if any). |
| 1062 | if (OldParm->hasUninstantiatedDefaultArg()) { |
| 1063 | Expr *Arg = OldParm->getUninstantiatedDefaultArg(); |
| 1064 | NewParm->setUninstantiatedDefaultArg(Arg); |
Douglas Gregor | 8cfb7a3 | 2010-10-12 18:23:32 +0000 | [diff] [blame] | 1065 | } else if (OldParm->hasUnparsedDefaultArg()) { |
| 1066 | NewParm->setUnparsedDefaultArg(); |
| 1067 | UnparsedDefaultArgInstantiations[OldParm].push_back(NewParm); |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1068 | } else if (Expr *Arg = OldParm->getDefaultArg()) |
| 1069 | NewParm->setUninstantiatedDefaultArg(Arg); |
| 1070 | |
| 1071 | NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg()); |
| 1072 | |
| 1073 | CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm); |
Argyrios Kyrtzidis | e3041be | 2010-07-19 10:14:41 +0000 | [diff] [blame] | 1074 | // FIXME: OldParm may come from a FunctionProtoType, in which case CurContext |
| 1075 | // can be anything, is this right ? |
Fariborz Jahanian | 55a17c0 | 2010-07-13 21:05:02 +0000 | [diff] [blame] | 1076 | NewParm->setDeclContext(CurContext); |
Fariborz Jahanian | e7ffbe2 | 2010-07-13 20:05:58 +0000 | [diff] [blame] | 1077 | |
Douglas Gregor | cb27b0f | 2010-04-12 07:48:19 +0000 | [diff] [blame] | 1078 | return NewParm; |
| 1079 | } |
| 1080 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1081 | /// \brief Perform substitution on the base class specifiers of the |
| 1082 | /// given class template specialization. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1083 | /// |
| 1084 | /// Produces a diagnostic and returns true on error, returns false and |
| 1085 | /// attaches the instantiated base classes to the class template |
| 1086 | /// specialization if successful. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1087 | bool |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1088 | Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation, |
| 1089 | CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1090 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1091 | bool Invalid = false; |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 1092 | llvm::SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1093 | for (ClassTemplateSpecializationDecl::base_class_iterator |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1094 | Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end(); |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 1095 | Base != BaseEnd; ++Base) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1096 | if (!Base->getType()->isDependentType()) { |
Fariborz Jahanian | 71c6e71 | 2009-07-22 17:41:53 +0000 | [diff] [blame] | 1097 | InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base)); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1098 | continue; |
| 1099 | } |
| 1100 | |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 1101 | TypeSourceInfo *BaseTypeLoc = SubstType(Base->getTypeSourceInfo(), |
| 1102 | TemplateArgs, |
| 1103 | Base->getSourceRange().getBegin(), |
| 1104 | DeclarationName()); |
| 1105 | if (!BaseTypeLoc) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1106 | Invalid = true; |
| 1107 | continue; |
| 1108 | } |
| 1109 | |
| 1110 | if (CXXBaseSpecifier *InstantiatedBase |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1111 | = CheckBaseSpecifier(Instantiation, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1112 | Base->getSourceRange(), |
| 1113 | Base->isVirtual(), |
| 1114 | Base->getAccessSpecifierAsWritten(), |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 1115 | BaseTypeLoc)) |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1116 | InstantiatedBases.push_back(InstantiatedBase); |
| 1117 | else |
| 1118 | Invalid = true; |
| 1119 | } |
| 1120 | |
Douglas Gregor | 27b152f | 2009-03-10 18:52:44 +0000 | [diff] [blame] | 1121 | if (!Invalid && |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1122 | AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(), |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1123 | InstantiatedBases.size())) |
| 1124 | Invalid = true; |
| 1125 | |
| 1126 | return Invalid; |
| 1127 | } |
| 1128 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1129 | /// \brief Instantiate the definition of a class from a given pattern. |
| 1130 | /// |
| 1131 | /// \param PointOfInstantiation The point of instantiation within the |
| 1132 | /// source code. |
| 1133 | /// |
| 1134 | /// \param Instantiation is the declaration whose definition is being |
| 1135 | /// instantiated. This will be either a class template specialization |
| 1136 | /// or a member class of a class template specialization. |
| 1137 | /// |
| 1138 | /// \param Pattern is the pattern from which the instantiation |
| 1139 | /// occurs. This will be either the declaration of a class template or |
| 1140 | /// the declaration of a member class of a class template. |
| 1141 | /// |
| 1142 | /// \param TemplateArgs The template arguments to be substituted into |
| 1143 | /// the pattern. |
| 1144 | /// |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1145 | /// \param TSK the kind of implicit or explicit instantiation to perform. |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1146 | /// |
| 1147 | /// \param Complain whether to complain if the class cannot be instantiated due |
| 1148 | /// to the lack of a definition. |
| 1149 | /// |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1150 | /// \returns true if an error occurred, false otherwise. |
| 1151 | bool |
| 1152 | Sema::InstantiateClass(SourceLocation PointOfInstantiation, |
| 1153 | CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1154 | const MultiLevelTemplateArgumentList &TemplateArgs, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1155 | TemplateSpecializationKind TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1156 | bool Complain) { |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1157 | bool Invalid = false; |
John McCall | e29ba20 | 2009-08-20 01:44:21 +0000 | [diff] [blame] | 1158 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1159 | CXXRecordDecl *PatternDef |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 1160 | = cast_or_null<CXXRecordDecl>(Pattern->getDefinition()); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1161 | if (!PatternDef) { |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1162 | if (!Complain) { |
| 1163 | // Say nothing |
| 1164 | } else if (Pattern == Instantiation->getInstantiatedFromMemberClass()) { |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1165 | Diag(PointOfInstantiation, |
| 1166 | diag::err_implicit_instantiate_member_undefined) |
| 1167 | << Context.getTypeDeclType(Instantiation); |
| 1168 | Diag(Pattern->getLocation(), diag::note_member_of_template_here); |
| 1169 | } else { |
Douglas Gregor | 93dfdb1 | 2009-05-13 00:25:59 +0000 | [diff] [blame] | 1170 | Diag(PointOfInstantiation, diag::err_template_instantiate_undefined) |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1171 | << (TSK != TSK_ImplicitInstantiation) |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1172 | << Context.getTypeDeclType(Instantiation); |
| 1173 | Diag(Pattern->getLocation(), diag::note_template_decl_here); |
| 1174 | } |
| 1175 | return true; |
| 1176 | } |
| 1177 | Pattern = PatternDef; |
| 1178 | |
Douglas Gregor | 454885e | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 1179 | // \brief Record the point of instantiation. |
| 1180 | if (MemberSpecializationInfo *MSInfo |
| 1181 | = Instantiation->getMemberSpecializationInfo()) { |
| 1182 | MSInfo->setTemplateSpecializationKind(TSK); |
| 1183 | MSInfo->setPointOfInstantiation(PointOfInstantiation); |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1184 | } else if (ClassTemplateSpecializationDecl *Spec |
| 1185 | = dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) { |
| 1186 | Spec->setTemplateSpecializationKind(TSK); |
| 1187 | Spec->setPointOfInstantiation(PointOfInstantiation); |
Douglas Gregor | 454885e | 2009-10-15 15:54:05 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Douglas Gregor | d048bb7 | 2009-03-25 21:23:52 +0000 | [diff] [blame] | 1190 | InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1191 | if (Inst) |
| 1192 | return true; |
| 1193 | |
| 1194 | // Enter the scope of this instantiation. We don't use |
| 1195 | // PushDeclContext because we don't have a scope. |
John McCall | f581382 | 2010-04-29 00:35:03 +0000 | [diff] [blame] | 1196 | ContextRAII SavedContext(*this, Instantiation); |
Douglas Gregor | 9679caf | 2010-05-12 17:27:19 +0000 | [diff] [blame] | 1197 | EnterExpressionEvaluationContext EvalContext(*this, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1198 | Sema::PotentiallyEvaluated); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1199 | |
Douglas Gregor | 05030bb | 2010-03-24 01:33:17 +0000 | [diff] [blame] | 1200 | // If this is an instantiation of a local class, merge this local |
| 1201 | // instantiation scope with the enclosing scope. Otherwise, every |
| 1202 | // instantiation of a class has its own local instantiation scope. |
| 1203 | bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod(); |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1204 | LocalInstantiationScope Scope(*this, MergeWithParentScope); |
Douglas Gregor | 05030bb | 2010-03-24 01:33:17 +0000 | [diff] [blame] | 1205 | |
John McCall | 1d8d1cc | 2010-08-01 02:01:53 +0000 | [diff] [blame] | 1206 | // Pull attributes from the pattern onto the instantiation. |
| 1207 | InstantiateAttrs(TemplateArgs, Pattern, Instantiation); |
| 1208 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1209 | // Start the definition of this instantiation. |
| 1210 | Instantiation->startDefinition(); |
Douglas Gregor | 13c8577 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 1211 | |
| 1212 | Instantiation->setTagKind(Pattern->getTagKind()); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1213 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1214 | // Do substitution on the base class specifiers. |
| 1215 | if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs)) |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1216 | Invalid = true; |
| 1217 | |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1218 | TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1219 | llvm::SmallVector<Decl*, 4> Fields; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1220 | for (RecordDecl::decl_iterator Member = Pattern->decls_begin(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1221 | MemberEnd = Pattern->decls_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1222 | Member != MemberEnd; ++Member) { |
Argyrios Kyrtzidis | bb5e431 | 2010-11-04 03:18:57 +0000 | [diff] [blame] | 1223 | // Don't instantiate members not belonging in this semantic context. |
| 1224 | // e.g. for: |
| 1225 | // @code |
| 1226 | // template <int i> class A { |
| 1227 | // class B *g; |
| 1228 | // }; |
| 1229 | // @endcode |
| 1230 | // 'class B' has the template as lexical context but semantically it is |
| 1231 | // introduced in namespace scope. |
| 1232 | if ((*Member)->getDeclContext() != Pattern) |
| 1233 | continue; |
| 1234 | |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1235 | if ((*Member)->isInvalidDecl()) { |
| 1236 | Invalid = true; |
| 1237 | continue; |
| 1238 | } |
| 1239 | |
| 1240 | Decl *NewMember = Instantiator.Visit(*Member); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1241 | if (NewMember) { |
Eli Friedman | 721e77d | 2009-12-07 00:22:08 +0000 | [diff] [blame] | 1242 | if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember)) |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1243 | Fields.push_back(Field); |
Eli Friedman | 721e77d | 2009-12-07 00:22:08 +0000 | [diff] [blame] | 1244 | else if (NewMember->isInvalidDecl()) |
| 1245 | Invalid = true; |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1246 | } else { |
| 1247 | // FIXME: Eventually, a NULL return will mean that one of the |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1248 | // instantiations was a semantic disaster, and we'll want to set Invalid = |
| 1249 | // 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] | 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | // Finish checking fields. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1254 | ActOnFields(0, Instantiation->getLocation(), Instantiation, |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1255 | Fields.data(), Fields.size(), SourceLocation(), SourceLocation(), |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1256 | 0); |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 1257 | CheckCompletedCXXClass(Instantiation); |
Douglas Gregor | 663b5a0 | 2009-10-14 20:14:33 +0000 | [diff] [blame] | 1258 | if (Instantiation->isInvalidDecl()) |
| 1259 | Invalid = true; |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 1260 | else { |
| 1261 | // Instantiate any out-of-line class template partial |
| 1262 | // specializations now. |
| 1263 | for (TemplateDeclInstantiator::delayed_partial_spec_iterator |
| 1264 | P = Instantiator.delayed_partial_spec_begin(), |
| 1265 | PEnd = Instantiator.delayed_partial_spec_end(); |
| 1266 | P != PEnd; ++P) { |
| 1267 | if (!Instantiator.InstantiateClassTemplatePartialSpecialization( |
| 1268 | P->first, |
| 1269 | P->second)) { |
| 1270 | Invalid = true; |
| 1271 | break; |
| 1272 | } |
| 1273 | } |
| 1274 | } |
| 1275 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1276 | // Exit the scope of this instantiation. |
John McCall | f581382 | 2010-04-29 00:35:03 +0000 | [diff] [blame] | 1277 | SavedContext.pop(); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1278 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1279 | if (!Invalid) { |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 1280 | Consumer.HandleTagDeclDefinition(Instantiation); |
| 1281 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1282 | // Always emit the vtable for an explicit instantiation definition |
| 1283 | // of a polymorphic class template specialization. |
| 1284 | if (TSK == TSK_ExplicitInstantiationDefinition) |
| 1285 | MarkVTableUsed(PointOfInstantiation, Instantiation, true); |
| 1286 | } |
| 1287 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 1288 | return Invalid; |
| 1289 | } |
| 1290 | |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1291 | namespace { |
| 1292 | /// \brief A partial specialization whose template arguments have matched |
| 1293 | /// a given template-id. |
| 1294 | struct PartialSpecMatchResult { |
| 1295 | ClassTemplatePartialSpecializationDecl *Partial; |
| 1296 | TemplateArgumentList *Args; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1297 | }; |
| 1298 | } |
| 1299 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1300 | bool |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1301 | Sema::InstantiateClassTemplateSpecialization( |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1302 | SourceLocation PointOfInstantiation, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1303 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1304 | TemplateSpecializationKind TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1305 | bool Complain) { |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1306 | // Perform the actual instantiation on the canonical declaration. |
| 1307 | ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>( |
Argyrios Kyrtzidis | 97fbaa2 | 2009-07-18 00:34:25 +0000 | [diff] [blame] | 1308 | ClassTemplateSpec->getCanonicalDecl()); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1309 | |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1310 | // Check whether we have already instantiated or specialized this class |
| 1311 | // template specialization. |
| 1312 | if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) { |
| 1313 | if (ClassTemplateSpec->getSpecializationKind() == |
| 1314 | TSK_ExplicitInstantiationDeclaration && |
| 1315 | TSK == TSK_ExplicitInstantiationDefinition) { |
| 1316 | // An explicit instantiation definition follows an explicit instantiation |
| 1317 | // declaration (C++0x [temp.explicit]p10); go ahead and perform the |
| 1318 | // explicit instantiation. |
| 1319 | ClassTemplateSpec->setSpecializationKind(TSK); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1320 | |
| 1321 | // If this is an explicit instantiation definition, mark the |
| 1322 | // vtable as used. |
| 1323 | if (TSK == TSK_ExplicitInstantiationDefinition) |
| 1324 | MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true); |
| 1325 | |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1326 | return false; |
| 1327 | } |
| 1328 | |
| 1329 | // We can only instantiate something that hasn't already been |
| 1330 | // instantiated or specialized. Fail without any diagnostics: our |
| 1331 | // caller will provide an error message. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1332 | return true; |
Douglas Gregor | 52604ab | 2009-09-11 21:19:12 +0000 | [diff] [blame] | 1333 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1334 | |
Douglas Gregor | 9eea08b | 2009-09-15 16:51:42 +0000 | [diff] [blame] | 1335 | if (ClassTemplateSpec->isInvalidDecl()) |
| 1336 | return true; |
| 1337 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1338 | ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate(); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1339 | CXXRecordDecl *Pattern = 0; |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 1340 | |
Douglas Gregor | c1efb3f | 2009-06-12 22:31:52 +0000 | [diff] [blame] | 1341 | // C++ [temp.class.spec.match]p1: |
| 1342 | // When a class template is used in a context that requires an |
| 1343 | // instantiation of the class, it is necessary to determine |
| 1344 | // whether the instantiation is to be generated using the primary |
| 1345 | // template or one of the partial specializations. This is done by |
| 1346 | // matching the template arguments of the class template |
| 1347 | // specialization with the template argument lists of the partial |
| 1348 | // specializations. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1349 | typedef PartialSpecMatchResult MatchResult; |
Douglas Gregor | 199d991 | 2009-06-05 00:53:49 +0000 | [diff] [blame] | 1350 | llvm::SmallVector<MatchResult, 4> Matched; |
Douglas Gregor | dc60c1e | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 1351 | llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs; |
| 1352 | Template->getPartialSpecializations(PartialSpecs); |
| 1353 | for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) { |
| 1354 | ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I]; |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 1355 | TemplateDeductionInfo Info(Context, PointOfInstantiation); |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1356 | if (TemplateDeductionResult Result |
Douglas Gregor | dc60c1e | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 1357 | = DeduceTemplateArguments(Partial, |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1358 | ClassTemplateSpec->getTemplateArgs(), |
| 1359 | Info)) { |
| 1360 | // FIXME: Store the failed-deduction information for use in |
| 1361 | // diagnostics, later. |
| 1362 | (void)Result; |
| 1363 | } else { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1364 | Matched.push_back(PartialSpecMatchResult()); |
| 1365 | Matched.back().Partial = Partial; |
| 1366 | Matched.back().Args = Info.take(); |
Douglas Gregor | f67875d | 2009-06-12 18:26:56 +0000 | [diff] [blame] | 1367 | } |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1370 | if (Matched.size() >= 1) { |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1371 | llvm::SmallVector<MatchResult, 4>::iterator Best = Matched.begin(); |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1372 | if (Matched.size() == 1) { |
| 1373 | // -- If exactly one matching specialization is found, the |
| 1374 | // instantiation is generated from that specialization. |
| 1375 | // We don't need to do anything for this. |
| 1376 | } else { |
| 1377 | // -- If more than one matching specialization is found, the |
| 1378 | // partial order rules (14.5.4.2) are used to determine |
| 1379 | // whether one of the specializations is more specialized |
| 1380 | // than the others. If none of the specializations is more |
| 1381 | // specialized than all of the other matching |
| 1382 | // specializations, then the use of the class template is |
| 1383 | // ambiguous and the program is ill-formed. |
| 1384 | for (llvm::SmallVector<MatchResult, 4>::iterator P = Best + 1, |
| 1385 | PEnd = Matched.end(); |
| 1386 | P != PEnd; ++P) { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1387 | if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial, |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 1388 | PointOfInstantiation) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1389 | == P->Partial) |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1390 | Best = P; |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1391 | } |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1392 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1393 | // Determine if the best partial specialization is more specialized than |
| 1394 | // the others. |
| 1395 | bool Ambiguous = false; |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1396 | for (llvm::SmallVector<MatchResult, 4>::iterator P = Matched.begin(), |
| 1397 | PEnd = Matched.end(); |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1398 | P != PEnd; ++P) { |
| 1399 | if (P != Best && |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1400 | getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial, |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 1401 | PointOfInstantiation) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1402 | != Best->Partial) { |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1403 | Ambiguous = true; |
| 1404 | break; |
| 1405 | } |
| 1406 | } |
| 1407 | |
| 1408 | if (Ambiguous) { |
| 1409 | // Partial ordering did not produce a clear winner. Complain. |
| 1410 | ClassTemplateSpec->setInvalidDecl(); |
| 1411 | Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous) |
| 1412 | << ClassTemplateSpec; |
| 1413 | |
| 1414 | // Print the matching partial specializations. |
| 1415 | for (llvm::SmallVector<MatchResult, 4>::iterator P = Matched.begin(), |
| 1416 | PEnd = Matched.end(); |
| 1417 | P != PEnd; ++P) |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1418 | Diag(P->Partial->getLocation(), diag::note_partial_spec_match) |
| 1419 | << getTemplateArgumentBindingsText( |
| 1420 | P->Partial->getTemplateParameters(), |
| 1421 | *P->Args); |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1422 | |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1423 | return true; |
| 1424 | } |
Douglas Gregor | bf4ea56 | 2009-09-15 16:23:51 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | // Instantiate using the best class template partial specialization. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1428 | ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->Partial; |
Douglas Gregor | ed9c0f9 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 1429 | while (OrigPartialSpec->getInstantiatedFromMember()) { |
| 1430 | // If we've found an explicit specialization of this class template, |
| 1431 | // stop here and use that as the pattern. |
| 1432 | if (OrigPartialSpec->isMemberSpecialization()) |
| 1433 | break; |
| 1434 | |
| 1435 | OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember(); |
| 1436 | } |
| 1437 | |
| 1438 | Pattern = OrigPartialSpec; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 1439 | ClassTemplateSpec->setInstantiationOf(Best->Partial, Best->Args); |
Douglas Gregor | c1efb3f | 2009-06-12 22:31:52 +0000 | [diff] [blame] | 1440 | } else { |
| 1441 | // -- If no matches are found, the instantiation is generated |
| 1442 | // from the primary template. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1443 | ClassTemplateDecl *OrigTemplate = Template; |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 1444 | while (OrigTemplate->getInstantiatedFromMemberTemplate()) { |
| 1445 | // If we've found an explicit specialization of this class template, |
| 1446 | // stop here and use that as the pattern. |
| 1447 | if (OrigTemplate->isMemberSpecialization()) |
| 1448 | break; |
| 1449 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1450 | OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate(); |
Douglas Gregor | fd056bc | 2009-10-13 16:30:37 +0000 | [diff] [blame] | 1451 | } |
| 1452 | |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1453 | Pattern = OrigTemplate->getTemplatedDecl(); |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 1454 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1455 | |
Douglas Gregor | 972e6ce | 2009-10-27 06:26:26 +0000 | [diff] [blame] | 1456 | bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec, |
| 1457 | Pattern, |
| 1458 | getTemplateInstantiationArgs(ClassTemplateSpec), |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1459 | TSK, |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 1460 | Complain); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1461 | |
Douglas Gregor | 199d991 | 2009-06-05 00:53:49 +0000 | [diff] [blame] | 1462 | return Result; |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 1463 | } |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1464 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1465 | /// \brief Instantiates the definitions of all of the member |
| 1466 | /// of the given class, which is an instantiation of a class template |
| 1467 | /// or a member class of a template. |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1468 | void |
| 1469 | Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1470 | CXXRecordDecl *Instantiation, |
| 1471 | const MultiLevelTemplateArgumentList &TemplateArgs, |
| 1472 | TemplateSpecializationKind TSK) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1473 | for (DeclContext::decl_iterator D = Instantiation->decls_begin(), |
| 1474 | DEnd = Instantiation->decls_end(); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1475 | D != DEnd; ++D) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1476 | bool SuppressNew = false; |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1477 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1478 | if (FunctionDecl *Pattern |
| 1479 | = Function->getInstantiatedFromMemberFunction()) { |
| 1480 | MemberSpecializationInfo *MSInfo |
| 1481 | = Function->getMemberSpecializationInfo(); |
| 1482 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 1483 | if (MSInfo->getTemplateSpecializationKind() |
| 1484 | == TSK_ExplicitSpecialization) |
| 1485 | continue; |
| 1486 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1487 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 1488 | Function, |
| 1489 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 1490 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1491 | SuppressNew) || |
| 1492 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1493 | continue; |
| 1494 | |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 1495 | if (Function->hasBody()) |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1496 | continue; |
| 1497 | |
| 1498 | if (TSK == TSK_ExplicitInstantiationDefinition) { |
| 1499 | // C++0x [temp.explicit]p8: |
| 1500 | // An explicit instantiation definition that names a class template |
| 1501 | // specialization explicitly instantiates the class template |
| 1502 | // specialization and is only an explicit instantiation definition |
| 1503 | // of members whose definition is visible at the point of |
| 1504 | // instantiation. |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 1505 | if (!Pattern->hasBody()) |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1506 | continue; |
| 1507 | |
| 1508 | Function->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 1509 | |
| 1510 | InstantiateFunctionDefinition(PointOfInstantiation, Function); |
| 1511 | } else { |
| 1512 | Function->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 1513 | } |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1514 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1515 | } else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) { |
Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 1516 | if (Var->isStaticDataMember()) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1517 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 1518 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 1519 | if (MSInfo->getTemplateSpecializationKind() |
| 1520 | == TSK_ExplicitSpecialization) |
| 1521 | continue; |
| 1522 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1523 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 1524 | Var, |
| 1525 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 1526 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1527 | SuppressNew) || |
| 1528 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1529 | continue; |
| 1530 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1531 | if (TSK == TSK_ExplicitInstantiationDefinition) { |
| 1532 | // C++0x [temp.explicit]p8: |
| 1533 | // An explicit instantiation definition that names a class template |
| 1534 | // specialization explicitly instantiates the class template |
| 1535 | // specialization and is only an explicit instantiation definition |
| 1536 | // of members whose definition is visible at the point of |
| 1537 | // instantiation. |
| 1538 | if (!Var->getInstantiatedFromStaticDataMember() |
| 1539 | ->getOutOfLineDefinition()) |
| 1540 | continue; |
| 1541 | |
| 1542 | Var->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
Douglas Gregor | 251b4ff | 2009-10-08 07:24:58 +0000 | [diff] [blame] | 1543 | InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var); |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1544 | } else { |
| 1545 | Var->setTemplateSpecializationKind(TSK, PointOfInstantiation); |
| 1546 | } |
| 1547 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1548 | } else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) { |
Douglas Gregor | a77eaa9 | 2010-04-18 18:11:38 +0000 | [diff] [blame] | 1549 | // Always skip the injected-class-name, along with any |
| 1550 | // redeclarations of nested classes, since both would cause us |
| 1551 | // to try to instantiate the members of a class twice. |
| 1552 | if (Record->isInjectedClassName() || Record->getPreviousDeclaration()) |
Douglas Gregor | 2db3232 | 2009-10-07 23:56:10 +0000 | [diff] [blame] | 1553 | continue; |
| 1554 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1555 | MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo(); |
| 1556 | assert(MSInfo && "No member specialization information?"); |
Douglas Gregor | c42b652 | 2010-04-09 21:02:29 +0000 | [diff] [blame] | 1557 | |
| 1558 | if (MSInfo->getTemplateSpecializationKind() |
| 1559 | == TSK_ExplicitSpecialization) |
| 1560 | continue; |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 1561 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1562 | if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK, |
| 1563 | Record, |
| 1564 | MSInfo->getTemplateSpecializationKind(), |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 1565 | MSInfo->getPointOfInstantiation(), |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1566 | SuppressNew) || |
| 1567 | SuppressNew) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1568 | continue; |
| 1569 | |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1570 | CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass(); |
| 1571 | assert(Pattern && "Missing instantiated-from-template information"); |
| 1572 | |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 1573 | if (!Record->getDefinition()) { |
| 1574 | if (!Pattern->getDefinition()) { |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1575 | // C++0x [temp.explicit]p8: |
| 1576 | // An explicit instantiation definition that names a class template |
| 1577 | // specialization explicitly instantiates the class template |
| 1578 | // specialization and is only an explicit instantiation definition |
| 1579 | // of members whose definition is visible at the point of |
| 1580 | // instantiation. |
| 1581 | if (TSK == TSK_ExplicitInstantiationDeclaration) { |
| 1582 | MSInfo->setTemplateSpecializationKind(TSK); |
| 1583 | MSInfo->setPointOfInstantiation(PointOfInstantiation); |
| 1584 | } |
| 1585 | |
| 1586 | continue; |
| 1587 | } |
| 1588 | |
| 1589 | InstantiateClass(PointOfInstantiation, Record, Pattern, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1590 | TemplateArgs, |
| 1591 | TSK); |
Nico Weber | c956b6e | 2010-09-27 21:02:09 +0000 | [diff] [blame] | 1592 | } else { |
| 1593 | if (TSK == TSK_ExplicitInstantiationDefinition && |
| 1594 | Record->getTemplateSpecializationKind() == |
| 1595 | TSK_ExplicitInstantiationDeclaration) { |
| 1596 | Record->setTemplateSpecializationKind(TSK); |
| 1597 | MarkVTableUsed(PointOfInstantiation, Record, true); |
| 1598 | } |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1599 | } |
Douglas Gregor | e9374d5 | 2009-10-08 01:19:17 +0000 | [diff] [blame] | 1600 | |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 1601 | Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition()); |
Douglas Gregor | 0d03514 | 2009-10-27 18:42:08 +0000 | [diff] [blame] | 1602 | if (Pattern) |
| 1603 | InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs, |
| 1604 | TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1605 | } |
| 1606 | } |
| 1607 | } |
| 1608 | |
| 1609 | /// \brief Instantiate the definitions of all of the members of the |
| 1610 | /// given class template specialization, which was named as part of an |
| 1611 | /// explicit instantiation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1612 | void |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1613 | Sema::InstantiateClassTemplateSpecializationMembers( |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1614 | SourceLocation PointOfInstantiation, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1615 | ClassTemplateSpecializationDecl *ClassTemplateSpec, |
| 1616 | TemplateSpecializationKind TSK) { |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1617 | // C++0x [temp.explicit]p7: |
| 1618 | // An explicit instantiation that names a class template |
| 1619 | // specialization is an explicit instantion of the same kind |
| 1620 | // (declaration or definition) of each of its members (not |
| 1621 | // including members inherited from base classes) that has not |
| 1622 | // been previously explicitly specialized in the translation unit |
| 1623 | // containing the explicit instantiation, except as described |
| 1624 | // below. |
| 1625 | InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec, |
Douglas Gregor | d0e3daf | 2009-09-04 22:48:11 +0000 | [diff] [blame] | 1626 | getTemplateInstantiationArgs(ClassTemplateSpec), |
| 1627 | TSK); |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1630 | StmtResult |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1631 | Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 43959a9 | 2009-08-20 07:17:43 +0000 | [diff] [blame] | 1632 | if (!S) |
| 1633 | return Owned(S); |
| 1634 | |
| 1635 | TemplateInstantiator Instantiator(*this, TemplateArgs, |
| 1636 | SourceLocation(), |
| 1637 | DeclarationName()); |
| 1638 | return Instantiator.TransformStmt(S); |
| 1639 | } |
| 1640 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1641 | ExprResult |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1642 | Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 1643 | if (!E) |
| 1644 | return Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1645 | |
Douglas Gregor | b98b199 | 2009-08-11 05:31:07 +0000 | [diff] [blame] | 1646 | TemplateInstantiator Instantiator(*this, TemplateArgs, |
| 1647 | SourceLocation(), |
| 1648 | DeclarationName()); |
| 1649 | return Instantiator.TransformExpr(E); |
| 1650 | } |
| 1651 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1652 | /// \brief Do template substitution on a nested-name-specifier. |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 1653 | NestedNameSpecifier * |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1654 | Sema::SubstNestedNameSpecifier(NestedNameSpecifier *NNS, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1655 | SourceRange Range, |
| 1656 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | dcee1a1 | 2009-08-06 05:28:30 +0000 | [diff] [blame] | 1657 | TemplateInstantiator Instantiator(*this, TemplateArgs, Range.getBegin(), |
| 1658 | DeclarationName()); |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 1659 | return Instantiator.TransformNestedNameSpecifier(NNS, Range); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1660 | } |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 1661 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1662 | /// \brief Do template substitution on declaration name info. |
| 1663 | DeclarationNameInfo |
| 1664 | Sema::SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo, |
| 1665 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
| 1666 | TemplateInstantiator Instantiator(*this, TemplateArgs, NameInfo.getLoc(), |
| 1667 | NameInfo.getName()); |
| 1668 | return Instantiator.TransformDeclarationNameInfo(NameInfo); |
| 1669 | } |
| 1670 | |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 1671 | TemplateName |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 1672 | Sema::SubstTemplateName(TemplateName Name, SourceLocation Loc, |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 1673 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | d1067e5 | 2009-08-06 06:41:21 +0000 | [diff] [blame] | 1674 | TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, |
| 1675 | DeclarationName()); |
| 1676 | return Instantiator.TransformTemplateName(Name); |
Douglas Gregor | de650ae | 2009-03-31 18:38:02 +0000 | [diff] [blame] | 1677 | } |
Douglas Gregor | 9133300 | 2009-06-11 00:06:24 +0000 | [diff] [blame] | 1678 | |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 1679 | bool Sema::Subst(const TemplateArgumentLoc &Input, TemplateArgumentLoc &Output, |
| 1680 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
Douglas Gregor | 670444e | 2009-08-04 22:27:00 +0000 | [diff] [blame] | 1681 | TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(), |
| 1682 | DeclarationName()); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 1683 | |
| 1684 | return Instantiator.TransformTemplateArgument(Input, Output); |
Douglas Gregor | 9133300 | 2009-06-11 00:06:24 +0000 | [diff] [blame] | 1685 | } |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 1686 | |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1687 | Decl *LocalInstantiationScope::getInstantiationOf(const Decl *D) { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 1688 | for (LocalInstantiationScope *Current = this; Current; |
| 1689 | Current = Current->Outer) { |
| 1690 | // Check if we found something within this scope. |
| 1691 | llvm::DenseMap<const Decl *, Decl *>::iterator Found |
| 1692 | = Current->LocalDecls.find(D); |
| 1693 | if (Found != Current->LocalDecls.end()) |
| 1694 | return Found->second; |
| 1695 | |
| 1696 | // If we aren't combined with our outer scope, we're done. |
| 1697 | if (!Current->CombineWithOuterScope) |
| 1698 | break; |
| 1699 | } |
| 1700 | |
| 1701 | assert(D->isInvalidDecl() && |
| 1702 | "declaration was not instantiated in this scope!"); |
| 1703 | return 0; |
| 1704 | } |
| 1705 | |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 1706 | void LocalInstantiationScope::InstantiatedLocal(const Decl *D, Decl *Inst) { |
Douglas Gregor | 895162d | 2010-04-30 18:55:50 +0000 | [diff] [blame] | 1707 | Decl *&Stored = LocalDecls[D]; |
| 1708 | assert((!Stored || Stored == Inst)&& "Already instantiated this local"); |
| 1709 | Stored = Inst; |
| 1710 | } |