blob: f9e57bc7064c0759a4705c01d9c11d27368b858f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Argyrios Kyrtzidise184bae2008-06-04 13:04:04 +000010// This file implements the Decl subclasses.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Decl.h"
Douglas Gregor2a3009a2009-02-03 19:21:40 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff0de21fd2009-02-22 19:35:57 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregor7da97d02009-05-10 22:57:19 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000018#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidisb17166c2009-08-19 01:27:32 +000019#include "clang/AST/TypeLoc.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000020#include "clang/AST/Stmt.h"
Nuno Lopes99f06ba2008-12-17 23:39:55 +000021#include "clang/AST/Expr.h"
Anders Carlsson337cba42009-12-15 19:16:31 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000023#include "clang/AST/PrettyPrinter.h"
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +000024#include "clang/AST/ASTMutationListener.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000025#include "clang/Basic/Builtins.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000026#include "clang/Basic/IdentifierTable.h"
Douglas Gregor15de72c2011-12-02 23:23:56 +000027#include "clang/Basic/Module.h"
Abramo Bagnara465d41b2010-05-11 21:36:43 +000028#include "clang/Basic/Specifiers.h"
Douglas Gregor4421d2b2011-03-26 12:10:19 +000029#include "clang/Basic/TargetInfo.h"
John McCallf1bbbb42009-09-04 01:14:41 +000030#include "llvm/Support/ErrorHandling.h"
Ted Kremenek27f8a282008-05-20 00:43:19 +000031
David Blaikie4278c652011-09-21 18:16:56 +000032#include <algorithm>
33
Reid Spencer5f016e22007-07-11 17:01:13 +000034using namespace clang;
35
Chris Lattnerd3b90652008-03-15 05:43:15 +000036//===----------------------------------------------------------------------===//
Douglas Gregor4afa39d2009-01-20 01:17:11 +000037// NamedDecl Implementation
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000038//===----------------------------------------------------------------------===//
39
Douglas Gregor4421d2b2011-03-26 12:10:19 +000040static llvm::Optional<Visibility> getVisibilityOf(const Decl *D) {
41 // If this declaration has an explicit visibility attribute, use it.
42 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
43 switch (A->getVisibility()) {
44 case VisibilityAttr::Default:
45 return DefaultVisibility;
46 case VisibilityAttr::Hidden:
47 return HiddenVisibility;
48 case VisibilityAttr::Protected:
49 return ProtectedVisibility;
50 }
John McCall7f1b9872010-12-18 03:30:47 +000051
John McCall1fb0caa2010-10-22 21:05:15 +000052 return DefaultVisibility;
John McCall1fb0caa2010-10-22 21:05:15 +000053 }
Douglas Gregor4421d2b2011-03-26 12:10:19 +000054
55 // If we're on Mac OS X, an 'availability' for Mac OS X attribute
56 // implies visibility(default).
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000057 if (D->getASTContext().getTargetInfo().getTriple().isOSDarwin()) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +000058 for (specific_attr_iterator<AvailabilityAttr>
59 A = D->specific_attr_begin<AvailabilityAttr>(),
60 AEnd = D->specific_attr_end<AvailabilityAttr>();
61 A != AEnd; ++A)
62 if ((*A)->getPlatform()->getName().equals("macosx"))
63 return DefaultVisibility;
64 }
65
66 return llvm::Optional<Visibility>();
John McCall1fb0caa2010-10-22 21:05:15 +000067}
68
John McCallaf146032010-10-30 11:50:40 +000069typedef NamedDecl::LinkageInfo LinkageInfo;
John McCall1fb0caa2010-10-22 21:05:15 +000070typedef std::pair<Linkage,Visibility> LVPair;
John McCallaf146032010-10-30 11:50:40 +000071
John McCall1fb0caa2010-10-22 21:05:15 +000072static LVPair merge(LVPair L, LVPair R) {
73 return LVPair(minLinkage(L.first, R.first),
74 minVisibility(L.second, R.second));
75}
76
John McCallaf146032010-10-30 11:50:40 +000077static LVPair merge(LVPair L, LinkageInfo R) {
78 return LVPair(minLinkage(L.first, R.linkage()),
79 minVisibility(L.second, R.visibility()));
80}
81
Benjamin Kramer752c2e92010-11-05 19:56:37 +000082namespace {
John McCall36987482010-11-02 01:45:15 +000083/// Flags controlling the computation of linkage and visibility.
84struct LVFlags {
85 bool ConsiderGlobalVisibility;
86 bool ConsiderVisibilityAttributes;
John McCall1a0918a2011-03-04 10:39:25 +000087 bool ConsiderTemplateParameterTypes;
John McCall36987482010-11-02 01:45:15 +000088
89 LVFlags() : ConsiderGlobalVisibility(true),
John McCall1a0918a2011-03-04 10:39:25 +000090 ConsiderVisibilityAttributes(true),
91 ConsiderTemplateParameterTypes(true) {
John McCall36987482010-11-02 01:45:15 +000092 }
93
Douglas Gregor381d34e2010-12-06 18:36:25 +000094 /// \brief Returns a set of flags that is only useful for computing the
95 /// linkage, not the visibility, of a declaration.
96 static LVFlags CreateOnlyDeclLinkage() {
97 LVFlags F;
98 F.ConsiderGlobalVisibility = false;
99 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +0000100 F.ConsiderTemplateParameterTypes = false;
Douglas Gregor381d34e2010-12-06 18:36:25 +0000101 return F;
102 }
103
John McCall36987482010-11-02 01:45:15 +0000104 /// Returns a set of flags, otherwise based on these, which ignores
105 /// off all sources of visibility except template arguments.
106 LVFlags onlyTemplateVisibility() const {
107 LVFlags F = *this;
108 F.ConsiderGlobalVisibility = false;
109 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +0000110 F.ConsiderTemplateParameterTypes = false;
John McCall36987482010-11-02 01:45:15 +0000111 return F;
112 }
Douglas Gregor89d63e52010-12-06 18:50:56 +0000113};
Benjamin Kramer752c2e92010-11-05 19:56:37 +0000114} // end anonymous namespace
John McCall36987482010-11-02 01:45:15 +0000115
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000116/// \brief Get the most restrictive linkage for the types in the given
117/// template parameter list.
John McCall1fb0caa2010-10-22 21:05:15 +0000118static LVPair
119getLVForTemplateParameterList(const TemplateParameterList *Params) {
120 LVPair LV(ExternalLinkage, DefaultVisibility);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000121 for (TemplateParameterList::const_iterator P = Params->begin(),
122 PEnd = Params->end();
123 P != PEnd; ++P) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000124 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
125 if (NTTP->isExpandedParameterPack()) {
126 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
127 QualType T = NTTP->getExpansionType(I);
128 if (!T->isDependentType())
129 LV = merge(LV, T->getLinkageAndVisibility());
130 }
131 continue;
132 }
133
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000134 if (!NTTP->getType()->isDependentType()) {
John McCall1fb0caa2010-10-22 21:05:15 +0000135 LV = merge(LV, NTTP->getType()->getLinkageAndVisibility());
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000136 continue;
137 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000138 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000139
140 if (TemplateTemplateParmDecl *TTP
141 = dyn_cast<TemplateTemplateParmDecl>(*P)) {
John McCallaf146032010-10-30 11:50:40 +0000142 LV = merge(LV, getLVForTemplateParameterList(TTP->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000143 }
144 }
145
John McCall1fb0caa2010-10-22 21:05:15 +0000146 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000147}
148
Douglas Gregor381d34e2010-12-06 18:36:25 +0000149/// getLVForDecl - Get the linkage and visibility for the given declaration.
150static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags F);
151
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000152/// \brief Get the most restrictive linkage for the types and
153/// declarations in the given template argument list.
John McCall1fb0caa2010-10-22 21:05:15 +0000154static LVPair getLVForTemplateArgumentList(const TemplateArgument *Args,
Douglas Gregor381d34e2010-12-06 18:36:25 +0000155 unsigned NumArgs,
156 LVFlags &F) {
John McCall1fb0caa2010-10-22 21:05:15 +0000157 LVPair LV(ExternalLinkage, DefaultVisibility);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000158
159 for (unsigned I = 0; I != NumArgs; ++I) {
160 switch (Args[I].getKind()) {
161 case TemplateArgument::Null:
162 case TemplateArgument::Integral:
163 case TemplateArgument::Expression:
164 break;
165
166 case TemplateArgument::Type:
John McCall1fb0caa2010-10-22 21:05:15 +0000167 LV = merge(LV, Args[I].getAsType()->getLinkageAndVisibility());
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000168 break;
169
170 case TemplateArgument::Declaration:
John McCall1fb0caa2010-10-22 21:05:15 +0000171 // The decl can validly be null as the representation of nullptr
172 // arguments, valid only in C++0x.
173 if (Decl *D = Args[I].getAsDecl()) {
Douglas Gregor89d63e52010-12-06 18:50:56 +0000174 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
175 LV = merge(LV, getLVForDecl(ND, F));
John McCall1fb0caa2010-10-22 21:05:15 +0000176 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000177 break;
178
179 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +0000180 case TemplateArgument::TemplateExpansion:
181 if (TemplateDecl *Template
182 = Args[I].getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Douglas Gregor89d63e52010-12-06 18:50:56 +0000183 LV = merge(LV, getLVForDecl(Template, F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000184 break;
185
186 case TemplateArgument::Pack:
John McCall1fb0caa2010-10-22 21:05:15 +0000187 LV = merge(LV, getLVForTemplateArgumentList(Args[I].pack_begin(),
Douglas Gregor381d34e2010-12-06 18:36:25 +0000188 Args[I].pack_size(),
189 F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000190 break;
191 }
192 }
193
John McCall1fb0caa2010-10-22 21:05:15 +0000194 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000195}
196
John McCallaf146032010-10-30 11:50:40 +0000197static LVPair
Douglas Gregor381d34e2010-12-06 18:36:25 +0000198getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
199 LVFlags &F) {
200 return getLVForTemplateArgumentList(TArgs.data(), TArgs.size(), F);
John McCall3cdfc4d2010-08-13 08:35:10 +0000201}
202
John McCall6ce51ee2011-06-27 23:06:04 +0000203static bool shouldConsiderTemplateLV(const FunctionDecl *fn,
204 const FunctionTemplateSpecializationInfo *spec) {
205 return !(spec->isExplicitSpecialization() &&
206 fn->hasAttr<VisibilityAttr>());
207}
208
209static bool shouldConsiderTemplateLV(const ClassTemplateSpecializationDecl *d) {
210 return !(d->isExplicitSpecialization() && d->hasAttr<VisibilityAttr>());
211}
212
John McCall36987482010-11-02 01:45:15 +0000213static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, LVFlags F) {
Sebastian Redl7a126a42010-08-31 00:36:30 +0000214 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregord85b5b92009-11-25 22:24:25 +0000215 "Not a name having namespace scope");
216 ASTContext &Context = D->getASTContext();
217
218 // C++ [basic.link]p3:
219 // A name having namespace scope (3.3.6) has internal linkage if it
220 // is the name of
221 // - an object, reference, function or function template that is
222 // explicitly declared static; or,
223 // (This bullet corresponds to C99 6.2.2p3.)
224 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
225 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000226 if (Var->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000227 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000228
229 // - an object or reference that is explicitly declared const
230 // and neither explicitly declared extern nor previously
231 // declared to have external linkage; or
232 // (there is no equivalent in C99)
233 if (Context.getLangOptions().CPlusPlus &&
Eli Friedmane9d65542009-11-26 03:04:01 +0000234 Var->getType().isConstant(Context) &&
John McCalld931b082010-08-26 03:08:43 +0000235 Var->getStorageClass() != SC_Extern &&
236 Var->getStorageClass() != SC_PrivateExtern) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000237 bool FoundExtern = false;
238 for (const VarDecl *PrevVar = Var->getPreviousDeclaration();
239 PrevVar && !FoundExtern;
240 PrevVar = PrevVar->getPreviousDeclaration())
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000241 if (isExternalLinkage(PrevVar->getLinkage()))
Douglas Gregord85b5b92009-11-25 22:24:25 +0000242 FoundExtern = true;
243
244 if (!FoundExtern)
John McCallaf146032010-10-30 11:50:40 +0000245 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000246 }
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000247 if (Var->getStorageClass() == SC_None) {
248 const VarDecl *PrevVar = Var->getPreviousDeclaration();
249 for (; PrevVar; PrevVar = PrevVar->getPreviousDeclaration())
250 if (PrevVar->getStorageClass() == SC_PrivateExtern)
251 break;
252 if (PrevVar)
253 return PrevVar->getLinkageAndVisibility();
254 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000255 } else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000256 // C++ [temp]p4:
257 // A non-member function template can have internal linkage; any
258 // other template name shall have external linkage.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000259 const FunctionDecl *Function = 0;
260 if (const FunctionTemplateDecl *FunTmpl
261 = dyn_cast<FunctionTemplateDecl>(D))
262 Function = FunTmpl->getTemplatedDecl();
263 else
264 Function = cast<FunctionDecl>(D);
265
266 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000267 if (Function->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000268 return LinkageInfo(InternalLinkage, DefaultVisibility, false);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000269 } else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
270 // - a data member of an anonymous union.
271 if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion())
John McCallaf146032010-10-30 11:50:40 +0000272 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000273 }
274
Chandler Carruth094b6432011-02-24 19:03:39 +0000275 if (D->isInAnonymousNamespace()) {
276 const VarDecl *Var = dyn_cast<VarDecl>(D);
277 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
278 if ((!Var || !Var->isExternC()) && (!Func || !Func->isExternC()))
279 return LinkageInfo::uniqueExternal();
280 }
John McCalle7bc9722010-10-28 04:18:25 +0000281
John McCall1fb0caa2010-10-22 21:05:15 +0000282 // Set up the defaults.
283
284 // C99 6.2.2p5:
285 // If the declaration of an identifier for an object has file
286 // scope and no storage-class specifier, its linkage is
287 // external.
John McCallaf146032010-10-30 11:50:40 +0000288 LinkageInfo LV;
289
John McCall36987482010-11-02 01:45:15 +0000290 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000291 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
292 LV.setVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000293 F.ConsiderGlobalVisibility = false;
John McCall90f14502010-12-10 02:59:44 +0000294 } else {
295 // If we're declared in a namespace with a visibility attribute,
296 // use that namespace's visibility, but don't call it explicit.
297 for (const DeclContext *DC = D->getDeclContext();
298 !isa<TranslationUnitDecl>(DC);
299 DC = DC->getParent()) {
300 if (!isa<NamespaceDecl>(DC)) continue;
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000301 if (llvm::Optional<Visibility> Vis
302 = cast<NamespaceDecl>(DC)->getExplicitVisibility()) {
303 LV.setVisibility(*Vis, false);
John McCall90f14502010-12-10 02:59:44 +0000304 F.ConsiderGlobalVisibility = false;
305 break;
306 }
307 }
John McCall36987482010-11-02 01:45:15 +0000308 }
John McCallaf146032010-10-30 11:50:40 +0000309 }
John McCall1fb0caa2010-10-22 21:05:15 +0000310
Douglas Gregord85b5b92009-11-25 22:24:25 +0000311 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000312
Douglas Gregord85b5b92009-11-25 22:24:25 +0000313 // A name having namespace scope has external linkage if it is the
314 // name of
315 //
316 // - an object or reference, unless it has internal linkage; or
317 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000318 // GCC applies the following optimization to variables and static
319 // data members, but not to functions:
320 //
John McCall1fb0caa2010-10-22 21:05:15 +0000321 // Modify the variable's LV by the LV of its type unless this is
322 // C or extern "C". This follows from [basic.link]p9:
323 // A type without linkage shall not be used as the type of a
324 // variable or function with external linkage unless
325 // - the entity has C language linkage, or
326 // - the entity is declared within an unnamed namespace, or
327 // - the entity is not used or is defined in the same
328 // translation unit.
329 // and [basic.link]p10:
330 // ...the types specified by all declarations referring to a
331 // given variable or function shall be identical...
332 // C does not have an equivalent rule.
333 //
John McCallac65c622010-10-26 04:59:26 +0000334 // Ignore this if we've got an explicit attribute; the user
335 // probably knows what they're doing.
336 //
John McCall1fb0caa2010-10-22 21:05:15 +0000337 // Note that we don't want to make the variable non-external
338 // because of this, but unique-external linkage suits us.
John McCallee301022010-10-30 09:18:49 +0000339 if (Context.getLangOptions().CPlusPlus && !Var->isExternC()) {
John McCall1fb0caa2010-10-22 21:05:15 +0000340 LVPair TypeLV = Var->getType()->getLinkageAndVisibility();
341 if (TypeLV.first != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000342 return LinkageInfo::uniqueExternal();
343 if (!LV.visibilityExplicit())
344 LV.mergeVisibility(TypeLV.second);
John McCall110e8e52010-10-29 22:22:43 +0000345 }
346
John McCall35cebc32010-11-02 18:38:13 +0000347 if (Var->getStorageClass() == SC_PrivateExtern)
348 LV.setVisibility(HiddenVisibility, true);
349
Douglas Gregord85b5b92009-11-25 22:24:25 +0000350 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000351 (Var->getStorageClass() == SC_Extern ||
352 Var->getStorageClass() == SC_PrivateExtern)) {
John McCall1fb0caa2010-10-22 21:05:15 +0000353
Douglas Gregord85b5b92009-11-25 22:24:25 +0000354 // C99 6.2.2p4:
355 // For an identifier declared with the storage-class specifier
356 // extern in a scope in which a prior declaration of that
357 // identifier is visible, if the prior declaration specifies
358 // internal or external linkage, the linkage of the identifier
359 // at the later declaration is the same as the linkage
360 // specified at the prior declaration. If no prior declaration
361 // is visible, or if the prior declaration specifies no
362 // linkage, then the identifier has external linkage.
363 if (const VarDecl *PrevVar = Var->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000364 LinkageInfo PrevLV = getLVForDecl(PrevVar, F);
John McCallaf146032010-10-30 11:50:40 +0000365 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
366 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000367 }
368 }
369
Douglas Gregord85b5b92009-11-25 22:24:25 +0000370 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000371 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000372 // In theory, we can modify the function's LV by the LV of its
373 // type unless it has C linkage (see comment above about variables
374 // for justification). In practice, GCC doesn't do this, so it's
375 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000376
John McCall35cebc32010-11-02 18:38:13 +0000377 if (Function->getStorageClass() == SC_PrivateExtern)
378 LV.setVisibility(HiddenVisibility, true);
379
Douglas Gregord85b5b92009-11-25 22:24:25 +0000380 // C99 6.2.2p5:
381 // If the declaration of an identifier for a function has no
382 // storage-class specifier, its linkage is determined exactly
383 // as if it were declared with the storage-class specifier
384 // extern.
385 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000386 (Function->getStorageClass() == SC_Extern ||
387 Function->getStorageClass() == SC_PrivateExtern ||
388 Function->getStorageClass() == SC_None)) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000389 // C99 6.2.2p4:
390 // For an identifier declared with the storage-class specifier
391 // extern in a scope in which a prior declaration of that
392 // identifier is visible, if the prior declaration specifies
393 // internal or external linkage, the linkage of the identifier
394 // at the later declaration is the same as the linkage
395 // specified at the prior declaration. If no prior declaration
396 // is visible, or if the prior declaration specifies no
397 // linkage, then the identifier has external linkage.
398 if (const FunctionDecl *PrevFunc = Function->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000399 LinkageInfo PrevLV = getLVForDecl(PrevFunc, F);
John McCallaf146032010-10-30 11:50:40 +0000400 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
401 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000402 }
403 }
404
John McCallaf8ca372011-02-10 06:50:24 +0000405 // In C++, then if the type of the function uses a type with
406 // unique-external linkage, it's not legally usable from outside
407 // this translation unit. However, we should use the C linkage
408 // rules instead for extern "C" declarations.
409 if (Context.getLangOptions().CPlusPlus && !Function->isExternC() &&
410 Function->getType()->getLinkage() == UniqueExternalLinkage)
411 return LinkageInfo::uniqueExternal();
412
John McCall6ce51ee2011-06-27 23:06:04 +0000413 // Consider LV from the template and the template arguments unless
414 // this is an explicit specialization with a visibility attribute.
415 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000416 = Function->getTemplateSpecializationInfo()) {
John McCall6ce51ee2011-06-27 23:06:04 +0000417 if (shouldConsiderTemplateLV(Function, specInfo)) {
418 LV.merge(getLVForDecl(specInfo->getTemplate(),
419 F.onlyTemplateVisibility()));
420 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
421 LV.merge(getLVForTemplateArgumentList(templateArgs, F));
422 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000423 }
424
Douglas Gregord85b5b92009-11-25 22:24:25 +0000425 // - a named class (Clause 9), or an unnamed class defined in a
426 // typedef declaration in which the class has the typedef name
427 // for linkage purposes (7.1.3); or
428 // - a named enumeration (7.2), or an unnamed enumeration
429 // defined in a typedef declaration in which the enumeration
430 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000431 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
432 // Unnamed tags have no linkage.
Richard Smith162e1c12011-04-15 14:24:37 +0000433 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl())
John McCallaf146032010-10-30 11:50:40 +0000434 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000435
John McCall1fb0caa2010-10-22 21:05:15 +0000436 // If this is a class template specialization, consider the
437 // linkage of the template and template arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000438 if (const ClassTemplateSpecializationDecl *spec
John McCall1fb0caa2010-10-22 21:05:15 +0000439 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000440 if (shouldConsiderTemplateLV(spec)) {
441 // From the template.
442 LV.merge(getLVForDecl(spec->getSpecializedTemplate(),
443 F.onlyTemplateVisibility()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000444
John McCall6ce51ee2011-06-27 23:06:04 +0000445 // The arguments at which the template was instantiated.
446 const TemplateArgumentList &TemplateArgs = spec->getTemplateArgs();
447 LV.merge(getLVForTemplateArgumentList(TemplateArgs, F));
448 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000449 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000450
John McCallac65c622010-10-26 04:59:26 +0000451 // Consider -fvisibility unless the type has C linkage.
John McCall36987482010-11-02 01:45:15 +0000452 if (F.ConsiderGlobalVisibility)
453 F.ConsiderGlobalVisibility =
John McCallac65c622010-10-26 04:59:26 +0000454 (Context.getLangOptions().CPlusPlus &&
455 !Tag->getDeclContext()->isExternCContext());
John McCall1fb0caa2010-10-22 21:05:15 +0000456
Douglas Gregord85b5b92009-11-25 22:24:25 +0000457 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000458 } else if (isa<EnumConstantDecl>(D)) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000459 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()), F);
John McCallaf146032010-10-30 11:50:40 +0000460 if (!isExternalLinkage(EnumLV.linkage()))
461 return LinkageInfo::none();
462 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000463
464 // - a template, unless it is a function template that has
465 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000466 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
467 if (F.ConsiderTemplateParameterTypes)
468 LV.merge(getLVForTemplateParameterList(temp->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000469
Douglas Gregord85b5b92009-11-25 22:24:25 +0000470 // - a namespace (7.3), unless it is declared within an unnamed
471 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000472 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
473 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000474
John McCall1fb0caa2010-10-22 21:05:15 +0000475 // By extension, we assign external linkage to Objective-C
476 // interfaces.
477 } else if (isa<ObjCInterfaceDecl>(D)) {
478 // fallout
479
480 // Everything not covered here has no linkage.
481 } else {
John McCallaf146032010-10-30 11:50:40 +0000482 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000483 }
484
485 // If we ended up with non-external linkage, visibility should
486 // always be default.
John McCallaf146032010-10-30 11:50:40 +0000487 if (LV.linkage() != ExternalLinkage)
488 return LinkageInfo(LV.linkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000489
490 // If we didn't end up with hidden visibility, consider attributes
491 // and -fvisibility.
John McCall36987482010-11-02 01:45:15 +0000492 if (F.ConsiderGlobalVisibility)
John McCallaf146032010-10-30 11:50:40 +0000493 LV.mergeVisibility(Context.getLangOptions().getVisibilityMode());
John McCall1fb0caa2010-10-22 21:05:15 +0000494
495 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000496}
497
John McCall36987482010-11-02 01:45:15 +0000498static LinkageInfo getLVForClassMember(const NamedDecl *D, LVFlags F) {
John McCall1fb0caa2010-10-22 21:05:15 +0000499 // Only certain class members have linkage. Note that fields don't
500 // really have linkage, but it's convenient to say they do for the
501 // purposes of calculating linkage of pointer-to-data-member
502 // template arguments.
John McCall3cdfc4d2010-08-13 08:35:10 +0000503 if (!(isa<CXXMethodDecl>(D) ||
504 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000505 isa<FieldDecl>(D) ||
John McCall3cdfc4d2010-08-13 08:35:10 +0000506 (isa<TagDecl>(D) &&
Richard Smith162e1c12011-04-15 14:24:37 +0000507 (D->getDeclName() || cast<TagDecl>(D)->getTypedefNameForAnonDecl()))))
John McCallaf146032010-10-30 11:50:40 +0000508 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000509
John McCall36987482010-11-02 01:45:15 +0000510 LinkageInfo LV;
511
512 // The flags we're going to use to compute the class's visibility.
513 LVFlags ClassF = F;
514
515 // If we have an explicit visibility attribute, merge that in.
516 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000517 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
518 LV.mergeVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000519
520 // Ignore global visibility later, but not this attribute.
521 F.ConsiderGlobalVisibility = false;
522
523 // Ignore both global visibility and attributes when computing our
524 // parent's visibility.
525 ClassF = F.onlyTemplateVisibility();
526 }
527 }
John McCallaf146032010-10-30 11:50:40 +0000528
529 // Class members only have linkage if their class has external
John McCall36987482010-11-02 01:45:15 +0000530 // linkage.
531 LV.merge(getLVForDecl(cast<RecordDecl>(D->getDeclContext()), ClassF));
532 if (!isExternalLinkage(LV.linkage()))
John McCallaf146032010-10-30 11:50:40 +0000533 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000534
535 // If the class already has unique-external linkage, we can't improve.
John McCall36987482010-11-02 01:45:15 +0000536 if (LV.linkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000537 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000538
John McCall3cdfc4d2010-08-13 08:35:10 +0000539 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000540 // If the type of the function uses a type with unique-external
541 // linkage, it's not legally usable from outside this translation unit.
542 if (MD->getType()->getLinkage() == UniqueExternalLinkage)
543 return LinkageInfo::uniqueExternal();
544
John McCall110e8e52010-10-29 22:22:43 +0000545 TemplateSpecializationKind TSK = TSK_Undeclared;
546
John McCall1fb0caa2010-10-22 21:05:15 +0000547 // If this is a method template specialization, use the linkage for
548 // the template parameters and arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000549 if (FunctionTemplateSpecializationInfo *spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000550 = MD->getTemplateSpecializationInfo()) {
John McCall6ce51ee2011-06-27 23:06:04 +0000551 if (shouldConsiderTemplateLV(MD, spec)) {
552 LV.merge(getLVForTemplateArgumentList(*spec->TemplateArguments, F));
553 if (F.ConsiderTemplateParameterTypes)
554 LV.merge(getLVForTemplateParameterList(
555 spec->getTemplate()->getTemplateParameters()));
556 }
John McCall110e8e52010-10-29 22:22:43 +0000557
John McCall6ce51ee2011-06-27 23:06:04 +0000558 TSK = spec->getTemplateSpecializationKind();
John McCall110e8e52010-10-29 22:22:43 +0000559 } else if (MemberSpecializationInfo *MSI =
560 MD->getMemberSpecializationInfo()) {
561 TSK = MSI->getTemplateSpecializationKind();
John McCall3cdfc4d2010-08-13 08:35:10 +0000562 }
563
John McCall110e8e52010-10-29 22:22:43 +0000564 // If we're paying attention to global visibility, apply
565 // -finline-visibility-hidden if this is an inline method.
566 //
John McCallaf146032010-10-30 11:50:40 +0000567 // Note that ConsiderGlobalVisibility doesn't yet have information
568 // about whether containing classes have visibility attributes,
569 // and that's intentional.
570 if (TSK != TSK_ExplicitInstantiationDeclaration &&
Rafael Espindolafedb6ec2011-12-27 21:15:28 +0000571 TSK != TSK_ExplicitInstantiationDefinition &&
John McCall36987482010-11-02 01:45:15 +0000572 F.ConsiderGlobalVisibility &&
John McCall66cbcf32010-11-01 01:29:57 +0000573 MD->getASTContext().getLangOptions().InlineVisibilityHidden) {
574 // InlineVisibilityHidden only applies to definitions, and
575 // isInlined() only gives meaningful answers on definitions
576 // anyway.
577 const FunctionDecl *Def = 0;
578 if (MD->hasBody(Def) && Def->isInlined())
579 LV.setVisibility(HiddenVisibility);
580 }
John McCall1fb0caa2010-10-22 21:05:15 +0000581
John McCall110e8e52010-10-29 22:22:43 +0000582 // Note that in contrast to basically every other situation, we
583 // *do* apply -fvisibility to method declarations.
584
585 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000586 if (const ClassTemplateSpecializationDecl *spec
John McCall110e8e52010-10-29 22:22:43 +0000587 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000588 if (shouldConsiderTemplateLV(spec)) {
589 // Merge template argument/parameter information for member
590 // class template specializations.
591 LV.merge(getLVForTemplateArgumentList(spec->getTemplateArgs(), F));
John McCall1a0918a2011-03-04 10:39:25 +0000592 if (F.ConsiderTemplateParameterTypes)
593 LV.merge(getLVForTemplateParameterList(
John McCall6ce51ee2011-06-27 23:06:04 +0000594 spec->getSpecializedTemplate()->getTemplateParameters()));
595 }
John McCall110e8e52010-10-29 22:22:43 +0000596 }
597
John McCall110e8e52010-10-29 22:22:43 +0000598 // Static data members.
599 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
John McCallee301022010-10-30 09:18:49 +0000600 // Modify the variable's linkage by its type, but ignore the
601 // type's visibility unless it's a definition.
602 LVPair TypeLV = VD->getType()->getLinkageAndVisibility();
603 if (TypeLV.first != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000604 LV.mergeLinkage(UniqueExternalLinkage);
605 if (!LV.visibilityExplicit())
606 LV.mergeVisibility(TypeLV.second);
John McCall110e8e52010-10-29 22:22:43 +0000607 }
608
John McCall36987482010-11-02 01:45:15 +0000609 F.ConsiderGlobalVisibility &= !LV.visibilityExplicit();
John McCall110e8e52010-10-29 22:22:43 +0000610
611 // Apply -fvisibility if desired.
John McCall36987482010-11-02 01:45:15 +0000612 if (F.ConsiderGlobalVisibility && LV.visibility() != HiddenVisibility) {
John McCallaf146032010-10-30 11:50:40 +0000613 LV.mergeVisibility(D->getASTContext().getLangOptions().getVisibilityMode());
John McCall3cdfc4d2010-08-13 08:35:10 +0000614 }
615
John McCall1fb0caa2010-10-22 21:05:15 +0000616 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000617}
618
John McCallf76b0922011-02-08 19:01:05 +0000619static void clearLinkageForClass(const CXXRecordDecl *record) {
620 for (CXXRecordDecl::decl_iterator
621 i = record->decls_begin(), e = record->decls_end(); i != e; ++i) {
622 Decl *child = *i;
623 if (isa<NamedDecl>(child))
624 cast<NamedDecl>(child)->ClearLinkageCache();
625 }
626}
627
David Blaikie99ba9e32011-12-20 02:48:34 +0000628void NamedDecl::anchor() { }
629
John McCallf76b0922011-02-08 19:01:05 +0000630void NamedDecl::ClearLinkageCache() {
631 // Note that we can't skip clearing the linkage of children just
632 // because the parent doesn't have cached linkage: we don't cache
633 // when computing linkage for parent contexts.
634
635 HasCachedLinkage = 0;
636
637 // If we're changing the linkage of a class, we need to reset the
638 // linkage of child declarations, too.
639 if (const CXXRecordDecl *record = dyn_cast<CXXRecordDecl>(this))
640 clearLinkageForClass(record);
641
John McCall15e310a2011-02-19 02:53:41 +0000642 if (ClassTemplateDecl *temp =
643 dyn_cast<ClassTemplateDecl>(const_cast<NamedDecl*>(this))) {
John McCallf76b0922011-02-08 19:01:05 +0000644 // Clear linkage for the template pattern.
645 CXXRecordDecl *record = temp->getTemplatedDecl();
646 record->HasCachedLinkage = 0;
647 clearLinkageForClass(record);
648
John McCall15e310a2011-02-19 02:53:41 +0000649 // We need to clear linkage for specializations, too.
650 for (ClassTemplateDecl::spec_iterator
651 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
652 i->ClearLinkageCache();
John McCallf76b0922011-02-08 19:01:05 +0000653 }
John McCall15e310a2011-02-19 02:53:41 +0000654
655 // Clear cached linkage for function template decls, too.
656 if (FunctionTemplateDecl *temp =
John McCall78951942011-03-22 06:58:49 +0000657 dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this))) {
658 temp->getTemplatedDecl()->ClearLinkageCache();
John McCall15e310a2011-02-19 02:53:41 +0000659 for (FunctionTemplateDecl::spec_iterator
660 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
661 i->ClearLinkageCache();
John McCall78951942011-03-22 06:58:49 +0000662 }
John McCall15e310a2011-02-19 02:53:41 +0000663
John McCallf76b0922011-02-08 19:01:05 +0000664}
665
Douglas Gregor381d34e2010-12-06 18:36:25 +0000666Linkage NamedDecl::getLinkage() const {
667 if (HasCachedLinkage) {
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000668 assert(Linkage(CachedLinkage) ==
669 getLVForDecl(this, LVFlags::CreateOnlyDeclLinkage()).linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000670 return Linkage(CachedLinkage);
671 }
672
673 CachedLinkage = getLVForDecl(this,
674 LVFlags::CreateOnlyDeclLinkage()).linkage();
675 HasCachedLinkage = 1;
676 return Linkage(CachedLinkage);
677}
678
John McCallaf146032010-10-30 11:50:40 +0000679LinkageInfo NamedDecl::getLinkageAndVisibility() const {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000680 LinkageInfo LI = getLVForDecl(this, LVFlags());
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000681 assert(!HasCachedLinkage || Linkage(CachedLinkage) == LI.linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000682 HasCachedLinkage = 1;
683 CachedLinkage = LI.linkage();
684 return LI;
John McCall0df95872010-10-29 00:29:13 +0000685}
Ted Kremenekbecc3082010-04-20 23:15:35 +0000686
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000687llvm::Optional<Visibility> NamedDecl::getExplicitVisibility() const {
688 // Use the most recent declaration of a variable.
689 if (const VarDecl *var = dyn_cast<VarDecl>(this))
690 return getVisibilityOf(var->getMostRecentDeclaration());
691
692 // Use the most recent declaration of a function, and also handle
693 // function template specializations.
694 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) {
695 if (llvm::Optional<Visibility> V
696 = getVisibilityOf(fn->getMostRecentDeclaration()))
697 return V;
698
699 // If the function is a specialization of a template with an
700 // explicit visibility attribute, use that.
701 if (FunctionTemplateSpecializationInfo *templateInfo
702 = fn->getTemplateSpecializationInfo())
703 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl());
704
705 return llvm::Optional<Visibility>();
706 }
707
708 // Otherwise, just check the declaration itself first.
709 if (llvm::Optional<Visibility> V = getVisibilityOf(this))
710 return V;
711
712 // If there wasn't explicit visibility there, and this is a
713 // specialization of a class template, check for visibility
714 // on the pattern.
715 if (const ClassTemplateSpecializationDecl *spec
716 = dyn_cast<ClassTemplateSpecializationDecl>(this))
717 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl());
718
719 return llvm::Optional<Visibility>();
720}
721
John McCall36987482010-11-02 01:45:15 +0000722static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags Flags) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000723 // Objective-C: treat all Objective-C declarations as having external
724 // linkage.
John McCall0df95872010-10-29 00:29:13 +0000725 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000726 default:
727 break;
Argyrios Kyrtzidisf8d34ed2011-12-01 01:28:21 +0000728 case Decl::ParmVar:
729 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000730 case Decl::TemplateTemplateParm: // count these as external
731 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000732 case Decl::ObjCAtDefsField:
733 case Decl::ObjCCategory:
734 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000735 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000736 case Decl::ObjCForwardProtocol:
737 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000738 case Decl::ObjCMethod:
739 case Decl::ObjCProperty:
740 case Decl::ObjCPropertyImpl:
741 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +0000742 return LinkageInfo::external();
Ted Kremenekbecc3082010-04-20 23:15:35 +0000743 }
744
Douglas Gregord85b5b92009-11-25 22:24:25 +0000745 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +0000746 if (D->getDeclContext()->getRedeclContext()->isFileContext())
John McCall36987482010-11-02 01:45:15 +0000747 return getLVForNamespaceScopeDecl(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000748
749 // C++ [basic.link]p5:
750 // In addition, a member function, static data member, a named
751 // class or enumeration of class scope, or an unnamed class or
752 // enumeration defined in a class-scope typedef declaration such
753 // that the class or enumeration has the typedef name for linkage
754 // purposes (7.1.3), has external linkage if the name of the class
755 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +0000756 if (D->getDeclContext()->isRecord())
John McCall36987482010-11-02 01:45:15 +0000757 return getLVForClassMember(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000758
759 // C++ [basic.link]p6:
760 // The name of a function declared in block scope and the name of
761 // an object declared by a block scope extern declaration have
762 // linkage. If there is a visible declaration of an entity with
763 // linkage having the same name and type, ignoring entities
764 // declared outside the innermost enclosing namespace scope, the
765 // block scope declaration declares that same entity and receives
766 // the linkage of the previous declaration. If there is more than
767 // one such matching entity, the program is ill-formed. Otherwise,
768 // if no matching entity is found, the block scope entity receives
769 // external linkage.
John McCall0df95872010-10-29 00:29:13 +0000770 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
771 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Chandler Carruth10aad442011-02-25 00:05:02 +0000772 if (Function->isInAnonymousNamespace() && !Function->isExternC())
John McCallaf146032010-10-30 11:50:40 +0000773 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000774
John McCallaf146032010-10-30 11:50:40 +0000775 LinkageInfo LV;
Douglas Gregor381d34e2010-12-06 18:36:25 +0000776 if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000777 if (llvm::Optional<Visibility> Vis = Function->getExplicitVisibility())
778 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000779 }
780
John McCall1fb0caa2010-10-22 21:05:15 +0000781 if (const FunctionDecl *Prev = Function->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000782 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000783 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
784 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000785 }
786
787 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000788 }
789
John McCall0df95872010-10-29 00:29:13 +0000790 if (const VarDecl *Var = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000791 if (Var->getStorageClass() == SC_Extern ||
792 Var->getStorageClass() == SC_PrivateExtern) {
Chandler Carruth10aad442011-02-25 00:05:02 +0000793 if (Var->isInAnonymousNamespace() && !Var->isExternC())
John McCallaf146032010-10-30 11:50:40 +0000794 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000795
John McCallaf146032010-10-30 11:50:40 +0000796 LinkageInfo LV;
John McCall1fb0caa2010-10-22 21:05:15 +0000797 if (Var->getStorageClass() == SC_PrivateExtern)
John McCallaf146032010-10-30 11:50:40 +0000798 LV.setVisibility(HiddenVisibility);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000799 else if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000800 if (llvm::Optional<Visibility> Vis = Var->getExplicitVisibility())
801 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000802 }
803
John McCall1fb0caa2010-10-22 21:05:15 +0000804 if (const VarDecl *Prev = Var->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000805 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000806 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
807 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000808 }
809
810 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000811 }
812 }
813
814 // C++ [basic.link]p6:
815 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +0000816 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000817}
Douglas Gregord85b5b92009-11-25 22:24:25 +0000818
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000819std::string NamedDecl::getQualifiedNameAsString() const {
Anders Carlsson3a082d82009-09-08 18:24:21 +0000820 return getQualifiedNameAsString(getASTContext().getLangOptions());
821}
822
823std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000824 const DeclContext *Ctx = getDeclContext();
825
826 if (Ctx->isFunctionOrMethod())
827 return getNameAsString();
828
Chris Lattner5f9e2722011-07-23 10:55:15 +0000829 typedef SmallVector<const DeclContext *, 8> ContextsTy;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000830 ContextsTy Contexts;
831
832 // Collect contexts.
833 while (Ctx && isa<NamedDecl>(Ctx)) {
834 Contexts.push_back(Ctx);
835 Ctx = Ctx->getParent();
836 };
837
838 std::string QualName;
839 llvm::raw_string_ostream OS(QualName);
840
841 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
842 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +0000843 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000844 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000845 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
846 std::string TemplateArgsStr
847 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +0000848 TemplateArgs.data(),
849 TemplateArgs.size(),
Anders Carlsson3a082d82009-09-08 18:24:21 +0000850 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000851 OS << Spec->getName() << TemplateArgsStr;
852 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Sam Weinig6be11202009-12-24 23:15:03 +0000853 if (ND->isAnonymousNamespace())
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000854 OS << "<anonymous namespace>";
Sam Weinig6be11202009-12-24 23:15:03 +0000855 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000856 OS << *ND;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000857 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
858 if (!RD->getIdentifier())
859 OS << "<anonymous " << RD->getKindName() << '>';
860 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000861 OS << *RD;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000862 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Sam Weinig3521d012009-12-28 03:19:38 +0000863 const FunctionProtoType *FT = 0;
864 if (FD->hasWrittenPrototype())
865 FT = dyn_cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>());
866
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000867 OS << *FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +0000868 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +0000869 unsigned NumParams = FD->getNumParams();
870 for (unsigned i = 0; i < NumParams; ++i) {
871 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000872 OS << ", ";
Sam Weinig3521d012009-12-28 03:19:38 +0000873 std::string Param;
874 FD->getParamDecl(i)->getType().getAsStringInternal(Param, P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000875 OS << Param;
Sam Weinig3521d012009-12-28 03:19:38 +0000876 }
877
878 if (FT->isVariadic()) {
879 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000880 OS << ", ";
881 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +0000882 }
883 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000884 OS << ')';
885 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000886 OS << *cast<NamedDecl>(*I);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000887 }
888 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000889 }
890
John McCall8472af42010-03-16 21:48:18 +0000891 if (getDeclName())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000892 OS << *this;
John McCall8472af42010-03-16 21:48:18 +0000893 else
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000894 OS << "<anonymous>";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000895
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000896 return OS.str();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000897}
898
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000899bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000900 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
901
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000902 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
903 // We want to keep it, unless it nominates same namespace.
904 if (getKind() == Decl::UsingDirective) {
Douglas Gregordb992412011-02-25 16:33:46 +0000905 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
906 ->getOriginalNamespace() ==
907 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
908 ->getOriginalNamespace();
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000909 }
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000911 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
912 // For function declarations, we keep track of redeclarations.
913 return FD->getPreviousDeclaration() == OldD;
914
Douglas Gregore53060f2009-06-25 22:08:12 +0000915 // For function templates, the underlying function declarations are linked.
916 if (const FunctionTemplateDecl *FunctionTemplate
917 = dyn_cast<FunctionTemplateDecl>(this))
918 if (const FunctionTemplateDecl *OldFunctionTemplate
919 = dyn_cast<FunctionTemplateDecl>(OldD))
920 return FunctionTemplate->getTemplatedDecl()
921 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000922
Steve Naroff0de21fd2009-02-22 19:35:57 +0000923 // For method declarations, we keep track of redeclarations.
924 if (isa<ObjCMethodDecl>(this))
925 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000926
John McCallf36e02d2009-10-09 21:13:30 +0000927 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
928 return true;
929
John McCall9488ea12009-11-17 05:59:44 +0000930 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
931 return cast<UsingShadowDecl>(this)->getTargetDecl() ==
932 cast<UsingShadowDecl>(OldD)->getTargetDecl();
933
Douglas Gregordc355712011-02-25 00:36:19 +0000934 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
935 ASTContext &Context = getASTContext();
936 return Context.getCanonicalNestedNameSpecifier(
937 cast<UsingDecl>(this)->getQualifier()) ==
938 Context.getCanonicalNestedNameSpecifier(
939 cast<UsingDecl>(OldD)->getQualifier());
940 }
Argyrios Kyrtzidisc80117e2010-11-04 08:48:52 +0000941
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000942 // For non-function declarations, if the declarations are of the
943 // same kind then this must be a redeclaration, or semantic analysis
944 // would not have given us the new declaration.
945 return this->getKind() == OldD->getKind();
946}
947
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000948bool NamedDecl::hasLinkage() const {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000949 return getLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000950}
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000951
Anders Carlssone136e0e2009-06-26 06:29:23 +0000952NamedDecl *NamedDecl::getUnderlyingDecl() {
953 NamedDecl *ND = this;
954 while (true) {
John McCall9488ea12009-11-17 05:59:44 +0000955 if (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
Anders Carlssone136e0e2009-06-26 06:29:23 +0000956 ND = UD->getTargetDecl();
957 else if (ObjCCompatibleAliasDecl *AD
958 = dyn_cast<ObjCCompatibleAliasDecl>(ND))
959 return AD->getClassInterface();
960 else
961 return ND;
962 }
963}
964
John McCall161755a2010-04-06 21:38:20 +0000965bool NamedDecl::isCXXInstanceMember() const {
966 assert(isCXXClassMember() &&
967 "checking whether non-member is instance member");
968
969 const NamedDecl *D = this;
970 if (isa<UsingShadowDecl>(D))
971 D = cast<UsingShadowDecl>(D)->getTargetDecl();
972
Francois Pichet87c2e122010-11-21 06:08:52 +0000973 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D))
John McCall161755a2010-04-06 21:38:20 +0000974 return true;
975 if (isa<CXXMethodDecl>(D))
976 return cast<CXXMethodDecl>(D)->isInstance();
977 if (isa<FunctionTemplateDecl>(D))
978 return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D)
979 ->getTemplatedDecl())->isInstance();
980 return false;
981}
982
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000983//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000984// DeclaratorDecl Implementation
985//===----------------------------------------------------------------------===//
986
Douglas Gregor1693e152010-07-06 18:42:40 +0000987template <typename DeclT>
988static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
989 if (decl->getNumTemplateParameterLists() > 0)
990 return decl->getTemplateParameterList(0)->getTemplateLoc();
991 else
992 return decl->getInnerLocStart();
993}
994
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000995SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +0000996 TypeSourceInfo *TSI = getTypeSourceInfo();
997 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000998 return SourceLocation();
999}
1000
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001001void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1002 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00001003 // Make sure the extended decl info is allocated.
1004 if (!hasExtInfo()) {
1005 // Save (non-extended) type source info pointer.
1006 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1007 // Allocate external info struct.
1008 DeclInfo = new (getASTContext()) ExtInfo;
1009 // Restore savedTInfo into (extended) decl info.
1010 getExtInfo()->TInfo = savedTInfo;
1011 }
1012 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001013 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00001014 } else {
John McCallb6217662010-03-15 10:12:16 +00001015 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00001016 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001017 if (getExtInfo()->NumTemplParamLists == 0) {
1018 // Save type source info pointer.
1019 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1020 // Deallocate the extended decl info.
1021 getASTContext().Deallocate(getExtInfo());
1022 // Restore savedTInfo into (non-extended) decl info.
1023 DeclInfo = savedTInfo;
1024 }
1025 else
1026 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001027 }
1028 }
1029}
1030
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001031void
1032DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1033 unsigned NumTPLists,
1034 TemplateParameterList **TPLists) {
1035 assert(NumTPLists > 0);
1036 // Make sure the extended decl info is allocated.
1037 if (!hasExtInfo()) {
1038 // Save (non-extended) type source info pointer.
1039 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1040 // Allocate external info struct.
1041 DeclInfo = new (getASTContext()) ExtInfo;
1042 // Restore savedTInfo into (extended) decl info.
1043 getExtInfo()->TInfo = savedTInfo;
1044 }
1045 // Set the template parameter lists info.
1046 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1047}
1048
Douglas Gregor1693e152010-07-06 18:42:40 +00001049SourceLocation DeclaratorDecl::getOuterLocStart() const {
1050 return getTemplateOrInnerLocStart(this);
1051}
1052
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001053namespace {
1054
1055// Helper function: returns true if QT is or contains a type
1056// having a postfix component.
1057bool typeIsPostfix(clang::QualType QT) {
1058 while (true) {
1059 const Type* T = QT.getTypePtr();
1060 switch (T->getTypeClass()) {
1061 default:
1062 return false;
1063 case Type::Pointer:
1064 QT = cast<PointerType>(T)->getPointeeType();
1065 break;
1066 case Type::BlockPointer:
1067 QT = cast<BlockPointerType>(T)->getPointeeType();
1068 break;
1069 case Type::MemberPointer:
1070 QT = cast<MemberPointerType>(T)->getPointeeType();
1071 break;
1072 case Type::LValueReference:
1073 case Type::RValueReference:
1074 QT = cast<ReferenceType>(T)->getPointeeType();
1075 break;
1076 case Type::PackExpansion:
1077 QT = cast<PackExpansionType>(T)->getPattern();
1078 break;
1079 case Type::Paren:
1080 case Type::ConstantArray:
1081 case Type::DependentSizedArray:
1082 case Type::IncompleteArray:
1083 case Type::VariableArray:
1084 case Type::FunctionProto:
1085 case Type::FunctionNoProto:
1086 return true;
1087 }
1088 }
1089}
1090
1091} // namespace
1092
1093SourceRange DeclaratorDecl::getSourceRange() const {
1094 SourceLocation RangeEnd = getLocation();
1095 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
1096 if (typeIsPostfix(TInfo->getType()))
1097 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1098 }
1099 return SourceRange(getOuterLocStart(), RangeEnd);
1100}
1101
Abramo Bagnara9b934882010-06-12 08:15:14 +00001102void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001103QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1104 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001105 TemplateParameterList **TPLists) {
1106 assert((NumTPLists == 0 || TPLists != 0) &&
1107 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001108
1109 // Free previous template parameters (if any).
1110 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001111 Context.Deallocate(TemplParamLists);
Abramo Bagnara9b934882010-06-12 08:15:14 +00001112 TemplParamLists = 0;
1113 NumTemplParamLists = 0;
1114 }
1115 // Set info on matched template parameter lists (if any).
1116 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001117 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001118 NumTemplParamLists = NumTPLists;
1119 for (unsigned i = NumTPLists; i-- > 0; )
1120 TemplParamLists[i] = TPLists[i];
1121 }
1122}
1123
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001124//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001125// VarDecl Implementation
1126//===----------------------------------------------------------------------===//
1127
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001128const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1129 switch (SC) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00001130 case SC_None: break;
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001131 case SC_Auto: return "auto";
1132 case SC_Extern: return "extern";
1133 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
1134 case SC_PrivateExtern: return "__private_extern__";
1135 case SC_Register: return "register";
1136 case SC_Static: return "static";
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001137 }
1138
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001139 llvm_unreachable("Invalid storage class");
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001140 return 0;
1141}
1142
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001143VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1144 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001145 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001146 StorageClass S, StorageClass SCAsWritten) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001147 return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S, SCAsWritten);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001148}
1149
Douglas Gregor381d34e2010-12-06 18:36:25 +00001150void VarDecl::setStorageClass(StorageClass SC) {
1151 assert(isLegalForVariable(SC));
1152 if (getStorageClass() != SC)
1153 ClearLinkageCache();
1154
John McCallf1e4fbf2011-05-01 02:13:58 +00001155 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001156}
1157
Douglas Gregor1693e152010-07-06 18:42:40 +00001158SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001159 if (getInit())
Douglas Gregor1693e152010-07-06 18:42:40 +00001160 return SourceRange(getOuterLocStart(), getInit()->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001161 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001162}
1163
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001164bool VarDecl::isExternC() const {
1165 ASTContext &Context = getASTContext();
1166 if (!Context.getLangOptions().CPlusPlus)
1167 return (getDeclContext()->isTranslationUnit() &&
John McCalld931b082010-08-26 03:08:43 +00001168 getStorageClass() != SC_Static) ||
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001169 (getDeclContext()->isFunctionOrMethod() && hasExternalStorage());
1170
Chandler Carruth10aad442011-02-25 00:05:02 +00001171 const DeclContext *DC = getDeclContext();
1172 if (DC->isFunctionOrMethod())
1173 return false;
1174
1175 for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001176 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC)) {
1177 if (Linkage->getLanguage() == LinkageSpecDecl::lang_c)
John McCalld931b082010-08-26 03:08:43 +00001178 return getStorageClass() != SC_Static;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001179
1180 break;
1181 }
1182
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001183 }
1184
1185 return false;
1186}
1187
1188VarDecl *VarDecl::getCanonicalDecl() {
1189 return getFirstDeclaration();
1190}
1191
Sebastian Redle9d12b62010-01-31 22:27:38 +00001192VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition() const {
1193 // C++ [basic.def]p2:
1194 // A declaration is a definition unless [...] it contains the 'extern'
1195 // specifier or a linkage-specification and neither an initializer [...],
1196 // it declares a static data member in a class declaration [...].
1197 // C++ [temp.expl.spec]p15:
1198 // An explicit specialization of a static data member of a template is a
1199 // definition if the declaration includes an initializer; otherwise, it is
1200 // a declaration.
1201 if (isStaticDataMember()) {
1202 if (isOutOfLine() && (hasInit() ||
1203 getTemplateSpecializationKind() != TSK_ExplicitSpecialization))
1204 return Definition;
1205 else
1206 return DeclarationOnly;
1207 }
1208 // C99 6.7p5:
1209 // A definition of an identifier is a declaration for that identifier that
1210 // [...] causes storage to be reserved for that object.
1211 // Note: that applies for all non-file-scope objects.
1212 // C99 6.9.2p1:
1213 // If the declaration of an identifier for an object has file scope and an
1214 // initializer, the declaration is an external definition for the identifier
1215 if (hasInit())
1216 return Definition;
1217 // AST for 'extern "C" int foo;' is annotated with 'extern'.
1218 if (hasExternalStorage())
1219 return DeclarationOnly;
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001220
John McCalld931b082010-08-26 03:08:43 +00001221 if (getStorageClassAsWritten() == SC_Extern ||
1222 getStorageClassAsWritten() == SC_PrivateExtern) {
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001223 for (const VarDecl *PrevVar = getPreviousDeclaration();
1224 PrevVar; PrevVar = PrevVar->getPreviousDeclaration()) {
1225 if (PrevVar->getLinkage() == InternalLinkage && PrevVar->hasInit())
1226 return DeclarationOnly;
1227 }
1228 }
Sebastian Redle9d12b62010-01-31 22:27:38 +00001229 // C99 6.9.2p2:
1230 // A declaration of an object that has file scope without an initializer,
1231 // and without a storage class specifier or the scs 'static', constitutes
1232 // a tentative definition.
1233 // No such thing in C++.
1234 if (!getASTContext().getLangOptions().CPlusPlus && isFileVarDecl())
1235 return TentativeDefinition;
1236
1237 // What's left is (in C, block-scope) declarations without initializers or
1238 // external storage. These are definitions.
1239 return Definition;
1240}
1241
Sebastian Redle9d12b62010-01-31 22:27:38 +00001242VarDecl *VarDecl::getActingDefinition() {
1243 DefinitionKind Kind = isThisDeclarationADefinition();
1244 if (Kind != TentativeDefinition)
1245 return 0;
1246
Chris Lattnerf0ed9ef2010-06-14 18:31:46 +00001247 VarDecl *LastTentative = 0;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001248 VarDecl *First = getFirstDeclaration();
1249 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1250 I != E; ++I) {
1251 Kind = (*I)->isThisDeclarationADefinition();
1252 if (Kind == Definition)
1253 return 0;
1254 else if (Kind == TentativeDefinition)
1255 LastTentative = *I;
1256 }
1257 return LastTentative;
1258}
1259
1260bool VarDecl::isTentativeDefinitionNow() const {
1261 DefinitionKind Kind = isThisDeclarationADefinition();
1262 if (Kind != TentativeDefinition)
1263 return false;
1264
1265 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1266 if ((*I)->isThisDeclarationADefinition() == Definition)
1267 return false;
1268 }
Sebastian Redl31310a22010-02-01 20:16:42 +00001269 return true;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001270}
1271
Sebastian Redl31310a22010-02-01 20:16:42 +00001272VarDecl *VarDecl::getDefinition() {
Sebastian Redle2c52d22010-02-02 17:55:12 +00001273 VarDecl *First = getFirstDeclaration();
1274 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1275 I != E; ++I) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001276 if ((*I)->isThisDeclarationADefinition() == Definition)
1277 return *I;
1278 }
1279 return 0;
1280}
1281
John McCall110e8e52010-10-29 22:22:43 +00001282VarDecl::DefinitionKind VarDecl::hasDefinition() const {
1283 DefinitionKind Kind = DeclarationOnly;
1284
1285 const VarDecl *First = getFirstDeclaration();
1286 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1287 I != E; ++I)
1288 Kind = std::max(Kind, (*I)->isThisDeclarationADefinition());
1289
1290 return Kind;
1291}
1292
Sebastian Redl31310a22010-02-01 20:16:42 +00001293const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001294 redecl_iterator I = redecls_begin(), E = redecls_end();
1295 while (I != E && !I->getInit())
1296 ++I;
1297
1298 if (I != E) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001299 D = *I;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001300 return I->getInit();
1301 }
1302 return 0;
1303}
1304
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001305bool VarDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00001306 if (Decl::isOutOfLine())
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001307 return true;
Chandler Carruth8761d682010-02-21 07:08:09 +00001308
1309 if (!isStaticDataMember())
1310 return false;
1311
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001312 // If this static data member was instantiated from a static data member of
1313 // a class template, check whether that static data member was defined
1314 // out-of-line.
1315 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
1316 return VD->isOutOfLine();
1317
1318 return false;
1319}
1320
Douglas Gregor0d035142009-10-27 18:42:08 +00001321VarDecl *VarDecl::getOutOfLineDefinition() {
1322 if (!isStaticDataMember())
1323 return 0;
1324
1325 for (VarDecl::redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
1326 RD != RDEnd; ++RD) {
1327 if (RD->getLexicalDeclContext()->isFileContext())
1328 return *RD;
1329 }
1330
1331 return 0;
1332}
1333
Douglas Gregor838db382010-02-11 01:19:42 +00001334void VarDecl::setInit(Expr *I) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001335 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
1336 Eval->~EvaluatedStmt();
Douglas Gregor838db382010-02-11 01:19:42 +00001337 getASTContext().Deallocate(Eval);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001338 }
1339
1340 Init = I;
1341}
1342
Richard Smith1d238ea2011-12-21 02:55:12 +00001343bool VarDecl::isUsableInConstantExpressions() const {
1344 const LangOptions &Lang = getASTContext().getLangOptions();
1345
1346 // Only const variables can be used in constant expressions in C++. C++98 does
1347 // not require the variable to be non-volatile, but we consider this to be a
1348 // defect.
1349 if (!Lang.CPlusPlus ||
1350 !getType().isConstQualified() || getType().isVolatileQualified())
1351 return false;
1352
1353 // In C++, const, non-volatile variables of integral or enumeration types
1354 // can be used in constant expressions.
1355 if (getType()->isIntegralOrEnumerationType())
1356 return true;
1357
1358 // Additionally, in C++11, non-volatile constexpr variables and references can
1359 // be used in constant expressions.
1360 return Lang.CPlusPlus0x && (isConstexpr() || getType()->isReferenceType());
1361}
1362
Richard Smith099e7f62011-12-19 06:19:21 +00001363/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
1364/// form, which contains extra information on the evaluated value of the
1365/// initializer.
1366EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
1367 EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>();
1368 if (!Eval) {
1369 Stmt *S = Init.get<Stmt *>();
1370 Eval = new (getASTContext()) EvaluatedStmt;
1371 Eval->Value = S;
1372 Init = Eval;
1373 }
1374 return Eval;
1375}
1376
1377bool VarDecl::evaluateValue(
1378 llvm::SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
1379 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1380
1381 // We only produce notes indicating why an initializer is non-constant the
1382 // first time it is evaluated. FIXME: The notes won't always be emitted the
1383 // first time we try evaluation, so might not be produced at all.
1384 if (Eval->WasEvaluated)
1385 return !Eval->Evaluated.isUninit();
1386
1387 const Expr *Init = cast<Expr>(Eval->Value);
1388 assert(!Init->isValueDependent());
1389
1390 if (Eval->IsEvaluating) {
1391 // FIXME: Produce a diagnostic for self-initialization.
1392 Eval->CheckedICE = true;
1393 Eval->IsICE = false;
1394 return false;
1395 }
1396
1397 Eval->IsEvaluating = true;
1398
1399 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
1400 this, Notes);
1401
1402 // Ensure the result is an uninitialized APValue if evaluation fails.
1403 if (!Result)
1404 Eval->Evaluated = APValue();
1405
1406 Eval->IsEvaluating = false;
1407 Eval->WasEvaluated = true;
1408
1409 // In C++11, we have determined whether the initializer was a constant
1410 // expression as a side-effect.
1411 if (getASTContext().getLangOptions().CPlusPlus0x && !Eval->CheckedICE) {
1412 Eval->CheckedICE = true;
1413 Eval->IsICE = Notes.empty();
1414 }
1415
1416 return Result;
1417}
1418
1419bool VarDecl::checkInitIsICE() const {
1420 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1421 if (Eval->CheckedICE)
1422 // We have already checked whether this subexpression is an
1423 // integral constant expression.
1424 return Eval->IsICE;
1425
1426 const Expr *Init = cast<Expr>(Eval->Value);
1427 assert(!Init->isValueDependent());
1428
1429 // In C++11, evaluate the initializer to check whether it's a constant
1430 // expression.
1431 if (getASTContext().getLangOptions().CPlusPlus0x) {
1432 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
1433 evaluateValue(Notes);
1434 return Eval->IsICE;
1435 }
1436
1437 // It's an ICE whether or not the definition we found is
1438 // out-of-line. See DR 721 and the discussion in Clang PR
1439 // 6206 for details.
1440
1441 if (Eval->CheckingICE)
1442 return false;
1443 Eval->CheckingICE = true;
1444
1445 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
1446 Eval->CheckingICE = false;
1447 Eval->CheckedICE = true;
1448 return Eval->IsICE;
1449}
1450
Douglas Gregor03e80032011-06-21 17:03:29 +00001451bool VarDecl::extendsLifetimeOfTemporary() const {
Douglas Gregor0b581082011-06-21 18:20:46 +00001452 assert(getType()->isReferenceType() &&"Non-references never extend lifetime");
Douglas Gregor03e80032011-06-21 17:03:29 +00001453
1454 const Expr *E = getInit();
1455 if (!E)
1456 return false;
1457
1458 if (const ExprWithCleanups *Cleanups = dyn_cast<ExprWithCleanups>(E))
1459 E = Cleanups->getSubExpr();
1460
1461 return isa<MaterializeTemporaryExpr>(E);
1462}
1463
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001464VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001465 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001466 return cast<VarDecl>(MSI->getInstantiatedFrom());
1467
1468 return 0;
1469}
1470
Douglas Gregor663b5a02009-10-14 20:14:33 +00001471TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Sebastian Redle9d12b62010-01-31 22:27:38 +00001472 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001473 return MSI->getTemplateSpecializationKind();
1474
1475 return TSK_Undeclared;
1476}
1477
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001478MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001479 return getASTContext().getInstantiatedFromStaticDataMember(this);
1480}
1481
Douglas Gregor0a897e32009-10-15 17:21:20 +00001482void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
1483 SourceLocation PointOfInstantiation) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001484 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001485 assert(MSI && "Not an instantiated static data member?");
1486 MSI->setTemplateSpecializationKind(TSK);
Douglas Gregor0a897e32009-10-15 17:21:20 +00001487 if (TSK != TSK_ExplicitSpecialization &&
1488 PointOfInstantiation.isValid() &&
1489 MSI->getPointOfInstantiation().isInvalid())
1490 MSI->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001491}
1492
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001493//===----------------------------------------------------------------------===//
1494// ParmVarDecl Implementation
1495//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00001496
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001497ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001498 SourceLocation StartLoc,
1499 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001500 QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001501 StorageClass S, StorageClass SCAsWritten,
1502 Expr *DefArg) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001503 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001504 S, SCAsWritten, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00001505}
1506
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00001507SourceRange ParmVarDecl::getSourceRange() const {
1508 if (!hasInheritedDefaultArg()) {
1509 SourceRange ArgRange = getDefaultArgRange();
1510 if (ArgRange.isValid())
1511 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
1512 }
1513
1514 return DeclaratorDecl::getSourceRange();
1515}
1516
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001517Expr *ParmVarDecl::getDefaultArg() {
1518 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
1519 assert(!hasUninstantiatedDefaultArg() &&
1520 "Default argument is not yet instantiated!");
1521
1522 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00001523 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001524 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00001525
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001526 return Arg;
1527}
1528
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001529SourceRange ParmVarDecl::getDefaultArgRange() const {
1530 if (const Expr *E = getInit())
1531 return E->getSourceRange();
1532
1533 if (hasUninstantiatedDefaultArg())
1534 return getUninstantiatedDefaultArg()->getSourceRange();
1535
1536 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00001537}
1538
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00001539bool ParmVarDecl::isParameterPack() const {
1540 return isa<PackExpansionType>(getType());
1541}
1542
Ted Kremenekd211cb72011-10-06 05:00:56 +00001543void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
1544 getASTContext().setParameterIndex(this, parameterIndex);
1545 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
1546}
1547
1548unsigned ParmVarDecl::getParameterIndexLarge() const {
1549 return getASTContext().getParameterIndex(this);
1550}
1551
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001552//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00001553// FunctionDecl Implementation
1554//===----------------------------------------------------------------------===//
1555
Douglas Gregorda2142f2011-02-19 18:51:44 +00001556void FunctionDecl::getNameForDiagnostic(std::string &S,
1557 const PrintingPolicy &Policy,
1558 bool Qualified) const {
1559 NamedDecl::getNameForDiagnostic(S, Policy, Qualified);
1560 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
1561 if (TemplateArgs)
1562 S += TemplateSpecializationType::PrintTemplateArgumentList(
1563 TemplateArgs->data(),
1564 TemplateArgs->size(),
1565 Policy);
1566
1567}
1568
Ted Kremenek9498d382010-04-29 16:49:01 +00001569bool FunctionDecl::isVariadic() const {
1570 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
1571 return FT->isVariadic();
1572 return false;
1573}
1574
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001575bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
1576 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00001577 if (I->Body || I->IsLateTemplateParsed) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001578 Definition = *I;
1579 return true;
1580 }
1581 }
1582
1583 return false;
1584}
1585
Anders Carlssonffb945f2011-05-14 23:26:09 +00001586bool FunctionDecl::hasTrivialBody() const
1587{
1588 Stmt *S = getBody();
1589 if (!S) {
1590 // Since we don't have a body for this function, we don't know if it's
1591 // trivial or not.
1592 return false;
1593 }
1594
1595 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
1596 return true;
1597 return false;
1598}
1599
Sean Hunt10620eb2011-05-06 20:44:56 +00001600bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
1601 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Sean Huntcd10dec2011-05-23 23:14:04 +00001602 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) {
Sean Hunt10620eb2011-05-06 20:44:56 +00001603 Definition = I->IsDeleted ? I->getCanonicalDecl() : *I;
1604 return true;
1605 }
1606 }
1607
1608 return false;
1609}
1610
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001611Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Argyrios Kyrtzidisc37929c2009-07-14 03:20:21 +00001612 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1613 if (I->Body) {
1614 Definition = *I;
1615 return I->Body.get(getASTContext().getExternalSource());
Francois Pichet8387e2a2011-04-22 22:18:13 +00001616 } else if (I->IsLateTemplateParsed) {
1617 Definition = *I;
1618 return 0;
Douglas Gregorf0097952008-04-21 02:02:58 +00001619 }
1620 }
1621
1622 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001623}
1624
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001625void FunctionDecl::setBody(Stmt *B) {
1626 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00001627 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001628 EndRangeLoc = B->getLocEnd();
1629}
1630
Douglas Gregor21386642010-09-28 21:55:22 +00001631void FunctionDecl::setPure(bool P) {
1632 IsPure = P;
1633 if (P)
1634 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
1635 Parent->markedVirtualFunctionPure();
1636}
1637
Douglas Gregor48a83b52009-09-12 00:17:51 +00001638bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00001639 const TranslationUnitDecl *tunit =
1640 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
1641 return tunit &&
Sean Hunt55878032011-05-15 20:59:31 +00001642 !tunit->getASTContext().getLangOptions().Freestanding &&
John McCall23c608d2011-05-15 17:49:20 +00001643 getIdentifier() &&
1644 getIdentifier()->isStr("main");
1645}
1646
1647bool FunctionDecl::isReservedGlobalPlacementOperator() const {
1648 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
1649 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
1650 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
1651 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
1652 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
1653
1654 if (isa<CXXRecordDecl>(getDeclContext())) return false;
1655 assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
1656
1657 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
1658 if (proto->getNumArgs() != 2 || proto->isVariadic()) return false;
1659
1660 ASTContext &Context =
1661 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
1662 ->getASTContext();
1663
1664 // The result type and first argument type are constant across all
1665 // these operators. The second argument must be exactly void*.
1666 return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00001667}
1668
Douglas Gregor48a83b52009-09-12 00:17:51 +00001669bool FunctionDecl::isExternC() const {
1670 ASTContext &Context = getASTContext();
Douglas Gregor63935192009-03-02 00:19:53 +00001671 // In C, any non-static, non-overloadable function has external
1672 // linkage.
1673 if (!Context.getLangOptions().CPlusPlus)
John McCalld931b082010-08-26 03:08:43 +00001674 return getStorageClass() != SC_Static && !getAttr<OverloadableAttr>();
Douglas Gregor63935192009-03-02 00:19:53 +00001675
Chandler Carruth10aad442011-02-25 00:05:02 +00001676 const DeclContext *DC = getDeclContext();
1677 if (DC->isRecord())
1678 return false;
1679
1680 for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
Douglas Gregor63935192009-03-02 00:19:53 +00001681 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC)) {
1682 if (Linkage->getLanguage() == LinkageSpecDecl::lang_c)
John McCalld931b082010-08-26 03:08:43 +00001683 return getStorageClass() != SC_Static &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001684 !getAttr<OverloadableAttr>();
Douglas Gregor63935192009-03-02 00:19:53 +00001685
1686 break;
1687 }
1688 }
1689
Douglas Gregor0bab54c2010-10-21 16:57:46 +00001690 return isMain();
Douglas Gregor63935192009-03-02 00:19:53 +00001691}
1692
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001693bool FunctionDecl::isGlobal() const {
1694 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
1695 return Method->isStatic();
1696
John McCalld931b082010-08-26 03:08:43 +00001697 if (getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001698 return false;
1699
Mike Stump1eb44332009-09-09 15:08:12 +00001700 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001701 DC->isNamespace();
1702 DC = DC->getParent()) {
1703 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
1704 if (!Namespace->getDeclName())
1705 return false;
1706 break;
1707 }
1708 }
1709
1710 return true;
1711}
1712
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001713void
1714FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
1715 redeclarable_base::setPreviousDeclaration(PrevDecl);
1716
1717 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
1718 FunctionTemplateDecl *PrevFunTmpl
1719 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0;
1720 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
1721 FunTmpl->setPreviousDeclaration(PrevFunTmpl);
1722 }
Douglas Gregor8f150942010-12-09 16:59:22 +00001723
Axel Naumannd9d137e2011-11-08 18:21:06 +00001724 if (PrevDecl && PrevDecl->IsInline)
Douglas Gregor8f150942010-12-09 16:59:22 +00001725 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001726}
1727
1728const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
1729 return getFirstDeclaration();
1730}
1731
1732FunctionDecl *FunctionDecl::getCanonicalDecl() {
1733 return getFirstDeclaration();
1734}
1735
Douglas Gregor381d34e2010-12-06 18:36:25 +00001736void FunctionDecl::setStorageClass(StorageClass SC) {
1737 assert(isLegalForFunction(SC));
1738 if (getStorageClass() != SC)
1739 ClearLinkageCache();
1740
1741 SClass = SC;
1742}
1743
Douglas Gregor3e41d602009-02-13 23:20:09 +00001744/// \brief Returns a value indicating whether this function
1745/// corresponds to a builtin function.
1746///
1747/// The function corresponds to a built-in function if it is
1748/// declared at translation scope or within an extern "C" block and
1749/// its name matches with the name of a builtin. The returned value
1750/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00001751/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00001752/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001753unsigned FunctionDecl::getBuiltinID() const {
1754 ASTContext &Context = getASTContext();
Douglas Gregor3c385e52009-02-14 18:57:46 +00001755 if (!getIdentifier() || !getIdentifier()->getBuiltinID())
1756 return 0;
1757
1758 unsigned BuiltinID = getIdentifier()->getBuiltinID();
1759 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
1760 return BuiltinID;
1761
1762 // This function has the name of a known C library
1763 // function. Determine whether it actually refers to the C library
1764 // function or whether it just has the same name.
1765
Douglas Gregor9add3172009-02-17 03:23:10 +00001766 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00001767 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00001768 return 0;
1769
Douglas Gregor3c385e52009-02-14 18:57:46 +00001770 // If this function is at translation-unit scope and we're not in
1771 // C++, it refers to the C library function.
1772 if (!Context.getLangOptions().CPlusPlus &&
1773 getDeclContext()->isTranslationUnit())
1774 return BuiltinID;
1775
1776 // If the function is in an extern "C" linkage specification and is
1777 // not marked "overloadable", it's the real function.
1778 if (isa<LinkageSpecDecl>(getDeclContext()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001779 cast<LinkageSpecDecl>(getDeclContext())->getLanguage()
Douglas Gregor3c385e52009-02-14 18:57:46 +00001780 == LinkageSpecDecl::lang_c &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001781 !getAttr<OverloadableAttr>())
Douglas Gregor3c385e52009-02-14 18:57:46 +00001782 return BuiltinID;
1783
1784 // Not a builtin
Douglas Gregor3e41d602009-02-13 23:20:09 +00001785 return 0;
1786}
1787
1788
Chris Lattner1ad9b282009-04-25 06:03:53 +00001789/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00001790/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00001791/// after it has been created.
1792unsigned FunctionDecl::getNumParams() const {
John McCall183700f2009-09-21 23:43:11 +00001793 const FunctionType *FT = getType()->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001794 if (isa<FunctionNoProtoType>(FT))
Chris Lattnerd3b90652008-03-15 05:43:15 +00001795 return 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001796 return cast<FunctionProtoType>(FT)->getNumArgs();
Mike Stump1eb44332009-09-09 15:08:12 +00001797
Reid Spencer5f016e22007-07-11 17:01:13 +00001798}
1799
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001800void FunctionDecl::setParams(ASTContext &C,
David Blaikie4278c652011-09-21 18:16:56 +00001801 llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001802 assert(ParamInfo == 0 && "Already has param info!");
David Blaikie4278c652011-09-21 18:16:56 +00001803 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Reid Spencer5f016e22007-07-11 17:01:13 +00001805 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00001806 if (!NewParamInfo.empty()) {
1807 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
1808 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001809 }
1810}
1811
Chris Lattner8123a952008-04-10 02:22:51 +00001812/// getMinRequiredArguments - Returns the minimum number of arguments
1813/// needed to call this function. This may be fewer than the number of
1814/// function parameters, if some of the parameters have default
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001815/// arguments (in C++) or the last parameter is a parameter pack.
Chris Lattner8123a952008-04-10 02:22:51 +00001816unsigned FunctionDecl::getMinRequiredArguments() const {
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001817 if (!getASTContext().getLangOptions().CPlusPlus)
1818 return getNumParams();
1819
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001820 unsigned NumRequiredArgs = getNumParams();
1821
1822 // If the last parameter is a parameter pack, we don't need an argument for
1823 // it.
1824 if (NumRequiredArgs > 0 &&
1825 getParamDecl(NumRequiredArgs - 1)->isParameterPack())
1826 --NumRequiredArgs;
1827
1828 // If this parameter has a default argument, we don't need an argument for
1829 // it.
1830 while (NumRequiredArgs > 0 &&
1831 getParamDecl(NumRequiredArgs-1)->hasDefaultArg())
Chris Lattner8123a952008-04-10 02:22:51 +00001832 --NumRequiredArgs;
1833
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001834 // We might have parameter packs before the end. These can't be deduced,
1835 // but they can still handle multiple arguments.
1836 unsigned ArgIdx = NumRequiredArgs;
1837 while (ArgIdx > 0) {
1838 if (getParamDecl(ArgIdx - 1)->isParameterPack())
1839 NumRequiredArgs = ArgIdx;
1840
1841 --ArgIdx;
1842 }
1843
Chris Lattner8123a952008-04-10 02:22:51 +00001844 return NumRequiredArgs;
1845}
1846
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001847bool FunctionDecl::isInlined() const {
Douglas Gregor8f150942010-12-09 16:59:22 +00001848 if (IsInline)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001849 return true;
Anders Carlsson48eda2c2009-12-04 22:35:50 +00001850
1851 if (isa<CXXMethodDecl>(this)) {
1852 if (!isOutOfLine() || getCanonicalDecl()->isInlineSpecified())
1853 return true;
1854 }
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001855
1856 switch (getTemplateSpecializationKind()) {
1857 case TSK_Undeclared:
1858 case TSK_ExplicitSpecialization:
1859 return false;
1860
1861 case TSK_ImplicitInstantiation:
1862 case TSK_ExplicitInstantiationDeclaration:
1863 case TSK_ExplicitInstantiationDefinition:
1864 // Handle below.
1865 break;
1866 }
1867
1868 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001869 bool HasPattern = false;
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001870 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001871 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001872
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001873 if (HasPattern && PatternDecl)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001874 return PatternDecl->isInlined();
1875
1876 return false;
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001877}
1878
Nick Lewyckydce67a72011-07-18 05:26:13 +00001879/// \brief For a function declaration in C or C++, determine whether this
1880/// declaration causes the definition to be externally visible.
1881///
1882/// Determines whether this is the first non-inline redeclaration of an inline
1883/// function in a language where "inline" does not normally require an
1884/// externally visible definition.
1885bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
1886 assert(!doesThisDeclarationHaveABody() &&
1887 "Must have a declaration without a body.");
1888
1889 ASTContext &Context = getASTContext();
1890
1891 // In C99 mode, a function may have an inline definition (causing it to
1892 // be deferred) then redeclared later. As a special case, "extern inline"
1893 // is not required to produce an external symbol.
1894 if (Context.getLangOptions().GNUInline || !Context.getLangOptions().C99 ||
1895 Context.getLangOptions().CPlusPlus)
1896 return false;
1897 if (getLinkage() != ExternalLinkage || isInlineSpecified())
1898 return false;
Nick Lewyckyf57ef052011-07-18 07:11:55 +00001899 const FunctionDecl *Definition = 0;
1900 if (hasBody(Definition))
1901 return Definition->isInlined() &&
1902 Definition->isInlineDefinitionExternallyVisible();
Nick Lewyckydce67a72011-07-18 05:26:13 +00001903 return false;
1904}
1905
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001906/// \brief For an inline function definition in C or C++, determine whether the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001907/// definition will be externally visible.
1908///
1909/// Inline function definitions are always available for inlining optimizations.
1910/// However, depending on the language dialect, declaration specifiers, and
1911/// attributes, the definition of an inline function may or may not be
1912/// "externally" visible to other translation units in the program.
1913///
1914/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00001915/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001916/// inline definition becomes externally visible (C99 6.7.4p6).
1917///
1918/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
1919/// definition, we use the GNU semantics for inline, which are nearly the
1920/// opposite of C99 semantics. In particular, "inline" by itself will create
1921/// an externally visible symbol, but "extern inline" will not create an
1922/// externally visible symbol.
1923bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00001924 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001925 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001926 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001927
Rafael Espindolafb3f4aa2011-06-02 16:13:27 +00001928 if (Context.getLangOptions().GNUInline || hasAttr<GNUInlineAttr>()) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001929 // If it's not the case that both 'inline' and 'extern' are
1930 // specified on the definition, then this inline definition is
1931 // externally visible.
1932 if (!(isInlineSpecified() && getStorageClassAsWritten() == SC_Extern))
1933 return true;
1934
1935 // If any declaration is 'inline' but not 'extern', then this definition
1936 // is externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001937 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1938 Redecl != RedeclEnd;
1939 ++Redecl) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001940 if (Redecl->isInlineSpecified() &&
1941 Redecl->getStorageClassAsWritten() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001942 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00001943 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001944
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001945 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001946 }
1947
1948 // C99 6.7.4p6:
1949 // [...] If all of the file scope declarations for a function in a
1950 // translation unit include the inline function specifier without extern,
1951 // then the definition in that translation unit is an inline definition.
1952 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1953 Redecl != RedeclEnd;
1954 ++Redecl) {
1955 // Only consider file-scope declarations in this test.
1956 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
1957 continue;
Eli Friedman8a1d6a52011-10-11 22:09:24 +00001958
1959 // Only consider explicit declarations; the presence of a builtin for a
1960 // libcall shouldn't affect whether a definition is externally visible.
1961 if (Redecl->isImplicit())
1962 continue;
1963
John McCalld931b082010-08-26 03:08:43 +00001964 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001965 return true; // Not an inline definition
1966 }
1967
1968 // C99 6.7.4p6:
1969 // An inline definition does not provide an external definition for the
1970 // function, and does not forbid an external definition in another
1971 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001972 return false;
1973}
1974
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001975/// getOverloadedOperator - Which C++ overloaded operator this
1976/// function represents, if any.
1977OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00001978 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
1979 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001980 else
1981 return OO_None;
1982}
1983
Sean Hunta6c058d2010-01-13 09:01:02 +00001984/// getLiteralIdentifier - The literal suffix identifier this function
1985/// represents, if any.
1986const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
1987 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
1988 return getDeclName().getCXXLiteralIdentifier();
1989 else
1990 return 0;
1991}
1992
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00001993FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
1994 if (TemplateOrSpecialization.isNull())
1995 return TK_NonTemplate;
1996 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
1997 return TK_FunctionTemplate;
1998 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
1999 return TK_MemberSpecialization;
2000 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
2001 return TK_FunctionTemplateSpecialization;
2002 if (TemplateOrSpecialization.is
2003 <DependentFunctionTemplateSpecializationInfo*>())
2004 return TK_DependentFunctionTemplateSpecialization;
2005
David Blaikieb219cfc2011-09-23 05:06:16 +00002006 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002007}
2008
Douglas Gregor2db32322009-10-07 23:56:10 +00002009FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002010 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00002011 return cast<FunctionDecl>(Info->getInstantiatedFrom());
2012
2013 return 0;
2014}
2015
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002016MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
2017 return TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2018}
2019
Douglas Gregor2db32322009-10-07 23:56:10 +00002020void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002021FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
2022 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00002023 TemplateSpecializationKind TSK) {
2024 assert(TemplateOrSpecialization.isNull() &&
2025 "Member function is already a specialization");
2026 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002027 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00002028 TemplateOrSpecialization = Info;
2029}
2030
Douglas Gregor3b846b62009-10-27 20:53:28 +00002031bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002032 // If the function is invalid, it can't be implicitly instantiated.
2033 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00002034 return false;
2035
2036 switch (getTemplateSpecializationKind()) {
2037 case TSK_Undeclared:
Douglas Gregor3b846b62009-10-27 20:53:28 +00002038 case TSK_ExplicitInstantiationDefinition:
2039 return false;
2040
2041 case TSK_ImplicitInstantiation:
2042 return true;
2043
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002044 // It is possible to instantiate TSK_ExplicitSpecialization kind
2045 // if the FunctionDecl has a class scope specialization pattern.
2046 case TSK_ExplicitSpecialization:
2047 return getClassScopeSpecializationPattern() != 0;
2048
Douglas Gregor3b846b62009-10-27 20:53:28 +00002049 case TSK_ExplicitInstantiationDeclaration:
2050 // Handled below.
2051 break;
2052 }
2053
2054 // Find the actual template from which we will instantiate.
2055 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002056 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002057 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002058 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00002059
2060 // C++0x [temp.explicit]p9:
2061 // Except for inline functions, other explicit instantiation declarations
2062 // have the effect of suppressing the implicit instantiation of the entity
2063 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002064 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00002065 return true;
2066
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002067 return PatternDecl->isInlined();
Ted Kremenek75df4ee2011-12-01 00:59:17 +00002068}
2069
2070bool FunctionDecl::isTemplateInstantiation() const {
2071 switch (getTemplateSpecializationKind()) {
2072 case TSK_Undeclared:
2073 case TSK_ExplicitSpecialization:
2074 return false;
2075 case TSK_ImplicitInstantiation:
2076 case TSK_ExplicitInstantiationDeclaration:
2077 case TSK_ExplicitInstantiationDefinition:
2078 return true;
2079 }
2080 llvm_unreachable("All TSK values handled.");
2081}
Douglas Gregor3b846b62009-10-27 20:53:28 +00002082
2083FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002084 // Handle class scope explicit specialization special case.
2085 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2086 return getClassScopeSpecializationPattern();
2087
Douglas Gregor3b846b62009-10-27 20:53:28 +00002088 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
2089 while (Primary->getInstantiatedFromMemberTemplate()) {
2090 // If we have hit a point where the user provided a specialization of
2091 // this template, we're done looking.
2092 if (Primary->isMemberSpecialization())
2093 break;
2094
2095 Primary = Primary->getInstantiatedFromMemberTemplate();
2096 }
2097
2098 return Primary->getTemplatedDecl();
2099 }
2100
2101 return getInstantiatedFromMemberFunction();
2102}
2103
Douglas Gregor16e8be22009-06-29 17:30:29 +00002104FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002105 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002106 = TemplateOrSpecialization
2107 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002108 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00002109 }
2110 return 0;
2111}
2112
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002113FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
2114 return getASTContext().getClassScopeSpecializationPattern(this);
2115}
2116
Douglas Gregor16e8be22009-06-29 17:30:29 +00002117const TemplateArgumentList *
2118FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002119 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002120 = TemplateOrSpecialization
2121 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00002122 return Info->TemplateArguments;
2123 }
2124 return 0;
2125}
2126
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00002127const ASTTemplateArgumentListInfo *
Abramo Bagnarae03db982010-05-20 15:32:11 +00002128FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
2129 if (FunctionTemplateSpecializationInfo *Info
2130 = TemplateOrSpecialization
2131 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
2132 return Info->TemplateArgumentsAsWritten;
2133 }
2134 return 0;
2135}
2136
Mike Stump1eb44332009-09-09 15:08:12 +00002137void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002138FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
2139 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00002140 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002141 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00002142 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00002143 const TemplateArgumentListInfo *TemplateArgsAsWritten,
2144 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002145 assert(TSK != TSK_Undeclared &&
2146 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00002147 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002148 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00002149 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00002150 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
2151 TemplateArgs,
2152 TemplateArgsAsWritten,
2153 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00002154 TemplateOrSpecialization = Info;
Mike Stump1eb44332009-09-09 15:08:12 +00002155
Douglas Gregor127102b2009-06-29 20:59:39 +00002156 // Insert this function template specialization into the set of known
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002157 // function template specializations.
2158 if (InsertPos)
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00002159 Template->addSpecialization(Info, InsertPos);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002160 else {
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00002161 // Try to insert the new node. If there is an existing node, leave it, the
2162 // set will contain the canonical decls while
2163 // FunctionTemplateDecl::findSpecialization will return
2164 // the most recent redeclarations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002165 FunctionTemplateSpecializationInfo *Existing
2166 = Template->getSpecializations().GetOrInsertNode(Info);
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00002167 (void)Existing;
2168 assert((!Existing || Existing->Function->isCanonicalDecl()) &&
2169 "Set is supposed to only contain canonical decls");
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002170 }
Douglas Gregor1637be72009-06-26 00:10:03 +00002171}
2172
John McCallaf2094e2010-04-08 09:05:18 +00002173void
2174FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
2175 const UnresolvedSetImpl &Templates,
2176 const TemplateArgumentListInfo &TemplateArgs) {
2177 assert(TemplateOrSpecialization.isNull());
2178 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
2179 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00002180 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00002181 void *Buffer = Context.Allocate(Size);
2182 DependentFunctionTemplateSpecializationInfo *Info =
2183 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
2184 TemplateArgs);
2185 TemplateOrSpecialization = Info;
2186}
2187
2188DependentFunctionTemplateSpecializationInfo::
2189DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
2190 const TemplateArgumentListInfo &TArgs)
2191 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
2192
2193 d.NumTemplates = Ts.size();
2194 d.NumArgs = TArgs.size();
2195
2196 FunctionTemplateDecl **TsArray =
2197 const_cast<FunctionTemplateDecl**>(getTemplates());
2198 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
2199 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
2200
2201 TemplateArgumentLoc *ArgsArray =
2202 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
2203 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
2204 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
2205}
2206
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002207TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002208 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002209 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00002210 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002211 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00002212 if (FTSInfo)
2213 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00002214
Douglas Gregor2db32322009-10-07 23:56:10 +00002215 MemberSpecializationInfo *MSInfo
2216 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2217 if (MSInfo)
2218 return MSInfo->getTemplateSpecializationKind();
2219
2220 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002221}
2222
Mike Stump1eb44332009-09-09 15:08:12 +00002223void
Douglas Gregor0a897e32009-10-15 17:21:20 +00002224FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2225 SourceLocation PointOfInstantiation) {
2226 if (FunctionTemplateSpecializationInfo *FTSInfo
2227 = TemplateOrSpecialization.dyn_cast<
2228 FunctionTemplateSpecializationInfo*>()) {
2229 FTSInfo->setTemplateSpecializationKind(TSK);
2230 if (TSK != TSK_ExplicitSpecialization &&
2231 PointOfInstantiation.isValid() &&
2232 FTSInfo->getPointOfInstantiation().isInvalid())
2233 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
2234 } else if (MemberSpecializationInfo *MSInfo
2235 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
2236 MSInfo->setTemplateSpecializationKind(TSK);
2237 if (TSK != TSK_ExplicitSpecialization &&
2238 PointOfInstantiation.isValid() &&
2239 MSInfo->getPointOfInstantiation().isInvalid())
2240 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2241 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00002242 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor0a897e32009-10-15 17:21:20 +00002243}
2244
2245SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00002246 if (FunctionTemplateSpecializationInfo *FTSInfo
2247 = TemplateOrSpecialization.dyn_cast<
2248 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002249 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00002250 else if (MemberSpecializationInfo *MSInfo
2251 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002252 return MSInfo->getPointOfInstantiation();
2253
2254 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002255}
2256
Douglas Gregor9f185072009-09-11 20:15:17 +00002257bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00002258 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00002259 return true;
2260
2261 // If this function was instantiated from a member function of a
2262 // class template, check whether that member function was defined out-of-line.
2263 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
2264 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002265 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002266 return Definition->isOutOfLine();
2267 }
2268
2269 // If this function was instantiated from a function template,
2270 // check whether that function template was defined out-of-line.
2271 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
2272 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002273 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002274 return Definition->isOutOfLine();
2275 }
2276
2277 return false;
2278}
2279
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002280SourceRange FunctionDecl::getSourceRange() const {
2281 return SourceRange(getOuterLocStart(), EndRangeLoc);
2282}
2283
Chris Lattner8a934232008-03-31 00:36:02 +00002284//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002285// FieldDecl Implementation
2286//===----------------------------------------------------------------------===//
2287
Jay Foad4ba2a172011-01-12 09:06:06 +00002288FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002289 SourceLocation StartLoc, SourceLocation IdLoc,
2290 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00002291 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2292 bool HasInit) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002293 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smith7a614d82011-06-11 17:19:42 +00002294 BW, Mutable, HasInit);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002295}
2296
2297bool FieldDecl::isAnonymousStructOrUnion() const {
2298 if (!isImplicit() || getDeclName())
2299 return false;
2300
2301 if (const RecordType *Record = getType()->getAs<RecordType>())
2302 return Record->getDecl()->isAnonymousStructOrUnion();
2303
2304 return false;
2305}
2306
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002307unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
2308 assert(isBitField() && "not a bitfield");
2309 Expr *BitWidth = InitializerOrBitWidth.getPointer();
2310 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
2311}
2312
John McCallba4f5d52011-01-20 07:57:12 +00002313unsigned FieldDecl::getFieldIndex() const {
2314 if (CachedFieldIndex) return CachedFieldIndex - 1;
2315
Richard Smith180f4792011-11-10 06:34:14 +00002316 unsigned Index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002317 const RecordDecl *RD = getParent();
2318 const FieldDecl *LastFD = 0;
2319 bool IsMsStruct = RD->hasAttr<MsStructAttr>();
Richard Smith180f4792011-11-10 06:34:14 +00002320
2321 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
2322 I != E; ++I, ++Index) {
2323 (*I)->CachedFieldIndex = Index + 1;
John McCallba4f5d52011-01-20 07:57:12 +00002324
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002325 if (IsMsStruct) {
2326 // Zero-length bitfields following non-bitfield members are ignored.
Richard Smith180f4792011-11-10 06:34:14 +00002327 if (getASTContext().ZeroBitfieldFollowsNonBitfield((*I), LastFD)) {
2328 --Index;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002329 continue;
2330 }
Richard Smith180f4792011-11-10 06:34:14 +00002331 LastFD = (*I);
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002332 }
John McCallba4f5d52011-01-20 07:57:12 +00002333 }
2334
Richard Smith180f4792011-11-10 06:34:14 +00002335 assert(CachedFieldIndex && "failed to find field in parent");
2336 return CachedFieldIndex - 1;
John McCallba4f5d52011-01-20 07:57:12 +00002337}
2338
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002339SourceRange FieldDecl::getSourceRange() const {
Abramo Bagnarad330e232011-08-05 08:02:55 +00002340 if (const Expr *E = InitializerOrBitWidth.getPointer())
2341 return SourceRange(getInnerLocStart(), E->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002342 return DeclaratorDecl::getSourceRange();
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002343}
2344
Richard Smith7a614d82011-06-11 17:19:42 +00002345void FieldDecl::setInClassInitializer(Expr *Init) {
2346 assert(!InitializerOrBitWidth.getPointer() &&
2347 "bit width or initializer already set");
2348 InitializerOrBitWidth.setPointer(Init);
2349 InitializerOrBitWidth.setInt(0);
2350}
2351
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002352//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002353// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002354//===----------------------------------------------------------------------===//
2355
Douglas Gregor1693e152010-07-06 18:42:40 +00002356SourceLocation TagDecl::getOuterLocStart() const {
2357 return getTemplateOrInnerLocStart(this);
2358}
2359
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002360SourceRange TagDecl::getSourceRange() const {
2361 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00002362 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002363}
2364
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002365TagDecl* TagDecl::getCanonicalDecl() {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002366 return getFirstDeclaration();
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002367}
2368
Richard Smith162e1c12011-04-15 14:24:37 +00002369void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
2370 TypedefNameDeclOrQualifier = TDD;
Douglas Gregor60e70642010-05-19 18:39:18 +00002371 if (TypeForDecl)
John McCallf4c73712011-01-19 06:33:43 +00002372 const_cast<Type*>(TypeForDecl)->ClearLinkageCache();
Douglas Gregor381d34e2010-12-06 18:36:25 +00002373 ClearLinkageCache();
Douglas Gregor60e70642010-05-19 18:39:18 +00002374}
2375
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002376void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00002377 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00002378
2379 if (isa<CXXRecordDecl>(this)) {
2380 CXXRecordDecl *D = cast<CXXRecordDecl>(this);
2381 struct CXXRecordDecl::DefinitionData *Data =
2382 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
John McCall22432882010-03-26 21:56:38 +00002383 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I)
2384 cast<CXXRecordDecl>(*I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00002385 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002386}
2387
2388void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00002389 assert((!isa<CXXRecordDecl>(this) ||
2390 cast<CXXRecordDecl>(this)->hasDefinition()) &&
2391 "definition completed but not started");
2392
John McCall5e1cdac2011-10-07 06:10:15 +00002393 IsCompleteDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00002394 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002395
2396 if (ASTMutationListener *L = getASTMutationListener())
2397 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002398}
2399
John McCall5e1cdac2011-10-07 06:10:15 +00002400TagDecl *TagDecl::getDefinition() const {
2401 if (isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002402 return const_cast<TagDecl *>(this);
Andrew Trick220a9c82010-10-19 21:54:32 +00002403 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
2404 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002405
2406 for (redecl_iterator R = redecls_begin(), REnd = redecls_end();
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002407 R != REnd; ++R)
John McCall5e1cdac2011-10-07 06:10:15 +00002408 if (R->isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002409 return *R;
Mike Stump1eb44332009-09-09 15:08:12 +00002410
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002411 return 0;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002412}
2413
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002414void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
2415 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00002416 // Make sure the extended qualifier info is allocated.
2417 if (!hasExtInfo())
Richard Smith162e1c12011-04-15 14:24:37 +00002418 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00002419 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002420 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00002421 } else {
John McCallb6217662010-03-15 10:12:16 +00002422 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00002423 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002424 if (getExtInfo()->NumTemplParamLists == 0) {
2425 getASTContext().Deallocate(getExtInfo());
Richard Smith162e1c12011-04-15 14:24:37 +00002426 TypedefNameDeclOrQualifier = (TypedefNameDecl*) 0;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002427 }
2428 else
2429 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00002430 }
2431 }
2432}
2433
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002434void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
2435 unsigned NumTPLists,
2436 TemplateParameterList **TPLists) {
2437 assert(NumTPLists > 0);
2438 // Make sure the extended decl info is allocated.
2439 if (!hasExtInfo())
2440 // Allocate external info struct.
Richard Smith162e1c12011-04-15 14:24:37 +00002441 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002442 // Set the template parameter lists info.
2443 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
2444}
2445
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002446//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002447// EnumDecl Implementation
2448//===----------------------------------------------------------------------===//
2449
David Blaikie99ba9e32011-12-20 02:48:34 +00002450void EnumDecl::anchor() { }
2451
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002452EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
2453 SourceLocation StartLoc, SourceLocation IdLoc,
2454 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002455 EnumDecl *PrevDecl, bool IsScoped,
2456 bool IsScopedUsingClassTag, bool IsFixed) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002457 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002458 IsScoped, IsScopedUsingClassTag, IsFixed);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002459 C.getTypeDeclType(Enum, PrevDecl);
2460 return Enum;
2461}
2462
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002463EnumDecl *EnumDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002464 return new (C) EnumDecl(0, SourceLocation(), SourceLocation(), 0, 0,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002465 false, false, false);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002466}
2467
Douglas Gregor838db382010-02-11 01:19:42 +00002468void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00002469 QualType NewPromotionType,
2470 unsigned NumPositiveBits,
2471 unsigned NumNegativeBits) {
John McCall5e1cdac2011-10-07 06:10:15 +00002472 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002473 if (!IntegerType)
2474 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002475 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00002476 setNumPositiveBits(NumPositiveBits);
2477 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002478 TagDecl::completeDefinition();
2479}
2480
2481//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002482// RecordDecl Implementation
2483//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002484
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002485RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
2486 SourceLocation StartLoc, SourceLocation IdLoc,
2487 IdentifierInfo *Id, RecordDecl *PrevDecl)
2488 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00002489 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002490 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002491 HasObjectMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002492 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00002493 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00002494}
2495
Jay Foad4ba2a172011-01-12 09:06:06 +00002496RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002497 SourceLocation StartLoc, SourceLocation IdLoc,
2498 IdentifierInfo *Id, RecordDecl* PrevDecl) {
2499 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
2500 PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002501 C.getTypeDeclType(R, PrevDecl);
2502 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00002503}
2504
Jay Foad4ba2a172011-01-12 09:06:06 +00002505RecordDecl *RecordDecl::Create(const ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002506 return new (C) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
2507 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002508}
2509
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002510bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002511 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002512 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
2513}
2514
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002515RecordDecl::field_iterator RecordDecl::field_begin() const {
2516 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
2517 LoadFieldsFromExternalStorage();
2518
2519 return field_iterator(decl_iterator(FirstDecl));
2520}
2521
Douglas Gregorda2142f2011-02-19 18:51:44 +00002522/// completeDefinition - Notes that the definition of this type is now
2523/// complete.
2524void RecordDecl::completeDefinition() {
John McCall5e1cdac2011-10-07 06:10:15 +00002525 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorda2142f2011-02-19 18:51:44 +00002526 TagDecl::completeDefinition();
2527}
2528
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002529void RecordDecl::LoadFieldsFromExternalStorage() const {
2530 ExternalASTSource *Source = getASTContext().getExternalSource();
2531 assert(hasExternalLexicalStorage() && Source && "No external storage?");
2532
2533 // Notify that we have a RecordDecl doing some initialization.
2534 ExternalASTSource::Deserializing TheFields(Source);
2535
Chris Lattner5f9e2722011-07-23 10:55:15 +00002536 SmallVector<Decl*, 64> Decls;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002537 LoadedFieldsFromExternalStorage = true;
2538 switch (Source->FindExternalLexicalDeclsBy<FieldDecl>(this, Decls)) {
2539 case ELR_Success:
2540 break;
2541
2542 case ELR_AlreadyLoaded:
2543 case ELR_Failure:
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002544 return;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002545 }
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002546
2547#ifndef NDEBUG
2548 // Check that all decls we got were FieldDecls.
2549 for (unsigned i=0, e=Decls.size(); i != e; ++i)
2550 assert(isa<FieldDecl>(Decls[i]));
2551#endif
2552
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002553 if (Decls.empty())
2554 return;
2555
Argyrios Kyrtzidisec2ec1f2011-10-07 21:55:43 +00002556 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
2557 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002558}
2559
Steve Naroff56ee6892008-10-08 17:01:13 +00002560//===----------------------------------------------------------------------===//
2561// BlockDecl Implementation
2562//===----------------------------------------------------------------------===//
2563
David Blaikie4278c652011-09-21 18:16:56 +00002564void BlockDecl::setParams(llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Steve Naroffe78b8092009-03-13 16:56:44 +00002565 assert(ParamInfo == 0 && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00002566
Steve Naroffe78b8092009-03-13 16:56:44 +00002567 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00002568 if (!NewParamInfo.empty()) {
2569 NumParams = NewParamInfo.size();
2570 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
2571 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffe78b8092009-03-13 16:56:44 +00002572 }
2573}
2574
John McCall6b5a61b2011-02-07 10:33:21 +00002575void BlockDecl::setCaptures(ASTContext &Context,
2576 const Capture *begin,
2577 const Capture *end,
2578 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00002579 CapturesCXXThis = capturesCXXThis;
2580
2581 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00002582 NumCaptures = 0;
2583 Captures = 0;
John McCall469a1eb2011-02-02 13:00:07 +00002584 return;
2585 }
2586
John McCall6b5a61b2011-02-07 10:33:21 +00002587 NumCaptures = end - begin;
2588
2589 // Avoid new Capture[] because we don't want to provide a default
2590 // constructor.
2591 size_t allocationSize = NumCaptures * sizeof(Capture);
2592 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
2593 memcpy(buffer, begin, allocationSize);
2594 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00002595}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002596
John McCall204e1332011-06-15 22:51:16 +00002597bool BlockDecl::capturesVariable(const VarDecl *variable) const {
2598 for (capture_const_iterator
2599 i = capture_begin(), e = capture_end(); i != e; ++i)
2600 // Only auto vars can be captured, so no redeclaration worries.
2601 if (i->getVariable() == variable)
2602 return true;
2603
2604 return false;
2605}
2606
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00002607SourceRange BlockDecl::getSourceRange() const {
2608 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
2609}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002610
2611//===----------------------------------------------------------------------===//
2612// Other Decl Allocation/Deallocation Method Implementations
2613//===----------------------------------------------------------------------===//
2614
David Blaikie99ba9e32011-12-20 02:48:34 +00002615void TranslationUnitDecl::anchor() { }
2616
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002617TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
2618 return new (C) TranslationUnitDecl(C);
2619}
2620
David Blaikie99ba9e32011-12-20 02:48:34 +00002621void LabelDecl::anchor() { }
2622
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002623LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00002624 SourceLocation IdentL, IdentifierInfo *II) {
2625 return new (C) LabelDecl(DC, IdentL, II, 0, IdentL);
2626}
2627
2628LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
2629 SourceLocation IdentL, IdentifierInfo *II,
2630 SourceLocation GnuLabelL) {
2631 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
2632 return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002633}
2634
David Blaikie99ba9e32011-12-20 02:48:34 +00002635void NamespaceDecl::anchor() { }
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002636
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002637NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00002638 SourceLocation StartLoc,
2639 SourceLocation IdLoc, IdentifierInfo *Id) {
2640 return new (C) NamespaceDecl(DC, StartLoc, IdLoc, Id);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002641}
2642
Douglas Gregor06c91932010-10-27 19:49:05 +00002643NamespaceDecl *NamespaceDecl::getNextNamespace() {
2644 return dyn_cast_or_null<NamespaceDecl>(
2645 NextNamespace.get(getASTContext().getExternalSource()));
2646}
2647
David Blaikie99ba9e32011-12-20 02:48:34 +00002648void ValueDecl::anchor() { }
2649
2650void ImplicitParamDecl::anchor() { }
2651
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002652ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002653 SourceLocation IdLoc,
2654 IdentifierInfo *Id,
2655 QualType Type) {
2656 return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002657}
2658
2659FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002660 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002661 const DeclarationNameInfo &NameInfo,
2662 QualType T, TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002663 StorageClass SC, StorageClass SCAsWritten,
Douglas Gregor8f150942010-12-09 16:59:22 +00002664 bool isInlineSpecified,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002665 bool hasWrittenPrototype,
2666 bool isConstexprSpecified) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002667 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo,
2668 T, TInfo, SC, SCAsWritten,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002669 isInlineSpecified,
2670 isConstexprSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002671 New->HasWrittenPrototype = hasWrittenPrototype;
2672 return New;
2673}
2674
2675BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
2676 return new (C) BlockDecl(DC, L);
2677}
2678
2679EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
2680 SourceLocation L,
2681 IdentifierInfo *Id, QualType T,
2682 Expr *E, const llvm::APSInt &V) {
2683 return new (C) EnumConstantDecl(CD, L, Id, T, E, V);
2684}
2685
David Blaikie99ba9e32011-12-20 02:48:34 +00002686void IndirectFieldDecl::anchor() { }
2687
Benjamin Kramerd9811462010-11-21 14:11:41 +00002688IndirectFieldDecl *
2689IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
2690 IdentifierInfo *Id, QualType T, NamedDecl **CH,
2691 unsigned CHS) {
Francois Pichet87c2e122010-11-21 06:08:52 +00002692 return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
2693}
2694
Douglas Gregor8e7139c2010-09-01 20:41:53 +00002695SourceRange EnumConstantDecl::getSourceRange() const {
2696 SourceLocation End = getLocation();
2697 if (Init)
2698 End = Init->getLocEnd();
2699 return SourceRange(getLocation(), End);
2700}
2701
David Blaikie99ba9e32011-12-20 02:48:34 +00002702void TypeDecl::anchor() { }
2703
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002704TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00002705 SourceLocation StartLoc, SourceLocation IdLoc,
2706 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
2707 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002708}
2709
David Blaikie99ba9e32011-12-20 02:48:34 +00002710void TypedefNameDecl::anchor() { }
2711
Richard Smith162e1c12011-04-15 14:24:37 +00002712TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
2713 SourceLocation StartLoc,
2714 SourceLocation IdLoc, IdentifierInfo *Id,
2715 TypeSourceInfo *TInfo) {
2716 return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo);
2717}
2718
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002719SourceRange TypedefDecl::getSourceRange() const {
2720 SourceLocation RangeEnd = getLocation();
2721 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
2722 if (typeIsPostfix(TInfo->getType()))
2723 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2724 }
2725 return SourceRange(getLocStart(), RangeEnd);
2726}
2727
Richard Smith162e1c12011-04-15 14:24:37 +00002728SourceRange TypeAliasDecl::getSourceRange() const {
2729 SourceLocation RangeEnd = getLocStart();
2730 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
2731 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2732 return SourceRange(getLocStart(), RangeEnd);
2733}
2734
David Blaikie99ba9e32011-12-20 02:48:34 +00002735void FileScopeAsmDecl::anchor() { }
2736
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002737FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002738 StringLiteral *Str,
2739 SourceLocation AsmLoc,
2740 SourceLocation RParenLoc) {
2741 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002742}
Douglas Gregor15de72c2011-12-02 23:23:56 +00002743
2744//===----------------------------------------------------------------------===//
2745// ImportDecl Implementation
2746//===----------------------------------------------------------------------===//
2747
2748/// \brief Retrieve the number of module identifiers needed to name the given
2749/// module.
2750static unsigned getNumModuleIdentifiers(Module *Mod) {
2751 unsigned Result = 1;
2752 while (Mod->Parent) {
2753 Mod = Mod->Parent;
2754 ++Result;
2755 }
2756 return Result;
2757}
2758
2759ImportDecl::ImportDecl(DeclContext *DC, SourceLocation ImportLoc,
2760 Module *Imported,
2761 ArrayRef<SourceLocation> IdentifierLocs)
Douglas Gregore6649772011-12-03 00:30:27 +00002762 : Decl(Import, DC, ImportLoc), ImportedAndComplete(Imported, true),
2763 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00002764{
2765 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
2766 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
2767 memcpy(StoredLocs, IdentifierLocs.data(),
2768 IdentifierLocs.size() * sizeof(SourceLocation));
2769}
2770
2771ImportDecl::ImportDecl(DeclContext *DC, SourceLocation ImportLoc,
2772 Module *Imported, SourceLocation EndLoc)
Douglas Gregore6649772011-12-03 00:30:27 +00002773 : Decl(Import, DC, ImportLoc), ImportedAndComplete(Imported, false),
2774 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00002775{
2776 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
2777}
2778
2779ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
2780 SourceLocation ImportLoc, Module *Imported,
2781 ArrayRef<SourceLocation> IdentifierLocs) {
2782 void *Mem = C.Allocate(sizeof(ImportDecl) +
2783 IdentifierLocs.size() * sizeof(SourceLocation));
2784 return new (Mem) ImportDecl(DC, ImportLoc, Imported, IdentifierLocs);
2785}
2786
2787ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
2788 SourceLocation ImportLoc,
2789 Module *Imported,
2790 SourceLocation EndLoc) {
2791 void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation));
Douglas Gregor93ebfa62011-12-02 23:42:12 +00002792 ImportDecl *Import = new (Mem) ImportDecl(DC, ImportLoc, Imported, EndLoc);
Douglas Gregor15de72c2011-12-02 23:23:56 +00002793 Import->setImplicit();
2794 return Import;
2795}
2796
2797ImportDecl *ImportDecl::CreateEmpty(ASTContext &C, unsigned NumLocations) {
2798 void *Mem = C.Allocate(sizeof(ImportDecl) +
2799 NumLocations * sizeof(SourceLocation));
2800 return new (Mem) ImportDecl(EmptyShell());
2801}
2802
2803ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
2804 if (!ImportedAndComplete.getInt())
2805 return ArrayRef<SourceLocation>();
2806
2807 const SourceLocation *StoredLocs
2808 = reinterpret_cast<const SourceLocation *>(this + 1);
2809 return ArrayRef<SourceLocation>(StoredLocs,
2810 getNumModuleIdentifiers(getImportedModule()));
2811}
2812
2813SourceRange ImportDecl::getSourceRange() const {
2814 if (!ImportedAndComplete.getInt())
2815 return SourceRange(getLocation(),
2816 *reinterpret_cast<const SourceLocation *>(this + 1));
2817
2818 return SourceRange(getLocation(), getIdentifierLocs().back());
2819}