blob: 04aa79b5fcc7cb40d0d1d815f93eb8f93f43e9ea [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"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "clang/AST/ASTConsumer.h"
16#include "clang/AST/ASTContext.h"
17#include "clang/AST/DeclTemplate.h"
18#include "clang/AST/Expr.h"
19#include "clang/Basic/LangOptions.h"
John McCall19510852010-08-20 18:27:03 +000020#include "clang/Sema/DeclSpec.h"
Richard Smith7a614d82011-06-11 17:19:42 +000021#include "clang/Sema/Initialization.h"
Douglas Gregore737f502010-08-12 20:07:10 +000022#include "clang/Sema/Lookup.h"
John McCall7cd088e2010-08-24 07:21:54 +000023#include "clang/Sema/Template.h"
John McCall2a7fb272010-08-25 05:32:35 +000024#include "clang/Sema/TemplateDeduction.h"
Douglas Gregor99ebf652009-02-27 19:31:52 +000025
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:
Richard Smithe6975e92012-04-17 00:58:00 +0000156 case ExceptionSpecInstantiation:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000157 case DefaultTemplateArgumentInstantiation:
158 case DefaultFunctionArgumentInstantiation:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000159 case ExplicitTemplateArgumentSubstitution:
160 case DeducedTemplateArgumentSubstitution:
161 case PriorTemplateArgumentSubstitution:
Richard Smithab91ef12012-07-08 02:38:24 +0000162 return true;
163
Douglas Gregorf35f8282009-11-11 21:54:23 +0000164 case DefaultTemplateArgumentChecking:
165 return false;
166 }
David Blaikie7530c032012-01-17 06:56:22 +0000167
168 llvm_unreachable("Invalid InstantiationKind!");
Douglas Gregorf35f8282009-11-11 21:54:23 +0000169}
170
Douglas Gregor26dce442009-03-10 00:06:19 +0000171Sema::InstantiatingTemplate::
172InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000173 Decl *Entity,
Douglas Gregor26dce442009-03-10 00:06:19 +0000174 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000175 : SemaRef(SemaRef),
176 SavedInNonInstantiationSFINAEContext(
177 SemaRef.InNonInstantiationSFINAEContext)
178{
Douglas Gregordf667e72009-03-10 20:44:00 +0000179 Invalid = CheckInstantiationDepth(PointOfInstantiation,
180 InstantiationRange);
181 if (!Invalid) {
Douglas Gregor26dce442009-03-10 00:06:19 +0000182 ActiveTemplateInstantiation Inst;
Douglas Gregordf667e72009-03-10 20:44:00 +0000183 Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation;
Douglas Gregor26dce442009-03-10 00:06:19 +0000184 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000185 Inst.Entity = Entity;
Douglas Gregor313a81d2009-03-12 18:36:18 +0000186 Inst.TemplateArgs = 0;
187 Inst.NumTemplateArgs = 0;
Douglas Gregordf667e72009-03-10 20:44:00 +0000188 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000189 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregordf667e72009-03-10 20:44:00 +0000190 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregordf667e72009-03-10 20:44:00 +0000191 }
192}
193
Richard Smithe6975e92012-04-17 00:58:00 +0000194Sema::InstantiatingTemplate::
195InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
196 FunctionDecl *Entity, ExceptionSpecification,
197 SourceRange InstantiationRange)
198 : SemaRef(SemaRef),
199 SavedInNonInstantiationSFINAEContext(
200 SemaRef.InNonInstantiationSFINAEContext)
201{
202 Invalid = CheckInstantiationDepth(PointOfInstantiation,
203 InstantiationRange);
204 if (!Invalid) {
205 ActiveTemplateInstantiation Inst;
206 Inst.Kind = ActiveTemplateInstantiation::ExceptionSpecInstantiation;
207 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000208 Inst.Entity = Entity;
Richard Smithe6975e92012-04-17 00:58:00 +0000209 Inst.TemplateArgs = 0;
210 Inst.NumTemplateArgs = 0;
211 Inst.InstantiationRange = InstantiationRange;
212 SemaRef.InNonInstantiationSFINAEContext = false;
213 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
214 }
215}
216
Richard Smith7e54fb52012-07-16 01:09:10 +0000217Sema::InstantiatingTemplate::
218InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
219 TemplateDecl *Template,
220 ArrayRef<TemplateArgument> TemplateArgs,
221 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000222 : SemaRef(SemaRef),
223 SavedInNonInstantiationSFINAEContext(
224 SemaRef.InNonInstantiationSFINAEContext)
225{
Douglas Gregordf667e72009-03-10 20:44:00 +0000226 Invalid = CheckInstantiationDepth(PointOfInstantiation,
227 InstantiationRange);
228 if (!Invalid) {
229 ActiveTemplateInstantiation Inst;
Mike Stump1eb44332009-09-09 15:08:12 +0000230 Inst.Kind
Douglas Gregordf667e72009-03-10 20:44:00 +0000231 = ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation;
232 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000233 Inst.Entity = Template;
Richard Smith7e54fb52012-07-16 01:09:10 +0000234 Inst.TemplateArgs = TemplateArgs.data();
235 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregor26dce442009-03-10 00:06:19 +0000236 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000237 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregor26dce442009-03-10 00:06:19 +0000238 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor26dce442009-03-10 00:06:19 +0000239 }
240}
241
Richard Smith7e54fb52012-07-16 01:09:10 +0000242Sema::InstantiatingTemplate::
243InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
244 FunctionTemplateDecl *FunctionTemplate,
245 ArrayRef<TemplateArgument> TemplateArgs,
246 ActiveTemplateInstantiation::InstantiationKind Kind,
247 sema::TemplateDeductionInfo &DeductionInfo,
248 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000249 : SemaRef(SemaRef),
250 SavedInNonInstantiationSFINAEContext(
251 SemaRef.InNonInstantiationSFINAEContext)
252{
Richard Smithab91ef12012-07-08 02:38:24 +0000253 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
Douglas Gregorcca9e962009-07-01 22:01:06 +0000254 if (!Invalid) {
255 ActiveTemplateInstantiation Inst;
256 Inst.Kind = Kind;
257 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000258 Inst.Entity = FunctionTemplate;
Richard Smith7e54fb52012-07-16 01:09:10 +0000259 Inst.TemplateArgs = TemplateArgs.data();
260 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregor9b623632010-10-12 23:32:35 +0000261 Inst.DeductionInfo = &DeductionInfo;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000262 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000263 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000264 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregorf35f8282009-11-11 21:54:23 +0000265
266 if (!Inst.isInstantiationRecord())
267 ++SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000268 }
269}
270
Richard Smith7e54fb52012-07-16 01:09:10 +0000271Sema::InstantiatingTemplate::
272InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
273 ClassTemplatePartialSpecializationDecl *PartialSpec,
274 ArrayRef<TemplateArgument> TemplateArgs,
275 sema::TemplateDeductionInfo &DeductionInfo,
276 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000277 : SemaRef(SemaRef),
278 SavedInNonInstantiationSFINAEContext(
279 SemaRef.InNonInstantiationSFINAEContext)
280{
Richard Smithab91ef12012-07-08 02:38:24 +0000281 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
282 if (!Invalid) {
283 ActiveTemplateInstantiation Inst;
284 Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution;
285 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000286 Inst.Entity = PartialSpec;
Richard Smith7e54fb52012-07-16 01:09:10 +0000287 Inst.TemplateArgs = TemplateArgs.data();
288 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000289 Inst.DeductionInfo = &DeductionInfo;
290 Inst.InstantiationRange = InstantiationRange;
291 SemaRef.InNonInstantiationSFINAEContext = false;
292 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
293 }
Douglas Gregor637a4092009-06-10 23:47:09 +0000294}
295
Richard Smith7e54fb52012-07-16 01:09:10 +0000296Sema::InstantiatingTemplate::
297InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
298 ParmVarDecl *Param,
299 ArrayRef<TemplateArgument> TemplateArgs,
300 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000301 : SemaRef(SemaRef),
302 SavedInNonInstantiationSFINAEContext(
303 SemaRef.InNonInstantiationSFINAEContext)
304{
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000305 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000306 if (!Invalid) {
307 ActiveTemplateInstantiation Inst;
308 Inst.Kind
309 = ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000310 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000311 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000312 Inst.TemplateArgs = TemplateArgs.data();
313 Inst.NumTemplateArgs = TemplateArgs.size();
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000314 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000315 SemaRef.InNonInstantiationSFINAEContext = false;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000316 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000317 }
318}
319
320Sema::InstantiatingTemplate::
321InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000322 NamedDecl *Template, NonTypeTemplateParmDecl *Param,
323 ArrayRef<TemplateArgument> TemplateArgs,
324 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000325 : SemaRef(SemaRef),
326 SavedInNonInstantiationSFINAEContext(
327 SemaRef.InNonInstantiationSFINAEContext)
328{
Richard Smithab91ef12012-07-08 02:38:24 +0000329 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
330 if (!Invalid) {
331 ActiveTemplateInstantiation Inst;
332 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
333 Inst.PointOfInstantiation = PointOfInstantiation;
334 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000335 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000336 Inst.TemplateArgs = TemplateArgs.data();
337 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000338 Inst.InstantiationRange = InstantiationRange;
339 SemaRef.InNonInstantiationSFINAEContext = false;
340 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
341 }
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000342}
343
344Sema::InstantiatingTemplate::
345InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000346 NamedDecl *Template, TemplateTemplateParmDecl *Param,
347 ArrayRef<TemplateArgument> TemplateArgs,
348 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000349 : SemaRef(SemaRef),
350 SavedInNonInstantiationSFINAEContext(
351 SemaRef.InNonInstantiationSFINAEContext)
352{
Richard Smithab91ef12012-07-08 02:38:24 +0000353 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
354 if (!Invalid) {
355 ActiveTemplateInstantiation Inst;
356 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
357 Inst.PointOfInstantiation = PointOfInstantiation;
358 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000359 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000360 Inst.TemplateArgs = TemplateArgs.data();
361 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000362 Inst.InstantiationRange = InstantiationRange;
363 SemaRef.InNonInstantiationSFINAEContext = false;
364 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
365 }
Douglas Gregorf35f8282009-11-11 21:54:23 +0000366}
367
368Sema::InstantiatingTemplate::
369InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000370 TemplateDecl *Template, NamedDecl *Param,
371 ArrayRef<TemplateArgument> TemplateArgs,
372 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000373 : SemaRef(SemaRef),
374 SavedInNonInstantiationSFINAEContext(
375 SemaRef.InNonInstantiationSFINAEContext)
376{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000377 Invalid = false;
378
379 ActiveTemplateInstantiation Inst;
380 Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking;
381 Inst.PointOfInstantiation = PointOfInstantiation;
382 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000383 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000384 Inst.TemplateArgs = TemplateArgs.data();
385 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregorf35f8282009-11-11 21:54:23 +0000386 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000387 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000388 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
389
390 assert(!Inst.isInstantiationRecord());
391 ++SemaRef.NonInstantiationEntries;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000392}
393
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000394void Sema::InstantiatingTemplate::Clear() {
395 if (!Invalid) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000396 if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) {
397 assert(SemaRef.NonInstantiationEntries > 0);
398 --SemaRef.NonInstantiationEntries;
399 }
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000400 SemaRef.InNonInstantiationSFINAEContext
401 = SavedInNonInstantiationSFINAEContext;
Douglas Gregor26dce442009-03-10 00:06:19 +0000402 SemaRef.ActiveTemplateInstantiations.pop_back();
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000403 Invalid = true;
404 }
Douglas Gregor26dce442009-03-10 00:06:19 +0000405}
406
Douglas Gregordf667e72009-03-10 20:44:00 +0000407bool Sema::InstantiatingTemplate::CheckInstantiationDepth(
408 SourceLocation PointOfInstantiation,
409 SourceRange InstantiationRange) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000410 assert(SemaRef.NonInstantiationEntries <=
411 SemaRef.ActiveTemplateInstantiations.size());
412 if ((SemaRef.ActiveTemplateInstantiations.size() -
413 SemaRef.NonInstantiationEntries)
David Blaikie4e4d0842012-03-11 07:00:24 +0000414 <= SemaRef.getLangOpts().InstantiationDepth)
Douglas Gregordf667e72009-03-10 20:44:00 +0000415 return false;
416
Mike Stump1eb44332009-09-09 15:08:12 +0000417 SemaRef.Diag(PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000418 diag::err_template_recursion_depth_exceeded)
David Blaikie4e4d0842012-03-11 07:00:24 +0000419 << SemaRef.getLangOpts().InstantiationDepth
Douglas Gregordf667e72009-03-10 20:44:00 +0000420 << InstantiationRange;
421 SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth)
David Blaikie4e4d0842012-03-11 07:00:24 +0000422 << SemaRef.getLangOpts().InstantiationDepth;
Douglas Gregordf667e72009-03-10 20:44:00 +0000423 return true;
424}
425
Douglas Gregoree1828a2009-03-10 18:03:33 +0000426/// \brief Prints the current instantiation stack through a series of
427/// notes.
428void Sema::PrintInstantiationStack() {
Douglas Gregor575cf372010-04-20 07:18:24 +0000429 // Determine which template instantiations to skip, if any.
430 unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart;
431 unsigned Limit = Diags.getTemplateBacktraceLimit();
432 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
433 SkipStart = Limit / 2 + Limit % 2;
434 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
435 }
436
Douglas Gregorcca9e962009-07-01 22:01:06 +0000437 // FIXME: In all of these cases, we need to show the template arguments
Douglas Gregor575cf372010-04-20 07:18:24 +0000438 unsigned InstantiationIdx = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000439 for (SmallVector<ActiveTemplateInstantiation, 16>::reverse_iterator
Douglas Gregoree1828a2009-03-10 18:03:33 +0000440 Active = ActiveTemplateInstantiations.rbegin(),
441 ActiveEnd = ActiveTemplateInstantiations.rend();
442 Active != ActiveEnd;
Douglas Gregor575cf372010-04-20 07:18:24 +0000443 ++Active, ++InstantiationIdx) {
444 // Skip this instantiation?
445 if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) {
446 if (InstantiationIdx == SkipStart) {
447 // Note that we're skipping instantiations.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000448 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor575cf372010-04-20 07:18:24 +0000449 diag::note_instantiation_contexts_suppressed)
450 << unsigned(ActiveTemplateInstantiations.size() - Limit);
451 }
452 continue;
453 }
454
Douglas Gregordf667e72009-03-10 20:44:00 +0000455 switch (Active->Kind) {
456 case ActiveTemplateInstantiation::TemplateInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000457 Decl *D = Active->Entity;
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000458 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
459 unsigned DiagID = diag::note_template_member_class_here;
460 if (isa<ClassTemplateSpecializationDecl>(Record))
461 DiagID = diag::note_template_class_instantiation_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000462 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000463 << Context.getTypeDeclType(Record)
464 << Active->InstantiationRange;
Douglas Gregor7caa6822009-07-24 20:34:43 +0000465 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor1637be72009-06-26 00:10:03 +0000466 unsigned DiagID;
467 if (Function->getPrimaryTemplate())
468 DiagID = diag::note_function_template_spec_here;
469 else
470 DiagID = diag::note_template_member_function_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000471 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000472 << Function
473 << Active->InstantiationRange;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000474 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000475 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor7caa6822009-07-24 20:34:43 +0000476 diag::note_template_static_data_member_def_here)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000477 << VD
478 << Active->InstantiationRange;
Richard Smithf1c66b42012-03-14 23:13:10 +0000479 } else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
480 Diags.Report(Active->PointOfInstantiation,
481 diag::note_template_enum_def_here)
482 << ED
483 << Active->InstantiationRange;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000484 } else {
485 Diags.Report(Active->PointOfInstantiation,
486 diag::note_template_type_alias_instantiation_here)
487 << cast<TypeAliasTemplateDecl>(D)
Douglas Gregor7caa6822009-07-24 20:34:43 +0000488 << Active->InstantiationRange;
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000489 }
Douglas Gregordf667e72009-03-10 20:44:00 +0000490 break;
491 }
492
493 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000494 TemplateDecl *Template = cast<TemplateDecl>(Active->Entity);
Douglas Gregordf667e72009-03-10 20:44:00 +0000495 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +0000496 = TemplateSpecializationType::PrintTemplateArgumentList(
Mike Stump1eb44332009-09-09 15:08:12 +0000497 Active->TemplateArgs,
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000498 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000499 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000500 Diags.Report(Active->PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000501 diag::note_default_arg_instantiation_here)
502 << (Template->getNameAsString() + TemplateArgsStr)
503 << Active->InstantiationRange;
504 break;
505 }
Douglas Gregor637a4092009-06-10 23:47:09 +0000506
Douglas Gregorcca9e962009-07-01 22:01:06 +0000507 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000508 FunctionTemplateDecl *FnTmpl = cast<FunctionTemplateDecl>(Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000509 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000510 diag::note_explicit_template_arg_substitution_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000511 << FnTmpl
512 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
513 Active->TemplateArgs,
514 Active->NumTemplateArgs)
515 << Active->InstantiationRange;
Douglas Gregor637a4092009-06-10 23:47:09 +0000516 break;
517 }
Mike Stump1eb44332009-09-09 15:08:12 +0000518
Douglas Gregorcca9e962009-07-01 22:01:06 +0000519 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000520 if (ClassTemplatePartialSpecializationDecl *PartialSpec =
521 dyn_cast<ClassTemplatePartialSpecializationDecl>(Active->Entity)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000522 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000523 diag::note_partial_spec_deduct_instantiation_here)
524 << Context.getTypeDeclType(PartialSpec)
Douglas Gregor5e402912010-03-30 20:35:20 +0000525 << getTemplateArgumentBindingsText(
526 PartialSpec->getTemplateParameters(),
527 Active->TemplateArgs,
528 Active->NumTemplateArgs)
Douglas Gregorcca9e962009-07-01 22:01:06 +0000529 << Active->InstantiationRange;
530 } else {
531 FunctionTemplateDecl *FnTmpl
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000532 = cast<FunctionTemplateDecl>(Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000533 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000534 diag::note_function_template_deduction_instantiation_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000535 << FnTmpl
536 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
537 Active->TemplateArgs,
538 Active->NumTemplateArgs)
539 << Active->InstantiationRange;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000540 }
541 break;
Douglas Gregor637a4092009-06-10 23:47:09 +0000542
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000543 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000544 ParmVarDecl *Param = cast<ParmVarDecl>(Active->Entity);
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000545 FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000547 std::string TemplateArgsStr
548 = TemplateSpecializationType::PrintTemplateArgumentList(
Mike Stump1eb44332009-09-09 15:08:12 +0000549 Active->TemplateArgs,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000550 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000551 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000552 Diags.Report(Active->PointOfInstantiation,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000553 diag::note_default_function_arg_instantiation_here)
Anders Carlsson6bc107b2009-09-05 05:38:54 +0000554 << (FD->getNameAsString() + TemplateArgsStr)
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000555 << Active->InstantiationRange;
556 break;
557 }
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000559 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000560 NamedDecl *Parm = cast<NamedDecl>(Active->Entity);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000561 std::string Name;
562 if (!Parm->getName().empty())
563 Name = std::string(" '") + Parm->getName().str() + "'";
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000564
565 TemplateParameterList *TemplateParams = 0;
566 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
567 TemplateParams = Template->getTemplateParameters();
568 else
569 TemplateParams =
570 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
571 ->getTemplateParameters();
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000572 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000573 diag::note_prior_template_arg_substitution)
574 << isa<TemplateTemplateParmDecl>(Parm)
575 << Name
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000576 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000577 Active->TemplateArgs,
578 Active->NumTemplateArgs)
579 << Active->InstantiationRange;
580 break;
581 }
Douglas Gregorf35f8282009-11-11 21:54:23 +0000582
583 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: {
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000584 TemplateParameterList *TemplateParams = 0;
585 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
586 TemplateParams = Template->getTemplateParameters();
587 else
588 TemplateParams =
589 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
590 ->getTemplateParameters();
591
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000592 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000593 diag::note_template_default_arg_checking)
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000594 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000595 Active->TemplateArgs,
596 Active->NumTemplateArgs)
597 << Active->InstantiationRange;
598 break;
599 }
Richard Smithe6975e92012-04-17 00:58:00 +0000600
601 case ActiveTemplateInstantiation::ExceptionSpecInstantiation:
602 Diags.Report(Active->PointOfInstantiation,
603 diag::note_template_exception_spec_instantiation_here)
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000604 << cast<FunctionDecl>(Active->Entity)
Richard Smithe6975e92012-04-17 00:58:00 +0000605 << Active->InstantiationRange;
606 break;
Douglas Gregordf667e72009-03-10 20:44:00 +0000607 }
Douglas Gregoree1828a2009-03-10 18:03:33 +0000608 }
609}
610
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000611llvm::Optional<TemplateDeductionInfo *> Sema::isSFINAEContext() const {
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000612 if (InNonInstantiationSFINAEContext)
613 return llvm::Optional<TemplateDeductionInfo *>(0);
614
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000615 for (SmallVector<ActiveTemplateInstantiation, 16>::const_reverse_iterator
616 Active = ActiveTemplateInstantiations.rbegin(),
617 ActiveEnd = ActiveTemplateInstantiations.rend();
618 Active != ActiveEnd;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000619 ++Active)
620 {
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000621 switch(Active->Kind) {
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000622 case ActiveTemplateInstantiation::TemplateInstantiation:
Richard Smitha43ea642012-04-26 07:24:08 +0000623 // An instantiation of an alias template may or may not be a SFINAE
624 // context, depending on what else is on the stack.
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000625 if (isa<TypeAliasTemplateDecl>(Active->Entity))
Richard Smitha43ea642012-04-26 07:24:08 +0000626 break;
627 // Fall through.
628 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation:
Richard Smithe6975e92012-04-17 00:58:00 +0000629 case ActiveTemplateInstantiation::ExceptionSpecInstantiation:
Douglas Gregorcca9e962009-07-01 22:01:06 +0000630 // This is a template instantiation, so there is no SFINAE.
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000631 return llvm::Optional<TemplateDeductionInfo *>();
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000633 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000634 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000635 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000636 // A default template argument instantiation and substitution into
637 // template parameters with arguments for prior parameters may or may
638 // not be a SFINAE context; look further up the stack.
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000639 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Douglas Gregorcca9e962009-07-01 22:01:06 +0000641 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution:
642 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
643 // We're either substitution explicitly-specified template arguments
644 // or deduced template arguments, so SFINAE applies.
Douglas Gregor9b623632010-10-12 23:32:35 +0000645 assert(Active->DeductionInfo && "Missing deduction info pointer");
646 return Active->DeductionInfo;
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000647 }
648 }
649
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000650 return llvm::Optional<TemplateDeductionInfo *>();
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000651}
652
Douglas Gregord3731192011-01-10 07:32:04 +0000653/// \brief Retrieve the depth and index of a parameter pack.
654static std::pair<unsigned, unsigned>
655getDepthAndIndex(NamedDecl *ND) {
656 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
657 return std::make_pair(TTP->getDepth(), TTP->getIndex());
658
659 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
660 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
661
662 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
663 return std::make_pair(TTP->getDepth(), TTP->getIndex());
664}
665
Douglas Gregor99ebf652009-02-27 19:31:52 +0000666//===----------------------------------------------------------------------===/
667// Template Instantiation for Types
668//===----------------------------------------------------------------------===/
Douglas Gregorcd281c32009-02-28 00:25:32 +0000669namespace {
Douglas Gregor895162d2010-04-30 18:55:50 +0000670 class TemplateInstantiator : public TreeTransform<TemplateInstantiator> {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000671 const MultiLevelTemplateArgumentList &TemplateArgs;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000672 SourceLocation Loc;
673 DeclarationName Entity;
Douglas Gregor99ebf652009-02-27 19:31:52 +0000674
Douglas Gregorcd281c32009-02-28 00:25:32 +0000675 public:
Douglas Gregor43959a92009-08-20 07:17:43 +0000676 typedef TreeTransform<TemplateInstantiator> inherited;
Mike Stump1eb44332009-09-09 15:08:12 +0000677
678 TemplateInstantiator(Sema &SemaRef,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000679 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregor577f75a2009-08-04 16:50:30 +0000680 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000681 DeclarationName Entity)
682 : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc),
Douglas Gregor43959a92009-08-20 07:17:43 +0000683 Entity(Entity) { }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000684
Mike Stump1eb44332009-09-09 15:08:12 +0000685 /// \brief Determine whether the given type \p T has already been
Douglas Gregor577f75a2009-08-04 16:50:30 +0000686 /// transformed.
687 ///
688 /// For the purposes of template instantiation, a type has already been
689 /// transformed if it is NULL or if it is not dependent.
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000690 bool AlreadyTransformed(QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Douglas Gregor577f75a2009-08-04 16:50:30 +0000692 /// \brief Returns the location of the entity being instantiated, if known.
693 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Douglas Gregor577f75a2009-08-04 16:50:30 +0000695 /// \brief Returns the name of the entity being instantiated, if any.
696 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Douglas Gregor972e6ce2009-10-27 06:26:26 +0000698 /// \brief Sets the "base" location and entity when that
699 /// information is known based on another transformation.
700 void setBase(SourceLocation Loc, DeclarationName Entity) {
701 this->Loc = Loc;
702 this->Entity = Entity;
703 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000704
705 bool TryExpandParameterPacks(SourceLocation EllipsisLoc,
706 SourceRange PatternRange,
David Blaikiea71f9d02011-09-22 02:34:54 +0000707 llvm::ArrayRef<UnexpandedParameterPack> Unexpanded,
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000708 bool &ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +0000709 bool &RetainExpansion,
Douglas Gregorcded4f62011-01-14 17:04:44 +0000710 llvm::Optional<unsigned> &NumExpansions) {
Douglas Gregorb99268b2010-12-21 00:52:54 +0000711 return getSema().CheckParameterPacksForExpansion(EllipsisLoc,
712 PatternRange, Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000713 TemplateArgs,
714 ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +0000715 RetainExpansion,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000716 NumExpansions);
717 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000718
Douglas Gregor12c9c002011-01-07 16:43:16 +0000719 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) {
720 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack);
721 }
722
Douglas Gregord3731192011-01-10 07:32:04 +0000723 TemplateArgument ForgetPartiallySubstitutedPack() {
724 TemplateArgument Result;
725 if (NamedDecl *PartialPack
726 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
727 MultiLevelTemplateArgumentList &TemplateArgs
728 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
729 unsigned Depth, Index;
730 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
731 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
732 Result = TemplateArgs(Depth, Index);
733 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
734 }
735 }
736
737 return Result;
738 }
739
740 void RememberPartiallySubstitutedPack(TemplateArgument Arg) {
741 if (Arg.isNull())
742 return;
743
744 if (NamedDecl *PartialPack
745 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
746 MultiLevelTemplateArgumentList &TemplateArgs
747 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
748 unsigned Depth, Index;
749 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
750 TemplateArgs.setArgument(Depth, Index, Arg);
751 }
752 }
753
Douglas Gregor577f75a2009-08-04 16:50:30 +0000754 /// \brief Transform the given declaration by instantiating a reference to
755 /// this declaration.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000756 Decl *TransformDecl(SourceLocation Loc, Decl *D);
Douglas Gregorb98b1992009-08-11 05:31:07 +0000757
Douglas Gregordfca6f52012-02-13 22:00:16 +0000758 void transformAttrs(Decl *Old, Decl *New) {
759 SemaRef.InstantiateAttrs(TemplateArgs, Old, New);
760 }
761
762 void transformedLocalDecl(Decl *Old, Decl *New) {
763 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Old, New);
764 }
765
Mike Stump1eb44332009-09-09 15:08:12 +0000766 /// \brief Transform the definition of the given declaration by
Douglas Gregor43959a92009-08-20 07:17:43 +0000767 /// instantiating it.
Douglas Gregoraac571c2010-03-01 17:25:41 +0000768 Decl *TransformDefinition(SourceLocation Loc, Decl *D);
Mike Stump1eb44332009-09-09 15:08:12 +0000769
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +0000770 /// \brief Transform the first qualifier within a scope by instantiating the
Douglas Gregor6cd21982009-10-20 05:58:46 +0000771 /// declaration.
772 NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc);
773
Douglas Gregor43959a92009-08-20 07:17:43 +0000774 /// \brief Rebuild the exception declaration and register the declaration
775 /// as an instantiated local.
Douglas Gregor83cb9422010-09-09 17:09:21 +0000776 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +0000777 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000778 SourceLocation StartLoc,
779 SourceLocation NameLoc,
780 IdentifierInfo *Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Douglas Gregorbe270a02010-04-26 17:57:08 +0000782 /// \brief Rebuild the Objective-C exception declaration and register the
783 /// declaration as an instantiated local.
784 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
785 TypeSourceInfo *TSInfo, QualType T);
786
John McCallc4e70192009-09-11 04:59:25 +0000787 /// \brief Check for tag mismatches when instantiating an
788 /// elaborated type.
John McCall21e413f2010-11-04 19:04:38 +0000789 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
790 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000791 NestedNameSpecifierLoc QualifierLoc,
792 QualType T);
John McCallc4e70192009-09-11 04:59:25 +0000793
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +0000794 TemplateName TransformTemplateName(CXXScopeSpec &SS,
795 TemplateName Name,
796 SourceLocation NameLoc,
797 QualType ObjectType = QualType(),
798 NamedDecl *FirstQualifierInScope = 0);
799
John McCall60d7b3a2010-08-24 06:29:42 +0000800 ExprResult TransformPredefinedExpr(PredefinedExpr *E);
801 ExprResult TransformDeclRefExpr(DeclRefExpr *E);
802 ExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E);
Richard Smith9a4db032012-09-12 00:56:43 +0000803
John McCall60d7b3a2010-08-24 06:29:42 +0000804 ExprResult TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregor56bc9832010-12-24 00:15:10 +0000805 NonTypeTemplateParmDecl *D);
Douglas Gregorc7793c72011-01-15 01:15:58 +0000806 ExprResult TransformSubstNonTypeTemplateParmPackExpr(
807 SubstNonTypeTemplateParmPackExpr *E);
Richard Smith9a4db032012-09-12 00:56:43 +0000808
809 /// \brief Rebuild a DeclRefExpr for a ParmVarDecl reference.
810 ExprResult RebuildParmVarDeclRefExpr(ParmVarDecl *PD, SourceLocation Loc);
811
812 /// \brief Transform a reference to a function parameter pack.
813 ExprResult TransformFunctionParmPackRefExpr(DeclRefExpr *E,
814 ParmVarDecl *PD);
815
816 /// \brief Transform a FunctionParmPackExpr which was built when we couldn't
817 /// expand a function parameter pack reference which refers to an expanded
818 /// pack.
819 ExprResult TransformFunctionParmPackExpr(FunctionParmPackExpr *E);
820
Douglas Gregor895162d2010-04-30 18:55:50 +0000821 QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000822 FunctionProtoTypeLoc TL);
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000823 QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
824 FunctionProtoTypeLoc TL,
825 CXXRecordDecl *ThisContext,
826 unsigned ThisTypeQuals);
827
Douglas Gregor6a24bfd2011-01-14 22:40:04 +0000828 ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +0000829 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +0000830 llvm::Optional<unsigned> NumExpansions,
831 bool ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +0000832
Mike Stump1eb44332009-09-09 15:08:12 +0000833 /// \brief Transforms a template type parameter type by performing
Douglas Gregor577f75a2009-08-04 16:50:30 +0000834 /// substitution of the corresponding template type argument.
John McCalla2becad2009-10-21 00:40:46 +0000835 QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000836 TemplateTypeParmTypeLoc TL);
Nick Lewycky03d98c52010-07-06 19:51:49 +0000837
Douglas Gregorc3069d62011-01-14 02:55:32 +0000838 /// \brief Transforms an already-substituted template type parameter pack
839 /// into either itself (if we aren't substituting into its pack expansion)
840 /// or the appropriate substituted argument.
841 QualType TransformSubstTemplateTypeParmPackType(TypeLocBuilder &TLB,
842 SubstTemplateTypeParmPackTypeLoc TL);
843
John McCall60d7b3a2010-08-24 06:29:42 +0000844 ExprResult TransformCallExpr(CallExpr *CE) {
Nick Lewycky03d98c52010-07-06 19:51:49 +0000845 getSema().CallsUndergoingInstantiation.push_back(CE);
John McCall60d7b3a2010-08-24 06:29:42 +0000846 ExprResult Result =
Nick Lewycky03d98c52010-07-06 19:51:49 +0000847 TreeTransform<TemplateInstantiator>::TransformCallExpr(CE);
848 getSema().CallsUndergoingInstantiation.pop_back();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000849 return Result;
Nick Lewycky03d98c52010-07-06 19:51:49 +0000850 }
John McCall91a57552011-07-15 05:09:51 +0000851
Richard Smith612409e2012-07-25 03:56:55 +0000852 ExprResult TransformLambdaExpr(LambdaExpr *E) {
853 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
854 return TreeTransform<TemplateInstantiator>::TransformLambdaExpr(E);
855 }
856
857 ExprResult TransformLambdaScope(LambdaExpr *E,
858 CXXMethodDecl *CallOperator) {
859 CallOperator->setInstantiationOfMemberFunction(E->getCallOperator(),
860 TSK_ImplicitInstantiation);
861 return TreeTransform<TemplateInstantiator>::
862 TransformLambdaScope(E, CallOperator);
863 }
864
John McCall91a57552011-07-15 05:09:51 +0000865 private:
866 ExprResult transformNonTypeTemplateParmRef(NonTypeTemplateParmDecl *parm,
867 SourceLocation loc,
Richard Smith60983812012-07-09 03:07:20 +0000868 TemplateArgument arg);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000869 };
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000870}
871
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000872bool TemplateInstantiator::AlreadyTransformed(QualType T) {
873 if (T.isNull())
874 return true;
875
Douglas Gregor561f8122011-07-01 01:22:09 +0000876 if (T->isInstantiationDependentType() || T->isVariablyModifiedType())
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000877 return false;
878
879 getSema().MarkDeclarationsReferencedInType(Loc, T);
880 return true;
881}
882
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000883Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000884 if (!D)
885 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000886
Douglas Gregorc68afe22009-09-03 21:38:09 +0000887 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000888 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor6d3e6272010-02-05 19:54:12 +0000889 // If the corresponding template argument is NULL or non-existent, it's
890 // because we are performing instantiation from explicitly-specified
891 // template arguments in a function template, but there were some
892 // arguments left unspecified.
893 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
894 TTP->getPosition()))
895 return D;
896
Douglas Gregor61c4d282011-01-05 15:48:55 +0000897 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
898
899 if (TTP->isParameterPack()) {
900 assert(Arg.getKind() == TemplateArgument::Pack &&
901 "Missing argument pack");
902
Douglas Gregor1aee05d2011-01-15 06:45:20 +0000903 assert(getSema().ArgumentPackSubstitutionIndex >= 0);
Douglas Gregord3731192011-01-10 07:32:04 +0000904 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor61c4d282011-01-05 15:48:55 +0000905 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
906 }
907
908 TemplateName Template = Arg.getAsTemplate();
Douglas Gregor788cd062009-11-11 01:00:40 +0000909 assert(!Template.isNull() && Template.getAsTemplateDecl() &&
Douglas Gregord6350ae2009-08-28 20:31:08 +0000910 "Wrong kind of template template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000911 return Template.getAsTemplateDecl();
Douglas Gregord6350ae2009-08-28 20:31:08 +0000912 }
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Douglas Gregor788cd062009-11-11 01:00:40 +0000914 // Fall through to find the instantiated declaration for this template
915 // template parameter.
Douglas Gregord1067e52009-08-06 06:41:21 +0000916 }
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000918 return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000919}
920
Douglas Gregoraac571c2010-03-01 17:25:41 +0000921Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000922 Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs);
Douglas Gregor43959a92009-08-20 07:17:43 +0000923 if (!Inst)
924 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000925
Douglas Gregor43959a92009-08-20 07:17:43 +0000926 getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst);
927 return Inst;
928}
929
Douglas Gregor6cd21982009-10-20 05:58:46 +0000930NamedDecl *
931TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D,
932 SourceLocation Loc) {
933 // If the first part of the nested-name-specifier was a template type
934 // parameter, instantiate that type parameter down to a tag type.
935 if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) {
936 const TemplateTypeParmType *TTP
937 = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD));
Douglas Gregor984a58b2010-12-20 22:48:17 +0000938
Douglas Gregor6cd21982009-10-20 05:58:46 +0000939 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor984a58b2010-12-20 22:48:17 +0000940 // FIXME: This needs testing w/ member access expressions.
941 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getIndex());
942
943 if (TTP->isParameterPack()) {
944 assert(Arg.getKind() == TemplateArgument::Pack &&
945 "Missing argument pack");
946
Douglas Gregor2be29f42011-01-14 23:41:42 +0000947 if (getSema().ArgumentPackSubstitutionIndex == -1)
Douglas Gregor984a58b2010-12-20 22:48:17 +0000948 return 0;
Douglas Gregor984a58b2010-12-20 22:48:17 +0000949
Douglas Gregord3731192011-01-10 07:32:04 +0000950 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor984a58b2010-12-20 22:48:17 +0000951 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
952 }
953
954 QualType T = Arg.getAsType();
Douglas Gregor6cd21982009-10-20 05:58:46 +0000955 if (T.isNull())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000956 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +0000957
958 if (const TagType *Tag = T->getAs<TagType>())
959 return Tag->getDecl();
960
961 // The resulting type is not a tag; complain.
962 getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T;
963 return 0;
964 }
965 }
966
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000967 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +0000968}
969
Douglas Gregor43959a92009-08-20 07:17:43 +0000970VarDecl *
971TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +0000972 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000973 SourceLocation StartLoc,
974 SourceLocation NameLoc,
975 IdentifierInfo *Name) {
Douglas Gregor83cb9422010-09-09 17:09:21 +0000976 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000977 StartLoc, NameLoc, Name);
Douglas Gregorbe270a02010-04-26 17:57:08 +0000978 if (Var)
979 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
980 return Var;
981}
982
983VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
984 TypeSourceInfo *TSInfo,
985 QualType T) {
986 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
987 if (Var)
Douglas Gregor43959a92009-08-20 07:17:43 +0000988 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
989 return Var;
990}
991
John McCallc4e70192009-09-11 04:59:25 +0000992QualType
John McCall21e413f2010-11-04 19:04:38 +0000993TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc,
994 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000995 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000996 QualType T) {
John McCallc4e70192009-09-11 04:59:25 +0000997 if (const TagType *TT = T->getAs<TagType>()) {
998 TagDecl* TD = TT->getDecl();
999
John McCall21e413f2010-11-04 19:04:38 +00001000 SourceLocation TagLocation = KeywordLoc;
John McCallc4e70192009-09-11 04:59:25 +00001001
John McCallc4e70192009-09-11 04:59:25 +00001002 IdentifierInfo *Id = TD->getIdentifier();
1003
1004 // TODO: should we even warn on struct/class mismatches for this? Seems
1005 // like it's likely to produce a lot of spurious errors.
Richard Smithcbf97c52012-08-17 00:12:27 +00001006 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001007 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
Richard Trieubbf34c02011-06-10 03:11:26 +00001008 if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, /*isDefinition*/false,
1009 TagLocation, *Id)) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001010 SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag)
1011 << Id
1012 << FixItHint::CreateReplacement(SourceRange(TagLocation),
1013 TD->getKindName());
1014 SemaRef.Diag(TD->getLocation(), diag::note_previous_use);
1015 }
John McCallc4e70192009-09-11 04:59:25 +00001016 }
1017 }
1018
John McCall21e413f2010-11-04 19:04:38 +00001019 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
1020 Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +00001021 QualifierLoc,
1022 T);
John McCallc4e70192009-09-11 04:59:25 +00001023}
1024
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001025TemplateName TemplateInstantiator::TransformTemplateName(CXXScopeSpec &SS,
1026 TemplateName Name,
1027 SourceLocation NameLoc,
1028 QualType ObjectType,
1029 NamedDecl *FirstQualifierInScope) {
1030 if (TemplateTemplateParmDecl *TTP
1031 = dyn_cast_or_null<TemplateTemplateParmDecl>(Name.getAsTemplateDecl())) {
1032 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
1033 // If the corresponding template argument is NULL or non-existent, it's
1034 // because we are performing instantiation from explicitly-specified
1035 // template arguments in a function template, but there were some
1036 // arguments left unspecified.
1037 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
1038 TTP->getPosition()))
1039 return Name;
1040
1041 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
1042
1043 if (TTP->isParameterPack()) {
1044 assert(Arg.getKind() == TemplateArgument::Pack &&
1045 "Missing argument pack");
1046
1047 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1048 // We have the template argument pack to substitute, but we're not
1049 // actually expanding the enclosing pack expansion yet. So, just
1050 // keep the entire argument pack.
1051 return getSema().Context.getSubstTemplateTemplateParmPack(TTP, Arg);
1052 }
1053
1054 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
1055 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
1056 }
1057
1058 TemplateName Template = Arg.getAsTemplate();
Richard Smith3e4c6c42011-05-05 21:57:07 +00001059 assert(!Template.isNull() && "Null template template argument");
John McCall14606042011-06-30 08:33:18 +00001060
Douglas Gregor58750382011-03-05 20:06:51 +00001061 // We don't ever want to substitute for a qualified template name, since
1062 // the qualifier is handled separately. So, look through the qualified
1063 // template name to its underlying declaration.
1064 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
1065 Template = TemplateName(QTN->getTemplateDecl());
John McCall14606042011-06-30 08:33:18 +00001066
1067 Template = getSema().Context.getSubstTemplateTemplateParm(TTP, Template);
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001068 return Template;
1069 }
1070 }
1071
1072 if (SubstTemplateTemplateParmPackStorage *SubstPack
1073 = Name.getAsSubstTemplateTemplateParmPack()) {
1074 if (getSema().ArgumentPackSubstitutionIndex == -1)
1075 return Name;
1076
1077 const TemplateArgument &ArgPack = SubstPack->getArgumentPack();
1078 assert(getSema().ArgumentPackSubstitutionIndex < (int)ArgPack.pack_size() &&
1079 "Pack substitution index out-of-range");
1080 return ArgPack.pack_begin()[getSema().ArgumentPackSubstitutionIndex]
1081 .getAsTemplate();
1082 }
1083
1084 return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType,
1085 FirstQualifierInScope);
1086}
1087
John McCall60d7b3a2010-08-24 06:29:42 +00001088ExprResult
John McCall454feb92009-12-08 09:21:05 +00001089TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) {
Anders Carlsson773f3972009-09-11 01:22:35 +00001090 if (!E->isTypeDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00001091 return SemaRef.Owned(E);
Anders Carlsson773f3972009-09-11 01:22:35 +00001092
1093 FunctionDecl *currentDecl = getSema().getCurFunctionDecl();
1094 assert(currentDecl && "Must have current function declaration when "
1095 "instantiating.");
1096
1097 PredefinedExpr::IdentType IT = E->getIdentType();
1098
Anders Carlsson848fa642010-02-11 18:20:28 +00001099 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
Anders Carlsson773f3972009-09-11 01:22:35 +00001100
1101 llvm::APInt LengthI(32, Length + 1);
Nico Weberb4e80082012-06-25 22:34:48 +00001102 QualType ResTy;
1103 if (IT == PredefinedExpr::LFunction)
1104 ResTy = getSema().Context.WCharTy.withConst();
1105 else
1106 ResTy = getSema().Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00001107 ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI,
1108 ArrayType::Normal, 0);
1109 PredefinedExpr *PE =
1110 new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT);
1111 return getSema().Owned(PE);
1112}
1113
John McCall60d7b3a2010-08-24 06:29:42 +00001114ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001115TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregordcee9802010-02-08 23:41:45 +00001116 NonTypeTemplateParmDecl *NTTP) {
John McCallb8fc0532010-02-06 08:42:39 +00001117 // If the corresponding template argument is NULL or non-existent, it's
1118 // because we are performing instantiation from explicitly-specified
1119 // template arguments in a function template, but there were some
1120 // arguments left unspecified.
1121 if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(),
1122 NTTP->getPosition()))
John McCall3fa5cae2010-10-26 07:05:15 +00001123 return SemaRef.Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Douglas Gregor56bc9832010-12-24 00:15:10 +00001125 TemplateArgument Arg = TemplateArgs(NTTP->getDepth(), NTTP->getPosition());
1126 if (NTTP->isParameterPack()) {
1127 assert(Arg.getKind() == TemplateArgument::Pack &&
1128 "Missing argument pack");
1129
1130 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc7793c72011-01-15 01:15:58 +00001131 // We have an argument pack, but we can't select a particular argument
1132 // out of it yet. Therefore, we'll build an expression to hold on to that
1133 // argument pack.
1134 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs,
1135 E->getLocation(),
1136 NTTP->getDeclName());
1137 if (TargetType.isNull())
1138 return ExprError();
1139
1140 return new (SemaRef.Context) SubstNonTypeTemplateParmPackExpr(TargetType,
1141 NTTP,
1142 E->getLocation(),
1143 Arg);
Douglas Gregor56bc9832010-12-24 00:15:10 +00001144 }
1145
Douglas Gregord3731192011-01-10 07:32:04 +00001146 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor56bc9832010-12-24 00:15:10 +00001147 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
1148 }
Mike Stump1eb44332009-09-09 15:08:12 +00001149
John McCall91a57552011-07-15 05:09:51 +00001150 return transformNonTypeTemplateParmRef(NTTP, E->getLocation(), Arg);
1151}
1152
1153ExprResult TemplateInstantiator::transformNonTypeTemplateParmRef(
1154 NonTypeTemplateParmDecl *parm,
1155 SourceLocation loc,
Richard Smith60983812012-07-09 03:07:20 +00001156 TemplateArgument arg) {
John McCall91a57552011-07-15 05:09:51 +00001157 ExprResult result;
1158 QualType type;
1159
Richard Smith60983812012-07-09 03:07:20 +00001160 // If the argument is a pack expansion, the parameter must actually be a
1161 // parameter pack, and we should substitute the pattern itself, producing
1162 // an expression which contains an unexpanded parameter pack.
1163 if (arg.isPackExpansion()) {
1164 assert(parm->isParameterPack() && "pack expansion for non-pack");
1165 arg = arg.getPackExpansionPattern();
1166 }
1167
John McCallb8fc0532010-02-06 08:42:39 +00001168 // The template argument itself might be an expression, in which
1169 // case we just return that expression.
John McCall91a57552011-07-15 05:09:51 +00001170 if (arg.getKind() == TemplateArgument::Expression) {
1171 Expr *argExpr = arg.getAsExpr();
1172 result = SemaRef.Owned(argExpr);
1173 type = argExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Eli Friedmand7a6b162012-09-26 02:36:12 +00001175 } else if (arg.getKind() == TemplateArgument::Declaration ||
1176 arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregord2008e22012-04-06 22:40:38 +00001177 ValueDecl *VD;
Eli Friedmand7a6b162012-09-26 02:36:12 +00001178 if (arg.getKind() == TemplateArgument::Declaration) {
1179 VD = cast<ValueDecl>(arg.getAsDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001180
Douglas Gregord2008e22012-04-06 22:40:38 +00001181 // Find the instantiation of the template argument. This is
1182 // required for nested templates.
1183 VD = cast_or_null<ValueDecl>(
1184 getSema().FindInstantiatedDecl(loc, VD, TemplateArgs));
1185 if (!VD)
1186 return ExprError();
1187 } else {
1188 // Propagate NULL template argument.
1189 VD = 0;
1190 }
1191
John McCall645cf442010-02-06 10:23:53 +00001192 // Derive the type we want the substituted decl to have. This had
1193 // better be non-dependent, or these checks will have serious problems.
John McCall91a57552011-07-15 05:09:51 +00001194 if (parm->isExpandedParameterPack()) {
1195 type = parm->getExpansionType(SemaRef.ArgumentPackSubstitutionIndex);
1196 } else if (parm->isParameterPack() &&
1197 isa<PackExpansionType>(parm->getType())) {
1198 type = SemaRef.SubstType(
1199 cast<PackExpansionType>(parm->getType())->getPattern(),
1200 TemplateArgs, loc, parm->getDeclName());
1201 } else {
1202 type = SemaRef.SubstType(parm->getType(), TemplateArgs,
1203 loc, parm->getDeclName());
1204 }
1205 assert(!type.isNull() && "type substitution failed for param type");
1206 assert(!type->isDependentType() && "param type still dependent");
1207 result = SemaRef.BuildExpressionFromDeclTemplateArgument(arg, type, loc);
John McCallb8fc0532010-02-06 08:42:39 +00001208
John McCall91a57552011-07-15 05:09:51 +00001209 if (!result.isInvalid()) type = result.get()->getType();
1210 } else {
1211 result = SemaRef.BuildExpressionFromIntegralTemplateArgument(arg, loc);
1212
1213 // Note that this type can be different from the type of 'result',
1214 // e.g. if it's an enum type.
1215 type = arg.getIntegralType();
1216 }
1217 if (result.isInvalid()) return ExprError();
1218
1219 Expr *resultExpr = result.take();
1220 return SemaRef.Owned(new (SemaRef.Context)
1221 SubstNonTypeTemplateParmExpr(type,
1222 resultExpr->getValueKind(),
1223 loc, parm, resultExpr));
John McCallb8fc0532010-02-06 08:42:39 +00001224}
1225
Douglas Gregorc7793c72011-01-15 01:15:58 +00001226ExprResult
1227TemplateInstantiator::TransformSubstNonTypeTemplateParmPackExpr(
1228 SubstNonTypeTemplateParmPackExpr *E) {
1229 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1230 // We aren't expanding the parameter pack, so just return ourselves.
1231 return getSema().Owned(E);
1232 }
1233
Douglas Gregorc7793c72011-01-15 01:15:58 +00001234 const TemplateArgument &ArgPack = E->getArgumentPack();
1235 unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex;
1236 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1237
1238 const TemplateArgument &Arg = ArgPack.pack_begin()[Index];
John McCall91a57552011-07-15 05:09:51 +00001239 return transformNonTypeTemplateParmRef(E->getParameterPack(),
1240 E->getParameterPackLocation(),
1241 Arg);
Douglas Gregorc7793c72011-01-15 01:15:58 +00001242}
John McCallb8fc0532010-02-06 08:42:39 +00001243
John McCall60d7b3a2010-08-24 06:29:42 +00001244ExprResult
Richard Smith9a4db032012-09-12 00:56:43 +00001245TemplateInstantiator::RebuildParmVarDeclRefExpr(ParmVarDecl *PD,
1246 SourceLocation Loc) {
1247 DeclarationNameInfo NameInfo(PD->getDeclName(), Loc);
1248 return getSema().BuildDeclarationNameExpr(CXXScopeSpec(), NameInfo, PD);
1249}
1250
1251ExprResult
1252TemplateInstantiator::TransformFunctionParmPackExpr(FunctionParmPackExpr *E) {
1253 if (getSema().ArgumentPackSubstitutionIndex != -1) {
1254 // We can expand this parameter pack now.
1255 ParmVarDecl *D = E->getExpansion(getSema().ArgumentPackSubstitutionIndex);
1256 ValueDecl *VD = cast_or_null<ValueDecl>(TransformDecl(E->getExprLoc(), D));
1257 if (!VD)
1258 return ExprError();
1259 return RebuildParmVarDeclRefExpr(cast<ParmVarDecl>(VD), E->getExprLoc());
1260 }
1261
1262 QualType T = TransformType(E->getType());
1263 if (T.isNull())
1264 return ExprError();
1265
1266 // Transform each of the parameter expansions into the corresponding
1267 // parameters in the instantiation of the function decl.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001268 SmallVector<Decl *, 8> Parms;
Richard Smith9a4db032012-09-12 00:56:43 +00001269 Parms.reserve(E->getNumExpansions());
1270 for (FunctionParmPackExpr::iterator I = E->begin(), End = E->end();
1271 I != End; ++I) {
1272 ParmVarDecl *D =
1273 cast_or_null<ParmVarDecl>(TransformDecl(E->getExprLoc(), *I));
1274 if (!D)
1275 return ExprError();
1276 Parms.push_back(D);
1277 }
1278
1279 return FunctionParmPackExpr::Create(getSema().Context, T,
1280 E->getParameterPack(),
1281 E->getParameterPackLocation(), Parms);
1282}
1283
1284ExprResult
1285TemplateInstantiator::TransformFunctionParmPackRefExpr(DeclRefExpr *E,
1286 ParmVarDecl *PD) {
1287 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
1288 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
1289 = getSema().CurrentInstantiationScope->findInstantiationOf(PD);
1290 assert(Found && "no instantiation for parameter pack");
1291
1292 Decl *TransformedDecl;
1293 if (DeclArgumentPack *Pack = Found->dyn_cast<DeclArgumentPack *>()) {
1294 // If this is a reference to a function parameter pack which we can substitute
1295 // but can't yet expand, build a FunctionParmPackExpr for it.
1296 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1297 QualType T = TransformType(E->getType());
1298 if (T.isNull())
1299 return ExprError();
1300 return FunctionParmPackExpr::Create(getSema().Context, T, PD,
1301 E->getExprLoc(), *Pack);
1302 }
1303
1304 TransformedDecl = (*Pack)[getSema().ArgumentPackSubstitutionIndex];
1305 } else {
1306 TransformedDecl = Found->get<Decl*>();
1307 }
1308
1309 // We have either an unexpanded pack or a specific expansion.
1310 return RebuildParmVarDeclRefExpr(cast<ParmVarDecl>(TransformedDecl),
1311 E->getExprLoc());
1312}
1313
1314ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001315TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) {
1316 NamedDecl *D = E->getDecl();
Richard Smith9a4db032012-09-12 00:56:43 +00001317
1318 // Handle references to non-type template parameters and non-type template
1319 // parameter packs.
John McCallb8fc0532010-02-06 08:42:39 +00001320 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) {
1321 if (NTTP->getDepth() < TemplateArgs.getNumLevels())
1322 return TransformTemplateParmRefExpr(E, NTTP);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001323
1324 // We have a non-type template parameter that isn't fully substituted;
1325 // FindInstantiatedDecl will find it in the local instantiation scope.
Douglas Gregorb98b1992009-08-11 05:31:07 +00001326 }
Mike Stump1eb44332009-09-09 15:08:12 +00001327
Richard Smith9a4db032012-09-12 00:56:43 +00001328 // Handle references to function parameter packs.
1329 if (ParmVarDecl *PD = dyn_cast<ParmVarDecl>(D))
1330 if (PD->isParameterPack())
1331 return TransformFunctionParmPackRefExpr(E, PD);
1332
John McCall454feb92009-12-08 09:21:05 +00001333 return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E);
Douglas Gregorb98b1992009-08-11 05:31:07 +00001334}
1335
John McCall60d7b3a2010-08-24 06:29:42 +00001336ExprResult TemplateInstantiator::TransformCXXDefaultArgExpr(
John McCall454feb92009-12-08 09:21:05 +00001337 CXXDefaultArgExpr *E) {
Sebastian Redla29e51b2009-11-08 13:56:19 +00001338 assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())->
1339 getDescribedFunctionTemplate() &&
1340 "Default arg expressions are never formed in dependent cases.");
Douglas Gregor036aed12009-12-23 23:03:06 +00001341 return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(),
1342 cast<FunctionDecl>(E->getParam()->getDeclContext()),
1343 E->getParam());
Sebastian Redla29e51b2009-11-08 13:56:19 +00001344}
1345
Douglas Gregor895162d2010-04-30 18:55:50 +00001346QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001347 FunctionProtoTypeLoc TL) {
Douglas Gregor895162d2010-04-30 18:55:50 +00001348 // We need a local instantiation scope for this function prototype.
John McCall2a7fb272010-08-25 05:32:35 +00001349 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
John McCall43fed0d2010-11-12 08:19:04 +00001350 return inherited::TransformFunctionProtoType(TLB, TL);
John McCall21ef0fa2010-03-11 09:03:00 +00001351}
1352
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001353QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
1354 FunctionProtoTypeLoc TL,
1355 CXXRecordDecl *ThisContext,
1356 unsigned ThisTypeQuals) {
1357 // We need a local instantiation scope for this function prototype.
1358 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
1359 return inherited::TransformFunctionProtoType(TLB, TL, ThisContext,
1360 ThisTypeQuals);
1361}
1362
John McCall21ef0fa2010-03-11 09:03:00 +00001363ParmVarDecl *
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001364TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +00001365 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001366 llvm::Optional<unsigned> NumExpansions,
1367 bool ExpectParameterPack) {
John McCallfb44de92011-05-01 22:35:37 +00001368 return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs, indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001369 NumExpansions, ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +00001370}
1371
Mike Stump1eb44332009-09-09 15:08:12 +00001372QualType
John McCalla2becad2009-10-21 00:40:46 +00001373TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001374 TemplateTypeParmTypeLoc TL) {
John McCallf4c73712011-01-19 06:33:43 +00001375 const TemplateTypeParmType *T = TL.getTypePtr();
Douglas Gregord6350ae2009-08-28 20:31:08 +00001376 if (T->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor99ebf652009-02-27 19:31:52 +00001377 // Replace the template type parameter with its corresponding
1378 // template argument.
Mike Stump1eb44332009-09-09 15:08:12 +00001379
1380 // If the corresponding template argument is NULL or doesn't exist, it's
1381 // because we are performing instantiation from explicitly-specified
1382 // template arguments in a function template class, but there were some
Douglas Gregor16134c62009-07-01 00:28:38 +00001383 // arguments left unspecified.
John McCalla2becad2009-10-21 00:40:46 +00001384 if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) {
1385 TemplateTypeParmTypeLoc NewTL
1386 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType());
1387 NewTL.setNameLoc(TL.getNameLoc());
1388 return TL.getType();
1389 }
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001391 TemplateArgument Arg = TemplateArgs(T->getDepth(), T->getIndex());
1392
1393 if (T->isParameterPack()) {
1394 assert(Arg.getKind() == TemplateArgument::Pack &&
1395 "Missing argument pack");
1396
1397 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc3069d62011-01-14 02:55:32 +00001398 // We have the template argument pack, but we're not expanding the
1399 // enclosing pack expansion yet. Just save the template argument
1400 // pack for later substitution.
1401 QualType Result
1402 = getSema().Context.getSubstTemplateTypeParmPackType(T, Arg);
1403 SubstTemplateTypeParmPackTypeLoc NewTL
1404 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(Result);
1405 NewTL.setNameLoc(TL.getNameLoc());
1406 return Result;
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001407 }
1408
Douglas Gregord3731192011-01-10 07:32:04 +00001409 assert(getSema().ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001410 Arg = Arg.pack_begin()[getSema().ArgumentPackSubstitutionIndex];
1411 }
1412
1413 assert(Arg.getKind() == TemplateArgument::Type &&
Douglas Gregor99ebf652009-02-27 19:31:52 +00001414 "Template argument kind mismatch");
Douglas Gregord6350ae2009-08-28 20:31:08 +00001415
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001416 QualType Replacement = Arg.getAsType();
John McCall49a832b2009-10-18 09:09:24 +00001417
1418 // TODO: only do this uniquing once, at the start of instantiation.
John McCalla2becad2009-10-21 00:40:46 +00001419 QualType Result
1420 = getSema().Context.getSubstTemplateTypeParmType(T, Replacement);
1421 SubstTemplateTypeParmTypeLoc NewTL
1422 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1423 NewTL.setNameLoc(TL.getNameLoc());
1424 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001425 }
Douglas Gregor99ebf652009-02-27 19:31:52 +00001426
1427 // The template type parameter comes from an inner template (e.g.,
1428 // the template parameter list of a member template inside the
1429 // template we are instantiating). Create a new template type
1430 // parameter with the template "level" reduced by one.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001431 TemplateTypeParmDecl *NewTTPDecl = 0;
1432 if (TemplateTypeParmDecl *OldTTPDecl = T->getDecl())
1433 NewTTPDecl = cast_or_null<TemplateTypeParmDecl>(
1434 TransformDecl(TL.getNameLoc(), OldTTPDecl));
1435
John McCalla2becad2009-10-21 00:40:46 +00001436 QualType Result
1437 = getSema().Context.getTemplateTypeParmType(T->getDepth()
1438 - TemplateArgs.getNumLevels(),
1439 T->getIndex(),
1440 T->isParameterPack(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001441 NewTTPDecl);
John McCalla2becad2009-10-21 00:40:46 +00001442 TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result);
1443 NewTL.setNameLoc(TL.getNameLoc());
1444 return Result;
Douglas Gregorcd281c32009-02-28 00:25:32 +00001445}
Douglas Gregor99ebf652009-02-27 19:31:52 +00001446
Douglas Gregorc3069d62011-01-14 02:55:32 +00001447QualType
1448TemplateInstantiator::TransformSubstTemplateTypeParmPackType(
1449 TypeLocBuilder &TLB,
1450 SubstTemplateTypeParmPackTypeLoc TL) {
1451 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1452 // We aren't expanding the parameter pack, so just return ourselves.
1453 SubstTemplateTypeParmPackTypeLoc NewTL
1454 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(TL.getType());
1455 NewTL.setNameLoc(TL.getNameLoc());
1456 return TL.getType();
1457 }
1458
1459 const TemplateArgument &ArgPack = TL.getTypePtr()->getArgumentPack();
1460 unsigned Index = (unsigned)getSema().ArgumentPackSubstitutionIndex;
1461 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1462
1463 QualType Result = ArgPack.pack_begin()[Index].getAsType();
1464 Result = getSema().Context.getSubstTemplateTypeParmType(
1465 TL.getTypePtr()->getReplacedParameter(),
1466 Result);
1467 SubstTemplateTypeParmTypeLoc NewTL
1468 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1469 NewTL.setNameLoc(TL.getNameLoc());
1470 return Result;
1471}
1472
John McCallce3ff2b2009-08-25 22:02:44 +00001473/// \brief Perform substitution on the type T with a given set of template
1474/// arguments.
Douglas Gregor99ebf652009-02-27 19:31:52 +00001475///
1476/// This routine substitutes the given template arguments into the
1477/// type T and produces the instantiated type.
1478///
1479/// \param T the type into which the template arguments will be
1480/// substituted. If this type is not dependent, it will be returned
1481/// immediately.
1482///
James Dennett1dfbd922012-06-14 21:40:34 +00001483/// \param Args the template arguments that will be
Douglas Gregor99ebf652009-02-27 19:31:52 +00001484/// substituted for the top-level template parameters within T.
1485///
Douglas Gregor99ebf652009-02-27 19:31:52 +00001486/// \param Loc the location in the source code where this substitution
1487/// is being performed. It will typically be the location of the
1488/// declarator (if we're instantiating the type of some declaration)
1489/// or the location of the type in the source code (if, e.g., we're
1490/// instantiating the type of a cast expression).
1491///
1492/// \param Entity the name of the entity associated with a declaration
1493/// being instantiated (if any). May be empty to indicate that there
1494/// is no such entity (if, e.g., this is a type that occurs as part of
1495/// a cast expression) or that the entity has no name (e.g., an
1496/// unnamed function parameter).
1497///
1498/// \returns If the instantiation succeeds, the instantiated
1499/// type. Otherwise, produces diagnostics and returns a NULL type.
John McCalla93c9342009-12-07 02:54:59 +00001500TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T,
John McCallcd7ba1c2009-10-21 00:58:09 +00001501 const MultiLevelTemplateArgumentList &Args,
1502 SourceLocation Loc,
1503 DeclarationName Entity) {
1504 assert(!ActiveTemplateInstantiations.empty() &&
1505 "Cannot perform an instantiation without some context on the "
1506 "instantiation stack");
1507
Douglas Gregor561f8122011-07-01 01:22:09 +00001508 if (!T->getType()->isInstantiationDependentType() &&
Douglas Gregor836adf62010-05-24 17:22:01 +00001509 !T->getType()->isVariablyModifiedType())
John McCallcd7ba1c2009-10-21 00:58:09 +00001510 return T;
1511
1512 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1513 return Instantiator.TransformType(T);
1514}
1515
Douglas Gregor603cfb42011-01-05 23:12:31 +00001516TypeSourceInfo *Sema::SubstType(TypeLoc TL,
1517 const MultiLevelTemplateArgumentList &Args,
1518 SourceLocation Loc,
1519 DeclarationName Entity) {
1520 assert(!ActiveTemplateInstantiations.empty() &&
1521 "Cannot perform an instantiation without some context on the "
1522 "instantiation stack");
1523
1524 if (TL.getType().isNull())
1525 return 0;
1526
Douglas Gregor561f8122011-07-01 01:22:09 +00001527 if (!TL.getType()->isInstantiationDependentType() &&
Douglas Gregor603cfb42011-01-05 23:12:31 +00001528 !TL.getType()->isVariablyModifiedType()) {
1529 // FIXME: Make a copy of the TypeLoc data here, so that we can
1530 // return a new TypeSourceInfo. Inefficient!
1531 TypeLocBuilder TLB;
1532 TLB.pushFullCopy(TL);
1533 return TLB.getTypeSourceInfo(Context, TL.getType());
1534 }
1535
1536 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1537 TypeLocBuilder TLB;
1538 TLB.reserve(TL.getFullDataSize());
1539 QualType Result = Instantiator.TransformType(TLB, TL);
1540 if (Result.isNull())
1541 return 0;
1542
1543 return TLB.getTypeSourceInfo(Context, Result);
1544}
1545
John McCallcd7ba1c2009-10-21 00:58:09 +00001546/// Deprecated form of the above.
Mike Stump1eb44332009-09-09 15:08:12 +00001547QualType Sema::SubstType(QualType T,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001548 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallce3ff2b2009-08-25 22:02:44 +00001549 SourceLocation Loc, DeclarationName Entity) {
Douglas Gregordf667e72009-03-10 20:44:00 +00001550 assert(!ActiveTemplateInstantiations.empty() &&
1551 "Cannot perform an instantiation without some context on the "
1552 "instantiation stack");
1553
Douglas Gregor836adf62010-05-24 17:22:01 +00001554 // If T is not a dependent type or a variably-modified type, there
1555 // is nothing to do.
Douglas Gregor561f8122011-07-01 01:22:09 +00001556 if (!T->isInstantiationDependentType() && !T->isVariablyModifiedType())
Douglas Gregor99ebf652009-02-27 19:31:52 +00001557 return T;
1558
Douglas Gregor577f75a2009-08-04 16:50:30 +00001559 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity);
1560 return Instantiator.TransformType(T);
Douglas Gregor99ebf652009-02-27 19:31:52 +00001561}
Douglas Gregor2943aed2009-03-03 04:44:36 +00001562
John McCall6cd3b9f2010-04-09 17:38:44 +00001563static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001564 if (T->getType()->isInstantiationDependentType() ||
1565 T->getType()->isVariablyModifiedType())
John McCall6cd3b9f2010-04-09 17:38:44 +00001566 return true;
1567
Abramo Bagnara723df242010-12-14 22:11:44 +00001568 TypeLoc TL = T->getTypeLoc().IgnoreParens();
John McCall6cd3b9f2010-04-09 17:38:44 +00001569 if (!isa<FunctionProtoTypeLoc>(TL))
1570 return false;
1571
1572 FunctionProtoTypeLoc FP = cast<FunctionProtoTypeLoc>(TL);
1573 for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) {
1574 ParmVarDecl *P = FP.getArg(I);
1575
Douglas Gregorc056c172011-05-09 20:45:16 +00001576 // The parameter's type as written might be dependent even if the
1577 // decayed type was not dependent.
1578 if (TypeSourceInfo *TSInfo = P->getTypeSourceInfo())
Douglas Gregor561f8122011-07-01 01:22:09 +00001579 if (TSInfo->getType()->isInstantiationDependentType())
Douglas Gregorc056c172011-05-09 20:45:16 +00001580 return true;
1581
John McCall6cd3b9f2010-04-09 17:38:44 +00001582 // TODO: currently we always rebuild expressions. When we
1583 // properly get lazier about this, we should use the same
1584 // logic to avoid rebuilding prototypes here.
Douglas Gregor7b1cf302011-01-05 21:14:17 +00001585 if (P->hasDefaultArg())
John McCall6cd3b9f2010-04-09 17:38:44 +00001586 return true;
1587 }
1588
1589 return false;
1590}
1591
1592/// A form of SubstType intended specifically for instantiating the
1593/// type of a FunctionDecl. Its purpose is solely to force the
1594/// instantiation of default-argument expressions.
1595TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T,
1596 const MultiLevelTemplateArgumentList &Args,
1597 SourceLocation Loc,
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001598 DeclarationName Entity,
1599 CXXRecordDecl *ThisContext,
1600 unsigned ThisTypeQuals) {
John McCall6cd3b9f2010-04-09 17:38:44 +00001601 assert(!ActiveTemplateInstantiations.empty() &&
1602 "Cannot perform an instantiation without some context on the "
1603 "instantiation stack");
1604
1605 if (!NeedsInstantiationAsFunctionType(T))
1606 return T;
1607
1608 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1609
1610 TypeLocBuilder TLB;
1611
1612 TypeLoc TL = T->getTypeLoc();
1613 TLB.reserve(TL.getFullDataSize());
1614
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001615 QualType Result;
1616
1617 if (FunctionProtoTypeLoc *Proto = dyn_cast<FunctionProtoTypeLoc>(&TL)) {
1618 Result = Instantiator.TransformFunctionProtoType(TLB, *Proto, ThisContext,
1619 ThisTypeQuals);
1620 } else {
1621 Result = Instantiator.TransformType(TLB, TL);
1622 }
John McCall6cd3b9f2010-04-09 17:38:44 +00001623 if (Result.isNull())
1624 return 0;
1625
1626 return TLB.getTypeSourceInfo(Context, Result);
1627}
1628
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001629ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm,
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001630 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallfb44de92011-05-01 22:35:37 +00001631 int indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001632 llvm::Optional<unsigned> NumExpansions,
1633 bool ExpectParameterPack) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001634 TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo();
Douglas Gregor603cfb42011-01-05 23:12:31 +00001635 TypeSourceInfo *NewDI = 0;
1636
Douglas Gregor603cfb42011-01-05 23:12:31 +00001637 TypeLoc OldTL = OldDI->getTypeLoc();
1638 if (isa<PackExpansionTypeLoc>(OldTL)) {
1639 PackExpansionTypeLoc ExpansionTL = cast<PackExpansionTypeLoc>(OldTL);
Douglas Gregor603cfb42011-01-05 23:12:31 +00001640
1641 // We have a function parameter pack. Substitute into the pattern of the
1642 // expansion.
1643 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs,
1644 OldParm->getLocation(), OldParm->getDeclName());
1645 if (!NewDI)
1646 return 0;
1647
1648 if (NewDI->getType()->containsUnexpandedParameterPack()) {
1649 // We still have unexpanded parameter packs, which means that
1650 // our function parameter is still a function parameter pack.
1651 // Therefore, make its type a pack expansion type.
Douglas Gregorcded4f62011-01-14 17:04:44 +00001652 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(),
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001653 NumExpansions);
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001654 } else if (ExpectParameterPack) {
1655 // We expected to get a parameter pack but didn't (because the type
1656 // itself is not a pack expansion type), so complain. This can occur when
1657 // the substitution goes through an alias template that "loses" the
1658 // pack expansion.
1659 Diag(OldParm->getLocation(),
1660 diag::err_function_parameter_pack_without_parameter_packs)
1661 << NewDI->getType();
1662 return 0;
1663 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001664 } else {
1665 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(),
1666 OldParm->getDeclName());
1667 }
1668
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001669 if (!NewDI)
1670 return 0;
1671
1672 if (NewDI->getType()->isVoidType()) {
1673 Diag(OldParm->getLocation(), diag::err_param_with_void_type);
1674 return 0;
1675 }
1676
1677 ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001678 OldParm->getInnerLocStart(),
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001679 OldParm->getLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001680 OldParm->getIdentifier(),
1681 NewDI->getType(), NewDI,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001682 OldParm->getStorageClass(),
1683 OldParm->getStorageClassAsWritten());
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001684 if (!NewParm)
1685 return 0;
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001686
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001687 // Mark the (new) default argument as uninstantiated (if any).
1688 if (OldParm->hasUninstantiatedDefaultArg()) {
1689 Expr *Arg = OldParm->getUninstantiatedDefaultArg();
1690 NewParm->setUninstantiatedDefaultArg(Arg);
Douglas Gregor8cfb7a32010-10-12 18:23:32 +00001691 } else if (OldParm->hasUnparsedDefaultArg()) {
1692 NewParm->setUnparsedDefaultArg();
1693 UnparsedDefaultArgInstantiations[OldParm].push_back(NewParm);
David Blaikie57296722012-05-01 06:05:57 +00001694 } else if (Expr *Arg = OldParm->getDefaultArg())
1695 // FIXME: if we non-lazily instantiated non-dependent default args for
1696 // non-dependent parameter types we could remove a bunch of duplicate
1697 // conversion warnings for such arguments.
1698 NewParm->setUninstantiatedDefaultArg(Arg);
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001699
1700 NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg());
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001701
Douglas Gregor12c9c002011-01-07 16:43:16 +00001702 if (OldParm->isParameterPack() && !NewParm->isParameterPack()) {
Richard Smithc0536c82012-01-25 02:14:59 +00001703 // Add the new parameter to the instantiated parameter pack.
Douglas Gregor12c9c002011-01-07 16:43:16 +00001704 CurrentInstantiationScope->InstantiatedLocalPackArg(OldParm, NewParm);
1705 } else {
1706 // Introduce an Old -> New mapping
Douglas Gregor603cfb42011-01-05 23:12:31 +00001707 CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm);
Douglas Gregor12c9c002011-01-07 16:43:16 +00001708 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001709
Argyrios Kyrtzidise3041be2010-07-19 10:14:41 +00001710 // FIXME: OldParm may come from a FunctionProtoType, in which case CurContext
1711 // can be anything, is this right ?
Fariborz Jahanian55a17c02010-07-13 21:05:02 +00001712 NewParm->setDeclContext(CurContext);
John McCallfb44de92011-05-01 22:35:37 +00001713
1714 NewParm->setScopeInfo(OldParm->getFunctionScopeDepth(),
1715 OldParm->getFunctionScopeIndex() + indexAdjustment);
Fariborz Jahaniane7ffbe22010-07-13 20:05:58 +00001716
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001717 return NewParm;
1718}
1719
Douglas Gregora009b592011-01-07 00:20:55 +00001720/// \brief Substitute the given template arguments into the given set of
1721/// parameters, producing the set of parameter types that would be generated
1722/// from such a substitution.
1723bool Sema::SubstParmTypes(SourceLocation Loc,
1724 ParmVarDecl **Params, unsigned NumParams,
1725 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001726 SmallVectorImpl<QualType> &ParamTypes,
1727 SmallVectorImpl<ParmVarDecl *> *OutParams) {
Douglas Gregora009b592011-01-07 00:20:55 +00001728 assert(!ActiveTemplateInstantiations.empty() &&
1729 "Cannot perform an instantiation without some context on the "
1730 "instantiation stack");
1731
1732 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
1733 DeclarationName());
1734 return Instantiator.TransformFunctionTypeParams(Loc, Params, NumParams, 0,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001735 ParamTypes, OutParams);
Douglas Gregora009b592011-01-07 00:20:55 +00001736}
1737
John McCallce3ff2b2009-08-25 22:02:44 +00001738/// \brief Perform substitution on the base class specifiers of the
1739/// given class template specialization.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001740///
1741/// Produces a diagnostic and returns true on error, returns false and
1742/// attaches the instantiated base classes to the class template
1743/// specialization if successful.
Mike Stump1eb44332009-09-09 15:08:12 +00001744bool
John McCallce3ff2b2009-08-25 22:02:44 +00001745Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
1746 CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001747 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001748 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001749 SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases;
Mike Stump1eb44332009-09-09 15:08:12 +00001750 for (ClassTemplateSpecializationDecl::base_class_iterator
Douglas Gregord475b8d2009-03-25 21:17:03 +00001751 Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end();
Douglas Gregor27b152f2009-03-10 18:52:44 +00001752 Base != BaseEnd; ++Base) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001753 if (!Base->getType()->isDependentType()) {
Fariborz Jahanian71c6e712009-07-22 17:41:53 +00001754 InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base));
Douglas Gregor2943aed2009-03-03 04:44:36 +00001755 continue;
1756 }
1757
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001758 SourceLocation EllipsisLoc;
Douglas Gregor406f98f2011-03-02 02:04:06 +00001759 TypeSourceInfo *BaseTypeLoc;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001760 if (Base->isPackExpansion()) {
1761 // This is a pack expansion. See whether we should expand it now, or
1762 // wait until later.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001763 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001764 collectUnexpandedParameterPacks(Base->getTypeSourceInfo()->getTypeLoc(),
1765 Unexpanded);
1766 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00001767 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00001768 llvm::Optional<unsigned> NumExpansions;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001769 if (CheckParameterPacksForExpansion(Base->getEllipsisLoc(),
1770 Base->getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001771 Unexpanded,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001772 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00001773 RetainExpansion,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001774 NumExpansions)) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001775 Invalid = true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001776 continue;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001777 }
1778
1779 // If we should expand this pack expansion now, do so.
1780 if (ShouldExpand) {
Douglas Gregorcded4f62011-01-14 17:04:44 +00001781 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001782 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
1783
1784 TypeSourceInfo *BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1785 TemplateArgs,
1786 Base->getSourceRange().getBegin(),
1787 DeclarationName());
1788 if (!BaseTypeLoc) {
1789 Invalid = true;
1790 continue;
1791 }
1792
1793 if (CXXBaseSpecifier *InstantiatedBase
1794 = CheckBaseSpecifier(Instantiation,
1795 Base->getSourceRange(),
1796 Base->isVirtual(),
1797 Base->getAccessSpecifierAsWritten(),
1798 BaseTypeLoc,
1799 SourceLocation()))
1800 InstantiatedBases.push_back(InstantiatedBase);
1801 else
1802 Invalid = true;
1803 }
1804
1805 continue;
1806 }
1807
1808 // The resulting base specifier will (still) be a pack expansion.
1809 EllipsisLoc = Base->getEllipsisLoc();
Douglas Gregor406f98f2011-03-02 02:04:06 +00001810 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, -1);
1811 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1812 TemplateArgs,
1813 Base->getSourceRange().getBegin(),
1814 DeclarationName());
1815 } else {
1816 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1817 TemplateArgs,
1818 Base->getSourceRange().getBegin(),
1819 DeclarationName());
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001820 }
1821
Nick Lewycky56062202010-07-26 16:56:01 +00001822 if (!BaseTypeLoc) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001823 Invalid = true;
1824 continue;
1825 }
1826
1827 if (CXXBaseSpecifier *InstantiatedBase
Douglas Gregord475b8d2009-03-25 21:17:03 +00001828 = CheckBaseSpecifier(Instantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001829 Base->getSourceRange(),
1830 Base->isVirtual(),
1831 Base->getAccessSpecifierAsWritten(),
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001832 BaseTypeLoc,
1833 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001834 InstantiatedBases.push_back(InstantiatedBase);
1835 else
1836 Invalid = true;
1837 }
1838
Douglas Gregor27b152f2009-03-10 18:52:44 +00001839 if (!Invalid &&
Jay Foadbeaaccd2009-05-21 09:52:38 +00001840 AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001841 InstantiatedBases.size()))
1842 Invalid = true;
1843
1844 return Invalid;
1845}
1846
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001847// Defined via #include from SemaTemplateInstantiateDecl.cpp
Benjamin Kramer5bbc3852012-02-06 11:13:08 +00001848namespace clang {
1849 namespace sema {
1850 Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, Sema &S,
1851 const MultiLevelTemplateArgumentList &TemplateArgs);
1852 }
1853}
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001854
Richard Smithf1c66b42012-03-14 23:13:10 +00001855/// Determine whether we would be unable to instantiate this template (because
1856/// it either has no definition, or is in the process of being instantiated).
1857static bool DiagnoseUninstantiableTemplate(Sema &S,
1858 SourceLocation PointOfInstantiation,
1859 TagDecl *Instantiation,
1860 bool InstantiatedFromMember,
1861 TagDecl *Pattern,
1862 TagDecl *PatternDef,
1863 TemplateSpecializationKind TSK,
1864 bool Complain = true) {
1865 if (PatternDef && !PatternDef->isBeingDefined())
1866 return false;
1867
1868 if (!Complain || (PatternDef && PatternDef->isInvalidDecl())) {
1869 // Say nothing
1870 } else if (PatternDef) {
1871 assert(PatternDef->isBeingDefined());
1872 S.Diag(PointOfInstantiation,
1873 diag::err_template_instantiate_within_definition)
1874 << (TSK != TSK_ImplicitInstantiation)
1875 << S.Context.getTypeDeclType(Instantiation);
1876 // Not much point in noting the template declaration here, since
1877 // we're lexically inside it.
1878 Instantiation->setInvalidDecl();
1879 } else if (InstantiatedFromMember) {
1880 S.Diag(PointOfInstantiation,
1881 diag::err_implicit_instantiate_member_undefined)
1882 << S.Context.getTypeDeclType(Instantiation);
1883 S.Diag(Pattern->getLocation(), diag::note_member_of_template_here);
1884 } else {
1885 S.Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
1886 << (TSK != TSK_ImplicitInstantiation)
1887 << S.Context.getTypeDeclType(Instantiation);
1888 S.Diag(Pattern->getLocation(), diag::note_template_decl_here);
1889 }
1890
1891 // In general, Instantiation isn't marked invalid to get more than one
1892 // error for multiple undefined instantiations. But the code that does
1893 // explicit declaration -> explicit definition conversion can't handle
1894 // invalid declarations, so mark as invalid in that case.
1895 if (TSK == TSK_ExplicitInstantiationDeclaration)
1896 Instantiation->setInvalidDecl();
1897 return true;
1898}
1899
Douglas Gregord475b8d2009-03-25 21:17:03 +00001900/// \brief Instantiate the definition of a class from a given pattern.
1901///
1902/// \param PointOfInstantiation The point of instantiation within the
1903/// source code.
1904///
1905/// \param Instantiation is the declaration whose definition is being
1906/// instantiated. This will be either a class template specialization
1907/// or a member class of a class template specialization.
1908///
1909/// \param Pattern is the pattern from which the instantiation
1910/// occurs. This will be either the declaration of a class template or
1911/// the declaration of a member class of a class template.
1912///
1913/// \param TemplateArgs The template arguments to be substituted into
1914/// the pattern.
1915///
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001916/// \param TSK the kind of implicit or explicit instantiation to perform.
Douglas Gregor5842ba92009-08-24 15:23:48 +00001917///
1918/// \param Complain whether to complain if the class cannot be instantiated due
1919/// to the lack of a definition.
1920///
Douglas Gregord475b8d2009-03-25 21:17:03 +00001921/// \returns true if an error occurred, false otherwise.
1922bool
1923Sema::InstantiateClass(SourceLocation PointOfInstantiation,
1924 CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001925 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001926 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001927 bool Complain) {
Mike Stump1eb44332009-09-09 15:08:12 +00001928 CXXRecordDecl *PatternDef
Douglas Gregor952b0172010-02-11 01:04:33 +00001929 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Richard Smithf1c66b42012-03-14 23:13:10 +00001930 if (DiagnoseUninstantiableTemplate(*this, PointOfInstantiation, Instantiation,
1931 Instantiation->getInstantiatedFromMemberClass(),
1932 Pattern, PatternDef, TSK, Complain))
Douglas Gregord475b8d2009-03-25 21:17:03 +00001933 return true;
Douglas Gregord475b8d2009-03-25 21:17:03 +00001934 Pattern = PatternDef;
1935
Douglas Gregor454885e2009-10-15 15:54:05 +00001936 // \brief Record the point of instantiation.
1937 if (MemberSpecializationInfo *MSInfo
1938 = Instantiation->getMemberSpecializationInfo()) {
1939 MSInfo->setTemplateSpecializationKind(TSK);
1940 MSInfo->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001941 } else if (ClassTemplateSpecializationDecl *Spec
Nico Weberc7feca02011-12-20 20:32:49 +00001942 = dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) {
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001943 Spec->setTemplateSpecializationKind(TSK);
1944 Spec->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor454885e2009-10-15 15:54:05 +00001945 }
1946
Douglas Gregord048bb72009-03-25 21:23:52 +00001947 InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001948 if (Inst)
1949 return true;
1950
1951 // Enter the scope of this instantiation. We don't use
1952 // PushDeclContext because we don't have a scope.
John McCallf5813822010-04-29 00:35:03 +00001953 ContextRAII SavedContext(*this, Instantiation);
Douglas Gregor9679caf2010-05-12 17:27:19 +00001954 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00001955 Sema::PotentiallyEvaluated);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001956
Douglas Gregor05030bb2010-03-24 01:33:17 +00001957 // If this is an instantiation of a local class, merge this local
1958 // instantiation scope with the enclosing scope. Otherwise, every
1959 // instantiation of a class has its own local instantiation scope.
1960 bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod();
John McCall2a7fb272010-08-25 05:32:35 +00001961 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Douglas Gregor05030bb2010-03-24 01:33:17 +00001962
John McCall1d8d1cc2010-08-01 02:01:53 +00001963 // Pull attributes from the pattern onto the instantiation.
1964 InstantiateAttrs(TemplateArgs, Pattern, Instantiation);
1965
Douglas Gregord475b8d2009-03-25 21:17:03 +00001966 // Start the definition of this instantiation.
1967 Instantiation->startDefinition();
Douglas Gregor13c85772010-05-06 00:28:52 +00001968
1969 Instantiation->setTagKind(Pattern->getTagKind());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001970
John McCallce3ff2b2009-08-25 22:02:44 +00001971 // Do substitution on the base class specifiers.
1972 if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs))
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001973 Instantiation->setInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00001974
Douglas Gregord65587f2010-11-10 19:44:59 +00001975 TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001976 SmallVector<Decl*, 4> Fields;
1977 SmallVector<std::pair<FieldDecl*, FieldDecl*>, 4>
Richard Smith7a614d82011-06-11 17:19:42 +00001978 FieldsWithMemberInitializers;
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001979 // Delay instantiation of late parsed attributes.
1980 LateInstantiatedAttrVec LateAttrs;
1981 Instantiator.enableLateAttributeInstantiation(&LateAttrs);
1982
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001983 for (RecordDecl::decl_iterator Member = Pattern->decls_begin(),
Mike Stump1eb44332009-09-09 15:08:12 +00001984 MemberEnd = Pattern->decls_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001985 Member != MemberEnd; ++Member) {
Argyrios Kyrtzidisbb5e4312010-11-04 03:18:57 +00001986 // Don't instantiate members not belonging in this semantic context.
1987 // e.g. for:
1988 // @code
1989 // template <int i> class A {
1990 // class B *g;
1991 // };
1992 // @endcode
1993 // 'class B' has the template as lexical context but semantically it is
1994 // introduced in namespace scope.
1995 if ((*Member)->getDeclContext() != Pattern)
1996 continue;
1997
Douglas Gregord65587f2010-11-10 19:44:59 +00001998 if ((*Member)->isInvalidDecl()) {
Richard Smithe3f470a2012-07-11 22:37:56 +00001999 Instantiation->setInvalidDecl();
Douglas Gregord65587f2010-11-10 19:44:59 +00002000 continue;
2001 }
2002
2003 Decl *NewMember = Instantiator.Visit(*Member);
Douglas Gregord475b8d2009-03-25 21:17:03 +00002004 if (NewMember) {
Richard Smith7a614d82011-06-11 17:19:42 +00002005 if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember)) {
John McCalld226f652010-08-21 09:40:31 +00002006 Fields.push_back(Field);
Richard Smith7a614d82011-06-11 17:19:42 +00002007 FieldDecl *OldField = cast<FieldDecl>(*Member);
2008 if (OldField->getInClassInitializer())
2009 FieldsWithMemberInitializers.push_back(std::make_pair(OldField,
2010 Field));
Richard Smith1af83c42012-03-23 03:33:32 +00002011 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(NewMember)) {
2012 // C++11 [temp.inst]p1: The implicit instantiation of a class template
2013 // specialization causes the implicit instantiation of the definitions
2014 // of unscoped member enumerations.
2015 // Record a point of instantiation for this implicit instantiation.
Richard Smith3343fad2012-03-23 23:09:08 +00002016 if (TSK == TSK_ImplicitInstantiation && !Enum->isScoped() &&
2017 Enum->isCompleteDefinition()) {
Richard Smith1af83c42012-03-23 03:33:32 +00002018 MemberSpecializationInfo *MSInfo =Enum->getMemberSpecializationInfo();
2019 assert(MSInfo && "no spec info for member enum specialization");
2020 MSInfo->setTemplateSpecializationKind(TSK_ImplicitInstantiation);
2021 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2022 }
Richard Smithe3f470a2012-07-11 22:37:56 +00002023 } else if (StaticAssertDecl *SA = dyn_cast<StaticAssertDecl>(NewMember)) {
2024 if (SA->isFailed()) {
2025 // A static_assert failed. Bail out; instantiating this
2026 // class is probably not meaningful.
2027 Instantiation->setInvalidDecl();
2028 break;
2029 }
Richard Smith1af83c42012-03-23 03:33:32 +00002030 }
2031
2032 if (NewMember->isInvalidDecl())
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002033 Instantiation->setInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002034 } else {
2035 // FIXME: Eventually, a NULL return will mean that one of the
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002036 // instantiations was a semantic disaster, and we'll want to mark the
2037 // declaration invalid.
2038 // For now, we expect to skip some members that we can't yet handle.
Douglas Gregord475b8d2009-03-25 21:17:03 +00002039 }
2040 }
2041
2042 // Finish checking fields.
David Blaikie77b6de02011-09-22 02:58:26 +00002043 ActOnFields(0, Instantiation->getLocation(), Instantiation, Fields,
2044 SourceLocation(), SourceLocation(), 0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002045 CheckCompletedCXXClass(Instantiation);
Richard Smith7a614d82011-06-11 17:19:42 +00002046
2047 // Attach any in-class member initializers now the class is complete.
Richard Smithd5be2b52012-12-08 02:13:02 +00002048 // FIXME: We are supposed to defer instantiating these until they are needed.
Benjamin Kramer268efba2012-05-17 12:01:52 +00002049 if (!FieldsWithMemberInitializers.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002050 // C++11 [expr.prim.general]p4:
2051 // Otherwise, if a member-declarator declares a non-static data member
2052 // (9.2) of a class X, the expression this is a prvalue of type "pointer
2053 // to X" within the optional brace-or-equal-initializer. It shall not
2054 // appear elsewhere in the member-declarator.
2055 CXXThisScopeRAII ThisScope(*this, Instantiation, (unsigned)0);
2056
2057 for (unsigned I = 0, N = FieldsWithMemberInitializers.size(); I != N; ++I) {
2058 FieldDecl *OldField = FieldsWithMemberInitializers[I].first;
2059 FieldDecl *NewField = FieldsWithMemberInitializers[I].second;
2060 Expr *OldInit = OldField->getInClassInitializer();
Richard Smith7a614d82011-06-11 17:19:42 +00002061
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002062 ExprResult NewInit = SubstInitializer(OldInit, TemplateArgs,
2063 /*CXXDirectInit=*/false);
2064 if (NewInit.isInvalid())
2065 NewField->setInvalidDecl();
2066 else {
2067 Expr *Init = NewInit.take();
2068 assert(Init && "no-argument initializer in class");
2069 assert(!isa<ParenListExpr>(Init) && "call-style init in class");
Richard Smithca523302012-06-10 03:12:00 +00002070 ActOnCXXInClassMemberInitializer(NewField, Init->getLocStart(), Init);
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002071 }
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002072 }
Richard Smith7a614d82011-06-11 17:19:42 +00002073 }
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002074 // Instantiate late parsed attributes, and attach them to their decls.
2075 // See Sema::InstantiateAttrs
2076 for (LateInstantiatedAttrVec::iterator I = LateAttrs.begin(),
2077 E = LateAttrs.end(); I != E; ++I) {
2078 assert(CurrentInstantiationScope == Instantiator.getStartingScope());
2079 CurrentInstantiationScope = I->Scope;
2080 Attr *NewAttr =
2081 instantiateTemplateAttribute(I->TmplAttr, Context, *this, TemplateArgs);
2082 I->NewDecl->addAttr(NewAttr);
2083 LocalInstantiationScope::deleteScopes(I->Scope,
2084 Instantiator.getStartingScope());
2085 }
2086 Instantiator.disableLateAttributeInstantiation();
2087 LateAttrs.clear();
2088
Richard Smithb9d0b762012-07-27 04:22:15 +00002089 ActOnFinishDelayedMemberInitializers(Instantiation);
Richard Smith7a614d82011-06-11 17:19:42 +00002090
Abramo Bagnarae9946242011-11-18 08:08:52 +00002091 if (TSK == TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis734bd6e2012-02-11 01:59:57 +00002092 Instantiation->setLocation(Pattern->getLocation());
Abramo Bagnarae9946242011-11-18 08:08:52 +00002093 Instantiation->setLocStart(Pattern->getInnerLocStart());
Abramo Bagnara09d82122011-10-03 20:34:03 +00002094 Instantiation->setRBraceLoc(Pattern->getRBraceLoc());
Abramo Bagnarae9946242011-11-18 08:08:52 +00002095 }
Abramo Bagnara09d82122011-10-03 20:34:03 +00002096
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002097 if (!Instantiation->isInvalidDecl()) {
John McCall1f2e1a92012-08-10 03:15:35 +00002098 // Perform any dependent diagnostics from the pattern.
2099 PerformDependentDiagnostics(Pattern, TemplateArgs);
2100
Douglas Gregord65587f2010-11-10 19:44:59 +00002101 // Instantiate any out-of-line class template partial
2102 // specializations now.
2103 for (TemplateDeclInstantiator::delayed_partial_spec_iterator
2104 P = Instantiator.delayed_partial_spec_begin(),
2105 PEnd = Instantiator.delayed_partial_spec_end();
2106 P != PEnd; ++P) {
2107 if (!Instantiator.InstantiateClassTemplatePartialSpecialization(
2108 P->first,
2109 P->second)) {
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002110 Instantiation->setInvalidDecl();
Douglas Gregord65587f2010-11-10 19:44:59 +00002111 break;
2112 }
2113 }
2114 }
2115
Douglas Gregord475b8d2009-03-25 21:17:03 +00002116 // Exit the scope of this instantiation.
John McCallf5813822010-04-29 00:35:03 +00002117 SavedContext.pop();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002118
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002119 if (!Instantiation->isInvalidDecl()) {
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002120 Consumer.HandleTagDeclDefinition(Instantiation);
2121
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002122 // Always emit the vtable for an explicit instantiation definition
2123 // of a polymorphic class template specialization.
2124 if (TSK == TSK_ExplicitInstantiationDefinition)
2125 MarkVTableUsed(PointOfInstantiation, Instantiation, true);
2126 }
2127
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002128 return Instantiation->isInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002129}
2130
Richard Smithf1c66b42012-03-14 23:13:10 +00002131/// \brief Instantiate the definition of an enum from a given pattern.
2132///
2133/// \param PointOfInstantiation The point of instantiation within the
2134/// source code.
2135/// \param Instantiation is the declaration whose definition is being
2136/// instantiated. This will be a member enumeration of a class
2137/// temploid specialization, or a local enumeration within a
2138/// function temploid specialization.
2139/// \param Pattern The templated declaration from which the instantiation
2140/// occurs.
2141/// \param TemplateArgs The template arguments to be substituted into
2142/// the pattern.
2143/// \param TSK The kind of implicit or explicit instantiation to perform.
2144///
2145/// \return \c true if an error occurred, \c false otherwise.
2146bool Sema::InstantiateEnum(SourceLocation PointOfInstantiation,
2147 EnumDecl *Instantiation, EnumDecl *Pattern,
2148 const MultiLevelTemplateArgumentList &TemplateArgs,
2149 TemplateSpecializationKind TSK) {
2150 EnumDecl *PatternDef = Pattern->getDefinition();
2151 if (DiagnoseUninstantiableTemplate(*this, PointOfInstantiation, Instantiation,
2152 Instantiation->getInstantiatedFromMemberEnum(),
2153 Pattern, PatternDef, TSK,/*Complain*/true))
2154 return true;
2155 Pattern = PatternDef;
2156
2157 // Record the point of instantiation.
2158 if (MemberSpecializationInfo *MSInfo
2159 = Instantiation->getMemberSpecializationInfo()) {
2160 MSInfo->setTemplateSpecializationKind(TSK);
2161 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2162 }
2163
2164 InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
2165 if (Inst)
2166 return true;
2167
2168 // Enter the scope of this instantiation. We don't use
2169 // PushDeclContext because we don't have a scope.
2170 ContextRAII SavedContext(*this, Instantiation);
2171 EnterExpressionEvaluationContext EvalContext(*this,
2172 Sema::PotentiallyEvaluated);
2173
2174 LocalInstantiationScope Scope(*this, /*MergeWithParentScope*/true);
2175
2176 // Pull attributes from the pattern onto the instantiation.
2177 InstantiateAttrs(TemplateArgs, Pattern, Instantiation);
2178
2179 TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs);
2180 Instantiator.InstantiateEnumDefinition(Instantiation, Pattern);
2181
2182 // Exit the scope of this instantiation.
2183 SavedContext.pop();
2184
2185 return Instantiation->isInvalidDecl();
2186}
2187
Douglas Gregor9b623632010-10-12 23:32:35 +00002188namespace {
2189 /// \brief A partial specialization whose template arguments have matched
2190 /// a given template-id.
2191 struct PartialSpecMatchResult {
2192 ClassTemplatePartialSpecializationDecl *Partial;
2193 TemplateArgumentList *Args;
Douglas Gregor9b623632010-10-12 23:32:35 +00002194 };
2195}
2196
Mike Stump1eb44332009-09-09 15:08:12 +00002197bool
Douglas Gregor2943aed2009-03-03 04:44:36 +00002198Sema::InstantiateClassTemplateSpecialization(
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002199 SourceLocation PointOfInstantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00002200 ClassTemplateSpecializationDecl *ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002201 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002202 bool Complain) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00002203 // Perform the actual instantiation on the canonical declaration.
2204 ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>(
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00002205 ClassTemplateSpec->getCanonicalDecl());
Douglas Gregor2943aed2009-03-03 04:44:36 +00002206
Douglas Gregor52604ab2009-09-11 21:19:12 +00002207 // Check whether we have already instantiated or specialized this class
2208 // template specialization.
2209 if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) {
2210 if (ClassTemplateSpec->getSpecializationKind() ==
2211 TSK_ExplicitInstantiationDeclaration &&
2212 TSK == TSK_ExplicitInstantiationDefinition) {
2213 // An explicit instantiation definition follows an explicit instantiation
2214 // declaration (C++0x [temp.explicit]p10); go ahead and perform the
2215 // explicit instantiation.
2216 ClassTemplateSpec->setSpecializationKind(TSK);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002217
2218 // If this is an explicit instantiation definition, mark the
2219 // vtable as used.
Nico Weberc7feca02011-12-20 20:32:49 +00002220 if (TSK == TSK_ExplicitInstantiationDefinition &&
2221 !ClassTemplateSpec->isInvalidDecl())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002222 MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true);
2223
Douglas Gregor52604ab2009-09-11 21:19:12 +00002224 return false;
2225 }
2226
2227 // We can only instantiate something that hasn't already been
2228 // instantiated or specialized. Fail without any diagnostics: our
2229 // caller will provide an error message.
Douglas Gregor2943aed2009-03-03 04:44:36 +00002230 return true;
Douglas Gregor52604ab2009-09-11 21:19:12 +00002231 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002232
Douglas Gregor9eea08b2009-09-15 16:51:42 +00002233 if (ClassTemplateSpec->isInvalidDecl())
2234 return true;
2235
Douglas Gregor2943aed2009-03-03 04:44:36 +00002236 ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate();
Douglas Gregord6350ae2009-08-28 20:31:08 +00002237 CXXRecordDecl *Pattern = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002238
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002239 // C++ [temp.class.spec.match]p1:
2240 // When a class template is used in a context that requires an
2241 // instantiation of the class, it is necessary to determine
2242 // whether the instantiation is to be generated using the primary
2243 // template or one of the partial specializations. This is done by
2244 // matching the template arguments of the class template
2245 // specialization with the template argument lists of the partial
2246 // specializations.
Douglas Gregor9b623632010-10-12 23:32:35 +00002247 typedef PartialSpecMatchResult MatchResult;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002248 SmallVector<MatchResult, 4> Matched;
2249 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002250 Template->getPartialSpecializations(PartialSpecs);
2251 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
2252 ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
Craig Topper93e45992012-09-19 02:26:47 +00002253 TemplateDeductionInfo Info(PointOfInstantiation);
Douglas Gregorf67875d2009-06-12 18:26:56 +00002254 if (TemplateDeductionResult Result
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002255 = DeduceTemplateArguments(Partial,
Douglas Gregorf67875d2009-06-12 18:26:56 +00002256 ClassTemplateSpec->getTemplateArgs(),
2257 Info)) {
2258 // FIXME: Store the failed-deduction information for use in
2259 // diagnostics, later.
2260 (void)Result;
2261 } else {
Douglas Gregor9b623632010-10-12 23:32:35 +00002262 Matched.push_back(PartialSpecMatchResult());
2263 Matched.back().Partial = Partial;
2264 Matched.back().Args = Info.take();
Douglas Gregorf67875d2009-06-12 18:26:56 +00002265 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002266 }
2267
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002268 // If we're dealing with a member template where the template parameters
2269 // have been instantiated, this provides the original template parameters
2270 // from which the member template's parameters were instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002271 SmallVector<const NamedDecl *, 4> InstantiatedTemplateParameters;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002272
Douglas Gregored9c0f92009-10-29 00:04:11 +00002273 if (Matched.size() >= 1) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002274 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002275 if (Matched.size() == 1) {
2276 // -- If exactly one matching specialization is found, the
2277 // instantiation is generated from that specialization.
2278 // We don't need to do anything for this.
2279 } else {
2280 // -- If more than one matching specialization is found, the
2281 // partial order rules (14.5.4.2) are used to determine
2282 // whether one of the specializations is more specialized
2283 // than the others. If none of the specializations is more
2284 // specialized than all of the other matching
2285 // specializations, then the use of the class template is
2286 // ambiguous and the program is ill-formed.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002287 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002288 PEnd = Matched.end();
2289 P != PEnd; ++P) {
Douglas Gregor9b623632010-10-12 23:32:35 +00002290 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002291 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002292 == P->Partial)
Douglas Gregored9c0f92009-10-29 00:04:11 +00002293 Best = P;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002294 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002295
Douglas Gregored9c0f92009-10-29 00:04:11 +00002296 // Determine if the best partial specialization is more specialized than
2297 // the others.
2298 bool Ambiguous = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002299 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002300 PEnd = Matched.end();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002301 P != PEnd; ++P) {
2302 if (P != Best &&
Douglas Gregor9b623632010-10-12 23:32:35 +00002303 getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002304 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002305 != Best->Partial) {
Douglas Gregored9c0f92009-10-29 00:04:11 +00002306 Ambiguous = true;
2307 break;
2308 }
2309 }
2310
2311 if (Ambiguous) {
2312 // Partial ordering did not produce a clear winner. Complain.
2313 ClassTemplateSpec->setInvalidDecl();
2314 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2315 << ClassTemplateSpec;
2316
2317 // Print the matching partial specializations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002318 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002319 PEnd = Matched.end();
2320 P != PEnd; ++P)
Douglas Gregor9b623632010-10-12 23:32:35 +00002321 Diag(P->Partial->getLocation(), diag::note_partial_spec_match)
2322 << getTemplateArgumentBindingsText(
2323 P->Partial->getTemplateParameters(),
2324 *P->Args);
Douglas Gregord6350ae2009-08-28 20:31:08 +00002325
Douglas Gregored9c0f92009-10-29 00:04:11 +00002326 return true;
2327 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002328 }
2329
2330 // Instantiate using the best class template partial specialization.
Douglas Gregor9b623632010-10-12 23:32:35 +00002331 ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->Partial;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002332 while (OrigPartialSpec->getInstantiatedFromMember()) {
2333 // If we've found an explicit specialization of this class template,
2334 // stop here and use that as the pattern.
2335 if (OrigPartialSpec->isMemberSpecialization())
2336 break;
2337
2338 OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember();
2339 }
2340
2341 Pattern = OrigPartialSpec;
Douglas Gregor9b623632010-10-12 23:32:35 +00002342 ClassTemplateSpec->setInstantiationOf(Best->Partial, Best->Args);
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002343 } else {
2344 // -- If no matches are found, the instantiation is generated
2345 // from the primary template.
Douglas Gregord6350ae2009-08-28 20:31:08 +00002346 ClassTemplateDecl *OrigTemplate = Template;
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002347 while (OrigTemplate->getInstantiatedFromMemberTemplate()) {
2348 // If we've found an explicit specialization of this class template,
2349 // stop here and use that as the pattern.
2350 if (OrigTemplate->isMemberSpecialization())
2351 break;
2352
Douglas Gregord6350ae2009-08-28 20:31:08 +00002353 OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate();
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002354 }
2355
Douglas Gregord6350ae2009-08-28 20:31:08 +00002356 Pattern = OrigTemplate->getTemplatedDecl();
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002357 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002358
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002359 bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec,
2360 Pattern,
2361 getTemplateInstantiationArgs(ClassTemplateSpec),
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002362 TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002363 Complain);
Mike Stump1eb44332009-09-09 15:08:12 +00002364
Douglas Gregor199d9912009-06-05 00:53:49 +00002365 return Result;
Douglas Gregor2943aed2009-03-03 04:44:36 +00002366}
Douglas Gregor5953d8b2009-03-19 17:26:29 +00002367
John McCallce3ff2b2009-08-25 22:02:44 +00002368/// \brief Instantiates the definitions of all of the member
2369/// of the given class, which is an instantiation of a class template
2370/// or a member class of a template.
Douglas Gregora58861f2009-05-13 20:28:22 +00002371void
2372Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002373 CXXRecordDecl *Instantiation,
2374 const MultiLevelTemplateArgumentList &TemplateArgs,
2375 TemplateSpecializationKind TSK) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002376 for (DeclContext::decl_iterator D = Instantiation->decls_begin(),
2377 DEnd = Instantiation->decls_end();
Douglas Gregora58861f2009-05-13 20:28:22 +00002378 D != DEnd; ++D) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002379 bool SuppressNew = false;
Douglas Gregora58861f2009-05-13 20:28:22 +00002380 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002381 if (FunctionDecl *Pattern
2382 = Function->getInstantiatedFromMemberFunction()) {
2383 MemberSpecializationInfo *MSInfo
2384 = Function->getMemberSpecializationInfo();
2385 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002386 if (MSInfo->getTemplateSpecializationKind()
2387 == TSK_ExplicitSpecialization)
2388 continue;
2389
Douglas Gregor0d035142009-10-27 18:42:08 +00002390 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2391 Function,
2392 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002393 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002394 SuppressNew) ||
2395 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002396 continue;
2397
Sean Hunt10620eb2011-05-06 20:44:56 +00002398 if (Function->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002399 continue;
2400
2401 if (TSK == TSK_ExplicitInstantiationDefinition) {
2402 // C++0x [temp.explicit]p8:
2403 // An explicit instantiation definition that names a class template
2404 // specialization explicitly instantiates the class template
2405 // specialization and is only an explicit instantiation definition
2406 // of members whose definition is visible at the point of
2407 // instantiation.
Sean Hunt10620eb2011-05-06 20:44:56 +00002408 if (!Pattern->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002409 continue;
2410
2411 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2412
2413 InstantiateFunctionDefinition(PointOfInstantiation, Function);
2414 } else {
2415 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2416 }
Douglas Gregorf6b11852009-10-08 15:14:33 +00002417 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002418 } else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002419 if (Var->isStaticDataMember()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002420 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
2421 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002422 if (MSInfo->getTemplateSpecializationKind()
2423 == TSK_ExplicitSpecialization)
2424 continue;
2425
Douglas Gregor0d035142009-10-27 18:42:08 +00002426 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2427 Var,
2428 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002429 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002430 SuppressNew) ||
2431 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002432 continue;
2433
Douglas Gregor0d035142009-10-27 18:42:08 +00002434 if (TSK == TSK_ExplicitInstantiationDefinition) {
2435 // C++0x [temp.explicit]p8:
2436 // An explicit instantiation definition that names a class template
2437 // specialization explicitly instantiates the class template
2438 // specialization and is only an explicit instantiation definition
2439 // of members whose definition is visible at the point of
2440 // instantiation.
2441 if (!Var->getInstantiatedFromStaticDataMember()
2442 ->getOutOfLineDefinition())
2443 continue;
2444
2445 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002446 InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var);
Douglas Gregor0d035142009-10-27 18:42:08 +00002447 } else {
2448 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2449 }
2450 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002451 } else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) {
Douglas Gregora77eaa92010-04-18 18:11:38 +00002452 // Always skip the injected-class-name, along with any
2453 // redeclarations of nested classes, since both would cause us
2454 // to try to instantiate the members of a class twice.
Douglas Gregoref96ee02012-01-14 16:38:05 +00002455 if (Record->isInjectedClassName() || Record->getPreviousDecl())
Douglas Gregor2db32322009-10-07 23:56:10 +00002456 continue;
2457
Douglas Gregor0d035142009-10-27 18:42:08 +00002458 MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo();
2459 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002460
2461 if (MSInfo->getTemplateSpecializationKind()
2462 == TSK_ExplicitSpecialization)
2463 continue;
Nico Weberc956b6e2010-09-27 21:02:09 +00002464
Douglas Gregor0d035142009-10-27 18:42:08 +00002465 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2466 Record,
2467 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002468 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002469 SuppressNew) ||
2470 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002471 continue;
2472
Douglas Gregor0d035142009-10-27 18:42:08 +00002473 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
2474 assert(Pattern && "Missing instantiated-from-template information");
2475
Douglas Gregor952b0172010-02-11 01:04:33 +00002476 if (!Record->getDefinition()) {
2477 if (!Pattern->getDefinition()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002478 // C++0x [temp.explicit]p8:
2479 // An explicit instantiation definition that names a class template
2480 // specialization explicitly instantiates the class template
2481 // specialization and is only an explicit instantiation definition
2482 // of members whose definition is visible at the point of
2483 // instantiation.
2484 if (TSK == TSK_ExplicitInstantiationDeclaration) {
2485 MSInfo->setTemplateSpecializationKind(TSK);
2486 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2487 }
2488
2489 continue;
2490 }
2491
2492 InstantiateClass(PointOfInstantiation, Record, Pattern,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002493 TemplateArgs,
2494 TSK);
Nico Weberc956b6e2010-09-27 21:02:09 +00002495 } else {
2496 if (TSK == TSK_ExplicitInstantiationDefinition &&
2497 Record->getTemplateSpecializationKind() ==
2498 TSK_ExplicitInstantiationDeclaration) {
2499 Record->setTemplateSpecializationKind(TSK);
2500 MarkVTableUsed(PointOfInstantiation, Record, true);
2501 }
Douglas Gregor0d035142009-10-27 18:42:08 +00002502 }
Douglas Gregore9374d52009-10-08 01:19:17 +00002503
Douglas Gregor952b0172010-02-11 01:04:33 +00002504 Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00002505 if (Pattern)
2506 InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs,
2507 TSK);
Richard Smithf1c66b42012-03-14 23:13:10 +00002508 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(*D)) {
2509 MemberSpecializationInfo *MSInfo = Enum->getMemberSpecializationInfo();
2510 assert(MSInfo && "No member specialization information?");
2511
2512 if (MSInfo->getTemplateSpecializationKind()
2513 == TSK_ExplicitSpecialization)
2514 continue;
2515
2516 if (CheckSpecializationInstantiationRedecl(
2517 PointOfInstantiation, TSK, Enum,
2518 MSInfo->getTemplateSpecializationKind(),
2519 MSInfo->getPointOfInstantiation(), SuppressNew) ||
2520 SuppressNew)
2521 continue;
2522
2523 if (Enum->getDefinition())
2524 continue;
2525
2526 EnumDecl *Pattern = Enum->getInstantiatedFromMemberEnum();
2527 assert(Pattern && "Missing instantiated-from-template information");
2528
2529 if (TSK == TSK_ExplicitInstantiationDefinition) {
2530 if (!Pattern->getDefinition())
2531 continue;
2532
2533 InstantiateEnum(PointOfInstantiation, Enum, Pattern, TemplateArgs, TSK);
2534 } else {
2535 MSInfo->setTemplateSpecializationKind(TSK);
2536 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2537 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002538 }
2539 }
2540}
2541
2542/// \brief Instantiate the definitions of all of the members of the
2543/// given class template specialization, which was named as part of an
2544/// explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00002545void
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002546Sema::InstantiateClassTemplateSpecializationMembers(
Douglas Gregora58861f2009-05-13 20:28:22 +00002547 SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002548 ClassTemplateSpecializationDecl *ClassTemplateSpec,
2549 TemplateSpecializationKind TSK) {
Douglas Gregora58861f2009-05-13 20:28:22 +00002550 // C++0x [temp.explicit]p7:
2551 // An explicit instantiation that names a class template
2552 // specialization is an explicit instantion of the same kind
2553 // (declaration or definition) of each of its members (not
2554 // including members inherited from base classes) that has not
2555 // been previously explicitly specialized in the translation unit
2556 // containing the explicit instantiation, except as described
2557 // below.
2558 InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002559 getTemplateInstantiationArgs(ClassTemplateSpec),
2560 TSK);
Douglas Gregora58861f2009-05-13 20:28:22 +00002561}
2562
John McCall60d7b3a2010-08-24 06:29:42 +00002563StmtResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002564Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor43959a92009-08-20 07:17:43 +00002565 if (!S)
2566 return Owned(S);
2567
2568 TemplateInstantiator Instantiator(*this, TemplateArgs,
2569 SourceLocation(),
2570 DeclarationName());
2571 return Instantiator.TransformStmt(S);
2572}
2573
John McCall60d7b3a2010-08-24 06:29:42 +00002574ExprResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002575Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregorb98b1992009-08-11 05:31:07 +00002576 if (!E)
2577 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Douglas Gregorb98b1992009-08-11 05:31:07 +00002579 TemplateInstantiator Instantiator(*this, TemplateArgs,
2580 SourceLocation(),
2581 DeclarationName());
2582 return Instantiator.TransformExpr(E);
2583}
2584
Richard Smithc83c2302012-12-19 01:39:02 +00002585ExprResult Sema::SubstInitializer(Expr *Init,
2586 const MultiLevelTemplateArgumentList &TemplateArgs,
2587 bool CXXDirectInit) {
2588 TemplateInstantiator Instantiator(*this, TemplateArgs,
2589 SourceLocation(),
2590 DeclarationName());
2591 return Instantiator.TransformInitializer(Init, CXXDirectInit);
2592}
2593
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002594bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,
2595 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002596 SmallVectorImpl<Expr *> &Outputs) {
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002597 if (NumExprs == 0)
2598 return false;
Richard Smithc83c2302012-12-19 01:39:02 +00002599
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002600 TemplateInstantiator Instantiator(*this, TemplateArgs,
2601 SourceLocation(),
2602 DeclarationName());
2603 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
2604}
2605
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002606NestedNameSpecifierLoc
2607Sema::SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
2608 const MultiLevelTemplateArgumentList &TemplateArgs) {
2609 if (!NNS)
2610 return NestedNameSpecifierLoc();
2611
2612 TemplateInstantiator Instantiator(*this, TemplateArgs, NNS.getBeginLoc(),
2613 DeclarationName());
2614 return Instantiator.TransformNestedNameSpecifierLoc(NNS);
2615}
2616
Abramo Bagnara25777432010-08-11 22:01:17 +00002617/// \brief Do template substitution on declaration name info.
2618DeclarationNameInfo
2619Sema::SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
2620 const MultiLevelTemplateArgumentList &TemplateArgs) {
2621 TemplateInstantiator Instantiator(*this, TemplateArgs, NameInfo.getLoc(),
2622 NameInfo.getName());
2623 return Instantiator.TransformDeclarationNameInfo(NameInfo);
2624}
2625
Douglas Gregorde650ae2009-03-31 18:38:02 +00002626TemplateName
Douglas Gregor1d752d72011-03-02 18:46:51 +00002627Sema::SubstTemplateName(NestedNameSpecifierLoc QualifierLoc,
2628 TemplateName Name, SourceLocation Loc,
Douglas Gregord6350ae2009-08-28 20:31:08 +00002629 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord1067e52009-08-06 06:41:21 +00002630 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
2631 DeclarationName());
Douglas Gregor1d752d72011-03-02 18:46:51 +00002632 CXXScopeSpec SS;
2633 SS.Adopt(QualifierLoc);
2634 return Instantiator.TransformTemplateName(SS, Name, Loc);
Douglas Gregorde650ae2009-03-31 18:38:02 +00002635}
Douglas Gregor91333002009-06-11 00:06:24 +00002636
Douglas Gregore02e2622010-12-22 21:19:48 +00002637bool Sema::Subst(const TemplateArgumentLoc *Args, unsigned NumArgs,
2638 TemplateArgumentListInfo &Result,
John McCall833ca992009-10-29 08:12:44 +00002639 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor670444e2009-08-04 22:27:00 +00002640 TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(),
2641 DeclarationName());
Douglas Gregore02e2622010-12-22 21:19:48 +00002642
2643 return Instantiator.TransformTemplateArguments(Args, NumArgs, Result);
Douglas Gregor91333002009-06-11 00:06:24 +00002644}
Douglas Gregor895162d2010-04-30 18:55:50 +00002645
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002646
2647static const Decl* getCanonicalParmVarDecl(const Decl *D) {
2648 // When storing ParmVarDecls in the local instantiation scope, we always
2649 // want to use the ParmVarDecl from the canonical function declaration,
2650 // since the map is then valid for any redeclaration or definition of that
2651 // function.
2652 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(D)) {
2653 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
2654 unsigned i = PV->getFunctionScopeIndex();
2655 return FD->getCanonicalDecl()->getParamDecl(i);
2656 }
2657 }
2658 return D;
2659}
2660
2661
Douglas Gregor12c9c002011-01-07 16:43:16 +00002662llvm::PointerUnion<Decl *, LocalInstantiationScope::DeclArgumentPack *> *
2663LocalInstantiationScope::findInstantiationOf(const Decl *D) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002664 D = getCanonicalParmVarDecl(D);
Chris Lattner57ad3782011-02-17 20:34:02 +00002665 for (LocalInstantiationScope *Current = this; Current;
Douglas Gregor895162d2010-04-30 18:55:50 +00002666 Current = Current->Outer) {
Chris Lattner57ad3782011-02-17 20:34:02 +00002667
Douglas Gregor895162d2010-04-30 18:55:50 +00002668 // Check if we found something within this scope.
Douglas Gregorebb1c562010-12-21 21:22:51 +00002669 const Decl *CheckD = D;
2670 do {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002671 LocalDeclsMap::iterator Found = Current->LocalDecls.find(CheckD);
Douglas Gregorebb1c562010-12-21 21:22:51 +00002672 if (Found != Current->LocalDecls.end())
Douglas Gregor12c9c002011-01-07 16:43:16 +00002673 return &Found->second;
Douglas Gregorebb1c562010-12-21 21:22:51 +00002674
2675 // If this is a tag declaration, it's possible that we need to look for
2676 // a previous declaration.
2677 if (const TagDecl *Tag = dyn_cast<TagDecl>(CheckD))
Douglas Gregoref96ee02012-01-14 16:38:05 +00002678 CheckD = Tag->getPreviousDecl();
Douglas Gregorebb1c562010-12-21 21:22:51 +00002679 else
2680 CheckD = 0;
2681 } while (CheckD);
2682
Douglas Gregor895162d2010-04-30 18:55:50 +00002683 // If we aren't combined with our outer scope, we're done.
2684 if (!Current->CombineWithOuterScope)
2685 break;
2686 }
Chris Lattner57ad3782011-02-17 20:34:02 +00002687
2688 // If we didn't find the decl, then we either have a sema bug, or we have a
2689 // forward reference to a label declaration. Return null to indicate that
2690 // we have an uninstantiated label.
2691 assert(isa<LabelDecl>(D) && "declaration not instantiated in this scope");
Douglas Gregor895162d2010-04-30 18:55:50 +00002692 return 0;
2693}
2694
John McCall2a7fb272010-08-25 05:32:35 +00002695void LocalInstantiationScope::InstantiatedLocal(const Decl *D, Decl *Inst) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002696 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002697 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
Douglas Gregord3731192011-01-10 07:32:04 +00002698 if (Stored.isNull())
2699 Stored = Inst;
2700 else if (Stored.is<Decl *>()) {
2701 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
2702 Stored = Inst;
2703 } else
2704 LocalDecls[D].get<DeclArgumentPack *>()->push_back(Inst);
Douglas Gregor895162d2010-04-30 18:55:50 +00002705}
Douglas Gregor12c9c002011-01-07 16:43:16 +00002706
2707void LocalInstantiationScope::InstantiatedLocalPackArg(const Decl *D,
2708 Decl *Inst) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002709 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002710 DeclArgumentPack *Pack = LocalDecls[D].get<DeclArgumentPack *>();
2711 Pack->push_back(Inst);
2712}
2713
2714void LocalInstantiationScope::MakeInstantiatedLocalArgPack(const Decl *D) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002715 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002716 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2717 assert(Stored.isNull() && "Already instantiated this local");
2718 DeclArgumentPack *Pack = new DeclArgumentPack;
2719 Stored = Pack;
2720 ArgumentPacks.push_back(Pack);
2721}
2722
Douglas Gregord3731192011-01-10 07:32:04 +00002723void LocalInstantiationScope::SetPartiallySubstitutedPack(NamedDecl *Pack,
2724 const TemplateArgument *ExplicitArgs,
2725 unsigned NumExplicitArgs) {
2726 assert((!PartiallySubstitutedPack || PartiallySubstitutedPack == Pack) &&
2727 "Already have a partially-substituted pack");
2728 assert((!PartiallySubstitutedPack
2729 || NumArgsInPartiallySubstitutedPack == NumExplicitArgs) &&
2730 "Wrong number of arguments in partially-substituted pack");
2731 PartiallySubstitutedPack = Pack;
2732 ArgsInPartiallySubstitutedPack = ExplicitArgs;
2733 NumArgsInPartiallySubstitutedPack = NumExplicitArgs;
2734}
2735
2736NamedDecl *LocalInstantiationScope::getPartiallySubstitutedPack(
2737 const TemplateArgument **ExplicitArgs,
2738 unsigned *NumExplicitArgs) const {
2739 if (ExplicitArgs)
2740 *ExplicitArgs = 0;
2741 if (NumExplicitArgs)
2742 *NumExplicitArgs = 0;
2743
2744 for (const LocalInstantiationScope *Current = this; Current;
2745 Current = Current->Outer) {
2746 if (Current->PartiallySubstitutedPack) {
2747 if (ExplicitArgs)
2748 *ExplicitArgs = Current->ArgsInPartiallySubstitutedPack;
2749 if (NumExplicitArgs)
2750 *NumExplicitArgs = Current->NumArgsInPartiallySubstitutedPack;
2751
2752 return Current->PartiallySubstitutedPack;
2753 }
2754
2755 if (!Current->CombineWithOuterScope)
2756 break;
2757 }
2758
2759 return 0;
2760}