blob: 96766dca5bccc5bb48bc4444c1bf08a202c1d9b4 [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 McCallaf146032010-10-30 11:50:40 +000070
Benjamin Kramer752c2e92010-11-05 19:56:37 +000071namespace {
John McCall36987482010-11-02 01:45:15 +000072/// Flags controlling the computation of linkage and visibility.
73struct LVFlags {
74 bool ConsiderGlobalVisibility;
75 bool ConsiderVisibilityAttributes;
John McCall1a0918a2011-03-04 10:39:25 +000076 bool ConsiderTemplateParameterTypes;
John McCall36987482010-11-02 01:45:15 +000077
78 LVFlags() : ConsiderGlobalVisibility(true),
John McCall1a0918a2011-03-04 10:39:25 +000079 ConsiderVisibilityAttributes(true),
80 ConsiderTemplateParameterTypes(true) {
John McCall36987482010-11-02 01:45:15 +000081 }
82
Douglas Gregor381d34e2010-12-06 18:36:25 +000083 /// \brief Returns a set of flags that is only useful for computing the
84 /// linkage, not the visibility, of a declaration.
85 static LVFlags CreateOnlyDeclLinkage() {
86 LVFlags F;
87 F.ConsiderGlobalVisibility = false;
88 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +000089 F.ConsiderTemplateParameterTypes = false;
Douglas Gregor381d34e2010-12-06 18:36:25 +000090 return F;
91 }
92
John McCall36987482010-11-02 01:45:15 +000093 /// Returns a set of flags, otherwise based on these, which ignores
94 /// off all sources of visibility except template arguments.
95 LVFlags onlyTemplateVisibility() const {
96 LVFlags F = *this;
97 F.ConsiderGlobalVisibility = false;
98 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +000099 F.ConsiderTemplateParameterTypes = false;
John McCall36987482010-11-02 01:45:15 +0000100 return F;
101 }
Douglas Gregor89d63e52010-12-06 18:50:56 +0000102};
Benjamin Kramer752c2e92010-11-05 19:56:37 +0000103} // end anonymous namespace
John McCall36987482010-11-02 01:45:15 +0000104
Rafael Espindola093ecc92012-01-14 00:30:36 +0000105static LinkageInfo getLVForType(QualType T) {
106 std::pair<Linkage,Visibility> P = T->getLinkageAndVisibility();
107 return LinkageInfo(P.first, P.second, T->isVisibilityExplicit());
108}
109
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000110/// \brief Get the most restrictive linkage for the types in the given
111/// template parameter list.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000112static LinkageInfo
John McCall1fb0caa2010-10-22 21:05:15 +0000113getLVForTemplateParameterList(const TemplateParameterList *Params) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000114 LinkageInfo LV(ExternalLinkage, DefaultVisibility, false);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000115 for (TemplateParameterList::const_iterator P = Params->begin(),
116 PEnd = Params->end();
117 P != PEnd; ++P) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000118 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
119 if (NTTP->isExpandedParameterPack()) {
120 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
121 QualType T = NTTP->getExpansionType(I);
122 if (!T->isDependentType())
Rafael Espindola093ecc92012-01-14 00:30:36 +0000123 LV.merge(getLVForType(T));
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000124 }
125 continue;
126 }
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000127
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000128 if (!NTTP->getType()->isDependentType()) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000129 LV.merge(getLVForType(NTTP->getType()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000130 continue;
131 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000132 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000133
134 if (TemplateTemplateParmDecl *TTP
135 = dyn_cast<TemplateTemplateParmDecl>(*P)) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000136 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000137 }
138 }
139
John McCall1fb0caa2010-10-22 21:05:15 +0000140 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000141}
142
Douglas Gregor381d34e2010-12-06 18:36:25 +0000143/// getLVForDecl - Get the linkage and visibility for the given declaration.
144static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags F);
145
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000146/// \brief Get the most restrictive linkage for the types and
147/// declarations in the given template argument list.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000148static LinkageInfo getLVForTemplateArgumentList(const TemplateArgument *Args,
149 unsigned NumArgs,
150 LVFlags &F) {
151 LinkageInfo LV(ExternalLinkage, DefaultVisibility, false);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000152
153 for (unsigned I = 0; I != NumArgs; ++I) {
154 switch (Args[I].getKind()) {
155 case TemplateArgument::Null:
156 case TemplateArgument::Integral:
157 case TemplateArgument::Expression:
158 break;
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000159
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000160 case TemplateArgument::Type:
Rafael Espindola093ecc92012-01-14 00:30:36 +0000161 LV.merge(getLVForType(Args[I].getAsType()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000162 break;
163
164 case TemplateArgument::Declaration:
John McCall1fb0caa2010-10-22 21:05:15 +0000165 // The decl can validly be null as the representation of nullptr
166 // arguments, valid only in C++0x.
167 if (Decl *D = Args[I].getAsDecl()) {
Douglas Gregor89d63e52010-12-06 18:50:56 +0000168 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
169 LV = merge(LV, getLVForDecl(ND, F));
John McCall1fb0caa2010-10-22 21:05:15 +0000170 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000171 break;
172
173 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +0000174 case TemplateArgument::TemplateExpansion:
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000175 if (TemplateDecl *Template
Douglas Gregora7fc9012011-01-05 18:58:31 +0000176 = Args[I].getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Rafael Espindola093ecc92012-01-14 00:30:36 +0000177 LV.merge(getLVForDecl(Template, F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000178 break;
179
180 case TemplateArgument::Pack:
Rafael Espindola093ecc92012-01-14 00:30:36 +0000181 LV.merge(getLVForTemplateArgumentList(Args[I].pack_begin(),
182 Args[I].pack_size(),
183 F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000184 break;
185 }
186 }
187
John McCall1fb0caa2010-10-22 21:05:15 +0000188 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000189}
190
Rafael Espindola093ecc92012-01-14 00:30:36 +0000191static LinkageInfo
Douglas Gregor381d34e2010-12-06 18:36:25 +0000192getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
193 LVFlags &F) {
194 return getLVForTemplateArgumentList(TArgs.data(), TArgs.size(), F);
John McCall3cdfc4d2010-08-13 08:35:10 +0000195}
196
John McCall6ce51ee2011-06-27 23:06:04 +0000197static bool shouldConsiderTemplateLV(const FunctionDecl *fn,
198 const FunctionTemplateSpecializationInfo *spec) {
199 return !(spec->isExplicitSpecialization() &&
200 fn->hasAttr<VisibilityAttr>());
201}
202
203static bool shouldConsiderTemplateLV(const ClassTemplateSpecializationDecl *d) {
204 return !(d->isExplicitSpecialization() && d->hasAttr<VisibilityAttr>());
205}
206
John McCall36987482010-11-02 01:45:15 +0000207static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, LVFlags F) {
Sebastian Redl7a126a42010-08-31 00:36:30 +0000208 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregord85b5b92009-11-25 22:24:25 +0000209 "Not a name having namespace scope");
210 ASTContext &Context = D->getASTContext();
211
212 // C++ [basic.link]p3:
213 // A name having namespace scope (3.3.6) has internal linkage if it
214 // is the name of
215 // - an object, reference, function or function template that is
216 // explicitly declared static; or,
217 // (This bullet corresponds to C99 6.2.2p3.)
218 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
219 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000220 if (Var->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000221 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000222
223 // - an object or reference that is explicitly declared const
224 // and neither explicitly declared extern nor previously
225 // declared to have external linkage; or
226 // (there is no equivalent in C99)
227 if (Context.getLangOptions().CPlusPlus &&
Eli Friedmane9d65542009-11-26 03:04:01 +0000228 Var->getType().isConstant(Context) &&
John McCalld931b082010-08-26 03:08:43 +0000229 Var->getStorageClass() != SC_Extern &&
230 Var->getStorageClass() != SC_PrivateExtern) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000231 bool FoundExtern = false;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000232 for (const VarDecl *PrevVar = Var->getPreviousDecl();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000233 PrevVar && !FoundExtern;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000234 PrevVar = PrevVar->getPreviousDecl())
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000235 if (isExternalLinkage(PrevVar->getLinkage()))
Douglas Gregord85b5b92009-11-25 22:24:25 +0000236 FoundExtern = true;
237
238 if (!FoundExtern)
John McCallaf146032010-10-30 11:50:40 +0000239 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000240 }
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000241 if (Var->getStorageClass() == SC_None) {
Douglas Gregoref96ee02012-01-14 16:38:05 +0000242 const VarDecl *PrevVar = Var->getPreviousDecl();
243 for (; PrevVar; PrevVar = PrevVar->getPreviousDecl())
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000244 if (PrevVar->getStorageClass() == SC_PrivateExtern)
245 break;
246 if (PrevVar)
247 return PrevVar->getLinkageAndVisibility();
248 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000249 } else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000250 // C++ [temp]p4:
251 // A non-member function template can have internal linkage; any
252 // other template name shall have external linkage.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000253 const FunctionDecl *Function = 0;
254 if (const FunctionTemplateDecl *FunTmpl
255 = dyn_cast<FunctionTemplateDecl>(D))
256 Function = FunTmpl->getTemplatedDecl();
257 else
258 Function = cast<FunctionDecl>(D);
259
260 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000261 if (Function->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000262 return LinkageInfo(InternalLinkage, DefaultVisibility, false);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000263 } else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
264 // - a data member of an anonymous union.
265 if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion())
John McCallaf146032010-10-30 11:50:40 +0000266 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000267 }
268
Chandler Carruth094b6432011-02-24 19:03:39 +0000269 if (D->isInAnonymousNamespace()) {
270 const VarDecl *Var = dyn_cast<VarDecl>(D);
271 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
Eli Friedman750dc2b2012-01-15 01:23:58 +0000272 if ((!Var || !Var->getDeclContext()->isExternCContext()) &&
273 (!Func || !Func->getDeclContext()->isExternCContext()))
Chandler Carruth094b6432011-02-24 19:03:39 +0000274 return LinkageInfo::uniqueExternal();
275 }
John McCalle7bc9722010-10-28 04:18:25 +0000276
John McCall1fb0caa2010-10-22 21:05:15 +0000277 // Set up the defaults.
278
279 // C99 6.2.2p5:
280 // If the declaration of an identifier for an object has file
281 // scope and no storage-class specifier, its linkage is
282 // external.
John McCallaf146032010-10-30 11:50:40 +0000283 LinkageInfo LV;
284
John McCall36987482010-11-02 01:45:15 +0000285 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000286 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
287 LV.setVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000288 F.ConsiderGlobalVisibility = false;
John McCall90f14502010-12-10 02:59:44 +0000289 } else {
290 // If we're declared in a namespace with a visibility attribute,
291 // use that namespace's visibility, but don't call it explicit.
292 for (const DeclContext *DC = D->getDeclContext();
293 !isa<TranslationUnitDecl>(DC);
294 DC = DC->getParent()) {
Rafael Espindola6f26b5e2012-01-01 17:48:19 +0000295 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
296 if (!ND) continue;
297 if (llvm::Optional<Visibility> Vis = ND->getExplicitVisibility()) {
Rafael Espindola71cb8a22012-01-01 18:06:40 +0000298 LV.setVisibility(*Vis, true);
John McCall90f14502010-12-10 02:59:44 +0000299 F.ConsiderGlobalVisibility = false;
300 break;
301 }
302 }
John McCall36987482010-11-02 01:45:15 +0000303 }
John McCallaf146032010-10-30 11:50:40 +0000304 }
John McCall1fb0caa2010-10-22 21:05:15 +0000305
Douglas Gregord85b5b92009-11-25 22:24:25 +0000306 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000307
Douglas Gregord85b5b92009-11-25 22:24:25 +0000308 // A name having namespace scope has external linkage if it is the
309 // name of
310 //
311 // - an object or reference, unless it has internal linkage; or
312 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000313 // GCC applies the following optimization to variables and static
314 // data members, but not to functions:
315 //
John McCall1fb0caa2010-10-22 21:05:15 +0000316 // Modify the variable's LV by the LV of its type unless this is
317 // C or extern "C". This follows from [basic.link]p9:
318 // A type without linkage shall not be used as the type of a
319 // variable or function with external linkage unless
320 // - the entity has C language linkage, or
321 // - the entity is declared within an unnamed namespace, or
322 // - the entity is not used or is defined in the same
323 // translation unit.
324 // and [basic.link]p10:
325 // ...the types specified by all declarations referring to a
326 // given variable or function shall be identical...
327 // C does not have an equivalent rule.
328 //
John McCallac65c622010-10-26 04:59:26 +0000329 // Ignore this if we've got an explicit attribute; the user
330 // probably knows what they're doing.
331 //
John McCall1fb0caa2010-10-22 21:05:15 +0000332 // Note that we don't want to make the variable non-external
333 // because of this, but unique-external linkage suits us.
Eli Friedman750dc2b2012-01-15 01:23:58 +0000334 if (Context.getLangOptions().CPlusPlus &&
335 !Var->getDeclContext()->isExternCContext()) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000336 LinkageInfo TypeLV = getLVForType(Var->getType());
337 if (TypeLV.linkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000338 return LinkageInfo::uniqueExternal();
339 if (!LV.visibilityExplicit())
Rafael Espindola093ecc92012-01-14 00:30:36 +0000340 LV.mergeVisibility(TypeLV.visibility(), TypeLV.visibilityExplicit());
John McCall110e8e52010-10-29 22:22:43 +0000341 }
342
John McCall35cebc32010-11-02 18:38:13 +0000343 if (Var->getStorageClass() == SC_PrivateExtern)
344 LV.setVisibility(HiddenVisibility, true);
345
Douglas Gregord85b5b92009-11-25 22:24:25 +0000346 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000347 (Var->getStorageClass() == SC_Extern ||
348 Var->getStorageClass() == SC_PrivateExtern)) {
John McCall1fb0caa2010-10-22 21:05:15 +0000349
Douglas Gregord85b5b92009-11-25 22:24:25 +0000350 // C99 6.2.2p4:
351 // For an identifier declared with the storage-class specifier
352 // extern in a scope in which a prior declaration of that
353 // identifier is visible, if the prior declaration specifies
354 // internal or external linkage, the linkage of the identifier
355 // at the later declaration is the same as the linkage
356 // specified at the prior declaration. If no prior declaration
357 // is visible, or if the prior declaration specifies no
358 // linkage, then the identifier has external linkage.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000359 if (const VarDecl *PrevVar = Var->getPreviousDecl()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000360 LinkageInfo PrevLV = getLVForDecl(PrevVar, F);
John McCallaf146032010-10-30 11:50:40 +0000361 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
362 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000363 }
364 }
365
Douglas Gregord85b5b92009-11-25 22:24:25 +0000366 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000367 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000368 // In theory, we can modify the function's LV by the LV of its
369 // type unless it has C linkage (see comment above about variables
370 // for justification). In practice, GCC doesn't do this, so it's
371 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000372
John McCall35cebc32010-11-02 18:38:13 +0000373 if (Function->getStorageClass() == SC_PrivateExtern)
374 LV.setVisibility(HiddenVisibility, true);
375
Douglas Gregord85b5b92009-11-25 22:24:25 +0000376 // C99 6.2.2p5:
377 // If the declaration of an identifier for a function has no
378 // storage-class specifier, its linkage is determined exactly
379 // as if it were declared with the storage-class specifier
380 // extern.
381 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000382 (Function->getStorageClass() == SC_Extern ||
383 Function->getStorageClass() == SC_PrivateExtern ||
384 Function->getStorageClass() == SC_None)) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000385 // C99 6.2.2p4:
386 // For an identifier declared with the storage-class specifier
387 // extern in a scope in which a prior declaration of that
388 // identifier is visible, if the prior declaration specifies
389 // internal or external linkage, the linkage of the identifier
390 // at the later declaration is the same as the linkage
391 // specified at the prior declaration. If no prior declaration
392 // is visible, or if the prior declaration specifies no
393 // linkage, then the identifier has external linkage.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000394 if (const FunctionDecl *PrevFunc = Function->getPreviousDecl()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000395 LinkageInfo PrevLV = getLVForDecl(PrevFunc, F);
John McCallaf146032010-10-30 11:50:40 +0000396 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
397 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000398 }
399 }
400
John McCallaf8ca372011-02-10 06:50:24 +0000401 // In C++, then if the type of the function uses a type with
402 // unique-external linkage, it's not legally usable from outside
403 // this translation unit. However, we should use the C linkage
404 // rules instead for extern "C" declarations.
Eli Friedman750dc2b2012-01-15 01:23:58 +0000405 if (Context.getLangOptions().CPlusPlus &&
406 !Function->getDeclContext()->isExternCContext() &&
John McCallaf8ca372011-02-10 06:50:24 +0000407 Function->getType()->getLinkage() == UniqueExternalLinkage)
408 return LinkageInfo::uniqueExternal();
409
John McCall6ce51ee2011-06-27 23:06:04 +0000410 // Consider LV from the template and the template arguments unless
411 // this is an explicit specialization with a visibility attribute.
412 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000413 = Function->getTemplateSpecializationInfo()) {
John McCall6ce51ee2011-06-27 23:06:04 +0000414 if (shouldConsiderTemplateLV(Function, specInfo)) {
415 LV.merge(getLVForDecl(specInfo->getTemplate(),
416 F.onlyTemplateVisibility()));
417 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
418 LV.merge(getLVForTemplateArgumentList(templateArgs, F));
419 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000420 }
421
Douglas Gregord85b5b92009-11-25 22:24:25 +0000422 // - a named class (Clause 9), or an unnamed class defined in a
423 // typedef declaration in which the class has the typedef name
424 // for linkage purposes (7.1.3); or
425 // - a named enumeration (7.2), or an unnamed enumeration
426 // defined in a typedef declaration in which the enumeration
427 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000428 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
429 // Unnamed tags have no linkage.
Richard Smith162e1c12011-04-15 14:24:37 +0000430 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl())
John McCallaf146032010-10-30 11:50:40 +0000431 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000432
John McCall1fb0caa2010-10-22 21:05:15 +0000433 // If this is a class template specialization, consider the
434 // linkage of the template and template arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000435 if (const ClassTemplateSpecializationDecl *spec
John McCall1fb0caa2010-10-22 21:05:15 +0000436 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000437 if (shouldConsiderTemplateLV(spec)) {
438 // From the template.
439 LV.merge(getLVForDecl(spec->getSpecializedTemplate(),
440 F.onlyTemplateVisibility()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000441
John McCall6ce51ee2011-06-27 23:06:04 +0000442 // The arguments at which the template was instantiated.
443 const TemplateArgumentList &TemplateArgs = spec->getTemplateArgs();
444 LV.merge(getLVForTemplateArgumentList(TemplateArgs, F));
445 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000446 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000447
John McCallac65c622010-10-26 04:59:26 +0000448 // Consider -fvisibility unless the type has C linkage.
John McCall36987482010-11-02 01:45:15 +0000449 if (F.ConsiderGlobalVisibility)
450 F.ConsiderGlobalVisibility =
John McCallac65c622010-10-26 04:59:26 +0000451 (Context.getLangOptions().CPlusPlus &&
452 !Tag->getDeclContext()->isExternCContext());
John McCall1fb0caa2010-10-22 21:05:15 +0000453
Douglas Gregord85b5b92009-11-25 22:24:25 +0000454 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000455 } else if (isa<EnumConstantDecl>(D)) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000456 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()), F);
John McCallaf146032010-10-30 11:50:40 +0000457 if (!isExternalLinkage(EnumLV.linkage()))
458 return LinkageInfo::none();
459 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000460
461 // - a template, unless it is a function template that has
462 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000463 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
464 if (F.ConsiderTemplateParameterTypes)
465 LV.merge(getLVForTemplateParameterList(temp->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000466
Douglas Gregord85b5b92009-11-25 22:24:25 +0000467 // - a namespace (7.3), unless it is declared within an unnamed
468 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000469 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
470 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000471
John McCall1fb0caa2010-10-22 21:05:15 +0000472 // By extension, we assign external linkage to Objective-C
473 // interfaces.
474 } else if (isa<ObjCInterfaceDecl>(D)) {
475 // fallout
476
477 // Everything not covered here has no linkage.
478 } else {
John McCallaf146032010-10-30 11:50:40 +0000479 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000480 }
481
482 // If we ended up with non-external linkage, visibility should
483 // always be default.
John McCallaf146032010-10-30 11:50:40 +0000484 if (LV.linkage() != ExternalLinkage)
485 return LinkageInfo(LV.linkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000486
487 // If we didn't end up with hidden visibility, consider attributes
488 // and -fvisibility.
John McCall36987482010-11-02 01:45:15 +0000489 if (F.ConsiderGlobalVisibility)
John McCallaf146032010-10-30 11:50:40 +0000490 LV.mergeVisibility(Context.getLangOptions().getVisibilityMode());
John McCall1fb0caa2010-10-22 21:05:15 +0000491
492 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000493}
494
John McCall36987482010-11-02 01:45:15 +0000495static LinkageInfo getLVForClassMember(const NamedDecl *D, LVFlags F) {
John McCall1fb0caa2010-10-22 21:05:15 +0000496 // Only certain class members have linkage. Note that fields don't
497 // really have linkage, but it's convenient to say they do for the
498 // purposes of calculating linkage of pointer-to-data-member
499 // template arguments.
John McCall3cdfc4d2010-08-13 08:35:10 +0000500 if (!(isa<CXXMethodDecl>(D) ||
501 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000502 isa<FieldDecl>(D) ||
John McCall3cdfc4d2010-08-13 08:35:10 +0000503 (isa<TagDecl>(D) &&
Richard Smith162e1c12011-04-15 14:24:37 +0000504 (D->getDeclName() || cast<TagDecl>(D)->getTypedefNameForAnonDecl()))))
John McCallaf146032010-10-30 11:50:40 +0000505 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000506
John McCall36987482010-11-02 01:45:15 +0000507 LinkageInfo LV;
508
509 // The flags we're going to use to compute the class's visibility.
510 LVFlags ClassF = F;
511
512 // If we have an explicit visibility attribute, merge that in.
513 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000514 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
515 LV.mergeVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000516
517 // Ignore global visibility later, but not this attribute.
518 F.ConsiderGlobalVisibility = false;
519
520 // Ignore both global visibility and attributes when computing our
521 // parent's visibility.
522 ClassF = F.onlyTemplateVisibility();
523 }
524 }
John McCallaf146032010-10-30 11:50:40 +0000525
526 // Class members only have linkage if their class has external
John McCall36987482010-11-02 01:45:15 +0000527 // linkage.
528 LV.merge(getLVForDecl(cast<RecordDecl>(D->getDeclContext()), ClassF));
529 if (!isExternalLinkage(LV.linkage()))
John McCallaf146032010-10-30 11:50:40 +0000530 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000531
532 // If the class already has unique-external linkage, we can't improve.
John McCall36987482010-11-02 01:45:15 +0000533 if (LV.linkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000534 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000535
John McCall3cdfc4d2010-08-13 08:35:10 +0000536 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000537 // If the type of the function uses a type with unique-external
538 // linkage, it's not legally usable from outside this translation unit.
539 if (MD->getType()->getLinkage() == UniqueExternalLinkage)
540 return LinkageInfo::uniqueExternal();
541
John McCall110e8e52010-10-29 22:22:43 +0000542 TemplateSpecializationKind TSK = TSK_Undeclared;
543
John McCall1fb0caa2010-10-22 21:05:15 +0000544 // If this is a method template specialization, use the linkage for
545 // the template parameters and arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000546 if (FunctionTemplateSpecializationInfo *spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000547 = MD->getTemplateSpecializationInfo()) {
John McCall6ce51ee2011-06-27 23:06:04 +0000548 if (shouldConsiderTemplateLV(MD, spec)) {
549 LV.merge(getLVForTemplateArgumentList(*spec->TemplateArguments, F));
550 if (F.ConsiderTemplateParameterTypes)
551 LV.merge(getLVForTemplateParameterList(
552 spec->getTemplate()->getTemplateParameters()));
553 }
John McCall110e8e52010-10-29 22:22:43 +0000554
John McCall6ce51ee2011-06-27 23:06:04 +0000555 TSK = spec->getTemplateSpecializationKind();
John McCall110e8e52010-10-29 22:22:43 +0000556 } else if (MemberSpecializationInfo *MSI =
557 MD->getMemberSpecializationInfo()) {
558 TSK = MSI->getTemplateSpecializationKind();
John McCall3cdfc4d2010-08-13 08:35:10 +0000559 }
560
John McCall110e8e52010-10-29 22:22:43 +0000561 // If we're paying attention to global visibility, apply
562 // -finline-visibility-hidden if this is an inline method.
563 //
John McCallaf146032010-10-30 11:50:40 +0000564 // Note that ConsiderGlobalVisibility doesn't yet have information
565 // about whether containing classes have visibility attributes,
566 // and that's intentional.
567 if (TSK != TSK_ExplicitInstantiationDeclaration &&
Rafael Espindolafedb6ec2011-12-27 21:15:28 +0000568 TSK != TSK_ExplicitInstantiationDefinition &&
John McCall36987482010-11-02 01:45:15 +0000569 F.ConsiderGlobalVisibility &&
John McCall66cbcf32010-11-01 01:29:57 +0000570 MD->getASTContext().getLangOptions().InlineVisibilityHidden) {
571 // InlineVisibilityHidden only applies to definitions, and
572 // isInlined() only gives meaningful answers on definitions
573 // anyway.
574 const FunctionDecl *Def = 0;
575 if (MD->hasBody(Def) && Def->isInlined())
576 LV.setVisibility(HiddenVisibility);
577 }
John McCall1fb0caa2010-10-22 21:05:15 +0000578
John McCall110e8e52010-10-29 22:22:43 +0000579 // Note that in contrast to basically every other situation, we
580 // *do* apply -fvisibility to method declarations.
581
582 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000583 if (const ClassTemplateSpecializationDecl *spec
John McCall110e8e52010-10-29 22:22:43 +0000584 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000585 if (shouldConsiderTemplateLV(spec)) {
586 // Merge template argument/parameter information for member
587 // class template specializations.
588 LV.merge(getLVForTemplateArgumentList(spec->getTemplateArgs(), F));
John McCall1a0918a2011-03-04 10:39:25 +0000589 if (F.ConsiderTemplateParameterTypes)
590 LV.merge(getLVForTemplateParameterList(
John McCall6ce51ee2011-06-27 23:06:04 +0000591 spec->getSpecializedTemplate()->getTemplateParameters()));
592 }
John McCall110e8e52010-10-29 22:22:43 +0000593 }
594
John McCall110e8e52010-10-29 22:22:43 +0000595 // Static data members.
596 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
John McCallee301022010-10-30 09:18:49 +0000597 // Modify the variable's linkage by its type, but ignore the
598 // type's visibility unless it's a definition.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000599 LinkageInfo TypeLV = getLVForType(VD->getType());
600 if (TypeLV.linkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000601 LV.mergeLinkage(UniqueExternalLinkage);
602 if (!LV.visibilityExplicit())
Rafael Espindola093ecc92012-01-14 00:30:36 +0000603 LV.mergeVisibility(TypeLV.visibility(), TypeLV.visibilityExplicit());
John McCall110e8e52010-10-29 22:22:43 +0000604 }
605
John McCall36987482010-11-02 01:45:15 +0000606 F.ConsiderGlobalVisibility &= !LV.visibilityExplicit();
John McCall110e8e52010-10-29 22:22:43 +0000607
608 // Apply -fvisibility if desired.
John McCall36987482010-11-02 01:45:15 +0000609 if (F.ConsiderGlobalVisibility && LV.visibility() != HiddenVisibility) {
John McCallaf146032010-10-30 11:50:40 +0000610 LV.mergeVisibility(D->getASTContext().getLangOptions().getVisibilityMode());
John McCall3cdfc4d2010-08-13 08:35:10 +0000611 }
612
John McCall1fb0caa2010-10-22 21:05:15 +0000613 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000614}
615
John McCallf76b0922011-02-08 19:01:05 +0000616static void clearLinkageForClass(const CXXRecordDecl *record) {
617 for (CXXRecordDecl::decl_iterator
618 i = record->decls_begin(), e = record->decls_end(); i != e; ++i) {
619 Decl *child = *i;
620 if (isa<NamedDecl>(child))
621 cast<NamedDecl>(child)->ClearLinkageCache();
622 }
623}
624
David Blaikie99ba9e32011-12-20 02:48:34 +0000625void NamedDecl::anchor() { }
626
John McCallf76b0922011-02-08 19:01:05 +0000627void NamedDecl::ClearLinkageCache() {
628 // Note that we can't skip clearing the linkage of children just
629 // because the parent doesn't have cached linkage: we don't cache
630 // when computing linkage for parent contexts.
631
632 HasCachedLinkage = 0;
633
634 // If we're changing the linkage of a class, we need to reset the
635 // linkage of child declarations, too.
636 if (const CXXRecordDecl *record = dyn_cast<CXXRecordDecl>(this))
637 clearLinkageForClass(record);
638
John McCall15e310a2011-02-19 02:53:41 +0000639 if (ClassTemplateDecl *temp =
640 dyn_cast<ClassTemplateDecl>(const_cast<NamedDecl*>(this))) {
John McCallf76b0922011-02-08 19:01:05 +0000641 // Clear linkage for the template pattern.
642 CXXRecordDecl *record = temp->getTemplatedDecl();
643 record->HasCachedLinkage = 0;
644 clearLinkageForClass(record);
645
John McCall15e310a2011-02-19 02:53:41 +0000646 // We need to clear linkage for specializations, too.
647 for (ClassTemplateDecl::spec_iterator
648 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
649 i->ClearLinkageCache();
John McCallf76b0922011-02-08 19:01:05 +0000650 }
John McCall15e310a2011-02-19 02:53:41 +0000651
652 // Clear cached linkage for function template decls, too.
653 if (FunctionTemplateDecl *temp =
John McCall78951942011-03-22 06:58:49 +0000654 dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this))) {
655 temp->getTemplatedDecl()->ClearLinkageCache();
John McCall15e310a2011-02-19 02:53:41 +0000656 for (FunctionTemplateDecl::spec_iterator
657 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
658 i->ClearLinkageCache();
John McCall78951942011-03-22 06:58:49 +0000659 }
John McCall15e310a2011-02-19 02:53:41 +0000660
John McCallf76b0922011-02-08 19:01:05 +0000661}
662
Douglas Gregor381d34e2010-12-06 18:36:25 +0000663Linkage NamedDecl::getLinkage() const {
664 if (HasCachedLinkage) {
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000665 assert(Linkage(CachedLinkage) ==
666 getLVForDecl(this, LVFlags::CreateOnlyDeclLinkage()).linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000667 return Linkage(CachedLinkage);
668 }
669
670 CachedLinkage = getLVForDecl(this,
671 LVFlags::CreateOnlyDeclLinkage()).linkage();
672 HasCachedLinkage = 1;
673 return Linkage(CachedLinkage);
674}
675
John McCallaf146032010-10-30 11:50:40 +0000676LinkageInfo NamedDecl::getLinkageAndVisibility() const {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000677 LinkageInfo LI = getLVForDecl(this, LVFlags());
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000678 assert(!HasCachedLinkage || Linkage(CachedLinkage) == LI.linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000679 HasCachedLinkage = 1;
680 CachedLinkage = LI.linkage();
681 return LI;
John McCall0df95872010-10-29 00:29:13 +0000682}
Ted Kremenekbecc3082010-04-20 23:15:35 +0000683
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000684llvm::Optional<Visibility> NamedDecl::getExplicitVisibility() const {
685 // Use the most recent declaration of a variable.
686 if (const VarDecl *var = dyn_cast<VarDecl>(this))
Douglas Gregoref96ee02012-01-14 16:38:05 +0000687 return getVisibilityOf(var->getMostRecentDecl());
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000688
689 // Use the most recent declaration of a function, and also handle
690 // function template specializations.
691 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) {
692 if (llvm::Optional<Visibility> V
Douglas Gregoref96ee02012-01-14 16:38:05 +0000693 = getVisibilityOf(fn->getMostRecentDecl()))
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000694 return V;
695
696 // If the function is a specialization of a template with an
697 // explicit visibility attribute, use that.
698 if (FunctionTemplateSpecializationInfo *templateInfo
699 = fn->getTemplateSpecializationInfo())
700 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl());
701
702 return llvm::Optional<Visibility>();
703 }
704
705 // Otherwise, just check the declaration itself first.
706 if (llvm::Optional<Visibility> V = getVisibilityOf(this))
707 return V;
708
709 // If there wasn't explicit visibility there, and this is a
710 // specialization of a class template, check for visibility
711 // on the pattern.
712 if (const ClassTemplateSpecializationDecl *spec
713 = dyn_cast<ClassTemplateSpecializationDecl>(this))
714 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl());
715
716 return llvm::Optional<Visibility>();
717}
718
John McCall36987482010-11-02 01:45:15 +0000719static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags Flags) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000720 // Objective-C: treat all Objective-C declarations as having external
721 // linkage.
John McCall0df95872010-10-29 00:29:13 +0000722 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000723 default:
724 break;
Argyrios Kyrtzidisf8d34ed2011-12-01 01:28:21 +0000725 case Decl::ParmVar:
726 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000727 case Decl::TemplateTemplateParm: // count these as external
728 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000729 case Decl::ObjCAtDefsField:
730 case Decl::ObjCCategory:
731 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000732 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000733 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000734 case Decl::ObjCMethod:
735 case Decl::ObjCProperty:
736 case Decl::ObjCPropertyImpl:
737 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +0000738 return LinkageInfo::external();
Ted Kremenekbecc3082010-04-20 23:15:35 +0000739 }
740
Douglas Gregord85b5b92009-11-25 22:24:25 +0000741 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +0000742 if (D->getDeclContext()->getRedeclContext()->isFileContext())
John McCall36987482010-11-02 01:45:15 +0000743 return getLVForNamespaceScopeDecl(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000744
745 // C++ [basic.link]p5:
746 // In addition, a member function, static data member, a named
747 // class or enumeration of class scope, or an unnamed class or
748 // enumeration defined in a class-scope typedef declaration such
749 // that the class or enumeration has the typedef name for linkage
750 // purposes (7.1.3), has external linkage if the name of the class
751 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +0000752 if (D->getDeclContext()->isRecord())
John McCall36987482010-11-02 01:45:15 +0000753 return getLVForClassMember(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000754
755 // C++ [basic.link]p6:
756 // The name of a function declared in block scope and the name of
757 // an object declared by a block scope extern declaration have
758 // linkage. If there is a visible declaration of an entity with
759 // linkage having the same name and type, ignoring entities
760 // declared outside the innermost enclosing namespace scope, the
761 // block scope declaration declares that same entity and receives
762 // the linkage of the previous declaration. If there is more than
763 // one such matching entity, the program is ill-formed. Otherwise,
764 // if no matching entity is found, the block scope entity receives
765 // external linkage.
John McCall0df95872010-10-29 00:29:13 +0000766 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
767 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Eli Friedman750dc2b2012-01-15 01:23:58 +0000768 if (Function->isInAnonymousNamespace() &&
769 !Function->getDeclContext()->isExternCContext())
John McCallaf146032010-10-30 11:50:40 +0000770 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000771
John McCallaf146032010-10-30 11:50:40 +0000772 LinkageInfo LV;
Douglas Gregor381d34e2010-12-06 18:36:25 +0000773 if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000774 if (llvm::Optional<Visibility> Vis = Function->getExplicitVisibility())
775 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000776 }
777
Douglas Gregoref96ee02012-01-14 16:38:05 +0000778 if (const FunctionDecl *Prev = Function->getPreviousDecl()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000779 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000780 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
781 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000782 }
783
784 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000785 }
786
John McCall0df95872010-10-29 00:29:13 +0000787 if (const VarDecl *Var = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000788 if (Var->getStorageClass() == SC_Extern ||
789 Var->getStorageClass() == SC_PrivateExtern) {
Eli Friedman750dc2b2012-01-15 01:23:58 +0000790 if (Var->isInAnonymousNamespace() &&
791 !Var->getDeclContext()->isExternCContext())
John McCallaf146032010-10-30 11:50:40 +0000792 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000793
John McCallaf146032010-10-30 11:50:40 +0000794 LinkageInfo LV;
John McCall1fb0caa2010-10-22 21:05:15 +0000795 if (Var->getStorageClass() == SC_PrivateExtern)
John McCallaf146032010-10-30 11:50:40 +0000796 LV.setVisibility(HiddenVisibility);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000797 else if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000798 if (llvm::Optional<Visibility> Vis = Var->getExplicitVisibility())
799 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000800 }
801
Douglas Gregoref96ee02012-01-14 16:38:05 +0000802 if (const VarDecl *Prev = Var->getPreviousDecl()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000803 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000804 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
805 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000806 }
807
808 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000809 }
810 }
811
812 // C++ [basic.link]p6:
813 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +0000814 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000815}
Douglas Gregord85b5b92009-11-25 22:24:25 +0000816
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000817std::string NamedDecl::getQualifiedNameAsString() const {
Anders Carlsson3a082d82009-09-08 18:24:21 +0000818 return getQualifiedNameAsString(getASTContext().getLangOptions());
819}
820
821std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000822 const DeclContext *Ctx = getDeclContext();
823
824 if (Ctx->isFunctionOrMethod())
825 return getNameAsString();
826
Chris Lattner5f9e2722011-07-23 10:55:15 +0000827 typedef SmallVector<const DeclContext *, 8> ContextsTy;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000828 ContextsTy Contexts;
829
830 // Collect contexts.
831 while (Ctx && isa<NamedDecl>(Ctx)) {
832 Contexts.push_back(Ctx);
833 Ctx = Ctx->getParent();
834 };
835
836 std::string QualName;
837 llvm::raw_string_ostream OS(QualName);
838
839 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
840 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +0000841 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000842 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000843 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
844 std::string TemplateArgsStr
845 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +0000846 TemplateArgs.data(),
847 TemplateArgs.size(),
Anders Carlsson3a082d82009-09-08 18:24:21 +0000848 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000849 OS << Spec->getName() << TemplateArgsStr;
850 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Sam Weinig6be11202009-12-24 23:15:03 +0000851 if (ND->isAnonymousNamespace())
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000852 OS << "<anonymous namespace>";
Sam Weinig6be11202009-12-24 23:15:03 +0000853 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000854 OS << *ND;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000855 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
856 if (!RD->getIdentifier())
857 OS << "<anonymous " << RD->getKindName() << '>';
858 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000859 OS << *RD;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000860 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Sam Weinig3521d012009-12-28 03:19:38 +0000861 const FunctionProtoType *FT = 0;
862 if (FD->hasWrittenPrototype())
863 FT = dyn_cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>());
864
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000865 OS << *FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +0000866 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +0000867 unsigned NumParams = FD->getNumParams();
868 for (unsigned i = 0; i < NumParams; ++i) {
869 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000870 OS << ", ";
Sam Weinig3521d012009-12-28 03:19:38 +0000871 std::string Param;
872 FD->getParamDecl(i)->getType().getAsStringInternal(Param, P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000873 OS << Param;
Sam Weinig3521d012009-12-28 03:19:38 +0000874 }
875
876 if (FT->isVariadic()) {
877 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000878 OS << ", ";
879 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +0000880 }
881 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000882 OS << ')';
883 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000884 OS << *cast<NamedDecl>(*I);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000885 }
886 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000887 }
888
John McCall8472af42010-03-16 21:48:18 +0000889 if (getDeclName())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000890 OS << *this;
John McCall8472af42010-03-16 21:48:18 +0000891 else
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000892 OS << "<anonymous>";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000893
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000894 return OS.str();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000895}
896
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000897bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000898 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
899
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000900 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
901 // We want to keep it, unless it nominates same namespace.
902 if (getKind() == Decl::UsingDirective) {
Douglas Gregordb992412011-02-25 16:33:46 +0000903 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
904 ->getOriginalNamespace() ==
905 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
906 ->getOriginalNamespace();
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000907 }
Mike Stump1eb44332009-09-09 15:08:12 +0000908
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000909 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
910 // For function declarations, we keep track of redeclarations.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000911 return FD->getPreviousDecl() == OldD;
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000912
Douglas Gregore53060f2009-06-25 22:08:12 +0000913 // For function templates, the underlying function declarations are linked.
914 if (const FunctionTemplateDecl *FunctionTemplate
915 = dyn_cast<FunctionTemplateDecl>(this))
916 if (const FunctionTemplateDecl *OldFunctionTemplate
917 = dyn_cast<FunctionTemplateDecl>(OldD))
918 return FunctionTemplate->getTemplatedDecl()
919 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000920
Steve Naroff0de21fd2009-02-22 19:35:57 +0000921 // For method declarations, we keep track of redeclarations.
922 if (isa<ObjCMethodDecl>(this))
923 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000924
John McCallf36e02d2009-10-09 21:13:30 +0000925 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
926 return true;
927
John McCall9488ea12009-11-17 05:59:44 +0000928 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
929 return cast<UsingShadowDecl>(this)->getTargetDecl() ==
930 cast<UsingShadowDecl>(OldD)->getTargetDecl();
931
Douglas Gregordc355712011-02-25 00:36:19 +0000932 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
933 ASTContext &Context = getASTContext();
934 return Context.getCanonicalNestedNameSpecifier(
935 cast<UsingDecl>(this)->getQualifier()) ==
936 Context.getCanonicalNestedNameSpecifier(
937 cast<UsingDecl>(OldD)->getQualifier());
938 }
Argyrios Kyrtzidisc80117e2010-11-04 08:48:52 +0000939
Douglas Gregor7a537402012-01-03 23:26:26 +0000940 // A typedef of an Objective-C class type can replace an Objective-C class
941 // declaration or definition, and vice versa.
942 if ((isa<TypedefNameDecl>(this) && isa<ObjCInterfaceDecl>(OldD)) ||
943 (isa<ObjCInterfaceDecl>(this) && isa<TypedefNameDecl>(OldD)))
944 return true;
945
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000946 // For non-function declarations, if the declarations are of the
947 // same kind then this must be a redeclaration, or semantic analysis
948 // would not have given us the new declaration.
949 return this->getKind() == OldD->getKind();
950}
951
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000952bool NamedDecl::hasLinkage() const {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000953 return getLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000954}
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000955
Anders Carlssone136e0e2009-06-26 06:29:23 +0000956NamedDecl *NamedDecl::getUnderlyingDecl() {
957 NamedDecl *ND = this;
958 while (true) {
John McCall9488ea12009-11-17 05:59:44 +0000959 if (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
Anders Carlssone136e0e2009-06-26 06:29:23 +0000960 ND = UD->getTargetDecl();
961 else if (ObjCCompatibleAliasDecl *AD
962 = dyn_cast<ObjCCompatibleAliasDecl>(ND))
963 return AD->getClassInterface();
964 else
965 return ND;
966 }
967}
968
John McCall161755a2010-04-06 21:38:20 +0000969bool NamedDecl::isCXXInstanceMember() const {
970 assert(isCXXClassMember() &&
971 "checking whether non-member is instance member");
972
973 const NamedDecl *D = this;
974 if (isa<UsingShadowDecl>(D))
975 D = cast<UsingShadowDecl>(D)->getTargetDecl();
976
Francois Pichet87c2e122010-11-21 06:08:52 +0000977 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D))
John McCall161755a2010-04-06 21:38:20 +0000978 return true;
979 if (isa<CXXMethodDecl>(D))
980 return cast<CXXMethodDecl>(D)->isInstance();
981 if (isa<FunctionTemplateDecl>(D))
982 return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D)
983 ->getTemplatedDecl())->isInstance();
984 return false;
985}
986
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000987//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000988// DeclaratorDecl Implementation
989//===----------------------------------------------------------------------===//
990
Douglas Gregor1693e152010-07-06 18:42:40 +0000991template <typename DeclT>
992static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
993 if (decl->getNumTemplateParameterLists() > 0)
994 return decl->getTemplateParameterList(0)->getTemplateLoc();
995 else
996 return decl->getInnerLocStart();
997}
998
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000999SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +00001000 TypeSourceInfo *TSI = getTypeSourceInfo();
1001 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001002 return SourceLocation();
1003}
1004
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001005void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1006 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00001007 // Make sure the extended decl info is allocated.
1008 if (!hasExtInfo()) {
1009 // Save (non-extended) type source info pointer.
1010 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1011 // Allocate external info struct.
1012 DeclInfo = new (getASTContext()) ExtInfo;
1013 // Restore savedTInfo into (extended) decl info.
1014 getExtInfo()->TInfo = savedTInfo;
1015 }
1016 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001017 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00001018 } else {
John McCallb6217662010-03-15 10:12:16 +00001019 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00001020 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001021 if (getExtInfo()->NumTemplParamLists == 0) {
1022 // Save type source info pointer.
1023 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1024 // Deallocate the extended decl info.
1025 getASTContext().Deallocate(getExtInfo());
1026 // Restore savedTInfo into (non-extended) decl info.
1027 DeclInfo = savedTInfo;
1028 }
1029 else
1030 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001031 }
1032 }
1033}
1034
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001035void
1036DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1037 unsigned NumTPLists,
1038 TemplateParameterList **TPLists) {
1039 assert(NumTPLists > 0);
1040 // Make sure the extended decl info is allocated.
1041 if (!hasExtInfo()) {
1042 // Save (non-extended) type source info pointer.
1043 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1044 // Allocate external info struct.
1045 DeclInfo = new (getASTContext()) ExtInfo;
1046 // Restore savedTInfo into (extended) decl info.
1047 getExtInfo()->TInfo = savedTInfo;
1048 }
1049 // Set the template parameter lists info.
1050 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1051}
1052
Douglas Gregor1693e152010-07-06 18:42:40 +00001053SourceLocation DeclaratorDecl::getOuterLocStart() const {
1054 return getTemplateOrInnerLocStart(this);
1055}
1056
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001057namespace {
1058
1059// Helper function: returns true if QT is or contains a type
1060// having a postfix component.
1061bool typeIsPostfix(clang::QualType QT) {
1062 while (true) {
1063 const Type* T = QT.getTypePtr();
1064 switch (T->getTypeClass()) {
1065 default:
1066 return false;
1067 case Type::Pointer:
1068 QT = cast<PointerType>(T)->getPointeeType();
1069 break;
1070 case Type::BlockPointer:
1071 QT = cast<BlockPointerType>(T)->getPointeeType();
1072 break;
1073 case Type::MemberPointer:
1074 QT = cast<MemberPointerType>(T)->getPointeeType();
1075 break;
1076 case Type::LValueReference:
1077 case Type::RValueReference:
1078 QT = cast<ReferenceType>(T)->getPointeeType();
1079 break;
1080 case Type::PackExpansion:
1081 QT = cast<PackExpansionType>(T)->getPattern();
1082 break;
1083 case Type::Paren:
1084 case Type::ConstantArray:
1085 case Type::DependentSizedArray:
1086 case Type::IncompleteArray:
1087 case Type::VariableArray:
1088 case Type::FunctionProto:
1089 case Type::FunctionNoProto:
1090 return true;
1091 }
1092 }
1093}
1094
1095} // namespace
1096
1097SourceRange DeclaratorDecl::getSourceRange() const {
1098 SourceLocation RangeEnd = getLocation();
1099 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
1100 if (typeIsPostfix(TInfo->getType()))
1101 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1102 }
1103 return SourceRange(getOuterLocStart(), RangeEnd);
1104}
1105
Abramo Bagnara9b934882010-06-12 08:15:14 +00001106void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001107QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1108 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001109 TemplateParameterList **TPLists) {
1110 assert((NumTPLists == 0 || TPLists != 0) &&
1111 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001112
1113 // Free previous template parameters (if any).
1114 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001115 Context.Deallocate(TemplParamLists);
Abramo Bagnara9b934882010-06-12 08:15:14 +00001116 TemplParamLists = 0;
1117 NumTemplParamLists = 0;
1118 }
1119 // Set info on matched template parameter lists (if any).
1120 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001121 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001122 NumTemplParamLists = NumTPLists;
1123 for (unsigned i = NumTPLists; i-- > 0; )
1124 TemplParamLists[i] = TPLists[i];
1125 }
1126}
1127
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001128//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001129// VarDecl Implementation
1130//===----------------------------------------------------------------------===//
1131
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001132const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1133 switch (SC) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00001134 case SC_None: break;
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001135 case SC_Auto: return "auto";
1136 case SC_Extern: return "extern";
1137 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
1138 case SC_PrivateExtern: return "__private_extern__";
1139 case SC_Register: return "register";
1140 case SC_Static: return "static";
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001141 }
1142
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001143 llvm_unreachable("Invalid storage class");
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001144 return 0;
1145}
1146
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001147VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1148 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001149 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001150 StorageClass S, StorageClass SCAsWritten) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001151 return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S, SCAsWritten);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001152}
1153
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001154VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1155 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(VarDecl));
1156 return new (Mem) VarDecl(Var, 0, SourceLocation(), SourceLocation(), 0,
1157 QualType(), 0, SC_None, SC_None);
1158}
1159
Douglas Gregor381d34e2010-12-06 18:36:25 +00001160void VarDecl::setStorageClass(StorageClass SC) {
1161 assert(isLegalForVariable(SC));
1162 if (getStorageClass() != SC)
1163 ClearLinkageCache();
1164
John McCallf1e4fbf2011-05-01 02:13:58 +00001165 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001166}
1167
Douglas Gregor1693e152010-07-06 18:42:40 +00001168SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001169 if (getInit())
Douglas Gregor1693e152010-07-06 18:42:40 +00001170 return SourceRange(getOuterLocStart(), getInit()->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001171 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001172}
1173
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001174bool VarDecl::isExternC() const {
Eli Friedman750dc2b2012-01-15 01:23:58 +00001175 if (getLinkage() != ExternalLinkage)
Chandler Carruth10aad442011-02-25 00:05:02 +00001176 return false;
1177
Eli Friedman750dc2b2012-01-15 01:23:58 +00001178 const DeclContext *DC = getDeclContext();
1179 if (DC->isRecord())
1180 return false;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001181
Eli Friedman750dc2b2012-01-15 01:23:58 +00001182 ASTContext &Context = getASTContext();
1183 if (!Context.getLangOptions().CPlusPlus)
1184 return true;
1185 return DC->isExternCContext();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001186}
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) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00001223 for (const VarDecl *PrevVar = getPreviousDecl();
1224 PrevVar; PrevVar = PrevVar->getPreviousDecl()) {
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001225 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
Richard Smith2d6a5672012-01-14 04:30:29 +00001377APValue *VarDecl::evaluateValue() const {
1378 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
1379 return evaluateValue(Notes);
1380}
1381
1382APValue *VarDecl::evaluateValue(
1383 llvm::SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smith099e7f62011-12-19 06:19:21 +00001384 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1385
1386 // We only produce notes indicating why an initializer is non-constant the
1387 // first time it is evaluated. FIXME: The notes won't always be emitted the
1388 // first time we try evaluation, so might not be produced at all.
1389 if (Eval->WasEvaluated)
Richard Smith2d6a5672012-01-14 04:30:29 +00001390 return Eval->Evaluated.isUninit() ? 0 : &Eval->Evaluated;
Richard Smith099e7f62011-12-19 06:19:21 +00001391
1392 const Expr *Init = cast<Expr>(Eval->Value);
1393 assert(!Init->isValueDependent());
1394
1395 if (Eval->IsEvaluating) {
1396 // FIXME: Produce a diagnostic for self-initialization.
1397 Eval->CheckedICE = true;
1398 Eval->IsICE = false;
Richard Smith2d6a5672012-01-14 04:30:29 +00001399 return 0;
Richard Smith099e7f62011-12-19 06:19:21 +00001400 }
1401
1402 Eval->IsEvaluating = true;
1403
1404 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
1405 this, Notes);
1406
1407 // Ensure the result is an uninitialized APValue if evaluation fails.
1408 if (!Result)
1409 Eval->Evaluated = APValue();
1410
1411 Eval->IsEvaluating = false;
1412 Eval->WasEvaluated = true;
1413
1414 // In C++11, we have determined whether the initializer was a constant
1415 // expression as a side-effect.
1416 if (getASTContext().getLangOptions().CPlusPlus0x && !Eval->CheckedICE) {
1417 Eval->CheckedICE = true;
1418 Eval->IsICE = Notes.empty();
1419 }
1420
Richard Smith2d6a5672012-01-14 04:30:29 +00001421 return Result ? &Eval->Evaluated : 0;
Richard Smith099e7f62011-12-19 06:19:21 +00001422}
1423
1424bool VarDecl::checkInitIsICE() const {
John McCall73076432012-01-05 00:13:19 +00001425 // Initializers of weak variables are never ICEs.
1426 if (isWeak())
1427 return false;
1428
Richard Smith099e7f62011-12-19 06:19:21 +00001429 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1430 if (Eval->CheckedICE)
1431 // We have already checked whether this subexpression is an
1432 // integral constant expression.
1433 return Eval->IsICE;
1434
1435 const Expr *Init = cast<Expr>(Eval->Value);
1436 assert(!Init->isValueDependent());
1437
1438 // In C++11, evaluate the initializer to check whether it's a constant
1439 // expression.
1440 if (getASTContext().getLangOptions().CPlusPlus0x) {
1441 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
1442 evaluateValue(Notes);
1443 return Eval->IsICE;
1444 }
1445
1446 // It's an ICE whether or not the definition we found is
1447 // out-of-line. See DR 721 and the discussion in Clang PR
1448 // 6206 for details.
1449
1450 if (Eval->CheckingICE)
1451 return false;
1452 Eval->CheckingICE = true;
1453
1454 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
1455 Eval->CheckingICE = false;
1456 Eval->CheckedICE = true;
1457 return Eval->IsICE;
1458}
1459
Douglas Gregor03e80032011-06-21 17:03:29 +00001460bool VarDecl::extendsLifetimeOfTemporary() const {
Douglas Gregor0b581082011-06-21 18:20:46 +00001461 assert(getType()->isReferenceType() &&"Non-references never extend lifetime");
Douglas Gregor03e80032011-06-21 17:03:29 +00001462
1463 const Expr *E = getInit();
1464 if (!E)
1465 return false;
1466
1467 if (const ExprWithCleanups *Cleanups = dyn_cast<ExprWithCleanups>(E))
1468 E = Cleanups->getSubExpr();
1469
1470 return isa<MaterializeTemporaryExpr>(E);
1471}
1472
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001473VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001474 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001475 return cast<VarDecl>(MSI->getInstantiatedFrom());
1476
1477 return 0;
1478}
1479
Douglas Gregor663b5a02009-10-14 20:14:33 +00001480TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Sebastian Redle9d12b62010-01-31 22:27:38 +00001481 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001482 return MSI->getTemplateSpecializationKind();
1483
1484 return TSK_Undeclared;
1485}
1486
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001487MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001488 return getASTContext().getInstantiatedFromStaticDataMember(this);
1489}
1490
Douglas Gregor0a897e32009-10-15 17:21:20 +00001491void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
1492 SourceLocation PointOfInstantiation) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001493 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001494 assert(MSI && "Not an instantiated static data member?");
1495 MSI->setTemplateSpecializationKind(TSK);
Douglas Gregor0a897e32009-10-15 17:21:20 +00001496 if (TSK != TSK_ExplicitSpecialization &&
1497 PointOfInstantiation.isValid() &&
1498 MSI->getPointOfInstantiation().isInvalid())
1499 MSI->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001500}
1501
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001502//===----------------------------------------------------------------------===//
1503// ParmVarDecl Implementation
1504//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00001505
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001506ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001507 SourceLocation StartLoc,
1508 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001509 QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001510 StorageClass S, StorageClass SCAsWritten,
1511 Expr *DefArg) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001512 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001513 S, SCAsWritten, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00001514}
1515
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001516ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1517 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ParmVarDecl));
1518 return new (Mem) ParmVarDecl(ParmVar, 0, SourceLocation(), SourceLocation(),
1519 0, QualType(), 0, SC_None, SC_None, 0);
1520}
1521
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00001522SourceRange ParmVarDecl::getSourceRange() const {
1523 if (!hasInheritedDefaultArg()) {
1524 SourceRange ArgRange = getDefaultArgRange();
1525 if (ArgRange.isValid())
1526 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
1527 }
1528
1529 return DeclaratorDecl::getSourceRange();
1530}
1531
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001532Expr *ParmVarDecl::getDefaultArg() {
1533 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
1534 assert(!hasUninstantiatedDefaultArg() &&
1535 "Default argument is not yet instantiated!");
1536
1537 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00001538 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001539 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00001540
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001541 return Arg;
1542}
1543
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001544SourceRange ParmVarDecl::getDefaultArgRange() const {
1545 if (const Expr *E = getInit())
1546 return E->getSourceRange();
1547
1548 if (hasUninstantiatedDefaultArg())
1549 return getUninstantiatedDefaultArg()->getSourceRange();
1550
1551 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00001552}
1553
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00001554bool ParmVarDecl::isParameterPack() const {
1555 return isa<PackExpansionType>(getType());
1556}
1557
Ted Kremenekd211cb72011-10-06 05:00:56 +00001558void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
1559 getASTContext().setParameterIndex(this, parameterIndex);
1560 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
1561}
1562
1563unsigned ParmVarDecl::getParameterIndexLarge() const {
1564 return getASTContext().getParameterIndex(this);
1565}
1566
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001567//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00001568// FunctionDecl Implementation
1569//===----------------------------------------------------------------------===//
1570
Douglas Gregorda2142f2011-02-19 18:51:44 +00001571void FunctionDecl::getNameForDiagnostic(std::string &S,
1572 const PrintingPolicy &Policy,
1573 bool Qualified) const {
1574 NamedDecl::getNameForDiagnostic(S, Policy, Qualified);
1575 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
1576 if (TemplateArgs)
1577 S += TemplateSpecializationType::PrintTemplateArgumentList(
1578 TemplateArgs->data(),
1579 TemplateArgs->size(),
1580 Policy);
1581
1582}
1583
Ted Kremenek9498d382010-04-29 16:49:01 +00001584bool FunctionDecl::isVariadic() const {
1585 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
1586 return FT->isVariadic();
1587 return false;
1588}
1589
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001590bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
1591 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00001592 if (I->Body || I->IsLateTemplateParsed) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001593 Definition = *I;
1594 return true;
1595 }
1596 }
1597
1598 return false;
1599}
1600
Anders Carlssonffb945f2011-05-14 23:26:09 +00001601bool FunctionDecl::hasTrivialBody() const
1602{
1603 Stmt *S = getBody();
1604 if (!S) {
1605 // Since we don't have a body for this function, we don't know if it's
1606 // trivial or not.
1607 return false;
1608 }
1609
1610 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
1611 return true;
1612 return false;
1613}
1614
Sean Hunt10620eb2011-05-06 20:44:56 +00001615bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
1616 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Sean Huntcd10dec2011-05-23 23:14:04 +00001617 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) {
Sean Hunt10620eb2011-05-06 20:44:56 +00001618 Definition = I->IsDeleted ? I->getCanonicalDecl() : *I;
1619 return true;
1620 }
1621 }
1622
1623 return false;
1624}
1625
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001626Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Argyrios Kyrtzidisc37929c2009-07-14 03:20:21 +00001627 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1628 if (I->Body) {
1629 Definition = *I;
1630 return I->Body.get(getASTContext().getExternalSource());
Francois Pichet8387e2a2011-04-22 22:18:13 +00001631 } else if (I->IsLateTemplateParsed) {
1632 Definition = *I;
1633 return 0;
Douglas Gregorf0097952008-04-21 02:02:58 +00001634 }
1635 }
1636
1637 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001638}
1639
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001640void FunctionDecl::setBody(Stmt *B) {
1641 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00001642 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001643 EndRangeLoc = B->getLocEnd();
1644}
1645
Douglas Gregor21386642010-09-28 21:55:22 +00001646void FunctionDecl::setPure(bool P) {
1647 IsPure = P;
1648 if (P)
1649 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
1650 Parent->markedVirtualFunctionPure();
1651}
1652
Douglas Gregor48a83b52009-09-12 00:17:51 +00001653bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00001654 const TranslationUnitDecl *tunit =
1655 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
1656 return tunit &&
Sean Hunt55878032011-05-15 20:59:31 +00001657 !tunit->getASTContext().getLangOptions().Freestanding &&
John McCall23c608d2011-05-15 17:49:20 +00001658 getIdentifier() &&
1659 getIdentifier()->isStr("main");
1660}
1661
1662bool FunctionDecl::isReservedGlobalPlacementOperator() const {
1663 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
1664 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
1665 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
1666 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
1667 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
1668
1669 if (isa<CXXRecordDecl>(getDeclContext())) return false;
1670 assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
1671
1672 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
1673 if (proto->getNumArgs() != 2 || proto->isVariadic()) return false;
1674
1675 ASTContext &Context =
1676 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
1677 ->getASTContext();
1678
1679 // The result type and first argument type are constant across all
1680 // these operators. The second argument must be exactly void*.
1681 return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00001682}
1683
Douglas Gregor48a83b52009-09-12 00:17:51 +00001684bool FunctionDecl::isExternC() const {
Eli Friedman750dc2b2012-01-15 01:23:58 +00001685 if (getLinkage() != ExternalLinkage)
1686 return false;
1687
1688 if (getAttr<OverloadableAttr>())
1689 return false;
Douglas Gregor63935192009-03-02 00:19:53 +00001690
Chandler Carruth10aad442011-02-25 00:05:02 +00001691 const DeclContext *DC = getDeclContext();
1692 if (DC->isRecord())
1693 return false;
1694
Eli Friedman750dc2b2012-01-15 01:23:58 +00001695 ASTContext &Context = getASTContext();
1696 if (!Context.getLangOptions().CPlusPlus)
1697 return true;
Douglas Gregor63935192009-03-02 00:19:53 +00001698
Eli Friedman750dc2b2012-01-15 01:23:58 +00001699 return isMain() || DC->isExternCContext();
Douglas Gregor63935192009-03-02 00:19:53 +00001700}
1701
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001702bool FunctionDecl::isGlobal() const {
1703 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
1704 return Method->isStatic();
1705
John McCalld931b082010-08-26 03:08:43 +00001706 if (getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001707 return false;
1708
Mike Stump1eb44332009-09-09 15:08:12 +00001709 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001710 DC->isNamespace();
1711 DC = DC->getParent()) {
1712 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
1713 if (!Namespace->getDeclName())
1714 return false;
1715 break;
1716 }
1717 }
1718
1719 return true;
1720}
1721
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001722void
1723FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
1724 redeclarable_base::setPreviousDeclaration(PrevDecl);
1725
1726 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
1727 FunctionTemplateDecl *PrevFunTmpl
1728 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0;
1729 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
1730 FunTmpl->setPreviousDeclaration(PrevFunTmpl);
1731 }
Douglas Gregor8f150942010-12-09 16:59:22 +00001732
Axel Naumannd9d137e2011-11-08 18:21:06 +00001733 if (PrevDecl && PrevDecl->IsInline)
Douglas Gregor8f150942010-12-09 16:59:22 +00001734 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001735}
1736
1737const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
1738 return getFirstDeclaration();
1739}
1740
1741FunctionDecl *FunctionDecl::getCanonicalDecl() {
1742 return getFirstDeclaration();
1743}
1744
Douglas Gregor381d34e2010-12-06 18:36:25 +00001745void FunctionDecl::setStorageClass(StorageClass SC) {
1746 assert(isLegalForFunction(SC));
1747 if (getStorageClass() != SC)
1748 ClearLinkageCache();
1749
1750 SClass = SC;
1751}
1752
Douglas Gregor3e41d602009-02-13 23:20:09 +00001753/// \brief Returns a value indicating whether this function
1754/// corresponds to a builtin function.
1755///
1756/// The function corresponds to a built-in function if it is
1757/// declared at translation scope or within an extern "C" block and
1758/// its name matches with the name of a builtin. The returned value
1759/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00001760/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00001761/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001762unsigned FunctionDecl::getBuiltinID() const {
1763 ASTContext &Context = getASTContext();
Douglas Gregor3c385e52009-02-14 18:57:46 +00001764 if (!getIdentifier() || !getIdentifier()->getBuiltinID())
1765 return 0;
1766
1767 unsigned BuiltinID = getIdentifier()->getBuiltinID();
1768 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
1769 return BuiltinID;
1770
1771 // This function has the name of a known C library
1772 // function. Determine whether it actually refers to the C library
1773 // function or whether it just has the same name.
1774
Douglas Gregor9add3172009-02-17 03:23:10 +00001775 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00001776 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00001777 return 0;
1778
Douglas Gregor3c385e52009-02-14 18:57:46 +00001779 // If this function is at translation-unit scope and we're not in
1780 // C++, it refers to the C library function.
1781 if (!Context.getLangOptions().CPlusPlus &&
1782 getDeclContext()->isTranslationUnit())
1783 return BuiltinID;
1784
1785 // If the function is in an extern "C" linkage specification and is
1786 // not marked "overloadable", it's the real function.
1787 if (isa<LinkageSpecDecl>(getDeclContext()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001788 cast<LinkageSpecDecl>(getDeclContext())->getLanguage()
Douglas Gregor3c385e52009-02-14 18:57:46 +00001789 == LinkageSpecDecl::lang_c &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001790 !getAttr<OverloadableAttr>())
Douglas Gregor3c385e52009-02-14 18:57:46 +00001791 return BuiltinID;
1792
1793 // Not a builtin
Douglas Gregor3e41d602009-02-13 23:20:09 +00001794 return 0;
1795}
1796
1797
Chris Lattner1ad9b282009-04-25 06:03:53 +00001798/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00001799/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00001800/// after it has been created.
1801unsigned FunctionDecl::getNumParams() const {
John McCall183700f2009-09-21 23:43:11 +00001802 const FunctionType *FT = getType()->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001803 if (isa<FunctionNoProtoType>(FT))
Chris Lattnerd3b90652008-03-15 05:43:15 +00001804 return 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001805 return cast<FunctionProtoType>(FT)->getNumArgs();
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Reid Spencer5f016e22007-07-11 17:01:13 +00001807}
1808
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001809void FunctionDecl::setParams(ASTContext &C,
David Blaikie4278c652011-09-21 18:16:56 +00001810 llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001811 assert(ParamInfo == 0 && "Already has param info!");
David Blaikie4278c652011-09-21 18:16:56 +00001812 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00001813
Reid Spencer5f016e22007-07-11 17:01:13 +00001814 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00001815 if (!NewParamInfo.empty()) {
1816 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
1817 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001818 }
1819}
1820
Chris Lattner8123a952008-04-10 02:22:51 +00001821/// getMinRequiredArguments - Returns the minimum number of arguments
1822/// needed to call this function. This may be fewer than the number of
1823/// function parameters, if some of the parameters have default
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001824/// arguments (in C++) or the last parameter is a parameter pack.
Chris Lattner8123a952008-04-10 02:22:51 +00001825unsigned FunctionDecl::getMinRequiredArguments() const {
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001826 if (!getASTContext().getLangOptions().CPlusPlus)
1827 return getNumParams();
1828
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001829 unsigned NumRequiredArgs = getNumParams();
1830
1831 // If the last parameter is a parameter pack, we don't need an argument for
1832 // it.
1833 if (NumRequiredArgs > 0 &&
1834 getParamDecl(NumRequiredArgs - 1)->isParameterPack())
1835 --NumRequiredArgs;
1836
1837 // If this parameter has a default argument, we don't need an argument for
1838 // it.
1839 while (NumRequiredArgs > 0 &&
1840 getParamDecl(NumRequiredArgs-1)->hasDefaultArg())
Chris Lattner8123a952008-04-10 02:22:51 +00001841 --NumRequiredArgs;
1842
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001843 // We might have parameter packs before the end. These can't be deduced,
1844 // but they can still handle multiple arguments.
1845 unsigned ArgIdx = NumRequiredArgs;
1846 while (ArgIdx > 0) {
1847 if (getParamDecl(ArgIdx - 1)->isParameterPack())
1848 NumRequiredArgs = ArgIdx;
1849
1850 --ArgIdx;
1851 }
1852
Chris Lattner8123a952008-04-10 02:22:51 +00001853 return NumRequiredArgs;
1854}
1855
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001856bool FunctionDecl::isInlined() const {
Douglas Gregor8f150942010-12-09 16:59:22 +00001857 if (IsInline)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001858 return true;
Anders Carlsson48eda2c2009-12-04 22:35:50 +00001859
1860 if (isa<CXXMethodDecl>(this)) {
1861 if (!isOutOfLine() || getCanonicalDecl()->isInlineSpecified())
1862 return true;
1863 }
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001864
1865 switch (getTemplateSpecializationKind()) {
1866 case TSK_Undeclared:
1867 case TSK_ExplicitSpecialization:
1868 return false;
1869
1870 case TSK_ImplicitInstantiation:
1871 case TSK_ExplicitInstantiationDeclaration:
1872 case TSK_ExplicitInstantiationDefinition:
1873 // Handle below.
1874 break;
1875 }
1876
1877 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001878 bool HasPattern = false;
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001879 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001880 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001881
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001882 if (HasPattern && PatternDecl)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001883 return PatternDecl->isInlined();
1884
1885 return false;
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001886}
1887
Nick Lewyckydce67a72011-07-18 05:26:13 +00001888/// \brief For a function declaration in C or C++, determine whether this
1889/// declaration causes the definition to be externally visible.
1890///
1891/// Determines whether this is the first non-inline redeclaration of an inline
1892/// function in a language where "inline" does not normally require an
1893/// externally visible definition.
1894bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
1895 assert(!doesThisDeclarationHaveABody() &&
1896 "Must have a declaration without a body.");
1897
1898 ASTContext &Context = getASTContext();
1899
1900 // In C99 mode, a function may have an inline definition (causing it to
1901 // be deferred) then redeclared later. As a special case, "extern inline"
1902 // is not required to produce an external symbol.
1903 if (Context.getLangOptions().GNUInline || !Context.getLangOptions().C99 ||
1904 Context.getLangOptions().CPlusPlus)
1905 return false;
1906 if (getLinkage() != ExternalLinkage || isInlineSpecified())
1907 return false;
Nick Lewyckyf57ef052011-07-18 07:11:55 +00001908 const FunctionDecl *Definition = 0;
1909 if (hasBody(Definition))
1910 return Definition->isInlined() &&
1911 Definition->isInlineDefinitionExternallyVisible();
Nick Lewyckydce67a72011-07-18 05:26:13 +00001912 return false;
1913}
1914
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001915/// \brief For an inline function definition in C or C++, determine whether the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001916/// definition will be externally visible.
1917///
1918/// Inline function definitions are always available for inlining optimizations.
1919/// However, depending on the language dialect, declaration specifiers, and
1920/// attributes, the definition of an inline function may or may not be
1921/// "externally" visible to other translation units in the program.
1922///
1923/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00001924/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001925/// inline definition becomes externally visible (C99 6.7.4p6).
1926///
1927/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
1928/// definition, we use the GNU semantics for inline, which are nearly the
1929/// opposite of C99 semantics. In particular, "inline" by itself will create
1930/// an externally visible symbol, but "extern inline" will not create an
1931/// externally visible symbol.
1932bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00001933 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001934 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001935 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001936
Rafael Espindolafb3f4aa2011-06-02 16:13:27 +00001937 if (Context.getLangOptions().GNUInline || hasAttr<GNUInlineAttr>()) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001938 // If it's not the case that both 'inline' and 'extern' are
1939 // specified on the definition, then this inline definition is
1940 // externally visible.
1941 if (!(isInlineSpecified() && getStorageClassAsWritten() == SC_Extern))
1942 return true;
1943
1944 // If any declaration is 'inline' but not 'extern', then this definition
1945 // is externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001946 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1947 Redecl != RedeclEnd;
1948 ++Redecl) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001949 if (Redecl->isInlineSpecified() &&
1950 Redecl->getStorageClassAsWritten() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001951 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00001952 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001953
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001954 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001955 }
1956
1957 // C99 6.7.4p6:
1958 // [...] If all of the file scope declarations for a function in a
1959 // translation unit include the inline function specifier without extern,
1960 // then the definition in that translation unit is an inline definition.
1961 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1962 Redecl != RedeclEnd;
1963 ++Redecl) {
1964 // Only consider file-scope declarations in this test.
1965 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
1966 continue;
Eli Friedman8a1d6a52011-10-11 22:09:24 +00001967
1968 // Only consider explicit declarations; the presence of a builtin for a
1969 // libcall shouldn't affect whether a definition is externally visible.
1970 if (Redecl->isImplicit())
1971 continue;
1972
John McCalld931b082010-08-26 03:08:43 +00001973 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001974 return true; // Not an inline definition
1975 }
1976
1977 // C99 6.7.4p6:
1978 // An inline definition does not provide an external definition for the
1979 // function, and does not forbid an external definition in another
1980 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001981 return false;
1982}
1983
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001984/// getOverloadedOperator - Which C++ overloaded operator this
1985/// function represents, if any.
1986OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00001987 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
1988 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001989 else
1990 return OO_None;
1991}
1992
Sean Hunta6c058d2010-01-13 09:01:02 +00001993/// getLiteralIdentifier - The literal suffix identifier this function
1994/// represents, if any.
1995const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
1996 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
1997 return getDeclName().getCXXLiteralIdentifier();
1998 else
1999 return 0;
2000}
2001
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002002FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
2003 if (TemplateOrSpecialization.isNull())
2004 return TK_NonTemplate;
2005 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
2006 return TK_FunctionTemplate;
2007 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
2008 return TK_MemberSpecialization;
2009 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
2010 return TK_FunctionTemplateSpecialization;
2011 if (TemplateOrSpecialization.is
2012 <DependentFunctionTemplateSpecializationInfo*>())
2013 return TK_DependentFunctionTemplateSpecialization;
2014
David Blaikieb219cfc2011-09-23 05:06:16 +00002015 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002016}
2017
Douglas Gregor2db32322009-10-07 23:56:10 +00002018FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002019 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00002020 return cast<FunctionDecl>(Info->getInstantiatedFrom());
2021
2022 return 0;
2023}
2024
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002025MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
2026 return TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2027}
2028
Douglas Gregor2db32322009-10-07 23:56:10 +00002029void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002030FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
2031 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00002032 TemplateSpecializationKind TSK) {
2033 assert(TemplateOrSpecialization.isNull() &&
2034 "Member function is already a specialization");
2035 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002036 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00002037 TemplateOrSpecialization = Info;
2038}
2039
Douglas Gregor3b846b62009-10-27 20:53:28 +00002040bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002041 // If the function is invalid, it can't be implicitly instantiated.
2042 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00002043 return false;
2044
2045 switch (getTemplateSpecializationKind()) {
2046 case TSK_Undeclared:
Douglas Gregor3b846b62009-10-27 20:53:28 +00002047 case TSK_ExplicitInstantiationDefinition:
2048 return false;
2049
2050 case TSK_ImplicitInstantiation:
2051 return true;
2052
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002053 // It is possible to instantiate TSK_ExplicitSpecialization kind
2054 // if the FunctionDecl has a class scope specialization pattern.
2055 case TSK_ExplicitSpecialization:
2056 return getClassScopeSpecializationPattern() != 0;
2057
Douglas Gregor3b846b62009-10-27 20:53:28 +00002058 case TSK_ExplicitInstantiationDeclaration:
2059 // Handled below.
2060 break;
2061 }
2062
2063 // Find the actual template from which we will instantiate.
2064 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002065 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002066 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002067 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00002068
2069 // C++0x [temp.explicit]p9:
2070 // Except for inline functions, other explicit instantiation declarations
2071 // have the effect of suppressing the implicit instantiation of the entity
2072 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002073 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00002074 return true;
2075
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002076 return PatternDecl->isInlined();
Ted Kremenek75df4ee2011-12-01 00:59:17 +00002077}
2078
2079bool FunctionDecl::isTemplateInstantiation() const {
2080 switch (getTemplateSpecializationKind()) {
2081 case TSK_Undeclared:
2082 case TSK_ExplicitSpecialization:
2083 return false;
2084 case TSK_ImplicitInstantiation:
2085 case TSK_ExplicitInstantiationDeclaration:
2086 case TSK_ExplicitInstantiationDefinition:
2087 return true;
2088 }
2089 llvm_unreachable("All TSK values handled.");
2090}
Douglas Gregor3b846b62009-10-27 20:53:28 +00002091
2092FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002093 // Handle class scope explicit specialization special case.
2094 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2095 return getClassScopeSpecializationPattern();
2096
Douglas Gregor3b846b62009-10-27 20:53:28 +00002097 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
2098 while (Primary->getInstantiatedFromMemberTemplate()) {
2099 // If we have hit a point where the user provided a specialization of
2100 // this template, we're done looking.
2101 if (Primary->isMemberSpecialization())
2102 break;
2103
2104 Primary = Primary->getInstantiatedFromMemberTemplate();
2105 }
2106
2107 return Primary->getTemplatedDecl();
2108 }
2109
2110 return getInstantiatedFromMemberFunction();
2111}
2112
Douglas Gregor16e8be22009-06-29 17:30:29 +00002113FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002114 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002115 = TemplateOrSpecialization
2116 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002117 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00002118 }
2119 return 0;
2120}
2121
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002122FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
2123 return getASTContext().getClassScopeSpecializationPattern(this);
2124}
2125
Douglas Gregor16e8be22009-06-29 17:30:29 +00002126const TemplateArgumentList *
2127FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002128 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002129 = TemplateOrSpecialization
2130 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00002131 return Info->TemplateArguments;
2132 }
2133 return 0;
2134}
2135
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00002136const ASTTemplateArgumentListInfo *
Abramo Bagnarae03db982010-05-20 15:32:11 +00002137FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
2138 if (FunctionTemplateSpecializationInfo *Info
2139 = TemplateOrSpecialization
2140 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
2141 return Info->TemplateArgumentsAsWritten;
2142 }
2143 return 0;
2144}
2145
Mike Stump1eb44332009-09-09 15:08:12 +00002146void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002147FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
2148 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00002149 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002150 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00002151 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00002152 const TemplateArgumentListInfo *TemplateArgsAsWritten,
2153 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002154 assert(TSK != TSK_Undeclared &&
2155 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00002156 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002157 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00002158 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00002159 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
2160 TemplateArgs,
2161 TemplateArgsAsWritten,
2162 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00002163 TemplateOrSpecialization = Info;
Mike Stump1eb44332009-09-09 15:08:12 +00002164
Douglas Gregor127102b2009-06-29 20:59:39 +00002165 // Insert this function template specialization into the set of known
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002166 // function template specializations.
2167 if (InsertPos)
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00002168 Template->addSpecialization(Info, InsertPos);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002169 else {
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00002170 // Try to insert the new node. If there is an existing node, leave it, the
2171 // set will contain the canonical decls while
2172 // FunctionTemplateDecl::findSpecialization will return
2173 // the most recent redeclarations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002174 FunctionTemplateSpecializationInfo *Existing
2175 = Template->getSpecializations().GetOrInsertNode(Info);
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00002176 (void)Existing;
2177 assert((!Existing || Existing->Function->isCanonicalDecl()) &&
2178 "Set is supposed to only contain canonical decls");
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002179 }
Douglas Gregor1637be72009-06-26 00:10:03 +00002180}
2181
John McCallaf2094e2010-04-08 09:05:18 +00002182void
2183FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
2184 const UnresolvedSetImpl &Templates,
2185 const TemplateArgumentListInfo &TemplateArgs) {
2186 assert(TemplateOrSpecialization.isNull());
2187 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
2188 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00002189 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00002190 void *Buffer = Context.Allocate(Size);
2191 DependentFunctionTemplateSpecializationInfo *Info =
2192 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
2193 TemplateArgs);
2194 TemplateOrSpecialization = Info;
2195}
2196
2197DependentFunctionTemplateSpecializationInfo::
2198DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
2199 const TemplateArgumentListInfo &TArgs)
2200 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
2201
2202 d.NumTemplates = Ts.size();
2203 d.NumArgs = TArgs.size();
2204
2205 FunctionTemplateDecl **TsArray =
2206 const_cast<FunctionTemplateDecl**>(getTemplates());
2207 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
2208 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
2209
2210 TemplateArgumentLoc *ArgsArray =
2211 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
2212 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
2213 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
2214}
2215
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002216TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002217 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002218 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00002219 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002220 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00002221 if (FTSInfo)
2222 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00002223
Douglas Gregor2db32322009-10-07 23:56:10 +00002224 MemberSpecializationInfo *MSInfo
2225 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2226 if (MSInfo)
2227 return MSInfo->getTemplateSpecializationKind();
2228
2229 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002230}
2231
Mike Stump1eb44332009-09-09 15:08:12 +00002232void
Douglas Gregor0a897e32009-10-15 17:21:20 +00002233FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2234 SourceLocation PointOfInstantiation) {
2235 if (FunctionTemplateSpecializationInfo *FTSInfo
2236 = TemplateOrSpecialization.dyn_cast<
2237 FunctionTemplateSpecializationInfo*>()) {
2238 FTSInfo->setTemplateSpecializationKind(TSK);
2239 if (TSK != TSK_ExplicitSpecialization &&
2240 PointOfInstantiation.isValid() &&
2241 FTSInfo->getPointOfInstantiation().isInvalid())
2242 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
2243 } else if (MemberSpecializationInfo *MSInfo
2244 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
2245 MSInfo->setTemplateSpecializationKind(TSK);
2246 if (TSK != TSK_ExplicitSpecialization &&
2247 PointOfInstantiation.isValid() &&
2248 MSInfo->getPointOfInstantiation().isInvalid())
2249 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2250 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00002251 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor0a897e32009-10-15 17:21:20 +00002252}
2253
2254SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00002255 if (FunctionTemplateSpecializationInfo *FTSInfo
2256 = TemplateOrSpecialization.dyn_cast<
2257 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002258 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00002259 else if (MemberSpecializationInfo *MSInfo
2260 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002261 return MSInfo->getPointOfInstantiation();
2262
2263 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002264}
2265
Douglas Gregor9f185072009-09-11 20:15:17 +00002266bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00002267 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00002268 return true;
2269
2270 // If this function was instantiated from a member function of a
2271 // class template, check whether that member function was defined out-of-line.
2272 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
2273 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002274 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002275 return Definition->isOutOfLine();
2276 }
2277
2278 // If this function was instantiated from a function template,
2279 // check whether that function template was defined out-of-line.
2280 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
2281 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002282 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002283 return Definition->isOutOfLine();
2284 }
2285
2286 return false;
2287}
2288
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002289SourceRange FunctionDecl::getSourceRange() const {
2290 return SourceRange(getOuterLocStart(), EndRangeLoc);
2291}
2292
Anna Zaksd9b859a2012-01-13 21:52:01 +00002293FunctionDecl::MemoryFunctionKind FunctionDecl::getMemoryFunctionKind() {
2294 IdentifierInfo *FnInfo = getIdentifier();
2295
2296 if (!FnInfo)
2297 return MFK_Invalid;
2298
2299 // Builtin handling.
2300 switch (getBuiltinID()) {
2301 case Builtin::BI__builtin_memset:
2302 case Builtin::BI__builtin___memset_chk:
2303 case Builtin::BImemset:
2304 return MFK_Memset;
2305
2306 case Builtin::BI__builtin_memcpy:
2307 case Builtin::BI__builtin___memcpy_chk:
2308 case Builtin::BImemcpy:
2309 return MFK_Memcpy;
2310
2311 case Builtin::BI__builtin_memmove:
2312 case Builtin::BI__builtin___memmove_chk:
2313 case Builtin::BImemmove:
2314 return MFK_Memmove;
2315
2316 case Builtin::BIstrlcpy:
2317 return MFK_Strlcpy;
2318 case Builtin::BIstrlcat:
2319 return MFK_Strlcat;
2320
2321 case Builtin::BI__builtin_memcmp:
2322 return MFK_Memcmp;
2323
2324 case Builtin::BI__builtin_strncpy:
2325 case Builtin::BI__builtin___strncpy_chk:
2326 case Builtin::BIstrncpy:
2327 return MFK_Strncpy;
2328
2329 case Builtin::BI__builtin_strncmp:
2330 return MFK_Strncmp;
2331
2332 case Builtin::BI__builtin_strncasecmp:
2333 return MFK_Strncasecmp;
2334
2335 case Builtin::BI__builtin_strncat:
2336 case Builtin::BIstrncat:
2337 return MFK_Strncat;
2338
2339 case Builtin::BI__builtin_strndup:
2340 case Builtin::BIstrndup:
2341 return MFK_Strndup;
2342
2343 default:
Eli Friedman750dc2b2012-01-15 01:23:58 +00002344 if (isExternC()) {
Anna Zaksd9b859a2012-01-13 21:52:01 +00002345 if (FnInfo->isStr("memset"))
2346 return MFK_Memset;
2347 else if (FnInfo->isStr("memcpy"))
2348 return MFK_Memcpy;
2349 else if (FnInfo->isStr("memmove"))
2350 return MFK_Memmove;
2351 else if (FnInfo->isStr("memcmp"))
2352 return MFK_Memcmp;
2353 else if (FnInfo->isStr("strncpy"))
2354 return MFK_Strncpy;
2355 else if (FnInfo->isStr("strncmp"))
2356 return MFK_Strncmp;
2357 else if (FnInfo->isStr("strncasecmp"))
2358 return MFK_Strncasecmp;
2359 else if (FnInfo->isStr("strncat"))
2360 return MFK_Strncat;
2361 else if (FnInfo->isStr("strndup"))
2362 return MFK_Strndup;
2363 }
2364 break;
2365 }
2366 return MFK_Invalid;
2367}
2368
Chris Lattner8a934232008-03-31 00:36:02 +00002369//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002370// FieldDecl Implementation
2371//===----------------------------------------------------------------------===//
2372
Jay Foad4ba2a172011-01-12 09:06:06 +00002373FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002374 SourceLocation StartLoc, SourceLocation IdLoc,
2375 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00002376 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2377 bool HasInit) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002378 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smith7a614d82011-06-11 17:19:42 +00002379 BW, Mutable, HasInit);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002380}
2381
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002382FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2383 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FieldDecl));
2384 return new (Mem) FieldDecl(Field, 0, SourceLocation(), SourceLocation(),
2385 0, QualType(), 0, 0, false, false);
2386}
2387
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002388bool FieldDecl::isAnonymousStructOrUnion() const {
2389 if (!isImplicit() || getDeclName())
2390 return false;
2391
2392 if (const RecordType *Record = getType()->getAs<RecordType>())
2393 return Record->getDecl()->isAnonymousStructOrUnion();
2394
2395 return false;
2396}
2397
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002398unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
2399 assert(isBitField() && "not a bitfield");
2400 Expr *BitWidth = InitializerOrBitWidth.getPointer();
2401 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
2402}
2403
John McCallba4f5d52011-01-20 07:57:12 +00002404unsigned FieldDecl::getFieldIndex() const {
2405 if (CachedFieldIndex) return CachedFieldIndex - 1;
2406
Richard Smith180f4792011-11-10 06:34:14 +00002407 unsigned Index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002408 const RecordDecl *RD = getParent();
2409 const FieldDecl *LastFD = 0;
2410 bool IsMsStruct = RD->hasAttr<MsStructAttr>();
Richard Smith180f4792011-11-10 06:34:14 +00002411
2412 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
2413 I != E; ++I, ++Index) {
2414 (*I)->CachedFieldIndex = Index + 1;
John McCallba4f5d52011-01-20 07:57:12 +00002415
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002416 if (IsMsStruct) {
2417 // Zero-length bitfields following non-bitfield members are ignored.
Richard Smith180f4792011-11-10 06:34:14 +00002418 if (getASTContext().ZeroBitfieldFollowsNonBitfield((*I), LastFD)) {
2419 --Index;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002420 continue;
2421 }
Richard Smith180f4792011-11-10 06:34:14 +00002422 LastFD = (*I);
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002423 }
John McCallba4f5d52011-01-20 07:57:12 +00002424 }
2425
Richard Smith180f4792011-11-10 06:34:14 +00002426 assert(CachedFieldIndex && "failed to find field in parent");
2427 return CachedFieldIndex - 1;
John McCallba4f5d52011-01-20 07:57:12 +00002428}
2429
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002430SourceRange FieldDecl::getSourceRange() const {
Abramo Bagnarad330e232011-08-05 08:02:55 +00002431 if (const Expr *E = InitializerOrBitWidth.getPointer())
2432 return SourceRange(getInnerLocStart(), E->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002433 return DeclaratorDecl::getSourceRange();
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002434}
2435
Richard Smith7a614d82011-06-11 17:19:42 +00002436void FieldDecl::setInClassInitializer(Expr *Init) {
2437 assert(!InitializerOrBitWidth.getPointer() &&
2438 "bit width or initializer already set");
2439 InitializerOrBitWidth.setPointer(Init);
2440 InitializerOrBitWidth.setInt(0);
2441}
2442
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002443//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002444// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002445//===----------------------------------------------------------------------===//
2446
Douglas Gregor1693e152010-07-06 18:42:40 +00002447SourceLocation TagDecl::getOuterLocStart() const {
2448 return getTemplateOrInnerLocStart(this);
2449}
2450
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002451SourceRange TagDecl::getSourceRange() const {
2452 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00002453 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002454}
2455
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002456TagDecl* TagDecl::getCanonicalDecl() {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002457 return getFirstDeclaration();
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002458}
2459
Richard Smith162e1c12011-04-15 14:24:37 +00002460void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
2461 TypedefNameDeclOrQualifier = TDD;
Douglas Gregor60e70642010-05-19 18:39:18 +00002462 if (TypeForDecl)
John McCallf4c73712011-01-19 06:33:43 +00002463 const_cast<Type*>(TypeForDecl)->ClearLinkageCache();
Douglas Gregor381d34e2010-12-06 18:36:25 +00002464 ClearLinkageCache();
Douglas Gregor60e70642010-05-19 18:39:18 +00002465}
2466
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002467void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00002468 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00002469
2470 if (isa<CXXRecordDecl>(this)) {
2471 CXXRecordDecl *D = cast<CXXRecordDecl>(this);
2472 struct CXXRecordDecl::DefinitionData *Data =
2473 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
John McCall22432882010-03-26 21:56:38 +00002474 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I)
2475 cast<CXXRecordDecl>(*I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00002476 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002477}
2478
2479void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00002480 assert((!isa<CXXRecordDecl>(this) ||
2481 cast<CXXRecordDecl>(this)->hasDefinition()) &&
2482 "definition completed but not started");
2483
John McCall5e1cdac2011-10-07 06:10:15 +00002484 IsCompleteDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00002485 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002486
2487 if (ASTMutationListener *L = getASTMutationListener())
2488 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002489}
2490
John McCall5e1cdac2011-10-07 06:10:15 +00002491TagDecl *TagDecl::getDefinition() const {
2492 if (isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002493 return const_cast<TagDecl *>(this);
Andrew Trick220a9c82010-10-19 21:54:32 +00002494 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
2495 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002496
2497 for (redecl_iterator R = redecls_begin(), REnd = redecls_end();
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002498 R != REnd; ++R)
John McCall5e1cdac2011-10-07 06:10:15 +00002499 if (R->isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002500 return *R;
Mike Stump1eb44332009-09-09 15:08:12 +00002501
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002502 return 0;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002503}
2504
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002505void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
2506 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00002507 // Make sure the extended qualifier info is allocated.
2508 if (!hasExtInfo())
Richard Smith162e1c12011-04-15 14:24:37 +00002509 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00002510 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002511 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00002512 } else {
John McCallb6217662010-03-15 10:12:16 +00002513 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00002514 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002515 if (getExtInfo()->NumTemplParamLists == 0) {
2516 getASTContext().Deallocate(getExtInfo());
Richard Smith162e1c12011-04-15 14:24:37 +00002517 TypedefNameDeclOrQualifier = (TypedefNameDecl*) 0;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002518 }
2519 else
2520 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00002521 }
2522 }
2523}
2524
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002525void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
2526 unsigned NumTPLists,
2527 TemplateParameterList **TPLists) {
2528 assert(NumTPLists > 0);
2529 // Make sure the extended decl info is allocated.
2530 if (!hasExtInfo())
2531 // Allocate external info struct.
Richard Smith162e1c12011-04-15 14:24:37 +00002532 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002533 // Set the template parameter lists info.
2534 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
2535}
2536
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002537//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002538// EnumDecl Implementation
2539//===----------------------------------------------------------------------===//
2540
David Blaikie99ba9e32011-12-20 02:48:34 +00002541void EnumDecl::anchor() { }
2542
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002543EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
2544 SourceLocation StartLoc, SourceLocation IdLoc,
2545 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002546 EnumDecl *PrevDecl, bool IsScoped,
2547 bool IsScopedUsingClassTag, bool IsFixed) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002548 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002549 IsScoped, IsScopedUsingClassTag, IsFixed);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002550 C.getTypeDeclType(Enum, PrevDecl);
2551 return Enum;
2552}
2553
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002554EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2555 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumDecl));
2556 return new (Mem) EnumDecl(0, SourceLocation(), SourceLocation(), 0, 0,
2557 false, false, false);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002558}
2559
Douglas Gregor838db382010-02-11 01:19:42 +00002560void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00002561 QualType NewPromotionType,
2562 unsigned NumPositiveBits,
2563 unsigned NumNegativeBits) {
John McCall5e1cdac2011-10-07 06:10:15 +00002564 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002565 if (!IntegerType)
2566 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002567 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00002568 setNumPositiveBits(NumPositiveBits);
2569 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002570 TagDecl::completeDefinition();
2571}
2572
2573//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002574// RecordDecl Implementation
2575//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002576
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002577RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
2578 SourceLocation StartLoc, SourceLocation IdLoc,
2579 IdentifierInfo *Id, RecordDecl *PrevDecl)
2580 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00002581 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002582 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002583 HasObjectMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002584 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00002585 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00002586}
2587
Jay Foad4ba2a172011-01-12 09:06:06 +00002588RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002589 SourceLocation StartLoc, SourceLocation IdLoc,
2590 IdentifierInfo *Id, RecordDecl* PrevDecl) {
2591 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
2592 PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002593 C.getTypeDeclType(R, PrevDecl);
2594 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00002595}
2596
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002597RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
2598 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(RecordDecl));
2599 return new (Mem) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
2600 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002601}
2602
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002603bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002604 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002605 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
2606}
2607
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002608RecordDecl::field_iterator RecordDecl::field_begin() const {
2609 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
2610 LoadFieldsFromExternalStorage();
2611
2612 return field_iterator(decl_iterator(FirstDecl));
2613}
2614
Douglas Gregorda2142f2011-02-19 18:51:44 +00002615/// completeDefinition - Notes that the definition of this type is now
2616/// complete.
2617void RecordDecl::completeDefinition() {
John McCall5e1cdac2011-10-07 06:10:15 +00002618 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorda2142f2011-02-19 18:51:44 +00002619 TagDecl::completeDefinition();
2620}
2621
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002622void RecordDecl::LoadFieldsFromExternalStorage() const {
2623 ExternalASTSource *Source = getASTContext().getExternalSource();
2624 assert(hasExternalLexicalStorage() && Source && "No external storage?");
2625
2626 // Notify that we have a RecordDecl doing some initialization.
2627 ExternalASTSource::Deserializing TheFields(Source);
2628
Chris Lattner5f9e2722011-07-23 10:55:15 +00002629 SmallVector<Decl*, 64> Decls;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002630 LoadedFieldsFromExternalStorage = true;
2631 switch (Source->FindExternalLexicalDeclsBy<FieldDecl>(this, Decls)) {
2632 case ELR_Success:
2633 break;
2634
2635 case ELR_AlreadyLoaded:
2636 case ELR_Failure:
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002637 return;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002638 }
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002639
2640#ifndef NDEBUG
2641 // Check that all decls we got were FieldDecls.
2642 for (unsigned i=0, e=Decls.size(); i != e; ++i)
2643 assert(isa<FieldDecl>(Decls[i]));
2644#endif
2645
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002646 if (Decls.empty())
2647 return;
2648
Argyrios Kyrtzidisec2ec1f2011-10-07 21:55:43 +00002649 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
2650 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002651}
2652
Steve Naroff56ee6892008-10-08 17:01:13 +00002653//===----------------------------------------------------------------------===//
2654// BlockDecl Implementation
2655//===----------------------------------------------------------------------===//
2656
David Blaikie4278c652011-09-21 18:16:56 +00002657void BlockDecl::setParams(llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Steve Naroffe78b8092009-03-13 16:56:44 +00002658 assert(ParamInfo == 0 && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00002659
Steve Naroffe78b8092009-03-13 16:56:44 +00002660 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00002661 if (!NewParamInfo.empty()) {
2662 NumParams = NewParamInfo.size();
2663 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
2664 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffe78b8092009-03-13 16:56:44 +00002665 }
2666}
2667
John McCall6b5a61b2011-02-07 10:33:21 +00002668void BlockDecl::setCaptures(ASTContext &Context,
2669 const Capture *begin,
2670 const Capture *end,
2671 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00002672 CapturesCXXThis = capturesCXXThis;
2673
2674 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00002675 NumCaptures = 0;
2676 Captures = 0;
John McCall469a1eb2011-02-02 13:00:07 +00002677 return;
2678 }
2679
John McCall6b5a61b2011-02-07 10:33:21 +00002680 NumCaptures = end - begin;
2681
2682 // Avoid new Capture[] because we don't want to provide a default
2683 // constructor.
2684 size_t allocationSize = NumCaptures * sizeof(Capture);
2685 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
2686 memcpy(buffer, begin, allocationSize);
2687 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00002688}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002689
John McCall204e1332011-06-15 22:51:16 +00002690bool BlockDecl::capturesVariable(const VarDecl *variable) const {
2691 for (capture_const_iterator
2692 i = capture_begin(), e = capture_end(); i != e; ++i)
2693 // Only auto vars can be captured, so no redeclaration worries.
2694 if (i->getVariable() == variable)
2695 return true;
2696
2697 return false;
2698}
2699
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00002700SourceRange BlockDecl::getSourceRange() const {
2701 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
2702}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002703
2704//===----------------------------------------------------------------------===//
2705// Other Decl Allocation/Deallocation Method Implementations
2706//===----------------------------------------------------------------------===//
2707
David Blaikie99ba9e32011-12-20 02:48:34 +00002708void TranslationUnitDecl::anchor() { }
2709
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002710TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
2711 return new (C) TranslationUnitDecl(C);
2712}
2713
David Blaikie99ba9e32011-12-20 02:48:34 +00002714void LabelDecl::anchor() { }
2715
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002716LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00002717 SourceLocation IdentL, IdentifierInfo *II) {
2718 return new (C) LabelDecl(DC, IdentL, II, 0, IdentL);
2719}
2720
2721LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
2722 SourceLocation IdentL, IdentifierInfo *II,
2723 SourceLocation GnuLabelL) {
2724 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
2725 return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002726}
2727
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002728LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2729 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LabelDecl));
2730 return new (Mem) LabelDecl(0, SourceLocation(), 0, 0, SourceLocation());
Douglas Gregor06c91932010-10-27 19:49:05 +00002731}
2732
David Blaikie99ba9e32011-12-20 02:48:34 +00002733void ValueDecl::anchor() { }
2734
2735void ImplicitParamDecl::anchor() { }
2736
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002737ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002738 SourceLocation IdLoc,
2739 IdentifierInfo *Id,
2740 QualType Type) {
2741 return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002742}
2743
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002744ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
2745 unsigned ID) {
2746 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ImplicitParamDecl));
2747 return new (Mem) ImplicitParamDecl(0, SourceLocation(), 0, QualType());
2748}
2749
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002750FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002751 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002752 const DeclarationNameInfo &NameInfo,
2753 QualType T, TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002754 StorageClass SC, StorageClass SCAsWritten,
Douglas Gregor8f150942010-12-09 16:59:22 +00002755 bool isInlineSpecified,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002756 bool hasWrittenPrototype,
2757 bool isConstexprSpecified) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002758 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo,
2759 T, TInfo, SC, SCAsWritten,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002760 isInlineSpecified,
2761 isConstexprSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002762 New->HasWrittenPrototype = hasWrittenPrototype;
2763 return New;
2764}
2765
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002766FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2767 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionDecl));
2768 return new (Mem) FunctionDecl(Function, 0, SourceLocation(),
2769 DeclarationNameInfo(), QualType(), 0,
2770 SC_None, SC_None, false, false);
2771}
2772
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002773BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
2774 return new (C) BlockDecl(DC, L);
2775}
2776
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002777BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2778 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(BlockDecl));
2779 return new (Mem) BlockDecl(0, SourceLocation());
2780}
2781
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002782EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
2783 SourceLocation L,
2784 IdentifierInfo *Id, QualType T,
2785 Expr *E, const llvm::APSInt &V) {
2786 return new (C) EnumConstantDecl(CD, L, Id, T, E, V);
2787}
2788
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002789EnumConstantDecl *
2790EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2791 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumConstantDecl));
2792 return new (Mem) EnumConstantDecl(0, SourceLocation(), 0, QualType(), 0,
2793 llvm::APSInt());
2794}
2795
David Blaikie99ba9e32011-12-20 02:48:34 +00002796void IndirectFieldDecl::anchor() { }
2797
Benjamin Kramerd9811462010-11-21 14:11:41 +00002798IndirectFieldDecl *
2799IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
2800 IdentifierInfo *Id, QualType T, NamedDecl **CH,
2801 unsigned CHS) {
Francois Pichet87c2e122010-11-21 06:08:52 +00002802 return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
2803}
2804
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002805IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
2806 unsigned ID) {
2807 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(IndirectFieldDecl));
2808 return new (Mem) IndirectFieldDecl(0, SourceLocation(), DeclarationName(),
2809 QualType(), 0, 0);
2810}
2811
Douglas Gregor8e7139c2010-09-01 20:41:53 +00002812SourceRange EnumConstantDecl::getSourceRange() const {
2813 SourceLocation End = getLocation();
2814 if (Init)
2815 End = Init->getLocEnd();
2816 return SourceRange(getLocation(), End);
2817}
2818
David Blaikie99ba9e32011-12-20 02:48:34 +00002819void TypeDecl::anchor() { }
2820
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002821TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00002822 SourceLocation StartLoc, SourceLocation IdLoc,
2823 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
2824 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002825}
2826
David Blaikie99ba9e32011-12-20 02:48:34 +00002827void TypedefNameDecl::anchor() { }
2828
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002829TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2830 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl));
2831 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2832}
2833
Richard Smith162e1c12011-04-15 14:24:37 +00002834TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
2835 SourceLocation StartLoc,
2836 SourceLocation IdLoc, IdentifierInfo *Id,
2837 TypeSourceInfo *TInfo) {
2838 return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo);
2839}
2840
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002841TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2842 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypeAliasDecl));
2843 return new (Mem) TypeAliasDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2844}
2845
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002846SourceRange TypedefDecl::getSourceRange() const {
2847 SourceLocation RangeEnd = getLocation();
2848 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
2849 if (typeIsPostfix(TInfo->getType()))
2850 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2851 }
2852 return SourceRange(getLocStart(), RangeEnd);
2853}
2854
Richard Smith162e1c12011-04-15 14:24:37 +00002855SourceRange TypeAliasDecl::getSourceRange() const {
2856 SourceLocation RangeEnd = getLocStart();
2857 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
2858 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2859 return SourceRange(getLocStart(), RangeEnd);
2860}
2861
David Blaikie99ba9e32011-12-20 02:48:34 +00002862void FileScopeAsmDecl::anchor() { }
2863
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002864FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002865 StringLiteral *Str,
2866 SourceLocation AsmLoc,
2867 SourceLocation RParenLoc) {
2868 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002869}
Douglas Gregor15de72c2011-12-02 23:23:56 +00002870
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002871FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
2872 unsigned ID) {
2873 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FileScopeAsmDecl));
2874 return new (Mem) FileScopeAsmDecl(0, 0, SourceLocation(), SourceLocation());
2875}
2876
Douglas Gregor15de72c2011-12-02 23:23:56 +00002877//===----------------------------------------------------------------------===//
2878// ImportDecl Implementation
2879//===----------------------------------------------------------------------===//
2880
2881/// \brief Retrieve the number of module identifiers needed to name the given
2882/// module.
2883static unsigned getNumModuleIdentifiers(Module *Mod) {
2884 unsigned Result = 1;
2885 while (Mod->Parent) {
2886 Mod = Mod->Parent;
2887 ++Result;
2888 }
2889 return Result;
2890}
2891
Douglas Gregor5948ae12012-01-03 18:04:46 +00002892ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00002893 Module *Imported,
2894 ArrayRef<SourceLocation> IdentifierLocs)
Douglas Gregor5948ae12012-01-03 18:04:46 +00002895 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
Douglas Gregore6649772011-12-03 00:30:27 +00002896 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00002897{
2898 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
2899 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
2900 memcpy(StoredLocs, IdentifierLocs.data(),
2901 IdentifierLocs.size() * sizeof(SourceLocation));
2902}
2903
Douglas Gregor5948ae12012-01-03 18:04:46 +00002904ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00002905 Module *Imported, SourceLocation EndLoc)
Douglas Gregor5948ae12012-01-03 18:04:46 +00002906 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
Douglas Gregore6649772011-12-03 00:30:27 +00002907 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00002908{
2909 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
2910}
2911
2912ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00002913 SourceLocation StartLoc, Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00002914 ArrayRef<SourceLocation> IdentifierLocs) {
2915 void *Mem = C.Allocate(sizeof(ImportDecl) +
2916 IdentifierLocs.size() * sizeof(SourceLocation));
Douglas Gregor5948ae12012-01-03 18:04:46 +00002917 return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregor15de72c2011-12-02 23:23:56 +00002918}
2919
2920ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00002921 SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00002922 Module *Imported,
2923 SourceLocation EndLoc) {
2924 void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation));
Douglas Gregor5948ae12012-01-03 18:04:46 +00002925 ImportDecl *Import = new (Mem) ImportDecl(DC, StartLoc, Imported, EndLoc);
Douglas Gregor15de72c2011-12-02 23:23:56 +00002926 Import->setImplicit();
2927 return Import;
2928}
2929
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002930ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
2931 unsigned NumLocations) {
2932 void *Mem = AllocateDeserializedDecl(C, ID,
2933 (sizeof(ImportDecl) +
2934 NumLocations * sizeof(SourceLocation)));
Douglas Gregor15de72c2011-12-02 23:23:56 +00002935 return new (Mem) ImportDecl(EmptyShell());
2936}
2937
2938ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
2939 if (!ImportedAndComplete.getInt())
2940 return ArrayRef<SourceLocation>();
2941
2942 const SourceLocation *StoredLocs
2943 = reinterpret_cast<const SourceLocation *>(this + 1);
2944 return ArrayRef<SourceLocation>(StoredLocs,
2945 getNumModuleIdentifiers(getImportedModule()));
2946}
2947
2948SourceRange ImportDecl::getSourceRange() const {
2949 if (!ImportedAndComplete.getInt())
2950 return SourceRange(getLocation(),
2951 *reinterpret_cast<const SourceLocation *>(this + 1));
2952
2953 return SourceRange(getLocation(), getIdentifierLocs().back());
2954}