blob: c2abe1a5a90d5a9c322daa47439e06701275f570 [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"
Abramo Bagnara465d41b2010-05-11 21:36:43 +000027#include "clang/Basic/Specifiers.h"
Douglas Gregor4421d2b2011-03-26 12:10:19 +000028#include "clang/Basic/TargetInfo.h"
John McCallf1bbbb42009-09-04 01:14:41 +000029#include "llvm/Support/ErrorHandling.h"
Ted Kremenek27f8a282008-05-20 00:43:19 +000030
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
Chris Lattnerd3b90652008-03-15 05:43:15 +000033//===----------------------------------------------------------------------===//
Douglas Gregor4afa39d2009-01-20 01:17:11 +000034// NamedDecl Implementation
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000035//===----------------------------------------------------------------------===//
36
Douglas Gregor4421d2b2011-03-26 12:10:19 +000037static llvm::Optional<Visibility> getVisibilityOf(const Decl *D) {
38 // If this declaration has an explicit visibility attribute, use it.
39 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
40 switch (A->getVisibility()) {
41 case VisibilityAttr::Default:
42 return DefaultVisibility;
43 case VisibilityAttr::Hidden:
44 return HiddenVisibility;
45 case VisibilityAttr::Protected:
46 return ProtectedVisibility;
47 }
John McCall7f1b9872010-12-18 03:30:47 +000048
John McCall1fb0caa2010-10-22 21:05:15 +000049 return DefaultVisibility;
John McCall1fb0caa2010-10-22 21:05:15 +000050 }
Douglas Gregor4421d2b2011-03-26 12:10:19 +000051
52 // If we're on Mac OS X, an 'availability' for Mac OS X attribute
53 // implies visibility(default).
Daniel Dunbardb57a4c2011-04-19 21:43:27 +000054 if (D->getASTContext().Target.getTriple().isOSDarwin()) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +000055 for (specific_attr_iterator<AvailabilityAttr>
56 A = D->specific_attr_begin<AvailabilityAttr>(),
57 AEnd = D->specific_attr_end<AvailabilityAttr>();
58 A != AEnd; ++A)
59 if ((*A)->getPlatform()->getName().equals("macosx"))
60 return DefaultVisibility;
61 }
62
63 return llvm::Optional<Visibility>();
John McCall1fb0caa2010-10-22 21:05:15 +000064}
65
John McCallaf146032010-10-30 11:50:40 +000066typedef NamedDecl::LinkageInfo LinkageInfo;
John McCall1fb0caa2010-10-22 21:05:15 +000067typedef std::pair<Linkage,Visibility> LVPair;
John McCallaf146032010-10-30 11:50:40 +000068
John McCall1fb0caa2010-10-22 21:05:15 +000069static LVPair merge(LVPair L, LVPair R) {
70 return LVPair(minLinkage(L.first, R.first),
71 minVisibility(L.second, R.second));
72}
73
John McCallaf146032010-10-30 11:50:40 +000074static LVPair merge(LVPair L, LinkageInfo R) {
75 return LVPair(minLinkage(L.first, R.linkage()),
76 minVisibility(L.second, R.visibility()));
77}
78
Benjamin Kramer752c2e92010-11-05 19:56:37 +000079namespace {
John McCall36987482010-11-02 01:45:15 +000080/// Flags controlling the computation of linkage and visibility.
81struct LVFlags {
82 bool ConsiderGlobalVisibility;
83 bool ConsiderVisibilityAttributes;
John McCall1a0918a2011-03-04 10:39:25 +000084 bool ConsiderTemplateParameterTypes;
John McCall36987482010-11-02 01:45:15 +000085
86 LVFlags() : ConsiderGlobalVisibility(true),
John McCall1a0918a2011-03-04 10:39:25 +000087 ConsiderVisibilityAttributes(true),
88 ConsiderTemplateParameterTypes(true) {
John McCall36987482010-11-02 01:45:15 +000089 }
90
Douglas Gregor381d34e2010-12-06 18:36:25 +000091 /// \brief Returns a set of flags that is only useful for computing the
92 /// linkage, not the visibility, of a declaration.
93 static LVFlags CreateOnlyDeclLinkage() {
94 LVFlags F;
95 F.ConsiderGlobalVisibility = false;
96 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +000097 F.ConsiderTemplateParameterTypes = false;
Douglas Gregor381d34e2010-12-06 18:36:25 +000098 return F;
99 }
100
John McCall36987482010-11-02 01:45:15 +0000101 /// Returns a set of flags, otherwise based on these, which ignores
102 /// off all sources of visibility except template arguments.
103 LVFlags onlyTemplateVisibility() const {
104 LVFlags F = *this;
105 F.ConsiderGlobalVisibility = false;
106 F.ConsiderVisibilityAttributes = false;
John McCall1a0918a2011-03-04 10:39:25 +0000107 F.ConsiderTemplateParameterTypes = false;
John McCall36987482010-11-02 01:45:15 +0000108 return F;
109 }
Douglas Gregor89d63e52010-12-06 18:50:56 +0000110};
Benjamin Kramer752c2e92010-11-05 19:56:37 +0000111} // end anonymous namespace
John McCall36987482010-11-02 01:45:15 +0000112
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000113/// \brief Get the most restrictive linkage for the types in the given
114/// template parameter list.
John McCall1fb0caa2010-10-22 21:05:15 +0000115static LVPair
116getLVForTemplateParameterList(const TemplateParameterList *Params) {
117 LVPair LV(ExternalLinkage, DefaultVisibility);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000118 for (TemplateParameterList::const_iterator P = Params->begin(),
119 PEnd = Params->end();
120 P != PEnd; ++P) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000121 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
122 if (NTTP->isExpandedParameterPack()) {
123 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
124 QualType T = NTTP->getExpansionType(I);
125 if (!T->isDependentType())
126 LV = merge(LV, T->getLinkageAndVisibility());
127 }
128 continue;
129 }
130
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000131 if (!NTTP->getType()->isDependentType()) {
John McCall1fb0caa2010-10-22 21:05:15 +0000132 LV = merge(LV, NTTP->getType()->getLinkageAndVisibility());
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000133 continue;
134 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000135 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000136
137 if (TemplateTemplateParmDecl *TTP
138 = dyn_cast<TemplateTemplateParmDecl>(*P)) {
John McCallaf146032010-10-30 11:50:40 +0000139 LV = merge(LV, getLVForTemplateParameterList(TTP->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000140 }
141 }
142
John McCall1fb0caa2010-10-22 21:05:15 +0000143 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000144}
145
Douglas Gregor381d34e2010-12-06 18:36:25 +0000146/// getLVForDecl - Get the linkage and visibility for the given declaration.
147static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags F);
148
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000149/// \brief Get the most restrictive linkage for the types and
150/// declarations in the given template argument list.
John McCall1fb0caa2010-10-22 21:05:15 +0000151static LVPair getLVForTemplateArgumentList(const TemplateArgument *Args,
Douglas Gregor381d34e2010-12-06 18:36:25 +0000152 unsigned NumArgs,
153 LVFlags &F) {
John McCall1fb0caa2010-10-22 21:05:15 +0000154 LVPair LV(ExternalLinkage, DefaultVisibility);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000155
156 for (unsigned I = 0; I != NumArgs; ++I) {
157 switch (Args[I].getKind()) {
158 case TemplateArgument::Null:
159 case TemplateArgument::Integral:
160 case TemplateArgument::Expression:
161 break;
162
163 case TemplateArgument::Type:
John McCall1fb0caa2010-10-22 21:05:15 +0000164 LV = merge(LV, Args[I].getAsType()->getLinkageAndVisibility());
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000165 break;
166
167 case TemplateArgument::Declaration:
John McCall1fb0caa2010-10-22 21:05:15 +0000168 // The decl can validly be null as the representation of nullptr
169 // arguments, valid only in C++0x.
170 if (Decl *D = Args[I].getAsDecl()) {
Douglas Gregor89d63e52010-12-06 18:50:56 +0000171 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
172 LV = merge(LV, getLVForDecl(ND, F));
John McCall1fb0caa2010-10-22 21:05:15 +0000173 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000174 break;
175
176 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +0000177 case TemplateArgument::TemplateExpansion:
178 if (TemplateDecl *Template
179 = Args[I].getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Douglas Gregor89d63e52010-12-06 18:50:56 +0000180 LV = merge(LV, getLVForDecl(Template, F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000181 break;
182
183 case TemplateArgument::Pack:
John McCall1fb0caa2010-10-22 21:05:15 +0000184 LV = merge(LV, getLVForTemplateArgumentList(Args[I].pack_begin(),
Douglas Gregor381d34e2010-12-06 18:36:25 +0000185 Args[I].pack_size(),
186 F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000187 break;
188 }
189 }
190
John McCall1fb0caa2010-10-22 21:05:15 +0000191 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000192}
193
John McCallaf146032010-10-30 11:50:40 +0000194static LVPair
Douglas Gregor381d34e2010-12-06 18:36:25 +0000195getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
196 LVFlags &F) {
197 return getLVForTemplateArgumentList(TArgs.data(), TArgs.size(), F);
John McCall3cdfc4d2010-08-13 08:35:10 +0000198}
199
John McCall36987482010-11-02 01:45:15 +0000200static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, LVFlags F) {
Sebastian Redl7a126a42010-08-31 00:36:30 +0000201 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregord85b5b92009-11-25 22:24:25 +0000202 "Not a name having namespace scope");
203 ASTContext &Context = D->getASTContext();
204
205 // C++ [basic.link]p3:
206 // A name having namespace scope (3.3.6) has internal linkage if it
207 // is the name of
208 // - an object, reference, function or function template that is
209 // explicitly declared static; or,
210 // (This bullet corresponds to C99 6.2.2p3.)
211 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
212 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000213 if (Var->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000214 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000215
216 // - an object or reference that is explicitly declared const
217 // and neither explicitly declared extern nor previously
218 // declared to have external linkage; or
219 // (there is no equivalent in C99)
220 if (Context.getLangOptions().CPlusPlus &&
Eli Friedmane9d65542009-11-26 03:04:01 +0000221 Var->getType().isConstant(Context) &&
John McCalld931b082010-08-26 03:08:43 +0000222 Var->getStorageClass() != SC_Extern &&
223 Var->getStorageClass() != SC_PrivateExtern) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000224 bool FoundExtern = false;
225 for (const VarDecl *PrevVar = Var->getPreviousDeclaration();
226 PrevVar && !FoundExtern;
227 PrevVar = PrevVar->getPreviousDeclaration())
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000228 if (isExternalLinkage(PrevVar->getLinkage()))
Douglas Gregord85b5b92009-11-25 22:24:25 +0000229 FoundExtern = true;
230
231 if (!FoundExtern)
John McCallaf146032010-10-30 11:50:40 +0000232 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000233 }
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000234 if (Var->getStorageClass() == SC_None) {
235 const VarDecl *PrevVar = Var->getPreviousDeclaration();
236 for (; PrevVar; PrevVar = PrevVar->getPreviousDeclaration())
237 if (PrevVar->getStorageClass() == SC_PrivateExtern)
238 break;
239 if (PrevVar)
240 return PrevVar->getLinkageAndVisibility();
241 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000242 } else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000243 // C++ [temp]p4:
244 // A non-member function template can have internal linkage; any
245 // other template name shall have external linkage.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000246 const FunctionDecl *Function = 0;
247 if (const FunctionTemplateDecl *FunTmpl
248 = dyn_cast<FunctionTemplateDecl>(D))
249 Function = FunTmpl->getTemplatedDecl();
250 else
251 Function = cast<FunctionDecl>(D);
252
253 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000254 if (Function->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000255 return LinkageInfo(InternalLinkage, DefaultVisibility, false);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000256 } else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
257 // - a data member of an anonymous union.
258 if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion())
John McCallaf146032010-10-30 11:50:40 +0000259 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000260 }
261
Chandler Carruth094b6432011-02-24 19:03:39 +0000262 if (D->isInAnonymousNamespace()) {
263 const VarDecl *Var = dyn_cast<VarDecl>(D);
264 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
265 if ((!Var || !Var->isExternC()) && (!Func || !Func->isExternC()))
266 return LinkageInfo::uniqueExternal();
267 }
John McCalle7bc9722010-10-28 04:18:25 +0000268
John McCall1fb0caa2010-10-22 21:05:15 +0000269 // Set up the defaults.
270
271 // C99 6.2.2p5:
272 // If the declaration of an identifier for an object has file
273 // scope and no storage-class specifier, its linkage is
274 // external.
John McCallaf146032010-10-30 11:50:40 +0000275 LinkageInfo LV;
276
John McCall36987482010-11-02 01:45:15 +0000277 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000278 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
279 LV.setVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000280 F.ConsiderGlobalVisibility = false;
John McCall90f14502010-12-10 02:59:44 +0000281 } else {
282 // If we're declared in a namespace with a visibility attribute,
283 // use that namespace's visibility, but don't call it explicit.
284 for (const DeclContext *DC = D->getDeclContext();
285 !isa<TranslationUnitDecl>(DC);
286 DC = DC->getParent()) {
287 if (!isa<NamespaceDecl>(DC)) continue;
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000288 if (llvm::Optional<Visibility> Vis
289 = cast<NamespaceDecl>(DC)->getExplicitVisibility()) {
290 LV.setVisibility(*Vis, false);
John McCall90f14502010-12-10 02:59:44 +0000291 F.ConsiderGlobalVisibility = false;
292 break;
293 }
294 }
John McCall36987482010-11-02 01:45:15 +0000295 }
John McCallaf146032010-10-30 11:50:40 +0000296 }
John McCall1fb0caa2010-10-22 21:05:15 +0000297
Douglas Gregord85b5b92009-11-25 22:24:25 +0000298 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000299
Douglas Gregord85b5b92009-11-25 22:24:25 +0000300 // A name having namespace scope has external linkage if it is the
301 // name of
302 //
303 // - an object or reference, unless it has internal linkage; or
304 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000305 // GCC applies the following optimization to variables and static
306 // data members, but not to functions:
307 //
John McCall1fb0caa2010-10-22 21:05:15 +0000308 // Modify the variable's LV by the LV of its type unless this is
309 // C or extern "C". This follows from [basic.link]p9:
310 // A type without linkage shall not be used as the type of a
311 // variable or function with external linkage unless
312 // - the entity has C language linkage, or
313 // - the entity is declared within an unnamed namespace, or
314 // - the entity is not used or is defined in the same
315 // translation unit.
316 // and [basic.link]p10:
317 // ...the types specified by all declarations referring to a
318 // given variable or function shall be identical...
319 // C does not have an equivalent rule.
320 //
John McCallac65c622010-10-26 04:59:26 +0000321 // Ignore this if we've got an explicit attribute; the user
322 // probably knows what they're doing.
323 //
John McCall1fb0caa2010-10-22 21:05:15 +0000324 // Note that we don't want to make the variable non-external
325 // because of this, but unique-external linkage suits us.
John McCallee301022010-10-30 09:18:49 +0000326 if (Context.getLangOptions().CPlusPlus && !Var->isExternC()) {
John McCall1fb0caa2010-10-22 21:05:15 +0000327 LVPair TypeLV = Var->getType()->getLinkageAndVisibility();
328 if (TypeLV.first != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000329 return LinkageInfo::uniqueExternal();
330 if (!LV.visibilityExplicit())
331 LV.mergeVisibility(TypeLV.second);
John McCall110e8e52010-10-29 22:22:43 +0000332 }
333
John McCall35cebc32010-11-02 18:38:13 +0000334 if (Var->getStorageClass() == SC_PrivateExtern)
335 LV.setVisibility(HiddenVisibility, true);
336
Douglas Gregord85b5b92009-11-25 22:24:25 +0000337 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000338 (Var->getStorageClass() == SC_Extern ||
339 Var->getStorageClass() == SC_PrivateExtern)) {
John McCall1fb0caa2010-10-22 21:05:15 +0000340
Douglas Gregord85b5b92009-11-25 22:24:25 +0000341 // C99 6.2.2p4:
342 // For an identifier declared with the storage-class specifier
343 // extern in a scope in which a prior declaration of that
344 // identifier is visible, if the prior declaration specifies
345 // internal or external linkage, the linkage of the identifier
346 // at the later declaration is the same as the linkage
347 // specified at the prior declaration. If no prior declaration
348 // is visible, or if the prior declaration specifies no
349 // linkage, then the identifier has external linkage.
350 if (const VarDecl *PrevVar = Var->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000351 LinkageInfo PrevLV = getLVForDecl(PrevVar, F);
John McCallaf146032010-10-30 11:50:40 +0000352 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
353 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000354 }
355 }
356
Douglas Gregord85b5b92009-11-25 22:24:25 +0000357 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000358 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000359 // In theory, we can modify the function's LV by the LV of its
360 // type unless it has C linkage (see comment above about variables
361 // for justification). In practice, GCC doesn't do this, so it's
362 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000363
John McCall35cebc32010-11-02 18:38:13 +0000364 if (Function->getStorageClass() == SC_PrivateExtern)
365 LV.setVisibility(HiddenVisibility, true);
366
Douglas Gregord85b5b92009-11-25 22:24:25 +0000367 // C99 6.2.2p5:
368 // If the declaration of an identifier for a function has no
369 // storage-class specifier, its linkage is determined exactly
370 // as if it were declared with the storage-class specifier
371 // extern.
372 if (!Context.getLangOptions().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000373 (Function->getStorageClass() == SC_Extern ||
374 Function->getStorageClass() == SC_PrivateExtern ||
375 Function->getStorageClass() == SC_None)) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000376 // C99 6.2.2p4:
377 // For an identifier declared with the storage-class specifier
378 // extern in a scope in which a prior declaration of that
379 // identifier is visible, if the prior declaration specifies
380 // internal or external linkage, the linkage of the identifier
381 // at the later declaration is the same as the linkage
382 // specified at the prior declaration. If no prior declaration
383 // is visible, or if the prior declaration specifies no
384 // linkage, then the identifier has external linkage.
385 if (const FunctionDecl *PrevFunc = Function->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000386 LinkageInfo PrevLV = getLVForDecl(PrevFunc, F);
John McCallaf146032010-10-30 11:50:40 +0000387 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
388 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000389 }
390 }
391
John McCallaf8ca372011-02-10 06:50:24 +0000392 // In C++, then if the type of the function uses a type with
393 // unique-external linkage, it's not legally usable from outside
394 // this translation unit. However, we should use the C linkage
395 // rules instead for extern "C" declarations.
396 if (Context.getLangOptions().CPlusPlus && !Function->isExternC() &&
397 Function->getType()->getLinkage() == UniqueExternalLinkage)
398 return LinkageInfo::uniqueExternal();
399
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000400 if (FunctionTemplateSpecializationInfo *SpecInfo
401 = Function->getTemplateSpecializationInfo()) {
John McCall36987482010-11-02 01:45:15 +0000402 LV.merge(getLVForDecl(SpecInfo->getTemplate(),
403 F.onlyTemplateVisibility()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000404 const TemplateArgumentList &TemplateArgs = *SpecInfo->TemplateArguments;
Douglas Gregor381d34e2010-12-06 18:36:25 +0000405 LV.merge(getLVForTemplateArgumentList(TemplateArgs, F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000406 }
407
Douglas Gregord85b5b92009-11-25 22:24:25 +0000408 // - a named class (Clause 9), or an unnamed class defined in a
409 // typedef declaration in which the class has the typedef name
410 // for linkage purposes (7.1.3); or
411 // - a named enumeration (7.2), or an unnamed enumeration
412 // defined in a typedef declaration in which the enumeration
413 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000414 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
415 // Unnamed tags have no linkage.
Richard Smith162e1c12011-04-15 14:24:37 +0000416 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl())
John McCallaf146032010-10-30 11:50:40 +0000417 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000418
John McCall1fb0caa2010-10-22 21:05:15 +0000419 // If this is a class template specialization, consider the
420 // linkage of the template and template arguments.
421 if (const ClassTemplateSpecializationDecl *Spec
422 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCall36987482010-11-02 01:45:15 +0000423 // From the template.
424 LV.merge(getLVForDecl(Spec->getSpecializedTemplate(),
425 F.onlyTemplateVisibility()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000426
John McCall1fb0caa2010-10-22 21:05:15 +0000427 // The arguments at which the template was instantiated.
428 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Douglas Gregor381d34e2010-12-06 18:36:25 +0000429 LV.merge(getLVForTemplateArgumentList(TemplateArgs, F));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000430 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000431
John McCallac65c622010-10-26 04:59:26 +0000432 // Consider -fvisibility unless the type has C linkage.
John McCall36987482010-11-02 01:45:15 +0000433 if (F.ConsiderGlobalVisibility)
434 F.ConsiderGlobalVisibility =
John McCallac65c622010-10-26 04:59:26 +0000435 (Context.getLangOptions().CPlusPlus &&
436 !Tag->getDeclContext()->isExternCContext());
John McCall1fb0caa2010-10-22 21:05:15 +0000437
Douglas Gregord85b5b92009-11-25 22:24:25 +0000438 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000439 } else if (isa<EnumConstantDecl>(D)) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000440 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()), F);
John McCallaf146032010-10-30 11:50:40 +0000441 if (!isExternalLinkage(EnumLV.linkage()))
442 return LinkageInfo::none();
443 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000444
445 // - a template, unless it is a function template that has
446 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000447 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
448 if (F.ConsiderTemplateParameterTypes)
449 LV.merge(getLVForTemplateParameterList(temp->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000450
Douglas Gregord85b5b92009-11-25 22:24:25 +0000451 // - a namespace (7.3), unless it is declared within an unnamed
452 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000453 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
454 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000455
John McCall1fb0caa2010-10-22 21:05:15 +0000456 // By extension, we assign external linkage to Objective-C
457 // interfaces.
458 } else if (isa<ObjCInterfaceDecl>(D)) {
459 // fallout
460
461 // Everything not covered here has no linkage.
462 } else {
John McCallaf146032010-10-30 11:50:40 +0000463 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000464 }
465
466 // If we ended up with non-external linkage, visibility should
467 // always be default.
John McCallaf146032010-10-30 11:50:40 +0000468 if (LV.linkage() != ExternalLinkage)
469 return LinkageInfo(LV.linkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000470
471 // If we didn't end up with hidden visibility, consider attributes
472 // and -fvisibility.
John McCall36987482010-11-02 01:45:15 +0000473 if (F.ConsiderGlobalVisibility)
John McCallaf146032010-10-30 11:50:40 +0000474 LV.mergeVisibility(Context.getLangOptions().getVisibilityMode());
John McCall1fb0caa2010-10-22 21:05:15 +0000475
476 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000477}
478
John McCall36987482010-11-02 01:45:15 +0000479static LinkageInfo getLVForClassMember(const NamedDecl *D, LVFlags F) {
John McCall1fb0caa2010-10-22 21:05:15 +0000480 // Only certain class members have linkage. Note that fields don't
481 // really have linkage, but it's convenient to say they do for the
482 // purposes of calculating linkage of pointer-to-data-member
483 // template arguments.
John McCall3cdfc4d2010-08-13 08:35:10 +0000484 if (!(isa<CXXMethodDecl>(D) ||
485 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000486 isa<FieldDecl>(D) ||
John McCall3cdfc4d2010-08-13 08:35:10 +0000487 (isa<TagDecl>(D) &&
Richard Smith162e1c12011-04-15 14:24:37 +0000488 (D->getDeclName() || cast<TagDecl>(D)->getTypedefNameForAnonDecl()))))
John McCallaf146032010-10-30 11:50:40 +0000489 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000490
John McCall36987482010-11-02 01:45:15 +0000491 LinkageInfo LV;
492
493 // The flags we're going to use to compute the class's visibility.
494 LVFlags ClassF = F;
495
496 // If we have an explicit visibility attribute, merge that in.
497 if (F.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000498 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
499 LV.mergeVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000500
501 // Ignore global visibility later, but not this attribute.
502 F.ConsiderGlobalVisibility = false;
503
504 // Ignore both global visibility and attributes when computing our
505 // parent's visibility.
506 ClassF = F.onlyTemplateVisibility();
507 }
508 }
John McCallaf146032010-10-30 11:50:40 +0000509
510 // Class members only have linkage if their class has external
John McCall36987482010-11-02 01:45:15 +0000511 // linkage.
512 LV.merge(getLVForDecl(cast<RecordDecl>(D->getDeclContext()), ClassF));
513 if (!isExternalLinkage(LV.linkage()))
John McCallaf146032010-10-30 11:50:40 +0000514 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000515
516 // If the class already has unique-external linkage, we can't improve.
John McCall36987482010-11-02 01:45:15 +0000517 if (LV.linkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000518 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000519
John McCall3cdfc4d2010-08-13 08:35:10 +0000520 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000521 // If the type of the function uses a type with unique-external
522 // linkage, it's not legally usable from outside this translation unit.
523 if (MD->getType()->getLinkage() == UniqueExternalLinkage)
524 return LinkageInfo::uniqueExternal();
525
John McCall110e8e52010-10-29 22:22:43 +0000526 TemplateSpecializationKind TSK = TSK_Undeclared;
527
John McCall1fb0caa2010-10-22 21:05:15 +0000528 // If this is a method template specialization, use the linkage for
529 // the template parameters and arguments.
530 if (FunctionTemplateSpecializationInfo *Spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000531 = MD->getTemplateSpecializationInfo()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000532 LV.merge(getLVForTemplateArgumentList(*Spec->TemplateArguments, F));
John McCall1a0918a2011-03-04 10:39:25 +0000533 if (F.ConsiderTemplateParameterTypes)
534 LV.merge(getLVForTemplateParameterList(
John McCall1fb0caa2010-10-22 21:05:15 +0000535 Spec->getTemplate()->getTemplateParameters()));
John McCall110e8e52010-10-29 22:22:43 +0000536
537 TSK = Spec->getTemplateSpecializationKind();
538 } else if (MemberSpecializationInfo *MSI =
539 MD->getMemberSpecializationInfo()) {
540 TSK = MSI->getTemplateSpecializationKind();
John McCall3cdfc4d2010-08-13 08:35:10 +0000541 }
542
John McCall110e8e52010-10-29 22:22:43 +0000543 // If we're paying attention to global visibility, apply
544 // -finline-visibility-hidden if this is an inline method.
545 //
John McCallaf146032010-10-30 11:50:40 +0000546 // Note that ConsiderGlobalVisibility doesn't yet have information
547 // about whether containing classes have visibility attributes,
548 // and that's intentional.
549 if (TSK != TSK_ExplicitInstantiationDeclaration &&
John McCall36987482010-11-02 01:45:15 +0000550 F.ConsiderGlobalVisibility &&
John McCall66cbcf32010-11-01 01:29:57 +0000551 MD->getASTContext().getLangOptions().InlineVisibilityHidden) {
552 // InlineVisibilityHidden only applies to definitions, and
553 // isInlined() only gives meaningful answers on definitions
554 // anyway.
555 const FunctionDecl *Def = 0;
556 if (MD->hasBody(Def) && Def->isInlined())
557 LV.setVisibility(HiddenVisibility);
558 }
John McCall1fb0caa2010-10-22 21:05:15 +0000559
John McCall110e8e52010-10-29 22:22:43 +0000560 // Note that in contrast to basically every other situation, we
561 // *do* apply -fvisibility to method declarations.
562
563 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000564 if (const ClassTemplateSpecializationDecl *Spec
565 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
566 // Merge template argument/parameter information for member
567 // class template specializations.
Douglas Gregor381d34e2010-12-06 18:36:25 +0000568 LV.merge(getLVForTemplateArgumentList(Spec->getTemplateArgs(), F));
John McCall1a0918a2011-03-04 10:39:25 +0000569 if (F.ConsiderTemplateParameterTypes)
570 LV.merge(getLVForTemplateParameterList(
John McCall1fb0caa2010-10-22 21:05:15 +0000571 Spec->getSpecializedTemplate()->getTemplateParameters()));
John McCall110e8e52010-10-29 22:22:43 +0000572 }
573
John McCall110e8e52010-10-29 22:22:43 +0000574 // Static data members.
575 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
John McCallee301022010-10-30 09:18:49 +0000576 // Modify the variable's linkage by its type, but ignore the
577 // type's visibility unless it's a definition.
578 LVPair TypeLV = VD->getType()->getLinkageAndVisibility();
579 if (TypeLV.first != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000580 LV.mergeLinkage(UniqueExternalLinkage);
581 if (!LV.visibilityExplicit())
582 LV.mergeVisibility(TypeLV.second);
John McCall110e8e52010-10-29 22:22:43 +0000583 }
584
John McCall36987482010-11-02 01:45:15 +0000585 F.ConsiderGlobalVisibility &= !LV.visibilityExplicit();
John McCall110e8e52010-10-29 22:22:43 +0000586
587 // Apply -fvisibility if desired.
John McCall36987482010-11-02 01:45:15 +0000588 if (F.ConsiderGlobalVisibility && LV.visibility() != HiddenVisibility) {
John McCallaf146032010-10-30 11:50:40 +0000589 LV.mergeVisibility(D->getASTContext().getLangOptions().getVisibilityMode());
John McCall3cdfc4d2010-08-13 08:35:10 +0000590 }
591
John McCall1fb0caa2010-10-22 21:05:15 +0000592 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000593}
594
John McCallf76b0922011-02-08 19:01:05 +0000595static void clearLinkageForClass(const CXXRecordDecl *record) {
596 for (CXXRecordDecl::decl_iterator
597 i = record->decls_begin(), e = record->decls_end(); i != e; ++i) {
598 Decl *child = *i;
599 if (isa<NamedDecl>(child))
600 cast<NamedDecl>(child)->ClearLinkageCache();
601 }
602}
603
604void NamedDecl::ClearLinkageCache() {
605 // Note that we can't skip clearing the linkage of children just
606 // because the parent doesn't have cached linkage: we don't cache
607 // when computing linkage for parent contexts.
608
609 HasCachedLinkage = 0;
610
611 // If we're changing the linkage of a class, we need to reset the
612 // linkage of child declarations, too.
613 if (const CXXRecordDecl *record = dyn_cast<CXXRecordDecl>(this))
614 clearLinkageForClass(record);
615
John McCall15e310a2011-02-19 02:53:41 +0000616 if (ClassTemplateDecl *temp =
617 dyn_cast<ClassTemplateDecl>(const_cast<NamedDecl*>(this))) {
John McCallf76b0922011-02-08 19:01:05 +0000618 // Clear linkage for the template pattern.
619 CXXRecordDecl *record = temp->getTemplatedDecl();
620 record->HasCachedLinkage = 0;
621 clearLinkageForClass(record);
622
John McCall15e310a2011-02-19 02:53:41 +0000623 // We need to clear linkage for specializations, too.
624 for (ClassTemplateDecl::spec_iterator
625 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
626 i->ClearLinkageCache();
John McCallf76b0922011-02-08 19:01:05 +0000627 }
John McCall15e310a2011-02-19 02:53:41 +0000628
629 // Clear cached linkage for function template decls, too.
630 if (FunctionTemplateDecl *temp =
John McCall78951942011-03-22 06:58:49 +0000631 dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this))) {
632 temp->getTemplatedDecl()->ClearLinkageCache();
John McCall15e310a2011-02-19 02:53:41 +0000633 for (FunctionTemplateDecl::spec_iterator
634 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
635 i->ClearLinkageCache();
John McCall78951942011-03-22 06:58:49 +0000636 }
John McCall15e310a2011-02-19 02:53:41 +0000637
John McCallf76b0922011-02-08 19:01:05 +0000638}
639
Douglas Gregor381d34e2010-12-06 18:36:25 +0000640Linkage NamedDecl::getLinkage() const {
641 if (HasCachedLinkage) {
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000642 assert(Linkage(CachedLinkage) ==
643 getLVForDecl(this, LVFlags::CreateOnlyDeclLinkage()).linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000644 return Linkage(CachedLinkage);
645 }
646
647 CachedLinkage = getLVForDecl(this,
648 LVFlags::CreateOnlyDeclLinkage()).linkage();
649 HasCachedLinkage = 1;
650 return Linkage(CachedLinkage);
651}
652
John McCallaf146032010-10-30 11:50:40 +0000653LinkageInfo NamedDecl::getLinkageAndVisibility() const {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000654 LinkageInfo LI = getLVForDecl(this, LVFlags());
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000655 assert(!HasCachedLinkage || Linkage(CachedLinkage) == LI.linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000656 HasCachedLinkage = 1;
657 CachedLinkage = LI.linkage();
658 return LI;
John McCall0df95872010-10-29 00:29:13 +0000659}
Ted Kremenekbecc3082010-04-20 23:15:35 +0000660
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000661llvm::Optional<Visibility> NamedDecl::getExplicitVisibility() const {
662 // Use the most recent declaration of a variable.
663 if (const VarDecl *var = dyn_cast<VarDecl>(this))
664 return getVisibilityOf(var->getMostRecentDeclaration());
665
666 // Use the most recent declaration of a function, and also handle
667 // function template specializations.
668 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) {
669 if (llvm::Optional<Visibility> V
670 = getVisibilityOf(fn->getMostRecentDeclaration()))
671 return V;
672
673 // If the function is a specialization of a template with an
674 // explicit visibility attribute, use that.
675 if (FunctionTemplateSpecializationInfo *templateInfo
676 = fn->getTemplateSpecializationInfo())
677 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl());
678
679 return llvm::Optional<Visibility>();
680 }
681
682 // Otherwise, just check the declaration itself first.
683 if (llvm::Optional<Visibility> V = getVisibilityOf(this))
684 return V;
685
686 // If there wasn't explicit visibility there, and this is a
687 // specialization of a class template, check for visibility
688 // on the pattern.
689 if (const ClassTemplateSpecializationDecl *spec
690 = dyn_cast<ClassTemplateSpecializationDecl>(this))
691 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl());
692
693 return llvm::Optional<Visibility>();
694}
695
John McCall36987482010-11-02 01:45:15 +0000696static LinkageInfo getLVForDecl(const NamedDecl *D, LVFlags Flags) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000697 // Objective-C: treat all Objective-C declarations as having external
698 // linkage.
John McCall0df95872010-10-29 00:29:13 +0000699 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000700 default:
701 break;
John McCall1fb0caa2010-10-22 21:05:15 +0000702 case Decl::TemplateTemplateParm: // count these as external
703 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000704 case Decl::ObjCAtDefsField:
705 case Decl::ObjCCategory:
706 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000707 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000708 case Decl::ObjCForwardProtocol:
709 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000710 case Decl::ObjCMethod:
711 case Decl::ObjCProperty:
712 case Decl::ObjCPropertyImpl:
713 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +0000714 return LinkageInfo::external();
Ted Kremenekbecc3082010-04-20 23:15:35 +0000715 }
716
Douglas Gregord85b5b92009-11-25 22:24:25 +0000717 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +0000718 if (D->getDeclContext()->getRedeclContext()->isFileContext())
John McCall36987482010-11-02 01:45:15 +0000719 return getLVForNamespaceScopeDecl(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000720
721 // C++ [basic.link]p5:
722 // In addition, a member function, static data member, a named
723 // class or enumeration of class scope, or an unnamed class or
724 // enumeration defined in a class-scope typedef declaration such
725 // that the class or enumeration has the typedef name for linkage
726 // purposes (7.1.3), has external linkage if the name of the class
727 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +0000728 if (D->getDeclContext()->isRecord())
John McCall36987482010-11-02 01:45:15 +0000729 return getLVForClassMember(D, Flags);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000730
731 // C++ [basic.link]p6:
732 // The name of a function declared in block scope and the name of
733 // an object declared by a block scope extern declaration have
734 // linkage. If there is a visible declaration of an entity with
735 // linkage having the same name and type, ignoring entities
736 // declared outside the innermost enclosing namespace scope, the
737 // block scope declaration declares that same entity and receives
738 // the linkage of the previous declaration. If there is more than
739 // one such matching entity, the program is ill-formed. Otherwise,
740 // if no matching entity is found, the block scope entity receives
741 // external linkage.
John McCall0df95872010-10-29 00:29:13 +0000742 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
743 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Chandler Carruth10aad442011-02-25 00:05:02 +0000744 if (Function->isInAnonymousNamespace() && !Function->isExternC())
John McCallaf146032010-10-30 11:50:40 +0000745 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000746
John McCallaf146032010-10-30 11:50:40 +0000747 LinkageInfo LV;
Douglas Gregor381d34e2010-12-06 18:36:25 +0000748 if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000749 if (llvm::Optional<Visibility> Vis = Function->getExplicitVisibility())
750 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000751 }
752
John McCall1fb0caa2010-10-22 21:05:15 +0000753 if (const FunctionDecl *Prev = Function->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000754 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000755 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
756 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000757 }
758
759 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000760 }
761
John McCall0df95872010-10-29 00:29:13 +0000762 if (const VarDecl *Var = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000763 if (Var->getStorageClass() == SC_Extern ||
764 Var->getStorageClass() == SC_PrivateExtern) {
Chandler Carruth10aad442011-02-25 00:05:02 +0000765 if (Var->isInAnonymousNamespace() && !Var->isExternC())
John McCallaf146032010-10-30 11:50:40 +0000766 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000767
John McCallaf146032010-10-30 11:50:40 +0000768 LinkageInfo LV;
John McCall1fb0caa2010-10-22 21:05:15 +0000769 if (Var->getStorageClass() == SC_PrivateExtern)
John McCallaf146032010-10-30 11:50:40 +0000770 LV.setVisibility(HiddenVisibility);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000771 else if (Flags.ConsiderVisibilityAttributes) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000772 if (llvm::Optional<Visibility> Vis = Var->getExplicitVisibility())
773 LV.setVisibility(*Vis);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000774 }
775
John McCall1fb0caa2010-10-22 21:05:15 +0000776 if (const VarDecl *Prev = Var->getPreviousDeclaration()) {
Douglas Gregor381d34e2010-12-06 18:36:25 +0000777 LinkageInfo PrevLV = getLVForDecl(Prev, Flags);
John McCallaf146032010-10-30 11:50:40 +0000778 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
779 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000780 }
781
782 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000783 }
784 }
785
786 // C++ [basic.link]p6:
787 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +0000788 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000789}
Douglas Gregord85b5b92009-11-25 22:24:25 +0000790
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000791std::string NamedDecl::getQualifiedNameAsString() const {
Anders Carlsson3a082d82009-09-08 18:24:21 +0000792 return getQualifiedNameAsString(getASTContext().getLangOptions());
793}
794
795std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000796 const DeclContext *Ctx = getDeclContext();
797
798 if (Ctx->isFunctionOrMethod())
799 return getNameAsString();
800
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000801 typedef llvm::SmallVector<const DeclContext *, 8> ContextsTy;
802 ContextsTy Contexts;
803
804 // Collect contexts.
805 while (Ctx && isa<NamedDecl>(Ctx)) {
806 Contexts.push_back(Ctx);
807 Ctx = Ctx->getParent();
808 };
809
810 std::string QualName;
811 llvm::raw_string_ostream OS(QualName);
812
813 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
814 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +0000815 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000816 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000817 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
818 std::string TemplateArgsStr
819 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +0000820 TemplateArgs.data(),
821 TemplateArgs.size(),
Anders Carlsson3a082d82009-09-08 18:24:21 +0000822 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000823 OS << Spec->getName() << TemplateArgsStr;
824 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Sam Weinig6be11202009-12-24 23:15:03 +0000825 if (ND->isAnonymousNamespace())
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000826 OS << "<anonymous namespace>";
Sam Weinig6be11202009-12-24 23:15:03 +0000827 else
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000828 OS << ND;
829 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
830 if (!RD->getIdentifier())
831 OS << "<anonymous " << RD->getKindName() << '>';
832 else
833 OS << RD;
834 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Sam Weinig3521d012009-12-28 03:19:38 +0000835 const FunctionProtoType *FT = 0;
836 if (FD->hasWrittenPrototype())
837 FT = dyn_cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>());
838
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000839 OS << FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +0000840 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +0000841 unsigned NumParams = FD->getNumParams();
842 for (unsigned i = 0; i < NumParams; ++i) {
843 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000844 OS << ", ";
Sam Weinig3521d012009-12-28 03:19:38 +0000845 std::string Param;
846 FD->getParamDecl(i)->getType().getAsStringInternal(Param, P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000847 OS << Param;
Sam Weinig3521d012009-12-28 03:19:38 +0000848 }
849
850 if (FT->isVariadic()) {
851 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000852 OS << ", ";
853 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +0000854 }
855 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000856 OS << ')';
857 } else {
858 OS << cast<NamedDecl>(*I);
859 }
860 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000861 }
862
John McCall8472af42010-03-16 21:48:18 +0000863 if (getDeclName())
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000864 OS << this;
John McCall8472af42010-03-16 21:48:18 +0000865 else
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000866 OS << "<anonymous>";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000867
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000868 return OS.str();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000869}
870
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000871bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000872 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
873
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000874 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
875 // We want to keep it, unless it nominates same namespace.
876 if (getKind() == Decl::UsingDirective) {
Douglas Gregordb992412011-02-25 16:33:46 +0000877 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
878 ->getOriginalNamespace() ==
879 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
880 ->getOriginalNamespace();
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000881 }
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000883 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
884 // For function declarations, we keep track of redeclarations.
885 return FD->getPreviousDeclaration() == OldD;
886
Douglas Gregore53060f2009-06-25 22:08:12 +0000887 // For function templates, the underlying function declarations are linked.
888 if (const FunctionTemplateDecl *FunctionTemplate
889 = dyn_cast<FunctionTemplateDecl>(this))
890 if (const FunctionTemplateDecl *OldFunctionTemplate
891 = dyn_cast<FunctionTemplateDecl>(OldD))
892 return FunctionTemplate->getTemplatedDecl()
893 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Steve Naroff0de21fd2009-02-22 19:35:57 +0000895 // For method declarations, we keep track of redeclarations.
896 if (isa<ObjCMethodDecl>(this))
897 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000898
John McCallf36e02d2009-10-09 21:13:30 +0000899 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
900 return true;
901
John McCall9488ea12009-11-17 05:59:44 +0000902 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
903 return cast<UsingShadowDecl>(this)->getTargetDecl() ==
904 cast<UsingShadowDecl>(OldD)->getTargetDecl();
905
Douglas Gregordc355712011-02-25 00:36:19 +0000906 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
907 ASTContext &Context = getASTContext();
908 return Context.getCanonicalNestedNameSpecifier(
909 cast<UsingDecl>(this)->getQualifier()) ==
910 Context.getCanonicalNestedNameSpecifier(
911 cast<UsingDecl>(OldD)->getQualifier());
912 }
Argyrios Kyrtzidisc80117e2010-11-04 08:48:52 +0000913
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000914 // For non-function declarations, if the declarations are of the
915 // same kind then this must be a redeclaration, or semantic analysis
916 // would not have given us the new declaration.
917 return this->getKind() == OldD->getKind();
918}
919
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000920bool NamedDecl::hasLinkage() const {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000921 return getLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000922}
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000923
Anders Carlssone136e0e2009-06-26 06:29:23 +0000924NamedDecl *NamedDecl::getUnderlyingDecl() {
925 NamedDecl *ND = this;
926 while (true) {
John McCall9488ea12009-11-17 05:59:44 +0000927 if (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
Anders Carlssone136e0e2009-06-26 06:29:23 +0000928 ND = UD->getTargetDecl();
929 else if (ObjCCompatibleAliasDecl *AD
930 = dyn_cast<ObjCCompatibleAliasDecl>(ND))
931 return AD->getClassInterface();
932 else
933 return ND;
934 }
935}
936
John McCall161755a2010-04-06 21:38:20 +0000937bool NamedDecl::isCXXInstanceMember() const {
938 assert(isCXXClassMember() &&
939 "checking whether non-member is instance member");
940
941 const NamedDecl *D = this;
942 if (isa<UsingShadowDecl>(D))
943 D = cast<UsingShadowDecl>(D)->getTargetDecl();
944
Francois Pichet87c2e122010-11-21 06:08:52 +0000945 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D))
John McCall161755a2010-04-06 21:38:20 +0000946 return true;
947 if (isa<CXXMethodDecl>(D))
948 return cast<CXXMethodDecl>(D)->isInstance();
949 if (isa<FunctionTemplateDecl>(D))
950 return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D)
951 ->getTemplatedDecl())->isInstance();
952 return false;
953}
954
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000955//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000956// DeclaratorDecl Implementation
957//===----------------------------------------------------------------------===//
958
Douglas Gregor1693e152010-07-06 18:42:40 +0000959template <typename DeclT>
960static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
961 if (decl->getNumTemplateParameterLists() > 0)
962 return decl->getTemplateParameterList(0)->getTemplateLoc();
963 else
964 return decl->getInnerLocStart();
965}
966
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000967SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +0000968 TypeSourceInfo *TSI = getTypeSourceInfo();
969 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000970 return SourceLocation();
971}
972
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000973void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
974 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +0000975 // Make sure the extended decl info is allocated.
976 if (!hasExtInfo()) {
977 // Save (non-extended) type source info pointer.
978 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
979 // Allocate external info struct.
980 DeclInfo = new (getASTContext()) ExtInfo;
981 // Restore savedTInfo into (extended) decl info.
982 getExtInfo()->TInfo = savedTInfo;
983 }
984 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000985 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +0000986 }
987 else {
988 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +0000989 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +0000990 if (getExtInfo()->NumTemplParamLists == 0) {
991 // Save type source info pointer.
992 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
993 // Deallocate the extended decl info.
994 getASTContext().Deallocate(getExtInfo());
995 // Restore savedTInfo into (non-extended) decl info.
996 DeclInfo = savedTInfo;
997 }
998 else
999 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001000 }
1001 }
1002}
1003
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001004void
1005DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1006 unsigned NumTPLists,
1007 TemplateParameterList **TPLists) {
1008 assert(NumTPLists > 0);
1009 // Make sure the extended decl info is allocated.
1010 if (!hasExtInfo()) {
1011 // Save (non-extended) type source info pointer.
1012 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1013 // Allocate external info struct.
1014 DeclInfo = new (getASTContext()) ExtInfo;
1015 // Restore savedTInfo into (extended) decl info.
1016 getExtInfo()->TInfo = savedTInfo;
1017 }
1018 // Set the template parameter lists info.
1019 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1020}
1021
Douglas Gregor1693e152010-07-06 18:42:40 +00001022SourceLocation DeclaratorDecl::getOuterLocStart() const {
1023 return getTemplateOrInnerLocStart(this);
1024}
1025
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001026namespace {
1027
1028// Helper function: returns true if QT is or contains a type
1029// having a postfix component.
1030bool typeIsPostfix(clang::QualType QT) {
1031 while (true) {
1032 const Type* T = QT.getTypePtr();
1033 switch (T->getTypeClass()) {
1034 default:
1035 return false;
1036 case Type::Pointer:
1037 QT = cast<PointerType>(T)->getPointeeType();
1038 break;
1039 case Type::BlockPointer:
1040 QT = cast<BlockPointerType>(T)->getPointeeType();
1041 break;
1042 case Type::MemberPointer:
1043 QT = cast<MemberPointerType>(T)->getPointeeType();
1044 break;
1045 case Type::LValueReference:
1046 case Type::RValueReference:
1047 QT = cast<ReferenceType>(T)->getPointeeType();
1048 break;
1049 case Type::PackExpansion:
1050 QT = cast<PackExpansionType>(T)->getPattern();
1051 break;
1052 case Type::Paren:
1053 case Type::ConstantArray:
1054 case Type::DependentSizedArray:
1055 case Type::IncompleteArray:
1056 case Type::VariableArray:
1057 case Type::FunctionProto:
1058 case Type::FunctionNoProto:
1059 return true;
1060 }
1061 }
1062}
1063
1064} // namespace
1065
1066SourceRange DeclaratorDecl::getSourceRange() const {
1067 SourceLocation RangeEnd = getLocation();
1068 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
1069 if (typeIsPostfix(TInfo->getType()))
1070 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1071 }
1072 return SourceRange(getOuterLocStart(), RangeEnd);
1073}
1074
Abramo Bagnara9b934882010-06-12 08:15:14 +00001075void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001076QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1077 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001078 TemplateParameterList **TPLists) {
1079 assert((NumTPLists == 0 || TPLists != 0) &&
1080 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001081
1082 // Free previous template parameters (if any).
1083 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001084 Context.Deallocate(TemplParamLists);
Abramo Bagnara9b934882010-06-12 08:15:14 +00001085 TemplParamLists = 0;
1086 NumTemplParamLists = 0;
1087 }
1088 // Set info on matched template parameter lists (if any).
1089 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001090 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001091 NumTemplParamLists = NumTPLists;
1092 for (unsigned i = NumTPLists; i-- > 0; )
1093 TemplParamLists[i] = TPLists[i];
1094 }
1095}
1096
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001097//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001098// VarDecl Implementation
1099//===----------------------------------------------------------------------===//
1100
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001101const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1102 switch (SC) {
John McCalld931b082010-08-26 03:08:43 +00001103 case SC_None: break;
1104 case SC_Auto: return "auto"; break;
1105 case SC_Extern: return "extern"; break;
1106 case SC_PrivateExtern: return "__private_extern__"; break;
1107 case SC_Register: return "register"; break;
1108 case SC_Static: return "static"; break;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001109 }
1110
1111 assert(0 && "Invalid storage class");
1112 return 0;
1113}
1114
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001115VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1116 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001117 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001118 StorageClass S, StorageClass SCAsWritten) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001119 return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S, SCAsWritten);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001120}
1121
Douglas Gregor381d34e2010-12-06 18:36:25 +00001122void VarDecl::setStorageClass(StorageClass SC) {
1123 assert(isLegalForVariable(SC));
1124 if (getStorageClass() != SC)
1125 ClearLinkageCache();
1126
John McCallf1e4fbf2011-05-01 02:13:58 +00001127 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001128}
1129
Douglas Gregor1693e152010-07-06 18:42:40 +00001130SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001131 if (getInit())
Douglas Gregor1693e152010-07-06 18:42:40 +00001132 return SourceRange(getOuterLocStart(), getInit()->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001133 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001134}
1135
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001136bool VarDecl::isExternC() const {
1137 ASTContext &Context = getASTContext();
1138 if (!Context.getLangOptions().CPlusPlus)
1139 return (getDeclContext()->isTranslationUnit() &&
John McCalld931b082010-08-26 03:08:43 +00001140 getStorageClass() != SC_Static) ||
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001141 (getDeclContext()->isFunctionOrMethod() && hasExternalStorage());
1142
Chandler Carruth10aad442011-02-25 00:05:02 +00001143 const DeclContext *DC = getDeclContext();
1144 if (DC->isFunctionOrMethod())
1145 return false;
1146
1147 for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001148 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC)) {
1149 if (Linkage->getLanguage() == LinkageSpecDecl::lang_c)
John McCalld931b082010-08-26 03:08:43 +00001150 return getStorageClass() != SC_Static;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001151
1152 break;
1153 }
1154
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001155 }
1156
1157 return false;
1158}
1159
1160VarDecl *VarDecl::getCanonicalDecl() {
1161 return getFirstDeclaration();
1162}
1163
Sebastian Redle9d12b62010-01-31 22:27:38 +00001164VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition() const {
1165 // C++ [basic.def]p2:
1166 // A declaration is a definition unless [...] it contains the 'extern'
1167 // specifier or a linkage-specification and neither an initializer [...],
1168 // it declares a static data member in a class declaration [...].
1169 // C++ [temp.expl.spec]p15:
1170 // An explicit specialization of a static data member of a template is a
1171 // definition if the declaration includes an initializer; otherwise, it is
1172 // a declaration.
1173 if (isStaticDataMember()) {
1174 if (isOutOfLine() && (hasInit() ||
1175 getTemplateSpecializationKind() != TSK_ExplicitSpecialization))
1176 return Definition;
1177 else
1178 return DeclarationOnly;
1179 }
1180 // C99 6.7p5:
1181 // A definition of an identifier is a declaration for that identifier that
1182 // [...] causes storage to be reserved for that object.
1183 // Note: that applies for all non-file-scope objects.
1184 // C99 6.9.2p1:
1185 // If the declaration of an identifier for an object has file scope and an
1186 // initializer, the declaration is an external definition for the identifier
1187 if (hasInit())
1188 return Definition;
1189 // AST for 'extern "C" int foo;' is annotated with 'extern'.
1190 if (hasExternalStorage())
1191 return DeclarationOnly;
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001192
John McCalld931b082010-08-26 03:08:43 +00001193 if (getStorageClassAsWritten() == SC_Extern ||
1194 getStorageClassAsWritten() == SC_PrivateExtern) {
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001195 for (const VarDecl *PrevVar = getPreviousDeclaration();
1196 PrevVar; PrevVar = PrevVar->getPreviousDeclaration()) {
1197 if (PrevVar->getLinkage() == InternalLinkage && PrevVar->hasInit())
1198 return DeclarationOnly;
1199 }
1200 }
Sebastian Redle9d12b62010-01-31 22:27:38 +00001201 // C99 6.9.2p2:
1202 // A declaration of an object that has file scope without an initializer,
1203 // and without a storage class specifier or the scs 'static', constitutes
1204 // a tentative definition.
1205 // No such thing in C++.
1206 if (!getASTContext().getLangOptions().CPlusPlus && isFileVarDecl())
1207 return TentativeDefinition;
1208
1209 // What's left is (in C, block-scope) declarations without initializers or
1210 // external storage. These are definitions.
1211 return Definition;
1212}
1213
Sebastian Redle9d12b62010-01-31 22:27:38 +00001214VarDecl *VarDecl::getActingDefinition() {
1215 DefinitionKind Kind = isThisDeclarationADefinition();
1216 if (Kind != TentativeDefinition)
1217 return 0;
1218
Chris Lattnerf0ed9ef2010-06-14 18:31:46 +00001219 VarDecl *LastTentative = 0;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001220 VarDecl *First = getFirstDeclaration();
1221 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1222 I != E; ++I) {
1223 Kind = (*I)->isThisDeclarationADefinition();
1224 if (Kind == Definition)
1225 return 0;
1226 else if (Kind == TentativeDefinition)
1227 LastTentative = *I;
1228 }
1229 return LastTentative;
1230}
1231
1232bool VarDecl::isTentativeDefinitionNow() const {
1233 DefinitionKind Kind = isThisDeclarationADefinition();
1234 if (Kind != TentativeDefinition)
1235 return false;
1236
1237 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1238 if ((*I)->isThisDeclarationADefinition() == Definition)
1239 return false;
1240 }
Sebastian Redl31310a22010-02-01 20:16:42 +00001241 return true;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001242}
1243
Sebastian Redl31310a22010-02-01 20:16:42 +00001244VarDecl *VarDecl::getDefinition() {
Sebastian Redle2c52d22010-02-02 17:55:12 +00001245 VarDecl *First = getFirstDeclaration();
1246 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1247 I != E; ++I) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001248 if ((*I)->isThisDeclarationADefinition() == Definition)
1249 return *I;
1250 }
1251 return 0;
1252}
1253
John McCall110e8e52010-10-29 22:22:43 +00001254VarDecl::DefinitionKind VarDecl::hasDefinition() const {
1255 DefinitionKind Kind = DeclarationOnly;
1256
1257 const VarDecl *First = getFirstDeclaration();
1258 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1259 I != E; ++I)
1260 Kind = std::max(Kind, (*I)->isThisDeclarationADefinition());
1261
1262 return Kind;
1263}
1264
Sebastian Redl31310a22010-02-01 20:16:42 +00001265const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001266 redecl_iterator I = redecls_begin(), E = redecls_end();
1267 while (I != E && !I->getInit())
1268 ++I;
1269
1270 if (I != E) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001271 D = *I;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001272 return I->getInit();
1273 }
1274 return 0;
1275}
1276
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001277bool VarDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00001278 if (Decl::isOutOfLine())
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001279 return true;
Chandler Carruth8761d682010-02-21 07:08:09 +00001280
1281 if (!isStaticDataMember())
1282 return false;
1283
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001284 // If this static data member was instantiated from a static data member of
1285 // a class template, check whether that static data member was defined
1286 // out-of-line.
1287 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
1288 return VD->isOutOfLine();
1289
1290 return false;
1291}
1292
Douglas Gregor0d035142009-10-27 18:42:08 +00001293VarDecl *VarDecl::getOutOfLineDefinition() {
1294 if (!isStaticDataMember())
1295 return 0;
1296
1297 for (VarDecl::redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
1298 RD != RDEnd; ++RD) {
1299 if (RD->getLexicalDeclContext()->isFileContext())
1300 return *RD;
1301 }
1302
1303 return 0;
1304}
1305
Douglas Gregor838db382010-02-11 01:19:42 +00001306void VarDecl::setInit(Expr *I) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001307 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
1308 Eval->~EvaluatedStmt();
Douglas Gregor838db382010-02-11 01:19:42 +00001309 getASTContext().Deallocate(Eval);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001310 }
1311
1312 Init = I;
1313}
1314
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001315VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001316 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001317 return cast<VarDecl>(MSI->getInstantiatedFrom());
1318
1319 return 0;
1320}
1321
Douglas Gregor663b5a02009-10-14 20:14:33 +00001322TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Sebastian Redle9d12b62010-01-31 22:27:38 +00001323 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001324 return MSI->getTemplateSpecializationKind();
1325
1326 return TSK_Undeclared;
1327}
1328
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001329MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001330 return getASTContext().getInstantiatedFromStaticDataMember(this);
1331}
1332
Douglas Gregor0a897e32009-10-15 17:21:20 +00001333void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
1334 SourceLocation PointOfInstantiation) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001335 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001336 assert(MSI && "Not an instantiated static data member?");
1337 MSI->setTemplateSpecializationKind(TSK);
Douglas Gregor0a897e32009-10-15 17:21:20 +00001338 if (TSK != TSK_ExplicitSpecialization &&
1339 PointOfInstantiation.isValid() &&
1340 MSI->getPointOfInstantiation().isInvalid())
1341 MSI->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001342}
1343
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001344//===----------------------------------------------------------------------===//
1345// ParmVarDecl Implementation
1346//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00001347
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001348ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001349 SourceLocation StartLoc,
1350 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001351 QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001352 StorageClass S, StorageClass SCAsWritten,
1353 Expr *DefArg) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001354 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001355 S, SCAsWritten, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00001356}
1357
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001358Expr *ParmVarDecl::getDefaultArg() {
1359 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
1360 assert(!hasUninstantiatedDefaultArg() &&
1361 "Default argument is not yet instantiated!");
1362
1363 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00001364 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001365 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00001366
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001367 return Arg;
1368}
1369
1370unsigned ParmVarDecl::getNumDefaultArgTemporaries() const {
John McCall4765fa02010-12-06 08:20:24 +00001371 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(getInit()))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001372 return E->getNumTemporaries();
1373
Argyrios Kyrtzidisc37929c2009-07-14 03:20:21 +00001374 return 0;
Douglas Gregor275a3692009-03-10 23:43:53 +00001375}
1376
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001377CXXTemporary *ParmVarDecl::getDefaultArgTemporary(unsigned i) {
1378 assert(getNumDefaultArgTemporaries() &&
1379 "Default arguments does not have any temporaries!");
1380
John McCall4765fa02010-12-06 08:20:24 +00001381 ExprWithCleanups *E = cast<ExprWithCleanups>(getInit());
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001382 return E->getTemporary(i);
1383}
1384
1385SourceRange ParmVarDecl::getDefaultArgRange() const {
1386 if (const Expr *E = getInit())
1387 return E->getSourceRange();
1388
1389 if (hasUninstantiatedDefaultArg())
1390 return getUninstantiatedDefaultArg()->getSourceRange();
1391
1392 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00001393}
1394
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00001395bool ParmVarDecl::isParameterPack() const {
1396 return isa<PackExpansionType>(getType());
1397}
1398
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001399//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00001400// FunctionDecl Implementation
1401//===----------------------------------------------------------------------===//
1402
Douglas Gregorda2142f2011-02-19 18:51:44 +00001403void FunctionDecl::getNameForDiagnostic(std::string &S,
1404 const PrintingPolicy &Policy,
1405 bool Qualified) const {
1406 NamedDecl::getNameForDiagnostic(S, Policy, Qualified);
1407 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
1408 if (TemplateArgs)
1409 S += TemplateSpecializationType::PrintTemplateArgumentList(
1410 TemplateArgs->data(),
1411 TemplateArgs->size(),
1412 Policy);
1413
1414}
1415
Ted Kremenek9498d382010-04-29 16:49:01 +00001416bool FunctionDecl::isVariadic() const {
1417 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
1418 return FT->isVariadic();
1419 return false;
1420}
1421
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001422bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
1423 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00001424 if (I->Body || I->IsLateTemplateParsed) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001425 Definition = *I;
1426 return true;
1427 }
1428 }
1429
1430 return false;
1431}
1432
Anders Carlssonffb945f2011-05-14 23:26:09 +00001433bool FunctionDecl::hasTrivialBody() const
1434{
1435 Stmt *S = getBody();
1436 if (!S) {
1437 // Since we don't have a body for this function, we don't know if it's
1438 // trivial or not.
1439 return false;
1440 }
1441
1442 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
1443 return true;
1444 return false;
1445}
1446
Sean Hunt10620eb2011-05-06 20:44:56 +00001447bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
1448 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Sean Huntcd10dec2011-05-23 23:14:04 +00001449 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) {
Sean Hunt10620eb2011-05-06 20:44:56 +00001450 Definition = I->IsDeleted ? I->getCanonicalDecl() : *I;
1451 return true;
1452 }
1453 }
1454
1455 return false;
1456}
1457
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001458Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Argyrios Kyrtzidisc37929c2009-07-14 03:20:21 +00001459 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1460 if (I->Body) {
1461 Definition = *I;
1462 return I->Body.get(getASTContext().getExternalSource());
Francois Pichet8387e2a2011-04-22 22:18:13 +00001463 } else if (I->IsLateTemplateParsed) {
1464 Definition = *I;
1465 return 0;
Douglas Gregorf0097952008-04-21 02:02:58 +00001466 }
1467 }
1468
1469 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001470}
1471
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001472void FunctionDecl::setBody(Stmt *B) {
1473 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00001474 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001475 EndRangeLoc = B->getLocEnd();
1476}
1477
Douglas Gregor21386642010-09-28 21:55:22 +00001478void FunctionDecl::setPure(bool P) {
1479 IsPure = P;
1480 if (P)
1481 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
1482 Parent->markedVirtualFunctionPure();
1483}
1484
Douglas Gregor48a83b52009-09-12 00:17:51 +00001485bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00001486 const TranslationUnitDecl *tunit =
1487 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
1488 return tunit &&
Sean Hunt55878032011-05-15 20:59:31 +00001489 !tunit->getASTContext().getLangOptions().Freestanding &&
John McCall23c608d2011-05-15 17:49:20 +00001490 getIdentifier() &&
1491 getIdentifier()->isStr("main");
1492}
1493
1494bool FunctionDecl::isReservedGlobalPlacementOperator() const {
1495 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
1496 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
1497 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
1498 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
1499 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
1500
1501 if (isa<CXXRecordDecl>(getDeclContext())) return false;
1502 assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
1503
1504 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
1505 if (proto->getNumArgs() != 2 || proto->isVariadic()) return false;
1506
1507 ASTContext &Context =
1508 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
1509 ->getASTContext();
1510
1511 // The result type and first argument type are constant across all
1512 // these operators. The second argument must be exactly void*.
1513 return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00001514}
1515
Douglas Gregor48a83b52009-09-12 00:17:51 +00001516bool FunctionDecl::isExternC() const {
1517 ASTContext &Context = getASTContext();
Douglas Gregor63935192009-03-02 00:19:53 +00001518 // In C, any non-static, non-overloadable function has external
1519 // linkage.
1520 if (!Context.getLangOptions().CPlusPlus)
John McCalld931b082010-08-26 03:08:43 +00001521 return getStorageClass() != SC_Static && !getAttr<OverloadableAttr>();
Douglas Gregor63935192009-03-02 00:19:53 +00001522
Chandler Carruth10aad442011-02-25 00:05:02 +00001523 const DeclContext *DC = getDeclContext();
1524 if (DC->isRecord())
1525 return false;
1526
1527 for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
Douglas Gregor63935192009-03-02 00:19:53 +00001528 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC)) {
1529 if (Linkage->getLanguage() == LinkageSpecDecl::lang_c)
John McCalld931b082010-08-26 03:08:43 +00001530 return getStorageClass() != SC_Static &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001531 !getAttr<OverloadableAttr>();
Douglas Gregor63935192009-03-02 00:19:53 +00001532
1533 break;
1534 }
1535 }
1536
Douglas Gregor0bab54c2010-10-21 16:57:46 +00001537 return isMain();
Douglas Gregor63935192009-03-02 00:19:53 +00001538}
1539
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001540bool FunctionDecl::isGlobal() const {
1541 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
1542 return Method->isStatic();
1543
John McCalld931b082010-08-26 03:08:43 +00001544 if (getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001545 return false;
1546
Mike Stump1eb44332009-09-09 15:08:12 +00001547 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001548 DC->isNamespace();
1549 DC = DC->getParent()) {
1550 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
1551 if (!Namespace->getDeclName())
1552 return false;
1553 break;
1554 }
1555 }
1556
1557 return true;
1558}
1559
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001560void
1561FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
1562 redeclarable_base::setPreviousDeclaration(PrevDecl);
1563
1564 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
1565 FunctionTemplateDecl *PrevFunTmpl
1566 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0;
1567 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
1568 FunTmpl->setPreviousDeclaration(PrevFunTmpl);
1569 }
Douglas Gregor8f150942010-12-09 16:59:22 +00001570
1571 if (PrevDecl->IsInline)
1572 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001573}
1574
1575const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
1576 return getFirstDeclaration();
1577}
1578
1579FunctionDecl *FunctionDecl::getCanonicalDecl() {
1580 return getFirstDeclaration();
1581}
1582
Douglas Gregor381d34e2010-12-06 18:36:25 +00001583void FunctionDecl::setStorageClass(StorageClass SC) {
1584 assert(isLegalForFunction(SC));
1585 if (getStorageClass() != SC)
1586 ClearLinkageCache();
1587
1588 SClass = SC;
1589}
1590
Douglas Gregor3e41d602009-02-13 23:20:09 +00001591/// \brief Returns a value indicating whether this function
1592/// corresponds to a builtin function.
1593///
1594/// The function corresponds to a built-in function if it is
1595/// declared at translation scope or within an extern "C" block and
1596/// its name matches with the name of a builtin. The returned value
1597/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00001598/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00001599/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001600unsigned FunctionDecl::getBuiltinID() const {
1601 ASTContext &Context = getASTContext();
Douglas Gregor3c385e52009-02-14 18:57:46 +00001602 if (!getIdentifier() || !getIdentifier()->getBuiltinID())
1603 return 0;
1604
1605 unsigned BuiltinID = getIdentifier()->getBuiltinID();
1606 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
1607 return BuiltinID;
1608
1609 // This function has the name of a known C library
1610 // function. Determine whether it actually refers to the C library
1611 // function or whether it just has the same name.
1612
Douglas Gregor9add3172009-02-17 03:23:10 +00001613 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00001614 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00001615 return 0;
1616
Douglas Gregor3c385e52009-02-14 18:57:46 +00001617 // If this function is at translation-unit scope and we're not in
1618 // C++, it refers to the C library function.
1619 if (!Context.getLangOptions().CPlusPlus &&
1620 getDeclContext()->isTranslationUnit())
1621 return BuiltinID;
1622
1623 // If the function is in an extern "C" linkage specification and is
1624 // not marked "overloadable", it's the real function.
1625 if (isa<LinkageSpecDecl>(getDeclContext()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001626 cast<LinkageSpecDecl>(getDeclContext())->getLanguage()
Douglas Gregor3c385e52009-02-14 18:57:46 +00001627 == LinkageSpecDecl::lang_c &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001628 !getAttr<OverloadableAttr>())
Douglas Gregor3c385e52009-02-14 18:57:46 +00001629 return BuiltinID;
1630
1631 // Not a builtin
Douglas Gregor3e41d602009-02-13 23:20:09 +00001632 return 0;
1633}
1634
1635
Chris Lattner1ad9b282009-04-25 06:03:53 +00001636/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00001637/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00001638/// after it has been created.
1639unsigned FunctionDecl::getNumParams() const {
John McCall183700f2009-09-21 23:43:11 +00001640 const FunctionType *FT = getType()->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001641 if (isa<FunctionNoProtoType>(FT))
Chris Lattnerd3b90652008-03-15 05:43:15 +00001642 return 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001643 return cast<FunctionProtoType>(FT)->getNumArgs();
Mike Stump1eb44332009-09-09 15:08:12 +00001644
Reid Spencer5f016e22007-07-11 17:01:13 +00001645}
1646
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001647void FunctionDecl::setParams(ASTContext &C,
1648 ParmVarDecl **NewParamInfo, unsigned NumParams) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001649 assert(ParamInfo == 0 && "Already has param info!");
Chris Lattner2dbd2852009-04-25 06:12:16 +00001650 assert(NumParams == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00001651
Reid Spencer5f016e22007-07-11 17:01:13 +00001652 // Zero params -> null pointer.
1653 if (NumParams) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001654 void *Mem = C.Allocate(sizeof(ParmVarDecl*)*NumParams);
Ted Kremenekfc767612009-01-14 00:42:25 +00001655 ParamInfo = new (Mem) ParmVarDecl*[NumParams];
Reid Spencer5f016e22007-07-11 17:01:13 +00001656 memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams);
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001657
Argyrios Kyrtzidis96888cc2009-06-23 00:42:00 +00001658 // Update source range. The check below allows us to set EndRangeLoc before
1659 // setting the parameters.
Argyrios Kyrtzidiscb5f8f52009-06-23 00:42:15 +00001660 if (EndRangeLoc.isInvalid() || EndRangeLoc == getLocation())
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001661 EndRangeLoc = NewParamInfo[NumParams-1]->getLocEnd();
Reid Spencer5f016e22007-07-11 17:01:13 +00001662 }
1663}
1664
Chris Lattner8123a952008-04-10 02:22:51 +00001665/// getMinRequiredArguments - Returns the minimum number of arguments
1666/// needed to call this function. This may be fewer than the number of
1667/// function parameters, if some of the parameters have default
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001668/// arguments (in C++) or the last parameter is a parameter pack.
Chris Lattner8123a952008-04-10 02:22:51 +00001669unsigned FunctionDecl::getMinRequiredArguments() const {
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001670 if (!getASTContext().getLangOptions().CPlusPlus)
1671 return getNumParams();
1672
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001673 unsigned NumRequiredArgs = getNumParams();
1674
1675 // If the last parameter is a parameter pack, we don't need an argument for
1676 // it.
1677 if (NumRequiredArgs > 0 &&
1678 getParamDecl(NumRequiredArgs - 1)->isParameterPack())
1679 --NumRequiredArgs;
1680
1681 // If this parameter has a default argument, we don't need an argument for
1682 // it.
1683 while (NumRequiredArgs > 0 &&
1684 getParamDecl(NumRequiredArgs-1)->hasDefaultArg())
Chris Lattner8123a952008-04-10 02:22:51 +00001685 --NumRequiredArgs;
1686
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001687 // We might have parameter packs before the end. These can't be deduced,
1688 // but they can still handle multiple arguments.
1689 unsigned ArgIdx = NumRequiredArgs;
1690 while (ArgIdx > 0) {
1691 if (getParamDecl(ArgIdx - 1)->isParameterPack())
1692 NumRequiredArgs = ArgIdx;
1693
1694 --ArgIdx;
1695 }
1696
Chris Lattner8123a952008-04-10 02:22:51 +00001697 return NumRequiredArgs;
1698}
1699
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001700bool FunctionDecl::isInlined() const {
Douglas Gregor8f150942010-12-09 16:59:22 +00001701 if (IsInline)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001702 return true;
Anders Carlsson48eda2c2009-12-04 22:35:50 +00001703
1704 if (isa<CXXMethodDecl>(this)) {
1705 if (!isOutOfLine() || getCanonicalDecl()->isInlineSpecified())
1706 return true;
1707 }
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001708
1709 switch (getTemplateSpecializationKind()) {
1710 case TSK_Undeclared:
1711 case TSK_ExplicitSpecialization:
1712 return false;
1713
1714 case TSK_ImplicitInstantiation:
1715 case TSK_ExplicitInstantiationDeclaration:
1716 case TSK_ExplicitInstantiationDefinition:
1717 // Handle below.
1718 break;
1719 }
1720
1721 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001722 bool HasPattern = false;
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001723 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001724 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001725
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001726 if (HasPattern && PatternDecl)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001727 return PatternDecl->isInlined();
1728
1729 return false;
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001730}
1731
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001732/// \brief For an inline function definition in C or C++, determine whether the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001733/// definition will be externally visible.
1734///
1735/// Inline function definitions are always available for inlining optimizations.
1736/// However, depending on the language dialect, declaration specifiers, and
1737/// attributes, the definition of an inline function may or may not be
1738/// "externally" visible to other translation units in the program.
1739///
1740/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00001741/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001742/// inline definition becomes externally visible (C99 6.7.4p6).
1743///
1744/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
1745/// definition, we use the GNU semantics for inline, which are nearly the
1746/// opposite of C99 semantics. In particular, "inline" by itself will create
1747/// an externally visible symbol, but "extern inline" will not create an
1748/// externally visible symbol.
1749bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00001750 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001751 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001752 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001753
Rafael Espindolafb3f4aa2011-06-02 16:13:27 +00001754 if (Context.getLangOptions().GNUInline || hasAttr<GNUInlineAttr>()) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001755 // If it's not the case that both 'inline' and 'extern' are
1756 // specified on the definition, then this inline definition is
1757 // externally visible.
1758 if (!(isInlineSpecified() && getStorageClassAsWritten() == SC_Extern))
1759 return true;
1760
1761 // If any declaration is 'inline' but not 'extern', then this definition
1762 // is externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001763 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1764 Redecl != RedeclEnd;
1765 ++Redecl) {
Douglas Gregor8f150942010-12-09 16:59:22 +00001766 if (Redecl->isInlineSpecified() &&
1767 Redecl->getStorageClassAsWritten() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001768 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00001769 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001770
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001771 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001772 }
1773
1774 // C99 6.7.4p6:
1775 // [...] If all of the file scope declarations for a function in a
1776 // translation unit include the inline function specifier without extern,
1777 // then the definition in that translation unit is an inline definition.
1778 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
1779 Redecl != RedeclEnd;
1780 ++Redecl) {
1781 // Only consider file-scope declarations in this test.
1782 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
1783 continue;
1784
John McCalld931b082010-08-26 03:08:43 +00001785 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001786 return true; // Not an inline definition
1787 }
1788
1789 // C99 6.7.4p6:
1790 // An inline definition does not provide an external definition for the
1791 // function, and does not forbid an external definition in another
1792 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00001793 return false;
1794}
1795
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001796/// getOverloadedOperator - Which C++ overloaded operator this
1797/// function represents, if any.
1798OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00001799 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
1800 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001801 else
1802 return OO_None;
1803}
1804
Sean Hunta6c058d2010-01-13 09:01:02 +00001805/// getLiteralIdentifier - The literal suffix identifier this function
1806/// represents, if any.
1807const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
1808 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
1809 return getDeclName().getCXXLiteralIdentifier();
1810 else
1811 return 0;
1812}
1813
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00001814FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
1815 if (TemplateOrSpecialization.isNull())
1816 return TK_NonTemplate;
1817 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
1818 return TK_FunctionTemplate;
1819 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
1820 return TK_MemberSpecialization;
1821 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
1822 return TK_FunctionTemplateSpecialization;
1823 if (TemplateOrSpecialization.is
1824 <DependentFunctionTemplateSpecializationInfo*>())
1825 return TK_DependentFunctionTemplateSpecialization;
1826
1827 assert(false && "Did we miss a TemplateOrSpecialization type?");
1828 return TK_NonTemplate;
1829}
1830
Douglas Gregor2db32322009-10-07 23:56:10 +00001831FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001832 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00001833 return cast<FunctionDecl>(Info->getInstantiatedFrom());
1834
1835 return 0;
1836}
1837
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001838MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
1839 return TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
1840}
1841
Douglas Gregor2db32322009-10-07 23:56:10 +00001842void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001843FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
1844 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00001845 TemplateSpecializationKind TSK) {
1846 assert(TemplateOrSpecialization.isNull() &&
1847 "Member function is already a specialization");
1848 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001849 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00001850 TemplateOrSpecialization = Info;
1851}
1852
Douglas Gregor3b846b62009-10-27 20:53:28 +00001853bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00001854 // If the function is invalid, it can't be implicitly instantiated.
1855 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00001856 return false;
1857
1858 switch (getTemplateSpecializationKind()) {
1859 case TSK_Undeclared:
1860 case TSK_ExplicitSpecialization:
1861 case TSK_ExplicitInstantiationDefinition:
1862 return false;
1863
1864 case TSK_ImplicitInstantiation:
1865 return true;
1866
1867 case TSK_ExplicitInstantiationDeclaration:
1868 // Handled below.
1869 break;
1870 }
1871
1872 // Find the actual template from which we will instantiate.
1873 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001874 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00001875 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001876 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00001877
1878 // C++0x [temp.explicit]p9:
1879 // Except for inline functions, other explicit instantiation declarations
1880 // have the effect of suppressing the implicit instantiation of the entity
1881 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001882 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00001883 return true;
1884
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001885 return PatternDecl->isInlined();
Douglas Gregor3b846b62009-10-27 20:53:28 +00001886}
1887
1888FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
1889 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
1890 while (Primary->getInstantiatedFromMemberTemplate()) {
1891 // If we have hit a point where the user provided a specialization of
1892 // this template, we're done looking.
1893 if (Primary->isMemberSpecialization())
1894 break;
1895
1896 Primary = Primary->getInstantiatedFromMemberTemplate();
1897 }
1898
1899 return Primary->getTemplatedDecl();
1900 }
1901
1902 return getInstantiatedFromMemberFunction();
1903}
1904
Douglas Gregor16e8be22009-06-29 17:30:29 +00001905FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00001906 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00001907 = TemplateOrSpecialization
1908 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00001909 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00001910 }
1911 return 0;
1912}
1913
1914const TemplateArgumentList *
1915FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00001916 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00001917 = TemplateOrSpecialization
1918 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00001919 return Info->TemplateArguments;
1920 }
1921 return 0;
1922}
1923
Abramo Bagnarae03db982010-05-20 15:32:11 +00001924const TemplateArgumentListInfo *
1925FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
1926 if (FunctionTemplateSpecializationInfo *Info
1927 = TemplateOrSpecialization
1928 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
1929 return Info->TemplateArgumentsAsWritten;
1930 }
1931 return 0;
1932}
1933
Mike Stump1eb44332009-09-09 15:08:12 +00001934void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001935FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
1936 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00001937 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001938 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00001939 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00001940 const TemplateArgumentListInfo *TemplateArgsAsWritten,
1941 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001942 assert(TSK != TSK_Undeclared &&
1943 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00001944 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00001945 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00001946 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00001947 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
1948 TemplateArgs,
1949 TemplateArgsAsWritten,
1950 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00001951 TemplateOrSpecialization = Info;
Mike Stump1eb44332009-09-09 15:08:12 +00001952
Douglas Gregor127102b2009-06-29 20:59:39 +00001953 // Insert this function template specialization into the set of known
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001954 // function template specializations.
1955 if (InsertPos)
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00001956 Template->addSpecialization(Info, InsertPos);
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001957 else {
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001958 // Try to insert the new node. If there is an existing node, leave it, the
1959 // set will contain the canonical decls while
1960 // FunctionTemplateDecl::findSpecialization will return
1961 // the most recent redeclarations.
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001962 FunctionTemplateSpecializationInfo *Existing
1963 = Template->getSpecializations().GetOrInsertNode(Info);
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001964 (void)Existing;
1965 assert((!Existing || Existing->Function->isCanonicalDecl()) &&
1966 "Set is supposed to only contain canonical decls");
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00001967 }
Douglas Gregor1637be72009-06-26 00:10:03 +00001968}
1969
John McCallaf2094e2010-04-08 09:05:18 +00001970void
1971FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
1972 const UnresolvedSetImpl &Templates,
1973 const TemplateArgumentListInfo &TemplateArgs) {
1974 assert(TemplateOrSpecialization.isNull());
1975 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
1976 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00001977 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00001978 void *Buffer = Context.Allocate(Size);
1979 DependentFunctionTemplateSpecializationInfo *Info =
1980 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
1981 TemplateArgs);
1982 TemplateOrSpecialization = Info;
1983}
1984
1985DependentFunctionTemplateSpecializationInfo::
1986DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
1987 const TemplateArgumentListInfo &TArgs)
1988 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
1989
1990 d.NumTemplates = Ts.size();
1991 d.NumArgs = TArgs.size();
1992
1993 FunctionTemplateDecl **TsArray =
1994 const_cast<FunctionTemplateDecl**>(getTemplates());
1995 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
1996 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
1997
1998 TemplateArgumentLoc *ArgsArray =
1999 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
2000 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
2001 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
2002}
2003
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002004TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002005 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002006 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00002007 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002008 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00002009 if (FTSInfo)
2010 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00002011
Douglas Gregor2db32322009-10-07 23:56:10 +00002012 MemberSpecializationInfo *MSInfo
2013 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2014 if (MSInfo)
2015 return MSInfo->getTemplateSpecializationKind();
2016
2017 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002018}
2019
Mike Stump1eb44332009-09-09 15:08:12 +00002020void
Douglas Gregor0a897e32009-10-15 17:21:20 +00002021FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2022 SourceLocation PointOfInstantiation) {
2023 if (FunctionTemplateSpecializationInfo *FTSInfo
2024 = TemplateOrSpecialization.dyn_cast<
2025 FunctionTemplateSpecializationInfo*>()) {
2026 FTSInfo->setTemplateSpecializationKind(TSK);
2027 if (TSK != TSK_ExplicitSpecialization &&
2028 PointOfInstantiation.isValid() &&
2029 FTSInfo->getPointOfInstantiation().isInvalid())
2030 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
2031 } else if (MemberSpecializationInfo *MSInfo
2032 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
2033 MSInfo->setTemplateSpecializationKind(TSK);
2034 if (TSK != TSK_ExplicitSpecialization &&
2035 PointOfInstantiation.isValid() &&
2036 MSInfo->getPointOfInstantiation().isInvalid())
2037 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2038 } else
2039 assert(false && "Function cannot have a template specialization kind");
2040}
2041
2042SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00002043 if (FunctionTemplateSpecializationInfo *FTSInfo
2044 = TemplateOrSpecialization.dyn_cast<
2045 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002046 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00002047 else if (MemberSpecializationInfo *MSInfo
2048 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002049 return MSInfo->getPointOfInstantiation();
2050
2051 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002052}
2053
Douglas Gregor9f185072009-09-11 20:15:17 +00002054bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00002055 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00002056 return true;
2057
2058 // If this function was instantiated from a member function of a
2059 // class template, check whether that member function was defined out-of-line.
2060 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
2061 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002062 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002063 return Definition->isOutOfLine();
2064 }
2065
2066 // If this function was instantiated from a function template,
2067 // check whether that function template was defined out-of-line.
2068 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
2069 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002070 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002071 return Definition->isOutOfLine();
2072 }
2073
2074 return false;
2075}
2076
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002077SourceRange FunctionDecl::getSourceRange() const {
2078 return SourceRange(getOuterLocStart(), EndRangeLoc);
2079}
2080
Chris Lattner8a934232008-03-31 00:36:02 +00002081//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002082// FieldDecl Implementation
2083//===----------------------------------------------------------------------===//
2084
Jay Foad4ba2a172011-01-12 09:06:06 +00002085FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002086 SourceLocation StartLoc, SourceLocation IdLoc,
2087 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00002088 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2089 bool HasInit) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002090 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smith7a614d82011-06-11 17:19:42 +00002091 BW, Mutable, HasInit);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002092}
2093
2094bool FieldDecl::isAnonymousStructOrUnion() const {
2095 if (!isImplicit() || getDeclName())
2096 return false;
2097
2098 if (const RecordType *Record = getType()->getAs<RecordType>())
2099 return Record->getDecl()->isAnonymousStructOrUnion();
2100
2101 return false;
2102}
2103
John McCallba4f5d52011-01-20 07:57:12 +00002104unsigned FieldDecl::getFieldIndex() const {
2105 if (CachedFieldIndex) return CachedFieldIndex - 1;
2106
2107 unsigned index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002108 const RecordDecl *RD = getParent();
2109 const FieldDecl *LastFD = 0;
2110 bool IsMsStruct = RD->hasAttr<MsStructAttr>();
2111
2112 RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
John McCallba4f5d52011-01-20 07:57:12 +00002113 while (true) {
2114 assert(i != e && "failed to find field in parent!");
2115 if (*i == this)
2116 break;
2117
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002118 if (IsMsStruct) {
2119 // Zero-length bitfields following non-bitfield members are ignored.
Fariborz Jahanian855a8e72011-05-03 20:21:04 +00002120 if (getASTContext().ZeroBitfieldFollowsNonBitfield((*i), LastFD)) {
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002121 ++i;
2122 continue;
2123 }
2124 LastFD = (*i);
2125 }
John McCallba4f5d52011-01-20 07:57:12 +00002126 ++i;
2127 ++index;
2128 }
2129
2130 CachedFieldIndex = index + 1;
2131 return index;
2132}
2133
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002134SourceRange FieldDecl::getSourceRange() const {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002135 if (isBitField())
Richard Smith7a614d82011-06-11 17:19:42 +00002136 return SourceRange(getInnerLocStart(), getBitWidth()->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002137 return DeclaratorDecl::getSourceRange();
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002138}
2139
Richard Smith7a614d82011-06-11 17:19:42 +00002140void FieldDecl::setInClassInitializer(Expr *Init) {
2141 assert(!InitializerOrBitWidth.getPointer() &&
2142 "bit width or initializer already set");
2143 InitializerOrBitWidth.setPointer(Init);
2144 InitializerOrBitWidth.setInt(0);
2145}
2146
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002147//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002148// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002149//===----------------------------------------------------------------------===//
2150
Douglas Gregor1693e152010-07-06 18:42:40 +00002151SourceLocation TagDecl::getOuterLocStart() const {
2152 return getTemplateOrInnerLocStart(this);
2153}
2154
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002155SourceRange TagDecl::getSourceRange() const {
2156 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00002157 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002158}
2159
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002160TagDecl* TagDecl::getCanonicalDecl() {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002161 return getFirstDeclaration();
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002162}
2163
Richard Smith162e1c12011-04-15 14:24:37 +00002164void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
2165 TypedefNameDeclOrQualifier = TDD;
Douglas Gregor60e70642010-05-19 18:39:18 +00002166 if (TypeForDecl)
John McCallf4c73712011-01-19 06:33:43 +00002167 const_cast<Type*>(TypeForDecl)->ClearLinkageCache();
Douglas Gregor381d34e2010-12-06 18:36:25 +00002168 ClearLinkageCache();
Douglas Gregor60e70642010-05-19 18:39:18 +00002169}
2170
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002171void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00002172 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00002173
2174 if (isa<CXXRecordDecl>(this)) {
2175 CXXRecordDecl *D = cast<CXXRecordDecl>(this);
2176 struct CXXRecordDecl::DefinitionData *Data =
2177 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
John McCall22432882010-03-26 21:56:38 +00002178 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I)
2179 cast<CXXRecordDecl>(*I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00002180 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002181}
2182
2183void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00002184 assert((!isa<CXXRecordDecl>(this) ||
2185 cast<CXXRecordDecl>(this)->hasDefinition()) &&
2186 "definition completed but not started");
2187
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002188 IsDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00002189 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002190
2191 if (ASTMutationListener *L = getASTMutationListener())
2192 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002193}
2194
Douglas Gregor952b0172010-02-11 01:04:33 +00002195TagDecl* TagDecl::getDefinition() const {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002196 if (isDefinition())
2197 return const_cast<TagDecl *>(this);
Andrew Trick220a9c82010-10-19 21:54:32 +00002198 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
2199 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002200
2201 for (redecl_iterator R = redecls_begin(), REnd = redecls_end();
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002202 R != REnd; ++R)
2203 if (R->isDefinition())
2204 return *R;
Mike Stump1eb44332009-09-09 15:08:12 +00002205
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002206 return 0;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002207}
2208
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002209void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
2210 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00002211 // Make sure the extended qualifier info is allocated.
2212 if (!hasExtInfo())
Richard Smith162e1c12011-04-15 14:24:37 +00002213 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00002214 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002215 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00002216 }
2217 else {
2218 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00002219 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002220 if (getExtInfo()->NumTemplParamLists == 0) {
2221 getASTContext().Deallocate(getExtInfo());
Richard Smith162e1c12011-04-15 14:24:37 +00002222 TypedefNameDeclOrQualifier = (TypedefNameDecl*) 0;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002223 }
2224 else
2225 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00002226 }
2227 }
2228}
2229
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002230void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
2231 unsigned NumTPLists,
2232 TemplateParameterList **TPLists) {
2233 assert(NumTPLists > 0);
2234 // Make sure the extended decl info is allocated.
2235 if (!hasExtInfo())
2236 // Allocate external info struct.
Richard Smith162e1c12011-04-15 14:24:37 +00002237 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002238 // Set the template parameter lists info.
2239 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
2240}
2241
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002242//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002243// EnumDecl Implementation
2244//===----------------------------------------------------------------------===//
2245
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002246EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
2247 SourceLocation StartLoc, SourceLocation IdLoc,
2248 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002249 EnumDecl *PrevDecl, bool IsScoped,
2250 bool IsScopedUsingClassTag, bool IsFixed) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002251 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002252 IsScoped, IsScopedUsingClassTag, IsFixed);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002253 C.getTypeDeclType(Enum, PrevDecl);
2254 return Enum;
2255}
2256
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002257EnumDecl *EnumDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002258 return new (C) EnumDecl(0, SourceLocation(), SourceLocation(), 0, 0,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002259 false, false, false);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002260}
2261
Douglas Gregor838db382010-02-11 01:19:42 +00002262void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00002263 QualType NewPromotionType,
2264 unsigned NumPositiveBits,
2265 unsigned NumNegativeBits) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002266 assert(!isDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002267 if (!IntegerType)
2268 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002269 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00002270 setNumPositiveBits(NumPositiveBits);
2271 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002272 TagDecl::completeDefinition();
2273}
2274
2275//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002276// RecordDecl Implementation
2277//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002278
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002279RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
2280 SourceLocation StartLoc, SourceLocation IdLoc,
2281 IdentifierInfo *Id, RecordDecl *PrevDecl)
2282 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00002283 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002284 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002285 HasObjectMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002286 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00002287 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00002288}
2289
Jay Foad4ba2a172011-01-12 09:06:06 +00002290RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002291 SourceLocation StartLoc, SourceLocation IdLoc,
2292 IdentifierInfo *Id, RecordDecl* PrevDecl) {
2293 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
2294 PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002295 C.getTypeDeclType(R, PrevDecl);
2296 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00002297}
2298
Jay Foad4ba2a172011-01-12 09:06:06 +00002299RecordDecl *RecordDecl::Create(const ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002300 return new (C) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
2301 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002302}
2303
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002304bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002305 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002306 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
2307}
2308
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002309RecordDecl::field_iterator RecordDecl::field_begin() const {
2310 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
2311 LoadFieldsFromExternalStorage();
2312
2313 return field_iterator(decl_iterator(FirstDecl));
2314}
2315
Douglas Gregorda2142f2011-02-19 18:51:44 +00002316/// completeDefinition - Notes that the definition of this type is now
2317/// complete.
2318void RecordDecl::completeDefinition() {
2319 assert(!isDefinition() && "Cannot redefine record!");
2320 TagDecl::completeDefinition();
2321}
2322
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002323void RecordDecl::LoadFieldsFromExternalStorage() const {
2324 ExternalASTSource *Source = getASTContext().getExternalSource();
2325 assert(hasExternalLexicalStorage() && Source && "No external storage?");
2326
2327 // Notify that we have a RecordDecl doing some initialization.
2328 ExternalASTSource::Deserializing TheFields(Source);
2329
2330 llvm::SmallVector<Decl*, 64> Decls;
2331 if (Source->FindExternalLexicalDeclsBy<FieldDecl>(this, Decls))
2332 return;
2333
2334#ifndef NDEBUG
2335 // Check that all decls we got were FieldDecls.
2336 for (unsigned i=0, e=Decls.size(); i != e; ++i)
2337 assert(isa<FieldDecl>(Decls[i]));
2338#endif
2339
2340 LoadedFieldsFromExternalStorage = true;
2341
2342 if (Decls.empty())
2343 return;
2344
2345 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls);
2346}
2347
Steve Naroff56ee6892008-10-08 17:01:13 +00002348//===----------------------------------------------------------------------===//
2349// BlockDecl Implementation
2350//===----------------------------------------------------------------------===//
2351
Douglas Gregor838db382010-02-11 01:19:42 +00002352void BlockDecl::setParams(ParmVarDecl **NewParamInfo,
Steve Naroffe78b8092009-03-13 16:56:44 +00002353 unsigned NParms) {
2354 assert(ParamInfo == 0 && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00002355
Steve Naroffe78b8092009-03-13 16:56:44 +00002356 // Zero params -> null pointer.
2357 if (NParms) {
2358 NumParams = NParms;
Douglas Gregor838db382010-02-11 01:19:42 +00002359 void *Mem = getASTContext().Allocate(sizeof(ParmVarDecl*)*NumParams);
Steve Naroffe78b8092009-03-13 16:56:44 +00002360 ParamInfo = new (Mem) ParmVarDecl*[NumParams];
2361 memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams);
2362 }
2363}
2364
John McCall6b5a61b2011-02-07 10:33:21 +00002365void BlockDecl::setCaptures(ASTContext &Context,
2366 const Capture *begin,
2367 const Capture *end,
2368 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00002369 CapturesCXXThis = capturesCXXThis;
2370
2371 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00002372 NumCaptures = 0;
2373 Captures = 0;
John McCall469a1eb2011-02-02 13:00:07 +00002374 return;
2375 }
2376
John McCall6b5a61b2011-02-07 10:33:21 +00002377 NumCaptures = end - begin;
2378
2379 // Avoid new Capture[] because we don't want to provide a default
2380 // constructor.
2381 size_t allocationSize = NumCaptures * sizeof(Capture);
2382 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
2383 memcpy(buffer, begin, allocationSize);
2384 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00002385}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002386
John McCall204e1332011-06-15 22:51:16 +00002387bool BlockDecl::capturesVariable(const VarDecl *variable) const {
2388 for (capture_const_iterator
2389 i = capture_begin(), e = capture_end(); i != e; ++i)
2390 // Only auto vars can be captured, so no redeclaration worries.
2391 if (i->getVariable() == variable)
2392 return true;
2393
2394 return false;
2395}
2396
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00002397SourceRange BlockDecl::getSourceRange() const {
2398 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
2399}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002400
2401//===----------------------------------------------------------------------===//
2402// Other Decl Allocation/Deallocation Method Implementations
2403//===----------------------------------------------------------------------===//
2404
2405TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
2406 return new (C) TranslationUnitDecl(C);
2407}
2408
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002409LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00002410 SourceLocation IdentL, IdentifierInfo *II) {
2411 return new (C) LabelDecl(DC, IdentL, II, 0, IdentL);
2412}
2413
2414LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
2415 SourceLocation IdentL, IdentifierInfo *II,
2416 SourceLocation GnuLabelL) {
2417 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
2418 return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002419}
2420
2421
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002422NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00002423 SourceLocation StartLoc,
2424 SourceLocation IdLoc, IdentifierInfo *Id) {
2425 return new (C) NamespaceDecl(DC, StartLoc, IdLoc, Id);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002426}
2427
Douglas Gregor06c91932010-10-27 19:49:05 +00002428NamespaceDecl *NamespaceDecl::getNextNamespace() {
2429 return dyn_cast_or_null<NamespaceDecl>(
2430 NextNamespace.get(getASTContext().getExternalSource()));
2431}
2432
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002433ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002434 SourceLocation IdLoc,
2435 IdentifierInfo *Id,
2436 QualType Type) {
2437 return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002438}
2439
2440FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002441 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002442 const DeclarationNameInfo &NameInfo,
2443 QualType T, TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002444 StorageClass SC, StorageClass SCAsWritten,
Douglas Gregor8f150942010-12-09 16:59:22 +00002445 bool isInlineSpecified,
2446 bool hasWrittenPrototype) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002447 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo,
2448 T, TInfo, SC, SCAsWritten,
2449 isInlineSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002450 New->HasWrittenPrototype = hasWrittenPrototype;
2451 return New;
2452}
2453
2454BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
2455 return new (C) BlockDecl(DC, L);
2456}
2457
2458EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
2459 SourceLocation L,
2460 IdentifierInfo *Id, QualType T,
2461 Expr *E, const llvm::APSInt &V) {
2462 return new (C) EnumConstantDecl(CD, L, Id, T, E, V);
2463}
2464
Benjamin Kramerd9811462010-11-21 14:11:41 +00002465IndirectFieldDecl *
2466IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
2467 IdentifierInfo *Id, QualType T, NamedDecl **CH,
2468 unsigned CHS) {
Francois Pichet87c2e122010-11-21 06:08:52 +00002469 return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
2470}
2471
Douglas Gregor8e7139c2010-09-01 20:41:53 +00002472SourceRange EnumConstantDecl::getSourceRange() const {
2473 SourceLocation End = getLocation();
2474 if (Init)
2475 End = Init->getLocEnd();
2476 return SourceRange(getLocation(), End);
2477}
2478
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002479TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00002480 SourceLocation StartLoc, SourceLocation IdLoc,
2481 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
2482 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002483}
2484
Richard Smith162e1c12011-04-15 14:24:37 +00002485TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
2486 SourceLocation StartLoc,
2487 SourceLocation IdLoc, IdentifierInfo *Id,
2488 TypeSourceInfo *TInfo) {
2489 return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo);
2490}
2491
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002492SourceRange TypedefDecl::getSourceRange() const {
2493 SourceLocation RangeEnd = getLocation();
2494 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
2495 if (typeIsPostfix(TInfo->getType()))
2496 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2497 }
2498 return SourceRange(getLocStart(), RangeEnd);
2499}
2500
Richard Smith162e1c12011-04-15 14:24:37 +00002501SourceRange TypeAliasDecl::getSourceRange() const {
2502 SourceLocation RangeEnd = getLocStart();
2503 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
2504 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2505 return SourceRange(getLocStart(), RangeEnd);
2506}
2507
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002508FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002509 StringLiteral *Str,
2510 SourceLocation AsmLoc,
2511 SourceLocation RParenLoc) {
2512 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002513}