blob: 9f84fc665b1fc850b6f047b8acdc6b81c97378df [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();
Larisse Voufoef4579c2013-08-06 01:03:05 +000064
65 // Add template arguments from a variable template instantiation.
66 if (VarTemplateSpecializationDecl *Spec =
67 dyn_cast<VarTemplateSpecializationDecl>(D)) {
68 // We're done when we hit an explicit specialization.
69 if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization &&
70 !isa<VarTemplatePartialSpecializationDecl>(Spec))
71 return Result;
72
73 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
74
75 // If this variable template specialization was instantiated from a
76 // specialized member that is a variable template, we're done.
77 assert(Spec->getSpecializedTemplate() && "No variable template?");
78 if (Spec->getSpecializedTemplate()->isMemberSpecialization())
79 return Result;
80 }
81
Douglas Gregor383041d2011-06-15 14:20:42 +000082 // If we have a template template parameter with translation unit context,
83 // then we're performing substitution into a default template argument of
84 // this template template parameter before we've constructed the template
85 // that will own this template template parameter. In this case, we
86 // use empty template parameter lists for all of the outer templates
87 // to avoid performing any substitutions.
88 if (Ctx->isTranslationUnit()) {
89 if (TemplateTemplateParmDecl *TTP
90 = dyn_cast<TemplateTemplateParmDecl>(D)) {
91 for (unsigned I = 0, N = TTP->getDepth() + 1; I != N; ++I)
Richard Smith7a9f7c72013-05-17 03:04:50 +000092 Result.addOuterTemplateArguments(None);
Douglas Gregor383041d2011-06-15 14:20:42 +000093 return Result;
94 }
95 }
Douglas Gregor93104c12011-05-22 00:21:10 +000096 }
97
John McCallf181d8a2009-08-29 03:16:09 +000098 while (!Ctx->isFileContext()) {
Douglas Gregord1102432009-08-28 17:37:35 +000099 // Add template arguments from a class template instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +0000100 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregord1102432009-08-28 17:37:35 +0000101 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) {
102 // We're done when we hit an explicit specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +0000103 if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization &&
104 !isa<ClassTemplatePartialSpecializationDecl>(Spec))
Douglas Gregord1102432009-08-28 17:37:35 +0000105 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Douglas Gregord1102432009-08-28 17:37:35 +0000107 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000108
109 // If this class template specialization was instantiated from a
110 // specialized member that is a class template, we're done.
111 assert(Spec->getSpecializedTemplate() && "No class template?");
112 if (Spec->getSpecializedTemplate()->isMemberSpecialization())
113 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000114 }
Douglas Gregord1102432009-08-28 17:37:35 +0000115 // Add template arguments from a function template specialization.
John McCallf181d8a2009-08-29 03:16:09 +0000116 else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) {
Douglas Gregor525f96c2010-02-05 07:33:43 +0000117 if (!RelativeToPrimary &&
Francois Pichetaf0f4d02011-08-14 03:52:19 +0000118 (Function->getTemplateSpecializationKind() ==
119 TSK_ExplicitSpecialization &&
120 !Function->getClassScopeSpecializationPattern()))
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000121 break;
122
Douglas Gregord1102432009-08-28 17:37:35 +0000123 if (const TemplateArgumentList *TemplateArgs
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000124 = Function->getTemplateSpecializationArgs()) {
125 // Add the template arguments for this specialization.
Douglas Gregord1102432009-08-28 17:37:35 +0000126 Result.addOuterTemplateArguments(TemplateArgs);
John McCallf181d8a2009-08-29 03:16:09 +0000127
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000128 // If this function was instantiated from a specialized member that is
129 // a function template, we're done.
130 assert(Function->getPrimaryTemplate() && "No function template?");
131 if (Function->getPrimaryTemplate()->isMemberSpecialization())
132 break;
Douglas Gregorc494f772011-03-05 17:54:25 +0000133 } else if (FunctionTemplateDecl *FunTmpl
134 = Function->getDescribedFunctionTemplate()) {
135 // Add the "injected" template arguments.
Richard Smith7a9f7c72013-05-17 03:04:50 +0000136 Result.addOuterTemplateArguments(FunTmpl->getInjectedTemplateArgs());
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000137 }
138
John McCallf181d8a2009-08-29 03:16:09 +0000139 // If this is a friend declaration and it declares an entity at
140 // namespace scope, take arguments from its lexical parent
Douglas Gregore7089b02010-05-03 23:29:10 +0000141 // instead of its semantic parent, unless of course the pattern we're
142 // instantiating actually comes from the file's context!
John McCallf181d8a2009-08-29 03:16:09 +0000143 if (Function->getFriendObjectKind() &&
Douglas Gregore7089b02010-05-03 23:29:10 +0000144 Function->getDeclContext()->isFileContext() &&
145 (!Pattern || !Pattern->getLexicalDeclContext()->isFileContext())) {
John McCallf181d8a2009-08-29 03:16:09 +0000146 Ctx = Function->getLexicalDeclContext();
Douglas Gregor525f96c2010-02-05 07:33:43 +0000147 RelativeToPrimary = false;
John McCallf181d8a2009-08-29 03:16:09 +0000148 continue;
149 }
Douglas Gregor24bae922010-07-08 18:37:38 +0000150 } else if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Ctx)) {
151 if (ClassTemplateDecl *ClassTemplate = Rec->getDescribedClassTemplate()) {
152 QualType T = ClassTemplate->getInjectedClassNameSpecialization();
Richard Smith7a9f7c72013-05-17 03:04:50 +0000153 const TemplateSpecializationType *TST =
154 cast<TemplateSpecializationType>(Context.getCanonicalType(T));
155 Result.addOuterTemplateArguments(
156 llvm::makeArrayRef(TST->getArgs(), TST->getNumArgs()));
Douglas Gregor24bae922010-07-08 18:37:38 +0000157 if (ClassTemplate->isMemberSpecialization())
158 break;
159 }
Douglas Gregord1102432009-08-28 17:37:35 +0000160 }
John McCallf181d8a2009-08-29 03:16:09 +0000161
162 Ctx = Ctx->getParent();
Douglas Gregor525f96c2010-02-05 07:33:43 +0000163 RelativeToPrimary = false;
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000164 }
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Douglas Gregord1102432009-08-28 17:37:35 +0000166 return Result;
Douglas Gregor54dabfc2009-05-14 23:26:13 +0000167}
168
Douglas Gregorf35f8282009-11-11 21:54:23 +0000169bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const {
170 switch (Kind) {
171 case TemplateInstantiation:
Richard Smithe6975e92012-04-17 00:58:00 +0000172 case ExceptionSpecInstantiation:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000173 case DefaultTemplateArgumentInstantiation:
174 case DefaultFunctionArgumentInstantiation:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000175 case ExplicitTemplateArgumentSubstitution:
176 case DeducedTemplateArgumentSubstitution:
177 case PriorTemplateArgumentSubstitution:
Richard Smithab91ef12012-07-08 02:38:24 +0000178 return true;
179
Douglas Gregorf35f8282009-11-11 21:54:23 +0000180 case DefaultTemplateArgumentChecking:
181 return false;
182 }
David Blaikie7530c032012-01-17 06:56:22 +0000183
184 llvm_unreachable("Invalid InstantiationKind!");
Douglas Gregorf35f8282009-11-11 21:54:23 +0000185}
186
Douglas Gregor26dce442009-03-10 00:06:19 +0000187Sema::InstantiatingTemplate::
188InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000189 Decl *Entity,
Douglas Gregor26dce442009-03-10 00:06:19 +0000190 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000191 : SemaRef(SemaRef),
192 SavedInNonInstantiationSFINAEContext(
193 SemaRef.InNonInstantiationSFINAEContext)
194{
Douglas Gregordf667e72009-03-10 20:44:00 +0000195 Invalid = CheckInstantiationDepth(PointOfInstantiation,
196 InstantiationRange);
197 if (!Invalid) {
Douglas Gregor26dce442009-03-10 00:06:19 +0000198 ActiveTemplateInstantiation Inst;
Douglas Gregordf667e72009-03-10 20:44:00 +0000199 Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation;
Douglas Gregor26dce442009-03-10 00:06:19 +0000200 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000201 Inst.Entity = Entity;
Douglas Gregor313a81d2009-03-12 18:36:18 +0000202 Inst.TemplateArgs = 0;
203 Inst.NumTemplateArgs = 0;
Douglas Gregordf667e72009-03-10 20:44:00 +0000204 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000205 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregordf667e72009-03-10 20:44:00 +0000206 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregordf667e72009-03-10 20:44:00 +0000207 }
208}
209
Richard Smithe6975e92012-04-17 00:58:00 +0000210Sema::InstantiatingTemplate::
211InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
212 FunctionDecl *Entity, ExceptionSpecification,
213 SourceRange InstantiationRange)
214 : SemaRef(SemaRef),
215 SavedInNonInstantiationSFINAEContext(
216 SemaRef.InNonInstantiationSFINAEContext)
217{
218 Invalid = CheckInstantiationDepth(PointOfInstantiation,
219 InstantiationRange);
220 if (!Invalid) {
221 ActiveTemplateInstantiation Inst;
222 Inst.Kind = ActiveTemplateInstantiation::ExceptionSpecInstantiation;
223 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000224 Inst.Entity = Entity;
Richard Smithe6975e92012-04-17 00:58:00 +0000225 Inst.TemplateArgs = 0;
226 Inst.NumTemplateArgs = 0;
227 Inst.InstantiationRange = InstantiationRange;
228 SemaRef.InNonInstantiationSFINAEContext = false;
229 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
230 }
231}
232
Richard Smith7e54fb52012-07-16 01:09:10 +0000233Sema::InstantiatingTemplate::
234InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
235 TemplateDecl *Template,
236 ArrayRef<TemplateArgument> TemplateArgs,
237 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000238 : SemaRef(SemaRef),
239 SavedInNonInstantiationSFINAEContext(
240 SemaRef.InNonInstantiationSFINAEContext)
241{
Douglas Gregordf667e72009-03-10 20:44:00 +0000242 Invalid = CheckInstantiationDepth(PointOfInstantiation,
243 InstantiationRange);
244 if (!Invalid) {
245 ActiveTemplateInstantiation Inst;
Mike Stump1eb44332009-09-09 15:08:12 +0000246 Inst.Kind
Douglas Gregordf667e72009-03-10 20:44:00 +0000247 = ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation;
248 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000249 Inst.Entity = Template;
Richard Smith7e54fb52012-07-16 01:09:10 +0000250 Inst.TemplateArgs = TemplateArgs.data();
251 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregor26dce442009-03-10 00:06:19 +0000252 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000253 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregor26dce442009-03-10 00:06:19 +0000254 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor26dce442009-03-10 00:06:19 +0000255 }
256}
257
Richard Smith7e54fb52012-07-16 01:09:10 +0000258Sema::InstantiatingTemplate::
259InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
260 FunctionTemplateDecl *FunctionTemplate,
261 ArrayRef<TemplateArgument> TemplateArgs,
262 ActiveTemplateInstantiation::InstantiationKind Kind,
263 sema::TemplateDeductionInfo &DeductionInfo,
264 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000265 : SemaRef(SemaRef),
266 SavedInNonInstantiationSFINAEContext(
267 SemaRef.InNonInstantiationSFINAEContext)
268{
Richard Smithab91ef12012-07-08 02:38:24 +0000269 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
Douglas Gregorcca9e962009-07-01 22:01:06 +0000270 if (!Invalid) {
271 ActiveTemplateInstantiation Inst;
272 Inst.Kind = Kind;
273 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000274 Inst.Entity = FunctionTemplate;
Richard Smith7e54fb52012-07-16 01:09:10 +0000275 Inst.TemplateArgs = TemplateArgs.data();
276 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregor9b623632010-10-12 23:32:35 +0000277 Inst.DeductionInfo = &DeductionInfo;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000278 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000279 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000280 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregorf35f8282009-11-11 21:54:23 +0000281
282 if (!Inst.isInstantiationRecord())
283 ++SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000284 }
285}
286
Richard Smith7e54fb52012-07-16 01:09:10 +0000287Sema::InstantiatingTemplate::
288InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
289 ClassTemplatePartialSpecializationDecl *PartialSpec,
290 ArrayRef<TemplateArgument> TemplateArgs,
291 sema::TemplateDeductionInfo &DeductionInfo,
292 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000293 : SemaRef(SemaRef),
294 SavedInNonInstantiationSFINAEContext(
295 SemaRef.InNonInstantiationSFINAEContext)
296{
Richard Smithab91ef12012-07-08 02:38:24 +0000297 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
298 if (!Invalid) {
299 ActiveTemplateInstantiation Inst;
300 Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution;
301 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000302 Inst.Entity = PartialSpec;
Richard Smith7e54fb52012-07-16 01:09:10 +0000303 Inst.TemplateArgs = TemplateArgs.data();
304 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000305 Inst.DeductionInfo = &DeductionInfo;
306 Inst.InstantiationRange = InstantiationRange;
307 SemaRef.InNonInstantiationSFINAEContext = false;
308 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
309 }
Douglas Gregor637a4092009-06-10 23:47:09 +0000310}
311
Larisse Voufoef4579c2013-08-06 01:03:05 +0000312Sema::InstantiatingTemplate::InstantiatingTemplate(
313 Sema &SemaRef, SourceLocation PointOfInstantiation,
314 VarTemplatePartialSpecializationDecl *PartialSpec,
315 ArrayRef<TemplateArgument> TemplateArgs,
316 sema::TemplateDeductionInfo &DeductionInfo, SourceRange InstantiationRange)
317 : SemaRef(SemaRef), SavedInNonInstantiationSFINAEContext(
318 SemaRef.InNonInstantiationSFINAEContext) {
319 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
320 if (!Invalid) {
321 ActiveTemplateInstantiation Inst;
322 Inst.Kind =
323 ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution;
324 Inst.PointOfInstantiation = PointOfInstantiation;
325 Inst.Entity = PartialSpec;
326 Inst.TemplateArgs = TemplateArgs.data();
327 Inst.NumTemplateArgs = TemplateArgs.size();
328 Inst.DeductionInfo = &DeductionInfo;
329 Inst.InstantiationRange = InstantiationRange;
330 SemaRef.InNonInstantiationSFINAEContext = false;
331 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
332 }
333}
334
Richard Smith7e54fb52012-07-16 01:09:10 +0000335Sema::InstantiatingTemplate::
336InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
337 ParmVarDecl *Param,
338 ArrayRef<TemplateArgument> TemplateArgs,
339 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000340 : SemaRef(SemaRef),
341 SavedInNonInstantiationSFINAEContext(
342 SemaRef.InNonInstantiationSFINAEContext)
343{
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000344 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000345 if (!Invalid) {
346 ActiveTemplateInstantiation Inst;
347 Inst.Kind
348 = ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000349 Inst.PointOfInstantiation = PointOfInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000350 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000351 Inst.TemplateArgs = TemplateArgs.data();
352 Inst.NumTemplateArgs = TemplateArgs.size();
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000353 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000354 SemaRef.InNonInstantiationSFINAEContext = false;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000355 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000356 }
357}
358
359Sema::InstantiatingTemplate::
360InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000361 NamedDecl *Template, NonTypeTemplateParmDecl *Param,
362 ArrayRef<TemplateArgument> TemplateArgs,
363 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000364 : SemaRef(SemaRef),
365 SavedInNonInstantiationSFINAEContext(
366 SemaRef.InNonInstantiationSFINAEContext)
367{
Richard Smithab91ef12012-07-08 02:38:24 +0000368 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
369 if (!Invalid) {
370 ActiveTemplateInstantiation Inst;
371 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
372 Inst.PointOfInstantiation = PointOfInstantiation;
373 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000374 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000375 Inst.TemplateArgs = TemplateArgs.data();
376 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000377 Inst.InstantiationRange = InstantiationRange;
378 SemaRef.InNonInstantiationSFINAEContext = false;
379 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
380 }
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000381}
382
383Sema::InstantiatingTemplate::
384InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000385 NamedDecl *Template, TemplateTemplateParmDecl *Param,
386 ArrayRef<TemplateArgument> TemplateArgs,
387 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000388 : SemaRef(SemaRef),
389 SavedInNonInstantiationSFINAEContext(
390 SemaRef.InNonInstantiationSFINAEContext)
391{
Richard Smithab91ef12012-07-08 02:38:24 +0000392 Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
393 if (!Invalid) {
394 ActiveTemplateInstantiation Inst;
395 Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
396 Inst.PointOfInstantiation = PointOfInstantiation;
397 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000398 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000399 Inst.TemplateArgs = TemplateArgs.data();
400 Inst.NumTemplateArgs = TemplateArgs.size();
Richard Smithab91ef12012-07-08 02:38:24 +0000401 Inst.InstantiationRange = InstantiationRange;
402 SemaRef.InNonInstantiationSFINAEContext = false;
403 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
404 }
Douglas Gregorf35f8282009-11-11 21:54:23 +0000405}
406
407Sema::InstantiatingTemplate::
408InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
Richard Smith7e54fb52012-07-16 01:09:10 +0000409 TemplateDecl *Template, NamedDecl *Param,
410 ArrayRef<TemplateArgument> TemplateArgs,
411 SourceRange InstantiationRange)
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000412 : SemaRef(SemaRef),
413 SavedInNonInstantiationSFINAEContext(
414 SemaRef.InNonInstantiationSFINAEContext)
415{
Douglas Gregorf35f8282009-11-11 21:54:23 +0000416 Invalid = false;
417
418 ActiveTemplateInstantiation Inst;
419 Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking;
420 Inst.PointOfInstantiation = PointOfInstantiation;
421 Inst.Template = Template;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000422 Inst.Entity = Param;
Richard Smith7e54fb52012-07-16 01:09:10 +0000423 Inst.TemplateArgs = TemplateArgs.data();
424 Inst.NumTemplateArgs = TemplateArgs.size();
Douglas Gregorf35f8282009-11-11 21:54:23 +0000425 Inst.InstantiationRange = InstantiationRange;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000426 SemaRef.InNonInstantiationSFINAEContext = false;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000427 SemaRef.ActiveTemplateInstantiations.push_back(Inst);
428
429 assert(!Inst.isInstantiationRecord());
430 ++SemaRef.NonInstantiationEntries;
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000431}
432
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000433void Sema::InstantiatingTemplate::Clear() {
434 if (!Invalid) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000435 if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) {
436 assert(SemaRef.NonInstantiationEntries > 0);
437 --SemaRef.NonInstantiationEntries;
438 }
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000439 SemaRef.InNonInstantiationSFINAEContext
440 = SavedInNonInstantiationSFINAEContext;
Richard Smithb7751002013-07-25 23:08:39 +0000441
442 // Name lookup no longer looks in this template's defining module.
443 assert(SemaRef.ActiveTemplateInstantiations.size() >=
444 SemaRef.ActiveTemplateInstantiationLookupModules.size() &&
445 "forgot to remove a lookup module for a template instantiation");
446 if (SemaRef.ActiveTemplateInstantiations.size() ==
447 SemaRef.ActiveTemplateInstantiationLookupModules.size()) {
448 if (Module *M = SemaRef.ActiveTemplateInstantiationLookupModules.back())
449 SemaRef.LookupModulesCache.erase(M);
450 SemaRef.ActiveTemplateInstantiationLookupModules.pop_back();
451 }
452
Douglas Gregor26dce442009-03-10 00:06:19 +0000453 SemaRef.ActiveTemplateInstantiations.pop_back();
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000454 Invalid = true;
455 }
Douglas Gregor26dce442009-03-10 00:06:19 +0000456}
457
Douglas Gregordf667e72009-03-10 20:44:00 +0000458bool Sema::InstantiatingTemplate::CheckInstantiationDepth(
459 SourceLocation PointOfInstantiation,
460 SourceRange InstantiationRange) {
Douglas Gregorf35f8282009-11-11 21:54:23 +0000461 assert(SemaRef.NonInstantiationEntries <=
462 SemaRef.ActiveTemplateInstantiations.size());
463 if ((SemaRef.ActiveTemplateInstantiations.size() -
464 SemaRef.NonInstantiationEntries)
David Blaikie4e4d0842012-03-11 07:00:24 +0000465 <= SemaRef.getLangOpts().InstantiationDepth)
Douglas Gregordf667e72009-03-10 20:44:00 +0000466 return false;
467
Mike Stump1eb44332009-09-09 15:08:12 +0000468 SemaRef.Diag(PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000469 diag::err_template_recursion_depth_exceeded)
David Blaikie4e4d0842012-03-11 07:00:24 +0000470 << SemaRef.getLangOpts().InstantiationDepth
Douglas Gregordf667e72009-03-10 20:44:00 +0000471 << InstantiationRange;
472 SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth)
David Blaikie4e4d0842012-03-11 07:00:24 +0000473 << SemaRef.getLangOpts().InstantiationDepth;
Douglas Gregordf667e72009-03-10 20:44:00 +0000474 return true;
475}
476
Douglas Gregoree1828a2009-03-10 18:03:33 +0000477/// \brief Prints the current instantiation stack through a series of
478/// notes.
479void Sema::PrintInstantiationStack() {
Douglas Gregor575cf372010-04-20 07:18:24 +0000480 // Determine which template instantiations to skip, if any.
481 unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart;
482 unsigned Limit = Diags.getTemplateBacktraceLimit();
483 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
484 SkipStart = Limit / 2 + Limit % 2;
485 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
486 }
487
Douglas Gregorcca9e962009-07-01 22:01:06 +0000488 // FIXME: In all of these cases, we need to show the template arguments
Douglas Gregor575cf372010-04-20 07:18:24 +0000489 unsigned InstantiationIdx = 0;
Craig Topper09d19ef2013-07-04 03:08:24 +0000490 for (SmallVectorImpl<ActiveTemplateInstantiation>::reverse_iterator
Douglas Gregoree1828a2009-03-10 18:03:33 +0000491 Active = ActiveTemplateInstantiations.rbegin(),
492 ActiveEnd = ActiveTemplateInstantiations.rend();
493 Active != ActiveEnd;
Douglas Gregor575cf372010-04-20 07:18:24 +0000494 ++Active, ++InstantiationIdx) {
495 // Skip this instantiation?
496 if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) {
497 if (InstantiationIdx == SkipStart) {
498 // Note that we're skipping instantiations.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000499 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor575cf372010-04-20 07:18:24 +0000500 diag::note_instantiation_contexts_suppressed)
501 << unsigned(ActiveTemplateInstantiations.size() - Limit);
502 }
503 continue;
504 }
505
Douglas Gregordf667e72009-03-10 20:44:00 +0000506 switch (Active->Kind) {
507 case ActiveTemplateInstantiation::TemplateInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000508 Decl *D = Active->Entity;
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000509 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
510 unsigned DiagID = diag::note_template_member_class_here;
511 if (isa<ClassTemplateSpecializationDecl>(Record))
512 DiagID = diag::note_template_class_instantiation_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000513 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000514 << Context.getTypeDeclType(Record)
515 << Active->InstantiationRange;
Douglas Gregor7caa6822009-07-24 20:34:43 +0000516 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor1637be72009-06-26 00:10:03 +0000517 unsigned DiagID;
518 if (Function->getPrimaryTemplate())
519 DiagID = diag::note_function_template_spec_here;
520 else
521 DiagID = diag::note_template_member_function_here;
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000522 Diags.Report(Active->PointOfInstantiation, DiagID)
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000523 << Function
524 << Active->InstantiationRange;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000525 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000526 Diags.Report(Active->PointOfInstantiation,
Larisse Voufo933c66b2013-08-14 20:15:02 +0000527 VD->isStaticDataMember()?
528 diag::note_template_static_data_member_def_here
529 : diag::note_template_variable_def_here)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000530 << VD
531 << Active->InstantiationRange;
Richard Smithf1c66b42012-03-14 23:13:10 +0000532 } else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
533 Diags.Report(Active->PointOfInstantiation,
534 diag::note_template_enum_def_here)
535 << ED
536 << Active->InstantiationRange;
Richard Smith3e4c6c42011-05-05 21:57:07 +0000537 } else {
538 Diags.Report(Active->PointOfInstantiation,
539 diag::note_template_type_alias_instantiation_here)
540 << cast<TypeAliasTemplateDecl>(D)
Douglas Gregor7caa6822009-07-24 20:34:43 +0000541 << Active->InstantiationRange;
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000542 }
Douglas Gregordf667e72009-03-10 20:44:00 +0000543 break;
544 }
545
546 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000547 TemplateDecl *Template = cast<TemplateDecl>(Active->Entity);
Benjamin Kramer5eada842013-02-22 15:46:01 +0000548 SmallVector<char, 128> TemplateArgsStr;
549 llvm::raw_svector_ostream OS(TemplateArgsStr);
550 Template->printName(OS);
551 TemplateSpecializationType::PrintTemplateArgumentList(OS,
Mike Stump1eb44332009-09-09 15:08:12 +0000552 Active->TemplateArgs,
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000553 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000554 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000555 Diags.Report(Active->PointOfInstantiation,
Douglas Gregordf667e72009-03-10 20:44:00 +0000556 diag::note_default_arg_instantiation_here)
Benjamin Kramer5eada842013-02-22 15:46:01 +0000557 << OS.str()
Douglas Gregordf667e72009-03-10 20:44:00 +0000558 << Active->InstantiationRange;
559 break;
560 }
Douglas Gregor637a4092009-06-10 23:47:09 +0000561
Douglas Gregorcca9e962009-07-01 22:01:06 +0000562 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000563 FunctionTemplateDecl *FnTmpl = cast<FunctionTemplateDecl>(Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000564 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000565 diag::note_explicit_template_arg_substitution_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000566 << FnTmpl
567 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
568 Active->TemplateArgs,
569 Active->NumTemplateArgs)
570 << Active->InstantiationRange;
Douglas Gregor637a4092009-06-10 23:47:09 +0000571 break;
572 }
Mike Stump1eb44332009-09-09 15:08:12 +0000573
Douglas Gregorcca9e962009-07-01 22:01:06 +0000574 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000575 if (ClassTemplatePartialSpecializationDecl *PartialSpec =
576 dyn_cast<ClassTemplatePartialSpecializationDecl>(Active->Entity)) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000577 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000578 diag::note_partial_spec_deduct_instantiation_here)
579 << Context.getTypeDeclType(PartialSpec)
Douglas Gregor5e402912010-03-30 20:35:20 +0000580 << getTemplateArgumentBindingsText(
581 PartialSpec->getTemplateParameters(),
582 Active->TemplateArgs,
583 Active->NumTemplateArgs)
Douglas Gregorcca9e962009-07-01 22:01:06 +0000584 << Active->InstantiationRange;
585 } else {
586 FunctionTemplateDecl *FnTmpl
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000587 = cast<FunctionTemplateDecl>(Active->Entity);
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000588 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorcca9e962009-07-01 22:01:06 +0000589 diag::note_function_template_deduction_instantiation_here)
Douglas Gregor5e402912010-03-30 20:35:20 +0000590 << FnTmpl
591 << getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
592 Active->TemplateArgs,
593 Active->NumTemplateArgs)
594 << Active->InstantiationRange;
Douglas Gregorcca9e962009-07-01 22:01:06 +0000595 }
596 break;
Douglas Gregor637a4092009-06-10 23:47:09 +0000597
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000598 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000599 ParmVarDecl *Param = cast<ParmVarDecl>(Active->Entity);
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000600 FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000601
Benjamin Kramer5eada842013-02-22 15:46:01 +0000602 SmallVector<char, 128> TemplateArgsStr;
603 llvm::raw_svector_ostream OS(TemplateArgsStr);
604 FD->printName(OS);
605 TemplateSpecializationType::PrintTemplateArgumentList(OS,
Mike Stump1eb44332009-09-09 15:08:12 +0000606 Active->TemplateArgs,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000607 Active->NumTemplateArgs,
Douglas Gregor8987b232011-09-27 23:30:47 +0000608 getPrintingPolicy());
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000609 Diags.Report(Active->PointOfInstantiation,
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000610 diag::note_default_function_arg_instantiation_here)
Benjamin Kramer5eada842013-02-22 15:46:01 +0000611 << OS.str()
Anders Carlsson25cae7f2009-09-05 05:14:19 +0000612 << Active->InstantiationRange;
613 break;
614 }
Mike Stump1eb44332009-09-09 15:08:12 +0000615
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000616 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: {
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000617 NamedDecl *Parm = cast<NamedDecl>(Active->Entity);
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000618 std::string Name;
619 if (!Parm->getName().empty())
620 Name = std::string(" '") + Parm->getName().str() + "'";
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000621
622 TemplateParameterList *TemplateParams = 0;
623 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
624 TemplateParams = Template->getTemplateParameters();
625 else
626 TemplateParams =
627 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
628 ->getTemplateParameters();
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000629 Diags.Report(Active->PointOfInstantiation,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000630 diag::note_prior_template_arg_substitution)
631 << isa<TemplateTemplateParmDecl>(Parm)
632 << Name
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000633 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000634 Active->TemplateArgs,
635 Active->NumTemplateArgs)
636 << Active->InstantiationRange;
637 break;
638 }
Douglas Gregorf35f8282009-11-11 21:54:23 +0000639
640 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: {
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000641 TemplateParameterList *TemplateParams = 0;
642 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(Active->Template))
643 TemplateParams = Template->getTemplateParameters();
644 else
645 TemplateParams =
646 cast<ClassTemplatePartialSpecializationDecl>(Active->Template)
647 ->getTemplateParameters();
648
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000649 Diags.Report(Active->PointOfInstantiation,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000650 diag::note_template_default_arg_checking)
Douglas Gregor54c53cc2011-01-04 23:35:54 +0000651 << getTemplateArgumentBindingsText(TemplateParams,
Douglas Gregorf35f8282009-11-11 21:54:23 +0000652 Active->TemplateArgs,
653 Active->NumTemplateArgs)
654 << Active->InstantiationRange;
655 break;
656 }
Richard Smithe6975e92012-04-17 00:58:00 +0000657
658 case ActiveTemplateInstantiation::ExceptionSpecInstantiation:
659 Diags.Report(Active->PointOfInstantiation,
660 diag::note_template_exception_spec_instantiation_here)
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000661 << cast<FunctionDecl>(Active->Entity)
Richard Smithe6975e92012-04-17 00:58:00 +0000662 << Active->InstantiationRange;
663 break;
Douglas Gregordf667e72009-03-10 20:44:00 +0000664 }
Douglas Gregoree1828a2009-03-10 18:03:33 +0000665 }
666}
667
David Blaikiedc84cd52013-02-20 22:23:23 +0000668Optional<TemplateDeductionInfo *> Sema::isSFINAEContext() const {
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000669 if (InNonInstantiationSFINAEContext)
David Blaikiedc84cd52013-02-20 22:23:23 +0000670 return Optional<TemplateDeductionInfo *>(0);
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000671
Craig Topper09d19ef2013-07-04 03:08:24 +0000672 for (SmallVectorImpl<ActiveTemplateInstantiation>::const_reverse_iterator
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000673 Active = ActiveTemplateInstantiations.rbegin(),
674 ActiveEnd = ActiveTemplateInstantiations.rend();
675 Active != ActiveEnd;
Douglas Gregorf35f8282009-11-11 21:54:23 +0000676 ++Active)
677 {
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000678 switch(Active->Kind) {
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000679 case ActiveTemplateInstantiation::TemplateInstantiation:
Richard Smitha43ea642012-04-26 07:24:08 +0000680 // An instantiation of an alias template may or may not be a SFINAE
681 // context, depending on what else is on the stack.
Nick Lewycky4a9e60f2012-11-16 08:40:59 +0000682 if (isa<TypeAliasTemplateDecl>(Active->Entity))
Richard Smitha43ea642012-04-26 07:24:08 +0000683 break;
684 // Fall through.
685 case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation:
Richard Smithe6975e92012-04-17 00:58:00 +0000686 case ActiveTemplateInstantiation::ExceptionSpecInstantiation:
Douglas Gregorcca9e962009-07-01 22:01:06 +0000687 // This is a template instantiation, so there is no SFINAE.
David Blaikie66874fb2013-02-21 01:47:18 +0000688 return None;
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000690 case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000691 case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution:
Douglas Gregorf35f8282009-11-11 21:54:23 +0000692 case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking:
Douglas Gregor9148c3f2009-11-11 19:13:48 +0000693 // A default template argument instantiation and substitution into
694 // template parameters with arguments for prior parameters may or may
695 // not be a SFINAE context; look further up the stack.
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000696 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Douglas Gregorcca9e962009-07-01 22:01:06 +0000698 case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution:
699 case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
700 // We're either substitution explicitly-specified template arguments
701 // or deduced template arguments, so SFINAE applies.
Douglas Gregor9b623632010-10-12 23:32:35 +0000702 assert(Active->DeductionInfo && "Missing deduction info pointer");
703 return Active->DeductionInfo;
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000704 }
705 }
706
David Blaikie66874fb2013-02-21 01:47:18 +0000707 return None;
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000708}
709
Douglas Gregord3731192011-01-10 07:32:04 +0000710/// \brief Retrieve the depth and index of a parameter pack.
711static std::pair<unsigned, unsigned>
712getDepthAndIndex(NamedDecl *ND) {
713 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
714 return std::make_pair(TTP->getDepth(), TTP->getIndex());
715
716 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
717 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
718
719 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
720 return std::make_pair(TTP->getDepth(), TTP->getIndex());
721}
722
Douglas Gregor99ebf652009-02-27 19:31:52 +0000723//===----------------------------------------------------------------------===/
724// Template Instantiation for Types
725//===----------------------------------------------------------------------===/
Douglas Gregorcd281c32009-02-28 00:25:32 +0000726namespace {
Douglas Gregor895162d2010-04-30 18:55:50 +0000727 class TemplateInstantiator : public TreeTransform<TemplateInstantiator> {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000728 const MultiLevelTemplateArgumentList &TemplateArgs;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000729 SourceLocation Loc;
730 DeclarationName Entity;
Douglas Gregor99ebf652009-02-27 19:31:52 +0000731
Douglas Gregorcd281c32009-02-28 00:25:32 +0000732 public:
Douglas Gregor43959a92009-08-20 07:17:43 +0000733 typedef TreeTransform<TemplateInstantiator> inherited;
Mike Stump1eb44332009-09-09 15:08:12 +0000734
735 TemplateInstantiator(Sema &SemaRef,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000736 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregor577f75a2009-08-04 16:50:30 +0000737 SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000738 DeclarationName Entity)
739 : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc),
Douglas Gregor43959a92009-08-20 07:17:43 +0000740 Entity(Entity) { }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000741
Mike Stump1eb44332009-09-09 15:08:12 +0000742 /// \brief Determine whether the given type \p T has already been
Douglas Gregor577f75a2009-08-04 16:50:30 +0000743 /// transformed.
744 ///
745 /// For the purposes of template instantiation, a type has already been
746 /// transformed if it is NULL or if it is not dependent.
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000747 bool AlreadyTransformed(QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Douglas Gregor577f75a2009-08-04 16:50:30 +0000749 /// \brief Returns the location of the entity being instantiated, if known.
750 SourceLocation getBaseLocation() { return Loc; }
Mike Stump1eb44332009-09-09 15:08:12 +0000751
Douglas Gregor577f75a2009-08-04 16:50:30 +0000752 /// \brief Returns the name of the entity being instantiated, if any.
753 DeclarationName getBaseEntity() { return Entity; }
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Douglas Gregor972e6ce2009-10-27 06:26:26 +0000755 /// \brief Sets the "base" location and entity when that
756 /// information is known based on another transformation.
757 void setBase(SourceLocation Loc, DeclarationName Entity) {
758 this->Loc = Loc;
759 this->Entity = Entity;
760 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000761
762 bool TryExpandParameterPacks(SourceLocation EllipsisLoc,
763 SourceRange PatternRange,
Robert Wilhelm834c0582013-08-09 18:02:13 +0000764 ArrayRef<UnexpandedParameterPack> Unexpanded,
765 bool &ShouldExpand, bool &RetainExpansion,
David Blaikiedc84cd52013-02-20 22:23:23 +0000766 Optional<unsigned> &NumExpansions) {
Douglas Gregorb99268b2010-12-21 00:52:54 +0000767 return getSema().CheckParameterPacksForExpansion(EllipsisLoc,
768 PatternRange, Unexpanded,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000769 TemplateArgs,
770 ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +0000771 RetainExpansion,
Douglas Gregorb99268b2010-12-21 00:52:54 +0000772 NumExpansions);
773 }
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000774
Douglas Gregor12c9c002011-01-07 16:43:16 +0000775 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) {
776 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack);
777 }
778
Douglas Gregord3731192011-01-10 07:32:04 +0000779 TemplateArgument ForgetPartiallySubstitutedPack() {
780 TemplateArgument Result;
781 if (NamedDecl *PartialPack
782 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
783 MultiLevelTemplateArgumentList &TemplateArgs
784 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
785 unsigned Depth, Index;
786 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
787 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
788 Result = TemplateArgs(Depth, Index);
789 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
790 }
791 }
792
793 return Result;
794 }
795
796 void RememberPartiallySubstitutedPack(TemplateArgument Arg) {
797 if (Arg.isNull())
798 return;
799
800 if (NamedDecl *PartialPack
801 = SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()){
802 MultiLevelTemplateArgumentList &TemplateArgs
803 = const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
804 unsigned Depth, Index;
805 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
806 TemplateArgs.setArgument(Depth, Index, Arg);
807 }
808 }
809
Douglas Gregor577f75a2009-08-04 16:50:30 +0000810 /// \brief Transform the given declaration by instantiating a reference to
811 /// this declaration.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000812 Decl *TransformDecl(SourceLocation Loc, Decl *D);
Douglas Gregorb98b1992009-08-11 05:31:07 +0000813
Douglas Gregordfca6f52012-02-13 22:00:16 +0000814 void transformAttrs(Decl *Old, Decl *New) {
815 SemaRef.InstantiateAttrs(TemplateArgs, Old, New);
816 }
817
818 void transformedLocalDecl(Decl *Old, Decl *New) {
819 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Old, New);
820 }
821
Mike Stump1eb44332009-09-09 15:08:12 +0000822 /// \brief Transform the definition of the given declaration by
Douglas Gregor43959a92009-08-20 07:17:43 +0000823 /// instantiating it.
Douglas Gregoraac571c2010-03-01 17:25:41 +0000824 Decl *TransformDefinition(SourceLocation Loc, Decl *D);
Mike Stump1eb44332009-09-09 15:08:12 +0000825
Dmitri Gribenkoe23fb902012-09-12 17:01:48 +0000826 /// \brief Transform the first qualifier within a scope by instantiating the
Douglas Gregor6cd21982009-10-20 05:58:46 +0000827 /// declaration.
828 NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc);
829
Douglas Gregor43959a92009-08-20 07:17:43 +0000830 /// \brief Rebuild the exception declaration and register the declaration
831 /// as an instantiated local.
Douglas Gregor83cb9422010-09-09 17:09:21 +0000832 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +0000833 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000834 SourceLocation StartLoc,
835 SourceLocation NameLoc,
836 IdentifierInfo *Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000837
Douglas Gregorbe270a02010-04-26 17:57:08 +0000838 /// \brief Rebuild the Objective-C exception declaration and register the
839 /// declaration as an instantiated local.
840 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
841 TypeSourceInfo *TSInfo, QualType T);
842
John McCallc4e70192009-09-11 04:59:25 +0000843 /// \brief Check for tag mismatches when instantiating an
844 /// elaborated type.
John McCall21e413f2010-11-04 19:04:38 +0000845 QualType RebuildElaboratedType(SourceLocation KeywordLoc,
846 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +0000847 NestedNameSpecifierLoc QualifierLoc,
848 QualType T);
John McCallc4e70192009-09-11 04:59:25 +0000849
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +0000850 TemplateName TransformTemplateName(CXXScopeSpec &SS,
851 TemplateName Name,
852 SourceLocation NameLoc,
853 QualType ObjectType = QualType(),
854 NamedDecl *FirstQualifierInScope = 0);
855
John McCall60d7b3a2010-08-24 06:29:42 +0000856 ExprResult TransformPredefinedExpr(PredefinedExpr *E);
857 ExprResult TransformDeclRefExpr(DeclRefExpr *E);
858 ExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E);
Richard Smith9a4db032012-09-12 00:56:43 +0000859
John McCall60d7b3a2010-08-24 06:29:42 +0000860 ExprResult TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregor56bc9832010-12-24 00:15:10 +0000861 NonTypeTemplateParmDecl *D);
Douglas Gregorc7793c72011-01-15 01:15:58 +0000862 ExprResult TransformSubstNonTypeTemplateParmPackExpr(
863 SubstNonTypeTemplateParmPackExpr *E);
Richard Smith9a4db032012-09-12 00:56:43 +0000864
865 /// \brief Rebuild a DeclRefExpr for a ParmVarDecl reference.
866 ExprResult RebuildParmVarDeclRefExpr(ParmVarDecl *PD, SourceLocation Loc);
867
868 /// \brief Transform a reference to a function parameter pack.
869 ExprResult TransformFunctionParmPackRefExpr(DeclRefExpr *E,
870 ParmVarDecl *PD);
871
872 /// \brief Transform a FunctionParmPackExpr which was built when we couldn't
873 /// expand a function parameter pack reference which refers to an expanded
874 /// pack.
875 ExprResult TransformFunctionParmPackExpr(FunctionParmPackExpr *E);
876
Douglas Gregor895162d2010-04-30 18:55:50 +0000877 QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000878 FunctionProtoTypeLoc TL);
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000879 QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
880 FunctionProtoTypeLoc TL,
881 CXXRecordDecl *ThisContext,
882 unsigned ThisTypeQuals);
883
Douglas Gregor6a24bfd2011-01-14 22:40:04 +0000884 ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +0000885 int indexAdjustment,
David Blaikiedc84cd52013-02-20 22:23:23 +0000886 Optional<unsigned> NumExpansions,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +0000887 bool ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +0000888
Mike Stump1eb44332009-09-09 15:08:12 +0000889 /// \brief Transforms a template type parameter type by performing
Douglas Gregor577f75a2009-08-04 16:50:30 +0000890 /// substitution of the corresponding template type argument.
John McCalla2becad2009-10-21 00:40:46 +0000891 QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +0000892 TemplateTypeParmTypeLoc TL);
Nick Lewycky03d98c52010-07-06 19:51:49 +0000893
Douglas Gregorc3069d62011-01-14 02:55:32 +0000894 /// \brief Transforms an already-substituted template type parameter pack
895 /// into either itself (if we aren't substituting into its pack expansion)
896 /// or the appropriate substituted argument.
897 QualType TransformSubstTemplateTypeParmPackType(TypeLocBuilder &TLB,
898 SubstTemplateTypeParmPackTypeLoc TL);
899
John McCall60d7b3a2010-08-24 06:29:42 +0000900 ExprResult TransformCallExpr(CallExpr *CE) {
Nick Lewycky03d98c52010-07-06 19:51:49 +0000901 getSema().CallsUndergoingInstantiation.push_back(CE);
John McCall60d7b3a2010-08-24 06:29:42 +0000902 ExprResult Result =
Nick Lewycky03d98c52010-07-06 19:51:49 +0000903 TreeTransform<TemplateInstantiator>::TransformCallExpr(CE);
904 getSema().CallsUndergoingInstantiation.pop_back();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000905 return Result;
Nick Lewycky03d98c52010-07-06 19:51:49 +0000906 }
John McCall91a57552011-07-15 05:09:51 +0000907
Richard Smith612409e2012-07-25 03:56:55 +0000908 ExprResult TransformLambdaExpr(LambdaExpr *E) {
909 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
910 return TreeTransform<TemplateInstantiator>::TransformLambdaExpr(E);
911 }
912
913 ExprResult TransformLambdaScope(LambdaExpr *E,
914 CXXMethodDecl *CallOperator) {
915 CallOperator->setInstantiationOfMemberFunction(E->getCallOperator(),
916 TSK_ImplicitInstantiation);
917 return TreeTransform<TemplateInstantiator>::
918 TransformLambdaScope(E, CallOperator);
919 }
920
John McCall91a57552011-07-15 05:09:51 +0000921 private:
922 ExprResult transformNonTypeTemplateParmRef(NonTypeTemplateParmDecl *parm,
923 SourceLocation loc,
Richard Smith60983812012-07-09 03:07:20 +0000924 TemplateArgument arg);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000925 };
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000926}
927
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000928bool TemplateInstantiator::AlreadyTransformed(QualType T) {
929 if (T.isNull())
930 return true;
931
Douglas Gregor561f8122011-07-01 01:22:09 +0000932 if (T->isInstantiationDependentType() || T->isVariablyModifiedType())
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000933 return false;
934
935 getSema().MarkDeclarationsReferencedInType(Loc, T);
936 return true;
937}
938
Eli Friedman10ec0e42013-07-19 19:40:38 +0000939static TemplateArgument
940getPackSubstitutedTemplateArgument(Sema &S, TemplateArgument Arg) {
941 assert(S.ArgumentPackSubstitutionIndex >= 0);
942 assert(S.ArgumentPackSubstitutionIndex < (int)Arg.pack_size());
943 Arg = Arg.pack_begin()[S.ArgumentPackSubstitutionIndex];
944 if (Arg.isPackExpansion())
945 Arg = Arg.getPackExpansionPattern();
946 return Arg;
947}
948
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000949Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000950 if (!D)
951 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Douglas Gregorc68afe22009-09-03 21:38:09 +0000953 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) {
Douglas Gregord6350ae2009-08-28 20:31:08 +0000954 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor6d3e6272010-02-05 19:54:12 +0000955 // If the corresponding template argument is NULL or non-existent, it's
956 // because we are performing instantiation from explicitly-specified
957 // template arguments in a function template, but there were some
958 // arguments left unspecified.
959 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
960 TTP->getPosition()))
961 return D;
962
Douglas Gregor61c4d282011-01-05 15:48:55 +0000963 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
964
965 if (TTP->isParameterPack()) {
966 assert(Arg.getKind() == TemplateArgument::Pack &&
967 "Missing argument pack");
Eli Friedman10ec0e42013-07-19 19:40:38 +0000968 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
Douglas Gregor61c4d282011-01-05 15:48:55 +0000969 }
970
971 TemplateName Template = Arg.getAsTemplate();
Douglas Gregor788cd062009-11-11 01:00:40 +0000972 assert(!Template.isNull() && Template.getAsTemplateDecl() &&
Douglas Gregord6350ae2009-08-28 20:31:08 +0000973 "Wrong kind of template template argument");
Douglas Gregor788cd062009-11-11 01:00:40 +0000974 return Template.getAsTemplateDecl();
Douglas Gregord6350ae2009-08-28 20:31:08 +0000975 }
Mike Stump1eb44332009-09-09 15:08:12 +0000976
Douglas Gregor788cd062009-11-11 01:00:40 +0000977 // Fall through to find the instantiated declaration for this template
978 // template parameter.
Douglas Gregord1067e52009-08-06 06:41:21 +0000979 }
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000981 return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs);
Douglas Gregor577f75a2009-08-04 16:50:30 +0000982}
983
Douglas Gregoraac571c2010-03-01 17:25:41 +0000984Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000985 Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs);
Douglas Gregor43959a92009-08-20 07:17:43 +0000986 if (!Inst)
987 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Douglas Gregor43959a92009-08-20 07:17:43 +0000989 getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst);
990 return Inst;
991}
992
Douglas Gregor6cd21982009-10-20 05:58:46 +0000993NamedDecl *
994TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D,
995 SourceLocation Loc) {
996 // If the first part of the nested-name-specifier was a template type
997 // parameter, instantiate that type parameter down to a tag type.
998 if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) {
999 const TemplateTypeParmType *TTP
1000 = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD));
Douglas Gregor984a58b2010-12-20 22:48:17 +00001001
Douglas Gregor6cd21982009-10-20 05:58:46 +00001002 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor984a58b2010-12-20 22:48:17 +00001003 // FIXME: This needs testing w/ member access expressions.
1004 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getIndex());
1005
1006 if (TTP->isParameterPack()) {
1007 assert(Arg.getKind() == TemplateArgument::Pack &&
1008 "Missing argument pack");
1009
Douglas Gregor2be29f42011-01-14 23:41:42 +00001010 if (getSema().ArgumentPackSubstitutionIndex == -1)
Douglas Gregor984a58b2010-12-20 22:48:17 +00001011 return 0;
Douglas Gregor984a58b2010-12-20 22:48:17 +00001012
Eli Friedman10ec0e42013-07-19 19:40:38 +00001013 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
Douglas Gregor984a58b2010-12-20 22:48:17 +00001014 }
1015
1016 QualType T = Arg.getAsType();
Douglas Gregor6cd21982009-10-20 05:58:46 +00001017 if (T.isNull())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001018 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +00001019
1020 if (const TagType *Tag = T->getAs<TagType>())
1021 return Tag->getDecl();
1022
1023 // The resulting type is not a tag; complain.
1024 getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T;
1025 return 0;
1026 }
1027 }
1028
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001029 return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
Douglas Gregor6cd21982009-10-20 05:58:46 +00001030}
1031
Douglas Gregor43959a92009-08-20 07:17:43 +00001032VarDecl *
1033TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl,
John McCalla93c9342009-12-07 02:54:59 +00001034 TypeSourceInfo *Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001035 SourceLocation StartLoc,
1036 SourceLocation NameLoc,
1037 IdentifierInfo *Name) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00001038 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001039 StartLoc, NameLoc, Name);
Douglas Gregorbe270a02010-04-26 17:57:08 +00001040 if (Var)
1041 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
1042 return Var;
1043}
1044
1045VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
1046 TypeSourceInfo *TSInfo,
1047 QualType T) {
1048 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
1049 if (Var)
Douglas Gregor43959a92009-08-20 07:17:43 +00001050 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
1051 return Var;
1052}
1053
John McCallc4e70192009-09-11 04:59:25 +00001054QualType
John McCall21e413f2010-11-04 19:04:38 +00001055TemplateInstantiator::RebuildElaboratedType(SourceLocation KeywordLoc,
1056 ElaboratedTypeKeyword Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +00001057 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001058 QualType T) {
John McCallc4e70192009-09-11 04:59:25 +00001059 if (const TagType *TT = T->getAs<TagType>()) {
1060 TagDecl* TD = TT->getDecl();
1061
John McCall21e413f2010-11-04 19:04:38 +00001062 SourceLocation TagLocation = KeywordLoc;
John McCallc4e70192009-09-11 04:59:25 +00001063
John McCallc4e70192009-09-11 04:59:25 +00001064 IdentifierInfo *Id = TD->getIdentifier();
1065
1066 // TODO: should we even warn on struct/class mismatches for this? Seems
1067 // like it's likely to produce a lot of spurious errors.
Richard Smithcbf97c52012-08-17 00:12:27 +00001068 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001069 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
Richard Trieubbf34c02011-06-10 03:11:26 +00001070 if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, /*isDefinition*/false,
1071 TagLocation, *Id)) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001072 SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag)
1073 << Id
1074 << FixItHint::CreateReplacement(SourceRange(TagLocation),
1075 TD->getKindName());
1076 SemaRef.Diag(TD->getLocation(), diag::note_previous_use);
1077 }
John McCallc4e70192009-09-11 04:59:25 +00001078 }
1079 }
1080
John McCall21e413f2010-11-04 19:04:38 +00001081 return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(KeywordLoc,
1082 Keyword,
Douglas Gregor9e876872011-03-01 18:12:44 +00001083 QualifierLoc,
1084 T);
John McCallc4e70192009-09-11 04:59:25 +00001085}
1086
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001087TemplateName TemplateInstantiator::TransformTemplateName(CXXScopeSpec &SS,
1088 TemplateName Name,
1089 SourceLocation NameLoc,
1090 QualType ObjectType,
1091 NamedDecl *FirstQualifierInScope) {
1092 if (TemplateTemplateParmDecl *TTP
1093 = dyn_cast_or_null<TemplateTemplateParmDecl>(Name.getAsTemplateDecl())) {
1094 if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
1095 // If the corresponding template argument is NULL or non-existent, it's
1096 // because we are performing instantiation from explicitly-specified
1097 // template arguments in a function template, but there were some
1098 // arguments left unspecified.
1099 if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
1100 TTP->getPosition()))
1101 return Name;
1102
1103 TemplateArgument Arg = TemplateArgs(TTP->getDepth(), TTP->getPosition());
1104
1105 if (TTP->isParameterPack()) {
1106 assert(Arg.getKind() == TemplateArgument::Pack &&
1107 "Missing argument pack");
1108
1109 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1110 // We have the template argument pack to substitute, but we're not
1111 // actually expanding the enclosing pack expansion yet. So, just
1112 // keep the entire argument pack.
1113 return getSema().Context.getSubstTemplateTemplateParmPack(TTP, Arg);
1114 }
Eli Friedman10ec0e42013-07-19 19:40:38 +00001115
1116 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001117 }
1118
1119 TemplateName Template = Arg.getAsTemplate();
Richard Smith3e4c6c42011-05-05 21:57:07 +00001120 assert(!Template.isNull() && "Null template template argument");
John McCall14606042011-06-30 08:33:18 +00001121
Douglas Gregor58750382011-03-05 20:06:51 +00001122 // We don't ever want to substitute for a qualified template name, since
1123 // the qualifier is handled separately. So, look through the qualified
1124 // template name to its underlying declaration.
1125 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
1126 Template = TemplateName(QTN->getTemplateDecl());
John McCall14606042011-06-30 08:33:18 +00001127
1128 Template = getSema().Context.getSubstTemplateTemplateParm(TTP, Template);
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001129 return Template;
1130 }
1131 }
1132
1133 if (SubstTemplateTemplateParmPackStorage *SubstPack
1134 = Name.getAsSubstTemplateTemplateParmPack()) {
1135 if (getSema().ArgumentPackSubstitutionIndex == -1)
1136 return Name;
1137
Eli Friedman10ec0e42013-07-19 19:40:38 +00001138 TemplateArgument Arg = SubstPack->getArgumentPack();
1139 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
1140 return Arg.getAsTemplate();
Douglas Gregorfd4ffeb2011-03-02 18:07:45 +00001141 }
1142
1143 return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType,
1144 FirstQualifierInScope);
1145}
1146
John McCall60d7b3a2010-08-24 06:29:42 +00001147ExprResult
John McCall454feb92009-12-08 09:21:05 +00001148TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) {
Anders Carlsson773f3972009-09-11 01:22:35 +00001149 if (!E->isTypeDependent())
John McCall3fa5cae2010-10-26 07:05:15 +00001150 return SemaRef.Owned(E);
Anders Carlsson773f3972009-09-11 01:22:35 +00001151
1152 FunctionDecl *currentDecl = getSema().getCurFunctionDecl();
1153 assert(currentDecl && "Must have current function declaration when "
1154 "instantiating.");
1155
1156 PredefinedExpr::IdentType IT = E->getIdentType();
1157
Anders Carlsson848fa642010-02-11 18:20:28 +00001158 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
Anders Carlsson773f3972009-09-11 01:22:35 +00001159
1160 llvm::APInt LengthI(32, Length + 1);
Nico Weberb4e80082012-06-25 22:34:48 +00001161 QualType ResTy;
1162 if (IT == PredefinedExpr::LFunction)
Hans Wennborg15f92ba2013-05-10 10:08:40 +00001163 ResTy = getSema().Context.WideCharTy.withConst();
Nico Weberb4e80082012-06-25 22:34:48 +00001164 else
1165 ResTy = getSema().Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00001166 ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI,
1167 ArrayType::Normal, 0);
1168 PredefinedExpr *PE =
1169 new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT);
1170 return getSema().Owned(PE);
1171}
1172
John McCall60d7b3a2010-08-24 06:29:42 +00001173ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001174TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E,
Douglas Gregordcee9802010-02-08 23:41:45 +00001175 NonTypeTemplateParmDecl *NTTP) {
John McCallb8fc0532010-02-06 08:42:39 +00001176 // If the corresponding template argument is NULL or non-existent, it's
1177 // because we are performing instantiation from explicitly-specified
1178 // template arguments in a function template, but there were some
1179 // arguments left unspecified.
1180 if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(),
1181 NTTP->getPosition()))
John McCall3fa5cae2010-10-26 07:05:15 +00001182 return SemaRef.Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001183
Douglas Gregor56bc9832010-12-24 00:15:10 +00001184 TemplateArgument Arg = TemplateArgs(NTTP->getDepth(), NTTP->getPosition());
1185 if (NTTP->isParameterPack()) {
1186 assert(Arg.getKind() == TemplateArgument::Pack &&
1187 "Missing argument pack");
1188
1189 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc7793c72011-01-15 01:15:58 +00001190 // We have an argument pack, but we can't select a particular argument
1191 // out of it yet. Therefore, we'll build an expression to hold on to that
1192 // argument pack.
1193 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs,
1194 E->getLocation(),
1195 NTTP->getDeclName());
1196 if (TargetType.isNull())
1197 return ExprError();
1198
1199 return new (SemaRef.Context) SubstNonTypeTemplateParmPackExpr(TargetType,
1200 NTTP,
1201 E->getLocation(),
1202 Arg);
Douglas Gregor56bc9832010-12-24 00:15:10 +00001203 }
1204
Eli Friedman10ec0e42013-07-19 19:40:38 +00001205 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
Douglas Gregor56bc9832010-12-24 00:15:10 +00001206 }
Mike Stump1eb44332009-09-09 15:08:12 +00001207
John McCall91a57552011-07-15 05:09:51 +00001208 return transformNonTypeTemplateParmRef(NTTP, E->getLocation(), Arg);
1209}
1210
1211ExprResult TemplateInstantiator::transformNonTypeTemplateParmRef(
1212 NonTypeTemplateParmDecl *parm,
1213 SourceLocation loc,
Richard Smith60983812012-07-09 03:07:20 +00001214 TemplateArgument arg) {
John McCall91a57552011-07-15 05:09:51 +00001215 ExprResult result;
1216 QualType type;
1217
John McCallb8fc0532010-02-06 08:42:39 +00001218 // The template argument itself might be an expression, in which
1219 // case we just return that expression.
John McCall91a57552011-07-15 05:09:51 +00001220 if (arg.getKind() == TemplateArgument::Expression) {
1221 Expr *argExpr = arg.getAsExpr();
1222 result = SemaRef.Owned(argExpr);
1223 type = argExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001224
Eli Friedmand7a6b162012-09-26 02:36:12 +00001225 } else if (arg.getKind() == TemplateArgument::Declaration ||
1226 arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregord2008e22012-04-06 22:40:38 +00001227 ValueDecl *VD;
Eli Friedmand7a6b162012-09-26 02:36:12 +00001228 if (arg.getKind() == TemplateArgument::Declaration) {
1229 VD = cast<ValueDecl>(arg.getAsDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001230
Douglas Gregord2008e22012-04-06 22:40:38 +00001231 // Find the instantiation of the template argument. This is
1232 // required for nested templates.
1233 VD = cast_or_null<ValueDecl>(
1234 getSema().FindInstantiatedDecl(loc, VD, TemplateArgs));
1235 if (!VD)
1236 return ExprError();
1237 } else {
1238 // Propagate NULL template argument.
1239 VD = 0;
1240 }
1241
John McCall645cf442010-02-06 10:23:53 +00001242 // Derive the type we want the substituted decl to have. This had
1243 // better be non-dependent, or these checks will have serious problems.
John McCall91a57552011-07-15 05:09:51 +00001244 if (parm->isExpandedParameterPack()) {
1245 type = parm->getExpansionType(SemaRef.ArgumentPackSubstitutionIndex);
1246 } else if (parm->isParameterPack() &&
1247 isa<PackExpansionType>(parm->getType())) {
1248 type = SemaRef.SubstType(
1249 cast<PackExpansionType>(parm->getType())->getPattern(),
1250 TemplateArgs, loc, parm->getDeclName());
1251 } else {
1252 type = SemaRef.SubstType(parm->getType(), TemplateArgs,
1253 loc, parm->getDeclName());
1254 }
1255 assert(!type.isNull() && "type substitution failed for param type");
1256 assert(!type->isDependentType() && "param type still dependent");
1257 result = SemaRef.BuildExpressionFromDeclTemplateArgument(arg, type, loc);
John McCallb8fc0532010-02-06 08:42:39 +00001258
John McCall91a57552011-07-15 05:09:51 +00001259 if (!result.isInvalid()) type = result.get()->getType();
1260 } else {
1261 result = SemaRef.BuildExpressionFromIntegralTemplateArgument(arg, loc);
1262
1263 // Note that this type can be different from the type of 'result',
1264 // e.g. if it's an enum type.
1265 type = arg.getIntegralType();
1266 }
1267 if (result.isInvalid()) return ExprError();
1268
1269 Expr *resultExpr = result.take();
1270 return SemaRef.Owned(new (SemaRef.Context)
1271 SubstNonTypeTemplateParmExpr(type,
1272 resultExpr->getValueKind(),
1273 loc, parm, resultExpr));
John McCallb8fc0532010-02-06 08:42:39 +00001274}
1275
Douglas Gregorc7793c72011-01-15 01:15:58 +00001276ExprResult
1277TemplateInstantiator::TransformSubstNonTypeTemplateParmPackExpr(
1278 SubstNonTypeTemplateParmPackExpr *E) {
1279 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1280 // We aren't expanding the parameter pack, so just return ourselves.
1281 return getSema().Owned(E);
1282 }
Eli Friedman10ec0e42013-07-19 19:40:38 +00001283
1284 TemplateArgument Arg = E->getArgumentPack();
1285 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
John McCall91a57552011-07-15 05:09:51 +00001286 return transformNonTypeTemplateParmRef(E->getParameterPack(),
1287 E->getParameterPackLocation(),
1288 Arg);
Douglas Gregorc7793c72011-01-15 01:15:58 +00001289}
John McCallb8fc0532010-02-06 08:42:39 +00001290
John McCall60d7b3a2010-08-24 06:29:42 +00001291ExprResult
Richard Smith9a4db032012-09-12 00:56:43 +00001292TemplateInstantiator::RebuildParmVarDeclRefExpr(ParmVarDecl *PD,
1293 SourceLocation Loc) {
1294 DeclarationNameInfo NameInfo(PD->getDeclName(), Loc);
1295 return getSema().BuildDeclarationNameExpr(CXXScopeSpec(), NameInfo, PD);
1296}
1297
1298ExprResult
1299TemplateInstantiator::TransformFunctionParmPackExpr(FunctionParmPackExpr *E) {
1300 if (getSema().ArgumentPackSubstitutionIndex != -1) {
1301 // We can expand this parameter pack now.
1302 ParmVarDecl *D = E->getExpansion(getSema().ArgumentPackSubstitutionIndex);
1303 ValueDecl *VD = cast_or_null<ValueDecl>(TransformDecl(E->getExprLoc(), D));
1304 if (!VD)
1305 return ExprError();
1306 return RebuildParmVarDeclRefExpr(cast<ParmVarDecl>(VD), E->getExprLoc());
1307 }
1308
1309 QualType T = TransformType(E->getType());
1310 if (T.isNull())
1311 return ExprError();
1312
1313 // Transform each of the parameter expansions into the corresponding
1314 // parameters in the instantiation of the function decl.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001315 SmallVector<Decl *, 8> Parms;
Richard Smith9a4db032012-09-12 00:56:43 +00001316 Parms.reserve(E->getNumExpansions());
1317 for (FunctionParmPackExpr::iterator I = E->begin(), End = E->end();
1318 I != End; ++I) {
1319 ParmVarDecl *D =
1320 cast_or_null<ParmVarDecl>(TransformDecl(E->getExprLoc(), *I));
1321 if (!D)
1322 return ExprError();
1323 Parms.push_back(D);
1324 }
1325
1326 return FunctionParmPackExpr::Create(getSema().Context, T,
1327 E->getParameterPack(),
1328 E->getParameterPackLocation(), Parms);
1329}
1330
1331ExprResult
1332TemplateInstantiator::TransformFunctionParmPackRefExpr(DeclRefExpr *E,
1333 ParmVarDecl *PD) {
1334 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
1335 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
1336 = getSema().CurrentInstantiationScope->findInstantiationOf(PD);
1337 assert(Found && "no instantiation for parameter pack");
1338
1339 Decl *TransformedDecl;
1340 if (DeclArgumentPack *Pack = Found->dyn_cast<DeclArgumentPack *>()) {
1341 // If this is a reference to a function parameter pack which we can substitute
1342 // but can't yet expand, build a FunctionParmPackExpr for it.
1343 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1344 QualType T = TransformType(E->getType());
1345 if (T.isNull())
1346 return ExprError();
1347 return FunctionParmPackExpr::Create(getSema().Context, T, PD,
1348 E->getExprLoc(), *Pack);
1349 }
1350
1351 TransformedDecl = (*Pack)[getSema().ArgumentPackSubstitutionIndex];
1352 } else {
1353 TransformedDecl = Found->get<Decl*>();
1354 }
1355
1356 // We have either an unexpanded pack or a specific expansion.
1357 return RebuildParmVarDeclRefExpr(cast<ParmVarDecl>(TransformedDecl),
1358 E->getExprLoc());
1359}
1360
1361ExprResult
John McCallb8fc0532010-02-06 08:42:39 +00001362TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) {
1363 NamedDecl *D = E->getDecl();
Richard Smith9a4db032012-09-12 00:56:43 +00001364
1365 // Handle references to non-type template parameters and non-type template
1366 // parameter packs.
John McCallb8fc0532010-02-06 08:42:39 +00001367 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) {
1368 if (NTTP->getDepth() < TemplateArgs.getNumLevels())
1369 return TransformTemplateParmRefExpr(E, NTTP);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001370
1371 // We have a non-type template parameter that isn't fully substituted;
1372 // FindInstantiatedDecl will find it in the local instantiation scope.
Douglas Gregorb98b1992009-08-11 05:31:07 +00001373 }
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Richard Smith9a4db032012-09-12 00:56:43 +00001375 // Handle references to function parameter packs.
1376 if (ParmVarDecl *PD = dyn_cast<ParmVarDecl>(D))
1377 if (PD->isParameterPack())
1378 return TransformFunctionParmPackRefExpr(E, PD);
1379
John McCall454feb92009-12-08 09:21:05 +00001380 return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E);
Douglas Gregorb98b1992009-08-11 05:31:07 +00001381}
1382
John McCall60d7b3a2010-08-24 06:29:42 +00001383ExprResult TemplateInstantiator::TransformCXXDefaultArgExpr(
John McCall454feb92009-12-08 09:21:05 +00001384 CXXDefaultArgExpr *E) {
Sebastian Redla29e51b2009-11-08 13:56:19 +00001385 assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())->
1386 getDescribedFunctionTemplate() &&
1387 "Default arg expressions are never formed in dependent cases.");
Douglas Gregor036aed12009-12-23 23:03:06 +00001388 return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(),
1389 cast<FunctionDecl>(E->getParam()->getDeclContext()),
1390 E->getParam());
Sebastian Redla29e51b2009-11-08 13:56:19 +00001391}
1392
Douglas Gregor895162d2010-04-30 18:55:50 +00001393QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001394 FunctionProtoTypeLoc TL) {
Douglas Gregor895162d2010-04-30 18:55:50 +00001395 // We need a local instantiation scope for this function prototype.
John McCall2a7fb272010-08-25 05:32:35 +00001396 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
John McCall43fed0d2010-11-12 08:19:04 +00001397 return inherited::TransformFunctionProtoType(TLB, TL);
John McCall21ef0fa2010-03-11 09:03:00 +00001398}
1399
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001400QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
1401 FunctionProtoTypeLoc TL,
1402 CXXRecordDecl *ThisContext,
1403 unsigned ThisTypeQuals) {
1404 // We need a local instantiation scope for this function prototype.
1405 LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
1406 return inherited::TransformFunctionProtoType(TLB, TL, ThisContext,
1407 ThisTypeQuals);
1408}
1409
John McCall21ef0fa2010-03-11 09:03:00 +00001410ParmVarDecl *
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001411TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm,
John McCallfb44de92011-05-01 22:35:37 +00001412 int indexAdjustment,
David Blaikiedc84cd52013-02-20 22:23:23 +00001413 Optional<unsigned> NumExpansions,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001414 bool ExpectParameterPack) {
John McCallfb44de92011-05-01 22:35:37 +00001415 return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs, indexAdjustment,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001416 NumExpansions, ExpectParameterPack);
John McCall21ef0fa2010-03-11 09:03:00 +00001417}
1418
Mike Stump1eb44332009-09-09 15:08:12 +00001419QualType
John McCalla2becad2009-10-21 00:40:46 +00001420TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB,
John McCall43fed0d2010-11-12 08:19:04 +00001421 TemplateTypeParmTypeLoc TL) {
John McCallf4c73712011-01-19 06:33:43 +00001422 const TemplateTypeParmType *T = TL.getTypePtr();
Douglas Gregord6350ae2009-08-28 20:31:08 +00001423 if (T->getDepth() < TemplateArgs.getNumLevels()) {
Douglas Gregor99ebf652009-02-27 19:31:52 +00001424 // Replace the template type parameter with its corresponding
1425 // template argument.
Mike Stump1eb44332009-09-09 15:08:12 +00001426
1427 // If the corresponding template argument is NULL or doesn't exist, it's
1428 // because we are performing instantiation from explicitly-specified
1429 // template arguments in a function template class, but there were some
Douglas Gregor16134c62009-07-01 00:28:38 +00001430 // arguments left unspecified.
John McCalla2becad2009-10-21 00:40:46 +00001431 if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) {
1432 TemplateTypeParmTypeLoc NewTL
1433 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType());
1434 NewTL.setNameLoc(TL.getNameLoc());
1435 return TL.getType();
1436 }
Mike Stump1eb44332009-09-09 15:08:12 +00001437
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001438 TemplateArgument Arg = TemplateArgs(T->getDepth(), T->getIndex());
1439
1440 if (T->isParameterPack()) {
1441 assert(Arg.getKind() == TemplateArgument::Pack &&
1442 "Missing argument pack");
1443
1444 if (getSema().ArgumentPackSubstitutionIndex == -1) {
Douglas Gregorc3069d62011-01-14 02:55:32 +00001445 // We have the template argument pack, but we're not expanding the
1446 // enclosing pack expansion yet. Just save the template argument
1447 // pack for later substitution.
1448 QualType Result
1449 = getSema().Context.getSubstTemplateTypeParmPackType(T, Arg);
1450 SubstTemplateTypeParmPackTypeLoc NewTL
1451 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(Result);
1452 NewTL.setNameLoc(TL.getNameLoc());
1453 return Result;
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001454 }
1455
Eli Friedman10ec0e42013-07-19 19:40:38 +00001456 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001457 }
1458
1459 assert(Arg.getKind() == TemplateArgument::Type &&
Douglas Gregor99ebf652009-02-27 19:31:52 +00001460 "Template argument kind mismatch");
Douglas Gregord6350ae2009-08-28 20:31:08 +00001461
Douglas Gregor8491ffe2010-12-20 22:05:00 +00001462 QualType Replacement = Arg.getAsType();
John McCall49a832b2009-10-18 09:09:24 +00001463
1464 // TODO: only do this uniquing once, at the start of instantiation.
John McCalla2becad2009-10-21 00:40:46 +00001465 QualType Result
1466 = getSema().Context.getSubstTemplateTypeParmType(T, Replacement);
1467 SubstTemplateTypeParmTypeLoc NewTL
1468 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1469 NewTL.setNameLoc(TL.getNameLoc());
1470 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001471 }
Douglas Gregor99ebf652009-02-27 19:31:52 +00001472
1473 // The template type parameter comes from an inner template (e.g.,
1474 // the template parameter list of a member template inside the
1475 // template we are instantiating). Create a new template type
1476 // parameter with the template "level" reduced by one.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001477 TemplateTypeParmDecl *NewTTPDecl = 0;
1478 if (TemplateTypeParmDecl *OldTTPDecl = T->getDecl())
1479 NewTTPDecl = cast_or_null<TemplateTypeParmDecl>(
1480 TransformDecl(TL.getNameLoc(), OldTTPDecl));
1481
John McCalla2becad2009-10-21 00:40:46 +00001482 QualType Result
1483 = getSema().Context.getTemplateTypeParmType(T->getDepth()
1484 - TemplateArgs.getNumLevels(),
1485 T->getIndex(),
1486 T->isParameterPack(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001487 NewTTPDecl);
John McCalla2becad2009-10-21 00:40:46 +00001488 TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result);
1489 NewTL.setNameLoc(TL.getNameLoc());
1490 return Result;
Douglas Gregorcd281c32009-02-28 00:25:32 +00001491}
Douglas Gregor99ebf652009-02-27 19:31:52 +00001492
Douglas Gregorc3069d62011-01-14 02:55:32 +00001493QualType
1494TemplateInstantiator::TransformSubstTemplateTypeParmPackType(
1495 TypeLocBuilder &TLB,
1496 SubstTemplateTypeParmPackTypeLoc TL) {
1497 if (getSema().ArgumentPackSubstitutionIndex == -1) {
1498 // We aren't expanding the parameter pack, so just return ourselves.
1499 SubstTemplateTypeParmPackTypeLoc NewTL
1500 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(TL.getType());
1501 NewTL.setNameLoc(TL.getNameLoc());
1502 return TL.getType();
1503 }
Eli Friedman10ec0e42013-07-19 19:40:38 +00001504
1505 TemplateArgument Arg = TL.getTypePtr()->getArgumentPack();
1506 Arg = getPackSubstitutedTemplateArgument(getSema(), Arg);
1507 QualType Result = Arg.getAsType();
1508
Douglas Gregorc3069d62011-01-14 02:55:32 +00001509 Result = getSema().Context.getSubstTemplateTypeParmType(
1510 TL.getTypePtr()->getReplacedParameter(),
1511 Result);
1512 SubstTemplateTypeParmTypeLoc NewTL
1513 = TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
1514 NewTL.setNameLoc(TL.getNameLoc());
1515 return Result;
1516}
1517
John McCallce3ff2b2009-08-25 22:02:44 +00001518/// \brief Perform substitution on the type T with a given set of template
1519/// arguments.
Douglas Gregor99ebf652009-02-27 19:31:52 +00001520///
1521/// This routine substitutes the given template arguments into the
1522/// type T and produces the instantiated type.
1523///
1524/// \param T the type into which the template arguments will be
1525/// substituted. If this type is not dependent, it will be returned
1526/// immediately.
1527///
James Dennett1dfbd922012-06-14 21:40:34 +00001528/// \param Args the template arguments that will be
Douglas Gregor99ebf652009-02-27 19:31:52 +00001529/// substituted for the top-level template parameters within T.
1530///
Douglas Gregor99ebf652009-02-27 19:31:52 +00001531/// \param Loc the location in the source code where this substitution
1532/// is being performed. It will typically be the location of the
1533/// declarator (if we're instantiating the type of some declaration)
1534/// or the location of the type in the source code (if, e.g., we're
1535/// instantiating the type of a cast expression).
1536///
1537/// \param Entity the name of the entity associated with a declaration
1538/// being instantiated (if any). May be empty to indicate that there
1539/// is no such entity (if, e.g., this is a type that occurs as part of
1540/// a cast expression) or that the entity has no name (e.g., an
1541/// unnamed function parameter).
1542///
1543/// \returns If the instantiation succeeds, the instantiated
1544/// type. Otherwise, produces diagnostics and returns a NULL type.
John McCalla93c9342009-12-07 02:54:59 +00001545TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T,
John McCallcd7ba1c2009-10-21 00:58:09 +00001546 const MultiLevelTemplateArgumentList &Args,
1547 SourceLocation Loc,
1548 DeclarationName Entity) {
1549 assert(!ActiveTemplateInstantiations.empty() &&
1550 "Cannot perform an instantiation without some context on the "
1551 "instantiation stack");
1552
Douglas Gregor561f8122011-07-01 01:22:09 +00001553 if (!T->getType()->isInstantiationDependentType() &&
Douglas Gregor836adf62010-05-24 17:22:01 +00001554 !T->getType()->isVariablyModifiedType())
John McCallcd7ba1c2009-10-21 00:58:09 +00001555 return T;
1556
1557 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1558 return Instantiator.TransformType(T);
1559}
1560
Douglas Gregor603cfb42011-01-05 23:12:31 +00001561TypeSourceInfo *Sema::SubstType(TypeLoc TL,
1562 const MultiLevelTemplateArgumentList &Args,
1563 SourceLocation Loc,
1564 DeclarationName Entity) {
1565 assert(!ActiveTemplateInstantiations.empty() &&
1566 "Cannot perform an instantiation without some context on the "
1567 "instantiation stack");
1568
1569 if (TL.getType().isNull())
1570 return 0;
1571
Douglas Gregor561f8122011-07-01 01:22:09 +00001572 if (!TL.getType()->isInstantiationDependentType() &&
Douglas Gregor603cfb42011-01-05 23:12:31 +00001573 !TL.getType()->isVariablyModifiedType()) {
1574 // FIXME: Make a copy of the TypeLoc data here, so that we can
1575 // return a new TypeSourceInfo. Inefficient!
1576 TypeLocBuilder TLB;
1577 TLB.pushFullCopy(TL);
1578 return TLB.getTypeSourceInfo(Context, TL.getType());
1579 }
1580
1581 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1582 TypeLocBuilder TLB;
1583 TLB.reserve(TL.getFullDataSize());
1584 QualType Result = Instantiator.TransformType(TLB, TL);
1585 if (Result.isNull())
1586 return 0;
1587
1588 return TLB.getTypeSourceInfo(Context, Result);
1589}
1590
John McCallcd7ba1c2009-10-21 00:58:09 +00001591/// Deprecated form of the above.
Mike Stump1eb44332009-09-09 15:08:12 +00001592QualType Sema::SubstType(QualType T,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001593 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallce3ff2b2009-08-25 22:02:44 +00001594 SourceLocation Loc, DeclarationName Entity) {
Douglas Gregordf667e72009-03-10 20:44:00 +00001595 assert(!ActiveTemplateInstantiations.empty() &&
1596 "Cannot perform an instantiation without some context on the "
1597 "instantiation stack");
1598
Douglas Gregor836adf62010-05-24 17:22:01 +00001599 // If T is not a dependent type or a variably-modified type, there
1600 // is nothing to do.
Douglas Gregor561f8122011-07-01 01:22:09 +00001601 if (!T->isInstantiationDependentType() && !T->isVariablyModifiedType())
Douglas Gregor99ebf652009-02-27 19:31:52 +00001602 return T;
1603
Douglas Gregor577f75a2009-08-04 16:50:30 +00001604 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity);
1605 return Instantiator.TransformType(T);
Douglas Gregor99ebf652009-02-27 19:31:52 +00001606}
Douglas Gregor2943aed2009-03-03 04:44:36 +00001607
John McCall6cd3b9f2010-04-09 17:38:44 +00001608static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001609 if (T->getType()->isInstantiationDependentType() ||
1610 T->getType()->isVariablyModifiedType())
John McCall6cd3b9f2010-04-09 17:38:44 +00001611 return true;
1612
Abramo Bagnara723df242010-12-14 22:11:44 +00001613 TypeLoc TL = T->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00001614 if (!TL.getAs<FunctionProtoTypeLoc>())
John McCall6cd3b9f2010-04-09 17:38:44 +00001615 return false;
1616
David Blaikie39e6ab42013-02-18 22:06:02 +00001617 FunctionProtoTypeLoc FP = TL.castAs<FunctionProtoTypeLoc>();
John McCall6cd3b9f2010-04-09 17:38:44 +00001618 for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) {
1619 ParmVarDecl *P = FP.getArg(I);
1620
Reid Klecknerc66e7e92013-07-31 21:00:18 +00001621 // This must be synthesized from a typedef.
1622 if (!P) continue;
1623
Douglas Gregorc056c172011-05-09 20:45:16 +00001624 // The parameter's type as written might be dependent even if the
1625 // decayed type was not dependent.
1626 if (TypeSourceInfo *TSInfo = P->getTypeSourceInfo())
Douglas Gregor561f8122011-07-01 01:22:09 +00001627 if (TSInfo->getType()->isInstantiationDependentType())
Douglas Gregorc056c172011-05-09 20:45:16 +00001628 return true;
1629
John McCall6cd3b9f2010-04-09 17:38:44 +00001630 // TODO: currently we always rebuild expressions. When we
1631 // properly get lazier about this, we should use the same
1632 // logic to avoid rebuilding prototypes here.
Douglas Gregor7b1cf302011-01-05 21:14:17 +00001633 if (P->hasDefaultArg())
John McCall6cd3b9f2010-04-09 17:38:44 +00001634 return true;
1635 }
1636
1637 return false;
1638}
1639
1640/// A form of SubstType intended specifically for instantiating the
1641/// type of a FunctionDecl. Its purpose is solely to force the
1642/// instantiation of default-argument expressions.
1643TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T,
1644 const MultiLevelTemplateArgumentList &Args,
1645 SourceLocation Loc,
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001646 DeclarationName Entity,
1647 CXXRecordDecl *ThisContext,
1648 unsigned ThisTypeQuals) {
John McCall6cd3b9f2010-04-09 17:38:44 +00001649 assert(!ActiveTemplateInstantiations.empty() &&
1650 "Cannot perform an instantiation without some context on the "
1651 "instantiation stack");
1652
1653 if (!NeedsInstantiationAsFunctionType(T))
1654 return T;
1655
1656 TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
1657
1658 TypeLocBuilder TLB;
1659
1660 TypeLoc TL = T->getTypeLoc();
1661 TLB.reserve(TL.getFullDataSize());
1662
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001663 QualType Result;
David Blaikie39e6ab42013-02-18 22:06:02 +00001664
1665 if (FunctionProtoTypeLoc Proto = TL.getAs<FunctionProtoTypeLoc>()) {
1666 Result = Instantiator.TransformFunctionProtoType(TLB, Proto, ThisContext,
Douglas Gregorcefc3af2012-04-16 07:05:22 +00001667 ThisTypeQuals);
1668 } else {
1669 Result = Instantiator.TransformType(TLB, TL);
1670 }
John McCall6cd3b9f2010-04-09 17:38:44 +00001671 if (Result.isNull())
1672 return 0;
1673
1674 return TLB.getTypeSourceInfo(Context, Result);
1675}
1676
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001677ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm,
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001678 const MultiLevelTemplateArgumentList &TemplateArgs,
John McCallfb44de92011-05-01 22:35:37 +00001679 int indexAdjustment,
David Blaikiedc84cd52013-02-20 22:23:23 +00001680 Optional<unsigned> NumExpansions,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001681 bool ExpectParameterPack) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001682 TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo();
Douglas Gregor603cfb42011-01-05 23:12:31 +00001683 TypeSourceInfo *NewDI = 0;
1684
Douglas Gregor603cfb42011-01-05 23:12:31 +00001685 TypeLoc OldTL = OldDI->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +00001686 if (PackExpansionTypeLoc ExpansionTL = OldTL.getAs<PackExpansionTypeLoc>()) {
1687
Douglas Gregor603cfb42011-01-05 23:12:31 +00001688 // We have a function parameter pack. Substitute into the pattern of the
1689 // expansion.
1690 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs,
1691 OldParm->getLocation(), OldParm->getDeclName());
1692 if (!NewDI)
1693 return 0;
1694
1695 if (NewDI->getType()->containsUnexpandedParameterPack()) {
1696 // We still have unexpanded parameter packs, which means that
1697 // our function parameter is still a function parameter pack.
1698 // Therefore, make its type a pack expansion type.
Douglas Gregorcded4f62011-01-14 17:04:44 +00001699 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(),
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001700 NumExpansions);
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001701 } else if (ExpectParameterPack) {
1702 // We expected to get a parameter pack but didn't (because the type
1703 // itself is not a pack expansion type), so complain. This can occur when
1704 // the substitution goes through an alias template that "loses" the
1705 // pack expansion.
1706 Diag(OldParm->getLocation(),
1707 diag::err_function_parameter_pack_without_parameter_packs)
1708 << NewDI->getType();
1709 return 0;
1710 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001711 } else {
1712 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(),
1713 OldParm->getDeclName());
1714 }
1715
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001716 if (!NewDI)
1717 return 0;
1718
1719 if (NewDI->getType()->isVoidType()) {
1720 Diag(OldParm->getLocation(), diag::err_param_with_void_type);
1721 return 0;
1722 }
1723
1724 ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001725 OldParm->getInnerLocStart(),
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001726 OldParm->getLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001727 OldParm->getIdentifier(),
1728 NewDI->getType(), NewDI,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001729 OldParm->getStorageClass());
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001730 if (!NewParm)
1731 return 0;
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001732
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001733 // Mark the (new) default argument as uninstantiated (if any).
1734 if (OldParm->hasUninstantiatedDefaultArg()) {
1735 Expr *Arg = OldParm->getUninstantiatedDefaultArg();
1736 NewParm->setUninstantiatedDefaultArg(Arg);
Douglas Gregor8cfb7a32010-10-12 18:23:32 +00001737 } else if (OldParm->hasUnparsedDefaultArg()) {
1738 NewParm->setUnparsedDefaultArg();
1739 UnparsedDefaultArgInstantiations[OldParm].push_back(NewParm);
David Blaikie57296722012-05-01 06:05:57 +00001740 } else if (Expr *Arg = OldParm->getDefaultArg())
1741 // FIXME: if we non-lazily instantiated non-dependent default args for
1742 // non-dependent parameter types we could remove a bunch of duplicate
1743 // conversion warnings for such arguments.
1744 NewParm->setUninstantiatedDefaultArg(Arg);
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001745
1746 NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg());
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001747
Douglas Gregor12c9c002011-01-07 16:43:16 +00001748 if (OldParm->isParameterPack() && !NewParm->isParameterPack()) {
Richard Smithc0536c82012-01-25 02:14:59 +00001749 // Add the new parameter to the instantiated parameter pack.
Douglas Gregor12c9c002011-01-07 16:43:16 +00001750 CurrentInstantiationScope->InstantiatedLocalPackArg(OldParm, NewParm);
1751 } else {
1752 // Introduce an Old -> New mapping
Douglas Gregor603cfb42011-01-05 23:12:31 +00001753 CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm);
Douglas Gregor12c9c002011-01-07 16:43:16 +00001754 }
Douglas Gregor603cfb42011-01-05 23:12:31 +00001755
Argyrios Kyrtzidise3041be2010-07-19 10:14:41 +00001756 // FIXME: OldParm may come from a FunctionProtoType, in which case CurContext
1757 // can be anything, is this right ?
Fariborz Jahanian55a17c02010-07-13 21:05:02 +00001758 NewParm->setDeclContext(CurContext);
John McCallfb44de92011-05-01 22:35:37 +00001759
1760 NewParm->setScopeInfo(OldParm->getFunctionScopeDepth(),
1761 OldParm->getFunctionScopeIndex() + indexAdjustment);
Jordan Rose09189892013-03-08 22:25:36 +00001762
1763 InstantiateAttrs(TemplateArgs, OldParm, NewParm);
1764
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001765 return NewParm;
1766}
1767
Douglas Gregora009b592011-01-07 00:20:55 +00001768/// \brief Substitute the given template arguments into the given set of
1769/// parameters, producing the set of parameter types that would be generated
1770/// from such a substitution.
1771bool Sema::SubstParmTypes(SourceLocation Loc,
1772 ParmVarDecl **Params, unsigned NumParams,
1773 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001774 SmallVectorImpl<QualType> &ParamTypes,
1775 SmallVectorImpl<ParmVarDecl *> *OutParams) {
Douglas Gregora009b592011-01-07 00:20:55 +00001776 assert(!ActiveTemplateInstantiations.empty() &&
1777 "Cannot perform an instantiation without some context on the "
1778 "instantiation stack");
1779
1780 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
1781 DeclarationName());
1782 return Instantiator.TransformFunctionTypeParams(Loc, Params, NumParams, 0,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001783 ParamTypes, OutParams);
Douglas Gregora009b592011-01-07 00:20:55 +00001784}
1785
John McCallce3ff2b2009-08-25 22:02:44 +00001786/// \brief Perform substitution on the base class specifiers of the
1787/// given class template specialization.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001788///
1789/// Produces a diagnostic and returns true on error, returns false and
1790/// attaches the instantiated base classes to the class template
1791/// specialization if successful.
Mike Stump1eb44332009-09-09 15:08:12 +00001792bool
John McCallce3ff2b2009-08-25 22:02:44 +00001793Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
1794 CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001795 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001796 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001797 SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases;
Mike Stump1eb44332009-09-09 15:08:12 +00001798 for (ClassTemplateSpecializationDecl::base_class_iterator
Douglas Gregord475b8d2009-03-25 21:17:03 +00001799 Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end();
Douglas Gregor27b152f2009-03-10 18:52:44 +00001800 Base != BaseEnd; ++Base) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001801 if (!Base->getType()->isDependentType()) {
Matt Beaumont-Gay538fccb2013-06-21 18:58:32 +00001802 if (const CXXRecordDecl *RD = Base->getType()->getAsCXXRecordDecl()) {
1803 if (RD->isInvalidDecl())
1804 Instantiation->setInvalidDecl();
1805 }
Fariborz Jahanian71c6e712009-07-22 17:41:53 +00001806 InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base));
Douglas Gregor2943aed2009-03-03 04:44:36 +00001807 continue;
1808 }
1809
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001810 SourceLocation EllipsisLoc;
Douglas Gregor406f98f2011-03-02 02:04:06 +00001811 TypeSourceInfo *BaseTypeLoc;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001812 if (Base->isPackExpansion()) {
1813 // This is a pack expansion. See whether we should expand it now, or
1814 // wait until later.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001815 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001816 collectUnexpandedParameterPacks(Base->getTypeSourceInfo()->getTypeLoc(),
1817 Unexpanded);
1818 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00001819 bool RetainExpansion = false;
David Blaikiedc84cd52013-02-20 22:23:23 +00001820 Optional<unsigned> NumExpansions;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001821 if (CheckParameterPacksForExpansion(Base->getEllipsisLoc(),
1822 Base->getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001823 Unexpanded,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001824 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00001825 RetainExpansion,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001826 NumExpansions)) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001827 Invalid = true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001828 continue;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001829 }
1830
1831 // If we should expand this pack expansion now, do so.
1832 if (ShouldExpand) {
Douglas Gregorcded4f62011-01-14 17:04:44 +00001833 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001834 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
1835
1836 TypeSourceInfo *BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1837 TemplateArgs,
1838 Base->getSourceRange().getBegin(),
1839 DeclarationName());
1840 if (!BaseTypeLoc) {
1841 Invalid = true;
1842 continue;
1843 }
1844
1845 if (CXXBaseSpecifier *InstantiatedBase
1846 = CheckBaseSpecifier(Instantiation,
1847 Base->getSourceRange(),
1848 Base->isVirtual(),
1849 Base->getAccessSpecifierAsWritten(),
1850 BaseTypeLoc,
1851 SourceLocation()))
1852 InstantiatedBases.push_back(InstantiatedBase);
1853 else
1854 Invalid = true;
1855 }
1856
1857 continue;
1858 }
1859
1860 // The resulting base specifier will (still) be a pack expansion.
1861 EllipsisLoc = Base->getEllipsisLoc();
Douglas Gregor406f98f2011-03-02 02:04:06 +00001862 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, -1);
1863 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1864 TemplateArgs,
1865 Base->getSourceRange().getBegin(),
1866 DeclarationName());
1867 } else {
1868 BaseTypeLoc = SubstType(Base->getTypeSourceInfo(),
1869 TemplateArgs,
1870 Base->getSourceRange().getBegin(),
1871 DeclarationName());
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001872 }
1873
Nick Lewycky56062202010-07-26 16:56:01 +00001874 if (!BaseTypeLoc) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001875 Invalid = true;
1876 continue;
1877 }
1878
1879 if (CXXBaseSpecifier *InstantiatedBase
Douglas Gregord475b8d2009-03-25 21:17:03 +00001880 = CheckBaseSpecifier(Instantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001881 Base->getSourceRange(),
1882 Base->isVirtual(),
1883 Base->getAccessSpecifierAsWritten(),
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001884 BaseTypeLoc,
1885 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001886 InstantiatedBases.push_back(InstantiatedBase);
1887 else
1888 Invalid = true;
1889 }
1890
Douglas Gregor27b152f2009-03-10 18:52:44 +00001891 if (!Invalid &&
Jay Foadbeaaccd2009-05-21 09:52:38 +00001892 AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001893 InstantiatedBases.size()))
1894 Invalid = true;
1895
1896 return Invalid;
1897}
1898
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001899// Defined via #include from SemaTemplateInstantiateDecl.cpp
Benjamin Kramer5bbc3852012-02-06 11:13:08 +00001900namespace clang {
1901 namespace sema {
1902 Attr *instantiateTemplateAttribute(const Attr *At, ASTContext &C, Sema &S,
1903 const MultiLevelTemplateArgumentList &TemplateArgs);
1904 }
1905}
DeLesley Hutchins23323e02012-01-20 22:50:54 +00001906
Richard Smithf1c66b42012-03-14 23:13:10 +00001907/// Determine whether we would be unable to instantiate this template (because
1908/// it either has no definition, or is in the process of being instantiated).
1909static bool DiagnoseUninstantiableTemplate(Sema &S,
1910 SourceLocation PointOfInstantiation,
1911 TagDecl *Instantiation,
1912 bool InstantiatedFromMember,
1913 TagDecl *Pattern,
1914 TagDecl *PatternDef,
1915 TemplateSpecializationKind TSK,
1916 bool Complain = true) {
1917 if (PatternDef && !PatternDef->isBeingDefined())
1918 return false;
1919
1920 if (!Complain || (PatternDef && PatternDef->isInvalidDecl())) {
1921 // Say nothing
1922 } else if (PatternDef) {
1923 assert(PatternDef->isBeingDefined());
1924 S.Diag(PointOfInstantiation,
1925 diag::err_template_instantiate_within_definition)
1926 << (TSK != TSK_ImplicitInstantiation)
1927 << S.Context.getTypeDeclType(Instantiation);
1928 // Not much point in noting the template declaration here, since
1929 // we're lexically inside it.
1930 Instantiation->setInvalidDecl();
1931 } else if (InstantiatedFromMember) {
1932 S.Diag(PointOfInstantiation,
1933 diag::err_implicit_instantiate_member_undefined)
1934 << S.Context.getTypeDeclType(Instantiation);
1935 S.Diag(Pattern->getLocation(), diag::note_member_of_template_here);
1936 } else {
1937 S.Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
1938 << (TSK != TSK_ImplicitInstantiation)
1939 << S.Context.getTypeDeclType(Instantiation);
1940 S.Diag(Pattern->getLocation(), diag::note_template_decl_here);
1941 }
1942
1943 // In general, Instantiation isn't marked invalid to get more than one
1944 // error for multiple undefined instantiations. But the code that does
1945 // explicit declaration -> explicit definition conversion can't handle
1946 // invalid declarations, so mark as invalid in that case.
1947 if (TSK == TSK_ExplicitInstantiationDeclaration)
1948 Instantiation->setInvalidDecl();
1949 return true;
1950}
1951
Douglas Gregord475b8d2009-03-25 21:17:03 +00001952/// \brief Instantiate the definition of a class from a given pattern.
1953///
1954/// \param PointOfInstantiation The point of instantiation within the
1955/// source code.
1956///
1957/// \param Instantiation is the declaration whose definition is being
1958/// instantiated. This will be either a class template specialization
1959/// or a member class of a class template specialization.
1960///
1961/// \param Pattern is the pattern from which the instantiation
1962/// occurs. This will be either the declaration of a class template or
1963/// the declaration of a member class of a class template.
1964///
1965/// \param TemplateArgs The template arguments to be substituted into
1966/// the pattern.
1967///
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001968/// \param TSK the kind of implicit or explicit instantiation to perform.
Douglas Gregor5842ba92009-08-24 15:23:48 +00001969///
1970/// \param Complain whether to complain if the class cannot be instantiated due
1971/// to the lack of a definition.
1972///
Douglas Gregord475b8d2009-03-25 21:17:03 +00001973/// \returns true if an error occurred, false otherwise.
1974bool
1975Sema::InstantiateClass(SourceLocation PointOfInstantiation,
1976 CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001977 const MultiLevelTemplateArgumentList &TemplateArgs,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001978 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001979 bool Complain) {
Mike Stump1eb44332009-09-09 15:08:12 +00001980 CXXRecordDecl *PatternDef
Douglas Gregor952b0172010-02-11 01:04:33 +00001981 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Richard Smithf1c66b42012-03-14 23:13:10 +00001982 if (DiagnoseUninstantiableTemplate(*this, PointOfInstantiation, Instantiation,
1983 Instantiation->getInstantiatedFromMemberClass(),
1984 Pattern, PatternDef, TSK, Complain))
Douglas Gregord475b8d2009-03-25 21:17:03 +00001985 return true;
Douglas Gregord475b8d2009-03-25 21:17:03 +00001986 Pattern = PatternDef;
1987
Douglas Gregor454885e2009-10-15 15:54:05 +00001988 // \brief Record the point of instantiation.
1989 if (MemberSpecializationInfo *MSInfo
1990 = Instantiation->getMemberSpecializationInfo()) {
1991 MSInfo->setTemplateSpecializationKind(TSK);
1992 MSInfo->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001993 } else if (ClassTemplateSpecializationDecl *Spec
Nico Weberc7feca02011-12-20 20:32:49 +00001994 = dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) {
Douglas Gregor972e6ce2009-10-27 06:26:26 +00001995 Spec->setTemplateSpecializationKind(TSK);
1996 Spec->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor454885e2009-10-15 15:54:05 +00001997 }
1998
Douglas Gregord048bb72009-03-25 21:23:52 +00001999 InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00002000 if (Inst)
2001 return true;
2002
2003 // Enter the scope of this instantiation. We don't use
2004 // PushDeclContext because we don't have a scope.
John McCallf5813822010-04-29 00:35:03 +00002005 ContextRAII SavedContext(*this, Instantiation);
Douglas Gregor9679caf2010-05-12 17:27:19 +00002006 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002007 Sema::PotentiallyEvaluated);
Douglas Gregord475b8d2009-03-25 21:17:03 +00002008
Douglas Gregor05030bb2010-03-24 01:33:17 +00002009 // If this is an instantiation of a local class, merge this local
2010 // instantiation scope with the enclosing scope. Otherwise, every
2011 // instantiation of a class has its own local instantiation scope.
2012 bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod();
John McCall2a7fb272010-08-25 05:32:35 +00002013 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Douglas Gregor05030bb2010-03-24 01:33:17 +00002014
John McCall1d8d1cc2010-08-01 02:01:53 +00002015 // Pull attributes from the pattern onto the instantiation.
2016 InstantiateAttrs(TemplateArgs, Pattern, Instantiation);
2017
Douglas Gregord475b8d2009-03-25 21:17:03 +00002018 // Start the definition of this instantiation.
2019 Instantiation->startDefinition();
Douglas Gregor13c85772010-05-06 00:28:52 +00002020
2021 Instantiation->setTagKind(Pattern->getTagKind());
Douglas Gregord475b8d2009-03-25 21:17:03 +00002022
John McCallce3ff2b2009-08-25 22:02:44 +00002023 // Do substitution on the base class specifiers.
2024 if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs))
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002025 Instantiation->setInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002026
Douglas Gregord65587f2010-11-10 19:44:59 +00002027 TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002028 SmallVector<Decl*, 4> Fields;
2029 SmallVector<std::pair<FieldDecl*, FieldDecl*>, 4>
Richard Smith7a614d82011-06-11 17:19:42 +00002030 FieldsWithMemberInitializers;
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002031 // Delay instantiation of late parsed attributes.
2032 LateInstantiatedAttrVec LateAttrs;
2033 Instantiator.enableLateAttributeInstantiation(&LateAttrs);
2034
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002035 for (RecordDecl::decl_iterator Member = Pattern->decls_begin(),
Mike Stump1eb44332009-09-09 15:08:12 +00002036 MemberEnd = Pattern->decls_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00002037 Member != MemberEnd; ++Member) {
Argyrios Kyrtzidisbb5e4312010-11-04 03:18:57 +00002038 // Don't instantiate members not belonging in this semantic context.
2039 // e.g. for:
2040 // @code
2041 // template <int i> class A {
2042 // class B *g;
2043 // };
2044 // @endcode
2045 // 'class B' has the template as lexical context but semantically it is
2046 // introduced in namespace scope.
2047 if ((*Member)->getDeclContext() != Pattern)
2048 continue;
2049
Douglas Gregord65587f2010-11-10 19:44:59 +00002050 if ((*Member)->isInvalidDecl()) {
Richard Smithe3f470a2012-07-11 22:37:56 +00002051 Instantiation->setInvalidDecl();
Douglas Gregord65587f2010-11-10 19:44:59 +00002052 continue;
2053 }
2054
2055 Decl *NewMember = Instantiator.Visit(*Member);
Douglas Gregord475b8d2009-03-25 21:17:03 +00002056 if (NewMember) {
Richard Smith7a614d82011-06-11 17:19:42 +00002057 if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember)) {
John McCalld226f652010-08-21 09:40:31 +00002058 Fields.push_back(Field);
Richard Smith7a614d82011-06-11 17:19:42 +00002059 FieldDecl *OldField = cast<FieldDecl>(*Member);
2060 if (OldField->getInClassInitializer())
2061 FieldsWithMemberInitializers.push_back(std::make_pair(OldField,
2062 Field));
Richard Smith1af83c42012-03-23 03:33:32 +00002063 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(NewMember)) {
2064 // C++11 [temp.inst]p1: The implicit instantiation of a class template
2065 // specialization causes the implicit instantiation of the definitions
2066 // of unscoped member enumerations.
2067 // Record a point of instantiation for this implicit instantiation.
Richard Smith3343fad2012-03-23 23:09:08 +00002068 if (TSK == TSK_ImplicitInstantiation && !Enum->isScoped() &&
2069 Enum->isCompleteDefinition()) {
Richard Smith1af83c42012-03-23 03:33:32 +00002070 MemberSpecializationInfo *MSInfo =Enum->getMemberSpecializationInfo();
2071 assert(MSInfo && "no spec info for member enum specialization");
2072 MSInfo->setTemplateSpecializationKind(TSK_ImplicitInstantiation);
2073 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2074 }
Richard Smithe3f470a2012-07-11 22:37:56 +00002075 } else if (StaticAssertDecl *SA = dyn_cast<StaticAssertDecl>(NewMember)) {
2076 if (SA->isFailed()) {
2077 // A static_assert failed. Bail out; instantiating this
2078 // class is probably not meaningful.
2079 Instantiation->setInvalidDecl();
2080 break;
2081 }
Richard Smith1af83c42012-03-23 03:33:32 +00002082 }
2083
2084 if (NewMember->isInvalidDecl())
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002085 Instantiation->setInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002086 } else {
2087 // FIXME: Eventually, a NULL return will mean that one of the
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002088 // instantiations was a semantic disaster, and we'll want to mark the
2089 // declaration invalid.
2090 // For now, we expect to skip some members that we can't yet handle.
Douglas Gregord475b8d2009-03-25 21:17:03 +00002091 }
2092 }
2093
2094 // Finish checking fields.
David Blaikie77b6de02011-09-22 02:58:26 +00002095 ActOnFields(0, Instantiation->getLocation(), Instantiation, Fields,
2096 SourceLocation(), SourceLocation(), 0);
Douglas Gregor23c94db2010-07-02 17:43:08 +00002097 CheckCompletedCXXClass(Instantiation);
Richard Smith7a614d82011-06-11 17:19:42 +00002098
2099 // Attach any in-class member initializers now the class is complete.
Richard Smithd5be2b52012-12-08 02:13:02 +00002100 // FIXME: We are supposed to defer instantiating these until they are needed.
Benjamin Kramer268efba2012-05-17 12:01:52 +00002101 if (!FieldsWithMemberInitializers.empty()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002102 // C++11 [expr.prim.general]p4:
2103 // Otherwise, if a member-declarator declares a non-static data member
2104 // (9.2) of a class X, the expression this is a prvalue of type "pointer
2105 // to X" within the optional brace-or-equal-initializer. It shall not
2106 // appear elsewhere in the member-declarator.
2107 CXXThisScopeRAII ThisScope(*this, Instantiation, (unsigned)0);
2108
2109 for (unsigned I = 0, N = FieldsWithMemberInitializers.size(); I != N; ++I) {
2110 FieldDecl *OldField = FieldsWithMemberInitializers[I].first;
2111 FieldDecl *NewField = FieldsWithMemberInitializers[I].second;
2112 Expr *OldInit = OldField->getInClassInitializer();
Richard Smith7a614d82011-06-11 17:19:42 +00002113
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002114 ExprResult NewInit = SubstInitializer(OldInit, TemplateArgs,
2115 /*CXXDirectInit=*/false);
2116 if (NewInit.isInvalid())
2117 NewField->setInvalidDecl();
2118 else {
2119 Expr *Init = NewInit.take();
2120 assert(Init && "no-argument initializer in class");
2121 assert(!isa<ParenListExpr>(Init) && "call-style init in class");
Richard Smithca523302012-06-10 03:12:00 +00002122 ActOnCXXInClassMemberInitializer(NewField, Init->getLocStart(), Init);
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002123 }
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002124 }
Richard Smith7a614d82011-06-11 17:19:42 +00002125 }
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002126 // Instantiate late parsed attributes, and attach them to their decls.
2127 // See Sema::InstantiateAttrs
2128 for (LateInstantiatedAttrVec::iterator I = LateAttrs.begin(),
2129 E = LateAttrs.end(); I != E; ++I) {
2130 assert(CurrentInstantiationScope == Instantiator.getStartingScope());
2131 CurrentInstantiationScope = I->Scope;
Richard Smithcafeb942013-06-07 02:33:37 +00002132
2133 // Allow 'this' within late-parsed attributes.
2134 NamedDecl *ND = dyn_cast<NamedDecl>(I->NewDecl);
2135 CXXRecordDecl *ThisContext =
2136 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
2137 CXXThisScopeRAII ThisScope(*this, ThisContext, /*TypeQuals*/0,
2138 ND && ND->isCXXInstanceMember());
2139
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002140 Attr *NewAttr =
2141 instantiateTemplateAttribute(I->TmplAttr, Context, *this, TemplateArgs);
2142 I->NewDecl->addAttr(NewAttr);
2143 LocalInstantiationScope::deleteScopes(I->Scope,
2144 Instantiator.getStartingScope());
2145 }
2146 Instantiator.disableLateAttributeInstantiation();
2147 LateAttrs.clear();
2148
Richard Smithb9d0b762012-07-27 04:22:15 +00002149 ActOnFinishDelayedMemberInitializers(Instantiation);
Richard Smith7a614d82011-06-11 17:19:42 +00002150
Abramo Bagnarae9946242011-11-18 08:08:52 +00002151 if (TSK == TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis734bd6e2012-02-11 01:59:57 +00002152 Instantiation->setLocation(Pattern->getLocation());
Abramo Bagnarae9946242011-11-18 08:08:52 +00002153 Instantiation->setLocStart(Pattern->getInnerLocStart());
Abramo Bagnara09d82122011-10-03 20:34:03 +00002154 Instantiation->setRBraceLoc(Pattern->getRBraceLoc());
Abramo Bagnarae9946242011-11-18 08:08:52 +00002155 }
Abramo Bagnara09d82122011-10-03 20:34:03 +00002156
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002157 if (!Instantiation->isInvalidDecl()) {
John McCall1f2e1a92012-08-10 03:15:35 +00002158 // Perform any dependent diagnostics from the pattern.
2159 PerformDependentDiagnostics(Pattern, TemplateArgs);
2160
Douglas Gregord65587f2010-11-10 19:44:59 +00002161 // Instantiate any out-of-line class template partial
2162 // specializations now.
2163 for (TemplateDeclInstantiator::delayed_partial_spec_iterator
2164 P = Instantiator.delayed_partial_spec_begin(),
2165 PEnd = Instantiator.delayed_partial_spec_end();
2166 P != PEnd; ++P) {
2167 if (!Instantiator.InstantiateClassTemplatePartialSpecialization(
2168 P->first,
2169 P->second)) {
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002170 Instantiation->setInvalidDecl();
Douglas Gregord65587f2010-11-10 19:44:59 +00002171 break;
2172 }
2173 }
2174 }
2175
Douglas Gregord475b8d2009-03-25 21:17:03 +00002176 // Exit the scope of this instantiation.
John McCallf5813822010-04-29 00:35:03 +00002177 SavedContext.pop();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002178
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002179 if (!Instantiation->isInvalidDecl()) {
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002180 Consumer.HandleTagDeclDefinition(Instantiation);
2181
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002182 // Always emit the vtable for an explicit instantiation definition
2183 // of a polymorphic class template specialization.
2184 if (TSK == TSK_ExplicitInstantiationDefinition)
2185 MarkVTableUsed(PointOfInstantiation, Instantiation, true);
2186 }
2187
Douglas Gregor8a50fe02012-07-02 21:00:41 +00002188 return Instantiation->isInvalidDecl();
Douglas Gregord475b8d2009-03-25 21:17:03 +00002189}
2190
Richard Smithf1c66b42012-03-14 23:13:10 +00002191/// \brief Instantiate the definition of an enum from a given pattern.
2192///
2193/// \param PointOfInstantiation The point of instantiation within the
2194/// source code.
2195/// \param Instantiation is the declaration whose definition is being
2196/// instantiated. This will be a member enumeration of a class
2197/// temploid specialization, or a local enumeration within a
2198/// function temploid specialization.
2199/// \param Pattern The templated declaration from which the instantiation
2200/// occurs.
2201/// \param TemplateArgs The template arguments to be substituted into
2202/// the pattern.
2203/// \param TSK The kind of implicit or explicit instantiation to perform.
2204///
2205/// \return \c true if an error occurred, \c false otherwise.
2206bool Sema::InstantiateEnum(SourceLocation PointOfInstantiation,
2207 EnumDecl *Instantiation, EnumDecl *Pattern,
2208 const MultiLevelTemplateArgumentList &TemplateArgs,
2209 TemplateSpecializationKind TSK) {
2210 EnumDecl *PatternDef = Pattern->getDefinition();
2211 if (DiagnoseUninstantiableTemplate(*this, PointOfInstantiation, Instantiation,
2212 Instantiation->getInstantiatedFromMemberEnum(),
2213 Pattern, PatternDef, TSK,/*Complain*/true))
2214 return true;
2215 Pattern = PatternDef;
2216
2217 // Record the point of instantiation.
2218 if (MemberSpecializationInfo *MSInfo
2219 = Instantiation->getMemberSpecializationInfo()) {
2220 MSInfo->setTemplateSpecializationKind(TSK);
2221 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2222 }
2223
2224 InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
2225 if (Inst)
2226 return true;
2227
2228 // Enter the scope of this instantiation. We don't use
2229 // PushDeclContext because we don't have a scope.
2230 ContextRAII SavedContext(*this, Instantiation);
2231 EnterExpressionEvaluationContext EvalContext(*this,
2232 Sema::PotentiallyEvaluated);
2233
2234 LocalInstantiationScope Scope(*this, /*MergeWithParentScope*/true);
2235
2236 // Pull attributes from the pattern onto the instantiation.
2237 InstantiateAttrs(TemplateArgs, Pattern, Instantiation);
2238
2239 TemplateDeclInstantiator Instantiator(*this, Instantiation, TemplateArgs);
2240 Instantiator.InstantiateEnumDefinition(Instantiation, Pattern);
2241
2242 // Exit the scope of this instantiation.
2243 SavedContext.pop();
2244
2245 return Instantiation->isInvalidDecl();
2246}
2247
Douglas Gregor9b623632010-10-12 23:32:35 +00002248namespace {
2249 /// \brief A partial specialization whose template arguments have matched
2250 /// a given template-id.
2251 struct PartialSpecMatchResult {
2252 ClassTemplatePartialSpecializationDecl *Partial;
2253 TemplateArgumentList *Args;
Douglas Gregor9b623632010-10-12 23:32:35 +00002254 };
2255}
2256
Mike Stump1eb44332009-09-09 15:08:12 +00002257bool
Douglas Gregor2943aed2009-03-03 04:44:36 +00002258Sema::InstantiateClassTemplateSpecialization(
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002259 SourceLocation PointOfInstantiation,
Douglas Gregor2943aed2009-03-03 04:44:36 +00002260 ClassTemplateSpecializationDecl *ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002261 TemplateSpecializationKind TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002262 bool Complain) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00002263 // Perform the actual instantiation on the canonical declaration.
2264 ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>(
Argyrios Kyrtzidis97fbaa22009-07-18 00:34:25 +00002265 ClassTemplateSpec->getCanonicalDecl());
Douglas Gregor2943aed2009-03-03 04:44:36 +00002266
Douglas Gregor52604ab2009-09-11 21:19:12 +00002267 // Check whether we have already instantiated or specialized this class
2268 // template specialization.
2269 if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) {
2270 if (ClassTemplateSpec->getSpecializationKind() ==
2271 TSK_ExplicitInstantiationDeclaration &&
2272 TSK == TSK_ExplicitInstantiationDefinition) {
2273 // An explicit instantiation definition follows an explicit instantiation
2274 // declaration (C++0x [temp.explicit]p10); go ahead and perform the
2275 // explicit instantiation.
2276 ClassTemplateSpec->setSpecializationKind(TSK);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002277
2278 // If this is an explicit instantiation definition, mark the
2279 // vtable as used.
Nico Weberc7feca02011-12-20 20:32:49 +00002280 if (TSK == TSK_ExplicitInstantiationDefinition &&
2281 !ClassTemplateSpec->isInvalidDecl())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002282 MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true);
2283
Douglas Gregor52604ab2009-09-11 21:19:12 +00002284 return false;
2285 }
2286
2287 // We can only instantiate something that hasn't already been
2288 // instantiated or specialized. Fail without any diagnostics: our
2289 // caller will provide an error message.
Douglas Gregor2943aed2009-03-03 04:44:36 +00002290 return true;
Douglas Gregor52604ab2009-09-11 21:19:12 +00002291 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002292
Douglas Gregor9eea08b2009-09-15 16:51:42 +00002293 if (ClassTemplateSpec->isInvalidDecl())
2294 return true;
2295
Douglas Gregor2943aed2009-03-03 04:44:36 +00002296 ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate();
Douglas Gregord6350ae2009-08-28 20:31:08 +00002297 CXXRecordDecl *Pattern = 0;
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002298
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002299 // C++ [temp.class.spec.match]p1:
2300 // When a class template is used in a context that requires an
2301 // instantiation of the class, it is necessary to determine
2302 // whether the instantiation is to be generated using the primary
2303 // template or one of the partial specializations. This is done by
2304 // matching the template arguments of the class template
2305 // specialization with the template argument lists of the partial
2306 // specializations.
Douglas Gregor9b623632010-10-12 23:32:35 +00002307 typedef PartialSpecMatchResult MatchResult;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002308 SmallVector<MatchResult, 4> Matched;
2309 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002310 Template->getPartialSpecializations(PartialSpecs);
Larisse Voufo43847122013-07-19 23:00:19 +00002311 TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation);
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002312 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
2313 ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
Larisse Voufo43847122013-07-19 23:00:19 +00002314 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Douglas Gregorf67875d2009-06-12 18:26:56 +00002315 if (TemplateDeductionResult Result
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002316 = DeduceTemplateArguments(Partial,
Douglas Gregorf67875d2009-06-12 18:26:56 +00002317 ClassTemplateSpec->getTemplateArgs(),
2318 Info)) {
Larisse Voufo43847122013-07-19 23:00:19 +00002319 // Store the failed-deduction information for use in diagnostics, later.
2320 // TODO: Actually use the failed-deduction info?
2321 FailedCandidates.addCandidate()
2322 .set(Partial, MakeDeductionFailureInfo(Context, Result, Info));
Douglas Gregorf67875d2009-06-12 18:26:56 +00002323 (void)Result;
2324 } else {
Douglas Gregor9b623632010-10-12 23:32:35 +00002325 Matched.push_back(PartialSpecMatchResult());
2326 Matched.back().Partial = Partial;
2327 Matched.back().Args = Info.take();
Douglas Gregorf67875d2009-06-12 18:26:56 +00002328 }
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002329 }
2330
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002331 // If we're dealing with a member template where the template parameters
2332 // have been instantiated, this provides the original template parameters
2333 // from which the member template's parameters were instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002334 SmallVector<const NamedDecl *, 4> InstantiatedTemplateParameters;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002335
Douglas Gregored9c0f92009-10-29 00:04:11 +00002336 if (Matched.size() >= 1) {
Craig Topper09d19ef2013-07-04 03:08:24 +00002337 SmallVectorImpl<MatchResult>::iterator Best = Matched.begin();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002338 if (Matched.size() == 1) {
2339 // -- If exactly one matching specialization is found, the
2340 // instantiation is generated from that specialization.
2341 // We don't need to do anything for this.
2342 } else {
2343 // -- If more than one matching specialization is found, the
2344 // partial order rules (14.5.4.2) are used to determine
2345 // whether one of the specializations is more specialized
2346 // than the others. If none of the specializations is more
2347 // specialized than all of the other matching
2348 // specializations, then the use of the class template is
2349 // ambiguous and the program is ill-formed.
Craig Topper09d19ef2013-07-04 03:08:24 +00002350 for (SmallVectorImpl<MatchResult>::iterator P = Best + 1,
2351 PEnd = Matched.end();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002352 P != PEnd; ++P) {
Douglas Gregor9b623632010-10-12 23:32:35 +00002353 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002354 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002355 == P->Partial)
Douglas Gregored9c0f92009-10-29 00:04:11 +00002356 Best = P;
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002357 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002358
Douglas Gregored9c0f92009-10-29 00:04:11 +00002359 // Determine if the best partial specialization is more specialized than
2360 // the others.
2361 bool Ambiguous = false;
Craig Topper09d19ef2013-07-04 03:08:24 +00002362 for (SmallVectorImpl<MatchResult>::iterator P = Matched.begin(),
2363 PEnd = Matched.end();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002364 P != PEnd; ++P) {
2365 if (P != Best &&
Douglas Gregor9b623632010-10-12 23:32:35 +00002366 getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
John McCall5769d612010-02-08 23:07:23 +00002367 PointOfInstantiation)
Douglas Gregor9b623632010-10-12 23:32:35 +00002368 != Best->Partial) {
Douglas Gregored9c0f92009-10-29 00:04:11 +00002369 Ambiguous = true;
2370 break;
2371 }
2372 }
2373
2374 if (Ambiguous) {
2375 // Partial ordering did not produce a clear winner. Complain.
2376 ClassTemplateSpec->setInvalidDecl();
2377 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2378 << ClassTemplateSpec;
2379
2380 // Print the matching partial specializations.
Craig Topper09d19ef2013-07-04 03:08:24 +00002381 for (SmallVectorImpl<MatchResult>::iterator P = Matched.begin(),
2382 PEnd = Matched.end();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002383 P != PEnd; ++P)
Douglas Gregor9b623632010-10-12 23:32:35 +00002384 Diag(P->Partial->getLocation(), diag::note_partial_spec_match)
2385 << getTemplateArgumentBindingsText(
2386 P->Partial->getTemplateParameters(),
2387 *P->Args);
Douglas Gregord6350ae2009-08-28 20:31:08 +00002388
Douglas Gregored9c0f92009-10-29 00:04:11 +00002389 return true;
2390 }
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002391 }
2392
2393 // Instantiate using the best class template partial specialization.
Douglas Gregor9b623632010-10-12 23:32:35 +00002394 ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->Partial;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002395 while (OrigPartialSpec->getInstantiatedFromMember()) {
2396 // If we've found an explicit specialization of this class template,
2397 // stop here and use that as the pattern.
2398 if (OrigPartialSpec->isMemberSpecialization())
2399 break;
2400
2401 OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember();
2402 }
2403
2404 Pattern = OrigPartialSpec;
Douglas Gregor9b623632010-10-12 23:32:35 +00002405 ClassTemplateSpec->setInstantiationOf(Best->Partial, Best->Args);
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002406 } else {
2407 // -- If no matches are found, the instantiation is generated
2408 // from the primary template.
Douglas Gregord6350ae2009-08-28 20:31:08 +00002409 ClassTemplateDecl *OrigTemplate = Template;
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002410 while (OrigTemplate->getInstantiatedFromMemberTemplate()) {
2411 // If we've found an explicit specialization of this class template,
2412 // stop here and use that as the pattern.
2413 if (OrigTemplate->isMemberSpecialization())
2414 break;
2415
Douglas Gregord6350ae2009-08-28 20:31:08 +00002416 OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate();
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002417 }
2418
Douglas Gregord6350ae2009-08-28 20:31:08 +00002419 Pattern = OrigTemplate->getTemplatedDecl();
Douglas Gregorc8ab2562009-05-31 09:31:02 +00002420 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002421
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002422 bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec,
2423 Pattern,
2424 getTemplateInstantiationArgs(ClassTemplateSpec),
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002425 TSK,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002426 Complain);
Mike Stump1eb44332009-09-09 15:08:12 +00002427
Douglas Gregor199d9912009-06-05 00:53:49 +00002428 return Result;
Douglas Gregor2943aed2009-03-03 04:44:36 +00002429}
Douglas Gregor5953d8b2009-03-19 17:26:29 +00002430
John McCallce3ff2b2009-08-25 22:02:44 +00002431/// \brief Instantiates the definitions of all of the member
2432/// of the given class, which is an instantiation of a class template
2433/// or a member class of a template.
Douglas Gregora58861f2009-05-13 20:28:22 +00002434void
2435Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002436 CXXRecordDecl *Instantiation,
2437 const MultiLevelTemplateArgumentList &TemplateArgs,
2438 TemplateSpecializationKind TSK) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002439 for (DeclContext::decl_iterator D = Instantiation->decls_begin(),
2440 DEnd = Instantiation->decls_end();
Douglas Gregora58861f2009-05-13 20:28:22 +00002441 D != DEnd; ++D) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002442 bool SuppressNew = false;
Douglas Gregora58861f2009-05-13 20:28:22 +00002443 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002444 if (FunctionDecl *Pattern
2445 = Function->getInstantiatedFromMemberFunction()) {
2446 MemberSpecializationInfo *MSInfo
2447 = Function->getMemberSpecializationInfo();
2448 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002449 if (MSInfo->getTemplateSpecializationKind()
2450 == TSK_ExplicitSpecialization)
2451 continue;
2452
Douglas Gregor0d035142009-10-27 18:42:08 +00002453 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2454 Function,
2455 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002456 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002457 SuppressNew) ||
2458 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002459 continue;
2460
Sean Hunt10620eb2011-05-06 20:44:56 +00002461 if (Function->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002462 continue;
2463
2464 if (TSK == TSK_ExplicitInstantiationDefinition) {
2465 // C++0x [temp.explicit]p8:
2466 // An explicit instantiation definition that names a class template
2467 // specialization explicitly instantiates the class template
2468 // specialization and is only an explicit instantiation definition
2469 // of members whose definition is visible at the point of
2470 // instantiation.
Sean Hunt10620eb2011-05-06 20:44:56 +00002471 if (!Pattern->isDefined())
Douglas Gregor0d035142009-10-27 18:42:08 +00002472 continue;
2473
2474 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2475
2476 InstantiateFunctionDefinition(PointOfInstantiation, Function);
2477 } else {
2478 Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2479 }
Douglas Gregorf6b11852009-10-08 15:14:33 +00002480 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002481 } else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) {
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002482 if (Var->isStaticDataMember()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002483 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
2484 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002485 if (MSInfo->getTemplateSpecializationKind()
2486 == TSK_ExplicitSpecialization)
2487 continue;
2488
Douglas Gregor0d035142009-10-27 18:42:08 +00002489 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2490 Var,
2491 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002492 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002493 SuppressNew) ||
2494 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002495 continue;
2496
Douglas Gregor0d035142009-10-27 18:42:08 +00002497 if (TSK == TSK_ExplicitInstantiationDefinition) {
2498 // C++0x [temp.explicit]p8:
2499 // An explicit instantiation definition that names a class template
2500 // specialization explicitly instantiates the class template
2501 // specialization and is only an explicit instantiation definition
2502 // of members whose definition is visible at the point of
2503 // instantiation.
2504 if (!Var->getInstantiatedFromStaticDataMember()
2505 ->getOutOfLineDefinition())
2506 continue;
2507
2508 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002509 InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var);
Douglas Gregor0d035142009-10-27 18:42:08 +00002510 } else {
2511 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
2512 }
2513 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002514 } else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) {
Douglas Gregora77eaa92010-04-18 18:11:38 +00002515 // Always skip the injected-class-name, along with any
2516 // redeclarations of nested classes, since both would cause us
2517 // to try to instantiate the members of a class twice.
Douglas Gregoref96ee02012-01-14 16:38:05 +00002518 if (Record->isInjectedClassName() || Record->getPreviousDecl())
Douglas Gregor2db32322009-10-07 23:56:10 +00002519 continue;
2520
Douglas Gregor0d035142009-10-27 18:42:08 +00002521 MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo();
2522 assert(MSInfo && "No member specialization information?");
Douglas Gregorc42b6522010-04-09 21:02:29 +00002523
2524 if (MSInfo->getTemplateSpecializationKind()
2525 == TSK_ExplicitSpecialization)
2526 continue;
Nico Weberc956b6e2010-09-27 21:02:09 +00002527
Douglas Gregor0d035142009-10-27 18:42:08 +00002528 if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
2529 Record,
2530 MSInfo->getTemplateSpecializationKind(),
Nico Weberc956b6e2010-09-27 21:02:09 +00002531 MSInfo->getPointOfInstantiation(),
Douglas Gregor0d035142009-10-27 18:42:08 +00002532 SuppressNew) ||
2533 SuppressNew)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002534 continue;
2535
Douglas Gregor0d035142009-10-27 18:42:08 +00002536 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
2537 assert(Pattern && "Missing instantiated-from-template information");
2538
Douglas Gregor952b0172010-02-11 01:04:33 +00002539 if (!Record->getDefinition()) {
2540 if (!Pattern->getDefinition()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002541 // C++0x [temp.explicit]p8:
2542 // An explicit instantiation definition that names a class template
2543 // specialization explicitly instantiates the class template
2544 // specialization and is only an explicit instantiation definition
2545 // of members whose definition is visible at the point of
2546 // instantiation.
2547 if (TSK == TSK_ExplicitInstantiationDeclaration) {
2548 MSInfo->setTemplateSpecializationKind(TSK);
2549 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2550 }
2551
2552 continue;
2553 }
2554
2555 InstantiateClass(PointOfInstantiation, Record, Pattern,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002556 TemplateArgs,
2557 TSK);
Nico Weberc956b6e2010-09-27 21:02:09 +00002558 } else {
2559 if (TSK == TSK_ExplicitInstantiationDefinition &&
2560 Record->getTemplateSpecializationKind() ==
2561 TSK_ExplicitInstantiationDeclaration) {
2562 Record->setTemplateSpecializationKind(TSK);
2563 MarkVTableUsed(PointOfInstantiation, Record, true);
2564 }
Douglas Gregor0d035142009-10-27 18:42:08 +00002565 }
Douglas Gregore9374d52009-10-08 01:19:17 +00002566
Douglas Gregor952b0172010-02-11 01:04:33 +00002567 Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor0d035142009-10-27 18:42:08 +00002568 if (Pattern)
2569 InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs,
2570 TSK);
Richard Smithf1c66b42012-03-14 23:13:10 +00002571 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(*D)) {
2572 MemberSpecializationInfo *MSInfo = Enum->getMemberSpecializationInfo();
2573 assert(MSInfo && "No member specialization information?");
2574
2575 if (MSInfo->getTemplateSpecializationKind()
2576 == TSK_ExplicitSpecialization)
2577 continue;
2578
2579 if (CheckSpecializationInstantiationRedecl(
2580 PointOfInstantiation, TSK, Enum,
2581 MSInfo->getTemplateSpecializationKind(),
2582 MSInfo->getPointOfInstantiation(), SuppressNew) ||
2583 SuppressNew)
2584 continue;
2585
2586 if (Enum->getDefinition())
2587 continue;
2588
2589 EnumDecl *Pattern = Enum->getInstantiatedFromMemberEnum();
2590 assert(Pattern && "Missing instantiated-from-template information");
2591
2592 if (TSK == TSK_ExplicitInstantiationDefinition) {
2593 if (!Pattern->getDefinition())
2594 continue;
2595
2596 InstantiateEnum(PointOfInstantiation, Enum, Pattern, TemplateArgs, TSK);
2597 } else {
2598 MSInfo->setTemplateSpecializationKind(TSK);
2599 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2600 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002601 }
2602 }
2603}
2604
2605/// \brief Instantiate the definitions of all of the members of the
2606/// given class template specialization, which was named as part of an
2607/// explicit instantiation.
Mike Stump1eb44332009-09-09 15:08:12 +00002608void
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002609Sema::InstantiateClassTemplateSpecializationMembers(
Douglas Gregora58861f2009-05-13 20:28:22 +00002610 SourceLocation PointOfInstantiation,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002611 ClassTemplateSpecializationDecl *ClassTemplateSpec,
2612 TemplateSpecializationKind TSK) {
Douglas Gregora58861f2009-05-13 20:28:22 +00002613 // C++0x [temp.explicit]p7:
2614 // An explicit instantiation that names a class template
2615 // specialization is an explicit instantion of the same kind
2616 // (declaration or definition) of each of its members (not
2617 // including members inherited from base classes) that has not
2618 // been previously explicitly specialized in the translation unit
2619 // containing the explicit instantiation, except as described
2620 // below.
2621 InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002622 getTemplateInstantiationArgs(ClassTemplateSpec),
2623 TSK);
Douglas Gregora58861f2009-05-13 20:28:22 +00002624}
2625
John McCall60d7b3a2010-08-24 06:29:42 +00002626StmtResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002627Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor43959a92009-08-20 07:17:43 +00002628 if (!S)
2629 return Owned(S);
2630
2631 TemplateInstantiator Instantiator(*this, TemplateArgs,
2632 SourceLocation(),
2633 DeclarationName());
2634 return Instantiator.TransformStmt(S);
2635}
2636
John McCall60d7b3a2010-08-24 06:29:42 +00002637ExprResult
Douglas Gregord6350ae2009-08-28 20:31:08 +00002638Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregorb98b1992009-08-11 05:31:07 +00002639 if (!E)
2640 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002641
Douglas Gregorb98b1992009-08-11 05:31:07 +00002642 TemplateInstantiator Instantiator(*this, TemplateArgs,
2643 SourceLocation(),
2644 DeclarationName());
2645 return Instantiator.TransformExpr(E);
2646}
2647
Richard Smithc83c2302012-12-19 01:39:02 +00002648ExprResult Sema::SubstInitializer(Expr *Init,
2649 const MultiLevelTemplateArgumentList &TemplateArgs,
2650 bool CXXDirectInit) {
2651 TemplateInstantiator Instantiator(*this, TemplateArgs,
2652 SourceLocation(),
2653 DeclarationName());
2654 return Instantiator.TransformInitializer(Init, CXXDirectInit);
2655}
2656
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002657bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall,
2658 const MultiLevelTemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002659 SmallVectorImpl<Expr *> &Outputs) {
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002660 if (NumExprs == 0)
2661 return false;
Richard Smithc83c2302012-12-19 01:39:02 +00002662
Douglas Gregor91fc73e2011-01-07 19:35:17 +00002663 TemplateInstantiator Instantiator(*this, TemplateArgs,
2664 SourceLocation(),
2665 DeclarationName());
2666 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
2667}
2668
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002669NestedNameSpecifierLoc
2670Sema::SubstNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
2671 const MultiLevelTemplateArgumentList &TemplateArgs) {
2672 if (!NNS)
2673 return NestedNameSpecifierLoc();
2674
2675 TemplateInstantiator Instantiator(*this, TemplateArgs, NNS.getBeginLoc(),
2676 DeclarationName());
2677 return Instantiator.TransformNestedNameSpecifierLoc(NNS);
2678}
2679
Abramo Bagnara25777432010-08-11 22:01:17 +00002680/// \brief Do template substitution on declaration name info.
2681DeclarationNameInfo
2682Sema::SubstDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
2683 const MultiLevelTemplateArgumentList &TemplateArgs) {
2684 TemplateInstantiator Instantiator(*this, TemplateArgs, NameInfo.getLoc(),
2685 NameInfo.getName());
2686 return Instantiator.TransformDeclarationNameInfo(NameInfo);
2687}
2688
Douglas Gregorde650ae2009-03-31 18:38:02 +00002689TemplateName
Douglas Gregor1d752d72011-03-02 18:46:51 +00002690Sema::SubstTemplateName(NestedNameSpecifierLoc QualifierLoc,
2691 TemplateName Name, SourceLocation Loc,
Douglas Gregord6350ae2009-08-28 20:31:08 +00002692 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord1067e52009-08-06 06:41:21 +00002693 TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
2694 DeclarationName());
Douglas Gregor1d752d72011-03-02 18:46:51 +00002695 CXXScopeSpec SS;
2696 SS.Adopt(QualifierLoc);
2697 return Instantiator.TransformTemplateName(SS, Name, Loc);
Douglas Gregorde650ae2009-03-31 18:38:02 +00002698}
Douglas Gregor91333002009-06-11 00:06:24 +00002699
Douglas Gregore02e2622010-12-22 21:19:48 +00002700bool Sema::Subst(const TemplateArgumentLoc *Args, unsigned NumArgs,
2701 TemplateArgumentListInfo &Result,
John McCall833ca992009-10-29 08:12:44 +00002702 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor670444e2009-08-04 22:27:00 +00002703 TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(),
2704 DeclarationName());
Douglas Gregore02e2622010-12-22 21:19:48 +00002705
2706 return Instantiator.TransformTemplateArguments(Args, NumArgs, Result);
Douglas Gregor91333002009-06-11 00:06:24 +00002707}
Douglas Gregor895162d2010-04-30 18:55:50 +00002708
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002709
2710static const Decl* getCanonicalParmVarDecl(const Decl *D) {
2711 // When storing ParmVarDecls in the local instantiation scope, we always
2712 // want to use the ParmVarDecl from the canonical function declaration,
2713 // since the map is then valid for any redeclaration or definition of that
2714 // function.
2715 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(D)) {
2716 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
2717 unsigned i = PV->getFunctionScopeIndex();
2718 return FD->getCanonicalDecl()->getParamDecl(i);
2719 }
2720 }
2721 return D;
2722}
2723
2724
Douglas Gregor12c9c002011-01-07 16:43:16 +00002725llvm::PointerUnion<Decl *, LocalInstantiationScope::DeclArgumentPack *> *
2726LocalInstantiationScope::findInstantiationOf(const Decl *D) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002727 D = getCanonicalParmVarDecl(D);
Chris Lattner57ad3782011-02-17 20:34:02 +00002728 for (LocalInstantiationScope *Current = this; Current;
Douglas Gregor895162d2010-04-30 18:55:50 +00002729 Current = Current->Outer) {
Chris Lattner57ad3782011-02-17 20:34:02 +00002730
Douglas Gregor895162d2010-04-30 18:55:50 +00002731 // Check if we found something within this scope.
Douglas Gregorebb1c562010-12-21 21:22:51 +00002732 const Decl *CheckD = D;
2733 do {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002734 LocalDeclsMap::iterator Found = Current->LocalDecls.find(CheckD);
Douglas Gregorebb1c562010-12-21 21:22:51 +00002735 if (Found != Current->LocalDecls.end())
Douglas Gregor12c9c002011-01-07 16:43:16 +00002736 return &Found->second;
Douglas Gregorebb1c562010-12-21 21:22:51 +00002737
2738 // If this is a tag declaration, it's possible that we need to look for
2739 // a previous declaration.
2740 if (const TagDecl *Tag = dyn_cast<TagDecl>(CheckD))
Douglas Gregoref96ee02012-01-14 16:38:05 +00002741 CheckD = Tag->getPreviousDecl();
Douglas Gregorebb1c562010-12-21 21:22:51 +00002742 else
2743 CheckD = 0;
2744 } while (CheckD);
2745
Douglas Gregor895162d2010-04-30 18:55:50 +00002746 // If we aren't combined with our outer scope, we're done.
2747 if (!Current->CombineWithOuterScope)
2748 break;
2749 }
Chris Lattner57ad3782011-02-17 20:34:02 +00002750
Serge Pavlovdc49d522013-07-15 06:14:07 +00002751 // If we're performing a partial substitution during template argument
2752 // deduction, we may not have values for template parameters yet.
2753 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
2754 isa<TemplateTemplateParmDecl>(D))
2755 return 0;
2756
Chris Lattner57ad3782011-02-17 20:34:02 +00002757 // If we didn't find the decl, then we either have a sema bug, or we have a
2758 // forward reference to a label declaration. Return null to indicate that
2759 // we have an uninstantiated label.
2760 assert(isa<LabelDecl>(D) && "declaration not instantiated in this scope");
Douglas Gregor895162d2010-04-30 18:55:50 +00002761 return 0;
2762}
2763
John McCall2a7fb272010-08-25 05:32:35 +00002764void LocalInstantiationScope::InstantiatedLocal(const Decl *D, Decl *Inst) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002765 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002766 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
Douglas Gregord3731192011-01-10 07:32:04 +00002767 if (Stored.isNull())
2768 Stored = Inst;
Benjamin Kramer3bbffd52013-04-12 15:22:25 +00002769 else if (DeclArgumentPack *Pack = Stored.dyn_cast<DeclArgumentPack *>())
2770 Pack->push_back(Inst);
2771 else
Douglas Gregord3731192011-01-10 07:32:04 +00002772 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
Douglas Gregor895162d2010-04-30 18:55:50 +00002773}
Douglas Gregor12c9c002011-01-07 16:43:16 +00002774
2775void LocalInstantiationScope::InstantiatedLocalPackArg(const Decl *D,
2776 Decl *Inst) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002777 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002778 DeclArgumentPack *Pack = LocalDecls[D].get<DeclArgumentPack *>();
2779 Pack->push_back(Inst);
2780}
2781
2782void LocalInstantiationScope::MakeInstantiatedLocalArgPack(const Decl *D) {
DeLesley Hutchinsd278dbe2012-09-26 17:57:31 +00002783 D = getCanonicalParmVarDecl(D);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002784 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2785 assert(Stored.isNull() && "Already instantiated this local");
2786 DeclArgumentPack *Pack = new DeclArgumentPack;
2787 Stored = Pack;
2788 ArgumentPacks.push_back(Pack);
2789}
2790
Douglas Gregord3731192011-01-10 07:32:04 +00002791void LocalInstantiationScope::SetPartiallySubstitutedPack(NamedDecl *Pack,
2792 const TemplateArgument *ExplicitArgs,
2793 unsigned NumExplicitArgs) {
2794 assert((!PartiallySubstitutedPack || PartiallySubstitutedPack == Pack) &&
2795 "Already have a partially-substituted pack");
2796 assert((!PartiallySubstitutedPack
2797 || NumArgsInPartiallySubstitutedPack == NumExplicitArgs) &&
2798 "Wrong number of arguments in partially-substituted pack");
2799 PartiallySubstitutedPack = Pack;
2800 ArgsInPartiallySubstitutedPack = ExplicitArgs;
2801 NumArgsInPartiallySubstitutedPack = NumExplicitArgs;
2802}
2803
2804NamedDecl *LocalInstantiationScope::getPartiallySubstitutedPack(
2805 const TemplateArgument **ExplicitArgs,
2806 unsigned *NumExplicitArgs) const {
2807 if (ExplicitArgs)
2808 *ExplicitArgs = 0;
2809 if (NumExplicitArgs)
2810 *NumExplicitArgs = 0;
2811
2812 for (const LocalInstantiationScope *Current = this; Current;
2813 Current = Current->Outer) {
2814 if (Current->PartiallySubstitutedPack) {
2815 if (ExplicitArgs)
2816 *ExplicitArgs = Current->ArgsInPartiallySubstitutedPack;
2817 if (NumExplicitArgs)
2818 *NumExplicitArgs = Current->NumArgsInPartiallySubstitutedPack;
2819
2820 return Current->PartiallySubstitutedPack;
2821 }
2822
2823 if (!Current->CombineWithOuterScope)
2824 break;
2825 }
2826
2827 return 0;
2828}