blob: 43aad0981788f6886d381c0f7d81cfb346b9d8d2 [file] [log] [blame]
Douglas Gregor99ebf652009-02-27 19:31:52 +00001//===------- 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 McCall2d887082010-08-25 22:03:47 +000013#include "clang/Sema/SemaInternal.h"
Douglas Gregor577f75a2009-08-04 16:50:30 +000014#include "TreeTransform.h"
John McCall19510852010-08-20 18:27:03 +000015#include "clang/Sema/DeclSpec.h"
Richard Smith7a614d82011-06-11 17:19:42 +000016#include "clang/Sema/Initialization.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Lookup.h"
John McCall7cd088e2010-08-24 07:21:54 +000018#include "clang/Sema/Template.h"
John McCall2a7fb272010-08-25 05:32:35 +000019#include "clang/Sema/TemplateDeduction.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregor99ebf652009-02-27 19:31:52 +000021#include "clang/AST/ASTContext.h"
22#include "clang/AST/Expr.h"
Douglas Gregor99ebf652009-02-27 19:31:52 +000023#include "clang/AST/DeclTemplate.h"
Douglas Gregor99ebf652009-02-27 19:31:52 +000024#include "clang/Basic/LangOptions.h"
25
26using namespace clang;
John McCall2a7fb272010-08-25 05:32:35 +000027using namespace sema;
Douglas Gregor99ebf652009-02-27 19:31:52 +000028
Douglas Gregoree1828a2009-03-10 18:03:33 +000029//===----------------------------------------------------------------------===/
30// Template Instantiation Support
31//===----------------------------------------------------------------------===/
32
Douglas Gregord6350ae2009-08-28 20:31:08 +000033/// \brief Retrieve the template argument list(s) that should be used to
34/// instantiate the definition of the given declaration.
Douglas Gregor0f8716b2009-11-09 19:17:50 +000035///
36/// \param D the declaration for which we are computing template instantiation
37/// arguments.
38///
39/// \param Innermost if non-NULL, the innermost template argument list.
Douglas Gregor525f96c2010-02-05 07:33:43 +000040///
41/// \param RelativeToPrimary true if we should get the template
42/// arguments relative to the primary template, even when we're
43/// dealing with a specialization. This is only relevant for function
44/// template specializations.
Douglas Gregore7089b02010-05-03 23:29:10 +000045///
46/// \param Pattern If non-NULL, indicates the pattern from which we will be
47/// instantiating the definition of the given declaration, \p D. This is
48/// used to determine the proper set of template instantiation arguments for
49/// friend function template specializations.
Douglas Gregord1102432009-08-28 17:37:35 +000050MultiLevelTemplateArgumentList
Douglas Gregor0f8716b2009-11-09 19:17:50 +000051Sema::getTemplateInstantiationArgs(NamedDecl *D,
Douglas Gregor525f96c2010-02-05 07:33:43 +000052 const TemplateArgumentList *Innermost,
Douglas Gregore7089b02010-05-03 23:29:10 +000053 bool RelativeToPrimary,
54 const FunctionDecl *Pattern) {
Douglas Gregord1102432009-08-28 17:37:35 +000055 // Accumulate the set of template argument lists in this structure.
56 MultiLevelTemplateArgumentList Result;
Mike Stump1eb44332009-09-09 15:08:12 +000057
Douglas Gregor0f8716b2009-11-09 19:17:50 +000058 if (Innermost)
59 Result.addOuterTemplateArguments(Innermost);
60
Douglas Gregord1102432009-08-28 17:37:35 +000061 DeclContext *Ctx = dyn_cast<DeclContext>(D);
Douglas Gregor93104c12011-05-22 00:21:10 +000062 if (!Ctx) {
Douglas Gregord1102432009-08-28 17:37:35 +000063 Ctx = D->getDeclContext();
Douglas Gregor93104c12011-05-22 00:21:10 +000064
Douglas Gregor383041d2011-06-15 14:20:42 +000065 // If we have a template template parameter with translation unit context,
66 // then we're performing substitution into a default template argument of
67 // this template template parameter before we've constructed the template
68 // that will own this template template parameter. In this case, we
69 // use empty template parameter lists for all of the outer templates
70 // to avoid performing any substitutions.
71 if (Ctx->isTranslationUnit()) {
72 if (TemplateTemplateParmDecl *TTP
73 = dyn_cast<TemplateTemplateParmDecl>(D)) {
74 for (unsigned I = 0, N = TTP->getDepth() + 1; I != N; ++I)
75 Result.addOuterTemplateArguments(0, 0);
76 return Result;
77 }
78 }
Douglas Gregor93104c12011-05-22 00:21:10 +000079 }
80
John McCallf181d8a2009-08-29 03:16:09 +000081 while (!Ctx->isFileContext()) {
Douglas Gregord1102432009-08-28 17:37:35 +000082 // Add template arguments from a class template instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +000083 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregord1102432009-08-28 17:37:35 +000084 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) {
85 // We're done when we hit an explicit specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +000086 if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization &&
87 !isa<ClassTemplatePartialSpecializationDecl>(Spec))
Douglas Gregord1102432009-08-28 17:37:35 +000088 break;
Mike Stump1eb44332009-09-09 15:08:12 +000089
Douglas Gregord1102432009-08-28 17:37:35 +000090 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
Douglas Gregorfd056bc2009-10-13 16:30:37 +000091
92 // If this class template specialization was instantiated from a
93 // specialized member that is a class template, we're done.
94 assert(Spec->getSpecializedTemplate() && "No class template?");
95 if (Spec->getSpecializedTemplate()->isMemberSpecialization())
96 break;
Mike Stump1eb44332009-09-09 15:08:12 +000097 }
Douglas Gregord1102432009-08-28 17:37:35 +000098 // Add template arguments from a function template specialization.
John McCallf181d8a2009-08-29 03:16:09 +000099 else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) {
Douglas Gregor525f96c2010-02-05 07:33:43 +0000100 if (!RelativeToPrimary &&
Francois Pichetaf0f4d02011-08-14 03:52:19 +0000101 (Function->getTemplateSpecializationKind() ==
102 TSK_ExplicitSpecialization &&
103 !Function->getClassScopeSpecializationPattern()))
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000104 break;
105
Douglas Gregord1102432009-08-28 17:37:35 +0000106 if (const TemplateArgumentList *TemplateArgs
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000107 = Function->getTemplateSpecializationArgs()) {
108 // Add the template arguments for this specialization.
Douglas Gregord1102432009-08-28 17:37:35 +0000109 Result.addOuterTemplateArguments(TemplateArgs);
John McCallf181d8a2009-08-29 03:16:09 +0000110
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000111 // If this function was instantiated from a specialized member that is
112 // a function template, we're done.
113 assert(Function->getPrimaryTemplate() && "No function template?");
114 if (Function->getPrimaryTemplate()->isMemberSpecialization())
115 break;
Douglas Gregorc494f772011-03-05 17:54:25 +0000116 } else if (FunctionTemplateDecl *FunTmpl
117 = Function->getDescribedFunctionTemplate()) {
118 // Add the "injected" template arguments.
119 std::pair<const TemplateArgument *, unsigned>
120 Injected = FunTmpl->getInjectedTemplateArgs();
121 Result.addOuterTemplateArguments(Injected.first, Injected.second);
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000122 }
123
John McCallf181d8a2009-08-29 03:16:09 +0000124 // If this is a friend declaration and it declares an entity at
125 // namespace scope, take arguments from its lexical parent
Douglas Gregore7089b02010-05-03 23:29:10 +0000126 // instead of its semantic parent, unless of course the pattern we're
127 // instantiating actually comes from the file's context!
John McCallf181d8a2009-08-29 03:16:09 +0000128 if (Function->getFriendObjectKind() &&
Douglas Gregore7089b02010-05-03 23:29:10 +0000129 Function->getDeclContext()->isFileContext() &&
130 (!Pattern || !Pattern->getLexicalDeclContext()->isFileContext())) {
John McCallf181d8a2009-08-29 03:16:09 +0000131 Ctx = Function->getLexicalDeclContext();
Douglas Gregor525f96c2010-02-05 07:33:43 +0000132 RelativeToPrimary = false;
John McCallf181d8a2009-08-29 03:16:09 +0000133 continue;
134 }
Douglas Gregor24bae922010-07-08 18:37:38 +0000135 } else if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Ctx)) {
136 if (ClassTemplateDecl *ClassTemplate = Rec->getDescribedClassTemplate()) {
137 QualType T = ClassTemplate->getInjectedClassNameSpecialization();
138 const TemplateSpecializationType *TST
139 = cast<TemplateSpecializationType>(Context.getCanonicalType(T));
140 Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs());
141 if (ClassTemplate->isMemberSpecialization())
142 break;
143 }
Douglas Gregord1102432009-08-28 17:37:35 +0000144 }
John McCallf181d8a2009-08-29 03:16:09 +0000145
146 Ctx = Ctx->getParent();
Douglas Gregor525f96c2010-02-05 07:33:43 +0000147 RelativeToPrimary = false;
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000148 }
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Douglas Gregord1102432009-08-28 17:37:35 +0000150 return Result;
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000151}
152
Douglas Gregorf35f8282009-11-11 21:54:23 +0000153bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const {
154 switch (Kind) {
155 case TemplateInstantiation:
156 case DefaultTemplateArgumentInstantiation:
157 case DefaultFunctionArgumentInstantiation:
158 return true;
159
160 case ExplicitTemplateArgumentSubstitution:
161 case DeducedTemplateArgumentSubstitution:
162 case PriorTemplateArgumentSubstitution:
163 case DefaultTemplateArgumentChecking:
164 return false;
165 }
David Blaikie7530c032012-01-17 06:56:22 +0000166
167 llvm_unreachable("Invalid InstantiationKind!");
Douglas Gregorf35f8282009-11-11 21:54:23 +0000168}
169
Douglas Gregor26dce442009-03-10 00:06:19 +0000170Sema::InstantiatingTemplate::
171InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000172 Decl *Entity,
Douglas Gregor26dce442009-03-10 00:06:19 +0000173 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000174 : SemaRef(SemaRef),
175 SavedInNonInstantiationSFINAEContext(
176 SemaRef.InNonInstantiationSFINAEContext)
177{
Douglas Gregordf667e72009-03-10 20:44:00 +0000178 Invalid = CheckInstantiationDepth(PointOfInstantiation,
179 InstantiationRange);
180 if (!Invalid) {
Douglas Gregor26dce442009-03-10 00:06:19 +0000181 ActiveTemplateInstantiation Inst;
Douglas Gregordf667e72009-03-10 20:44:00 +0000182 Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation;
Douglas Gregor26dce442009-03-10 00:06:19 +0000183 Inst.PointOfInstantiation = PointOfInstantiation;
Douglas Gregordf667e72009-03-10 20:44:00 +0000184 Inst.Entity = reinterpret_cast<uintptr_t>(Entity);
Douglas Gregor313a81d2009-03-12 18:36:18 +0000185 Inst.TemplateArgs = 0;
186 Inst.NumTemplateArgs = 0;
Douglas Gregordf667e72009-03-10 20:44:00 +0000187 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000188 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregordf667e72009-03-10 20:44:00 +0000189 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregordf667e72009-03-10 20:44:00 +0000190 }
191}
192
Mike Stump1eb44332009-09-09 15:08:12 +0000193Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
Douglas Gregordf667e72009-03-10 20:44:00 +0000194 SourceLocation PointOfInstantiation,
195 TemplateDecl *Template,
196 const TemplateArgument *TemplateArgs,
197 unsigned NumTemplateArgs,
198 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000199 : SemaRef(SemaRef),
200 SavedInNonInstantiationSFINAEContext(
201 SemaRef.InNonInstantiationSFINAEContext)
202{
Douglas Gregordf667e72009-03-10 20:44:00 +0000203 Invalid = CheckInstantiationDepth(PointOfInstantiation,
204 InstantiationRange);
205 if (!Invalid) {
206 ActiveTemplateInstantiation Inst;
Mike Stump1eb44332009-09-09 15:08:12 +0000207 Inst.Kind
Douglas Gregordf667e72009-03-10 20:44:00 +0000208 = ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation;
209 Inst.PointOfInstantiation = PointOfInstantiation;
210 Inst.Entity = reinterpret_cast<uintptr_t>(Template);
211 Inst.TemplateArgs = TemplateArgs;
212 Inst.NumTemplateArgs = NumTemplateArgs;
Douglas Gregor26dce442009-03-10 00:06:19 +0000213 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000214 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregor26dce442009-03-10 00:06:19 +0000215 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor26dce442009-03-10 00:06:19 +0000216 }
217}
218
Mike Stump1eb44332009-09-09 15:08:12 +0000219Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
Douglas Gregor637a4092009-06-10 23:47:09 +0000220 SourceLocation PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000221 FunctionTemplateDecl *FunctionTemplate,
222 const TemplateArgument *TemplateArgs,
223 unsigned NumTemplateArgs,
224 ActiveTemplateInstantiation::InstantiationKind Kind,
Douglas Gregor9b623632010-10-12 23:32:35 +0000225 sema::TemplateDeductionInfo &DeductionInfo,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000226 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000227 : SemaRef(SemaRef),
228 SavedInNonInstantiationSFINAEContext(
229 SemaRef.InNonInstantiationSFINAEContext)
230{
Douglas Gregorcca9e962009-07-01 22:01:06 +0000231 Invalid = CheckInstantiationDepth(PointOfInstantiation,
232 InstantiationRange);
233 if (!Invalid) {
234 ActiveTemplateInstantiation Inst;
235 Inst.Kind = Kind;
236 Inst.PointOfInstantiation = PointOfInstantiation;
237 Inst.Entity = reinterpret_cast<uintptr_t>(FunctionTemplate);
238 Inst.TemplateArgs = TemplateArgs;
239 Inst.NumTemplateArgs = NumTemplateArgs;
Douglas Gregor9b623632010-10-12 23:32:35 +0000240 Inst.DeductionInfo = &DeductionInfo;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000241 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000242 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000243 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregorf35f8282009-11-11 21:54:23 +0000244
245 if (!Inst.isInstantiationRecord())
246 ++SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000247 }
248}
249
Mike Stump1eb44332009-09-09 15:08:12 +0000250Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000251 SourceLocation PointOfInstantiation,
Douglas Gregor637a4092009-06-10 23:47:09 +0000252 ClassTemplatePartialSpecializationDecl *PartialSpec,
253 const TemplateArgument *TemplateArgs,
254 unsigned NumTemplateArgs,
Douglas Gregor9b623632010-10-12 23:32:35 +0000255 sema::TemplateDeductionInfo &DeductionInfo,
Douglas Gregor637a4092009-06-10 23:47:09 +0000256 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000257 : SemaRef(SemaRef),
258 SavedInNonInstantiationSFINAEContext(
259 SemaRef.InNonInstantiationSFINAEContext)
260{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000261 Invalid = false;
262
263 ActiveTemplateInstantiation Inst;
264 Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution;
265 Inst.PointOfInstantiation = PointOfInstantiation;
266 Inst.Entity = reinterpret_cast<uintptr_t>(PartialSpec);
267 Inst.TemplateArgs = TemplateArgs;
268 Inst.NumTemplateArgs = NumTemplateArgs;
Douglas Gregor9b623632010-10-12 23:32:35 +0000269 Inst.DeductionInfo = &DeductionInfo;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000270 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000271 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000272 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
273
274 assert(!Inst.isInstantiationRecord());
275 ++SemaRef.NonInstantiationEntries;
Douglas Gregor637a4092009-06-10 23:47:09 +0000276}
277
Mike Stump1eb44332009-09-09 15:08:12 +0000278Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000279 SourceLocation PointOfInstantiation,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000280 ParmVarDecl *Param,
281 const TemplateArgument *TemplateArgs,
282 unsigned NumTemplateArgs,
283 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000284 : SemaRef(SemaRef),
285 SavedInNonInstantiationSFINAEContext(
286 SemaRef.InNonInstantiationSFINAEContext)
287{
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000288 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000289
290 if (!Invalid) {
291 ActiveTemplateInstantiation Inst;
292 Inst.Kind
293 = ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000294 Inst.PointOfInstantiation = PointOfInstantiation;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000295 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
296 Inst.TemplateArgs = TemplateArgs;
297 Inst.NumTemplateArgs = NumTemplateArgs;
298 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000299 SemaRef.InNonInstantiationSFINAEContext = false;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000300 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000301 }
302}
303
304Sema::InstantiatingTemplate::
305InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000306 NamedDecl *Template,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000307 NonTypeTemplateParmDecl *Param,
308 const TemplateArgument *TemplateArgs,
309 unsigned NumTemplateArgs,
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000310 SourceRange InstantiationRange)
311 : SemaRef(SemaRef),
312 SavedInNonInstantiationSFINAEContext(
313 SemaRef.InNonInstantiationSFINAEContext)
314{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000315 Invalid = false;
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000316
Douglas Gregorf35f8282009-11-11 21:54:23 +0000317 ActiveTemplateInstantiation Inst;
318 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
319 Inst.PointOfInstantiation = PointOfInstantiation;
320 Inst.Template = Template;
321 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
322 Inst.TemplateArgs = TemplateArgs;
323 Inst.NumTemplateArgs = NumTemplateArgs;
324 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000325 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000326 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
327
328 assert(!Inst.isInstantiationRecord());
329 ++SemaRef.NonInstantiationEntries;
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000330}
331
332Sema::InstantiatingTemplate::
333InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000334 NamedDecl *Template,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000335 TemplateTemplateParmDecl *Param,
336 const TemplateArgument *TemplateArgs,
337 unsigned NumTemplateArgs,
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000338 SourceRange InstantiationRange)
339 : SemaRef(SemaRef),
340 SavedInNonInstantiationSFINAEContext(
341 SemaRef.InNonInstantiationSFINAEContext)
342{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000343 Invalid = false;
344 ActiveTemplateInstantiation Inst;
345 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
346 Inst.PointOfInstantiation = PointOfInstantiation;
347 Inst.Template = Template;
348 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
349 Inst.TemplateArgs = TemplateArgs;
350 Inst.NumTemplateArgs = NumTemplateArgs;
351 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000352 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000353 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000354
Douglas Gregorf35f8282009-11-11 21:54:23 +0000355 assert(!Inst.isInstantiationRecord());
356 ++SemaRef.NonInstantiationEntries;
357}
358
359Sema::InstantiatingTemplate::
360InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
361 TemplateDecl *Template,
362 NamedDecl *Param,
363 const TemplateArgument *TemplateArgs,
364 unsigned NumTemplateArgs,
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000365 SourceRange InstantiationRange)
366 : SemaRef(SemaRef),
367 SavedInNonInstantiationSFINAEContext(
368 SemaRef.InNonInstantiationSFINAEContext)
369{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000370 Invalid = false;
371
372 ActiveTemplateInstantiation Inst;
373 Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking;
374 Inst.PointOfInstantiation = PointOfInstantiation;
375 Inst.Template = Template;
376 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
377 Inst.TemplateArgs = TemplateArgs;
378 Inst.NumTemplateArgs = NumTemplateArgs;
379 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000380 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000381 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
382
383 assert(!Inst.isInstantiationRecord());
384 ++SemaRef.NonInstantiationEntries;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000385}
386
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000387void Sema::InstantiatingTemplate::Clear() {
388 if (!Invalid) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000389 if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) {
390 assert(SemaRef.NonInstantiationEntries > 0);
391 --SemaRef.NonInstantiationEntries;
392 }
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000393 SemaRef.InNonInstantiationSFINAEContext
394 = SavedInNonInstantiationSFINAEContext;
Douglas Gregor26dce442009-03-10 00:06:19 +0000395 SemaRef.ActiveTemplateInstantiations.pop_back();
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000396 Invalid = true;
397 }
Douglas Gregor26dce442009-03-10 00:06:19 +0000398}
399
Douglas Gregordf667e72009-03-10 20:44:00 +0000400bool Sema::InstantiatingTemplate::CheckInstantiationDepth(
401 SourceLocation PointOfInstantiation,
402 SourceRange InstantiationRange) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000403 assert(SemaRef.NonInstantiationEntries <=
404 SemaRef.ActiveTemplateInstantiations.size());
405 if ((SemaRef.ActiveTemplateInstantiations.size() -
406 SemaRef.NonInstantiationEntries)
407 <= SemaRef.getLangOptions().InstantiationDepth)
Douglas Gregordf667e72009-03-10 20:44:00 +0000408 return false;
409
Mike Stump1eb44332009-09-09 15:08:12 +0000410 SemaRef.Diag(PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000411 diag::err_template_recursion_depth_exceeded)
412 << SemaRef.getLangOptions().InstantiationDepth
413 << InstantiationRange;
414 SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth)
415 << SemaRef.getLangOptions().InstantiationDepth;
416 return true;
417}
418
Douglas Gregoree1828a2009-03-10 18:03:33 +0000419/// \brief Prints the current instantiation stack through a series of
420/// notes.
421void Sema::PrintInstantiationStack() {
Douglas Gregor575cf372010-04-20 07:18:24 +0000422 // Determine which template instantiations to skip, if any.
423 unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart;
424 unsigned Limit = Diags.getTemplateBacktraceLimit();
425 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
426 SkipStart = Limit / 2 + Limit % 2;
427 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
428 }
429
Douglas Gregorcca9e962009-07-01 22:01:06 +0000430 // FIXME: In all of these cases, we need to show the template arguments
Douglas Gregor575cf372010-04-20 07:18:24 +0000431 unsigned InstantiationIdx = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000432 for (SmallVector<ActiveTemplateInstantiation, 16>::reverse_iterator
Douglas Gregoree1828a2009-03-10 18:03:33 +0000433 Active = ActiveTemplateInstantiations.rbegin(),
434 ActiveEnd = ActiveTemplateInstantiations.rend();
435 Active != ActiveEnd;
Douglas Gregor575cf372010-04-20 07:18:24 +0000436 ++Active, ++InstantiationIdx) {
437 // Skip this instantiation?
438 if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) {
439 if (InstantiationIdx == SkipStart) {
440 // Note that we're skipping instantiations.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000441 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor575cf372010-04-20 07:18:24 +0000442 diag::note_instantiation_contexts_suppressed)
443 << unsigned(ActiveTemplateInstantiations.size() - Limit);
444 }
445 continue;
446 }
447
Douglas Gregordf667e72009-03-10 20:44:00 +0000448 switch (Active->Kind) {
449 case ActiveTemplateInstantiation::TemplateInstantiation: {
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000450 Decl *D = reinterpret_cast<Decl *>(Active->Entity);
451 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
452 unsigned DiagID = diag::note_template_member_class_here;
453 if (isa<ClassTemplateSpecializationDecl>(Record))
454 DiagID = diag::note_template_class_instantiation_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000455 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000456 << Context.getTypeDeclType(Record)
457 << Active->InstantiationRange;
Douglas Gregor7caa6822009-07-24 20:34:43 +0000458 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor1637be72009-06-26 00:10:03 +0000459 unsigned DiagID;
460 if (Function->getPrimaryTemplate())
461 DiagID = diag::note_function_template_spec_here;
462 else
463 DiagID = diag::note_template_member_function_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000464 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000465 << Function
466 << Active->InstantiationRange;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000467 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000468 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor7caa6822009-07-24 20:34:43 +0000469 diag::note_template_static_data_member_def_here)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000470 << VD
471 << Active->InstantiationRange;
472 } else {
473 Diags.Report(Active->PointOfInstantiation,
474 diag::note_template_type_alias_instantiation_here)
475 << cast<TypeAliasTemplateDecl>(D)
Douglas Gregor7caa6822009-07-24 20:34:43 +0000476 << Active->InstantiationRange;
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000477 }
Douglas Gregordf667e72009-03-10 20:44:00 +0000478 break;
479 }
480
481 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: {
482 TemplateDecl *Template = cast<TemplateDecl>((Decl *)Active->Entity);
483 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +0000484 = TemplateSpecializationType::PrintTemplateArgumentList(
Mike Stump1eb44332009-09-09 15:08:12 +0000485 Active->TemplateArgs,
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000486 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000487 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000488 Diags.Report(Active->PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000489 diag::note_default_arg_instantiation_here)
490 << (Template->getNameAsString() + TemplateArgsStr)
491 << Active->InstantiationRange;
492 break;
493 }
Douglas Gregor637a4092009-06-10 23:47:09 +0000494
Douglas Gregorcca9e962009-07-01 22:01:06 +0000495 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: {
Mike Stump1eb44332009-09-09 15:08:12 +0000496 FunctionTemplateDecl *FnTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +0000497 = cast<FunctionTemplateDecl>((Decl *)Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000498 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000499 diag::note_explicit_template_arg_substitution_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000500 << FnTmpl
501 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
502 Active->TemplateArgs,
503 Active->NumTemplateArgs)
504 << Active->InstantiationRange;
Douglas Gregor637a4092009-06-10 23:47:09 +0000505 break;
506 }
Mike Stump1eb44332009-09-09 15:08:12 +0000507
Douglas Gregorcca9e962009-07-01 22:01:06 +0000508 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
509 if (ClassTemplatePartialSpecializationDecl *PartialSpec
510 = dyn_cast<ClassTemplatePartialSpecializationDecl>(
511 (Decl *)Active->Entity)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000512 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000513 diag::note_partial_spec_deduct_instantiation_here)
514 << Context.getTypeDeclType(PartialSpec)
Douglas Gregor5e402912010-03-30 20:35:20 +0000515 << getTemplateArgumentBindingsText(
516 PartialSpec->getTemplateParameters(),
517 Active->TemplateArgs,
518 Active->NumTemplateArgs)
Douglas Gregorcca9e962009-07-01 22:01:06 +0000519 << Active->InstantiationRange;
520 } else {
521 FunctionTemplateDecl *FnTmpl
522 = cast<FunctionTemplateDecl>((Decl *)Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000523 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000524 diag::note_function_template_deduction_instantiation_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000525 << FnTmpl
526 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
527 Active->TemplateArgs,
528 Active->NumTemplateArgs)
529 << Active->InstantiationRange;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000530 }
531 break;
Douglas Gregor637a4092009-06-10 23:47:09 +0000532
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000533 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: {
534 ParmVarDecl *Param = cast<ParmVarDecl>((Decl *)Active->Entity);
535 FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000537 std::string TemplateArgsStr
538 = TemplateSpecializationType::PrintTemplateArgumentList(
Mike Stump1eb44332009-09-09 15:08:12 +0000539 Active->TemplateArgs,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000540 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000541 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000542 Diags.Report(Active->PointOfInstantiation,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000543 diag::note_default_function_arg_instantiation_here)
Anders Carlsson6bc107b2009-09-05 05:38:54 +0000544 << (FD->getNameAsString() + TemplateArgsStr)
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000545 << Active->InstantiationRange;
546 break;
547 }
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000549 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: {
550 NamedDecl *Parm = cast<NamedDecl>((Decl *)Active->Entity);
551 std::string Name;
552 if (!Parm->getName().empty())
553 Name = std::string(" '") + Parm->getName().str() + "'";
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000554
555 TemplateParameterList *TemplateParams = 0;
556 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
557 TemplateParams = Template->getTemplateParameters();
558 else
559 TemplateParams =
560 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
561 ->getTemplateParameters();
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000562 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000563 diag::note_prior_template_arg_substitution)
564 << isa<TemplateTemplateParmDecl>(Parm)
565 << Name
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000566 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000567 Active->TemplateArgs,
568 Active->NumTemplateArgs)
569 << Active->InstantiationRange;
570 break;
571 }
Douglas Gregorf35f8282009-11-11 21:54:23 +0000572
573 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: {
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000574 TemplateParameterList *TemplateParams = 0;
575 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
576 TemplateParams = Template->getTemplateParameters();
577 else
578 TemplateParams =
579 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
580 ->getTemplateParameters();
581
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000582 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000583 diag::note_template_default_arg_checking)
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000584 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000585 Active->TemplateArgs,
586 Active->NumTemplateArgs)
587 << Active->InstantiationRange;
588 break;
589 }
Douglas Gregordf667e72009-03-10 20:44:00 +0000590 }
Douglas Gregoree1828a2009-03-10 18:03:33 +0000591 }
592}
593
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000594llvm::Optional<TemplateDeductionInfo *> Sema::isSFINAEContext() const {
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000595 if (InNonInstantiationSFINAEContext)
596 return llvm::Optional<TemplateDeductionInfo *>(0);
597
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000598 for (SmallVector<ActiveTemplateInstantiation, 16>::const_reverse_iterator
599 Active = ActiveTemplateInstantiations.rbegin(),
600 ActiveEnd = ActiveTemplateInstantiations.rend();
601 Active != ActiveEnd;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000602 ++Active)
603 {
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000604 switch(Active->Kind) {
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000605 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation:
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000606 case ActiveTemplateInstantiation::TemplateInstantiation:
Douglas Gregorcca9e962009-07-01 22:01:06 +0000607 // This is a template instantiation, so there is no SFINAE.
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000608 return llvm::Optional<TemplateDeductionInfo *>();
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000610 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000611 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000612 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000613 // A default template argument instantiation and substitution into
614 // template parameters with arguments for prior parameters may or may
615 // not be a SFINAE context; look further up the stack.
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000616 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Douglas Gregorcca9e962009-07-01 22:01:06 +0000618 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution:
619 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
620 // We're either substitution explicitly-specified template arguments
621 // or deduced template arguments, so SFINAE applies.
Douglas Gregor9b623632010-10-12 23:32:35 +0000622 assert(Active->DeductionInfo && "Missing deduction info pointer");
623 return Active->DeductionInfo;
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000624 }
625 }
626
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000627 return llvm::Optional<TemplateDeductionInfo *>();
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000628}
629
Douglas Gregord3731192011-01-10 07:32:04 +0000630/// \brief Retrieve the depth and index of a parameter pack.
631static std::pair<unsigned, unsigned>
632getDepthAndIndex(NamedDecl *ND) {
633 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
634 return std::make_pair(TTP->getDepth(), TTP->getIndex());
635
636 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
637 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
638
639 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
640 return std::make_pair(TTP->getDepth(), TTP->getIndex());
641}
642
Douglas Gregor99ebf652009-02-27 19:31:52 +0000643//===----------------------------------------------------------------------===/
644// Template Instantiation for Types
645//===----------------------------------------------------------------------===/
Douglas Gregorcd281c32009-02-28 00:25:32 +0000646namespace {
Douglas Gregor895162d2010-04-30 18:55:50 +0000647 class TemplateInstantiator : public TreeTransform<TemplateInstantiator> {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000648 const MultiLevelTemplateArgumentList &TemplateArgs;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000649 SourceLocation Loc;
650 DeclarationName Entity;
Douglas Gregor99ebf652009-02-27 19:31:52 +0000651
Douglas Gregorcd281c32009-02-28 00:25:32 +0000652 public:
Douglas Gregor43959a92009-08-20 07:17:43 +0000653 typedef TreeTransform<TemplateInstantiator> inherited;
Mike Stump1eb44332009-09-09 15:08:12 +0000654
655 TemplateInstantiator(Sema &SemaRef,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000656 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregor577f75a2009-08-04 16:50:30 +0000657 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000658 DeclarationName Entity)
659 : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc),
Douglas Gregor43959a92009-08-20 07:17:43 +0000660 Entity(Entity) { }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000661
Mike Stump1eb44332009-09-09 15:08:12 +0000662 /// \brief Determine whether the given type \p T has already been
Douglas Gregor577f75a2009-08-04 16:50:30 +0000663 /// transformed.
664 ///
665 /// For the purposes of template instantiation, a type has already been
666 /// transformed if it is NULL or if it is not dependent.
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000667 bool AlreadyTransformed(QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Douglas Gregor577f75a2009-08-04 16:50:30 +0000669 /// \brief Returns the location of the entity being instantiated, if known.
670 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Douglas Gregor577f75a2009-08-04 16:50:30 +0000672 /// \brief Returns the name of the entity being instantiated, if any.
673 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +0000674
Douglas Gregor972e6ce2009-10-27 06:26:26 +0000675 /// \brief Sets the "base" location and entity when that
676 /// information is known based on another transformation.
677 void setBase(SourceLocation Loc, DeclarationName Entity) {
678 this->Loc = Loc;
679 this->Entity = Entity;
680 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000681
682 bool TryExpandParameterPacks(SourceLocation EllipsisLoc,
683 SourceRange PatternRange,
David Blaikiea71f9d02011-09-22 02:34:54 +0000684 llvm::ArrayRef<UnexpandedParameterPack> Unexpanded,
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000685 bool &ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +0000686 bool &RetainExpansion,
Douglas Gregorcded4f62011-01-14 17:04:44 +0000687 llvm::Optional<unsigned> &NumExpansions) {
Douglas Gregorb99268b2010-12-21 00:52:54 +0000688 return getSema().CheckParameterPacksForExpansion(EllipsisLoc,
689 PatternRange, Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000690 TemplateArgs,
691 ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +0000692 RetainExpansion,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000693 NumExpansions);
694 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000695
Douglas Gregor12c9c002011-01-07 16:43:16 +0000696 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) {
697 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack);
698 }
699
Douglas Gregord3731192011-01-10 07:32:04 +0000700 TemplateArgument ForgetPartiallySubstitutedPack() {
701 TemplateArgument Result;
702 if (NamedDecl *PartialPack
703 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
704 MultiLevelTemplateArgumentList &TemplateArgs
705 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
706 unsigned Depth, Index;
707 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
708 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
709 Result = TemplateArgs(Depth, Index);
710 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
711 }
712 }
713
714 return Result;
715 }
716
717 void RememberPartiallySubstitutedPack(TemplateArgument Arg) {
718 if (Arg.isNull())
719 return;
720
721 if (NamedDecl *PartialPack
722 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
723 MultiLevelTemplateArgumentList &TemplateArgs
724 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
725 unsigned Depth, Index;
726 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
727 TemplateArgs.setArgument(Depth, Index, Arg);
728 }
729 }
730
Douglas Gregor577f75a2009-08-04 16:50:30 +0000731 /// \brief Transform the given declaration by instantiating a reference to
732 /// this declaration.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000733 Decl *TransformDecl(SourceLocation Loc, Decl *D);
Douglas Gregorb98b1992009-08-11 05:31:07 +0000734
Mike Stump1eb44332009-09-09 15:08:12 +0000735 /// \brief Transform the definition of the given declaration by
Douglas Gregor43959a92009-08-20 07:17:43 +0000736 /// instantiating it.
Douglas Gregoraac571c2010-03-01 17:25:41 +0000737 Decl *TransformDefinition(SourceLocation Loc, Decl *D);
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Douglas Gregor6cd21982009-10-20 05:58:46 +0000739 /// \bried Transform the first qualifier within a scope by instantiating the
740 /// declaration.
741 NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc);
742
Douglas Gregor43959a92009-08-20 07:17:43 +0000743 /// \brief Rebuild the exception declaration and register the declaration
744 /// as an instantiated local.
Douglas Gregor83cb9422010-09-09 17:09:21 +0000745 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +0000746 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000747 SourceLocation StartLoc,
748 SourceLocation NameLoc,
749 IdentifierInfo *Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000750
Douglas Gregorbe270a02010-04-26 17:57:08 +0000751 /// \brief Rebuild the Objective-C exception declaration and register the
752 /// declaration as an instantiated local.
753 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
754 TypeSourceInfo *TSInfo, QualType T);
755
John McCallc4e70192009-09-11 04:59:25 +0000756 /// \brief Check for tag mismatches when instantiating an
757 /// elaborated type.
John McCall21e413f2010-11-04 19:04:38 +0000758 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
759 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000760 NestedNameSpecifierLoc QualifierLoc,
761 QualType T);
John McCallc4e70192009-09-11 04:59:25 +0000762
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +0000763 TemplateName TransformTemplateName(CXXScopeSpec &SS,
764 TemplateName Name,
765 SourceLocation NameLoc,
766 QualType ObjectType = QualType(),
767 NamedDecl *FirstQualifierInScope = 0);
768
John McCall60d7b3a2010-08-24 06:29:42 +0000769 ExprResult TransformPredefinedExpr(PredefinedExpr *E);
770 ExprResult TransformDeclRefExpr(DeclRefExpr *E);
771 ExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E);
772 ExprResult TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregor56bc9832010-12-24 00:15:10 +0000773 NonTypeTemplateParmDecl *D);
Douglas Gregorc7793c72011-01-15 01:15:58 +0000774 ExprResult TransformSubstNonTypeTemplateParmPackExpr(
775 SubstNonTypeTemplateParmPackExpr *E);
776
Douglas Gregor895162d2010-04-30 18:55:50 +0000777 QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000778 FunctionProtoTypeLoc TL);
Douglas Gregor6a24bfd2011-01-14 22:40:04 +0000779 ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +0000780 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +0000781 llvm::Optional<unsigned> NumExpansions,
782 bool ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +0000783
Mike Stump1eb44332009-09-09 15:08:12 +0000784 /// \brief Transforms a template type parameter type by performing
Douglas Gregor577f75a2009-08-04 16:50:30 +0000785 /// substitution of the corresponding template type argument.
John McCalla2becad2009-10-21 00:40:46 +0000786 QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000787 TemplateTypeParmTypeLoc TL);
Nick Lewycky03d98c52010-07-06 19:51:49 +0000788
Douglas Gregorc3069d62011-01-14 02:55:32 +0000789 /// \brief Transforms an already-substituted template type parameter pack
790 /// into either itself (if we aren't substituting into its pack expansion)
791 /// or the appropriate substituted argument.
792 QualType TransformSubstTemplateTypeParmPackType(TypeLocBuilder &TLB,
793 SubstTemplateTypeParmPackTypeLoc TL);
794
John McCall60d7b3a2010-08-24 06:29:42 +0000795 ExprResult TransformCallExpr(CallExpr *CE) {
Nick Lewycky03d98c52010-07-06 19:51:49 +0000796 getSema().CallsUndergoingInstantiation.push_back(CE);
John McCall60d7b3a2010-08-24 06:29:42 +0000797 ExprResult Result =
Nick Lewycky03d98c52010-07-06 19:51:49 +0000798 TreeTransform<TemplateInstantiator>::TransformCallExpr(CE);
799 getSema().CallsUndergoingInstantiation.pop_back();
800 return move(Result);
801 }
John McCall91a57552011-07-15 05:09:51 +0000802
803 private:
804 ExprResult transformNonTypeTemplateParmRef(NonTypeTemplateParmDecl *parm,
805 SourceLocation loc,
806 const TemplateArgument &arg);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000807 };
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000808}
809
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000810bool TemplateInstantiator::AlreadyTransformed(QualType T) {
811 if (T.isNull())
812 return true;
813
Douglas Gregor561f8122011-07-01 01:22:09 +0000814 if (T->isInstantiationDependentType() || T->isVariablyModifiedType())
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000815 return false;
816
817 getSema().MarkDeclarationsReferencedInType(Loc, T);
818 return true;
819}
820
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000821Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000822 if (!D)
823 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000824
Douglas Gregorc68afe22009-09-03 21:38:09 +0000825 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000826 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor6d3e6272010-02-05 19:54:12 +0000827 // If the corresponding template argument is NULL or non-existent, it's
828 // because we are performing instantiation from explicitly-specified
829 // template arguments in a function template, but there were some
830 // arguments left unspecified.
831 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
832 TTP->getPosition()))
833 return D;
834
Douglas Gregor61c4d282011-01-05 15:48:55 +0000835 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
836
837 if (TTP->isParameterPack()) {
838 assert(Arg.getKind() == TemplateArgument::Pack &&
839 "Missing argument pack");
840
Douglas Gregor1aee05d2011-01-15 06:45:20 +0000841 assert(getSema().ArgumentPackSubstitutionIndex >= 0);
Douglas Gregord3731192011-01-10 07:32:04 +0000842 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor61c4d282011-01-05 15:48:55 +0000843 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
844 }
845
846 TemplateName Template = Arg.getAsTemplate();
Douglas Gregor788cd062009-11-11 01:00:40 +0000847 assert(!Template.isNull() && Template.getAsTemplateDecl() &&
Douglas Gregord6350ae2009-08-28 20:31:08 +0000848 "Wrong kind of template template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000849 return Template.getAsTemplateDecl();
Douglas Gregord6350ae2009-08-28 20:31:08 +0000850 }
Mike Stump1eb44332009-09-09 15:08:12 +0000851
Douglas Gregor788cd062009-11-11 01:00:40 +0000852 // Fall through to find the instantiated declaration for this template
853 // template parameter.
Douglas Gregord1067e52009-08-06 06:41:21 +0000854 }
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000856 return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000857}
858
Douglas Gregoraac571c2010-03-01 17:25:41 +0000859Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000860 Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs);
Douglas Gregor43959a92009-08-20 07:17:43 +0000861 if (!Inst)
862 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000863
Douglas Gregor43959a92009-08-20 07:17:43 +0000864 getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst);
865 return Inst;
866}
867
Douglas Gregor6cd21982009-10-20 05:58:46 +0000868NamedDecl *
869TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D,
870 SourceLocation Loc) {
871 // If the first part of the nested-name-specifier was a template type
872 // parameter, instantiate that type parameter down to a tag type.
873 if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) {
874 const TemplateTypeParmType *TTP
875 = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD));
Douglas Gregor984a58b2010-12-20 22:48:17 +0000876
Douglas Gregor6cd21982009-10-20 05:58:46 +0000877 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor984a58b2010-12-20 22:48:17 +0000878 // FIXME: This needs testing w/ member access expressions.
879 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getIndex());
880
881 if (TTP->isParameterPack()) {
882 assert(Arg.getKind() == TemplateArgument::Pack &&
883 "Missing argument pack");
884
Douglas Gregor2be29f42011-01-14 23:41:42 +0000885 if (getSema().ArgumentPackSubstitutionIndex == -1)
Douglas Gregor984a58b2010-12-20 22:48:17 +0000886 return 0;
Douglas Gregor984a58b2010-12-20 22:48:17 +0000887
Douglas Gregord3731192011-01-10 07:32:04 +0000888 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor984a58b2010-12-20 22:48:17 +0000889 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
890 }
891
892 QualType T = Arg.getAsType();
Douglas Gregor6cd21982009-10-20 05:58:46 +0000893 if (T.isNull())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000894 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +0000895
896 if (const TagType *Tag = T->getAs<TagType>())
897 return Tag->getDecl();
898
899 // The resulting type is not a tag; complain.
900 getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T;
901 return 0;
902 }
903 }
904
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000905 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +0000906}
907
Douglas Gregor43959a92009-08-20 07:17:43 +0000908VarDecl *
909TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +0000910 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000911 SourceLocation StartLoc,
912 SourceLocation NameLoc,
913 IdentifierInfo *Name) {
Douglas Gregor83cb9422010-09-09 17:09:21 +0000914 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000915 StartLoc, NameLoc, Name);
Douglas Gregorbe270a02010-04-26 17:57:08 +0000916 if (Var)
917 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
918 return Var;
919}
920
921VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
922 TypeSourceInfo *TSInfo,
923 QualType T) {
924 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
925 if (Var)
Douglas Gregor43959a92009-08-20 07:17:43 +0000926 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
927 return Var;
928}
929
John McCallc4e70192009-09-11 04:59:25 +0000930QualType
John McCall21e413f2010-11-04 19:04:38 +0000931TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc,
932 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000933 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000934 QualType T) {
John McCallc4e70192009-09-11 04:59:25 +0000935 if (const TagType *TT = T->getAs<TagType>()) {
936 TagDecl* TD = TT->getDecl();
937
John McCall21e413f2010-11-04 19:04:38 +0000938 SourceLocation TagLocation = KeywordLoc;
John McCallc4e70192009-09-11 04:59:25 +0000939
940 // FIXME: type might be anonymous.
941 IdentifierInfo *Id = TD->getIdentifier();
942
943 // TODO: should we even warn on struct/class mismatches for this? Seems
944 // like it's likely to produce a lot of spurious errors.
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000945 if (Keyword != ETK_None && Keyword != ETK_Typename) {
946 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
Richard Trieubbf34c02011-06-10 03:11:26 +0000947 if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, /*isDefinition*/false,
948 TagLocation, *Id)) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000949 SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag)
950 << Id
951 << FixItHint::CreateReplacement(SourceRange(TagLocation),
952 TD->getKindName());
953 SemaRef.Diag(TD->getLocation(), diag::note_previous_use);
954 }
John McCallc4e70192009-09-11 04:59:25 +0000955 }
956 }
957
John McCall21e413f2010-11-04 19:04:38 +0000958 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
959 Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000960 QualifierLoc,
961 T);
John McCallc4e70192009-09-11 04:59:25 +0000962}
963
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +0000964TemplateName TemplateInstantiator::TransformTemplateName(CXXScopeSpec &SS,
965 TemplateName Name,
966 SourceLocation NameLoc,
967 QualType ObjectType,
968 NamedDecl *FirstQualifierInScope) {
969 if (TemplateTemplateParmDecl *TTP
970 = dyn_cast_or_null<TemplateTemplateParmDecl>(Name.getAsTemplateDecl())) {
971 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
972 // If the corresponding template argument is NULL or non-existent, it's
973 // because we are performing instantiation from explicitly-specified
974 // template arguments in a function template, but there were some
975 // arguments left unspecified.
976 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
977 TTP->getPosition()))
978 return Name;
979
980 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
981
982 if (TTP->isParameterPack()) {
983 assert(Arg.getKind() == TemplateArgument::Pack &&
984 "Missing argument pack");
985
986 if (getSema().ArgumentPackSubstitutionIndex == -1) {
987 // We have the template argument pack to substitute, but we're not
988 // actually expanding the enclosing pack expansion yet. So, just
989 // keep the entire argument pack.
990 return getSema().Context.getSubstTemplateTemplateParmPack(TTP, Arg);
991 }
992
993 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
994 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
995 }
996
997 TemplateName Template = Arg.getAsTemplate();
Richard Smith3e4c6c42011-05-05 21:57:07 +0000998 assert(!Template.isNull() && "Null template template argument");
John McCall14606042011-06-30 08:33:18 +0000999
Douglas Gregor58750382011-03-05 20:06:51 +00001000 // We don't ever want to substitute for a qualified template name, since
1001 // the qualifier is handled separately. So, look through the qualified
1002 // template name to its underlying declaration.
1003 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
1004 Template = TemplateName(QTN->getTemplateDecl());
John McCall14606042011-06-30 08:33:18 +00001005
1006 Template = getSema().Context.getSubstTemplateTemplateParm(TTP, Template);
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001007 return Template;
1008 }
1009 }
1010
1011 if (SubstTemplateTemplateParmPackStorage *SubstPack
1012 = Name.getAsSubstTemplateTemplateParmPack()) {
1013 if (getSema().ArgumentPackSubstitutionIndex == -1)
1014 return Name;
1015
1016 const TemplateArgument &ArgPack = SubstPack->getArgumentPack();
1017 assert(getSema().ArgumentPackSubstitutionIndex < (int)ArgPack.pack_size() &&
1018 "Pack substitution index out-of-range");
1019 return ArgPack.pack_begin()[getSema().ArgumentPackSubstitutionIndex]
1020 .getAsTemplate();
1021 }
1022
1023 return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType,
1024 FirstQualifierInScope);
1025}
1026
John McCall60d7b3a2010-08-24 06:29:42 +00001027ExprResult
John McCall454feb92009-12-08 09:21:05 +00001028TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) {
Anders Carlsson773f3972009-09-11 01:22:35 +00001029 if (!E->isTypeDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00001030 return SemaRef.Owned(E);
Anders Carlsson773f3972009-09-11 01:22:35 +00001031
1032 FunctionDecl *currentDecl = getSema().getCurFunctionDecl();
1033 assert(currentDecl && "Must have current function declaration when "
1034 "instantiating.");
1035
1036 PredefinedExpr::IdentType IT = E->getIdentType();
1037
Anders Carlsson848fa642010-02-11 18:20:28 +00001038 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
Anders Carlsson773f3972009-09-11 01:22:35 +00001039
1040 llvm::APInt LengthI(32, Length + 1);
John McCall0953e762009-09-24 19:53:00 +00001041 QualType ResTy = getSema().Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00001042 ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI,
1043 ArrayType::Normal, 0);
1044 PredefinedExpr *PE =
1045 new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT);
1046 return getSema().Owned(PE);
1047}
1048
John McCall60d7b3a2010-08-24 06:29:42 +00001049ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001050TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregordcee9802010-02-08 23:41:45 +00001051 NonTypeTemplateParmDecl *NTTP) {
John McCallb8fc0532010-02-06 08:42:39 +00001052 // If the corresponding template argument is NULL or non-existent, it's
1053 // because we are performing instantiation from explicitly-specified
1054 // template arguments in a function template, but there were some
1055 // arguments left unspecified.
1056 if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(),
1057 NTTP->getPosition()))
John McCall3fa5cae2010-10-26 07:05:15 +00001058 return SemaRef.Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001059
Douglas Gregor56bc9832010-12-24 00:15:10 +00001060 TemplateArgument Arg = TemplateArgs(NTTP->getDepth(), NTTP->getPosition());
1061 if (NTTP->isParameterPack()) {
1062 assert(Arg.getKind() == TemplateArgument::Pack &&
1063 "Missing argument pack");
1064
1065 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc7793c72011-01-15 01:15:58 +00001066 // We have an argument pack, but we can't select a particular argument
1067 // out of it yet. Therefore, we'll build an expression to hold on to that
1068 // argument pack.
1069 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs,
1070 E->getLocation(),
1071 NTTP->getDeclName());
1072 if (TargetType.isNull())
1073 return ExprError();
1074
1075 return new (SemaRef.Context) SubstNonTypeTemplateParmPackExpr(TargetType,
1076 NTTP,
1077 E->getLocation(),
1078 Arg);
Douglas Gregor56bc9832010-12-24 00:15:10 +00001079 }
1080
Douglas Gregord3731192011-01-10 07:32:04 +00001081 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor56bc9832010-12-24 00:15:10 +00001082 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
1083 }
Mike Stump1eb44332009-09-09 15:08:12 +00001084
John McCall91a57552011-07-15 05:09:51 +00001085 return transformNonTypeTemplateParmRef(NTTP, E->getLocation(), Arg);
1086}
1087
1088ExprResult TemplateInstantiator::transformNonTypeTemplateParmRef(
1089 NonTypeTemplateParmDecl *parm,
1090 SourceLocation loc,
1091 const TemplateArgument &arg) {
1092 ExprResult result;
1093 QualType type;
1094
John McCallb8fc0532010-02-06 08:42:39 +00001095 // The template argument itself might be an expression, in which
1096 // case we just return that expression.
John McCall91a57552011-07-15 05:09:51 +00001097 if (arg.getKind() == TemplateArgument::Expression) {
1098 Expr *argExpr = arg.getAsExpr();
1099 result = SemaRef.Owned(argExpr);
1100 type = argExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001101
John McCall91a57552011-07-15 05:09:51 +00001102 } else if (arg.getKind() == TemplateArgument::Declaration) {
1103 ValueDecl *VD = cast<ValueDecl>(arg.getAsDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001104
John McCall645cf442010-02-06 10:23:53 +00001105 // Find the instantiation of the template argument. This is
1106 // required for nested templates.
John McCallb8fc0532010-02-06 08:42:39 +00001107 VD = cast_or_null<ValueDecl>(
John McCall91a57552011-07-15 05:09:51 +00001108 getSema().FindInstantiatedDecl(loc, VD, TemplateArgs));
John McCallb8fc0532010-02-06 08:42:39 +00001109 if (!VD)
John McCallf312b1e2010-08-26 23:41:50 +00001110 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00001111
John McCall645cf442010-02-06 10:23:53 +00001112 // Derive the type we want the substituted decl to have. This had
1113 // better be non-dependent, or these checks will have serious problems.
John McCall91a57552011-07-15 05:09:51 +00001114 if (parm->isExpandedParameterPack()) {
1115 type = parm->getExpansionType(SemaRef.ArgumentPackSubstitutionIndex);
1116 } else if (parm->isParameterPack() &&
1117 isa<PackExpansionType>(parm->getType())) {
1118 type = SemaRef.SubstType(
1119 cast<PackExpansionType>(parm->getType())->getPattern(),
1120 TemplateArgs, loc, parm->getDeclName());
1121 } else {
1122 type = SemaRef.SubstType(parm->getType(), TemplateArgs,
1123 loc, parm->getDeclName());
1124 }
1125 assert(!type.isNull() && "type substitution failed for param type");
1126 assert(!type->isDependentType() && "param type still dependent");
1127 result = SemaRef.BuildExpressionFromDeclTemplateArgument(arg, type, loc);
John McCallb8fc0532010-02-06 08:42:39 +00001128
John McCall91a57552011-07-15 05:09:51 +00001129 if (!result.isInvalid()) type = result.get()->getType();
1130 } else {
1131 result = SemaRef.BuildExpressionFromIntegralTemplateArgument(arg, loc);
1132
1133 // Note that this type can be different from the type of 'result',
1134 // e.g. if it's an enum type.
1135 type = arg.getIntegralType();
1136 }
1137 if (result.isInvalid()) return ExprError();
1138
1139 Expr *resultExpr = result.take();
1140 return SemaRef.Owned(new (SemaRef.Context)
1141 SubstNonTypeTemplateParmExpr(type,
1142 resultExpr->getValueKind(),
1143 loc, parm, resultExpr));
John McCallb8fc0532010-02-06 08:42:39 +00001144}
1145
Douglas Gregorc7793c72011-01-15 01:15:58 +00001146ExprResult
1147TemplateInstantiator::TransformSubstNonTypeTemplateParmPackExpr(
1148 SubstNonTypeTemplateParmPackExpr *E) {
1149 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1150 // We aren't expanding the parameter pack, so just return ourselves.
1151 return getSema().Owned(E);
1152 }
1153
Douglas Gregorc7793c72011-01-15 01:15:58 +00001154 const TemplateArgument &ArgPack = E->getArgumentPack();
1155 unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex;
1156 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1157
1158 const TemplateArgument &Arg = ArgPack.pack_begin()[Index];
John McCall91a57552011-07-15 05:09:51 +00001159 return transformNonTypeTemplateParmRef(E->getParameterPack(),
1160 E->getParameterPackLocation(),
1161 Arg);
Douglas Gregorc7793c72011-01-15 01:15:58 +00001162}
John McCallb8fc0532010-02-06 08:42:39 +00001163
John McCall60d7b3a2010-08-24 06:29:42 +00001164ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001165TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) {
1166 NamedDecl *D = E->getDecl();
1167 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) {
1168 if (NTTP->getDepth() < TemplateArgs.getNumLevels())
1169 return TransformTemplateParmRefExpr(E, NTTP);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001170
1171 // We have a non-type template parameter that isn't fully substituted;
1172 // FindInstantiatedDecl will find it in the local instantiation scope.
Douglas Gregorb98b1992009-08-11 05:31:07 +00001173 }
Mike Stump1eb44332009-09-09 15:08:12 +00001174
John McCall454feb92009-12-08 09:21:05 +00001175 return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E);
Douglas Gregorb98b1992009-08-11 05:31:07 +00001176}
1177
John McCall60d7b3a2010-08-24 06:29:42 +00001178ExprResult TemplateInstantiator::TransformCXXDefaultArgExpr(
John McCall454feb92009-12-08 09:21:05 +00001179 CXXDefaultArgExpr *E) {
Sebastian Redla29e51b2009-11-08 13:56:19 +00001180 assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())->
1181 getDescribedFunctionTemplate() &&
1182 "Default arg expressions are never formed in dependent cases.");
Douglas Gregor036aed12009-12-23 23:03:06 +00001183 return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(),
1184 cast<FunctionDecl>(E->getParam()->getDeclContext()),
1185 E->getParam());
Sebastian Redla29e51b2009-11-08 13:56:19 +00001186}
1187
Douglas Gregor895162d2010-04-30 18:55:50 +00001188QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001189 FunctionProtoTypeLoc TL) {
Douglas Gregor895162d2010-04-30 18:55:50 +00001190 // We need a local instantiation scope for this function prototype.
John McCall2a7fb272010-08-25 05:32:35 +00001191 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
John McCall43fed0d2010-11-12 08:19:04 +00001192 return inherited::TransformFunctionProtoType(TLB, TL);
John McCall21ef0fa2010-03-11 09:03:00 +00001193}
1194
1195ParmVarDecl *
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001196TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +00001197 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001198 llvm::Optional<unsigned> NumExpansions,
1199 bool ExpectParameterPack) {
John McCallfb44de92011-05-01 22:35:37 +00001200 return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs, indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001201 NumExpansions, ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +00001202}
1203
Mike Stump1eb44332009-09-09 15:08:12 +00001204QualType
John McCalla2becad2009-10-21 00:40:46 +00001205TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001206 TemplateTypeParmTypeLoc TL) {
John McCallf4c73712011-01-19 06:33:43 +00001207 const TemplateTypeParmType *T = TL.getTypePtr();
Douglas Gregord6350ae2009-08-28 20:31:08 +00001208 if (T->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor99ebf652009-02-27 19:31:52 +00001209 // Replace the template type parameter with its corresponding
1210 // template argument.
Mike Stump1eb44332009-09-09 15:08:12 +00001211
1212 // If the corresponding template argument is NULL or doesn't exist, it's
1213 // because we are performing instantiation from explicitly-specified
1214 // template arguments in a function template class, but there were some
Douglas Gregor16134c62009-07-01 00:28:38 +00001215 // arguments left unspecified.
John McCalla2becad2009-10-21 00:40:46 +00001216 if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) {
1217 TemplateTypeParmTypeLoc NewTL
1218 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType());
1219 NewTL.setNameLoc(TL.getNameLoc());
1220 return TL.getType();
1221 }
Mike Stump1eb44332009-09-09 15:08:12 +00001222
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001223 TemplateArgument Arg = TemplateArgs(T->getDepth(), T->getIndex());
1224
1225 if (T->isParameterPack()) {
1226 assert(Arg.getKind() == TemplateArgument::Pack &&
1227 "Missing argument pack");
1228
1229 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc3069d62011-01-14 02:55:32 +00001230 // We have the template argument pack, but we're not expanding the
1231 // enclosing pack expansion yet. Just save the template argument
1232 // pack for later substitution.
1233 QualType Result
1234 = getSema().Context.getSubstTemplateTypeParmPackType(T, Arg);
1235 SubstTemplateTypeParmPackTypeLoc NewTL
1236 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(Result);
1237 NewTL.setNameLoc(TL.getNameLoc());
1238 return Result;
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001239 }
1240
Douglas Gregord3731192011-01-10 07:32:04 +00001241 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001242 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
1243 }
1244
1245 assert(Arg.getKind() == TemplateArgument::Type &&
Douglas Gregor99ebf652009-02-27 19:31:52 +00001246 "Template argument kind mismatch");
Douglas Gregord6350ae2009-08-28 20:31:08 +00001247
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001248 QualType Replacement = Arg.getAsType();
John McCall49a832b2009-10-18 09:09:24 +00001249
1250 // TODO: only do this uniquing once, at the start of instantiation.
John McCalla2becad2009-10-21 00:40:46 +00001251 QualType Result
1252 = getSema().Context.getSubstTemplateTypeParmType(T, Replacement);
1253 SubstTemplateTypeParmTypeLoc NewTL
1254 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1255 NewTL.setNameLoc(TL.getNameLoc());
1256 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001257 }
Douglas Gregor99ebf652009-02-27 19:31:52 +00001258
1259 // The template type parameter comes from an inner template (e.g.,
1260 // the template parameter list of a member template inside the
1261 // template we are instantiating). Create a new template type
1262 // parameter with the template "level" reduced by one.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001263 TemplateTypeParmDecl *NewTTPDecl = 0;
1264 if (TemplateTypeParmDecl *OldTTPDecl = T->getDecl())
1265 NewTTPDecl = cast_or_null<TemplateTypeParmDecl>(
1266 TransformDecl(TL.getNameLoc(), OldTTPDecl));
1267
John McCalla2becad2009-10-21 00:40:46 +00001268 QualType Result
1269 = getSema().Context.getTemplateTypeParmType(T->getDepth()
1270 - TemplateArgs.getNumLevels(),
1271 T->getIndex(),
1272 T->isParameterPack(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001273 NewTTPDecl);
John McCalla2becad2009-10-21 00:40:46 +00001274 TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result);
1275 NewTL.setNameLoc(TL.getNameLoc());
1276 return Result;
Douglas Gregorcd281c32009-02-28 00:25:32 +00001277}
Douglas Gregor99ebf652009-02-27 19:31:52 +00001278
Douglas Gregorc3069d62011-01-14 02:55:32 +00001279QualType
1280TemplateInstantiator::TransformSubstTemplateTypeParmPackType(
1281 TypeLocBuilder &TLB,
1282 SubstTemplateTypeParmPackTypeLoc TL) {
1283 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1284 // We aren't expanding the parameter pack, so just return ourselves.
1285 SubstTemplateTypeParmPackTypeLoc NewTL
1286 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(TL.getType());
1287 NewTL.setNameLoc(TL.getNameLoc());
1288 return TL.getType();
1289 }
1290
1291 const TemplateArgument &ArgPack = TL.getTypePtr()->getArgumentPack();
1292 unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex;
1293 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1294
1295 QualType Result = ArgPack.pack_begin()[Index].getAsType();
1296 Result = getSema().Context.getSubstTemplateTypeParmType(
1297 TL.getTypePtr()->getReplacedParameter(),
1298 Result);
1299 SubstTemplateTypeParmTypeLoc NewTL
1300 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1301 NewTL.setNameLoc(TL.getNameLoc());
1302 return Result;
1303}
1304
John McCallce3ff2b2009-08-25 22:02:44 +00001305/// \brief Perform substitution on the type T with a given set of template
1306/// arguments.
Douglas Gregor99ebf652009-02-27 19:31:52 +00001307///
1308/// This routine substitutes the given template arguments into the
1309/// type T and produces the instantiated type.
1310///
1311/// \param T the type into which the template arguments will be
1312/// substituted. If this type is not dependent, it will be returned
1313/// immediately.
1314///
1315/// \param TemplateArgs the template arguments that will be
1316/// substituted for the top-level template parameters within T.
1317///
Douglas Gregor99ebf652009-02-27 19:31:52 +00001318/// \param Loc the location in the source code where this substitution
1319/// is being performed. It will typically be the location of the
1320/// declarator (if we're instantiating the type of some declaration)
1321/// or the location of the type in the source code (if, e.g., we're
1322/// instantiating the type of a cast expression).
1323///
1324/// \param Entity the name of the entity associated with a declaration
1325/// being instantiated (if any). May be empty to indicate that there
1326/// is no such entity (if, e.g., this is a type that occurs as part of
1327/// a cast expression) or that the entity has no name (e.g., an
1328/// unnamed function parameter).
1329///
1330/// \returns If the instantiation succeeds, the instantiated
1331/// type. Otherwise, produces diagnostics and returns a NULL type.
John McCalla93c9342009-12-07 02:54:59 +00001332TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T,
John McCallcd7ba1c2009-10-21 00:58:09 +00001333 const MultiLevelTemplateArgumentList &Args,
1334 SourceLocation Loc,
1335 DeclarationName Entity) {
1336 assert(!ActiveTemplateInstantiations.empty() &&
1337 "Cannot perform an instantiation without some context on the "
1338 "instantiation stack");
1339
Douglas Gregor561f8122011-07-01 01:22:09 +00001340 if (!T->getType()->isInstantiationDependentType() &&
Douglas Gregor836adf62010-05-24 17:22:01 +00001341 !T->getType()->isVariablyModifiedType())
John McCallcd7ba1c2009-10-21 00:58:09 +00001342 return T;
1343
1344 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1345 return Instantiator.TransformType(T);
1346}
1347
Douglas Gregor603cfb42011-01-05 23:12:31 +00001348TypeSourceInfo *Sema::SubstType(TypeLoc TL,
1349 const MultiLevelTemplateArgumentList &Args,
1350 SourceLocation Loc,
1351 DeclarationName Entity) {
1352 assert(!ActiveTemplateInstantiations.empty() &&
1353 "Cannot perform an instantiation without some context on the "
1354 "instantiation stack");
1355
1356 if (TL.getType().isNull())
1357 return 0;
1358
Douglas Gregor561f8122011-07-01 01:22:09 +00001359 if (!TL.getType()->isInstantiationDependentType() &&
Douglas Gregor603cfb42011-01-05 23:12:31 +00001360 !TL.getType()->isVariablyModifiedType()) {
1361 // FIXME: Make a copy of the TypeLoc data here, so that we can
1362 // return a new TypeSourceInfo. Inefficient!
1363 TypeLocBuilder TLB;
1364 TLB.pushFullCopy(TL);
1365 return TLB.getTypeSourceInfo(Context, TL.getType());
1366 }
1367
1368 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1369 TypeLocBuilder TLB;
1370 TLB.reserve(TL.getFullDataSize());
1371 QualType Result = Instantiator.TransformType(TLB, TL);
1372 if (Result.isNull())
1373 return 0;
1374
1375 return TLB.getTypeSourceInfo(Context, Result);
1376}
1377
John McCallcd7ba1c2009-10-21 00:58:09 +00001378/// Deprecated form of the above.
Mike Stump1eb44332009-09-09 15:08:12 +00001379QualType Sema::SubstType(QualType T,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001380 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallce3ff2b2009-08-25 22:02:44 +00001381 SourceLocation Loc, DeclarationName Entity) {
Douglas Gregordf667e72009-03-10 20:44:00 +00001382 assert(!ActiveTemplateInstantiations.empty() &&
1383 "Cannot perform an instantiation without some context on the "
1384 "instantiation stack");
1385
Douglas Gregor836adf62010-05-24 17:22:01 +00001386 // If T is not a dependent type or a variably-modified type, there
1387 // is nothing to do.
Douglas Gregor561f8122011-07-01 01:22:09 +00001388 if (!T->isInstantiationDependentType() && !T->isVariablyModifiedType())
Douglas Gregor99ebf652009-02-27 19:31:52 +00001389 return T;
1390
Douglas Gregor577f75a2009-08-04 16:50:30 +00001391 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity);
1392 return Instantiator.TransformType(T);
Douglas Gregor99ebf652009-02-27 19:31:52 +00001393}
Douglas Gregor2943aed2009-03-03 04:44:36 +00001394
John McCall6cd3b9f2010-04-09 17:38:44 +00001395static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001396 if (T->getType()->isInstantiationDependentType() ||
1397 T->getType()->isVariablyModifiedType())
John McCall6cd3b9f2010-04-09 17:38:44 +00001398 return true;
1399
Abramo Bagnara723df242010-12-14 22:11:44 +00001400 TypeLoc TL = T->getTypeLoc().IgnoreParens();
John McCall6cd3b9f2010-04-09 17:38:44 +00001401 if (!isa<FunctionProtoTypeLoc>(TL))
1402 return false;
1403
1404 FunctionProtoTypeLoc FP = cast<FunctionProtoTypeLoc>(TL);
1405 for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) {
1406 ParmVarDecl *P = FP.getArg(I);
1407
Douglas Gregorc056c172011-05-09 20:45:16 +00001408 // The parameter's type as written might be dependent even if the
1409 // decayed type was not dependent.
1410 if (TypeSourceInfo *TSInfo = P->getTypeSourceInfo())
Douglas Gregor561f8122011-07-01 01:22:09 +00001411 if (TSInfo->getType()->isInstantiationDependentType())
Douglas Gregorc056c172011-05-09 20:45:16 +00001412 return true;
1413
John McCall6cd3b9f2010-04-09 17:38:44 +00001414 // TODO: currently we always rebuild expressions. When we
1415 // properly get lazier about this, we should use the same
1416 // logic to avoid rebuilding prototypes here.
Douglas Gregor7b1cf302011-01-05 21:14:17 +00001417 if (P->hasDefaultArg())
John McCall6cd3b9f2010-04-09 17:38:44 +00001418 return true;
1419 }
1420
1421 return false;
1422}
1423
1424/// A form of SubstType intended specifically for instantiating the
1425/// type of a FunctionDecl. Its purpose is solely to force the
1426/// instantiation of default-argument expressions.
1427TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T,
1428 const MultiLevelTemplateArgumentList &Args,
1429 SourceLocation Loc,
1430 DeclarationName Entity) {
1431 assert(!ActiveTemplateInstantiations.empty() &&
1432 "Cannot perform an instantiation without some context on the "
1433 "instantiation stack");
1434
1435 if (!NeedsInstantiationAsFunctionType(T))
1436 return T;
1437
1438 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1439
1440 TypeLocBuilder TLB;
1441
1442 TypeLoc TL = T->getTypeLoc();
1443 TLB.reserve(TL.getFullDataSize());
1444
John McCall43fed0d2010-11-12 08:19:04 +00001445 QualType Result = Instantiator.TransformType(TLB, TL);
John McCall6cd3b9f2010-04-09 17:38:44 +00001446 if (Result.isNull())
1447 return 0;
1448
1449 return TLB.getTypeSourceInfo(Context, Result);
1450}
1451
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001452ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm,
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001453 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallfb44de92011-05-01 22:35:37 +00001454 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001455 llvm::Optional<unsigned> NumExpansions,
1456 bool ExpectParameterPack) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001457 TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo();
Douglas Gregor603cfb42011-01-05 23:12:31 +00001458 TypeSourceInfo *NewDI = 0;
1459
Douglas Gregor603cfb42011-01-05 23:12:31 +00001460 TypeLoc OldTL = OldDI->getTypeLoc();
1461 if (isa<PackExpansionTypeLoc>(OldTL)) {
1462 PackExpansionTypeLoc ExpansionTL = cast<PackExpansionTypeLoc>(OldTL);
Douglas Gregor603cfb42011-01-05 23:12:31 +00001463
1464 // We have a function parameter pack. Substitute into the pattern of the
1465 // expansion.
1466 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs,
1467 OldParm->getLocation(), OldParm->getDeclName());
1468 if (!NewDI)
1469 return 0;
1470
1471 if (NewDI->getType()->containsUnexpandedParameterPack()) {
1472 // We still have unexpanded parameter packs, which means that
1473 // our function parameter is still a function parameter pack.
1474 // Therefore, make its type a pack expansion type.
Douglas Gregorcded4f62011-01-14 17:04:44 +00001475 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(),
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001476 NumExpansions);
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001477 } else if (ExpectParameterPack) {
1478 // We expected to get a parameter pack but didn't (because the type
1479 // itself is not a pack expansion type), so complain. This can occur when
1480 // the substitution goes through an alias template that "loses" the
1481 // pack expansion.
1482 Diag(OldParm->getLocation(),
1483 diag::err_function_parameter_pack_without_parameter_packs)
1484 << NewDI->getType();
1485 return 0;
1486 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001487 } else {
1488 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(),
1489 OldParm->getDeclName());
1490 }
1491
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001492 if (!NewDI)
1493 return 0;
1494
1495 if (NewDI->getType()->isVoidType()) {
1496 Diag(OldParm->getLocation(), diag::err_param_with_void_type);
1497 return 0;
1498 }
1499
1500 ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001501 OldParm->getInnerLocStart(),
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001502 OldParm->getLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001503 OldParm->getIdentifier(),
1504 NewDI->getType(), NewDI,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001505 OldParm->getStorageClass(),
1506 OldParm->getStorageClassAsWritten());
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001507 if (!NewParm)
1508 return 0;
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001509
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001510 // Mark the (new) default argument as uninstantiated (if any).
1511 if (OldParm->hasUninstantiatedDefaultArg()) {
1512 Expr *Arg = OldParm->getUninstantiatedDefaultArg();
1513 NewParm->setUninstantiatedDefaultArg(Arg);
Douglas Gregor8cfb7a32010-10-12 18:23:32 +00001514 } else if (OldParm->hasUnparsedDefaultArg()) {
1515 NewParm->setUnparsedDefaultArg();
1516 UnparsedDefaultArgInstantiations[OldParm].push_back(NewParm);
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001517 } else if (Expr *Arg = OldParm->getDefaultArg())
1518 NewParm->setUninstantiatedDefaultArg(Arg);
1519
1520 NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg());
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001521
Douglas Gregor12c9c002011-01-07 16:43:16 +00001522 if (OldParm->isParameterPack() && !NewParm->isParameterPack()) {
Richard Smithc0536c82012-01-25 02:14:59 +00001523 // Add the new parameter to the instantiated parameter pack.
Douglas Gregor12c9c002011-01-07 16:43:16 +00001524 CurrentInstantiationScope->InstantiatedLocalPackArg(OldParm, NewParm);
1525 } else {
1526 // Introduce an Old -> New mapping
Douglas Gregor603cfb42011-01-05 23:12:31 +00001527 CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm);
Douglas Gregor12c9c002011-01-07 16:43:16 +00001528 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001529
Argyrios Kyrtzidise3041be2010-07-19 10:14:41 +00001530 // FIXME: OldParm may come from a FunctionProtoType, in which case CurContext
1531 // can be anything, is this right ?
Fariborz Jahanian55a17c02010-07-13 21:05:02 +00001532 NewParm->setDeclContext(CurContext);
John McCallfb44de92011-05-01 22:35:37 +00001533
1534 NewParm->setScopeInfo(OldParm->getFunctionScopeDepth(),
1535 OldParm->getFunctionScopeIndex() + indexAdjustment);
Fariborz Jahaniane7ffbe22010-07-13 20:05:58 +00001536
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001537 return NewParm;
1538}
1539
Douglas Gregora009b592011-01-07 00:20:55 +00001540/// \brief Substitute the given template arguments into the given set of
1541/// parameters, producing the set of parameter types that would be generated
1542/// from such a substitution.
1543bool Sema::SubstParmTypes(SourceLocation Loc,
1544 ParmVarDecl **Params, unsigned NumParams,
1545 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001546 SmallVectorImpl<QualType> &ParamTypes,
1547 SmallVectorImpl<ParmVarDecl *> *OutParams) {
Douglas Gregora009b592011-01-07 00:20:55 +00001548 assert(!ActiveTemplateInstantiations.empty() &&
1549 "Cannot perform an instantiation without some context on the "
1550 "instantiation stack");
1551
1552 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
1553 DeclarationName());
1554 return Instantiator.TransformFunctionTypeParams(Loc, Params, NumParams, 0,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001555 ParamTypes, OutParams);
Douglas Gregora009b592011-01-07 00:20:55 +00001556}
1557
John McCallce3ff2b2009-08-25 22:02:44 +00001558/// \brief Perform substitution on the base class specifiers of the
1559/// given class template specialization.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001560///
1561/// Produces a diagnostic and returns true on error, returns false and
1562/// attaches the instantiated base classes to the class template
1563/// specialization if successful.
Mike Stump1eb44332009-09-09 15:08:12 +00001564bool
John McCallce3ff2b2009-08-25 22:02:44 +00001565Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
1566 CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001567 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001568 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001569 SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases;
Mike Stump1eb44332009-09-09 15:08:12 +00001570 for (ClassTemplateSpecializationDecl::base_class_iterator
Douglas Gregord475b8d2009-03-25 21:17:03 +00001571 Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end();
Douglas Gregor27b152f2009-03-10 18:52:44 +00001572 Base != BaseEnd; ++Base) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001573 if (!Base->getType()->isDependentType()) {
Fariborz Jahanian71c6e712009-07-22 17:41:53 +00001574 InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base));
Douglas Gregor2943aed2009-03-03 04:44:36 +00001575 continue;
1576 }
1577
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001578 SourceLocation EllipsisLoc;
Douglas Gregor406f98f2011-03-02 02:04:06 +00001579 TypeSourceInfo *BaseTypeLoc;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001580 if (Base->isPackExpansion()) {
1581 // This is a pack expansion. See whether we should expand it now, or
1582 // wait until later.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001583 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001584 collectUnexpandedParameterPacks(Base->getTypeSourceInfo()->getTypeLoc(),
1585 Unexpanded);
1586 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00001587 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00001588 llvm::Optional<unsigned> NumExpansions;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001589 if (CheckParameterPacksForExpansion(Base->getEllipsisLoc(),
1590 Base->getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001591 Unexpanded,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001592 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00001593 RetainExpansion,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001594 NumExpansions)) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001595 Invalid = true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001596 continue;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001597 }
1598
1599 // If we should expand this pack expansion now, do so.
1600 if (ShouldExpand) {
Douglas Gregorcded4f62011-01-14 17:04:44 +00001601 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001602 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
1603
1604 TypeSourceInfo *BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1605 TemplateArgs,
1606 Base->getSourceRange().getBegin(),
1607 DeclarationName());
1608 if (!BaseTypeLoc) {
1609 Invalid = true;
1610 continue;
1611 }
1612
1613 if (CXXBaseSpecifier *InstantiatedBase
1614 = CheckBaseSpecifier(Instantiation,
1615 Base->getSourceRange(),
1616 Base->isVirtual(),
1617 Base->getAccessSpecifierAsWritten(),
1618 BaseTypeLoc,
1619 SourceLocation()))
1620 InstantiatedBases.push_back(InstantiatedBase);
1621 else
1622 Invalid = true;
1623 }
1624
1625 continue;
1626 }
1627
1628 // The resulting base specifier will (still) be a pack expansion.
1629 EllipsisLoc = Base->getEllipsisLoc();
Douglas Gregor406f98f2011-03-02 02:04:06 +00001630 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, -1);
1631 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1632 TemplateArgs,
1633 Base->getSourceRange().getBegin(),
1634 DeclarationName());
1635 } else {
1636 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1637 TemplateArgs,
1638 Base->getSourceRange().getBegin(),
1639 DeclarationName());
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001640 }
1641
Nick Lewycky56062202010-07-26 16:56:01 +00001642 if (!BaseTypeLoc) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001643 Invalid = true;
1644 continue;
1645 }
1646
1647 if (CXXBaseSpecifier *InstantiatedBase
Douglas Gregord475b8d2009-03-25 21:17:03 +00001648 = CheckBaseSpecifier(Instantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001649 Base->getSourceRange(),
1650 Base->isVirtual(),
1651 Base->getAccessSpecifierAsWritten(),
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001652 BaseTypeLoc,
1653 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001654 InstantiatedBases.push_back(InstantiatedBase);
1655 else
1656 Invalid = true;
1657 }
1658
Douglas Gregor27b152f2009-03-10 18:52:44 +00001659 if (!Invalid &&
Jay Foadbeaaccd2009-05-21 09:52:38 +00001660 AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001661 InstantiatedBases.size()))
1662 Invalid = true;
1663
1664 return Invalid;
1665}
1666
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001667// Defined via #include from SemaTemplateInstantiateDecl.cpp
Benjamin Kramer5bbc3852012-02-06 11:13:08 +00001668namespace clang {
1669 namespace sema {
1670 Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, Sema &S,
1671 const MultiLevelTemplateArgumentList &TemplateArgs);
1672 }
1673}
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001674
Douglas Gregord475b8d2009-03-25 21:17:03 +00001675/// \brief Instantiate the definition of a class from a given pattern.
1676///
1677/// \param PointOfInstantiation The point of instantiation within the
1678/// source code.
1679///
1680/// \param Instantiation is the declaration whose definition is being
1681/// instantiated. This will be either a class template specialization
1682/// or a member class of a class template specialization.
1683///
1684/// \param Pattern is the pattern from which the instantiation
1685/// occurs. This will be either the declaration of a class template or
1686/// the declaration of a member class of a class template.
1687///
1688/// \param TemplateArgs The template arguments to be substituted into
1689/// the pattern.
1690///
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001691/// \param TSK the kind of implicit or explicit instantiation to perform.
Douglas Gregor5842ba92009-08-24 15:23:48 +00001692///
1693/// \param Complain whether to complain if the class cannot be instantiated due
1694/// to the lack of a definition.
1695///
Douglas Gregord475b8d2009-03-25 21:17:03 +00001696/// \returns true if an error occurred, false otherwise.
1697bool
1698Sema::InstantiateClass(SourceLocation PointOfInstantiation,
1699 CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001700 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001701 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001702 bool Complain) {
Douglas Gregord475b8d2009-03-25 21:17:03 +00001703 bool Invalid = false;
John McCalle29ba202009-08-20 01:44:21 +00001704
Mike Stump1eb44332009-09-09 15:08:12 +00001705 CXXRecordDecl *PatternDef
Douglas Gregor952b0172010-02-11 01:04:33 +00001706 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
John McCalld46a1122011-04-27 06:46:31 +00001707 if (!PatternDef || PatternDef->isBeingDefined()) {
1708 if (!Complain || (PatternDef && PatternDef->isInvalidDecl())) {
Douglas Gregor5842ba92009-08-24 15:23:48 +00001709 // Say nothing
John McCalld46a1122011-04-27 06:46:31 +00001710 } else if (PatternDef) {
1711 assert(PatternDef->isBeingDefined());
1712 Diag(PointOfInstantiation,
1713 diag::err_template_instantiate_within_definition)
1714 << (TSK != TSK_ImplicitInstantiation)
1715 << Context.getTypeDeclType(Instantiation);
1716 // Not much point in noting the template declaration here, since
1717 // we're lexically inside it.
1718 Instantiation->setInvalidDecl();
Douglas Gregor5842ba92009-08-24 15:23:48 +00001719 } else if (Pattern == Instantiation->getInstantiatedFromMemberClass()) {
Douglas Gregord475b8d2009-03-25 21:17:03 +00001720 Diag(PointOfInstantiation,
1721 diag::err_implicit_instantiate_member_undefined)
1722 << Context.getTypeDeclType(Instantiation);
1723 Diag(Pattern->getLocation(), diag::note_member_of_template_here);
1724 } else {
Douglas Gregor93dfdb12009-05-13 00:25:59 +00001725 Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001726 << (TSK != TSK_ImplicitInstantiation)
Douglas Gregord475b8d2009-03-25 21:17:03 +00001727 << Context.getTypeDeclType(Instantiation);
1728 Diag(Pattern->getLocation(), diag::note_template_decl_here);
1729 }
Nico Weberc7feca02011-12-20 20:32:49 +00001730
1731 // In general, Instantiation isn't marked invalid to get more than one
1732 // error for multiple undefined instantiations. But the code that does
1733 // explicit declaration -> explicit definition conversion can't handle
1734 // invalid declarations, so mark as invalid in that case.
1735 if (TSK == TSK_ExplicitInstantiationDeclaration)
1736 Instantiation->setInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00001737 return true;
1738 }
1739 Pattern = PatternDef;
1740
Douglas Gregor454885e2009-10-15 15:54:05 +00001741 // \brief Record the point of instantiation.
1742 if (MemberSpecializationInfo *MSInfo
1743 = Instantiation->getMemberSpecializationInfo()) {
1744 MSInfo->setTemplateSpecializationKind(TSK);
1745 MSInfo->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001746 } else if (ClassTemplateSpecializationDecl *Spec
Nico Weberc7feca02011-12-20 20:32:49 +00001747 = dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) {
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001748 Spec->setTemplateSpecializationKind(TSK);
1749 Spec->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor454885e2009-10-15 15:54:05 +00001750 }
1751
Douglas Gregord048bb72009-03-25 21:23:52 +00001752 InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001753 if (Inst)
1754 return true;
1755
1756 // Enter the scope of this instantiation. We don't use
1757 // PushDeclContext because we don't have a scope.
John McCallf5813822010-04-29 00:35:03 +00001758 ContextRAII SavedContext(*this, Instantiation);
Douglas Gregor9679caf2010-05-12 17:27:19 +00001759 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00001760 Sema::PotentiallyEvaluated);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001761
Douglas Gregor05030bb2010-03-24 01:33:17 +00001762 // If this is an instantiation of a local class, merge this local
1763 // instantiation scope with the enclosing scope. Otherwise, every
1764 // instantiation of a class has its own local instantiation scope.
1765 bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod();
John McCall2a7fb272010-08-25 05:32:35 +00001766 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Douglas Gregor05030bb2010-03-24 01:33:17 +00001767
John McCall1d8d1cc2010-08-01 02:01:53 +00001768 // Pull attributes from the pattern onto the instantiation.
1769 InstantiateAttrs(TemplateArgs, Pattern, Instantiation);
1770
Douglas Gregord475b8d2009-03-25 21:17:03 +00001771 // Start the definition of this instantiation.
1772 Instantiation->startDefinition();
Douglas Gregor13c85772010-05-06 00:28:52 +00001773
1774 Instantiation->setTagKind(Pattern->getTagKind());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001775
John McCallce3ff2b2009-08-25 22:02:44 +00001776 // Do substitution on the base class specifiers.
1777 if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs))
Douglas Gregord475b8d2009-03-25 21:17:03 +00001778 Invalid = true;
1779
Douglas Gregord65587f2010-11-10 19:44:59 +00001780 TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001781 SmallVector<Decl*, 4> Fields;
1782 SmallVector<std::pair<FieldDecl*, FieldDecl*>, 4>
Richard Smith7a614d82011-06-11 17:19:42 +00001783 FieldsWithMemberInitializers;
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001784 // Delay instantiation of late parsed attributes.
1785 LateInstantiatedAttrVec LateAttrs;
1786 Instantiator.enableLateAttributeInstantiation(&LateAttrs);
1787
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001788 for (RecordDecl::decl_iterator Member = Pattern->decls_begin(),
Mike Stump1eb44332009-09-09 15:08:12 +00001789 MemberEnd = Pattern->decls_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001790 Member != MemberEnd; ++Member) {
Argyrios Kyrtzidisbb5e4312010-11-04 03:18:57 +00001791 // Don't instantiate members not belonging in this semantic context.
1792 // e.g. for:
1793 // @code
1794 // template <int i> class A {
1795 // class B *g;
1796 // };
1797 // @endcode
1798 // 'class B' has the template as lexical context but semantically it is
1799 // introduced in namespace scope.
1800 if ((*Member)->getDeclContext() != Pattern)
1801 continue;
1802
Douglas Gregord65587f2010-11-10 19:44:59 +00001803 if ((*Member)->isInvalidDecl()) {
1804 Invalid = true;
1805 continue;
1806 }
1807
1808 Decl *NewMember = Instantiator.Visit(*Member);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001809 if (NewMember) {
Richard Smith7a614d82011-06-11 17:19:42 +00001810 if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember)) {
John McCalld226f652010-08-21 09:40:31 +00001811 Fields.push_back(Field);
Richard Smith7a614d82011-06-11 17:19:42 +00001812 FieldDecl *OldField = cast<FieldDecl>(*Member);
1813 if (OldField->getInClassInitializer())
1814 FieldsWithMemberInitializers.push_back(std::make_pair(OldField,
1815 Field));
1816 } else if (NewMember->isInvalidDecl())
Eli Friedman721e77d2009-12-07 00:22:08 +00001817 Invalid = true;
Douglas Gregord475b8d2009-03-25 21:17:03 +00001818 } else {
1819 // FIXME: Eventually, a NULL return will mean that one of the
Mike Stump390b4cc2009-05-16 07:39:55 +00001820 // instantiations was a semantic disaster, and we'll want to set Invalid =
1821 // true. For now, we expect to skip some members that we can't yet handle.
Douglas Gregord475b8d2009-03-25 21:17:03 +00001822 }
1823 }
1824
1825 // Finish checking fields.
David Blaikie77b6de02011-09-22 02:58:26 +00001826 ActOnFields(0, Instantiation->getLocation(), Instantiation, Fields,
1827 SourceLocation(), SourceLocation(), 0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00001828 CheckCompletedCXXClass(Instantiation);
Richard Smith7a614d82011-06-11 17:19:42 +00001829
1830 // Attach any in-class member initializers now the class is complete.
1831 for (unsigned I = 0, N = FieldsWithMemberInitializers.size(); I != N; ++I) {
1832 FieldDecl *OldField = FieldsWithMemberInitializers[I].first;
1833 FieldDecl *NewField = FieldsWithMemberInitializers[I].second;
1834 Expr *OldInit = OldField->getInClassInitializer();
Richard Smith7a614d82011-06-11 17:19:42 +00001835
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001836 SourceLocation LParenLoc, RParenLoc;
1837 ASTOwningVector<Expr*> NewArgs(*this);
1838 if (InstantiateInitializer(OldInit, TemplateArgs, LParenLoc, NewArgs,
1839 RParenLoc))
Richard Smith7a614d82011-06-11 17:19:42 +00001840 NewField->setInvalidDecl();
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001841 else {
1842 assert(NewArgs.size() == 1 && "wrong number of in-class initializers");
1843 ActOnCXXInClassMemberInitializer(NewField, LParenLoc, NewArgs[0]);
1844 }
Richard Smith7a614d82011-06-11 17:19:42 +00001845 }
1846
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001847 // Instantiate late parsed attributes, and attach them to their decls.
1848 // See Sema::InstantiateAttrs
1849 for (LateInstantiatedAttrVec::iterator I = LateAttrs.begin(),
1850 E = LateAttrs.end(); I != E; ++I) {
1851 assert(CurrentInstantiationScope == Instantiator.getStartingScope());
1852 CurrentInstantiationScope = I->Scope;
1853 Attr *NewAttr =
1854 instantiateTemplateAttribute(I->TmplAttr, Context, *this, TemplateArgs);
1855 I->NewDecl->addAttr(NewAttr);
1856 LocalInstantiationScope::deleteScopes(I->Scope,
1857 Instantiator.getStartingScope());
1858 }
1859 Instantiator.disableLateAttributeInstantiation();
1860 LateAttrs.clear();
1861
Richard Smith7a614d82011-06-11 17:19:42 +00001862 if (!FieldsWithMemberInitializers.empty())
1863 ActOnFinishDelayedMemberInitializers(Instantiation);
1864
Abramo Bagnarae9946242011-11-18 08:08:52 +00001865 if (TSK == TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis734bd6e2012-02-11 01:59:57 +00001866 Instantiation->setLocation(Pattern->getLocation());
Abramo Bagnarae9946242011-11-18 08:08:52 +00001867 Instantiation->setLocStart(Pattern->getInnerLocStart());
Abramo Bagnara09d82122011-10-03 20:34:03 +00001868 Instantiation->setRBraceLoc(Pattern->getRBraceLoc());
Abramo Bagnarae9946242011-11-18 08:08:52 +00001869 }
Abramo Bagnara09d82122011-10-03 20:34:03 +00001870
Douglas Gregor663b5a02009-10-14 20:14:33 +00001871 if (Instantiation->isInvalidDecl())
1872 Invalid = true;
Douglas Gregord65587f2010-11-10 19:44:59 +00001873 else {
1874 // Instantiate any out-of-line class template partial
1875 // specializations now.
1876 for (TemplateDeclInstantiator::delayed_partial_spec_iterator
1877 P = Instantiator.delayed_partial_spec_begin(),
1878 PEnd = Instantiator.delayed_partial_spec_end();
1879 P != PEnd; ++P) {
1880 if (!Instantiator.InstantiateClassTemplatePartialSpecialization(
1881 P->first,
1882 P->second)) {
1883 Invalid = true;
1884 break;
1885 }
1886 }
1887 }
1888
Douglas Gregord475b8d2009-03-25 21:17:03 +00001889 // Exit the scope of this instantiation.
John McCallf5813822010-04-29 00:35:03 +00001890 SavedContext.pop();
Douglas Gregord475b8d2009-03-25 21:17:03 +00001891
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001892 if (!Invalid) {
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001893 Consumer.HandleTagDeclDefinition(Instantiation);
1894
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001895 // Always emit the vtable for an explicit instantiation definition
1896 // of a polymorphic class template specialization.
1897 if (TSK == TSK_ExplicitInstantiationDefinition)
1898 MarkVTableUsed(PointOfInstantiation, Instantiation, true);
1899 }
1900
Douglas Gregord475b8d2009-03-25 21:17:03 +00001901 return Invalid;
1902}
1903
Douglas Gregor9b623632010-10-12 23:32:35 +00001904namespace {
1905 /// \brief A partial specialization whose template arguments have matched
1906 /// a given template-id.
1907 struct PartialSpecMatchResult {
1908 ClassTemplatePartialSpecializationDecl *Partial;
1909 TemplateArgumentList *Args;
Douglas Gregor9b623632010-10-12 23:32:35 +00001910 };
1911}
1912
Mike Stump1eb44332009-09-09 15:08:12 +00001913bool
Douglas Gregor2943aed2009-03-03 04:44:36 +00001914Sema::InstantiateClassTemplateSpecialization(
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001915 SourceLocation PointOfInstantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001916 ClassTemplateSpecializationDecl *ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001917 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001918 bool Complain) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001919 // Perform the actual instantiation on the canonical declaration.
1920 ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>(
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00001921 ClassTemplateSpec->getCanonicalDecl());
Douglas Gregor2943aed2009-03-03 04:44:36 +00001922
Douglas Gregor52604ab2009-09-11 21:19:12 +00001923 // Check whether we have already instantiated or specialized this class
1924 // template specialization.
1925 if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) {
1926 if (ClassTemplateSpec->getSpecializationKind() ==
1927 TSK_ExplicitInstantiationDeclaration &&
1928 TSK == TSK_ExplicitInstantiationDefinition) {
1929 // An explicit instantiation definition follows an explicit instantiation
1930 // declaration (C++0x [temp.explicit]p10); go ahead and perform the
1931 // explicit instantiation.
1932 ClassTemplateSpec->setSpecializationKind(TSK);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001933
1934 // If this is an explicit instantiation definition, mark the
1935 // vtable as used.
Nico Weberc7feca02011-12-20 20:32:49 +00001936 if (TSK == TSK_ExplicitInstantiationDefinition &&
1937 !ClassTemplateSpec->isInvalidDecl())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001938 MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true);
1939
Douglas Gregor52604ab2009-09-11 21:19:12 +00001940 return false;
1941 }
1942
1943 // We can only instantiate something that hasn't already been
1944 // instantiated or specialized. Fail without any diagnostics: our
1945 // caller will provide an error message.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001946 return true;
Douglas Gregor52604ab2009-09-11 21:19:12 +00001947 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001948
Douglas Gregor9eea08b2009-09-15 16:51:42 +00001949 if (ClassTemplateSpec->isInvalidDecl())
1950 return true;
1951
Douglas Gregor2943aed2009-03-03 04:44:36 +00001952 ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate();
Douglas Gregord6350ae2009-08-28 20:31:08 +00001953 CXXRecordDecl *Pattern = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00001954
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00001955 // C++ [temp.class.spec.match]p1:
1956 // When a class template is used in a context that requires an
1957 // instantiation of the class, it is necessary to determine
1958 // whether the instantiation is to be generated using the primary
1959 // template or one of the partial specializations. This is done by
1960 // matching the template arguments of the class template
1961 // specialization with the template argument lists of the partial
1962 // specializations.
Douglas Gregor9b623632010-10-12 23:32:35 +00001963 typedef PartialSpecMatchResult MatchResult;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001964 SmallVector<MatchResult, 4> Matched;
1965 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001966 Template->getPartialSpecializations(PartialSpecs);
1967 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
1968 ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
John McCall5769d612010-02-08 23:07:23 +00001969 TemplateDeductionInfo Info(Context, PointOfInstantiation);
Douglas Gregorf67875d2009-06-12 18:26:56 +00001970 if (TemplateDeductionResult Result
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001971 = DeduceTemplateArguments(Partial,
Douglas Gregorf67875d2009-06-12 18:26:56 +00001972 ClassTemplateSpec->getTemplateArgs(),
1973 Info)) {
1974 // FIXME: Store the failed-deduction information for use in
1975 // diagnostics, later.
1976 (void)Result;
1977 } else {
Douglas Gregor9b623632010-10-12 23:32:35 +00001978 Matched.push_back(PartialSpecMatchResult());
1979 Matched.back().Partial = Partial;
1980 Matched.back().Args = Info.take();
Douglas Gregorf67875d2009-06-12 18:26:56 +00001981 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00001982 }
1983
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001984 // If we're dealing with a member template where the template parameters
1985 // have been instantiated, this provides the original template parameters
1986 // from which the member template's parameters were instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001987 SmallVector<const NamedDecl *, 4> InstantiatedTemplateParameters;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001988
Douglas Gregored9c0f92009-10-29 00:04:11 +00001989 if (Matched.size() >= 1) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001990 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
Douglas Gregored9c0f92009-10-29 00:04:11 +00001991 if (Matched.size() == 1) {
1992 // -- If exactly one matching specialization is found, the
1993 // instantiation is generated from that specialization.
1994 // We don't need to do anything for this.
1995 } else {
1996 // -- If more than one matching specialization is found, the
1997 // partial order rules (14.5.4.2) are used to determine
1998 // whether one of the specializations is more specialized
1999 // than the others. If none of the specializations is more
2000 // specialized than all of the other matching
2001 // specializations, then the use of the class template is
2002 // ambiguous and the program is ill-formed.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002003 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002004 PEnd = Matched.end();
2005 P != PEnd; ++P) {
Douglas Gregor9b623632010-10-12 23:32:35 +00002006 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002007 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002008 == P->Partial)
Douglas Gregored9c0f92009-10-29 00:04:11 +00002009 Best = P;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002010 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002011
Douglas Gregored9c0f92009-10-29 00:04:11 +00002012 // Determine if the best partial specialization is more specialized than
2013 // the others.
2014 bool Ambiguous = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002015 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002016 PEnd = Matched.end();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002017 P != PEnd; ++P) {
2018 if (P != Best &&
Douglas Gregor9b623632010-10-12 23:32:35 +00002019 getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002020 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002021 != Best->Partial) {
Douglas Gregored9c0f92009-10-29 00:04:11 +00002022 Ambiguous = true;
2023 break;
2024 }
2025 }
2026
2027 if (Ambiguous) {
2028 // Partial ordering did not produce a clear winner. Complain.
2029 ClassTemplateSpec->setInvalidDecl();
2030 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2031 << ClassTemplateSpec;
2032
2033 // Print the matching partial specializations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002034 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002035 PEnd = Matched.end();
2036 P != PEnd; ++P)
Douglas Gregor9b623632010-10-12 23:32:35 +00002037 Diag(P->Partial->getLocation(), diag::note_partial_spec_match)
2038 << getTemplateArgumentBindingsText(
2039 P->Partial->getTemplateParameters(),
2040 *P->Args);
Douglas Gregord6350ae2009-08-28 20:31:08 +00002041
Douglas Gregored9c0f92009-10-29 00:04:11 +00002042 return true;
2043 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002044 }
2045
2046 // Instantiate using the best class template partial specialization.
Douglas Gregor9b623632010-10-12 23:32:35 +00002047 ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->Partial;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002048 while (OrigPartialSpec->getInstantiatedFromMember()) {
2049 // If we've found an explicit specialization of this class template,
2050 // stop here and use that as the pattern.
2051 if (OrigPartialSpec->isMemberSpecialization())
2052 break;
2053
2054 OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember();
2055 }
2056
2057 Pattern = OrigPartialSpec;
Douglas Gregor9b623632010-10-12 23:32:35 +00002058 ClassTemplateSpec->setInstantiationOf(Best->Partial, Best->Args);
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002059 } else {
2060 // -- If no matches are found, the instantiation is generated
2061 // from the primary template.
Douglas Gregord6350ae2009-08-28 20:31:08 +00002062 ClassTemplateDecl *OrigTemplate = Template;
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002063 while (OrigTemplate->getInstantiatedFromMemberTemplate()) {
2064 // If we've found an explicit specialization of this class template,
2065 // stop here and use that as the pattern.
2066 if (OrigTemplate->isMemberSpecialization())
2067 break;
2068
Douglas Gregord6350ae2009-08-28 20:31:08 +00002069 OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate();
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002070 }
2071
Douglas Gregord6350ae2009-08-28 20:31:08 +00002072 Pattern = OrigTemplate->getTemplatedDecl();
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002073 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002074
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002075 bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec,
2076 Pattern,
2077 getTemplateInstantiationArgs(ClassTemplateSpec),
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002078 TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002079 Complain);
Mike Stump1eb44332009-09-09 15:08:12 +00002080
Douglas Gregor199d9912009-06-05 00:53:49 +00002081 return Result;
Douglas Gregor2943aed2009-03-03 04:44:36 +00002082}
Douglas Gregor5953d8b2009-03-19 17:26:29 +00002083
John McCallce3ff2b2009-08-25 22:02:44 +00002084/// \brief Instantiates the definitions of all of the member
2085/// of the given class, which is an instantiation of a class template
2086/// or a member class of a template.
Douglas Gregora58861f2009-05-13 20:28:22 +00002087void
2088Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002089 CXXRecordDecl *Instantiation,
2090 const MultiLevelTemplateArgumentList &TemplateArgs,
2091 TemplateSpecializationKind TSK) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002092 for (DeclContext::decl_iterator D = Instantiation->decls_begin(),
2093 DEnd = Instantiation->decls_end();
Douglas Gregora58861f2009-05-13 20:28:22 +00002094 D != DEnd; ++D) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002095 bool SuppressNew = false;
Douglas Gregora58861f2009-05-13 20:28:22 +00002096 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002097 if (FunctionDecl *Pattern
2098 = Function->getInstantiatedFromMemberFunction()) {
2099 MemberSpecializationInfo *MSInfo
2100 = Function->getMemberSpecializationInfo();
2101 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002102 if (MSInfo->getTemplateSpecializationKind()
2103 == TSK_ExplicitSpecialization)
2104 continue;
2105
Douglas Gregor0d035142009-10-27 18:42:08 +00002106 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2107 Function,
2108 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002109 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002110 SuppressNew) ||
2111 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002112 continue;
2113
Sean Hunt10620eb2011-05-06 20:44:56 +00002114 if (Function->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002115 continue;
2116
2117 if (TSK == TSK_ExplicitInstantiationDefinition) {
2118 // C++0x [temp.explicit]p8:
2119 // An explicit instantiation definition that names a class template
2120 // specialization explicitly instantiates the class template
2121 // specialization and is only an explicit instantiation definition
2122 // of members whose definition is visible at the point of
2123 // instantiation.
Sean Hunt10620eb2011-05-06 20:44:56 +00002124 if (!Pattern->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002125 continue;
2126
2127 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2128
2129 InstantiateFunctionDefinition(PointOfInstantiation, Function);
2130 } else {
2131 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2132 }
Douglas Gregorf6b11852009-10-08 15:14:33 +00002133 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002134 } else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002135 if (Var->isStaticDataMember()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002136 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
2137 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002138 if (MSInfo->getTemplateSpecializationKind()
2139 == TSK_ExplicitSpecialization)
2140 continue;
2141
Douglas Gregor0d035142009-10-27 18:42:08 +00002142 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2143 Var,
2144 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002145 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002146 SuppressNew) ||
2147 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002148 continue;
2149
Douglas Gregor0d035142009-10-27 18:42:08 +00002150 if (TSK == TSK_ExplicitInstantiationDefinition) {
2151 // C++0x [temp.explicit]p8:
2152 // An explicit instantiation definition that names a class template
2153 // specialization explicitly instantiates the class template
2154 // specialization and is only an explicit instantiation definition
2155 // of members whose definition is visible at the point of
2156 // instantiation.
2157 if (!Var->getInstantiatedFromStaticDataMember()
2158 ->getOutOfLineDefinition())
2159 continue;
2160
2161 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002162 InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var);
Douglas Gregor0d035142009-10-27 18:42:08 +00002163 } else {
2164 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2165 }
2166 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002167 } else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) {
Douglas Gregora77eaa92010-04-18 18:11:38 +00002168 // Always skip the injected-class-name, along with any
2169 // redeclarations of nested classes, since both would cause us
2170 // to try to instantiate the members of a class twice.
Douglas Gregoref96ee02012-01-14 16:38:05 +00002171 if (Record->isInjectedClassName() || Record->getPreviousDecl())
Douglas Gregor2db32322009-10-07 23:56:10 +00002172 continue;
2173
Douglas Gregor0d035142009-10-27 18:42:08 +00002174 MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo();
2175 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002176
2177 if (MSInfo->getTemplateSpecializationKind()
2178 == TSK_ExplicitSpecialization)
2179 continue;
Nico Weberc956b6e2010-09-27 21:02:09 +00002180
Douglas Gregor0d035142009-10-27 18:42:08 +00002181 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2182 Record,
2183 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002184 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002185 SuppressNew) ||
2186 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002187 continue;
2188
Douglas Gregor0d035142009-10-27 18:42:08 +00002189 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
2190 assert(Pattern && "Missing instantiated-from-template information");
2191
Douglas Gregor952b0172010-02-11 01:04:33 +00002192 if (!Record->getDefinition()) {
2193 if (!Pattern->getDefinition()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002194 // C++0x [temp.explicit]p8:
2195 // An explicit instantiation definition that names a class template
2196 // specialization explicitly instantiates the class template
2197 // specialization and is only an explicit instantiation definition
2198 // of members whose definition is visible at the point of
2199 // instantiation.
2200 if (TSK == TSK_ExplicitInstantiationDeclaration) {
2201 MSInfo->setTemplateSpecializationKind(TSK);
2202 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2203 }
2204
2205 continue;
2206 }
2207
2208 InstantiateClass(PointOfInstantiation, Record, Pattern,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002209 TemplateArgs,
2210 TSK);
Nico Weberc956b6e2010-09-27 21:02:09 +00002211 } else {
2212 if (TSK == TSK_ExplicitInstantiationDefinition &&
2213 Record->getTemplateSpecializationKind() ==
2214 TSK_ExplicitInstantiationDeclaration) {
2215 Record->setTemplateSpecializationKind(TSK);
2216 MarkVTableUsed(PointOfInstantiation, Record, true);
2217 }
Douglas Gregor0d035142009-10-27 18:42:08 +00002218 }
Douglas Gregore9374d52009-10-08 01:19:17 +00002219
Douglas Gregor952b0172010-02-11 01:04:33 +00002220 Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00002221 if (Pattern)
2222 InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs,
2223 TSK);
Douglas Gregora58861f2009-05-13 20:28:22 +00002224 }
2225 }
2226}
2227
2228/// \brief Instantiate the definitions of all of the members of the
2229/// given class template specialization, which was named as part of an
2230/// explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00002231void
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002232Sema::InstantiateClassTemplateSpecializationMembers(
Douglas Gregora58861f2009-05-13 20:28:22 +00002233 SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002234 ClassTemplateSpecializationDecl *ClassTemplateSpec,
2235 TemplateSpecializationKind TSK) {
Douglas Gregora58861f2009-05-13 20:28:22 +00002236 // C++0x [temp.explicit]p7:
2237 // An explicit instantiation that names a class template
2238 // specialization is an explicit instantion of the same kind
2239 // (declaration or definition) of each of its members (not
2240 // including members inherited from base classes) that has not
2241 // been previously explicitly specialized in the translation unit
2242 // containing the explicit instantiation, except as described
2243 // below.
2244 InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002245 getTemplateInstantiationArgs(ClassTemplateSpec),
2246 TSK);
Douglas Gregora58861f2009-05-13 20:28:22 +00002247}
2248
John McCall60d7b3a2010-08-24 06:29:42 +00002249StmtResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002250Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor43959a92009-08-20 07:17:43 +00002251 if (!S)
2252 return Owned(S);
2253
2254 TemplateInstantiator Instantiator(*this, TemplateArgs,
2255 SourceLocation(),
2256 DeclarationName());
2257 return Instantiator.TransformStmt(S);
2258}
2259
John McCall60d7b3a2010-08-24 06:29:42 +00002260ExprResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002261Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregorb98b1992009-08-11 05:31:07 +00002262 if (!E)
2263 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002264
Douglas Gregorb98b1992009-08-11 05:31:07 +00002265 TemplateInstantiator Instantiator(*this, TemplateArgs,
2266 SourceLocation(),
2267 DeclarationName());
2268 return Instantiator.TransformExpr(E);
2269}
2270
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002271bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,
2272 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002273 SmallVectorImpl<Expr *> &Outputs) {
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002274 if (NumExprs == 0)
2275 return false;
2276
2277 TemplateInstantiator Instantiator(*this, TemplateArgs,
2278 SourceLocation(),
2279 DeclarationName());
2280 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
2281}
2282
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002283NestedNameSpecifierLoc
2284Sema::SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
2285 const MultiLevelTemplateArgumentList &TemplateArgs) {
2286 if (!NNS)
2287 return NestedNameSpecifierLoc();
2288
2289 TemplateInstantiator Instantiator(*this, TemplateArgs, NNS.getBeginLoc(),
2290 DeclarationName());
2291 return Instantiator.TransformNestedNameSpecifierLoc(NNS);
2292}
2293
Abramo Bagnara25777432010-08-11 22:01:17 +00002294/// \brief Do template substitution on declaration name info.
2295DeclarationNameInfo
2296Sema::SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
2297 const MultiLevelTemplateArgumentList &TemplateArgs) {
2298 TemplateInstantiator Instantiator(*this, TemplateArgs, NameInfo.getLoc(),
2299 NameInfo.getName());
2300 return Instantiator.TransformDeclarationNameInfo(NameInfo);
2301}
2302
Douglas Gregorde650ae2009-03-31 18:38:02 +00002303TemplateName
Douglas Gregor1d752d72011-03-02 18:46:51 +00002304Sema::SubstTemplateName(NestedNameSpecifierLoc QualifierLoc,
2305 TemplateName Name, SourceLocation Loc,
Douglas Gregord6350ae2009-08-28 20:31:08 +00002306 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord1067e52009-08-06 06:41:21 +00002307 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
2308 DeclarationName());
Douglas Gregor1d752d72011-03-02 18:46:51 +00002309 CXXScopeSpec SS;
2310 SS.Adopt(QualifierLoc);
2311 return Instantiator.TransformTemplateName(SS, Name, Loc);
Douglas Gregorde650ae2009-03-31 18:38:02 +00002312}
Douglas Gregor91333002009-06-11 00:06:24 +00002313
Douglas Gregore02e2622010-12-22 21:19:48 +00002314bool Sema::Subst(const TemplateArgumentLoc *Args, unsigned NumArgs,
2315 TemplateArgumentListInfo &Result,
John McCall833ca992009-10-29 08:12:44 +00002316 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor670444e2009-08-04 22:27:00 +00002317 TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(),
2318 DeclarationName());
Douglas Gregore02e2622010-12-22 21:19:48 +00002319
2320 return Instantiator.TransformTemplateArguments(Args, NumArgs, Result);
Douglas Gregor91333002009-06-11 00:06:24 +00002321}
Douglas Gregor895162d2010-04-30 18:55:50 +00002322
Douglas Gregor12c9c002011-01-07 16:43:16 +00002323llvm::PointerUnion<Decl *, LocalInstantiationScope::DeclArgumentPack *> *
2324LocalInstantiationScope::findInstantiationOf(const Decl *D) {
Chris Lattner57ad3782011-02-17 20:34:02 +00002325 for (LocalInstantiationScope *Current = this; Current;
Douglas Gregor895162d2010-04-30 18:55:50 +00002326 Current = Current->Outer) {
Chris Lattner57ad3782011-02-17 20:34:02 +00002327
Douglas Gregor895162d2010-04-30 18:55:50 +00002328 // Check if we found something within this scope.
Douglas Gregorebb1c562010-12-21 21:22:51 +00002329 const Decl *CheckD = D;
2330 do {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002331 LocalDeclsMap::iterator Found = Current->LocalDecls.find(CheckD);
Douglas Gregorebb1c562010-12-21 21:22:51 +00002332 if (Found != Current->LocalDecls.end())
Douglas Gregor12c9c002011-01-07 16:43:16 +00002333 return &Found->second;
Douglas Gregorebb1c562010-12-21 21:22:51 +00002334
2335 // If this is a tag declaration, it's possible that we need to look for
2336 // a previous declaration.
2337 if (const TagDecl *Tag = dyn_cast<TagDecl>(CheckD))
Douglas Gregoref96ee02012-01-14 16:38:05 +00002338 CheckD = Tag->getPreviousDecl();
Douglas Gregorebb1c562010-12-21 21:22:51 +00002339 else
2340 CheckD = 0;
2341 } while (CheckD);
2342
Douglas Gregor895162d2010-04-30 18:55:50 +00002343 // If we aren't combined with our outer scope, we're done.
2344 if (!Current->CombineWithOuterScope)
2345 break;
2346 }
Chris Lattner57ad3782011-02-17 20:34:02 +00002347
2348 // If we didn't find the decl, then we either have a sema bug, or we have a
2349 // forward reference to a label declaration. Return null to indicate that
2350 // we have an uninstantiated label.
2351 assert(isa<LabelDecl>(D) && "declaration not instantiated in this scope");
Douglas Gregor895162d2010-04-30 18:55:50 +00002352 return 0;
2353}
2354
John McCall2a7fb272010-08-25 05:32:35 +00002355void LocalInstantiationScope::InstantiatedLocal(const Decl *D, Decl *Inst) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002356 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
Douglas Gregord3731192011-01-10 07:32:04 +00002357 if (Stored.isNull())
2358 Stored = Inst;
2359 else if (Stored.is<Decl *>()) {
2360 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
2361 Stored = Inst;
2362 } else
2363 LocalDecls[D].get<DeclArgumentPack *>()->push_back(Inst);
Douglas Gregor895162d2010-04-30 18:55:50 +00002364}
Douglas Gregor12c9c002011-01-07 16:43:16 +00002365
2366void LocalInstantiationScope::InstantiatedLocalPackArg(const Decl *D,
2367 Decl *Inst) {
2368 DeclArgumentPack *Pack = LocalDecls[D].get<DeclArgumentPack *>();
2369 Pack->push_back(Inst);
2370}
2371
2372void LocalInstantiationScope::MakeInstantiatedLocalArgPack(const Decl *D) {
2373 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2374 assert(Stored.isNull() && "Already instantiated this local");
2375 DeclArgumentPack *Pack = new DeclArgumentPack;
2376 Stored = Pack;
2377 ArgumentPacks.push_back(Pack);
2378}
2379
Douglas Gregord3731192011-01-10 07:32:04 +00002380void LocalInstantiationScope::SetPartiallySubstitutedPack(NamedDecl *Pack,
2381 const TemplateArgument *ExplicitArgs,
2382 unsigned NumExplicitArgs) {
2383 assert((!PartiallySubstitutedPack || PartiallySubstitutedPack == Pack) &&
2384 "Already have a partially-substituted pack");
2385 assert((!PartiallySubstitutedPack
2386 || NumArgsInPartiallySubstitutedPack == NumExplicitArgs) &&
2387 "Wrong number of arguments in partially-substituted pack");
2388 PartiallySubstitutedPack = Pack;
2389 ArgsInPartiallySubstitutedPack = ExplicitArgs;
2390 NumArgsInPartiallySubstitutedPack = NumExplicitArgs;
2391}
2392
2393NamedDecl *LocalInstantiationScope::getPartiallySubstitutedPack(
2394 const TemplateArgument **ExplicitArgs,
2395 unsigned *NumExplicitArgs) const {
2396 if (ExplicitArgs)
2397 *ExplicitArgs = 0;
2398 if (NumExplicitArgs)
2399 *NumExplicitArgs = 0;
2400
2401 for (const LocalInstantiationScope *Current = this; Current;
2402 Current = Current->Outer) {
2403 if (Current->PartiallySubstitutedPack) {
2404 if (ExplicitArgs)
2405 *ExplicitArgs = Current->ArgsInPartiallySubstitutedPack;
2406 if (NumExplicitArgs)
2407 *NumExplicitArgs = Current->NumArgsInPartiallySubstitutedPack;
2408
2409 return Current->PartiallySubstitutedPack;
2410 }
2411
2412 if (!Current->CombineWithOuterScope)
2413 break;
2414 }
2415
2416 return 0;
2417}