blob: f5405ff383b61e2b63c9fae85a675f6af2c0a4e9 [file] [log] [blame]
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001//===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl 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 for declarations.
10//
11//===----------------------------------------------------------------------===/
John McCall2d887082010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000013#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000014#include "clang/AST/ASTContext.h"
15#include "clang/AST/DeclTemplate.h"
16#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000017#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000018#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000019#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000020#include "clang/AST/TypeLoc.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000021#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Sema/Lookup.h"
23#include "clang/Sema/PrettyDeclStackTrace.h"
24#include "clang/Sema/Template.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000025
26using namespace clang;
27
John McCallb6217662010-03-15 10:12:16 +000028bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
29 DeclaratorDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000030 if (!OldDecl->getQualifierLoc())
31 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000032
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000033 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000034 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000035 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000036
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000037 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000038 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000039
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000040 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000041 return false;
42}
43
44bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
45 TagDecl *NewDecl) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000046 if (!OldDecl->getQualifierLoc())
47 return false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000048
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000049 NestedNameSpecifierLoc NewQualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000050 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000051 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000052
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000053 if (!NewQualifierLoc)
John McCallb6217662010-03-15 10:12:16 +000054 return true;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000055
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000056 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCallb6217662010-03-15 10:12:16 +000057 return false;
58}
59
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000060// Include attribute instantiation code.
61#include "clang/Sema/AttrTemplateInstantiate.inc"
62
John McCall1d8d1cc2010-08-01 02:01:53 +000063void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins23323e02012-01-20 22:50:54 +000064 const Decl *Tmpl, Decl *New,
65 LateInstantiatedAttrVec *LateAttrs,
66 LocalInstantiationScope *OuterMostScope) {
Sean Huntcf807c42010-08-18 23:23:40 +000067 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
68 i != e; ++i) {
69 const Attr *TmplAttr = *i;
DeLesley Hutchins23323e02012-01-20 22:50:54 +000070
Chandler Carruth4ced79f2010-06-25 03:22:07 +000071 // FIXME: This should be generalized to more than just the AlignedAttr.
72 if (const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr)) {
Sean Huntcf807c42010-08-18 23:23:40 +000073 if (Aligned->isAlignmentDependent()) {
Sean Huntcf807c42010-08-18 23:23:40 +000074 if (Aligned->isAlignmentExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +000075 // The alignment expression is a constant expression.
76 EnterExpressionEvaluationContext Unevaluated(*this,
77 Sema::ConstantEvaluated);
78
John McCall60d7b3a2010-08-24 06:29:42 +000079 ExprResult Result = SubstExpr(Aligned->getAlignmentExpr(),
Nick Lewycky7663f392010-11-20 01:29:55 +000080 TemplateArgs);
Sean Huntcf807c42010-08-18 23:23:40 +000081 if (!Result.isInvalid())
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000082 AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>(),
Richard Smith8f3aacc2013-01-29 04:21:28 +000083 Aligned->getIsMSDeclSpec(),
84 Aligned->getSpellingListIndex());
Richard Smithf6702a32011-12-20 02:08:33 +000085 } else {
Sean Huntcf807c42010-08-18 23:23:40 +000086 TypeSourceInfo *Result = SubstType(Aligned->getAlignmentType(),
Nick Lewycky7663f392010-11-20 01:29:55 +000087 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +000088 Aligned->getLocation(),
Nick Lewycky7663f392010-11-20 01:29:55 +000089 DeclarationName());
Sean Huntcf807c42010-08-18 23:23:40 +000090 if (Result)
Richard Smith8f3aacc2013-01-29 04:21:28 +000091 AddAlignedAttr(Aligned->getLocation(), New, Result,
92 Aligned->getIsMSDeclSpec(),
93 Aligned->getSpellingListIndex());
Sean Huntcf807c42010-08-18 23:23:40 +000094 }
Chandler Carruth4ced79f2010-06-25 03:22:07 +000095 continue;
96 }
97 }
98
DeLesley Hutchins23323e02012-01-20 22:50:54 +000099 if (TmplAttr->isLateParsed() && LateAttrs) {
100 // Late parsed attributes must be instantiated and attached after the
101 // enclosing class has been instantiated. See Sema::InstantiateClass.
102 LocalInstantiationScope *Saved = 0;
103 if (CurrentInstantiationScope)
104 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
105 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
106 } else {
Benjamin Kramer5bbc3852012-02-06 11:13:08 +0000107 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
108 *this, TemplateArgs);
Rafael Espindola31c195a2012-05-15 14:09:55 +0000109 if (NewAttr)
110 New->addAttr(NewAttr);
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000111 }
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000112 }
113}
114
Douglas Gregor4f722be2009-03-25 15:45:12 +0000115Decl *
116TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000117 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000118}
119
120Decl *
Chris Lattner57ad3782011-02-17 20:34:02 +0000121TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
122 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
123 D->getIdentifier());
124 Owner->addDecl(Inst);
125 return Inst;
126}
127
128Decl *
Douglas Gregor4f722be2009-03-25 15:45:12 +0000129TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000130 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor4f722be2009-03-25 15:45:12 +0000131}
132
John McCall3dbd3d52010-02-16 06:53:13 +0000133Decl *
134TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
135 NamespaceAliasDecl *Inst
136 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
137 D->getNamespaceLoc(),
138 D->getAliasLoc(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +0000139 D->getIdentifier(),
140 D->getQualifierLoc(),
John McCall3dbd3d52010-02-16 06:53:13 +0000141 D->getTargetNameLoc(),
142 D->getNamespace());
143 Owner->addDecl(Inst);
144 return Inst;
145}
146
Richard Smith3e4c6c42011-05-05 21:57:07 +0000147Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
148 bool IsTypeAlias) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000149 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000150 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000151 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000152 DI->getType()->isVariablyModifiedType()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000153 DI = SemaRef.SubstType(DI, TemplateArgs,
154 D->getLocation(), D->getDeclName());
155 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000157 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000158 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000159 } else {
160 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000161 }
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Richard Smithb5b37d12012-10-23 00:32:41 +0000163 // HACK: g++ has a bug where it gets the value kind of ?: wrong.
164 // libstdc++ relies upon this bug in its implementation of common_type.
165 // If we happen to be processing that implementation, fake up the g++ ?:
166 // semantics. See LWG issue 2141 for more information on the bug.
167 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>();
168 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext());
169 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) &&
170 DT->isReferenceType() &&
171 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() &&
172 RD->getIdentifier() && RD->getIdentifier()->isStr("common_type") &&
173 D->getIdentifier() && D->getIdentifier()->isStr("type") &&
174 SemaRef.getSourceManager().isInSystemHeader(D->getLocStart()))
175 // Fold it to the (non-reference) type which g++ would have produced.
176 DI = SemaRef.Context.getTrivialTypeSourceInfo(
177 DI->getType().getNonReferenceType());
178
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000179 // Create the new typedef
Richard Smith162e1c12011-04-15 14:24:37 +0000180 TypedefNameDecl *Typedef;
181 if (IsTypeAlias)
182 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
183 D->getLocation(), D->getIdentifier(), DI);
184 else
185 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
186 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000187 if (Invalid)
188 Typedef->setInvalidDecl();
189
John McCallcde5a402011-02-01 08:20:08 +0000190 // If the old typedef was the name for linkage purposes of an anonymous
191 // tag decl, re-establish that relationship for the new typedef.
192 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
193 TagDecl *oldTag = oldTagType->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000194 if (oldTag->getTypedefNameForAnonDecl() == D) {
John McCallcde5a402011-02-01 08:20:08 +0000195 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
Richard Smith162e1c12011-04-15 14:24:37 +0000196 assert(!newTag->getIdentifier() && !newTag->getTypedefNameForAnonDecl());
197 newTag->setTypedefNameForAnonDecl(Typedef);
John McCallcde5a402011-02-01 08:20:08 +0000198 }
Douglas Gregord57a38e2010-04-23 16:25:07 +0000199 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000200
Douglas Gregoref96ee02012-01-14 16:38:05 +0000201 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000202 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
203 TemplateArgs);
Douglas Gregorb7107222011-03-04 19:46:35 +0000204 if (!InstPrev)
205 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000206
Rafael Espindola5df37bd2011-12-26 22:42:47 +0000207 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
208
209 // If the typedef types are not identical, reject them.
210 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
211
212 Typedef->setPreviousDeclaration(InstPrevTypedef);
John McCall5126fd02009-12-30 00:31:22 +0000213 }
214
John McCall1d8d1cc2010-08-01 02:01:53 +0000215 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregord57a38e2010-04-23 16:25:07 +0000216
John McCall46460a62010-01-20 21:53:11 +0000217 Typedef->setAccess(D->getAccess());
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000219 return Typedef;
220}
221
Richard Smith162e1c12011-04-15 14:24:37 +0000222Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000223 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
224 Owner->addDecl(Typedef);
225 return Typedef;
Richard Smith162e1c12011-04-15 14:24:37 +0000226}
227
228Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000229 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
230 Owner->addDecl(Typedef);
231 return Typedef;
232}
233
234Decl *
235TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
236 // Create a local instantiation scope for this type alias template, which
237 // will contain the instantiations of the template parameters.
238 LocalInstantiationScope Scope(SemaRef);
239
240 TemplateParameterList *TempParams = D->getTemplateParameters();
241 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
242 if (!InstParams)
243 return 0;
244
245 TypeAliasDecl *Pattern = D->getTemplatedDecl();
246
247 TypeAliasTemplateDecl *PrevAliasTemplate = 0;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000248 if (Pattern->getPreviousDecl()) {
Richard Smith3e4c6c42011-05-05 21:57:07 +0000249 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikie3bc93e32012-12-19 00:45:41 +0000250 if (!Found.empty()) {
251 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
Richard Smith3e4c6c42011-05-05 21:57:07 +0000252 }
253 }
254
255 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
256 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
257 if (!AliasInst)
258 return 0;
259
260 TypeAliasTemplateDecl *Inst
261 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
262 D->getDeclName(), InstParams, AliasInst);
263 if (PrevAliasTemplate)
264 Inst->setPreviousDeclaration(PrevAliasTemplate);
265
266 Inst->setAccess(D->getAccess());
267
268 if (!PrevAliasTemplate)
269 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000270
Richard Smith3e4c6c42011-05-05 21:57:07 +0000271 Owner->addDecl(Inst);
272
273 return Inst;
Richard Smith162e1c12011-04-15 14:24:37 +0000274}
275
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000276Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Douglas Gregor9901c572010-05-21 00:31:19 +0000277 // If this is the variable for an anonymous struct or union,
278 // instantiate the anonymous struct/union type first.
279 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
280 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
281 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
282 return 0;
283
John McCallce3ff2b2009-08-25 22:02:44 +0000284 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000285 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000286 TemplateArgs,
287 D->getTypeSpecStartLoc(),
288 D->getDeclName());
289 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000290 return 0;
291
Douglas Gregorc6dbc3f2010-09-12 07:37:24 +0000292 if (DI->getType()->isFunctionType()) {
293 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
294 << D->isStaticDataMember() << DI->getType();
295 return 0;
296 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000297
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000298 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000299 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000300 D->getInnerLocStart(),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000301 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000302 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000303 D->getStorageClass(),
304 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000305 Var->setThreadSpecified(D->isThreadSpecified());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000306 Var->setInitStyle(D->getInitStyle());
Richard Smithad762fc2011-04-14 22:09:26 +0000307 Var->setCXXForRangeDecl(D->isCXXForRangeDecl());
Richard Smith796c1a12012-01-19 22:46:17 +0000308 Var->setConstexpr(D->isConstexpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000309
John McCallb6217662010-03-15 10:12:16 +0000310 // Substitute the nested name specifier, if any.
311 if (SubstQualifier(D, Var))
312 return 0;
313
Mike Stump1eb44332009-09-09 15:08:12 +0000314 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000315 // out-of-line, the instantiation will have the same lexical
316 // context (which will be a namespace scope) as the template.
317 if (D->isOutOfLine())
318 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000319
John McCall46460a62010-01-20 21:53:11 +0000320 Var->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000321
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000322 if (!D->isStaticDataMember()) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000323 Var->setUsed(D->isUsed(false));
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000324 Var->setReferenced(D->isReferenced());
325 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000326
Mike Stump390b4cc2009-05-16 07:39:55 +0000327 // FIXME: In theory, we could have a previous declaration for variables that
328 // are not static data members.
John McCall68263142009-11-18 22:49:29 +0000329 // FIXME: having to fake up a LookupResult is dumb.
330 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000331 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000332 if (D->isStaticDataMember())
333 SemaRef.LookupQualifiedName(Previous, Owner, false);
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000334
335 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +0000336 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor9aab9c42011-12-10 01:22:52 +0000337 SemaRef.inferObjCARCLifetime(Var))
338 Var->setInvalidDecl();
339
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +0000340 SemaRef.CheckVariableDeclaration(Var, Previous);
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Douglas Gregor7caa6822009-07-24 20:34:43 +0000342 if (D->isOutOfLine()) {
Richard Smith3e9ea0b2011-12-21 00:25:33 +0000343 D->getLexicalDeclContext()->addDecl(Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000344 Owner->makeDeclVisibleInContext(Var);
345 } else {
346 Owner->addDecl(Var);
Douglas Gregorf7d72f52010-05-03 20:22:41 +0000347 if (Owner->isFunctionOrMethod())
348 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Var);
Douglas Gregor7caa6822009-07-24 20:34:43 +0000349 }
DeLesley Hutchinsdd5756c2012-02-16 17:30:51 +0000350 SemaRef.InstantiateAttrs(TemplateArgs, D, Var, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000351
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000352 // Link instantiations of static data members back to the template from
353 // which they were instantiated.
354 if (Var->isStaticDataMember())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000355 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000356 TSK_ImplicitInstantiation);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000357
Douglas Gregor60c93c92010-02-09 07:26:29 +0000358 if (Var->getAnyInitializer()) {
359 // We already have an initializer in the class.
360 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000361 if (Var->isStaticDataMember() && !D->isOutOfLine())
Richard Smithadb1d4c2012-07-22 23:45:10 +0000362 SemaRef.PushExpressionEvaluationContext(Sema::ConstantEvaluated, D);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000363 else
Richard Smithadb1d4c2012-07-22 23:45:10 +0000364 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated, D);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000365
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000366 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000367 ExprResult Init = SemaRef.SubstInitializer(D->getInit(), TemplateArgs,
368 D->getInitStyle() == VarDecl::CallInit);
369 if (!Init.isInvalid()) {
Richard Smith34b41d92011-02-20 03:19:35 +0000370 bool TypeMayContainAuto = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000371 if (Init.get()) {
372 bool DirectInit = D->isDirectInit();
373 SemaRef.AddInitializerToDecl(Var, Init.take(), DirectInit,
374 TypeMayContainAuto);
375 } else
Eli Friedman6aeaa602012-01-05 22:34:08 +0000376 SemaRef.ActOnUninitializedDecl(Var, TypeMayContainAuto);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000377 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000378 // FIXME: Not too happy about invalidating the declaration
379 // because of a bogus initializer.
380 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000381 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000382
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000383 SemaRef.PopExpressionEvaluationContext();
Richard Smithad762fc2011-04-14 22:09:26 +0000384 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
385 !Var->isCXXForRangeDecl())
John McCalld226f652010-08-21 09:40:31 +0000386 SemaRef.ActOnUninitializedDecl(Var, false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000387
Richard Smithe3499ca2011-06-21 23:42:09 +0000388 // Diagnose unused local variables with dependent types, where the diagnostic
389 // will have been deferred.
390 if (!Var->isInvalidDecl() && Owner->isFunctionOrMethod() && !Var->isUsed() &&
391 D->getType()->isDependentType())
Douglas Gregor5764f612010-05-08 23:05:03 +0000392 SemaRef.DiagnoseUnusedDecl(Var);
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000393
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000394 return Var;
395}
396
Abramo Bagnara6206d532010-06-05 05:09:32 +0000397Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
398 AccessSpecDecl* AD
399 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
400 D->getAccessSpecifierLoc(), D->getColonLoc());
401 Owner->addHiddenDecl(AD);
402 return AD;
403}
404
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000405Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
406 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000407 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor561f8122011-07-01 01:22:09 +0000408 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor836adf62010-05-24 17:22:01 +0000409 DI->getType()->isVariablyModifiedType()) {
John McCall07fb6be2009-10-22 23:33:21 +0000410 DI = SemaRef.SubstType(DI, TemplateArgs,
411 D->getLocation(), D->getDeclName());
412 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000413 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000414 Invalid = true;
415 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000416 // C++ [temp.arg.type]p3:
417 // If a declaration acquires a function type through a type
418 // dependent on a template-parameter and this causes a
419 // declaration that does not use the syntactic form of a
420 // function declarator to have function type, the program is
421 // ill-formed.
422 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000423 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000424 Invalid = true;
425 }
Douglas Gregorb4eeaff2010-05-07 23:12:07 +0000426 } else {
427 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000428 }
429
430 Expr *BitWidth = D->getBitWidth();
431 if (Invalid)
432 BitWidth = 0;
433 else if (BitWidth) {
Richard Smithf6702a32011-12-20 02:08:33 +0000434 // The bit-width expression is a constant expression.
435 EnterExpressionEvaluationContext Unevaluated(SemaRef,
436 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000437
John McCall60d7b3a2010-08-24 06:29:42 +0000438 ExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000439 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000440 if (InstantiatedBitWidth.isInvalid()) {
441 Invalid = true;
442 BitWidth = 0;
443 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000444 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000445 }
446
John McCall07fb6be2009-10-22 23:33:21 +0000447 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
448 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000449 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000450 D->getLocation(),
451 D->isMutable(),
452 BitWidth,
Richard Smithca523302012-06-10 03:12:00 +0000453 D->getInClassInitStyle(),
Richard Smith703b6012012-05-23 04:22:22 +0000454 D->getInnerLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000455 D->getAccess(),
456 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000457 if (!Field) {
458 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000459 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000460 }
Mike Stump1eb44332009-09-09 15:08:12 +0000461
DeLesley Hutchins23323e02012-01-20 22:50:54 +0000462 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000463
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000464 if (Invalid)
465 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000467 if (!Field->getDeclName()) {
468 // Keep track of where this decl came from.
469 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000470 }
Douglas Gregor9901c572010-05-21 00:31:19 +0000471 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
472 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +0000473 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000474 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000475 }
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000477 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000478 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000479 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000480
481 return Field;
482}
483
Francois Pichet87c2e122010-11-21 06:08:52 +0000484Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
485 NamedDecl **NamedChain =
486 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
487
488 int i = 0;
489 for (IndirectFieldDecl::chain_iterator PI =
490 D->chain_begin(), PE = D->chain_end();
Douglas Gregorb7107222011-03-04 19:46:35 +0000491 PI != PE; ++PI) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000492 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), *PI,
Douglas Gregorb7107222011-03-04 19:46:35 +0000493 TemplateArgs);
494 if (!Next)
495 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000496
Douglas Gregorb7107222011-03-04 19:46:35 +0000497 NamedChain[i++] = Next;
498 }
Francois Pichet87c2e122010-11-21 06:08:52 +0000499
Francois Pichet40e17752010-12-09 10:07:54 +0000500 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Francois Pichet87c2e122010-11-21 06:08:52 +0000501 IndirectFieldDecl* IndirectField
502 = IndirectFieldDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Francois Pichet40e17752010-12-09 10:07:54 +0000503 D->getIdentifier(), T,
Francois Pichet87c2e122010-11-21 06:08:52 +0000504 NamedChain, D->getChainingSize());
505
506
507 IndirectField->setImplicit(D->isImplicit());
508 IndirectField->setAccess(D->getAccess());
509 Owner->addDecl(IndirectField);
510 return IndirectField;
511}
512
John McCall02cace72009-08-28 07:59:38 +0000513Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000514 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000515 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000516 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000517 TypeSourceInfo *InstTy;
518 // If this is an unsupported friend, don't bother substituting template
519 // arguments into it. The actual type referred to won't be used by any
520 // parts of Clang, and may not be valid for instantiating. Just use the
521 // same info for the instantiated friend.
522 if (D->isUnsupportedFriend()) {
523 InstTy = Ty;
524 } else {
525 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
526 D->getLocation(), DeclarationName());
527 }
528 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000529 return 0;
John McCall02cace72009-08-28 07:59:38 +0000530
Richard Smithd6f80da2012-09-20 01:31:00 +0000531 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(),
Abramo Bagnara0216df82011-10-29 20:52:52 +0000532 D->getFriendLoc(), InstTy);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000533 if (!FD)
534 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000535
Douglas Gregor06245bf2010-04-07 17:57:12 +0000536 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000537 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000538 Owner->addDecl(FD);
539 return FD;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000540 }
541
Douglas Gregor06245bf2010-04-07 17:57:12 +0000542 NamedDecl *ND = D->getFriendDecl();
543 assert(ND && "friend decl must be a decl or a type!");
544
John McCallaf2094e2010-04-08 09:05:18 +0000545 // All of the Visit implementations for the various potential friend
546 // declarations have to be carefully written to work for friend
547 // objects, with the most important detail being that the target
548 // decl should almost certainly not be placed in Owner.
549 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000550 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000551
John McCall02cace72009-08-28 07:59:38 +0000552 FriendDecl *FD =
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000553 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor06245bf2010-04-07 17:57:12 +0000554 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000555 FD->setAccess(AS_public);
John McCall9a34edb2010-10-19 01:40:49 +0000556 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCall02cace72009-08-28 07:59:38 +0000557 Owner->addDecl(FD);
558 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000559}
560
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000561Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
562 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Richard Smithf6702a32011-12-20 02:08:33 +0000564 // The expression in a static assertion is a constant expression.
565 EnterExpressionEvaluationContext Unevaluated(SemaRef,
566 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000567
John McCall60d7b3a2010-08-24 06:29:42 +0000568 ExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000569 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000570 if (InstantiatedAssertExpr.isInvalid())
571 return 0;
572
Richard Smithe3f470a2012-07-11 22:37:56 +0000573 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCall9ae2f072010-08-23 23:25:46 +0000574 InstantiatedAssertExpr.get(),
Richard Smithe3f470a2012-07-11 22:37:56 +0000575 D->getMessage(),
576 D->getRParenLoc(),
577 D->isFailed());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000578}
579
580Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Richard Smith38f0df32012-03-26 04:58:10 +0000581 EnumDecl *PrevDecl = 0;
582 if (D->getPreviousDecl()) {
583 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
584 D->getPreviousDecl(),
585 TemplateArgs);
586 if (!Prev) return 0;
587 PrevDecl = cast<EnumDecl>(Prev);
588 }
589
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000590 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000591 D->getLocation(), D->getIdentifier(),
Richard Smith38f0df32012-03-26 04:58:10 +0000592 PrevDecl, D->isScoped(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000593 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000594 if (D->isFixed()) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000595 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000596 // If we have type source information for the underlying type, it means it
597 // has been explicitly set by the user. Perform substitution on it before
598 // moving on.
599 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smithf1c66b42012-03-14 23:13:10 +0000600 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
601 DeclarationName());
602 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000603 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smithf1c66b42012-03-14 23:13:10 +0000604 else
605 Enum->setIntegerTypeSourceInfo(NewTI);
606 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000607 assert(!D->getIntegerType()->isDependentType()
608 && "Dependent type without type source info");
609 Enum->setIntegerType(D->getIntegerType());
610 }
611 }
612
John McCall5b629aa2010-10-22 23:36:17 +0000613 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
614
Richard Smithf1c66b42012-03-14 23:13:10 +0000615 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000616 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000617 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000618 Owner->addDecl(Enum);
Richard Smithf1c66b42012-03-14 23:13:10 +0000619
Richard Smith4ca93d92012-03-26 04:08:46 +0000620 EnumDecl *Def = D->getDefinition();
621 if (Def && Def != D) {
622 // If this is an out-of-line definition of an enum member template, check
623 // that the underlying types match in the instantiation of both
624 // declarations.
625 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
626 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
627 QualType DefnUnderlying =
628 SemaRef.SubstType(TI->getType(), TemplateArgs,
629 UnderlyingLoc, DeclarationName());
630 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
631 DefnUnderlying, Enum);
632 }
633 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000634
Douglas Gregor96084f12010-03-01 19:00:07 +0000635 if (D->getDeclContext()->isFunctionOrMethod())
636 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000637
Richard Smithf1c66b42012-03-14 23:13:10 +0000638 // C++11 [temp.inst]p1: The implicit instantiation of a class template
639 // specialization causes the implicit instantiation of the declarations, but
640 // not the definitions of scoped member enumerations.
641 // FIXME: There appears to be no wording for what happens for an enum defined
Richard Smith38f0df32012-03-26 04:58:10 +0000642 // within a block scope, but we treat that much like a member template. Only
643 // instantiate the definition when visiting the definition in that case, since
644 // we will visit all redeclarations.
645 if (!Enum->isScoped() && Def &&
646 (!D->getDeclContext()->isFunctionOrMethod() || D->isCompleteDefinition()))
Richard Smith4ca93d92012-03-26 04:08:46 +0000647 InstantiateEnumDefinition(Enum, Def);
Richard Smithf1c66b42012-03-14 23:13:10 +0000648
649 return Enum;
650}
651
652void TemplateDeclInstantiator::InstantiateEnumDefinition(
653 EnumDecl *Enum, EnumDecl *Pattern) {
654 Enum->startDefinition();
655
Richard Smith1af83c42012-03-23 03:33:32 +0000656 // Update the location to refer to the definition.
657 Enum->setLocation(Pattern->getLocation());
658
Chris Lattner5f9e2722011-07-23 10:55:15 +0000659 SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000660
661 EnumConstantDecl *LastEnumConst = 0;
Richard Smithf1c66b42012-03-14 23:13:10 +0000662 for (EnumDecl::enumerator_iterator EC = Pattern->enumerator_begin(),
663 ECEnd = Pattern->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000664 EC != ECEnd; ++EC) {
665 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000666 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000667 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smithf6702a32011-12-20 02:08:33 +0000668 // The enumerator's value expression is a constant expression.
Mike Stump1eb44332009-09-09 15:08:12 +0000669 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smithf6702a32011-12-20 02:08:33 +0000670 Sema::ConstantEvaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000671
John McCallce3ff2b2009-08-25 22:02:44 +0000672 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000673 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000674
675 // Drop the initial value and continue.
676 bool isInvalid = false;
677 if (Value.isInvalid()) {
678 Value = SemaRef.Owned((Expr *)0);
679 isInvalid = true;
680 }
681
Mike Stump1eb44332009-09-09 15:08:12 +0000682 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000683 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
684 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000685 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000686
687 if (isInvalid) {
688 if (EnumConst)
689 EnumConst->setInvalidDecl();
690 Enum->setInvalidDecl();
691 }
692
693 if (EnumConst) {
David Blaikie581deb32012-06-06 20:45:41 +0000694 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
John McCall5b629aa2010-10-22 23:36:17 +0000695
John McCall3b85ecf2010-01-23 22:37:59 +0000696 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000697 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000698 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000699 LastEnumConst = EnumConst;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000700
Richard Smithf1c66b42012-03-14 23:13:10 +0000701 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
702 !Enum->isScoped()) {
Douglas Gregor96084f12010-03-01 19:00:07 +0000703 // If the enumeration is within a function or method, record the enum
704 // constant as a local.
David Blaikie581deb32012-06-06 20:45:41 +0000705 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
Douglas Gregor96084f12010-03-01 19:00:07 +0000706 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000707 }
708 }
Mike Stump1eb44332009-09-09 15:08:12 +0000709
Richard Smithf1c66b42012-03-14 23:13:10 +0000710 // FIXME: Fixup LBraceLoc
711 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
712 Enum->getRBraceLoc(), Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000713 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000714 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000715}
716
Douglas Gregor6477b692009-03-25 15:04:13 +0000717Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000718 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor6477b692009-03-25 15:04:13 +0000719}
720
John McCalle29ba202009-08-20 01:44:21 +0000721Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000722 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
723
Douglas Gregor550d9b22009-10-31 17:21:17 +0000724 // Create a local instantiation scope for this class template, which
725 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000726 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000727 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000728 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000729 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000730 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000731
732 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000733
734 // Instantiate the qualifier. We have to do this first in case
735 // we're a friend declaration, because if we are then we need to put
736 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000737 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
738 if (QualifierLoc) {
739 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
740 TemplateArgs);
741 if (!QualifierLoc)
742 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000743 }
744
745 CXXRecordDecl *PrevDecl = 0;
746 ClassTemplateDecl *PrevClassTemplate = 0;
747
Douglas Gregoref96ee02012-01-14 16:38:05 +0000748 if (!isFriend && Pattern->getPreviousDecl()) {
Nick Lewycky37574f52010-11-08 23:29:42 +0000749 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikie3bc93e32012-12-19 00:45:41 +0000750 if (!Found.empty()) {
751 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky37574f52010-11-08 23:29:42 +0000752 if (PrevClassTemplate)
753 PrevDecl = PrevClassTemplate->getTemplatedDecl();
754 }
755 }
756
John McCall93ba8572010-03-25 06:39:04 +0000757 // If this isn't a friend, then it's a member template, in which
758 // case we just want to build the instantiation in the
759 // specialization. If it is a friend, we want to build it in
760 // the appropriate context.
761 DeclContext *DC = Owner;
762 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000763 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000764 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000765 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000766 DC = SemaRef.computeDeclContext(SS);
767 if (!DC) return 0;
768 } else {
769 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
770 Pattern->getDeclContext(),
771 TemplateArgs);
772 }
773
774 // Look for a previous declaration of the template in the owning
775 // context.
776 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
777 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
778 SemaRef.LookupQualifiedName(R, DC);
779
780 if (R.isSingleResult()) {
781 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
782 if (PrevClassTemplate)
783 PrevDecl = PrevClassTemplate->getTemplatedDecl();
784 }
785
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000786 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000787 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000788 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000789 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000790 return 0;
791 }
792
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000793 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000794 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000795 bool Complain = true;
796
797 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
798 // template for struct std::tr1::__detail::_Map_base, where the
799 // template parameters of the friend declaration don't match the
800 // template parameters of the original declaration. In this one
801 // case, we don't complain about the ill-formed friend
802 // declaration.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000803 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000804 Pattern->getIdentifier()->isStr("_Map_base") &&
805 DC->isNamespace() &&
806 cast<NamespaceDecl>(DC)->getIdentifier() &&
807 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
808 DeclContext *DCParent = DC->getParent();
809 if (DCParent->isNamespace() &&
810 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
811 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
812 DeclContext *DCParent2 = DCParent->getParent();
813 if (DCParent2->isNamespace() &&
814 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
815 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
816 DCParent2->getParent()->isTranslationUnit())
817 Complain = false;
818 }
819 }
820
John McCall93ba8572010-03-25 06:39:04 +0000821 TemplateParameterList *PrevParams
822 = PrevClassTemplate->getTemplateParameters();
823
824 // Make sure the parameter lists match.
825 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000826 Complain,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000827 Sema::TPL_TemplateMatch)) {
828 if (Complain)
829 return 0;
830
831 AdoptedPreviousTemplateParams = true;
832 InstParams = PrevParams;
833 }
John McCall93ba8572010-03-25 06:39:04 +0000834
835 // Do some additional validation, then merge default arguments
836 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000837 if (!AdoptedPreviousTemplateParams &&
838 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000839 Sema::TPC_ClassTemplate))
840 return 0;
841 }
842 }
843
John McCalle29ba202009-08-20 01:44:21 +0000844 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000845 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000846 Pattern->getLocStart(), Pattern->getLocation(),
847 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000848 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000849
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000850 if (QualifierLoc)
851 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000852
John McCalle29ba202009-08-20 01:44:21 +0000853 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000854 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
855 D->getIdentifier(), InstParams, RecordInst,
856 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000857 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000858
John McCall93ba8572010-03-25 06:39:04 +0000859 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000860 if (PrevClassTemplate)
861 Inst->setAccess(PrevClassTemplate->getAccess());
862 else
863 Inst->setAccess(D->getAccess());
864
John McCall93ba8572010-03-25 06:39:04 +0000865 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
866 // TODO: do we want to track the instantiation progeny of this
867 // friend target decl?
868 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000869 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000870 if (!PrevClassTemplate)
871 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000872 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000873
Douglas Gregorf0510d42009-10-12 23:11:44 +0000874 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000875 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000876 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000877
Douglas Gregor259571e2009-10-30 22:42:42 +0000878 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000879 if (isFriend) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000880 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnara4c515482011-11-26 13:33:46 +0000881 Inst->setLexicalDeclContext(Owner);
882 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000883 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000884 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000885
Abramo Bagnara4c515482011-11-26 13:33:46 +0000886 if (D->isOutOfLine()) {
887 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
888 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
889 }
890
John McCalle29ba202009-08-20 01:44:21 +0000891 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000892
893 if (!PrevClassTemplate) {
894 // Queue up any out-of-line partial specializations of this member
895 // class template; the client will force their instantiation once
896 // the enclosing class has been instantiated.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000897 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregord65587f2010-11-10 19:44:59 +0000898 D->getPartialSpecializations(PartialSpecs);
899 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
900 if (PartialSpecs[I]->isOutOfLine())
901 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
902 }
903
John McCalle29ba202009-08-20 01:44:21 +0000904 return Inst;
905}
906
Douglas Gregord60e1052009-08-27 16:57:43 +0000907Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000908TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
909 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000910 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000911
Douglas Gregored9c0f92009-10-29 00:04:11 +0000912 // Lookup the already-instantiated declaration in the instantiation
913 // of the class template and return that.
914 DeclContext::lookup_result Found
915 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikie3bc93e32012-12-19 00:45:41 +0000916 if (Found.empty())
Douglas Gregored9c0f92009-10-29 00:04:11 +0000917 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000918
Douglas Gregored9c0f92009-10-29 00:04:11 +0000919 ClassTemplateDecl *InstClassTemplate
David Blaikie3bc93e32012-12-19 00:45:41 +0000920 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregored9c0f92009-10-29 00:04:11 +0000921 if (!InstClassTemplate)
922 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000923
Douglas Gregord65587f2010-11-10 19:44:59 +0000924 if (ClassTemplatePartialSpecializationDecl *Result
925 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
926 return Result;
927
928 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000929}
930
931Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000932TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000933 // Create a local instantiation scope for this function template, which
934 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000935 // merged with the local instantiation scope for the function template
Douglas Gregor550d9b22009-10-31 17:21:17 +0000936 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000937 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000938
Douglas Gregord60e1052009-08-27 16:57:43 +0000939 TemplateParameterList *TempParams = D->getTemplateParameters();
940 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000941 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000942 return NULL;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000943
Douglas Gregora735b202009-10-13 14:39:41 +0000944 FunctionDecl *Instantiated = 0;
945 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000946 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregora735b202009-10-13 14:39:41 +0000947 InstParams));
948 else
949 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000950 D->getTemplatedDecl(),
Douglas Gregora735b202009-10-13 14:39:41 +0000951 InstParams));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000952
Douglas Gregora735b202009-10-13 14:39:41 +0000953 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000954 return 0;
955
Mike Stump1eb44332009-09-09 15:08:12 +0000956 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000957 // template from which it was instantiated.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000958 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000959 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000960 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000961 assert(InstTemplate &&
Douglas Gregora735b202009-10-13 14:39:41 +0000962 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000963
John McCallb1a56e72010-03-26 23:10:15 +0000964 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
965
John McCalle976ffe2009-12-14 23:19:40 +0000966 // Link the instantiation back to the pattern *unless* this is a
967 // non-definition friend declaration.
968 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000969 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000970 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000971
John McCallb1a56e72010-03-26 23:10:15 +0000972 // Make declarations visible in the appropriate context.
John McCall1f2e1a92012-08-10 03:15:35 +0000973 if (!isFriend) {
Douglas Gregora735b202009-10-13 14:39:41 +0000974 Owner->addDecl(InstTemplate);
John McCall1f2e1a92012-08-10 03:15:35 +0000975 } else if (InstTemplate->getDeclContext()->isRecord() &&
976 !D->getPreviousDecl()) {
977 SemaRef.CheckFriendAccess(InstTemplate);
978 }
John McCallb1a56e72010-03-26 23:10:15 +0000979
Douglas Gregord60e1052009-08-27 16:57:43 +0000980 return InstTemplate;
981}
982
Douglas Gregord475b8d2009-03-25 21:17:03 +0000983Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
984 CXXRecordDecl *PrevDecl = 0;
985 if (D->isInjectedClassName())
986 PrevDecl = cast<CXXRecordDecl>(Owner);
Douglas Gregoref96ee02012-01-14 16:38:05 +0000987 else if (D->getPreviousDecl()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000988 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Douglas Gregoref96ee02012-01-14 16:38:05 +0000989 D->getPreviousDecl(),
John McCall6c1c1b82009-12-15 22:29:06 +0000990 TemplateArgs);
991 if (!Prev) return 0;
992 PrevDecl = cast<CXXRecordDecl>(Prev);
993 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000994
995 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000996 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000997 D->getLocStart(), D->getLocation(),
998 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000999
1000 // Substitute the nested name specifier, if any.
1001 if (SubstQualifier(D, Record))
1002 return 0;
1003
Douglas Gregord475b8d2009-03-25 21:17:03 +00001004 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +00001005 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1006 // the tag decls introduced by friend class declarations don't have an access
1007 // specifier. Remove once this area of the code gets sorted out.
1008 if (D->getAccess() != AS_none)
1009 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +00001010 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001011 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001012
John McCall02cace72009-08-28 07:59:38 +00001013 // If the original function was part of a friend declaration,
1014 // inherit its namespace state.
1015 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
1016 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
1017
Douglas Gregor9901c572010-05-21 00:31:19 +00001018 // Make sure that anonymous structs and unions are recorded.
1019 if (D->isAnonymousStructOrUnion()) {
1020 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +00001021 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +00001022 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
1023 }
Anders Carlssond8b285f2009-09-01 04:26:58 +00001024
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001025 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001026 return Record;
1027}
1028
Douglas Gregor71074fd2012-09-13 21:56:43 +00001029/// \brief Adjust the given function type for an instantiation of the
1030/// given declaration, to cope with modifications to the function's type that
1031/// aren't reflected in the type-source information.
1032///
1033/// \param D The declaration we're instantiating.
1034/// \param TInfo The already-instantiated type.
1035static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1036 FunctionDecl *D,
1037 TypeSourceInfo *TInfo) {
Douglas Gregorbed51fe2012-09-13 22:01:49 +00001038 const FunctionProtoType *OrigFunc
1039 = D->getType()->castAs<FunctionProtoType>();
1040 const FunctionProtoType *NewFunc
1041 = TInfo->getType()->castAs<FunctionProtoType>();
1042 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1043 return TInfo->getType();
1044
1045 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1046 NewEPI.ExtInfo = OrigFunc->getExtInfo();
1047 return Context.getFunctionType(NewFunc->getResultType(),
1048 NewFunc->arg_type_begin(),
1049 NewFunc->getNumArgs(),
1050 NewEPI);
Douglas Gregor71074fd2012-09-13 21:56:43 +00001051}
1052
John McCall02cace72009-08-28 07:59:38 +00001053/// Normal class members are of more specific types and therefore
1054/// don't make it here. This function serves two purposes:
1055/// 1) instantiating function templates
1056/// 2) substituting friend declarations
1057/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +00001058Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +00001059 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +00001060 // Check whether there is already a function template specialization for
1061 // this declaration.
1062 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCallb0cb0222010-03-27 05:57:59 +00001063 if (FunctionTemplate && !TemplateParams) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001064 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001065 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001067 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001068 FunctionDecl *SpecFunc
1069 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1070 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001071
Douglas Gregor127102b2009-06-29 20:59:39 +00001072 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001073 if (SpecFunc)
1074 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +00001075 }
Mike Stump1eb44332009-09-09 15:08:12 +00001076
John McCallb0cb0222010-03-27 05:57:59 +00001077 bool isFriend;
1078 if (FunctionTemplate)
1079 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1080 else
1081 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1082
Douglas Gregor79c22782010-01-16 20:21:20 +00001083 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +00001084 Owner->isFunctionOrMethod() ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001085 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001086 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001087 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001088
Chris Lattner5f9e2722011-07-23 10:55:15 +00001089 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie64b4b432011-11-10 05:42:04 +00001090 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001091 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001092 return 0;
Douglas Gregor71074fd2012-09-13 21:56:43 +00001093 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCallfd810b12009-08-14 02:03:10 +00001094
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001095 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1096 if (QualifierLoc) {
1097 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1098 TemplateArgs);
1099 if (!QualifierLoc)
1100 return 0;
John McCalld325daa2010-03-26 04:53:08 +00001101 }
1102
John McCall68b6b872010-02-06 01:50:47 +00001103 // If we're instantiating a local function declaration, put the result
1104 // in the owner; otherwise we need to find the instantiated context.
1105 DeclContext *DC;
1106 if (D->getDeclContext()->isFunctionOrMethod())
1107 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001108 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +00001109 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001110 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +00001111 DC = SemaRef.computeDeclContext(SS);
1112 if (!DC) return 0;
1113 } else {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001114 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001115 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001116 }
John McCall68b6b872010-02-06 01:50:47 +00001117
John McCall02cace72009-08-28 07:59:38 +00001118 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001119 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
Abramo Bagnara635311f2012-10-04 21:40:42 +00001120 D->getNameInfo(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001121 D->getStorageClass(), D->getStorageClassAsWritten(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001122 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001123 D->isConstexpr());
John McCallb6217662010-03-15 10:12:16 +00001124
Richard Smithd4497dd2013-01-25 00:08:28 +00001125 if (D->isInlined())
1126 Function->setImplicitlyInline();
1127
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001128 if (QualifierLoc)
1129 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001130
John McCallb1a56e72010-03-26 23:10:15 +00001131 DeclContext *LexicalDC = Owner;
1132 if (!isFriend && D->isOutOfLine()) {
1133 assert(D->getDeclContext()->isFileContext());
1134 LexicalDC = D->getDeclContext();
1135 }
1136
1137 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Douglas Gregore53060f2009-06-25 22:08:12 +00001139 // Attach the parameters
Douglas Gregor5cbe1012011-07-05 18:30:26 +00001140 if (isa<FunctionProtoType>(Function->getType().IgnoreParens())) {
Douglas Gregor1d441ee2011-06-22 18:16:25 +00001141 // Adopt the already-instantiated parameters into our own context.
1142 for (unsigned P = 0; P < Params.size(); ++P)
1143 if (Params[P])
1144 Params[P]->setOwningFunction(Function);
1145 } else {
1146 // Since we were instantiated via a typedef of a function type, create
1147 // new parameters.
1148 const FunctionProtoType *Proto
1149 = Function->getType()->getAs<FunctionProtoType>();
1150 assert(Proto && "No function prototype in template instantiation?");
1151 for (FunctionProtoType::arg_type_iterator AI = Proto->arg_type_begin(),
1152 AE = Proto->arg_type_end(); AI != AE; ++AI) {
1153 ParmVarDecl *Param
1154 = SemaRef.BuildParmVarDeclForTypedef(Function, Function->getLocation(),
1155 *AI);
1156 Param->setScopeInfo(0, Params.size());
1157 Params.push_back(Param);
1158 }
1159 }
David Blaikie4278c652011-09-21 18:16:56 +00001160 Function->setParams(Params);
John McCall02cace72009-08-28 07:59:38 +00001161
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001162 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001163 if (TemplateParams) {
1164 // Our resulting instantiation is actually a function template, since we
1165 // are substituting only the outer template parameters. For example, given
1166 //
1167 // template<typename T>
1168 // struct X {
1169 // template<typename U> friend void f(T, U);
1170 // };
1171 //
1172 // X<int> x;
1173 //
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001174 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregora735b202009-10-13 14:39:41 +00001175 // which means substituting int for T, but leaving "f" as a friend function
1176 // template.
1177 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001178 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001179 Function->getLocation(),
1180 Function->getDeclName(),
1181 TemplateParams, Function);
1182 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001183
1184 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001185
1186 if (isFriend && D->isThisDeclarationADefinition()) {
1187 // TODO: should we remember this connection regardless of whether
1188 // the friend declaration provided a body?
1189 FunctionTemplate->setInstantiatedFromMemberTemplate(
1190 D->getDescribedFunctionTemplate());
1191 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001192 } else if (FunctionTemplate) {
1193 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001194 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001195 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001196 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001197 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001198 Innermost.first,
1199 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001200 /*InsertPos=*/0);
Chandler Carruth80f5b162011-08-18 09:09:59 +00001201 } else if (isFriend) {
1202 // Note, we need this connection even if the friend doesn't have a body.
1203 // Its body may exist but not have been attached yet due to deferred
1204 // parsing.
1205 // FIXME: It might be cleaner to set this when attaching the body to the
1206 // friend function declaration, however that would require finding all the
1207 // instantiations and modifying them.
John McCalld325daa2010-03-26 04:53:08 +00001208 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001209 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001210
Douglas Gregore53060f2009-06-25 22:08:12 +00001211 if (InitFunctionInstantiation(Function, D))
1212 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001213
John McCallaf2094e2010-04-08 09:05:18 +00001214 bool isExplicitSpecialization = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001215
John McCall68263142009-11-18 22:49:29 +00001216 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1217 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1218
John McCallaf2094e2010-04-08 09:05:18 +00001219 if (DependentFunctionTemplateSpecializationInfo *Info
1220 = D->getDependentSpecializationInfo()) {
1221 assert(isFriend && "non-friend has dependent specialization info?");
1222
1223 // This needs to be set now for future sanity.
1224 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1225
1226 // Instantiate the explicit template arguments.
1227 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1228 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001229 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1230 ExplicitArgs, TemplateArgs))
1231 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001232
1233 // Map the candidate templates to their instantiations.
1234 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1235 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1236 Info->getTemplate(I),
1237 TemplateArgs);
1238 if (!Temp) return 0;
1239
1240 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1241 }
1242
1243 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1244 &ExplicitArgs,
1245 Previous))
1246 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001247
John McCallaf2094e2010-04-08 09:05:18 +00001248 isExplicitSpecialization = true;
1249
1250 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001251 // Look only into the namespace where the friend would be declared to
1252 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregora735b202009-10-13 14:39:41 +00001253 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001254 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001255
Douglas Gregora735b202009-10-13 14:39:41 +00001256 // In C++, the previous declaration we find might be a tag type
1257 // (class or enum). In this case, the new declaration will hide the
1258 // tag type. Note that this does does not apply if we're declaring a
1259 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001260 if (Previous.isSingleTagDecl())
1261 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001262 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001263
John McCall9f54ad42009-12-10 09:41:52 +00001264 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001265 isExplicitSpecialization);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001266
John McCall76d32642010-04-24 01:30:58 +00001267 NamedDecl *PrincipalDecl = (TemplateParams
1268 ? cast<NamedDecl>(FunctionTemplate)
1269 : Function);
1270
Douglas Gregora735b202009-10-13 14:39:41 +00001271 // If the original function was part of a friend declaration,
1272 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001273 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001274 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001275 if (TemplateParams)
Douglas Gregoref96ee02012-01-14 16:38:05 +00001276 PrevDecl = FunctionTemplate->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001277 else
Douglas Gregoref96ee02012-01-14 16:38:05 +00001278 PrevDecl = Function->getPreviousDecl();
John McCall76d32642010-04-24 01:30:58 +00001279
1280 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001281 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greifab297ac2010-08-30 21:10:05 +00001282
Gabor Greif77535df2010-08-30 22:25:56 +00001283 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001284
Richard Smith53e53512011-10-19 00:54:10 +00001285 // C++98 [temp.friend]p5: When a function is defined in a friend function
1286 // declaration in a class template, the function is defined at each
1287 // instantiation of the class template. The function is defined even if it
1288 // is never used.
1289 // C++11 [temp.friend]p4: When a function is defined in a friend function
1290 // declaration in a class template, the function is instantiated when the
1291 // function is odr-used.
1292 //
1293 // If -Wc++98-compat is enabled, we go through the motions of checking for a
1294 // redefinition, but don't instantiate the function.
Richard Smith80ad52f2013-01-02 11:42:31 +00001295 if ((!SemaRef.getLangOpts().CPlusPlus11 ||
Richard Smith53e53512011-10-19 00:54:10 +00001296 SemaRef.Diags.getDiagnosticLevel(
1297 diag::warn_cxx98_compat_friend_redefinition,
1298 Function->getLocation())
1299 != DiagnosticsEngine::Ignored) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001300 D->isThisDeclarationADefinition()) {
1301 // Check for a function body.
1302 const FunctionDecl *Definition = 0;
Sean Hunt10620eb2011-05-06 20:44:56 +00001303 if (Function->isDefined(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001304 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith53e53512011-10-19 00:54:10 +00001305 SemaRef.Diag(Function->getLocation(),
Richard Smith80ad52f2013-01-02 11:42:31 +00001306 SemaRef.getLangOpts().CPlusPlus11 ?
Richard Smith53e53512011-10-19 00:54:10 +00001307 diag::warn_cxx98_compat_friend_redefinition :
1308 diag::err_redefinition) << Function->getDeclName();
Douglas Gregor238058c2010-05-18 05:45:02 +00001309 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
Richard Smith80ad52f2013-01-02 11:42:31 +00001310 if (!SemaRef.getLangOpts().CPlusPlus11)
Richard Smith53e53512011-10-19 00:54:10 +00001311 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001312 }
Douglas Gregor238058c2010-05-18 05:45:02 +00001313 // Check for redefinitions due to other instantiations of this or
1314 // a similar friend function.
1315 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1316 REnd = Function->redecls_end();
1317 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001318 if (*R == Function)
1319 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001320 switch (R->getFriendObjectKind()) {
1321 case Decl::FOK_None:
Richard Smith80ad52f2013-01-02 11:42:31 +00001322 if (!SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith53e53512011-10-19 00:54:10 +00001323 !queuedInstantiation && R->isUsed(false)) {
Gabor Greifab297ac2010-08-30 21:10:05 +00001324 if (MemberSpecializationInfo *MSInfo
1325 = Function->getMemberSpecializationInfo()) {
1326 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1327 SourceLocation Loc = R->getLocation(); // FIXME
1328 MSInfo->setPointOfInstantiation(Loc);
1329 SemaRef.PendingLocalImplicitInstantiations.push_back(
1330 std::make_pair(Function, Loc));
1331 queuedInstantiation = true;
1332 }
1333 }
1334 }
1335 break;
1336 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001337 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001338 = R->getTemplateInstantiationPattern())
Sean Hunt10620eb2011-05-06 20:44:56 +00001339 if (RPattern->isDefined(RPattern)) {
Richard Smith53e53512011-10-19 00:54:10 +00001340 SemaRef.Diag(Function->getLocation(),
Richard Smith80ad52f2013-01-02 11:42:31 +00001341 SemaRef.getLangOpts().CPlusPlus11 ?
Richard Smith53e53512011-10-19 00:54:10 +00001342 diag::warn_cxx98_compat_friend_redefinition :
1343 diag::err_redefinition)
Douglas Gregor238058c2010-05-18 05:45:02 +00001344 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001345 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Richard Smith80ad52f2013-01-02 11:42:31 +00001346 if (!SemaRef.getLangOpts().CPlusPlus11)
Richard Smith53e53512011-10-19 00:54:10 +00001347 Function->setInvalidDecl();
Douglas Gregor238058c2010-05-18 05:45:02 +00001348 break;
1349 }
1350 }
1351 }
1352 }
Douglas Gregora735b202009-10-13 14:39:41 +00001353 }
1354
John McCall76d32642010-04-24 01:30:58 +00001355 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1356 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1357 PrincipalDecl->setNonMemberOperator();
1358
Sean Hunteb88ae52011-05-23 21:07:59 +00001359 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregore53060f2009-06-25 22:08:12 +00001360 return Function;
1361}
1362
Douglas Gregord60e1052009-08-27 16:57:43 +00001363Decl *
1364TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001365 TemplateParameterList *TemplateParams,
1366 bool IsClassScopeSpecialization) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001367 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregord60e1052009-08-27 16:57:43 +00001368 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001369 // We are creating a function template specialization from a function
1370 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001371 // specialization for this particular set of template arguments.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001372 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001373 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001375 void *InsertPos = 0;
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001376 FunctionDecl *SpecFunc
1377 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1378 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001379
Douglas Gregor6b906862009-08-21 00:16:32 +00001380 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001381 if (SpecFunc)
1382 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001383 }
1384
John McCallb0cb0222010-03-27 05:57:59 +00001385 bool isFriend;
1386 if (FunctionTemplate)
1387 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1388 else
1389 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1390
Douglas Gregor79c22782010-01-16 20:21:20 +00001391 bool MergeWithParentScope = (TemplateParams != 0) ||
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001392 !(isa<Decl>(Owner) &&
Douglas Gregor79c22782010-01-16 20:21:20 +00001393 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001394 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001395
John McCall4eab39f2010-10-19 02:26:41 +00001396 // Instantiate enclosing template arguments for friends.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001397 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCall4eab39f2010-10-19 02:26:41 +00001398 unsigned NumTempParamLists = 0;
1399 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1400 TempParamLists.set_size(NumTempParamLists);
1401 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1402 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1403 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1404 if (!InstParams)
1405 return NULL;
1406 TempParamLists[I] = InstParams;
1407 }
1408 }
1409
Chris Lattner5f9e2722011-07-23 10:55:15 +00001410 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramerdc370c12012-01-20 14:42:32 +00001411 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall21ef0fa2010-03-11 09:03:00 +00001412 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001413 return 0;
Douglas Gregor71074fd2012-09-13 21:56:43 +00001414 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001415
Abramo Bagnara723df242010-12-14 22:11:44 +00001416 // \brief If the type of this function, after ignoring parentheses,
1417 // is not *directly* a function type, then we're instantiating a function
1418 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001419 //
1420 // typedef int functype(int, int);
1421 // functype func;
1422 //
1423 // In this case, we'll just go instantiate the ParmVarDecls that we
1424 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001425 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001426 assert(!Params.size() && "Instantiating type could not yield parameters");
Chris Lattner5f9e2722011-07-23 10:55:15 +00001427 SmallVector<QualType, 4> ParamTypes;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001428 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1429 D->getNumParams(), TemplateArgs, ParamTypes,
Douglas Gregor12c9c002011-01-07 16:43:16 +00001430 &Params))
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001431 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001432 }
1433
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001434 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1435 if (QualifierLoc) {
1436 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001437 TemplateArgs);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001438 if (!QualifierLoc)
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001439 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001440 }
1441
1442 DeclContext *DC = Owner;
1443 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001444 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001445 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001446 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001447 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001448
1449 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1450 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001451 } else {
1452 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1453 D->getDeclContext(),
1454 TemplateArgs);
1455 }
1456 if (!DC) return 0;
1457 }
1458
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001459 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001460 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001461 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001462
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001463 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001464 DeclarationNameInfo NameInfo
1465 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001466 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001467 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001468 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001469 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001470 Constructor->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001471 false, Constructor->isConstexpr());
Douglas Gregor17e32f32009-08-21 22:43:28 +00001472 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001473 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001474 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001475 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001476 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001477 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001478 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001479 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001480 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001481 Conversion->isExplicit(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001482 Conversion->isConstexpr(),
Richard Smith9f569cc2011-10-01 02:31:28 +00001483 Conversion->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001484 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001485 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001486 StartLoc, NameInfo, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001487 D->isStatic(),
1488 D->getStorageClassAsWritten(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001489 D->isInlineSpecified(),
Richard Smith86c3ae42012-02-13 03:54:03 +00001490 D->isConstexpr(), D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001491 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001492
Richard Smithd4497dd2013-01-25 00:08:28 +00001493 if (D->isInlined())
1494 Method->setImplicitlyInline();
1495
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001496 if (QualifierLoc)
1497 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001498
Douglas Gregord60e1052009-08-27 16:57:43 +00001499 if (TemplateParams) {
1500 // Our resulting instantiation is actually a function template, since we
1501 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001502 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001503 // template<typename T>
1504 // struct X {
1505 // template<typename U> void f(T, U);
1506 // };
1507 //
1508 // X<int> x;
1509 //
1510 // We are instantiating the member template "f" within X<int>, which means
1511 // substituting int for T, but leaving "f" as a member function template.
1512 // Build the function template itself.
1513 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1514 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001515 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001516 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001517 if (isFriend) {
1518 FunctionTemplate->setLexicalDeclContext(Owner);
1519 FunctionTemplate->setObjectOfFriendDecl(true);
1520 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001521 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001522 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001523 } else if (FunctionTemplate) {
1524 // Record this function template specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001525 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregor24bae922010-07-08 18:37:38 +00001526 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001527 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001528 TemplateArgumentList::CreateCopy(SemaRef.Context,
1529 Innermost.first,
1530 Innermost.second),
Douglas Gregor1e1e9722012-03-28 14:34:23 +00001531 /*InsertPos=*/0);
John McCallb0cb0222010-03-27 05:57:59 +00001532 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001533 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001534 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001535 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001536
Mike Stump1eb44332009-09-09 15:08:12 +00001537 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001538 // out-of-line, the instantiation will have the same lexical
1539 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001540 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001541 if (NumTempParamLists)
1542 Method->setTemplateParameterListsInfo(SemaRef.Context,
1543 NumTempParamLists,
1544 TempParamLists.data());
1545
John McCallb0cb0222010-03-27 05:57:59 +00001546 Method->setLexicalDeclContext(Owner);
1547 Method->setObjectOfFriendDecl(true);
1548 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001549 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001550
Douglas Gregor5545e162009-03-24 00:38:23 +00001551 // Attach the parameters
1552 for (unsigned P = 0; P < Params.size(); ++P)
1553 Params[P]->setOwningFunction(Method);
David Blaikie4278c652011-09-21 18:16:56 +00001554 Method->setParams(Params);
Douglas Gregor5545e162009-03-24 00:38:23 +00001555
1556 if (InitMethodInstantiation(Method, D))
1557 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001558
Abramo Bagnara25777432010-08-11 22:01:17 +00001559 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1560 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001561
John McCallb0cb0222010-03-27 05:57:59 +00001562 if (!FunctionTemplate || TemplateParams || isFriend) {
1563 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001564
Douglas Gregordec06662009-08-21 18:42:58 +00001565 // In C++, the previous declaration we find might be a tag type
1566 // (class or enum). In this case, the new declaration will hide the
1567 // tag type. Note that this does does not apply if we're declaring a
1568 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001569 if (Previous.isSingleTagDecl())
1570 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001571 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001572
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001573 if (!IsClassScopeSpecialization)
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001574 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001575
Douglas Gregor4ba31362009-12-01 17:24:26 +00001576 if (D->isPure())
1577 SemaRef.CheckPureMethod(Method, SourceRange());
1578
John McCall1f2e1a92012-08-10 03:15:35 +00001579 // Propagate access. For a non-friend declaration, the access is
1580 // whatever we're propagating from. For a friend, it should be the
1581 // previous declaration we just found.
1582 if (isFriend && Method->getPreviousDecl())
1583 Method->setAccess(Method->getPreviousDecl()->getAccess());
1584 else
1585 Method->setAccess(D->getAccess());
1586 if (FunctionTemplate)
1587 FunctionTemplate->setAccess(Method->getAccess());
John McCall46460a62010-01-20 21:53:11 +00001588
Anders Carlsson9eefa222011-01-20 06:52:44 +00001589 SemaRef.CheckOverrideControl(Method);
1590
Eli Friedman3bc45152011-11-15 22:39:08 +00001591 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smithac713512012-12-08 02:53:02 +00001592 if (D->isExplicitlyDefaulted())
1593 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman3bc45152011-11-15 22:39:08 +00001594 if (D->isDeletedAsWritten())
Richard Smithac713512012-12-08 02:53:02 +00001595 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman3bc45152011-11-15 22:39:08 +00001596
John McCall1f2e1a92012-08-10 03:15:35 +00001597 // If there's a function template, let our caller handle it.
John McCallb0cb0222010-03-27 05:57:59 +00001598 if (FunctionTemplate) {
John McCall1f2e1a92012-08-10 03:15:35 +00001599 // do nothing
1600
1601 // Don't hide a (potentially) valid declaration with an invalid one.
John McCallb0cb0222010-03-27 05:57:59 +00001602 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCall1f2e1a92012-08-10 03:15:35 +00001603 // do nothing
1604
1605 // Otherwise, check access to friends and make them visible.
1606 } else if (isFriend) {
1607 // We only need to re-check access for methods which we didn't
1608 // manage to match during parsing.
1609 if (!D->getPreviousDecl())
1610 SemaRef.CheckFriendAccess(Method);
1611
1612 Record->makeDeclVisibleInContext(Method);
1613
1614 // Otherwise, add the declaration. We don't need to do this for
1615 // class-scope specializations because we'll have matched them with
1616 // the appropriate template.
1617 } else if (!IsClassScopeSpecialization) {
1618 Owner->addDecl(Method);
John McCallb0cb0222010-03-27 05:57:59 +00001619 }
Sean Hunteb88ae52011-05-23 21:07:59 +00001620
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001621 return Method;
1622}
1623
Douglas Gregor615c5d42009-03-24 16:43:20 +00001624Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001625 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001626}
1627
Douglas Gregor03b2b072009-03-24 00:15:49 +00001628Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001629 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001630}
1631
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001632Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001633 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001634}
1635
Douglas Gregor6477b692009-03-25 15:04:13 +00001636ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCallfb44de92011-05-01 22:35:37 +00001637 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0,
Douglas Gregord1bb4ae2012-01-25 16:15:54 +00001638 llvm::Optional<unsigned>(),
1639 /*ExpectParameterPack=*/false);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001640}
1641
John McCalle29ba202009-08-20 01:44:21 +00001642Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1643 TemplateTypeParmDecl *D) {
1644 // TODO: don't always clone when decls are refcounted.
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001645 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump1eb44332009-09-09 15:08:12 +00001646
John McCalle29ba202009-08-20 01:44:21 +00001647 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001648 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1649 D->getLocStart(), D->getLocation(),
Chandler Carruth4fb86f82011-05-01 00:51:33 +00001650 D->getDepth() - TemplateArgs.getNumLevels(),
1651 D->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001652 D->wasDeclaredWithTypename(),
1653 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001654 Inst->setAccess(AS_public);
John McCalle29ba202009-08-20 01:44:21 +00001655
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001656 if (D->hasDefaultArgument())
1657 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
1658
1659 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001660 // scope.
1661 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001662
John McCalle29ba202009-08-20 01:44:21 +00001663 return Inst;
1664}
1665
Douglas Gregor33642df2009-10-23 23:25:44 +00001666Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1667 NonTypeTemplateParmDecl *D) {
1668 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001669 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001670 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1671 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001672 bool IsExpandedParameterPack = false;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001673 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001674 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001675 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001676
1677 if (D->isExpandedParameterPack()) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001678 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001679 // expansion of types. Substitute into each of the expanded types.
1680 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1681 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1682 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1683 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1684 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001685 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001686 D->getDeclName());
1687 if (!NewDI)
1688 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001689
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001690 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1691 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1692 D->getLocation());
1693 if (NewT.isNull())
1694 return 0;
1695 ExpandedParameterPackTypes.push_back(NewT);
1696 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001697
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001698 IsExpandedParameterPack = true;
1699 DI = D->getTypeSourceInfo();
1700 T = DI->getType();
Richard Smith6964b3f2012-09-07 02:06:42 +00001701 } else if (D->isPackExpansion()) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001702 // The non-type template parameter pack's type is a pack expansion of types.
1703 // Determine whether we need to expand this parameter pack into separate
1704 // types.
1705 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1706 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001707 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001708 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001709
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001710 // Determine whether the set of unexpanded parameter packs can and should
1711 // be expanded.
1712 bool Expand = true;
1713 bool RetainExpansion = false;
1714 llvm::Optional<unsigned> OrigNumExpansions
1715 = Expansion.getTypePtr()->getNumExpansions();
1716 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1717 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1718 Pattern.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00001719 Unexpanded,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001720 TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001721 Expand, RetainExpansion,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001722 NumExpansions))
1723 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001724
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001725 if (Expand) {
1726 for (unsigned I = 0; I != *NumExpansions; ++I) {
1727 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1728 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001729 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001730 D->getDeclName());
1731 if (!NewDI)
1732 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001733
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001734 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1735 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1736 NewDI->getType(),
1737 D->getLocation());
1738 if (NewT.isNull())
1739 return 0;
1740 ExpandedParameterPackTypes.push_back(NewT);
1741 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001742
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001743 // Note that we have an expanded parameter pack. The "type" of this
1744 // expanded parameter pack is the original expansion type, but callers
1745 // will end up using the expanded parameter pack types for type-checking.
1746 IsExpandedParameterPack = true;
1747 DI = D->getTypeSourceInfo();
1748 T = DI->getType();
1749 } else {
1750 // We cannot fully expand the pack expansion now, so substitute into the
1751 // pattern and create a new pack expansion type.
1752 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1753 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001754 D->getLocation(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001755 D->getDeclName());
1756 if (!NewPattern)
1757 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001758
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001759 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1760 NumExpansions);
1761 if (!DI)
1762 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001763
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001764 T = DI->getType();
1765 }
1766 } else {
1767 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001768 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001769 D->getLocation(), D->getDeclName());
1770 if (!DI)
1771 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001772
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001773 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001774 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001775 D->getLocation());
1776 if (T.isNull()) {
1777 T = SemaRef.Context.IntTy;
1778 Invalid = true;
1779 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001780 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001781
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001782 NonTypeTemplateParmDecl *Param;
1783 if (IsExpandedParameterPack)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001784 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001785 D->getInnerLocStart(),
1786 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001787 D->getDepth() - TemplateArgs.getNumLevels(),
1788 D->getPosition(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001789 D->getIdentifier(), T,
1790 DI,
1791 ExpandedParameterPackTypes.data(),
1792 ExpandedParameterPackTypes.size(),
1793 ExpandedParameterPackTypesAsWritten.data());
1794 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001795 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001796 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001797 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001798 D->getDepth() - TemplateArgs.getNumLevels(),
1799 D->getPosition(),
1800 D->getIdentifier(), T,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001801 D->isParameterPack(), DI);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001802
Douglas Gregor9a299e02011-03-04 17:52:15 +00001803 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001804 if (Invalid)
1805 Param->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001806
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001807 Param->setDefaultArgument(D->getDefaultArgument(), false);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001808
1809 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor550d9b22009-10-31 17:21:17 +00001810 // scope.
1811 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001812 return Param;
1813}
1814
Richard Smith6964b3f2012-09-07 02:06:42 +00001815static void collectUnexpandedParameterPacks(
1816 Sema &S,
1817 TemplateParameterList *Params,
1818 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
1819 for (TemplateParameterList::const_iterator I = Params->begin(),
1820 E = Params->end(); I != E; ++I) {
1821 if ((*I)->isTemplateParameterPack())
1822 continue;
1823 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*I))
1824 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
1825 Unexpanded);
1826 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(*I))
1827 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
1828 Unexpanded);
1829 }
1830}
1831
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001832Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001833TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1834 TemplateTemplateParmDecl *D) {
1835 // Instantiate the template parameter list of the template template parameter.
1836 TemplateParameterList *TempParams = D->getTemplateParameters();
1837 TemplateParameterList *InstParams;
Richard Smith6964b3f2012-09-07 02:06:42 +00001838 SmallVector<TemplateParameterList*, 8> ExpandedParams;
1839
1840 bool IsExpandedParameterPack = false;
1841
1842 if (D->isExpandedParameterPack()) {
1843 // The template template parameter pack is an already-expanded pack
1844 // expansion of template parameters. Substitute into each of the expanded
1845 // parameters.
1846 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
1847 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
1848 I != N; ++I) {
1849 LocalInstantiationScope Scope(SemaRef);
1850 TemplateParameterList *Expansion =
1851 SubstTemplateParams(D->getExpansionTemplateParameters(I));
1852 if (!Expansion)
1853 return 0;
1854 ExpandedParams.push_back(Expansion);
1855 }
1856
1857 IsExpandedParameterPack = true;
1858 InstParams = TempParams;
1859 } else if (D->isPackExpansion()) {
1860 // The template template parameter pack expands to a pack of template
1861 // template parameters. Determine whether we need to expand this parameter
1862 // pack into separate parameters.
1863 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1864 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
1865 Unexpanded);
1866
1867 // Determine whether the set of unexpanded parameter packs can and should
1868 // be expanded.
1869 bool Expand = true;
1870 bool RetainExpansion = false;
1871 llvm::Optional<unsigned> NumExpansions;
1872 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
1873 TempParams->getSourceRange(),
1874 Unexpanded,
1875 TemplateArgs,
1876 Expand, RetainExpansion,
1877 NumExpansions))
1878 return 0;
1879
1880 if (Expand) {
1881 for (unsigned I = 0; I != *NumExpansions; ++I) {
1882 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1883 LocalInstantiationScope Scope(SemaRef);
1884 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
1885 if (!Expansion)
1886 return 0;
1887 ExpandedParams.push_back(Expansion);
1888 }
1889
1890 // Note that we have an expanded parameter pack. The "type" of this
1891 // expanded parameter pack is the original expansion type, but callers
1892 // will end up using the expanded parameter pack types for type-checking.
1893 IsExpandedParameterPack = true;
1894 InstParams = TempParams;
1895 } else {
1896 // We cannot fully expand the pack expansion now, so just substitute
1897 // into the pattern.
1898 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1899
1900 LocalInstantiationScope Scope(SemaRef);
1901 InstParams = SubstTemplateParams(TempParams);
1902 if (!InstParams)
1903 return 0;
1904 }
1905 } else {
Douglas Gregor9106ef72009-11-11 16:58:32 +00001906 // Perform the actual substitution of template parameters within a new,
1907 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001908 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001909 InstParams = SubstTemplateParams(TempParams);
1910 if (!InstParams)
Richard Smith6964b3f2012-09-07 02:06:42 +00001911 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001912 }
1913
Douglas Gregor9106ef72009-11-11 16:58:32 +00001914 // Build the template template parameter.
Richard Smith6964b3f2012-09-07 02:06:42 +00001915 TemplateTemplateParmDecl *Param;
1916 if (IsExpandedParameterPack)
1917 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
1918 D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001919 D->getDepth() - TemplateArgs.getNumLevels(),
Richard Smith6964b3f2012-09-07 02:06:42 +00001920 D->getPosition(),
1921 D->getIdentifier(), InstParams,
1922 ExpandedParams);
1923 else
1924 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
1925 D->getLocation(),
1926 D->getDepth() - TemplateArgs.getNumLevels(),
1927 D->getPosition(),
1928 D->isParameterPack(),
1929 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001930 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001931 Param->setAccess(AS_public);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001932
1933 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor9106ef72009-11-11 16:58:32 +00001934 // scope.
1935 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001936
Douglas Gregor9106ef72009-11-11 16:58:32 +00001937 return Param;
1938}
1939
Douglas Gregor48c32a72009-11-17 06:07:40 +00001940Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001941 // Using directives are never dependent (and never contain any types or
1942 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001943
Douglas Gregor48c32a72009-11-17 06:07:40 +00001944 UsingDirectiveDecl *Inst
1945 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001946 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001947 D->getQualifierLoc(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00001948 D->getIdentLocation(),
1949 D->getNominatedNamespace(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001950 D->getCommonAncestor());
Abramo Bagnara536afbe2012-09-05 09:55:10 +00001951
1952 // Add the using directive to its declaration context
1953 // only if this is not a function or method.
1954 if (!Owner->isFunctionOrMethod())
1955 Owner->addDecl(Inst);
1956
Douglas Gregor48c32a72009-11-17 06:07:40 +00001957 return Inst;
1958}
1959
John McCalled976492009-12-04 22:46:56 +00001960Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001961
1962 // The nested name specifier may be dependent, for example
1963 // template <typename T> struct t {
1964 // struct s1 { T f1(); };
1965 // struct s2 : s1 { using s1::f1; };
1966 // };
1967 // template struct t<int>;
1968 // Here, in using s1::f1, s1 refers to t<T>::s1;
1969 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001970 NestedNameSpecifierLoc QualifierLoc
1971 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1972 TemplateArgs);
1973 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001974 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001975
1976 // The name info is non-dependent, so no transformation
1977 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001978 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001979
John McCall9f54ad42009-12-10 09:41:52 +00001980 // We only need to do redeclaration lookups if we're in a class
1981 // scope (in fact, it's not really even possible in non-class
1982 // scopes).
1983 bool CheckRedeclaration = Owner->isRecord();
1984
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001985 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1986 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001987
John McCalled976492009-12-04 22:46:56 +00001988 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001989 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001990 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001991 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001992 D->isTypeName());
1993
Douglas Gregor5149f372011-02-25 15:54:31 +00001994 CXXScopeSpec SS;
1995 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001996 if (CheckRedeclaration) {
1997 Prev.setHideTags(false);
1998 SemaRef.LookupQualifiedName(Prev, Owner);
1999
2000 // Check for invalid redeclarations.
2001 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
2002 D->isTypeName(), SS,
2003 D->getLocation(), Prev))
2004 NewUD->setInvalidDecl();
2005
2006 }
2007
2008 if (!NewUD->isInvalidDecl() &&
2009 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00002010 D->getLocation()))
2011 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00002012
John McCalled976492009-12-04 22:46:56 +00002013 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2014 NewUD->setAccess(D->getAccess());
2015 Owner->addDecl(NewUD);
2016
John McCall9f54ad42009-12-10 09:41:52 +00002017 // Don't process the shadow decls for an invalid decl.
2018 if (NewUD->isInvalidDecl())
2019 return NewUD;
2020
Richard Smithc5a89a12012-04-02 01:30:27 +00002021 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
2022 if (SemaRef.CheckInheritingConstructorUsingDecl(NewUD))
2023 NewUD->setInvalidDecl();
2024 return NewUD;
2025 }
2026
John McCall323c3102009-12-22 22:26:37 +00002027 bool isFunctionScope = Owner->isFunctionOrMethod();
2028
John McCall9f54ad42009-12-10 09:41:52 +00002029 // Process the shadow decls.
2030 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
2031 I != E; ++I) {
2032 UsingShadowDecl *Shadow = *I;
2033 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00002034 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
2035 Shadow->getLocation(),
2036 Shadow->getTargetDecl(),
2037 TemplateArgs));
2038 if (!InstTarget)
2039 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00002040
2041 if (CheckRedeclaration &&
2042 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
2043 continue;
2044
2045 UsingShadowDecl *InstShadow
2046 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
2047 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00002048
2049 if (isFunctionScope)
2050 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00002051 }
John McCalled976492009-12-04 22:46:56 +00002052
2053 return NewUD;
2054}
2055
2056Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00002057 // Ignore these; we handle them in bulk when processing the UsingDecl.
2058 return 0;
John McCalled976492009-12-04 22:46:56 +00002059}
2060
John McCall7ba107a2009-11-18 02:36:19 +00002061Decl * TemplateDeclInstantiator
2062 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00002063 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002064 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor5149f372011-02-25 15:54:31 +00002065 TemplateArgs);
2066 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002067 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002068
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002069 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00002070 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00002071
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002072 // Since NameInfo refers to a typename, it cannot be a C++ special name.
Benjamin Krameraccaf192012-11-14 15:08:31 +00002073 // Hence, no transformation is required for it.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002074 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00002075 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00002076 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002077 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00002078 /*instantiation*/ true,
2079 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002080 if (UD)
John McCalled976492009-12-04 22:46:56 +00002081 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2082
John McCall7ba107a2009-11-18 02:36:19 +00002083 return UD;
2084}
2085
2086Decl * TemplateDeclInstantiator
2087 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00002088 NestedNameSpecifierLoc QualifierLoc
2089 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
2090 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00002091 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002092
John McCall7ba107a2009-11-18 02:36:19 +00002093 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00002094 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00002095
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002096 DeclarationNameInfo NameInfo
2097 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2098
John McCall7ba107a2009-11-18 02:36:19 +00002099 NamedDecl *UD =
2100 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00002101 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00002102 /*instantiation*/ true,
2103 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002104 if (UD)
John McCalled976492009-12-04 22:46:56 +00002105 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2106
Anders Carlsson0d8df782009-08-29 19:37:28 +00002107 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002108}
2109
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002110
2111Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2112 ClassScopeFunctionSpecializationDecl *Decl) {
2113 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nico Weber6b020092012-06-25 17:21:05 +00002114 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD,
2115 0, true));
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002116
2117 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
2118 Sema::ForRedeclaration);
2119
Nico Weber6b020092012-06-25 17:21:05 +00002120 TemplateArgumentListInfo TemplateArgs;
2121 TemplateArgumentListInfo* TemplateArgsPtr = 0;
2122 if (Decl->hasExplicitTemplateArgs()) {
2123 TemplateArgs = Decl->templateArgs();
2124 TemplateArgsPtr = &TemplateArgs;
2125 }
2126
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002127 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber6b020092012-06-25 17:21:05 +00002128 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2129 Previous)) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002130 NewFD->setInvalidDecl();
2131 return NewFD;
2132 }
2133
2134 // Associate the specialization with the pattern.
2135 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2136 assert(Specialization && "Class scope Specialization is null");
2137 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2138
2139 return NewFD;
2140}
2141
John McCallce3ff2b2009-08-25 22:02:44 +00002142Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00002143 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00002144 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00002145 if (D->isInvalidDecl())
2146 return 0;
2147
Douglas Gregor8dbc2692009-03-17 21:15:40 +00002148 return Instantiator.Visit(D);
2149}
2150
John McCalle29ba202009-08-20 01:44:21 +00002151/// \brief Instantiates a nested template parameter list in the current
2152/// instantiation context.
2153///
2154/// \param L The parameter list to instantiate
2155///
2156/// \returns NULL if there was an error
2157TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00002158TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00002159 // Get errors for all the parameters before bailing out.
2160 bool Invalid = false;
2161
2162 unsigned N = L->size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002163 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00002164 ParamVector Params;
2165 Params.reserve(N);
2166 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2167 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00002168 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00002169 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00002170 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00002171 }
2172
2173 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00002174 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00002175 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00002176
2177 TemplateParameterList *InstL
2178 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2179 L->getLAngleLoc(), &Params.front(), N,
2180 L->getRAngleLoc());
2181 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00002182}
John McCalle29ba202009-08-20 01:44:21 +00002183
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002184/// \brief Instantiate the declaration of a class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002185/// specialization.
2186///
2187/// \param ClassTemplate the (instantiated) class template that is partially
2188// specialized by the instantiation of \p PartialSpec.
2189///
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002190/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregored9c0f92009-10-29 00:04:11 +00002191/// specialization that we are instantiating.
2192///
Douglas Gregord65587f2010-11-10 19:44:59 +00002193/// \returns The instantiated partial specialization, if successful; otherwise,
2194/// NULL to indicate an error.
2195ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00002196TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2197 ClassTemplateDecl *ClassTemplate,
2198 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00002199 // Create a local instantiation scope for this class template partial
2200 // specialization, which will contain the instantiations of the template
2201 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00002202 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002203
Douglas Gregored9c0f92009-10-29 00:04:11 +00002204 // Substitute into the template parameters of the class template partial
2205 // specialization.
2206 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2207 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2208 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00002209 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002210
Douglas Gregored9c0f92009-10-29 00:04:11 +00002211 // Substitute into the template arguments of the class template partial
2212 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00002213 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002214 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
2215 PartialSpec->getNumTemplateArgsAsWritten(),
Douglas Gregore02e2622010-12-22 21:19:48 +00002216 InstTemplateArgs, TemplateArgs))
2217 return 0;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002218
Douglas Gregored9c0f92009-10-29 00:04:11 +00002219 // Check that the template argument list is well-formed for this
2220 // class template.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002221 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002222 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002223 PartialSpec->getLocation(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002224 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002225 false,
2226 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00002227 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002228
2229 // Figure out where to insert this class template partial specialization
2230 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00002231 void *InsertPos = 0;
2232 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00002233 = ClassTemplate->findPartialSpecialization(Converted.data(),
2234 Converted.size(), InsertPos);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002235
Douglas Gregored9c0f92009-10-29 00:04:11 +00002236 // Build the canonical type that describes the converted template
2237 // arguments of the class template partial specialization.
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002238 QualType CanonType
Douglas Gregored9c0f92009-10-29 00:04:11 +00002239 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00002240 Converted.data(),
2241 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00002242
2243 // Build the fully-sugared type for this class template
2244 // specialization as the user wrote in the specialization
2245 // itself. This means that we'll pretty-print the type retrieved
2246 // from the specialization's declaration the way that the user
2247 // actually wrote the specialization, rather than formatting the
2248 // name based on the "canonical" representation used to store the
2249 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00002250 TypeSourceInfo *WrittenTy
2251 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2252 TemplateName(ClassTemplate),
2253 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002254 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00002255 CanonType);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002256
Douglas Gregored9c0f92009-10-29 00:04:11 +00002257 if (PrevDecl) {
2258 // We've already seen a partial specialization with the same template
2259 // parameters and template arguments. This can happen, for example, when
2260 // substituting the outer template arguments ends up causing two
2261 // class template partial specializations of a member class template
2262 // to have identical forms, e.g.,
2263 //
2264 // template<typename T, typename U>
2265 // struct Outer {
2266 // template<typename X, typename Y> struct Inner;
2267 // template<typename Y> struct Inner<T, Y>;
2268 // template<typename Y> struct Inner<U, Y>;
2269 // };
2270 //
2271 // Outer<int, int> outer; // error: the partial specializations of Inner
2272 // // have the same signature.
2273 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00002274 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00002275 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2276 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00002277 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002278 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002279
2280
Douglas Gregored9c0f92009-10-29 00:04:11 +00002281 // Create the class template partial specialization declaration.
2282 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002283 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregor13c85772010-05-06 00:28:52 +00002284 PartialSpec->getTagKind(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002285 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002286 PartialSpec->getLocStart(),
2287 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00002288 InstParams,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002289 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00002290 Converted.data(),
2291 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00002292 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00002293 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00002294 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00002295 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00002296 // Substitute the nested name specifier, if any.
2297 if (SubstQualifier(PartialSpec, InstPartialSpec))
2298 return 0;
2299
Douglas Gregored9c0f92009-10-29 00:04:11 +00002300 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00002301 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002302
Douglas Gregored9c0f92009-10-29 00:04:11 +00002303 // Add this partial specialization to the set of class template partial
2304 // specializations.
Douglas Gregor1e1e9722012-03-28 14:34:23 +00002305 ClassTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/0);
Douglas Gregord65587f2010-11-10 19:44:59 +00002306 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00002307}
2308
John McCall21ef0fa2010-03-11 09:03:00 +00002309TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00002310TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002311 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00002312 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2313 assert(OldTInfo && "substituting function without type source info");
2314 assert(Params.empty() && "parameter vector is non-empty at start");
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002315
2316 CXXRecordDecl *ThisContext = 0;
2317 unsigned ThisTypeQuals = 0;
2318 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2319 ThisContext = Method->getParent();
2320 ThisTypeQuals = Method->getTypeQualifiers();
2321 }
2322
John McCall6cd3b9f2010-04-09 17:38:44 +00002323 TypeSourceInfo *NewTInfo
2324 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2325 D->getTypeSpecStartLoc(),
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002326 D->getDeclName(),
2327 ThisContext, ThisTypeQuals);
John McCall21ef0fa2010-03-11 09:03:00 +00002328 if (!NewTInfo)
2329 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00002330
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002331 if (NewTInfo != OldTInfo) {
2332 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002333 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002334 if (FunctionProtoTypeLoc *OldProtoLoc
2335 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002336 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002337 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2338 assert(NewProtoLoc && "Missing prototype?");
Richard Smith500d7292012-07-18 01:29:05 +00002339 unsigned NewIdx = 0;
Douglas Gregor12c9c002011-01-07 16:43:16 +00002340 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2341 OldIdx != NumOldParams; ++OldIdx) {
2342 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
Richard Smith500d7292012-07-18 01:29:05 +00002343 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
2344
2345 llvm::Optional<unsigned> NumArgumentsInExpansion;
2346 if (OldParam->isParameterPack())
2347 NumArgumentsInExpansion =
2348 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2349 TemplateArgs);
2350 if (!NumArgumentsInExpansion) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002351 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregor12c9c002011-01-07 16:43:16 +00002352 // instantiated to a (still-dependent) parameter pack.
2353 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2354 Params.push_back(NewParam);
Richard Smith500d7292012-07-18 01:29:05 +00002355 Scope->InstantiatedLocal(OldParam, NewParam);
2356 } else {
2357 // Parameter pack expansion: make the instantiation an argument pack.
2358 Scope->MakeInstantiatedLocalArgPack(OldParam);
2359 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
2360 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2361 Params.push_back(NewParam);
2362 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
2363 }
Douglas Gregor12c9c002011-01-07 16:43:16 +00002364 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002365 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002366 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002367 } else {
2368 // The function type itself was not dependent and therefore no
2369 // substitution occurred. However, we still need to instantiate
2370 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002371 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002372 if (FunctionProtoTypeLoc *OldProtoLoc
2373 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2374 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2375 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2376 if (!Parm)
2377 return 0;
2378 Params.push_back(Parm);
2379 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002380 }
2381 }
John McCall21ef0fa2010-03-11 09:03:00 +00002382 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002383}
2384
Richard Smithe6975e92012-04-17 00:58:00 +00002385/// Introduce the instantiated function parameters into the local
2386/// instantiation scope, and set the parameter names to those used
2387/// in the template.
2388static void addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
2389 const FunctionDecl *PatternDecl,
2390 LocalInstantiationScope &Scope,
2391 const MultiLevelTemplateArgumentList &TemplateArgs) {
2392 unsigned FParamIdx = 0;
2393 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2394 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
2395 if (!PatternParam->isParameterPack()) {
2396 // Simple case: not a parameter pack.
2397 assert(FParamIdx < Function->getNumParams());
2398 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2399 FunctionParam->setDeclName(PatternParam->getDeclName());
2400 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2401 ++FParamIdx;
2402 continue;
2403 }
2404
2405 // Expand the parameter pack.
2406 Scope.MakeInstantiatedLocalArgPack(PatternParam);
Richard Smith500d7292012-07-18 01:29:05 +00002407 llvm::Optional<unsigned> NumArgumentsInExpansion
Richard Smithe6975e92012-04-17 00:58:00 +00002408 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith500d7292012-07-18 01:29:05 +00002409 assert(NumArgumentsInExpansion &&
2410 "should only be called when all template arguments are known");
2411 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithe6975e92012-04-17 00:58:00 +00002412 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2413 FunctionParam->setDeclName(PatternParam->getDeclName());
2414 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2415 ++FParamIdx;
2416 }
2417 }
2418}
2419
2420static void InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New,
2421 const FunctionProtoType *Proto,
2422 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith13bffc52012-04-19 00:08:28 +00002423 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
2424
Richard Smithe6975e92012-04-17 00:58:00 +00002425 // C++11 [expr.prim.general]p3:
2426 // If a declaration declares a member function or member function
2427 // template of a class X, the expression this is a prvalue of type
2428 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2429 // and the end of the function-definition, member-declarator, or
2430 // declarator.
2431 CXXRecordDecl *ThisContext = 0;
2432 unsigned ThisTypeQuals = 0;
2433 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) {
2434 ThisContext = Method->getParent();
2435 ThisTypeQuals = Method->getTypeQualifiers();
2436 }
2437 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals,
Richard Smith80ad52f2013-01-02 11:42:31 +00002438 SemaRef.getLangOpts().CPlusPlus11);
Richard Smithe6975e92012-04-17 00:58:00 +00002439
2440 // The function has an exception specification or a "noreturn"
2441 // attribute. Substitute into each of the exception types.
2442 SmallVector<QualType, 4> Exceptions;
2443 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2444 // FIXME: Poor location information!
2445 if (const PackExpansionType *PackExpansion
2446 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2447 // We have a pack expansion. Instantiate it.
2448 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2449 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2450 Unexpanded);
2451 assert(!Unexpanded.empty() &&
2452 "Pack expansion without parameter packs?");
2453
2454 bool Expand = false;
2455 bool RetainExpansion = false;
2456 llvm::Optional<unsigned> NumExpansions
2457 = PackExpansion->getNumExpansions();
2458 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2459 SourceRange(),
2460 Unexpanded,
2461 TemplateArgs,
2462 Expand,
2463 RetainExpansion,
2464 NumExpansions))
2465 break;
2466
2467 if (!Expand) {
2468 // We can't expand this pack expansion into separate arguments yet;
2469 // just substitute into the pattern and create a new pack expansion
2470 // type.
2471 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2472 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2473 TemplateArgs,
2474 New->getLocation(), New->getDeclName());
2475 if (T.isNull())
2476 break;
2477
2478 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
2479 Exceptions.push_back(T);
2480 continue;
2481 }
2482
2483 // Substitute into the pack expansion pattern for each template
2484 bool Invalid = false;
2485 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
2486 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2487
2488 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2489 TemplateArgs,
2490 New->getLocation(), New->getDeclName());
2491 if (T.isNull()) {
2492 Invalid = true;
2493 break;
2494 }
2495
2496 Exceptions.push_back(T);
2497 }
2498
2499 if (Invalid)
2500 break;
2501
2502 continue;
2503 }
2504
2505 QualType T
2506 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2507 New->getLocation(), New->getDeclName());
2508 if (T.isNull() ||
2509 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2510 continue;
2511
2512 Exceptions.push_back(T);
2513 }
2514 Expr *NoexceptExpr = 0;
2515 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
2516 EnterExpressionEvaluationContext Unevaluated(SemaRef,
2517 Sema::ConstantEvaluated);
2518 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
2519 if (E.isUsable())
2520 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
2521
2522 if (E.isUsable()) {
2523 NoexceptExpr = E.take();
2524 if (!NoexceptExpr->isTypeDependent() &&
2525 !NoexceptExpr->isValueDependent())
Douglas Gregorab41fe92012-05-04 22:38:52 +00002526 NoexceptExpr
2527 = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
2528 0, diag::err_noexcept_needs_constant_expression,
2529 /*AllowFold*/ false).take();
Richard Smithe6975e92012-04-17 00:58:00 +00002530 }
2531 }
2532
2533 // Rebuild the function type
2534 const FunctionProtoType *NewProto
2535 = New->getType()->getAs<FunctionProtoType>();
2536 assert(NewProto && "Template instantiation without function prototype?");
2537
2538 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
2539 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2540 EPI.NumExceptions = Exceptions.size();
2541 EPI.Exceptions = Exceptions.data();
2542 EPI.NoexceptExpr = NoexceptExpr;
2543
2544 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2545 NewProto->arg_type_begin(),
2546 NewProto->getNumArgs(),
2547 EPI));
2548}
2549
2550void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
2551 FunctionDecl *Decl) {
Richard Smith13bffc52012-04-19 00:08:28 +00002552 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
2553 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithe6975e92012-04-17 00:58:00 +00002554 return;
2555
2556 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
2557 InstantiatingTemplate::ExceptionSpecification());
Richard Smithb9d0b762012-07-27 04:22:15 +00002558 if (Inst) {
2559 // We hit the instantiation depth limit. Clear the exception specification
2560 // so that our callers don't have to cope with EST_Uninstantiated.
2561 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
2562 EPI.ExceptionSpecType = EST_None;
2563 Decl->setType(Context.getFunctionType(Proto->getResultType(),
2564 Proto->arg_type_begin(),
2565 Proto->getNumArgs(),
2566 EPI));
Richard Smithe6975e92012-04-17 00:58:00 +00002567 return;
Richard Smithb9d0b762012-07-27 04:22:15 +00002568 }
Richard Smithe6975e92012-04-17 00:58:00 +00002569
2570 // Enter the scope of this instantiation. We don't use
2571 // PushDeclContext because we don't have a scope.
2572 Sema::ContextRAII savedContext(*this, Decl);
2573 LocalInstantiationScope Scope(*this);
2574
2575 MultiLevelTemplateArgumentList TemplateArgs =
2576 getTemplateInstantiationArgs(Decl, 0, /*RelativeToPrimary*/true);
2577
Richard Smith13bffc52012-04-19 00:08:28 +00002578 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
2579 addInstantiatedParametersToScope(*this, Decl, Template, Scope, TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002580
Richard Smith13bffc52012-04-19 00:08:28 +00002581 ::InstantiateExceptionSpec(*this, Decl,
2582 Template->getType()->castAs<FunctionProtoType>(),
2583 TemplateArgs);
Richard Smithe6975e92012-04-17 00:58:00 +00002584}
2585
Mike Stump1eb44332009-09-09 15:08:12 +00002586/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002587/// declaration (New) from the corresponding fields of its template (Tmpl).
2588///
2589/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002590bool
2591TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002592 FunctionDecl *Tmpl) {
David Blaikie85f485a2012-07-16 18:50:45 +00002593 if (Tmpl->isDeleted())
Sean Hunt10620eb2011-05-06 20:44:56 +00002594 New->setDeletedAsWritten();
Mike Stump1eb44332009-09-09 15:08:12 +00002595
Douglas Gregorcca9e962009-07-01 22:01:06 +00002596 // If we are performing substituting explicitly-specified template arguments
2597 // or deduced template arguments into a function template and we reach this
2598 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002599 // to keeping the new function template specialization. We therefore
2600 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002601 // into a template instantiation for this specific function template
2602 // specialization, which is not a SFINAE context, so that we diagnose any
2603 // further errors in the declaration itself.
2604 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2605 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2606 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2607 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002608 if (FunctionTemplateDecl *FunTmpl
Nick Lewycky4a9e60f2012-11-16 08:40:59 +00002609 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002610 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002611 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002612 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002613 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewycky4a9e60f2012-11-16 08:40:59 +00002614 ActiveInst.Entity = New;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002615 }
2616 }
Mike Stump1eb44332009-09-09 15:08:12 +00002617
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002618 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2619 assert(Proto && "Function template without prototype?");
2620
Sebastian Redl60618fa2011-03-12 11:50:43 +00002621 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalle23cf432010-12-14 08:05:40 +00002622 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalle23cf432010-12-14 08:05:40 +00002623
Richard Smithe6975e92012-04-17 00:58:00 +00002624 // DR1330: In C++11, defer instantiation of a non-trivial
2625 // exception specification.
Richard Smith80ad52f2013-01-02 11:42:31 +00002626 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smithe6975e92012-04-17 00:58:00 +00002627 EPI.ExceptionSpecType != EST_None &&
2628 EPI.ExceptionSpecType != EST_DynamicNone &&
2629 EPI.ExceptionSpecType != EST_BasicNoexcept) {
Richard Smith13bffc52012-04-19 00:08:28 +00002630 FunctionDecl *ExceptionSpecTemplate = Tmpl;
2631 if (EPI.ExceptionSpecType == EST_Uninstantiated)
2632 ExceptionSpecTemplate = EPI.ExceptionSpecTemplate;
Richard Smithb9d0b762012-07-27 04:22:15 +00002633 assert(EPI.ExceptionSpecType != EST_Unevaluated &&
2634 "instantiating implicitly-declared special member");
Richard Smith13bffc52012-04-19 00:08:28 +00002635
Richard Smithe6975e92012-04-17 00:58:00 +00002636 // Mark the function has having an uninstantiated exception specification.
2637 const FunctionProtoType *NewProto
2638 = New->getType()->getAs<FunctionProtoType>();
2639 assert(NewProto && "Template instantiation without function prototype?");
2640 EPI = NewProto->getExtProtoInfo();
2641 EPI.ExceptionSpecType = EST_Uninstantiated;
2642 EPI.ExceptionSpecDecl = New;
Richard Smith13bffc52012-04-19 00:08:28 +00002643 EPI.ExceptionSpecTemplate = ExceptionSpecTemplate;
Richard Smithe6975e92012-04-17 00:58:00 +00002644 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2645 NewProto->arg_type_begin(),
2646 NewProto->getNumArgs(),
2647 EPI));
2648 } else {
2649 ::InstantiateExceptionSpec(SemaRef, New, Proto, TemplateArgs);
2650 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002651 }
2652
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002653 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithe6975e92012-04-17 00:58:00 +00002654 const FunctionDecl *Definition = Tmpl;
Rafael Espindola19f74ac2011-07-06 15:46:09 +00002655 Tmpl->isDefined(Definition);
2656
DeLesley Hutchins23323e02012-01-20 22:50:54 +00002657 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
2658 LateAttrs, StartingScope);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002659
Douglas Gregore53060f2009-06-25 22:08:12 +00002660 return false;
2661}
2662
Douglas Gregor5545e162009-03-24 00:38:23 +00002663/// \brief Initializes common fields of an instantiated method
2664/// declaration (New) from the corresponding fields of its template
2665/// (Tmpl).
2666///
2667/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002668bool
2669TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002670 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002671 if (InitFunctionInstantiation(New, Tmpl))
2672 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002673
Douglas Gregor5545e162009-03-24 00:38:23 +00002674 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002675 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002676 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002677
2678 // FIXME: attributes
2679 // FIXME: New needs a pointer to Tmpl
2680 return false;
2681}
Douglas Gregora58861f2009-05-13 20:28:22 +00002682
2683/// \brief Instantiate the definition of the given function from its
2684/// template.
2685///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002686/// \param PointOfInstantiation the point at which the instantiation was
2687/// required. Note that this is not precisely a "point of instantiation"
2688/// for the function, but it's close.
2689///
Douglas Gregora58861f2009-05-13 20:28:22 +00002690/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002691/// function template specialization or member function of a class template
2692/// specialization.
2693///
2694/// \param Recursive if true, recursively instantiates any functions that
2695/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002696///
2697/// \param DefinitionRequired if true, then we are performing an explicit
2698/// instantiation where the body of the function is required. Complain if
2699/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002700void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002701 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002702 bool Recursive,
2703 bool DefinitionRequired) {
Sean Hunt10620eb2011-05-06 20:44:56 +00002704 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002705 return;
2706
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002707 // Never instantiate an explicit specialization except if it is a class scope
2708 // explicit specialization.
2709 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2710 !Function->getClassScopeSpecializationPattern())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002711 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002712
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002713 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002714 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Sean Huntf996e052011-05-27 20:00:14 +00002715 assert(PatternDecl && "instantiating a non-template");
2716
2717 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
2718 assert(PatternDecl && "template definition is not a template");
2719 if (!Pattern) {
2720 // Try to find a defaulted definition
2721 PatternDecl->isDefined(PatternDecl);
Sean Huntdfab8542011-05-25 22:02:25 +00002722 }
Sean Huntf996e052011-05-27 20:00:14 +00002723 assert(PatternDecl && "template definition is not a template");
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002724
Francois Pichet8387e2a2011-04-22 22:18:13 +00002725 // Postpone late parsed template instantiations.
Sean Huntf996e052011-05-27 20:00:14 +00002726 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky8a29bc02011-05-12 03:51:24 +00002727 !LateTemplateParser) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002728 PendingInstantiations.push_back(
2729 std::make_pair(Function, PointOfInstantiation));
2730 return;
2731 }
2732
2733 // Call the LateTemplateParser callback if there a need to late parse
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002734 // a templated function definition.
Sean Huntf996e052011-05-27 20:00:14 +00002735 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet8387e2a2011-04-22 22:18:13 +00002736 LateTemplateParser) {
Francois Pichet4a47e8d2011-04-23 11:52:20 +00002737 LateTemplateParser(OpaqueParser, PatternDecl);
Francois Pichet8387e2a2011-04-22 22:18:13 +00002738 Pattern = PatternDecl->getBody(PatternDecl);
2739 }
2740
Sean Huntf996e052011-05-27 20:00:14 +00002741 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002742 if (DefinitionRequired) {
2743 if (Function->getPrimaryTemplate())
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002744 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002745 diag::err_explicit_instantiation_undefined_func_template)
2746 << Function->getPrimaryTemplate();
2747 else
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002748 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002749 diag::err_explicit_instantiation_undefined_member)
2750 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002751
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002752 if (PatternDecl)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002753 Diag(PatternDecl->getLocation(),
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002754 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002755 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002756 } else if (Function->getTemplateSpecializationKind()
2757 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002758 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002759 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002760 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002761
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002762 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002763 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002764
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002765 // C++0x [temp.explicit]p9:
2766 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002767 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002768 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002769 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002770 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002771 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002772 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002773
Richard Smithd4497dd2013-01-25 00:08:28 +00002774 if (PatternDecl->isInlined())
2775 Function->setImplicitlyInline();
2776
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002777 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2778 if (Inst)
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002779 return;
2780
Abramo Bagnarae9946242011-11-18 08:08:52 +00002781 // Copy the inner loc start from the pattern.
2782 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
2783
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002784 // If we're performing recursive template instantiation, create our own
2785 // queue of pending implicit instantiations that we will instantiate later,
2786 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002787 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002788 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002789 if (Recursive) {
2790 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002791 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002792 }
Mike Stump1eb44332009-09-09 15:08:12 +00002793
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002794 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002795 Sema::PotentiallyEvaluated);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002796
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002797 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002798 // recorded, unless we're actually a member function within a local
2799 // class, in which case we need to merge our results with the parent
2800 // scope (of the enclosing function).
2801 bool MergeWithParentScope = false;
2802 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2803 MergeWithParentScope = Rec->isLocalClass();
2804
2805 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002806
Richard Smith1d28caf2012-12-11 01:14:52 +00002807 if (PatternDecl->isDefaulted())
Sean Huntcd10dec2011-05-23 23:14:04 +00002808 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smith1d28caf2012-12-11 01:14:52 +00002809 else {
2810 ActOnStartOfFunctionDef(0, Function);
2811
2812 // Enter the scope of this instantiation. We don't use
2813 // PushDeclContext because we don't have a scope.
2814 Sema::ContextRAII savedContext(*this, Function);
2815
2816 MultiLevelTemplateArgumentList TemplateArgs =
2817 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
2818
2819 addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
2820 TemplateArgs);
2821
Sean Huntcd10dec2011-05-23 23:14:04 +00002822 // If this is a constructor, instantiate the member initializers.
2823 if (const CXXConstructorDecl *Ctor =
2824 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2825 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2826 TemplateArgs);
2827 }
2828
2829 // Instantiate the function body.
2830 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
2831
2832 if (Body.isInvalid())
2833 Function->setInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002834
Sean Huntcd10dec2011-05-23 23:14:04 +00002835 ActOnFinishFunctionBody(Function, Body.get(),
2836 /*IsInstantiation=*/true);
Richard Smith1d28caf2012-12-11 01:14:52 +00002837
2838 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2839
2840 savedContext.pop();
Mike Stump1eb44332009-09-09 15:08:12 +00002841 }
2842
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002843 DeclGroupRef DG(Function);
2844 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002845
Douglas Gregor60406be2010-01-16 22:29:39 +00002846 // This class may have local implicit instantiations that need to be
2847 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002848 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002849 Scope.Exit();
2850
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002851 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002852 // Define any pending vtables.
2853 DefineUsedVTables();
2854
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002855 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002856 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002857 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002858
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002859 // Restore the set of pending vtables.
Nick Lewycky81559102011-05-31 07:58:42 +00002860 assert(VTableUses.empty() &&
2861 "VTableUses should be empty before it is discarded.");
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002862 VTableUses.swap(SavedVTableUses);
2863
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002864 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002865 assert(PendingInstantiations.empty() &&
2866 "PendingInstantiations should be empty before it is discarded.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002867 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002868 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002869}
2870
2871/// \brief Instantiate the definition of the given variable from its
2872/// template.
2873///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002874/// \param PointOfInstantiation the point at which the instantiation was
2875/// required. Note that this is not precisely a "point of instantiation"
2876/// for the function, but it's close.
2877///
2878/// \param Var the already-instantiated declaration of a static member
2879/// variable of a class template specialization.
2880///
2881/// \param Recursive if true, recursively instantiates any functions that
2882/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002883///
2884/// \param DefinitionRequired if true, then we are performing an explicit
2885/// instantiation where an out-of-line definition of the member variable
2886/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002887void Sema::InstantiateStaticDataMemberDefinition(
2888 SourceLocation PointOfInstantiation,
2889 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002890 bool Recursive,
2891 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002892 if (Var->isInvalidDecl())
2893 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002894
Douglas Gregor7caa6822009-07-24 20:34:43 +00002895 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002896 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002897 assert(Def && "This data member was not instantiated from a template?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002898 assert(Def->isStaticDataMember() && "Not a static data member?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002899 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002900
Douglas Gregor0d035142009-10-27 18:42:08 +00002901 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002902 // We did not find an out-of-line definition of this static data member,
2903 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002904 // instantiate this definition (or provide a specialization for it) in
2905 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002906 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002907 Def = Var->getInstantiatedFromStaticDataMember();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002908 Diag(PointOfInstantiation,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002909 diag::err_explicit_instantiation_undefined_member)
2910 << 2 << Var->getDeclName() << Var->getDeclContext();
2911 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002912 } else if (Var->getTemplateSpecializationKind()
2913 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002914 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002915 std::make_pair(Var, PointOfInstantiation));
2916 }
2917
Douglas Gregor7caa6822009-07-24 20:34:43 +00002918 return;
2919 }
2920
Rafael Espindola234fe652012-03-05 10:54:55 +00002921 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
2922
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002923 // Never instantiate an explicit specialization.
Rafael Espindola234fe652012-03-05 10:54:55 +00002924 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002925 return;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00002926
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002927 // C++0x [temp.explicit]p9:
2928 // Except for inline functions, other explicit instantiation declarations
2929 // have the effect of suppressing the implicit instantiation of the entity
2930 // to which they refer.
Rafael Espindola234fe652012-03-05 10:54:55 +00002931 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002932 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002933
Rafael Espindola02503932012-03-08 15:51:03 +00002934 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
2935
Douglas Gregorf15748a2011-06-03 03:35:07 +00002936 // If we already have a definition, we're done.
Nick Lewycky95e38722012-04-04 02:38:36 +00002937 if (VarDecl *Def = Var->getDefinition()) {
2938 // We may be explicitly instantiating something we've already implicitly
2939 // instantiated.
2940 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
2941 PointOfInstantiation);
Douglas Gregorf15748a2011-06-03 03:35:07 +00002942 return;
Nick Lewycky95e38722012-04-04 02:38:36 +00002943 }
Douglas Gregorf15748a2011-06-03 03:35:07 +00002944
Douglas Gregor7caa6822009-07-24 20:34:43 +00002945 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2946 if (Inst)
2947 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002948
Douglas Gregor7caa6822009-07-24 20:34:43 +00002949 // If we're performing recursive template instantiation, create our own
2950 // queue of pending implicit instantiations that we will instantiate later,
2951 // while we're still within our own instantiation context.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002952 SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002953 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky81559102011-05-31 07:58:42 +00002954 if (Recursive) {
2955 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002956 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky81559102011-05-31 07:58:42 +00002957 }
Mike Stump1eb44332009-09-09 15:08:12 +00002958
Douglas Gregor7caa6822009-07-24 20:34:43 +00002959 // Enter the scope of this instantiation. We don't use
2960 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002961 ContextRAII previousContext(*this, Var->getDeclContext());
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002962 LocalInstantiationScope Local(*this);
2963
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002964 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002965 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002966 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002967
2968 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002969
2970 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002971 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2972 assert(MSInfo && "Missing member specialization information?");
2973 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2974 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002975 DeclGroupRef DG(Var);
2976 Consumer.HandleTopLevelDecl(DG);
2977 }
Douglas Gregor7bdc1522012-02-16 21:36:18 +00002978 Local.Exit();
2979
Douglas Gregor7caa6822009-07-24 20:34:43 +00002980 if (Recursive) {
Nick Lewycky81559102011-05-31 07:58:42 +00002981 // Define any newly required vtables.
2982 DefineUsedVTables();
2983
Douglas Gregor7caa6822009-07-24 20:34:43 +00002984 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002985 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002986 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002987
Nick Lewycky81559102011-05-31 07:58:42 +00002988 // Restore the set of pending vtables.
2989 assert(VTableUses.empty() &&
2990 "VTableUses should be empty before it is discarded, "
2991 "while instantiating static data member.");
2992 VTableUses.swap(SavedVTableUses);
2993
Douglas Gregor7caa6822009-07-24 20:34:43 +00002994 // Restore the set of pending implicit instantiations.
Nick Lewycky81559102011-05-31 07:58:42 +00002995 assert(PendingInstantiations.empty() &&
2996 "PendingInstantiations should be empty before it is discarded, "
2997 "while instantiating static data member.");
Chandler Carruth62c78d52010-08-25 08:44:16 +00002998 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002999 }
Douglas Gregora58861f2009-05-13 20:28:22 +00003000}
Douglas Gregor815215d2009-05-27 05:35:12 +00003001
Anders Carlsson09025312009-08-29 05:16:22 +00003002void
3003Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
3004 const CXXConstructorDecl *Tmpl,
3005 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00003006
Richard Trieu90ab75b2011-09-09 03:18:59 +00003007 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith54b3ba82012-09-25 00:23:05 +00003008 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003009
Anders Carlsson09025312009-08-29 05:16:22 +00003010 // Instantiate all the initializers.
3011 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00003012 InitsEnd = Tmpl->init_end();
3013 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00003014 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00003015
Chandler Carruth030ef472010-09-03 21:54:20 +00003016 // Only instantiate written initializers, let Sema re-construct implicit
3017 // ones.
3018 if (!Init->isWritten())
3019 continue;
3020
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003021 SourceLocation EllipsisLoc;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003022
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003023 if (Init->isPackExpansion()) {
3024 // This is a pack expansion. We should expand it now.
Douglas Gregor76852c22011-11-01 01:16:03 +00003025 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Chris Lattner5f9e2722011-07-23 10:55:15 +00003026 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003027 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
3028 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00003029 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00003030 llvm::Optional<unsigned> NumExpansions;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003031 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003032 BaseTL.getSourceRange(),
David Blaikiea71f9d02011-09-22 02:34:54 +00003033 Unexpanded,
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003034 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00003035 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003036 NumExpansions)) {
3037 AnyErrors = true;
3038 New->setInvalidDecl();
3039 continue;
3040 }
3041 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003042
3043 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00003044 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003045 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
3046
3047 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003048 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
3049 /*CXXDirectInit=*/true);
3050 if (TempInit.isInvalid()) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003051 AnyErrors = true;
3052 break;
3053 }
3054
3055 // Instantiate the base type.
Douglas Gregor76852c22011-11-01 01:16:03 +00003056 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003057 TemplateArgs,
3058 Init->getSourceLocation(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003059 New->getDeclName());
3060 if (!BaseTInfo) {
3061 AnyErrors = true;
3062 break;
3063 }
3064
3065 // Build the initializer.
Sebastian Redl6df65482011-09-24 17:48:25 +00003066 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003067 BaseTInfo, TempInit.take(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003068 New->getParent(),
3069 SourceLocation());
3070 if (NewInit.isInvalid()) {
3071 AnyErrors = true;
3072 break;
3073 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003074
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003075 NewInits.push_back(NewInit.get());
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003076 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003077
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003078 continue;
3079 }
3080
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00003081 // Instantiate the initializer.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003082 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
3083 /*CXXDirectInit=*/true);
3084 if (TempInit.isInvalid()) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00003085 AnyErrors = true;
3086 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00003087 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003088
Anders Carlsson09025312009-08-29 05:16:22 +00003089 MemInitResult NewInit;
Douglas Gregor76852c22011-11-01 01:16:03 +00003090 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
3091 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
3092 TemplateArgs,
3093 Init->getSourceLocation(),
3094 New->getDeclName());
3095 if (!TInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003096 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00003097 New->setInvalidDecl();
3098 continue;
3099 }
Sebastian Redl6df65482011-09-24 17:48:25 +00003100
Douglas Gregor76852c22011-11-01 01:16:03 +00003101 if (Init->isBaseInitializer())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003102 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00003103 New->getParent(), EllipsisLoc);
3104 else
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003105 NewInit = BuildDelegatingInitializer(TInfo, TempInit.take(),
Douglas Gregor76852c22011-11-01 01:16:03 +00003106 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson09025312009-08-29 05:16:22 +00003107 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00003108 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00003109 Init->getMemberLocation(),
3110 Init->getMember(),
3111 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00003112 if (!Member) {
3113 AnyErrors = true;
3114 New->setInvalidDecl();
3115 continue;
3116 }
Mike Stump1eb44332009-09-09 15:08:12 +00003117
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003118 NewInit = BuildMemberInitializer(Member, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00003119 Init->getSourceLocation());
Francois Pichet00eb3f92010-12-04 09:14:42 +00003120 } else if (Init->isIndirectMemberInitializer()) {
3121 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00003122 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00003123 Init->getMemberLocation(),
3124 Init->getIndirectMember(), TemplateArgs));
3125
Douglas Gregorb7107222011-03-04 19:46:35 +00003126 if (!IndirectMember) {
3127 AnyErrors = true;
3128 New->setInvalidDecl();
Sebastian Redl6df65482011-09-24 17:48:25 +00003129 continue;
Douglas Gregorb7107222011-03-04 19:46:35 +00003130 }
Sebastian Redl6df65482011-09-24 17:48:25 +00003131
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003132 NewInit = BuildMemberInitializer(IndirectMember, TempInit.take(),
Sebastian Redl6df65482011-09-24 17:48:25 +00003133 Init->getSourceLocation());
Anders Carlsson09025312009-08-29 05:16:22 +00003134 }
3135
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003136 if (NewInit.isInvalid()) {
3137 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00003138 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003139 } else {
Richard Trieu90ab75b2011-09-09 03:18:59 +00003140 NewInits.push_back(NewInit.get());
Anders Carlsson09025312009-08-29 05:16:22 +00003141 }
3142 }
Mike Stump1eb44332009-09-09 15:08:12 +00003143
Anders Carlsson09025312009-08-29 05:16:22 +00003144 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00003145 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00003146 /*FIXME: ColonLoc */
3147 SourceLocation(),
David Blaikie93c86172013-01-17 05:26:25 +00003148 NewInits,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003149 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00003150}
3151
John McCall52a575a2009-08-29 08:11:13 +00003152// TODO: this could be templated if the various decl types used the
3153// same method name.
3154static bool isInstantiationOf(ClassTemplateDecl *Pattern,
3155 ClassTemplateDecl *Instance) {
3156 Pattern = Pattern->getCanonicalDecl();
3157
3158 do {
3159 Instance = Instance->getCanonicalDecl();
3160 if (Pattern == Instance) return true;
3161 Instance = Instance->getInstantiatedFromMemberTemplate();
3162 } while (Instance);
3163
3164 return false;
3165}
3166
Douglas Gregor0d696532009-09-28 06:34:35 +00003167static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
3168 FunctionTemplateDecl *Instance) {
3169 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003170
Douglas Gregor0d696532009-09-28 06:34:35 +00003171 do {
3172 Instance = Instance->getCanonicalDecl();
3173 if (Pattern == Instance) return true;
3174 Instance = Instance->getInstantiatedFromMemberTemplate();
3175 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003176
Douglas Gregor0d696532009-09-28 06:34:35 +00003177 return false;
3178}
3179
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003180static bool
Douglas Gregored9c0f92009-10-29 00:04:11 +00003181isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
3182 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003183 Pattern
Douglas Gregored9c0f92009-10-29 00:04:11 +00003184 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
3185 do {
3186 Instance = cast<ClassTemplatePartialSpecializationDecl>(
3187 Instance->getCanonicalDecl());
3188 if (Pattern == Instance)
3189 return true;
3190 Instance = Instance->getInstantiatedFromMember();
3191 } while (Instance);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003192
Douglas Gregored9c0f92009-10-29 00:04:11 +00003193 return false;
3194}
3195
John McCall52a575a2009-08-29 08:11:13 +00003196static bool isInstantiationOf(CXXRecordDecl *Pattern,
3197 CXXRecordDecl *Instance) {
3198 Pattern = Pattern->getCanonicalDecl();
3199
3200 do {
3201 Instance = Instance->getCanonicalDecl();
3202 if (Pattern == Instance) return true;
3203 Instance = Instance->getInstantiatedFromMemberClass();
3204 } while (Instance);
3205
3206 return false;
3207}
3208
3209static bool isInstantiationOf(FunctionDecl *Pattern,
3210 FunctionDecl *Instance) {
3211 Pattern = Pattern->getCanonicalDecl();
3212
3213 do {
3214 Instance = Instance->getCanonicalDecl();
3215 if (Pattern == Instance) return true;
3216 Instance = Instance->getInstantiatedFromMemberFunction();
3217 } while (Instance);
3218
3219 return false;
3220}
3221
3222static bool isInstantiationOf(EnumDecl *Pattern,
3223 EnumDecl *Instance) {
3224 Pattern = Pattern->getCanonicalDecl();
3225
3226 do {
3227 Instance = Instance->getCanonicalDecl();
3228 if (Pattern == Instance) return true;
3229 Instance = Instance->getInstantiatedFromMemberEnum();
3230 } while (Instance);
3231
3232 return false;
3233}
3234
John McCalled976492009-12-04 22:46:56 +00003235static bool isInstantiationOf(UsingShadowDecl *Pattern,
3236 UsingShadowDecl *Instance,
3237 ASTContext &C) {
3238 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
3239}
3240
3241static bool isInstantiationOf(UsingDecl *Pattern,
3242 UsingDecl *Instance,
3243 ASTContext &C) {
3244 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
3245}
3246
John McCall7ba107a2009-11-18 02:36:19 +00003247static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
3248 UsingDecl *Instance,
3249 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003250 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00003251}
3252
3253static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00003254 UsingDecl *Instance,
3255 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00003256 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00003257}
3258
John McCall52a575a2009-08-29 08:11:13 +00003259static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
3260 VarDecl *Instance) {
3261 assert(Instance->isStaticDataMember());
3262
3263 Pattern = Pattern->getCanonicalDecl();
3264
3265 do {
3266 Instance = Instance->getCanonicalDecl();
3267 if (Pattern == Instance) return true;
3268 Instance = Instance->getInstantiatedFromStaticDataMember();
3269 } while (Instance);
3270
3271 return false;
3272}
3273
John McCalled976492009-12-04 22:46:56 +00003274// Other is the prospective instantiation
3275// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00003276static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003277 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00003278 if (UnresolvedUsingTypenameDecl *UUD
3279 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3280 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3281 return isInstantiationOf(UUD, UD, Ctx);
3282 }
3283 }
3284
3285 if (UnresolvedUsingValueDecl *UUD
3286 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00003287 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
3288 return isInstantiationOf(UUD, UD, Ctx);
3289 }
3290 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003291
Anders Carlsson0d8df782009-08-29 19:37:28 +00003292 return false;
3293 }
Mike Stump1eb44332009-09-09 15:08:12 +00003294
John McCall52a575a2009-08-29 08:11:13 +00003295 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
3296 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00003297
John McCall52a575a2009-08-29 08:11:13 +00003298 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
3299 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00003300
John McCall52a575a2009-08-29 08:11:13 +00003301 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
3302 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00003303
Douglas Gregor7caa6822009-07-24 20:34:43 +00003304 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00003305 if (Var->isStaticDataMember())
3306 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
3307
3308 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
3309 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00003310
Douglas Gregor0d696532009-09-28 06:34:35 +00003311 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
3312 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
3313
Douglas Gregored9c0f92009-10-29 00:04:11 +00003314 if (ClassTemplatePartialSpecializationDecl *PartialSpec
3315 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
3316 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
3317 PartialSpec);
3318
Anders Carlssond8b285f2009-09-01 04:26:58 +00003319 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
3320 if (!Field->getDeclName()) {
3321 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00003322 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00003323 cast<FieldDecl>(D);
3324 }
3325 }
Mike Stump1eb44332009-09-09 15:08:12 +00003326
John McCalled976492009-12-04 22:46:56 +00003327 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
3328 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
3329
3330 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3331 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
3332
Douglas Gregor815215d2009-05-27 05:35:12 +00003333 return D->getDeclName() && isa<NamedDecl>(Other) &&
3334 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
3335}
3336
3337template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00003338static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00003339 NamedDecl *D,
3340 ForwardIterator first,
3341 ForwardIterator last) {
3342 for (; first != last; ++first)
3343 if (isInstantiationOf(Ctx, D, *first))
3344 return cast<NamedDecl>(*first);
3345
3346 return 0;
3347}
3348
John McCall02cace72009-08-28 07:59:38 +00003349/// \brief Finds the instantiation of the given declaration context
3350/// within the current instantiation.
3351///
3352/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003353DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00003354 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00003355 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003356 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00003357 return cast_or_null<DeclContext>(ID);
3358 } else return DC;
3359}
3360
Douglas Gregored961e72009-05-27 17:54:46 +00003361/// \brief Find the instantiation of the given declaration within the
3362/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00003363///
3364/// This routine is intended to be used when \p D is a declaration
3365/// referenced from within a template, that needs to mapped into the
3366/// corresponding declaration within an instantiation. For example,
3367/// given:
3368///
3369/// \code
3370/// template<typename T>
3371/// struct X {
3372/// enum Kind {
3373/// KnownValue = sizeof(T)
3374/// };
3375///
3376/// bool getKind() const { return KnownValue; }
3377/// };
3378///
3379/// template struct X<int>;
3380/// \endcode
3381///
3382/// In the instantiation of X<int>::getKind(), we need to map the
3383/// EnumConstantDecl for KnownValue (which refers to
James Dennettf198d122012-06-17 03:36:08 +00003384/// X<T>::\<Kind>\::KnownValue) to its instantiation
James Dennettef2b5b32012-06-15 22:23:43 +00003385/// (X<int>::\<Kind>\::KnownValue). InstantiateCurrentDeclRef() performs
Douglas Gregored961e72009-05-27 17:54:46 +00003386/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003387NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00003388 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00003389 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00003390 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00003391 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003392 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
3393 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003394 // D is a local of some kind. Look into the map of local
3395 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00003396 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
3397 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
3398 = CurrentInstantiationScope->findInstantiationOf(D);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003399
Chris Lattner57ad3782011-02-17 20:34:02 +00003400 if (Found) {
3401 if (Decl *FD = Found->dyn_cast<Decl *>())
3402 return cast<NamedDecl>(FD);
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003403
Richard Smith9a4db032012-09-12 00:56:43 +00003404 int PackIdx = ArgumentPackSubstitutionIndex;
3405 assert(PackIdx != -1 && "found declaration pack but not pack expanding");
Chris Lattner57ad3782011-02-17 20:34:02 +00003406 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
3407 }
3408
3409 // If we didn't find the decl, then we must have a label decl that hasn't
3410 // been found yet. Lazily instantiate it and return it now.
3411 assert(isa<LabelDecl>(D));
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003412
Chris Lattner57ad3782011-02-17 20:34:02 +00003413 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
3414 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003415
Chris Lattner57ad3782011-02-17 20:34:02 +00003416 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
3417 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00003418 }
Douglas Gregor815215d2009-05-27 05:35:12 +00003419
Douglas Gregore95b4092009-09-16 18:34:49 +00003420 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
3421 if (!Record->isDependentContext())
3422 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003423
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003424 // Determine whether this record is the "templated" declaration describing
3425 // a class template or class template partial specialization.
Douglas Gregore95b4092009-09-16 18:34:49 +00003426 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003427 if (ClassTemplate)
3428 ClassTemplate = ClassTemplate->getCanonicalDecl();
3429 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3430 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
3431 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
3432
3433 // Walk the current context to find either the record or an instantiation of
3434 // it.
3435 DeclContext *DC = CurContext;
3436 while (!DC->isFileContext()) {
3437 // If we're performing substitution while we're inside the template
3438 // definition, we'll find our own context. We're done.
3439 if (DC->Equals(Record))
3440 return Record;
3441
3442 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
3443 // Check whether we're in the process of instantiating a class template
3444 // specialization of the template we're mapping.
3445 if (ClassTemplateSpecializationDecl *InstSpec
3446 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
3447 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
3448 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
3449 return InstRecord;
3450 }
3451
3452 // Check whether we're in the process of instantiating a member class.
3453 if (isInstantiationOf(Record, InstRecord))
3454 return InstRecord;
Douglas Gregore95b4092009-09-16 18:34:49 +00003455 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003456
3457
3458 // Move to the outer template scope.
3459 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
3460 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
3461 DC = FD->getLexicalDeclContext();
3462 continue;
3463 }
John McCall52a575a2009-08-29 08:11:13 +00003464 }
Douglas Gregor2c1227c2011-11-07 17:43:18 +00003465
3466 DC = DC->getParent();
John McCall52a575a2009-08-29 08:11:13 +00003467 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00003468
Douglas Gregore95b4092009-09-16 18:34:49 +00003469 // Fall through to deal with other dependent record types (e.g.,
3470 // anonymous unions in class templates).
3471 }
John McCall52a575a2009-08-29 08:11:13 +00003472
Douglas Gregore95b4092009-09-16 18:34:49 +00003473 if (!ParentDC->isDependentContext())
3474 return D;
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003475
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003476 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003477 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003478 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003479
Douglas Gregor815215d2009-05-27 05:35:12 +00003480 if (ParentDC != D->getDeclContext()) {
3481 // We performed some kind of instantiation in the parent context,
3482 // so now we need to look into the instantiated parent context to
3483 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003484
John McCall3cb0ebd2010-03-10 03:28:59 +00003485 // If our context used to be dependent, we may need to instantiate
3486 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003487 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003488 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003489 if (!Spec->isDependentContext()) {
3490 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003491 const RecordType *Tag = T->getAs<RecordType>();
3492 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003493 if (Tag->isBeingDefined())
3494 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003495 if (!Tag->isBeingDefined() &&
3496 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3497 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003498
3499 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003500 }
3501 }
3502
Douglas Gregor815215d2009-05-27 05:35:12 +00003503 NamedDecl *Result = 0;
3504 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003505 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
David Blaikie3bc93e32012-12-19 00:45:41 +00003506 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003507 } else {
3508 // Since we don't have a name for the entity we're looking for,
3509 // our only option is to walk through all of the declarations to
3510 // find that name. This will occur in a few cases:
3511 //
3512 // - anonymous struct/union within a template
3513 // - unnamed class/struct/union/enum within a template
3514 //
3515 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003516 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003517 ParentDC->decls_begin(),
3518 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003519 }
Mike Stump1eb44332009-09-09 15:08:12 +00003520
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003521 if (!Result) {
3522 if (isa<UsingShadowDecl>(D)) {
3523 // UsingShadowDecls can instantiate to nothing because of using hiding.
3524 } else if (Diags.hasErrorOccurred()) {
3525 // We've already complained about something, so most likely this
3526 // declaration failed to instantiate. There's no point in complaining
3527 // further, since this is normal in invalid code.
3528 } else if (IsBeingInstantiated) {
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003529 // The class in which this member exists is currently being
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003530 // instantiated, and we haven't gotten around to instantiating this
3531 // member yet. This can happen when the code uses forward declarations
3532 // of member classes, and introduces ordering dependencies via
3533 // template instantiation.
3534 Diag(Loc, diag::err_member_not_yet_instantiated)
3535 << D->getDeclName()
3536 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3537 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith0724b7c2012-03-26 20:28:16 +00003538 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
3539 // This enumeration constant was found when the template was defined,
3540 // but can't be found in the instantiation. This can happen if an
3541 // unscoped enumeration member is explicitly specialized.
3542 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
3543 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
3544 TemplateArgs));
3545 assert(Spec->getTemplateSpecializationKind() ==
3546 TSK_ExplicitSpecialization);
3547 Diag(Loc, diag::err_enumerator_does_not_exist)
3548 << D->getDeclName()
3549 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
3550 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
3551 << Context.getTypeDeclType(Spec);
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003552 } else {
3553 // We should have found something, but didn't.
3554 llvm_unreachable("Unable to find instantiation of declaration!");
3555 }
3556 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003557
Douglas Gregor815215d2009-05-27 05:35:12 +00003558 D = Result;
3559 }
3560
Douglas Gregor815215d2009-05-27 05:35:12 +00003561 return D;
3562}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003563
Mike Stump1eb44332009-09-09 15:08:12 +00003564/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003565/// instantiations we have seen until this point.
Nick Lewycky81559102011-05-31 07:58:42 +00003566void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003567 // Load pending instantiations from the external source.
3568 if (!LocalOnly && ExternalSource) {
Richard Smithb9d0b762012-07-27 04:22:15 +00003569 SmallVector<PendingImplicitInstantiation, 4> Pending;
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00003570 ExternalSource->ReadPendingInstantiations(Pending);
3571 PendingInstantiations.insert(PendingInstantiations.begin(),
3572 Pending.begin(), Pending.end());
3573 }
NAKAMURA Takumia789ca92011-10-08 11:31:46 +00003574
Douglas Gregor60406be2010-01-16 22:29:39 +00003575 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003576 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003577 PendingImplicitInstantiation Inst;
3578
3579 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003580 Inst = PendingInstantiations.front();
3581 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003582 } else {
3583 Inst = PendingLocalImplicitInstantiations.front();
3584 PendingLocalImplicitInstantiations.pop_front();
3585 }
Mike Stump1eb44332009-09-09 15:08:12 +00003586
Douglas Gregor7caa6822009-07-24 20:34:43 +00003587 // Instantiate function definitions
3588 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003589 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3590 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003591 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3592 TSK_ExplicitInstantiationDefinition;
3593 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3594 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003595 continue;
3596 }
Mike Stump1eb44332009-09-09 15:08:12 +00003597
Douglas Gregor7caa6822009-07-24 20:34:43 +00003598 // Instantiate static data member definitions.
3599 VarDecl *Var = cast<VarDecl>(Inst.first);
3600 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003601
Chandler Carruth291b4412010-02-13 10:17:50 +00003602 // Don't try to instantiate declarations if the most recent redeclaration
3603 // is invalid.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003604 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth291b4412010-02-13 10:17:50 +00003605 continue;
3606
3607 // Check if the most recent declaration has changed the specialization kind
3608 // and removed the need for implicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003609 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth291b4412010-02-13 10:17:50 +00003610 case TSK_Undeclared:
David Blaikieb219cfc2011-09-23 05:06:16 +00003611 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth291b4412010-02-13 10:17:50 +00003612 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003613 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003614 continue; // No longer need to instantiate this type.
3615 case TSK_ExplicitInstantiationDefinition:
3616 // We only need an instantiation if the pending instantiation *is* the
3617 // explicit instantiation.
Douglas Gregoref96ee02012-01-14 16:38:05 +00003618 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003619 case TSK_ImplicitInstantiation:
3620 break;
3621 }
3622
John McCallf312b1e2010-08-26 23:41:50 +00003623 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3624 "instantiating static data member "
3625 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003626
Chandler Carruth58e390e2010-08-25 08:27:02 +00003627 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3628 TSK_ExplicitInstantiationDefinition;
3629 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3630 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003631 }
3632}
John McCall0c01d182010-03-24 05:22:00 +00003633
3634void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3635 const MultiLevelTemplateArgumentList &TemplateArgs) {
3636 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3637 E = Pattern->ddiag_end(); I != E; ++I) {
3638 DependentDiagnostic *DD = *I;
3639
3640 switch (DD->getKind()) {
3641 case DependentDiagnostic::Access:
3642 HandleDependentAccessCheck(*DD, TemplateArgs);
3643 break;
3644 }
3645 }
3646}