blob: 979971c7c391dcaf1ddc6c71b44151cd02dd6446 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Argyrios Kyrtzidise184bae2008-06-04 13:04:04 +000010// This file implements the Decl subclasses.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Decl.h"
Douglas Gregor2a3009a2009-02-03 19:21:40 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff0de21fd2009-02-22 19:35:57 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregor7da97d02009-05-10 22:57:19 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000018#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidisb17166c2009-08-19 01:27:32 +000019#include "clang/AST/TypeLoc.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000020#include "clang/AST/Stmt.h"
Nuno Lopes99f06ba2008-12-17 23:39:55 +000021#include "clang/AST/Expr.h"
Anders Carlsson337cba42009-12-15 19:16:31 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000023#include "clang/AST/PrettyPrinter.h"
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +000024#include "clang/AST/ASTMutationListener.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000025#include "clang/Basic/Builtins.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000026#include "clang/Basic/IdentifierTable.h"
Douglas Gregor15de72c2011-12-02 23:23:56 +000027#include "clang/Basic/Module.h"
Abramo Bagnara465d41b2010-05-11 21:36:43 +000028#include "clang/Basic/Specifiers.h"
Douglas Gregor4421d2b2011-03-26 12:10:19 +000029#include "clang/Basic/TargetInfo.h"
John McCallf1bbbb42009-09-04 01:14:41 +000030#include "llvm/Support/ErrorHandling.h"
Ted Kremenek27f8a282008-05-20 00:43:19 +000031
David Blaikie4278c652011-09-21 18:16:56 +000032#include <algorithm>
33
Reid Spencer5f016e22007-07-11 17:01:13 +000034using namespace clang;
35
Chris Lattnerd3b90652008-03-15 05:43:15 +000036//===----------------------------------------------------------------------===//
Douglas Gregor4afa39d2009-01-20 01:17:11 +000037// NamedDecl Implementation
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000038//===----------------------------------------------------------------------===//
39
Douglas Gregor4421d2b2011-03-26 12:10:19 +000040static llvm::Optional<Visibility> getVisibilityOf(const Decl *D) {
41 // If this declaration has an explicit visibility attribute, use it.
42 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
43 switch (A->getVisibility()) {
44 case VisibilityAttr::Default:
45 return DefaultVisibility;
46 case VisibilityAttr::Hidden:
47 return HiddenVisibility;
48 case VisibilityAttr::Protected:
49 return ProtectedVisibility;
50 }
John McCall1fb0caa2010-10-22 21:05:15 +000051 }
Douglas Gregor4421d2b2011-03-26 12:10:19 +000052
53 // If we're on Mac OS X, an 'availability' for Mac OS X attribute
54 // implies visibility(default).
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000055 if (D->getASTContext().getTargetInfo().getTriple().isOSDarwin()) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +000056 for (specific_attr_iterator<AvailabilityAttr>
57 A = D->specific_attr_begin<AvailabilityAttr>(),
58 AEnd = D->specific_attr_end<AvailabilityAttr>();
59 A != AEnd; ++A)
60 if ((*A)->getPlatform()->getName().equals("macosx"))
61 return DefaultVisibility;
62 }
63
64 return llvm::Optional<Visibility>();
John McCall1fb0caa2010-10-22 21:05:15 +000065}
66
John McCallaf146032010-10-30 11:50:40 +000067typedef NamedDecl::LinkageInfo LinkageInfo;
John McCallaf146032010-10-30 11:50:40 +000068
Rafael Espindola093ecc92012-01-14 00:30:36 +000069static LinkageInfo getLVForType(QualType T) {
70 std::pair<Linkage,Visibility> P = T->getLinkageAndVisibility();
71 return LinkageInfo(P.first, P.second, T->isVisibilityExplicit());
72}
73
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +000074/// \brief Get the most restrictive linkage for the types in the given
75/// template parameter list.
Rafael Espindola093ecc92012-01-14 00:30:36 +000076static LinkageInfo
John McCall1fb0caa2010-10-22 21:05:15 +000077getLVForTemplateParameterList(const TemplateParameterList *Params) {
Rafael Espindola093ecc92012-01-14 00:30:36 +000078 LinkageInfo LV(ExternalLinkage, DefaultVisibility, false);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +000079 for (TemplateParameterList::const_iterator P = Params->begin(),
80 PEnd = Params->end();
81 P != PEnd; ++P) {
Douglas Gregor6952f1e2011-01-19 20:10:05 +000082 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
83 if (NTTP->isExpandedParameterPack()) {
84 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
85 QualType T = NTTP->getExpansionType(I);
86 if (!T->isDependentType())
Rafael Espindola093ecc92012-01-14 00:30:36 +000087 LV.merge(getLVForType(T));
Douglas Gregor6952f1e2011-01-19 20:10:05 +000088 }
89 continue;
90 }
Rafael Espindolab5d763d2012-01-02 06:26:22 +000091
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +000092 if (!NTTP->getType()->isDependentType()) {
Rafael Espindola093ecc92012-01-14 00:30:36 +000093 LV.merge(getLVForType(NTTP->getType()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +000094 continue;
95 }
Douglas Gregor6952f1e2011-01-19 20:10:05 +000096 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +000097
98 if (TemplateTemplateParmDecl *TTP
99 = dyn_cast<TemplateTemplateParmDecl>(*P)) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000100 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000101 }
102 }
103
John McCall1fb0caa2010-10-22 21:05:15 +0000104 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000105}
106
Douglas Gregor381d34e2010-12-06 18:36:25 +0000107/// getLVForDecl - Get the linkage and visibility for the given declaration.
Rafael Espindola1266b612012-04-21 23:28:21 +0000108static LinkageInfo getLVForDecl(const NamedDecl *D, bool OnlyTemplate);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000109
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000110/// \brief Get the most restrictive linkage for the types and
111/// declarations in the given template argument list.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000112static LinkageInfo getLVForTemplateArgumentList(const TemplateArgument *Args,
113 unsigned NumArgs,
Rafael Espindola1266b612012-04-21 23:28:21 +0000114 bool OnlyTemplate) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000115 LinkageInfo LV(ExternalLinkage, DefaultVisibility, false);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000116
117 for (unsigned I = 0; I != NumArgs; ++I) {
118 switch (Args[I].getKind()) {
119 case TemplateArgument::Null:
120 case TemplateArgument::Integral:
121 case TemplateArgument::Expression:
122 break;
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000123
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000124 case TemplateArgument::Type:
Rafael Espindola923b0c92012-04-23 17:51:55 +0000125 LV.mergeWithMin(getLVForType(Args[I].getAsType()));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000126 break;
127
128 case TemplateArgument::Declaration:
John McCall1fb0caa2010-10-22 21:05:15 +0000129 // The decl can validly be null as the representation of nullptr
130 // arguments, valid only in C++0x.
131 if (Decl *D = Args[I].getAsDecl()) {
Douglas Gregor89d63e52010-12-06 18:50:56 +0000132 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Rafael Espindola923b0c92012-04-23 17:51:55 +0000133 LV.mergeWithMin(getLVForDecl(ND, OnlyTemplate));
John McCall1fb0caa2010-10-22 21:05:15 +0000134 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000135 break;
136
137 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +0000138 case TemplateArgument::TemplateExpansion:
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000139 if (TemplateDecl *Template
Douglas Gregora7fc9012011-01-05 18:58:31 +0000140 = Args[I].getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Rafael Espindola923b0c92012-04-23 17:51:55 +0000141 LV.mergeWithMin(getLVForDecl(Template, OnlyTemplate));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000142 break;
143
144 case TemplateArgument::Pack:
Rafael Espindola860097c2012-02-23 04:17:32 +0000145 LV.mergeWithMin(getLVForTemplateArgumentList(Args[I].pack_begin(),
146 Args[I].pack_size(),
Rafael Espindola1266b612012-04-21 23:28:21 +0000147 OnlyTemplate));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000148 break;
149 }
150 }
151
John McCall1fb0caa2010-10-22 21:05:15 +0000152 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000153}
154
Rafael Espindola093ecc92012-01-14 00:30:36 +0000155static LinkageInfo
Douglas Gregor381d34e2010-12-06 18:36:25 +0000156getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
Rafael Espindola1266b612012-04-21 23:28:21 +0000157 bool OnlyTemplate) {
158 return getLVForTemplateArgumentList(TArgs.data(), TArgs.size(), OnlyTemplate);
John McCall3cdfc4d2010-08-13 08:35:10 +0000159}
160
Rafael Espindolacae1c622012-05-21 20:31:27 +0000161static bool shouldConsiderTemplateLV(const FunctionDecl *fn,
162 const FunctionTemplateSpecializationInfo *spec) {
163 return !fn->hasAttr<VisibilityAttr>() || spec->isExplicitSpecialization();
John McCall6ce51ee2011-06-27 23:06:04 +0000164}
165
Rafael Espindolaad359be2012-05-25 14:47:05 +0000166static bool
167shouldConsiderTemplateVis(const ClassTemplateSpecializationDecl *d) {
Rafael Espindola0b0ad0a2012-05-21 20:15:56 +0000168 return !d->hasAttr<VisibilityAttr>() || d->isExplicitSpecialization();
John McCall6ce51ee2011-06-27 23:06:04 +0000169}
170
Rafael Espindola1266b612012-04-21 23:28:21 +0000171static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D,
172 bool OnlyTemplate) {
Sebastian Redl7a126a42010-08-31 00:36:30 +0000173 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregord85b5b92009-11-25 22:24:25 +0000174 "Not a name having namespace scope");
175 ASTContext &Context = D->getASTContext();
176
177 // C++ [basic.link]p3:
178 // A name having namespace scope (3.3.6) has internal linkage if it
179 // is the name of
180 // - an object, reference, function or function template that is
181 // explicitly declared static; or,
182 // (This bullet corresponds to C99 6.2.2p3.)
183 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
184 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000185 if (Var->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000186 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000187
188 // - an object or reference that is explicitly declared const
189 // and neither explicitly declared extern nor previously
190 // declared to have external linkage; or
191 // (there is no equivalent in C99)
David Blaikie4e4d0842012-03-11 07:00:24 +0000192 if (Context.getLangOpts().CPlusPlus &&
Eli Friedmane9d65542009-11-26 03:04:01 +0000193 Var->getType().isConstant(Context) &&
John McCalld931b082010-08-26 03:08:43 +0000194 Var->getStorageClass() != SC_Extern &&
195 Var->getStorageClass() != SC_PrivateExtern) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000196 bool FoundExtern = false;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000197 for (const VarDecl *PrevVar = Var->getPreviousDecl();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000198 PrevVar && !FoundExtern;
Douglas Gregoref96ee02012-01-14 16:38:05 +0000199 PrevVar = PrevVar->getPreviousDecl())
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000200 if (isExternalLinkage(PrevVar->getLinkage()))
Douglas Gregord85b5b92009-11-25 22:24:25 +0000201 FoundExtern = true;
202
203 if (!FoundExtern)
John McCallaf146032010-10-30 11:50:40 +0000204 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000205 }
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000206 if (Var->getStorageClass() == SC_None) {
Douglas Gregoref96ee02012-01-14 16:38:05 +0000207 const VarDecl *PrevVar = Var->getPreviousDecl();
208 for (; PrevVar; PrevVar = PrevVar->getPreviousDecl())
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000209 if (PrevVar->getStorageClass() == SC_PrivateExtern)
210 break;
211 if (PrevVar)
212 return PrevVar->getLinkageAndVisibility();
213 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000214 } else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000215 // C++ [temp]p4:
216 // A non-member function template can have internal linkage; any
217 // other template name shall have external linkage.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000218 const FunctionDecl *Function = 0;
219 if (const FunctionTemplateDecl *FunTmpl
220 = dyn_cast<FunctionTemplateDecl>(D))
221 Function = FunTmpl->getTemplatedDecl();
222 else
223 Function = cast<FunctionDecl>(D);
224
225 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000226 if (Function->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000227 return LinkageInfo(InternalLinkage, DefaultVisibility, false);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000228 } else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
229 // - a data member of an anonymous union.
230 if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion())
John McCallaf146032010-10-30 11:50:40 +0000231 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000232 }
233
Chandler Carruth094b6432011-02-24 19:03:39 +0000234 if (D->isInAnonymousNamespace()) {
235 const VarDecl *Var = dyn_cast<VarDecl>(D);
236 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
Eli Friedman750dc2b2012-01-15 01:23:58 +0000237 if ((!Var || !Var->getDeclContext()->isExternCContext()) &&
238 (!Func || !Func->getDeclContext()->isExternCContext()))
Chandler Carruth094b6432011-02-24 19:03:39 +0000239 return LinkageInfo::uniqueExternal();
240 }
John McCalle7bc9722010-10-28 04:18:25 +0000241
John McCall1fb0caa2010-10-22 21:05:15 +0000242 // Set up the defaults.
243
244 // C99 6.2.2p5:
245 // If the declaration of an identifier for an object has file
246 // scope and no storage-class specifier, its linkage is
247 // external.
John McCallaf146032010-10-30 11:50:40 +0000248 LinkageInfo LV;
249
Rafael Espindola1266b612012-04-21 23:28:21 +0000250 if (!OnlyTemplate) {
Rafael Espindolae9836a22012-04-16 18:46:26 +0000251 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility()) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000252 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000253 } else {
254 // If we're declared in a namespace with a visibility attribute,
255 // use that namespace's visibility, but don't call it explicit.
256 for (const DeclContext *DC = D->getDeclContext();
257 !isa<TranslationUnitDecl>(DC);
258 DC = DC->getParent()) {
259 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
260 if (!ND) continue;
261 if (llvm::Optional<Visibility> Vis = ND->getExplicitVisibility()) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000262 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000263 break;
264 }
265 }
266 }
267 }
268
Rafael Espindola1266b612012-04-21 23:28:21 +0000269 if (!OnlyTemplate)
Rafael Espindola4fc14902012-04-19 04:37:16 +0000270 LV.mergeVisibility(Context.getLangOpts().getVisibilityMode());
Rafael Espindolaff257982012-04-19 02:55:01 +0000271
Douglas Gregord85b5b92009-11-25 22:24:25 +0000272 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000273
Douglas Gregord85b5b92009-11-25 22:24:25 +0000274 // A name having namespace scope has external linkage if it is the
275 // name of
276 //
277 // - an object or reference, unless it has internal linkage; or
278 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000279 // GCC applies the following optimization to variables and static
280 // data members, but not to functions:
281 //
John McCall1fb0caa2010-10-22 21:05:15 +0000282 // Modify the variable's LV by the LV of its type unless this is
283 // C or extern "C". This follows from [basic.link]p9:
284 // A type without linkage shall not be used as the type of a
285 // variable or function with external linkage unless
286 // - the entity has C language linkage, or
287 // - the entity is declared within an unnamed namespace, or
288 // - the entity is not used or is defined in the same
289 // translation unit.
290 // and [basic.link]p10:
291 // ...the types specified by all declarations referring to a
292 // given variable or function shall be identical...
293 // C does not have an equivalent rule.
294 //
John McCallac65c622010-10-26 04:59:26 +0000295 // Ignore this if we've got an explicit attribute; the user
296 // probably knows what they're doing.
297 //
John McCall1fb0caa2010-10-22 21:05:15 +0000298 // Note that we don't want to make the variable non-external
299 // because of this, but unique-external linkage suits us.
David Blaikie4e4d0842012-03-11 07:00:24 +0000300 if (Context.getLangOpts().CPlusPlus &&
Eli Friedman750dc2b2012-01-15 01:23:58 +0000301 !Var->getDeclContext()->isExternCContext()) {
Rafael Espindola093ecc92012-01-14 00:30:36 +0000302 LinkageInfo TypeLV = getLVForType(Var->getType());
303 if (TypeLV.linkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000304 return LinkageInfo::uniqueExternal();
Rafael Espindolad70d20a2012-04-19 05:24:05 +0000305 LV.mergeVisibility(TypeLV);
John McCall110e8e52010-10-29 22:22:43 +0000306 }
307
John McCall35cebc32010-11-02 18:38:13 +0000308 if (Var->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000309 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000310
David Blaikie4e4d0842012-03-11 07:00:24 +0000311 if (!Context.getLangOpts().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000312 (Var->getStorageClass() == SC_Extern ||
313 Var->getStorageClass() == SC_PrivateExtern)) {
John McCall1fb0caa2010-10-22 21:05:15 +0000314
Douglas Gregord85b5b92009-11-25 22:24:25 +0000315 // C99 6.2.2p4:
316 // For an identifier declared with the storage-class specifier
317 // extern in a scope in which a prior declaration of that
318 // identifier is visible, if the prior declaration specifies
319 // internal or external linkage, the linkage of the identifier
320 // at the later declaration is the same as the linkage
321 // specified at the prior declaration. If no prior declaration
322 // is visible, or if the prior declaration specifies no
323 // linkage, then the identifier has external linkage.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000324 if (const VarDecl *PrevVar = Var->getPreviousDecl()) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000325 LinkageInfo PrevLV = getLVForDecl(PrevVar, OnlyTemplate);
John McCallaf146032010-10-30 11:50:40 +0000326 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
327 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000328 }
329 }
330
Douglas Gregord85b5b92009-11-25 22:24:25 +0000331 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000332 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000333 // In theory, we can modify the function's LV by the LV of its
334 // type unless it has C linkage (see comment above about variables
335 // for justification). In practice, GCC doesn't do this, so it's
336 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000337
John McCall35cebc32010-11-02 18:38:13 +0000338 if (Function->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000339 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000340
Douglas Gregord85b5b92009-11-25 22:24:25 +0000341 // C99 6.2.2p5:
342 // If the declaration of an identifier for a function has no
343 // storage-class specifier, its linkage is determined exactly
344 // as if it were declared with the storage-class specifier
345 // extern.
David Blaikie4e4d0842012-03-11 07:00:24 +0000346 if (!Context.getLangOpts().CPlusPlus &&
John McCalld931b082010-08-26 03:08:43 +0000347 (Function->getStorageClass() == SC_Extern ||
348 Function->getStorageClass() == SC_PrivateExtern ||
349 Function->getStorageClass() == SC_None)) {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000350 // C99 6.2.2p4:
351 // For an identifier declared with the storage-class specifier
352 // extern in a scope in which a prior declaration of that
353 // identifier is visible, if the prior declaration specifies
354 // internal or external linkage, the linkage of the identifier
355 // at the later declaration is the same as the linkage
356 // specified at the prior declaration. If no prior declaration
357 // is visible, or if the prior declaration specifies no
358 // linkage, then the identifier has external linkage.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000359 if (const FunctionDecl *PrevFunc = Function->getPreviousDecl()) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000360 LinkageInfo PrevLV = getLVForDecl(PrevFunc, OnlyTemplate);
John McCallaf146032010-10-30 11:50:40 +0000361 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
362 LV.mergeVisibility(PrevLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000363 }
364 }
365
John McCallaf8ca372011-02-10 06:50:24 +0000366 // In C++, then if the type of the function uses a type with
367 // unique-external linkage, it's not legally usable from outside
368 // this translation unit. However, we should use the C linkage
369 // rules instead for extern "C" declarations.
David Blaikie4e4d0842012-03-11 07:00:24 +0000370 if (Context.getLangOpts().CPlusPlus &&
Eli Friedman750dc2b2012-01-15 01:23:58 +0000371 !Function->getDeclContext()->isExternCContext() &&
John McCallaf8ca372011-02-10 06:50:24 +0000372 Function->getType()->getLinkage() == UniqueExternalLinkage)
373 return LinkageInfo::uniqueExternal();
374
John McCall6ce51ee2011-06-27 23:06:04 +0000375 // Consider LV from the template and the template arguments unless
376 // this is an explicit specialization with a visibility attribute.
377 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000378 = Function->getTemplateSpecializationInfo()) {
Rafael Espindolacae1c622012-05-21 20:31:27 +0000379 if (shouldConsiderTemplateLV(Function, specInfo)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000380 LV.merge(getLVForDecl(specInfo->getTemplate(),
Rafael Espindola1266b612012-04-21 23:28:21 +0000381 true));
John McCall6ce51ee2011-06-27 23:06:04 +0000382 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
Rafael Espindola1266b612012-04-21 23:28:21 +0000383 LV.mergeWithMin(getLVForTemplateArgumentList(templateArgs,
384 OnlyTemplate));
John McCall6ce51ee2011-06-27 23:06:04 +0000385 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000386 }
387
Douglas Gregord85b5b92009-11-25 22:24:25 +0000388 // - a named class (Clause 9), or an unnamed class defined in a
389 // typedef declaration in which the class has the typedef name
390 // for linkage purposes (7.1.3); or
391 // - a named enumeration (7.2), or an unnamed enumeration
392 // defined in a typedef declaration in which the enumeration
393 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000394 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
395 // Unnamed tags have no linkage.
Richard Smith162e1c12011-04-15 14:24:37 +0000396 if (!Tag->getDeclName() && !Tag->getTypedefNameForAnonDecl())
John McCallaf146032010-10-30 11:50:40 +0000397 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000398
John McCall1fb0caa2010-10-22 21:05:15 +0000399 // If this is a class template specialization, consider the
400 // linkage of the template and template arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000401 if (const ClassTemplateSpecializationDecl *spec
John McCall1fb0caa2010-10-22 21:05:15 +0000402 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
Rafael Espindolaad359be2012-05-25 14:47:05 +0000403 // From the template.
404 LinkageInfo TempLV = getLVForDecl(spec->getSpecializedTemplate(), true);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000405
Rafael Espindolaad359be2012-05-25 14:47:05 +0000406 // The arguments at which the template was instantiated.
407 const TemplateArgumentList &TemplateArgs = spec->getTemplateArgs();
408 LinkageInfo ArgsLV = getLVForTemplateArgumentList(TemplateArgs,
409 OnlyTemplate);
410 if (shouldConsiderTemplateVis(spec)) {
411 LV.merge(TempLV);
412 LV.mergeWithMin(ArgsLV);
413 } else {
414 LV.mergeLinkage(TempLV);
415 LV.mergeLinkage(ArgsLV);
John McCall6ce51ee2011-06-27 23:06:04 +0000416 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000417 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000418
419 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000420 } else if (isa<EnumConstantDecl>(D)) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000421 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
422 OnlyTemplate);
John McCallaf146032010-10-30 11:50:40 +0000423 if (!isExternalLinkage(EnumLV.linkage()))
424 return LinkageInfo::none();
425 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000426
427 // - a template, unless it is a function template that has
428 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000429 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
Rafael Espindola60115a02012-04-22 00:43:48 +0000430 LV.merge(getLVForTemplateParameterList(temp->getTemplateParameters()));
Douglas Gregord85b5b92009-11-25 22:24:25 +0000431 // - a namespace (7.3), unless it is declared within an unnamed
432 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000433 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
434 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000435
John McCall1fb0caa2010-10-22 21:05:15 +0000436 // By extension, we assign external linkage to Objective-C
437 // interfaces.
438 } else if (isa<ObjCInterfaceDecl>(D)) {
439 // fallout
440
441 // Everything not covered here has no linkage.
442 } else {
John McCallaf146032010-10-30 11:50:40 +0000443 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000444 }
445
446 // If we ended up with non-external linkage, visibility should
447 // always be default.
John McCallaf146032010-10-30 11:50:40 +0000448 if (LV.linkage() != ExternalLinkage)
449 return LinkageInfo(LV.linkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000450
John McCall1fb0caa2010-10-22 21:05:15 +0000451 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000452}
453
Rafael Espindola1266b612012-04-21 23:28:21 +0000454static LinkageInfo getLVForClassMember(const NamedDecl *D, bool OnlyTemplate) {
John McCall1fb0caa2010-10-22 21:05:15 +0000455 // Only certain class members have linkage. Note that fields don't
456 // really have linkage, but it's convenient to say they do for the
457 // purposes of calculating linkage of pointer-to-data-member
458 // template arguments.
John McCall3cdfc4d2010-08-13 08:35:10 +0000459 if (!(isa<CXXMethodDecl>(D) ||
460 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000461 isa<FieldDecl>(D) ||
John McCall3cdfc4d2010-08-13 08:35:10 +0000462 (isa<TagDecl>(D) &&
Richard Smith162e1c12011-04-15 14:24:37 +0000463 (D->getDeclName() || cast<TagDecl>(D)->getTypedefNameForAnonDecl()))))
John McCallaf146032010-10-30 11:50:40 +0000464 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000465
John McCall36987482010-11-02 01:45:15 +0000466 LinkageInfo LV;
467
John McCall36987482010-11-02 01:45:15 +0000468 // If we have an explicit visibility attribute, merge that in.
Rafael Espindola1266b612012-04-21 23:28:21 +0000469 if (!OnlyTemplate) {
Rafael Espindola41574542012-04-19 04:27:47 +0000470 if (llvm::Optional<Visibility> Vis = D->getExplicitVisibility())
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000471 LV.mergeVisibility(*Vis, true);
John McCall36987482010-11-02 01:45:15 +0000472 }
Rafael Espindolac7e60602012-04-19 05:50:08 +0000473
474 // If this class member has an explicit visibility attribute, the only
475 // thing that can change its visibility is the template arguments, so
476 // only look for them when processing the the class.
Rafael Espindola1266b612012-04-21 23:28:21 +0000477 bool ClassOnlyTemplate = LV.visibilityExplicit() ? true : OnlyTemplate;
Rafael Espindola0f905902012-04-16 18:25:01 +0000478
479 // If we're paying attention to global visibility, apply
480 // -finline-visibility-hidden if this is an inline method.
481 //
482 // Note that we do this before merging information about
483 // the class visibility.
484 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
485 TemplateSpecializationKind TSK = TSK_Undeclared;
486 if (FunctionTemplateSpecializationInfo *spec
487 = MD->getTemplateSpecializationInfo()) {
488 TSK = spec->getTemplateSpecializationKind();
489 } else if (MemberSpecializationInfo *MSI =
490 MD->getMemberSpecializationInfo()) {
491 TSK = MSI->getTemplateSpecializationKind();
492 }
493
494 const FunctionDecl *Def = 0;
495 // InlineVisibilityHidden only applies to definitions, and
496 // isInlined() only gives meaningful answers on definitions
497 // anyway.
498 if (TSK != TSK_ExplicitInstantiationDeclaration &&
499 TSK != TSK_ExplicitInstantiationDefinition &&
Rafael Espindola1266b612012-04-21 23:28:21 +0000500 !OnlyTemplate &&
Rafael Espindola0f905902012-04-16 18:25:01 +0000501 !LV.visibilityExplicit() &&
502 MD->getASTContext().getLangOpts().InlineVisibilityHidden &&
503 MD->hasBody(Def) && Def->isInlined())
504 LV.mergeVisibility(HiddenVisibility, true);
505 }
John McCallaf146032010-10-30 11:50:40 +0000506
Rafael Espindolac7e60602012-04-19 05:50:08 +0000507 // If this member has an visibility attribute, ClassF will exclude
508 // attributes on the class or command line options, keeping only information
509 // about the template instantiation. If the member has no visibility
510 // attributes, mergeWithMin behaves like merge, so in both cases mergeWithMin
511 // produces the desired result.
Rafael Espindola1266b612012-04-21 23:28:21 +0000512 LV.mergeWithMin(getLVForDecl(cast<RecordDecl>(D->getDeclContext()),
513 ClassOnlyTemplate));
John McCall36987482010-11-02 01:45:15 +0000514 if (!isExternalLinkage(LV.linkage()))
John McCallaf146032010-10-30 11:50:40 +0000515 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000516
517 // If the class already has unique-external linkage, we can't improve.
John McCall36987482010-11-02 01:45:15 +0000518 if (LV.linkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000519 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000520
Rafael Espindola1266b612012-04-21 23:28:21 +0000521 if (!OnlyTemplate)
Rafael Espindola4fc14902012-04-19 04:37:16 +0000522 LV.mergeVisibility(D->getASTContext().getLangOpts().getVisibilityMode());
Rafael Espindolaff257982012-04-19 02:55:01 +0000523
John McCall3cdfc4d2010-08-13 08:35:10 +0000524 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000525 // If the type of the function uses a type with unique-external
526 // linkage, it's not legally usable from outside this translation unit.
527 if (MD->getType()->getLinkage() == UniqueExternalLinkage)
528 return LinkageInfo::uniqueExternal();
529
John McCall1fb0caa2010-10-22 21:05:15 +0000530 // If this is a method template specialization, use the linkage for
531 // the template parameters and arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000532 if (FunctionTemplateSpecializationInfo *spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000533 = MD->getTemplateSpecializationInfo()) {
Rafael Espindolacae1c622012-05-21 20:31:27 +0000534 if (shouldConsiderTemplateLV(MD, spec)) {
Rafael Espindola860097c2012-02-23 04:17:32 +0000535 LV.mergeWithMin(getLVForTemplateArgumentList(*spec->TemplateArguments,
Rafael Espindola1266b612012-04-21 23:28:21 +0000536 OnlyTemplate));
537 if (!OnlyTemplate)
John McCall6ce51ee2011-06-27 23:06:04 +0000538 LV.merge(getLVForTemplateParameterList(
539 spec->getTemplate()->getTemplateParameters()));
540 }
John McCall66cbcf32010-11-01 01:29:57 +0000541 }
John McCall1fb0caa2010-10-22 21:05:15 +0000542
John McCall110e8e52010-10-29 22:22:43 +0000543 // Note that in contrast to basically every other situation, we
544 // *do* apply -fvisibility to method declarations.
545
546 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000547 if (const ClassTemplateSpecializationDecl *spec
John McCall110e8e52010-10-29 22:22:43 +0000548 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
Rafael Espindolaad359be2012-05-25 14:47:05 +0000549 if (shouldConsiderTemplateVis(spec)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000550 // Merge template argument/parameter information for member
551 // class template specializations.
Rafael Espindola860097c2012-02-23 04:17:32 +0000552 LV.mergeWithMin(getLVForTemplateArgumentList(spec->getTemplateArgs(),
Rafael Espindola1266b612012-04-21 23:28:21 +0000553 OnlyTemplate));
Rafael Espindola59073bb2012-05-25 14:17:45 +0000554 if (!OnlyTemplate)
555 LV.merge(getLVForTemplateParameterList(
556 spec->getSpecializedTemplate()->getTemplateParameters()));
John McCall6ce51ee2011-06-27 23:06:04 +0000557 }
John McCall110e8e52010-10-29 22:22:43 +0000558 }
559
John McCall110e8e52010-10-29 22:22:43 +0000560 // Static data members.
561 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
John McCallee301022010-10-30 09:18:49 +0000562 // Modify the variable's linkage by its type, but ignore the
563 // type's visibility unless it's a definition.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000564 LinkageInfo TypeLV = getLVForType(VD->getType());
565 if (TypeLV.linkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000566 LV.mergeLinkage(UniqueExternalLinkage);
Rafael Espindolac7e60602012-04-19 05:50:08 +0000567 LV.mergeVisibility(TypeLV);
John McCall110e8e52010-10-29 22:22:43 +0000568 }
569
John McCall1fb0caa2010-10-22 21:05:15 +0000570 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000571}
572
John McCallf76b0922011-02-08 19:01:05 +0000573static void clearLinkageForClass(const CXXRecordDecl *record) {
574 for (CXXRecordDecl::decl_iterator
575 i = record->decls_begin(), e = record->decls_end(); i != e; ++i) {
576 Decl *child = *i;
577 if (isa<NamedDecl>(child))
578 cast<NamedDecl>(child)->ClearLinkageCache();
579 }
580}
581
David Blaikie99ba9e32011-12-20 02:48:34 +0000582void NamedDecl::anchor() { }
583
John McCallf76b0922011-02-08 19:01:05 +0000584void NamedDecl::ClearLinkageCache() {
585 // Note that we can't skip clearing the linkage of children just
586 // because the parent doesn't have cached linkage: we don't cache
587 // when computing linkage for parent contexts.
588
589 HasCachedLinkage = 0;
590
591 // If we're changing the linkage of a class, we need to reset the
592 // linkage of child declarations, too.
593 if (const CXXRecordDecl *record = dyn_cast<CXXRecordDecl>(this))
594 clearLinkageForClass(record);
595
John McCall15e310a2011-02-19 02:53:41 +0000596 if (ClassTemplateDecl *temp =
597 dyn_cast<ClassTemplateDecl>(const_cast<NamedDecl*>(this))) {
John McCallf76b0922011-02-08 19:01:05 +0000598 // Clear linkage for the template pattern.
599 CXXRecordDecl *record = temp->getTemplatedDecl();
600 record->HasCachedLinkage = 0;
601 clearLinkageForClass(record);
602
John McCall15e310a2011-02-19 02:53:41 +0000603 // We need to clear linkage for specializations, too.
604 for (ClassTemplateDecl::spec_iterator
605 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
606 i->ClearLinkageCache();
John McCallf76b0922011-02-08 19:01:05 +0000607 }
John McCall15e310a2011-02-19 02:53:41 +0000608
609 // Clear cached linkage for function template decls, too.
610 if (FunctionTemplateDecl *temp =
John McCall78951942011-03-22 06:58:49 +0000611 dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this))) {
612 temp->getTemplatedDecl()->ClearLinkageCache();
John McCall15e310a2011-02-19 02:53:41 +0000613 for (FunctionTemplateDecl::spec_iterator
614 i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
615 i->ClearLinkageCache();
John McCall78951942011-03-22 06:58:49 +0000616 }
John McCall15e310a2011-02-19 02:53:41 +0000617
John McCallf76b0922011-02-08 19:01:05 +0000618}
619
Douglas Gregor381d34e2010-12-06 18:36:25 +0000620Linkage NamedDecl::getLinkage() const {
621 if (HasCachedLinkage) {
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000622 assert(Linkage(CachedLinkage) ==
Rafael Espindola1266b612012-04-21 23:28:21 +0000623 getLVForDecl(this, true).linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000624 return Linkage(CachedLinkage);
625 }
626
Rafael Espindola1266b612012-04-21 23:28:21 +0000627 CachedLinkage = getLVForDecl(this, true).linkage();
Douglas Gregor381d34e2010-12-06 18:36:25 +0000628 HasCachedLinkage = 1;
629 return Linkage(CachedLinkage);
630}
631
John McCallaf146032010-10-30 11:50:40 +0000632LinkageInfo NamedDecl::getLinkageAndVisibility() const {
Rafael Espindola1266b612012-04-21 23:28:21 +0000633 LinkageInfo LI = getLVForDecl(this, false);
Benjamin Kramer56ed7922010-12-07 15:51:48 +0000634 assert(!HasCachedLinkage || Linkage(CachedLinkage) == LI.linkage());
Douglas Gregor381d34e2010-12-06 18:36:25 +0000635 HasCachedLinkage = 1;
636 CachedLinkage = LI.linkage();
637 return LI;
John McCall0df95872010-10-29 00:29:13 +0000638}
Ted Kremenekbecc3082010-04-20 23:15:35 +0000639
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000640llvm::Optional<Visibility> NamedDecl::getExplicitVisibility() const {
641 // Use the most recent declaration of a variable.
Rafael Espindola797105a2012-05-16 02:10:38 +0000642 if (const VarDecl *Var = dyn_cast<VarDecl>(this)) {
643 if (llvm::Optional<Visibility> V =
644 getVisibilityOf(Var->getMostRecentDecl()))
645 return V;
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000646
Rafael Espindola797105a2012-05-16 02:10:38 +0000647 if (Var->isStaticDataMember()) {
648 VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
649 if (InstantiatedFrom)
650 return getVisibilityOf(InstantiatedFrom);
651 }
652
653 return llvm::Optional<Visibility>();
654 }
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000655 // Use the most recent declaration of a function, and also handle
656 // function template specializations.
657 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) {
658 if (llvm::Optional<Visibility> V
Douglas Gregoref96ee02012-01-14 16:38:05 +0000659 = getVisibilityOf(fn->getMostRecentDecl()))
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000660 return V;
661
662 // If the function is a specialization of a template with an
663 // explicit visibility attribute, use that.
664 if (FunctionTemplateSpecializationInfo *templateInfo
665 = fn->getTemplateSpecializationInfo())
666 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl());
667
Rafael Espindola860097c2012-02-23 04:17:32 +0000668 // If the function is a member of a specialization of a class template
669 // and the corresponding decl has explicit visibility, use that.
670 FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
671 if (InstantiatedFrom)
672 return getVisibilityOf(InstantiatedFrom);
673
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000674 return llvm::Optional<Visibility>();
675 }
676
677 // Otherwise, just check the declaration itself first.
678 if (llvm::Optional<Visibility> V = getVisibilityOf(this))
679 return V;
680
681 // If there wasn't explicit visibility there, and this is a
682 // specialization of a class template, check for visibility
683 // on the pattern.
684 if (const ClassTemplateSpecializationDecl *spec
685 = dyn_cast<ClassTemplateSpecializationDecl>(this))
686 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl());
687
Rafael Espindola860097c2012-02-23 04:17:32 +0000688 // If this is a member class of a specialization of a class template
689 // and the corresponding decl has explicit visibility, use that.
690 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(this)) {
691 CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
692 if (InstantiatedFrom)
693 return getVisibilityOf(InstantiatedFrom);
694 }
695
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000696 return llvm::Optional<Visibility>();
697}
698
Rafael Espindola1266b612012-04-21 23:28:21 +0000699static LinkageInfo getLVForDecl(const NamedDecl *D, bool OnlyTemplate) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000700 // Objective-C: treat all Objective-C declarations as having external
701 // linkage.
John McCall0df95872010-10-29 00:29:13 +0000702 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +0000703 default:
704 break;
Argyrios Kyrtzidisf8d34ed2011-12-01 01:28:21 +0000705 case Decl::ParmVar:
706 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000707 case Decl::TemplateTemplateParm: // count these as external
708 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000709 case Decl::ObjCAtDefsField:
710 case Decl::ObjCCategory:
711 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000712 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000713 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +0000714 case Decl::ObjCMethod:
715 case Decl::ObjCProperty:
716 case Decl::ObjCPropertyImpl:
717 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +0000718 return LinkageInfo::external();
Douglas Gregor5878cbc2012-02-21 04:17:39 +0000719
720 case Decl::CXXRecord: {
721 const CXXRecordDecl *Record = cast<CXXRecordDecl>(D);
722 if (Record->isLambda()) {
723 if (!Record->getLambdaManglingNumber()) {
724 // This lambda has no mangling number, so it's internal.
725 return LinkageInfo::internal();
726 }
727
728 // This lambda has its linkage/visibility determined by its owner.
729 const DeclContext *DC = D->getDeclContext()->getRedeclContext();
730 if (Decl *ContextDecl = Record->getLambdaContextDecl()) {
731 if (isa<ParmVarDecl>(ContextDecl))
732 DC = ContextDecl->getDeclContext()->getRedeclContext();
733 else
Rafael Espindola1266b612012-04-21 23:28:21 +0000734 return getLVForDecl(cast<NamedDecl>(ContextDecl),
735 OnlyTemplate);
Douglas Gregor5878cbc2012-02-21 04:17:39 +0000736 }
737
738 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC))
Rafael Espindola1266b612012-04-21 23:28:21 +0000739 return getLVForDecl(ND, OnlyTemplate);
Douglas Gregor5878cbc2012-02-21 04:17:39 +0000740
741 return LinkageInfo::external();
742 }
743
744 break;
745 }
Ted Kremenekbecc3082010-04-20 23:15:35 +0000746 }
747
Douglas Gregord85b5b92009-11-25 22:24:25 +0000748 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +0000749 if (D->getDeclContext()->getRedeclContext()->isFileContext())
Rafael Espindola1266b612012-04-21 23:28:21 +0000750 return getLVForNamespaceScopeDecl(D, OnlyTemplate);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000751
752 // C++ [basic.link]p5:
753 // In addition, a member function, static data member, a named
754 // class or enumeration of class scope, or an unnamed class or
755 // enumeration defined in a class-scope typedef declaration such
756 // that the class or enumeration has the typedef name for linkage
757 // purposes (7.1.3), has external linkage if the name of the class
758 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +0000759 if (D->getDeclContext()->isRecord())
Rafael Espindola1266b612012-04-21 23:28:21 +0000760 return getLVForClassMember(D, OnlyTemplate);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000761
762 // C++ [basic.link]p6:
763 // The name of a function declared in block scope and the name of
764 // an object declared by a block scope extern declaration have
765 // linkage. If there is a visible declaration of an entity with
766 // linkage having the same name and type, ignoring entities
767 // declared outside the innermost enclosing namespace scope, the
768 // block scope declaration declares that same entity and receives
769 // the linkage of the previous declaration. If there is more than
770 // one such matching entity, the program is ill-formed. Otherwise,
771 // if no matching entity is found, the block scope entity receives
772 // external linkage.
John McCall0df95872010-10-29 00:29:13 +0000773 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
774 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Eli Friedman750dc2b2012-01-15 01:23:58 +0000775 if (Function->isInAnonymousNamespace() &&
776 !Function->getDeclContext()->isExternCContext())
John McCallaf146032010-10-30 11:50:40 +0000777 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000778
John McCallaf146032010-10-30 11:50:40 +0000779 LinkageInfo LV;
Rafael Espindola1266b612012-04-21 23:28:21 +0000780 if (!OnlyTemplate) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000781 if (llvm::Optional<Visibility> Vis = Function->getExplicitVisibility())
Rafael Espindola5727cf52012-04-19 02:22:07 +0000782 LV.mergeVisibility(*Vis, true);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000783 }
784
Douglas Gregoref96ee02012-01-14 16:38:05 +0000785 if (const FunctionDecl *Prev = Function->getPreviousDecl()) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000786 LinkageInfo PrevLV = getLVForDecl(Prev, OnlyTemplate);
John McCallaf146032010-10-30 11:50:40 +0000787 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
788 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000789 }
790
791 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000792 }
793
John McCall0df95872010-10-29 00:29:13 +0000794 if (const VarDecl *Var = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000795 if (Var->getStorageClass() == SC_Extern ||
796 Var->getStorageClass() == SC_PrivateExtern) {
Eli Friedman750dc2b2012-01-15 01:23:58 +0000797 if (Var->isInAnonymousNamespace() &&
798 !Var->getDeclContext()->isExternCContext())
John McCallaf146032010-10-30 11:50:40 +0000799 return LinkageInfo::uniqueExternal();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000800
John McCallaf146032010-10-30 11:50:40 +0000801 LinkageInfo LV;
John McCall1fb0caa2010-10-22 21:05:15 +0000802 if (Var->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000803 LV.mergeVisibility(HiddenVisibility, true);
Rafael Espindola1266b612012-04-21 23:28:21 +0000804 else if (!OnlyTemplate) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000805 if (llvm::Optional<Visibility> Vis = Var->getExplicitVisibility())
Rafael Espindola5727cf52012-04-19 02:22:07 +0000806 LV.mergeVisibility(*Vis, true);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000807 }
808
Douglas Gregoref96ee02012-01-14 16:38:05 +0000809 if (const VarDecl *Prev = Var->getPreviousDecl()) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000810 LinkageInfo PrevLV = getLVForDecl(Prev, OnlyTemplate);
John McCallaf146032010-10-30 11:50:40 +0000811 if (PrevLV.linkage()) LV.setLinkage(PrevLV.linkage());
812 LV.mergeVisibility(PrevLV);
John McCall1fb0caa2010-10-22 21:05:15 +0000813 }
814
815 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000816 }
817 }
818
819 // C++ [basic.link]p6:
820 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +0000821 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000822}
Douglas Gregord85b5b92009-11-25 22:24:25 +0000823
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000824std::string NamedDecl::getQualifiedNameAsString() const {
Douglas Gregorba103062012-03-27 23:34:16 +0000825 return getQualifiedNameAsString(getASTContext().getPrintingPolicy());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000826}
827
828std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000829 const DeclContext *Ctx = getDeclContext();
830
831 if (Ctx->isFunctionOrMethod())
832 return getNameAsString();
833
Chris Lattner5f9e2722011-07-23 10:55:15 +0000834 typedef SmallVector<const DeclContext *, 8> ContextsTy;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000835 ContextsTy Contexts;
836
837 // Collect contexts.
838 while (Ctx && isa<NamedDecl>(Ctx)) {
839 Contexts.push_back(Ctx);
840 Ctx = Ctx->getParent();
841 };
842
843 std::string QualName;
844 llvm::raw_string_ostream OS(QualName);
845
846 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
847 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +0000848 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000849 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Douglas Gregorf3e7ce42009-05-18 17:01:57 +0000850 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
851 std::string TemplateArgsStr
852 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +0000853 TemplateArgs.data(),
854 TemplateArgs.size(),
Anders Carlsson3a082d82009-09-08 18:24:21 +0000855 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000856 OS << Spec->getName() << TemplateArgsStr;
857 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Sam Weinig6be11202009-12-24 23:15:03 +0000858 if (ND->isAnonymousNamespace())
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000859 OS << "<anonymous namespace>";
Sam Weinig6be11202009-12-24 23:15:03 +0000860 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000861 OS << *ND;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000862 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
863 if (!RD->getIdentifier())
864 OS << "<anonymous " << RD->getKindName() << '>';
865 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000866 OS << *RD;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000867 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Sam Weinig3521d012009-12-28 03:19:38 +0000868 const FunctionProtoType *FT = 0;
869 if (FD->hasWrittenPrototype())
870 FT = dyn_cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>());
871
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000872 OS << *FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +0000873 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +0000874 unsigned NumParams = FD->getNumParams();
875 for (unsigned i = 0; i < NumParams; ++i) {
876 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000877 OS << ", ";
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000878 OS << FD->getParamDecl(i)->getType().stream(P);
Sam Weinig3521d012009-12-28 03:19:38 +0000879 }
880
881 if (FT->isVariadic()) {
882 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000883 OS << ", ";
884 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +0000885 }
886 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000887 OS << ')';
888 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000889 OS << *cast<NamedDecl>(*I);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000890 }
891 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000892 }
893
John McCall8472af42010-03-16 21:48:18 +0000894 if (getDeclName())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000895 OS << *this;
John McCall8472af42010-03-16 21:48:18 +0000896 else
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000897 OS << "<anonymous>";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000898
Benjamin Kramer68eebbb2010-04-28 14:33:51 +0000899 return OS.str();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000900}
901
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000902bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000903 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
904
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000905 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
906 // We want to keep it, unless it nominates same namespace.
907 if (getKind() == Decl::UsingDirective) {
Douglas Gregordb992412011-02-25 16:33:46 +0000908 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
909 ->getOriginalNamespace() ==
910 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
911 ->getOriginalNamespace();
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000912 }
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000914 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
915 // For function declarations, we keep track of redeclarations.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000916 return FD->getPreviousDecl() == OldD;
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000917
Douglas Gregore53060f2009-06-25 22:08:12 +0000918 // For function templates, the underlying function declarations are linked.
919 if (const FunctionTemplateDecl *FunctionTemplate
920 = dyn_cast<FunctionTemplateDecl>(this))
921 if (const FunctionTemplateDecl *OldFunctionTemplate
922 = dyn_cast<FunctionTemplateDecl>(OldD))
923 return FunctionTemplate->getTemplatedDecl()
924 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000925
Steve Naroff0de21fd2009-02-22 19:35:57 +0000926 // For method declarations, we keep track of redeclarations.
927 if (isa<ObjCMethodDecl>(this))
928 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000929
John McCallf36e02d2009-10-09 21:13:30 +0000930 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
931 return true;
932
John McCall9488ea12009-11-17 05:59:44 +0000933 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
934 return cast<UsingShadowDecl>(this)->getTargetDecl() ==
935 cast<UsingShadowDecl>(OldD)->getTargetDecl();
936
Douglas Gregordc355712011-02-25 00:36:19 +0000937 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
938 ASTContext &Context = getASTContext();
939 return Context.getCanonicalNestedNameSpecifier(
940 cast<UsingDecl>(this)->getQualifier()) ==
941 Context.getCanonicalNestedNameSpecifier(
942 cast<UsingDecl>(OldD)->getQualifier());
943 }
Argyrios Kyrtzidisc80117e2010-11-04 08:48:52 +0000944
Douglas Gregor7a537402012-01-03 23:26:26 +0000945 // A typedef of an Objective-C class type can replace an Objective-C class
946 // declaration or definition, and vice versa.
947 if ((isa<TypedefNameDecl>(this) && isa<ObjCInterfaceDecl>(OldD)) ||
948 (isa<ObjCInterfaceDecl>(this) && isa<TypedefNameDecl>(OldD)))
949 return true;
950
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000951 // For non-function declarations, if the declarations are of the
952 // same kind then this must be a redeclaration, or semantic analysis
953 // would not have given us the new declaration.
954 return this->getKind() == OldD->getKind();
955}
956
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000957bool NamedDecl::hasLinkage() const {
Douglas Gregord85b5b92009-11-25 22:24:25 +0000958 return getLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +0000959}
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000960
Daniel Dunbar6daffa52012-03-08 18:20:41 +0000961NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
Anders Carlssone136e0e2009-06-26 06:29:23 +0000962 NamedDecl *ND = this;
Benjamin Kramer56757e92012-03-08 21:00:45 +0000963 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
964 ND = UD->getTargetDecl();
965
966 if (ObjCCompatibleAliasDecl *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
967 return AD->getClassInterface();
968
969 return ND;
Anders Carlssone136e0e2009-06-26 06:29:23 +0000970}
971
John McCall161755a2010-04-06 21:38:20 +0000972bool NamedDecl::isCXXInstanceMember() const {
Douglas Gregor5bc37f62012-03-08 02:08:05 +0000973 if (!isCXXClassMember())
974 return false;
975
John McCall161755a2010-04-06 21:38:20 +0000976 const NamedDecl *D = this;
977 if (isa<UsingShadowDecl>(D))
978 D = cast<UsingShadowDecl>(D)->getTargetDecl();
979
Francois Pichet87c2e122010-11-21 06:08:52 +0000980 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D))
John McCall161755a2010-04-06 21:38:20 +0000981 return true;
982 if (isa<CXXMethodDecl>(D))
983 return cast<CXXMethodDecl>(D)->isInstance();
984 if (isa<FunctionTemplateDecl>(D))
985 return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D)
986 ->getTemplatedDecl())->isInstance();
987 return false;
988}
989
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000990//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000991// DeclaratorDecl Implementation
992//===----------------------------------------------------------------------===//
993
Douglas Gregor1693e152010-07-06 18:42:40 +0000994template <typename DeclT>
995static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
996 if (decl->getNumTemplateParameterLists() > 0)
997 return decl->getTemplateParameterList(0)->getTemplateLoc();
998 else
999 return decl->getInnerLocStart();
1000}
1001
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001002SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +00001003 TypeSourceInfo *TSI = getTypeSourceInfo();
1004 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001005 return SourceLocation();
1006}
1007
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001008void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1009 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00001010 // Make sure the extended decl info is allocated.
1011 if (!hasExtInfo()) {
1012 // Save (non-extended) type source info pointer.
1013 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1014 // Allocate external info struct.
1015 DeclInfo = new (getASTContext()) ExtInfo;
1016 // Restore savedTInfo into (extended) decl info.
1017 getExtInfo()->TInfo = savedTInfo;
1018 }
1019 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001020 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00001021 } else {
John McCallb6217662010-03-15 10:12:16 +00001022 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00001023 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001024 if (getExtInfo()->NumTemplParamLists == 0) {
1025 // Save type source info pointer.
1026 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1027 // Deallocate the extended decl info.
1028 getASTContext().Deallocate(getExtInfo());
1029 // Restore savedTInfo into (non-extended) decl info.
1030 DeclInfo = savedTInfo;
1031 }
1032 else
1033 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001034 }
1035 }
1036}
1037
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001038void
1039DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1040 unsigned NumTPLists,
1041 TemplateParameterList **TPLists) {
1042 assert(NumTPLists > 0);
1043 // Make sure the extended decl info is allocated.
1044 if (!hasExtInfo()) {
1045 // Save (non-extended) type source info pointer.
1046 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1047 // Allocate external info struct.
1048 DeclInfo = new (getASTContext()) ExtInfo;
1049 // Restore savedTInfo into (extended) decl info.
1050 getExtInfo()->TInfo = savedTInfo;
1051 }
1052 // Set the template parameter lists info.
1053 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1054}
1055
Douglas Gregor1693e152010-07-06 18:42:40 +00001056SourceLocation DeclaratorDecl::getOuterLocStart() const {
1057 return getTemplateOrInnerLocStart(this);
1058}
1059
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001060namespace {
1061
1062// Helper function: returns true if QT is or contains a type
1063// having a postfix component.
1064bool typeIsPostfix(clang::QualType QT) {
1065 while (true) {
1066 const Type* T = QT.getTypePtr();
1067 switch (T->getTypeClass()) {
1068 default:
1069 return false;
1070 case Type::Pointer:
1071 QT = cast<PointerType>(T)->getPointeeType();
1072 break;
1073 case Type::BlockPointer:
1074 QT = cast<BlockPointerType>(T)->getPointeeType();
1075 break;
1076 case Type::MemberPointer:
1077 QT = cast<MemberPointerType>(T)->getPointeeType();
1078 break;
1079 case Type::LValueReference:
1080 case Type::RValueReference:
1081 QT = cast<ReferenceType>(T)->getPointeeType();
1082 break;
1083 case Type::PackExpansion:
1084 QT = cast<PackExpansionType>(T)->getPattern();
1085 break;
1086 case Type::Paren:
1087 case Type::ConstantArray:
1088 case Type::DependentSizedArray:
1089 case Type::IncompleteArray:
1090 case Type::VariableArray:
1091 case Type::FunctionProto:
1092 case Type::FunctionNoProto:
1093 return true;
1094 }
1095 }
1096}
1097
1098} // namespace
1099
1100SourceRange DeclaratorDecl::getSourceRange() const {
1101 SourceLocation RangeEnd = getLocation();
1102 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
1103 if (typeIsPostfix(TInfo->getType()))
1104 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1105 }
1106 return SourceRange(getOuterLocStart(), RangeEnd);
1107}
1108
Abramo Bagnara9b934882010-06-12 08:15:14 +00001109void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001110QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1111 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001112 TemplateParameterList **TPLists) {
1113 assert((NumTPLists == 0 || TPLists != 0) &&
1114 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001115
1116 // Free previous template parameters (if any).
1117 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001118 Context.Deallocate(TemplParamLists);
Abramo Bagnara9b934882010-06-12 08:15:14 +00001119 TemplParamLists = 0;
1120 NumTemplParamLists = 0;
1121 }
1122 // Set info on matched template parameter lists (if any).
1123 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001124 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001125 NumTemplParamLists = NumTPLists;
1126 for (unsigned i = NumTPLists; i-- > 0; )
1127 TemplParamLists[i] = TPLists[i];
1128 }
1129}
1130
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001131//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001132// VarDecl Implementation
1133//===----------------------------------------------------------------------===//
1134
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001135const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1136 switch (SC) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00001137 case SC_None: break;
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001138 case SC_Auto: return "auto";
1139 case SC_Extern: return "extern";
1140 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
1141 case SC_PrivateExtern: return "__private_extern__";
1142 case SC_Register: return "register";
1143 case SC_Static: return "static";
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001144 }
1145
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001146 llvm_unreachable("Invalid storage class");
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001147}
1148
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001149VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1150 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001151 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001152 StorageClass S, StorageClass SCAsWritten) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001153 return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S, SCAsWritten);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001154}
1155
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001156VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1157 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(VarDecl));
1158 return new (Mem) VarDecl(Var, 0, SourceLocation(), SourceLocation(), 0,
1159 QualType(), 0, SC_None, SC_None);
1160}
1161
Douglas Gregor381d34e2010-12-06 18:36:25 +00001162void VarDecl::setStorageClass(StorageClass SC) {
1163 assert(isLegalForVariable(SC));
1164 if (getStorageClass() != SC)
1165 ClearLinkageCache();
1166
John McCallf1e4fbf2011-05-01 02:13:58 +00001167 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001168}
1169
Douglas Gregor1693e152010-07-06 18:42:40 +00001170SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001171 if (getInit())
Douglas Gregor1693e152010-07-06 18:42:40 +00001172 return SourceRange(getOuterLocStart(), getInit()->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001173 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001174}
1175
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001176bool VarDecl::isExternC() const {
Eli Friedman750dc2b2012-01-15 01:23:58 +00001177 if (getLinkage() != ExternalLinkage)
Chandler Carruth10aad442011-02-25 00:05:02 +00001178 return false;
1179
Eli Friedman750dc2b2012-01-15 01:23:58 +00001180 const DeclContext *DC = getDeclContext();
1181 if (DC->isRecord())
1182 return false;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001183
Eli Friedman750dc2b2012-01-15 01:23:58 +00001184 ASTContext &Context = getASTContext();
David Blaikie4e4d0842012-03-11 07:00:24 +00001185 if (!Context.getLangOpts().CPlusPlus)
Eli Friedman750dc2b2012-01-15 01:23:58 +00001186 return true;
1187 return DC->isExternCContext();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001188}
1189
1190VarDecl *VarDecl::getCanonicalDecl() {
1191 return getFirstDeclaration();
1192}
1193
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001194VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition(
1195 ASTContext &C) const
1196{
Sebastian Redle9d12b62010-01-31 22:27:38 +00001197 // C++ [basic.def]p2:
1198 // A declaration is a definition unless [...] it contains the 'extern'
1199 // specifier or a linkage-specification and neither an initializer [...],
1200 // it declares a static data member in a class declaration [...].
1201 // C++ [temp.expl.spec]p15:
1202 // An explicit specialization of a static data member of a template is a
1203 // definition if the declaration includes an initializer; otherwise, it is
1204 // a declaration.
1205 if (isStaticDataMember()) {
1206 if (isOutOfLine() && (hasInit() ||
1207 getTemplateSpecializationKind() != TSK_ExplicitSpecialization))
1208 return Definition;
1209 else
1210 return DeclarationOnly;
1211 }
1212 // C99 6.7p5:
1213 // A definition of an identifier is a declaration for that identifier that
1214 // [...] causes storage to be reserved for that object.
1215 // Note: that applies for all non-file-scope objects.
1216 // C99 6.9.2p1:
1217 // If the declaration of an identifier for an object has file scope and an
1218 // initializer, the declaration is an external definition for the identifier
1219 if (hasInit())
1220 return Definition;
1221 // AST for 'extern "C" int foo;' is annotated with 'extern'.
1222 if (hasExternalStorage())
1223 return DeclarationOnly;
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001224
John McCalld931b082010-08-26 03:08:43 +00001225 if (getStorageClassAsWritten() == SC_Extern ||
1226 getStorageClassAsWritten() == SC_PrivateExtern) {
Douglas Gregoref96ee02012-01-14 16:38:05 +00001227 for (const VarDecl *PrevVar = getPreviousDecl();
1228 PrevVar; PrevVar = PrevVar->getPreviousDecl()) {
Fariborz Jahanian2bf6d7b2010-06-21 16:08:37 +00001229 if (PrevVar->getLinkage() == InternalLinkage && PrevVar->hasInit())
1230 return DeclarationOnly;
1231 }
1232 }
Sebastian Redle9d12b62010-01-31 22:27:38 +00001233 // C99 6.9.2p2:
1234 // A declaration of an object that has file scope without an initializer,
1235 // and without a storage class specifier or the scs 'static', constitutes
1236 // a tentative definition.
1237 // No such thing in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00001238 if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
Sebastian Redle9d12b62010-01-31 22:27:38 +00001239 return TentativeDefinition;
1240
1241 // What's left is (in C, block-scope) declarations without initializers or
1242 // external storage. These are definitions.
1243 return Definition;
1244}
1245
Sebastian Redle9d12b62010-01-31 22:27:38 +00001246VarDecl *VarDecl::getActingDefinition() {
1247 DefinitionKind Kind = isThisDeclarationADefinition();
1248 if (Kind != TentativeDefinition)
1249 return 0;
1250
Chris Lattnerf0ed9ef2010-06-14 18:31:46 +00001251 VarDecl *LastTentative = 0;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001252 VarDecl *First = getFirstDeclaration();
1253 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1254 I != E; ++I) {
1255 Kind = (*I)->isThisDeclarationADefinition();
1256 if (Kind == Definition)
1257 return 0;
1258 else if (Kind == TentativeDefinition)
1259 LastTentative = *I;
1260 }
1261 return LastTentative;
1262}
1263
1264bool VarDecl::isTentativeDefinitionNow() const {
1265 DefinitionKind Kind = isThisDeclarationADefinition();
1266 if (Kind != TentativeDefinition)
1267 return false;
1268
1269 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1270 if ((*I)->isThisDeclarationADefinition() == Definition)
1271 return false;
1272 }
Sebastian Redl31310a22010-02-01 20:16:42 +00001273 return true;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001274}
1275
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001276VarDecl *VarDecl::getDefinition(ASTContext &C) {
Sebastian Redle2c52d22010-02-02 17:55:12 +00001277 VarDecl *First = getFirstDeclaration();
1278 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
1279 I != E; ++I) {
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001280 if ((*I)->isThisDeclarationADefinition(C) == Definition)
Sebastian Redl31310a22010-02-01 20:16:42 +00001281 return *I;
1282 }
1283 return 0;
1284}
1285
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001286VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
John McCall110e8e52010-10-29 22:22:43 +00001287 DefinitionKind Kind = DeclarationOnly;
1288
1289 const VarDecl *First = getFirstDeclaration();
1290 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end();
Daniel Dunbar047da192012-03-06 23:52:46 +00001291 I != E; ++I) {
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001292 Kind = std::max(Kind, (*I)->isThisDeclarationADefinition(C));
Daniel Dunbar047da192012-03-06 23:52:46 +00001293 if (Kind == Definition)
1294 break;
1295 }
John McCall110e8e52010-10-29 22:22:43 +00001296
1297 return Kind;
1298}
1299
Sebastian Redl31310a22010-02-01 20:16:42 +00001300const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001301 redecl_iterator I = redecls_begin(), E = redecls_end();
1302 while (I != E && !I->getInit())
1303 ++I;
1304
1305 if (I != E) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001306 D = *I;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001307 return I->getInit();
1308 }
1309 return 0;
1310}
1311
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001312bool VarDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00001313 if (Decl::isOutOfLine())
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001314 return true;
Chandler Carruth8761d682010-02-21 07:08:09 +00001315
1316 if (!isStaticDataMember())
1317 return false;
1318
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001319 // If this static data member was instantiated from a static data member of
1320 // a class template, check whether that static data member was defined
1321 // out-of-line.
1322 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
1323 return VD->isOutOfLine();
1324
1325 return false;
1326}
1327
Douglas Gregor0d035142009-10-27 18:42:08 +00001328VarDecl *VarDecl::getOutOfLineDefinition() {
1329 if (!isStaticDataMember())
1330 return 0;
1331
1332 for (VarDecl::redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
1333 RD != RDEnd; ++RD) {
1334 if (RD->getLexicalDeclContext()->isFileContext())
1335 return *RD;
1336 }
1337
1338 return 0;
1339}
1340
Douglas Gregor838db382010-02-11 01:19:42 +00001341void VarDecl::setInit(Expr *I) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001342 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
1343 Eval->~EvaluatedStmt();
Douglas Gregor838db382010-02-11 01:19:42 +00001344 getASTContext().Deallocate(Eval);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001345 }
1346
1347 Init = I;
1348}
1349
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001350bool VarDecl::isUsableInConstantExpressions(ASTContext &C) const {
David Blaikie4e4d0842012-03-11 07:00:24 +00001351 const LangOptions &Lang = C.getLangOpts();
Richard Smith1d238ea2011-12-21 02:55:12 +00001352
Richard Smith16581332012-03-02 04:14:40 +00001353 if (!Lang.CPlusPlus)
1354 return false;
1355
1356 // In C++11, any variable of reference type can be used in a constant
1357 // expression if it is initialized by a constant expression.
1358 if (Lang.CPlusPlus0x && getType()->isReferenceType())
1359 return true;
1360
1361 // Only const objects can be used in constant expressions in C++. C++98 does
Richard Smith1d238ea2011-12-21 02:55:12 +00001362 // not require the variable to be non-volatile, but we consider this to be a
1363 // defect.
Richard Smith16581332012-03-02 04:14:40 +00001364 if (!getType().isConstQualified() || getType().isVolatileQualified())
Richard Smith1d238ea2011-12-21 02:55:12 +00001365 return false;
1366
1367 // In C++, const, non-volatile variables of integral or enumeration types
1368 // can be used in constant expressions.
1369 if (getType()->isIntegralOrEnumerationType())
1370 return true;
1371
Richard Smith16581332012-03-02 04:14:40 +00001372 // Additionally, in C++11, non-volatile constexpr variables can be used in
1373 // constant expressions.
1374 return Lang.CPlusPlus0x && isConstexpr();
Richard Smith1d238ea2011-12-21 02:55:12 +00001375}
1376
Richard Smith099e7f62011-12-19 06:19:21 +00001377/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
1378/// form, which contains extra information on the evaluated value of the
1379/// initializer.
1380EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
1381 EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>();
1382 if (!Eval) {
1383 Stmt *S = Init.get<Stmt *>();
1384 Eval = new (getASTContext()) EvaluatedStmt;
1385 Eval->Value = S;
1386 Init = Eval;
1387 }
1388 return Eval;
1389}
1390
Richard Smith2d6a5672012-01-14 04:30:29 +00001391APValue *VarDecl::evaluateValue() const {
1392 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
1393 return evaluateValue(Notes);
1394}
1395
1396APValue *VarDecl::evaluateValue(
1397 llvm::SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smith099e7f62011-12-19 06:19:21 +00001398 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1399
1400 // We only produce notes indicating why an initializer is non-constant the
1401 // first time it is evaluated. FIXME: The notes won't always be emitted the
1402 // first time we try evaluation, so might not be produced at all.
1403 if (Eval->WasEvaluated)
Richard Smith2d6a5672012-01-14 04:30:29 +00001404 return Eval->Evaluated.isUninit() ? 0 : &Eval->Evaluated;
Richard Smith099e7f62011-12-19 06:19:21 +00001405
1406 const Expr *Init = cast<Expr>(Eval->Value);
1407 assert(!Init->isValueDependent());
1408
1409 if (Eval->IsEvaluating) {
1410 // FIXME: Produce a diagnostic for self-initialization.
1411 Eval->CheckedICE = true;
1412 Eval->IsICE = false;
Richard Smith2d6a5672012-01-14 04:30:29 +00001413 return 0;
Richard Smith099e7f62011-12-19 06:19:21 +00001414 }
1415
1416 Eval->IsEvaluating = true;
1417
1418 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
1419 this, Notes);
1420
1421 // Ensure the result is an uninitialized APValue if evaluation fails.
1422 if (!Result)
1423 Eval->Evaluated = APValue();
1424
1425 Eval->IsEvaluating = false;
1426 Eval->WasEvaluated = true;
1427
1428 // In C++11, we have determined whether the initializer was a constant
1429 // expression as a side-effect.
David Blaikie4e4d0842012-03-11 07:00:24 +00001430 if (getASTContext().getLangOpts().CPlusPlus0x && !Eval->CheckedICE) {
Richard Smith099e7f62011-12-19 06:19:21 +00001431 Eval->CheckedICE = true;
Eli Friedman210386e2012-02-06 21:50:18 +00001432 Eval->IsICE = Result && Notes.empty();
Richard Smith099e7f62011-12-19 06:19:21 +00001433 }
1434
Richard Smith2d6a5672012-01-14 04:30:29 +00001435 return Result ? &Eval->Evaluated : 0;
Richard Smith099e7f62011-12-19 06:19:21 +00001436}
1437
1438bool VarDecl::checkInitIsICE() const {
John McCall73076432012-01-05 00:13:19 +00001439 // Initializers of weak variables are never ICEs.
1440 if (isWeak())
1441 return false;
1442
Richard Smith099e7f62011-12-19 06:19:21 +00001443 EvaluatedStmt *Eval = ensureEvaluatedStmt();
1444 if (Eval->CheckedICE)
1445 // We have already checked whether this subexpression is an
1446 // integral constant expression.
1447 return Eval->IsICE;
1448
1449 const Expr *Init = cast<Expr>(Eval->Value);
1450 assert(!Init->isValueDependent());
1451
1452 // In C++11, evaluate the initializer to check whether it's a constant
1453 // expression.
David Blaikie4e4d0842012-03-11 07:00:24 +00001454 if (getASTContext().getLangOpts().CPlusPlus0x) {
Richard Smith099e7f62011-12-19 06:19:21 +00001455 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
1456 evaluateValue(Notes);
1457 return Eval->IsICE;
1458 }
1459
1460 // It's an ICE whether or not the definition we found is
1461 // out-of-line. See DR 721 and the discussion in Clang PR
1462 // 6206 for details.
1463
1464 if (Eval->CheckingICE)
1465 return false;
1466 Eval->CheckingICE = true;
1467
1468 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
1469 Eval->CheckingICE = false;
1470 Eval->CheckedICE = true;
1471 return Eval->IsICE;
1472}
1473
Douglas Gregor03e80032011-06-21 17:03:29 +00001474bool VarDecl::extendsLifetimeOfTemporary() const {
Douglas Gregor0b581082011-06-21 18:20:46 +00001475 assert(getType()->isReferenceType() &&"Non-references never extend lifetime");
Douglas Gregor03e80032011-06-21 17:03:29 +00001476
1477 const Expr *E = getInit();
1478 if (!E)
1479 return false;
1480
1481 if (const ExprWithCleanups *Cleanups = dyn_cast<ExprWithCleanups>(E))
1482 E = Cleanups->getSubExpr();
1483
1484 return isa<MaterializeTemporaryExpr>(E);
1485}
1486
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001487VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001488 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001489 return cast<VarDecl>(MSI->getInstantiatedFrom());
1490
1491 return 0;
1492}
1493
Douglas Gregor663b5a02009-10-14 20:14:33 +00001494TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Sebastian Redle9d12b62010-01-31 22:27:38 +00001495 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001496 return MSI->getTemplateSpecializationKind();
1497
1498 return TSK_Undeclared;
1499}
1500
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001501MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001502 return getASTContext().getInstantiatedFromStaticDataMember(this);
1503}
1504
Douglas Gregor0a897e32009-10-15 17:21:20 +00001505void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
1506 SourceLocation PointOfInstantiation) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001507 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001508 assert(MSI && "Not an instantiated static data member?");
1509 MSI->setTemplateSpecializationKind(TSK);
Douglas Gregor0a897e32009-10-15 17:21:20 +00001510 if (TSK != TSK_ExplicitSpecialization &&
1511 PointOfInstantiation.isValid() &&
1512 MSI->getPointOfInstantiation().isInvalid())
1513 MSI->setPointOfInstantiation(PointOfInstantiation);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001514}
1515
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001516//===----------------------------------------------------------------------===//
1517// ParmVarDecl Implementation
1518//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00001519
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001520ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001521 SourceLocation StartLoc,
1522 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001523 QualType T, TypeSourceInfo *TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001524 StorageClass S, StorageClass SCAsWritten,
1525 Expr *DefArg) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001526 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001527 S, SCAsWritten, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00001528}
1529
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001530ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1531 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ParmVarDecl));
1532 return new (Mem) ParmVarDecl(ParmVar, 0, SourceLocation(), SourceLocation(),
1533 0, QualType(), 0, SC_None, SC_None, 0);
1534}
1535
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00001536SourceRange ParmVarDecl::getSourceRange() const {
1537 if (!hasInheritedDefaultArg()) {
1538 SourceRange ArgRange = getDefaultArgRange();
1539 if (ArgRange.isValid())
1540 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
1541 }
1542
1543 return DeclaratorDecl::getSourceRange();
1544}
1545
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001546Expr *ParmVarDecl::getDefaultArg() {
1547 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
1548 assert(!hasUninstantiatedDefaultArg() &&
1549 "Default argument is not yet instantiated!");
1550
1551 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00001552 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001553 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00001554
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001555 return Arg;
1556}
1557
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001558SourceRange ParmVarDecl::getDefaultArgRange() const {
1559 if (const Expr *E = getInit())
1560 return E->getSourceRange();
1561
1562 if (hasUninstantiatedDefaultArg())
1563 return getUninstantiatedDefaultArg()->getSourceRange();
1564
1565 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00001566}
1567
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00001568bool ParmVarDecl::isParameterPack() const {
1569 return isa<PackExpansionType>(getType());
1570}
1571
Ted Kremenekd211cb72011-10-06 05:00:56 +00001572void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
1573 getASTContext().setParameterIndex(this, parameterIndex);
1574 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
1575}
1576
1577unsigned ParmVarDecl::getParameterIndexLarge() const {
1578 return getASTContext().getParameterIndex(this);
1579}
1580
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001581//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00001582// FunctionDecl Implementation
1583//===----------------------------------------------------------------------===//
1584
Douglas Gregorda2142f2011-02-19 18:51:44 +00001585void FunctionDecl::getNameForDiagnostic(std::string &S,
1586 const PrintingPolicy &Policy,
1587 bool Qualified) const {
1588 NamedDecl::getNameForDiagnostic(S, Policy, Qualified);
1589 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
1590 if (TemplateArgs)
1591 S += TemplateSpecializationType::PrintTemplateArgumentList(
1592 TemplateArgs->data(),
1593 TemplateArgs->size(),
1594 Policy);
1595
1596}
1597
Ted Kremenek9498d382010-04-29 16:49:01 +00001598bool FunctionDecl::isVariadic() const {
1599 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
1600 return FT->isVariadic();
1601 return false;
1602}
1603
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001604bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
1605 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00001606 if (I->Body || I->IsLateTemplateParsed) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001607 Definition = *I;
1608 return true;
1609 }
1610 }
1611
1612 return false;
1613}
1614
Anders Carlssonffb945f2011-05-14 23:26:09 +00001615bool FunctionDecl::hasTrivialBody() const
1616{
1617 Stmt *S = getBody();
1618 if (!S) {
1619 // Since we don't have a body for this function, we don't know if it's
1620 // trivial or not.
1621 return false;
1622 }
1623
1624 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
1625 return true;
1626 return false;
1627}
1628
Sean Hunt10620eb2011-05-06 20:44:56 +00001629bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
1630 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Sean Huntcd10dec2011-05-23 23:14:04 +00001631 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) {
Sean Hunt10620eb2011-05-06 20:44:56 +00001632 Definition = I->IsDeleted ? I->getCanonicalDecl() : *I;
1633 return true;
1634 }
1635 }
1636
1637 return false;
1638}
1639
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001640Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Argyrios Kyrtzidisc37929c2009-07-14 03:20:21 +00001641 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
1642 if (I->Body) {
1643 Definition = *I;
1644 return I->Body.get(getASTContext().getExternalSource());
Francois Pichet8387e2a2011-04-22 22:18:13 +00001645 } else if (I->IsLateTemplateParsed) {
1646 Definition = *I;
1647 return 0;
Douglas Gregorf0097952008-04-21 02:02:58 +00001648 }
1649 }
1650
1651 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001652}
1653
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001654void FunctionDecl::setBody(Stmt *B) {
1655 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00001656 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001657 EndRangeLoc = B->getLocEnd();
1658}
1659
Douglas Gregor21386642010-09-28 21:55:22 +00001660void FunctionDecl::setPure(bool P) {
1661 IsPure = P;
1662 if (P)
1663 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
1664 Parent->markedVirtualFunctionPure();
1665}
1666
Douglas Gregor48a83b52009-09-12 00:17:51 +00001667bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00001668 const TranslationUnitDecl *tunit =
1669 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
1670 return tunit &&
David Blaikie4e4d0842012-03-11 07:00:24 +00001671 !tunit->getASTContext().getLangOpts().Freestanding &&
John McCall23c608d2011-05-15 17:49:20 +00001672 getIdentifier() &&
1673 getIdentifier()->isStr("main");
1674}
1675
1676bool FunctionDecl::isReservedGlobalPlacementOperator() const {
1677 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
1678 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
1679 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
1680 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
1681 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
1682
1683 if (isa<CXXRecordDecl>(getDeclContext())) return false;
1684 assert(getDeclContext()->getRedeclContext()->isTranslationUnit());
1685
1686 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
1687 if (proto->getNumArgs() != 2 || proto->isVariadic()) return false;
1688
1689 ASTContext &Context =
1690 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
1691 ->getASTContext();
1692
1693 // The result type and first argument type are constant across all
1694 // these operators. The second argument must be exactly void*.
1695 return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00001696}
1697
Douglas Gregor48a83b52009-09-12 00:17:51 +00001698bool FunctionDecl::isExternC() const {
Eli Friedman750dc2b2012-01-15 01:23:58 +00001699 if (getLinkage() != ExternalLinkage)
1700 return false;
1701
1702 if (getAttr<OverloadableAttr>())
1703 return false;
Douglas Gregor63935192009-03-02 00:19:53 +00001704
Chandler Carruth10aad442011-02-25 00:05:02 +00001705 const DeclContext *DC = getDeclContext();
1706 if (DC->isRecord())
1707 return false;
1708
Eli Friedman750dc2b2012-01-15 01:23:58 +00001709 ASTContext &Context = getASTContext();
David Blaikie4e4d0842012-03-11 07:00:24 +00001710 if (!Context.getLangOpts().CPlusPlus)
Eli Friedman750dc2b2012-01-15 01:23:58 +00001711 return true;
Douglas Gregor63935192009-03-02 00:19:53 +00001712
Eli Friedman750dc2b2012-01-15 01:23:58 +00001713 return isMain() || DC->isExternCContext();
Douglas Gregor63935192009-03-02 00:19:53 +00001714}
1715
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001716bool FunctionDecl::isGlobal() const {
1717 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
1718 return Method->isStatic();
1719
John McCalld931b082010-08-26 03:08:43 +00001720 if (getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001721 return false;
1722
Mike Stump1eb44332009-09-09 15:08:12 +00001723 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00001724 DC->isNamespace();
1725 DC = DC->getParent()) {
1726 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
1727 if (!Namespace->getDeclName())
1728 return false;
1729 break;
1730 }
1731 }
1732
1733 return true;
1734}
1735
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001736void
1737FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
1738 redeclarable_base::setPreviousDeclaration(PrevDecl);
1739
1740 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
1741 FunctionTemplateDecl *PrevFunTmpl
1742 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0;
1743 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
1744 FunTmpl->setPreviousDeclaration(PrevFunTmpl);
1745 }
Douglas Gregor8f150942010-12-09 16:59:22 +00001746
Axel Naumannd9d137e2011-11-08 18:21:06 +00001747 if (PrevDecl && PrevDecl->IsInline)
Douglas Gregor8f150942010-12-09 16:59:22 +00001748 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001749}
1750
1751const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
1752 return getFirstDeclaration();
1753}
1754
1755FunctionDecl *FunctionDecl::getCanonicalDecl() {
1756 return getFirstDeclaration();
1757}
1758
Douglas Gregor381d34e2010-12-06 18:36:25 +00001759void FunctionDecl::setStorageClass(StorageClass SC) {
1760 assert(isLegalForFunction(SC));
1761 if (getStorageClass() != SC)
1762 ClearLinkageCache();
1763
1764 SClass = SC;
1765}
1766
Douglas Gregor3e41d602009-02-13 23:20:09 +00001767/// \brief Returns a value indicating whether this function
1768/// corresponds to a builtin function.
1769///
1770/// The function corresponds to a built-in function if it is
1771/// declared at translation scope or within an extern "C" block and
1772/// its name matches with the name of a builtin. The returned value
1773/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00001774/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00001775/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001776unsigned FunctionDecl::getBuiltinID() const {
Daniel Dunbar60d302a2012-03-06 23:52:37 +00001777 if (!getIdentifier())
Douglas Gregor3c385e52009-02-14 18:57:46 +00001778 return 0;
1779
1780 unsigned BuiltinID = getIdentifier()->getBuiltinID();
Daniel Dunbar60d302a2012-03-06 23:52:37 +00001781 if (!BuiltinID)
1782 return 0;
1783
1784 ASTContext &Context = getASTContext();
Douglas Gregor3c385e52009-02-14 18:57:46 +00001785 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
1786 return BuiltinID;
1787
1788 // This function has the name of a known C library
1789 // function. Determine whether it actually refers to the C library
1790 // function or whether it just has the same name.
1791
Douglas Gregor9add3172009-02-17 03:23:10 +00001792 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00001793 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00001794 return 0;
1795
Douglas Gregor3c385e52009-02-14 18:57:46 +00001796 // If this function is at translation-unit scope and we're not in
1797 // C++, it refers to the C library function.
David Blaikie4e4d0842012-03-11 07:00:24 +00001798 if (!Context.getLangOpts().CPlusPlus &&
Douglas Gregor3c385e52009-02-14 18:57:46 +00001799 getDeclContext()->isTranslationUnit())
1800 return BuiltinID;
1801
1802 // If the function is in an extern "C" linkage specification and is
1803 // not marked "overloadable", it's the real function.
1804 if (isa<LinkageSpecDecl>(getDeclContext()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001805 cast<LinkageSpecDecl>(getDeclContext())->getLanguage()
Douglas Gregor3c385e52009-02-14 18:57:46 +00001806 == LinkageSpecDecl::lang_c &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001807 !getAttr<OverloadableAttr>())
Douglas Gregor3c385e52009-02-14 18:57:46 +00001808 return BuiltinID;
1809
1810 // Not a builtin
Douglas Gregor3e41d602009-02-13 23:20:09 +00001811 return 0;
1812}
1813
1814
Chris Lattner1ad9b282009-04-25 06:03:53 +00001815/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00001816/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00001817/// after it has been created.
1818unsigned FunctionDecl::getNumParams() const {
John McCall183700f2009-09-21 23:43:11 +00001819 const FunctionType *FT = getType()->getAs<FunctionType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001820 if (isa<FunctionNoProtoType>(FT))
Chris Lattnerd3b90652008-03-15 05:43:15 +00001821 return 0;
Douglas Gregor72564e72009-02-26 23:50:07 +00001822 return cast<FunctionProtoType>(FT)->getNumArgs();
Mike Stump1eb44332009-09-09 15:08:12 +00001823
Reid Spencer5f016e22007-07-11 17:01:13 +00001824}
1825
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001826void FunctionDecl::setParams(ASTContext &C,
David Blaikie4278c652011-09-21 18:16:56 +00001827 llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001828 assert(ParamInfo == 0 && "Already has param info!");
David Blaikie4278c652011-09-21 18:16:56 +00001829 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00001830
Reid Spencer5f016e22007-07-11 17:01:13 +00001831 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00001832 if (!NewParamInfo.empty()) {
1833 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
1834 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001835 }
1836}
1837
James Molloy16f1f712012-02-29 10:24:19 +00001838void FunctionDecl::setDeclsInPrototypeScope(llvm::ArrayRef<NamedDecl *> NewDecls) {
1839 assert(DeclsInPrototypeScope.empty() && "Already has prototype decls!");
1840
1841 if (!NewDecls.empty()) {
1842 NamedDecl **A = new (getASTContext()) NamedDecl*[NewDecls.size()];
1843 std::copy(NewDecls.begin(), NewDecls.end(), A);
1844 DeclsInPrototypeScope = llvm::ArrayRef<NamedDecl*>(A, NewDecls.size());
1845 }
1846}
1847
Chris Lattner8123a952008-04-10 02:22:51 +00001848/// getMinRequiredArguments - Returns the minimum number of arguments
1849/// needed to call this function. This may be fewer than the number of
1850/// function parameters, if some of the parameters have default
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001851/// arguments (in C++) or the last parameter is a parameter pack.
Chris Lattner8123a952008-04-10 02:22:51 +00001852unsigned FunctionDecl::getMinRequiredArguments() const {
David Blaikie4e4d0842012-03-11 07:00:24 +00001853 if (!getASTContext().getLangOpts().CPlusPlus)
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001854 return getNumParams();
1855
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00001856 unsigned NumRequiredArgs = getNumParams();
1857
1858 // If the last parameter is a parameter pack, we don't need an argument for
1859 // it.
1860 if (NumRequiredArgs > 0 &&
1861 getParamDecl(NumRequiredArgs - 1)->isParameterPack())
1862 --NumRequiredArgs;
1863
1864 // If this parameter has a default argument, we don't need an argument for
1865 // it.
1866 while (NumRequiredArgs > 0 &&
1867 getParamDecl(NumRequiredArgs-1)->hasDefaultArg())
Chris Lattner8123a952008-04-10 02:22:51 +00001868 --NumRequiredArgs;
1869
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00001870 // We might have parameter packs before the end. These can't be deduced,
1871 // but they can still handle multiple arguments.
1872 unsigned ArgIdx = NumRequiredArgs;
1873 while (ArgIdx > 0) {
1874 if (getParamDecl(ArgIdx - 1)->isParameterPack())
1875 NumRequiredArgs = ArgIdx;
1876
1877 --ArgIdx;
1878 }
1879
Chris Lattner8123a952008-04-10 02:22:51 +00001880 return NumRequiredArgs;
1881}
1882
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001883bool FunctionDecl::isInlined() const {
Douglas Gregor8f150942010-12-09 16:59:22 +00001884 if (IsInline)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001885 return true;
Anders Carlsson48eda2c2009-12-04 22:35:50 +00001886
1887 if (isa<CXXMethodDecl>(this)) {
1888 if (!isOutOfLine() || getCanonicalDecl()->isInlineSpecified())
1889 return true;
1890 }
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001891
1892 switch (getTemplateSpecializationKind()) {
1893 case TSK_Undeclared:
1894 case TSK_ExplicitSpecialization:
1895 return false;
1896
1897 case TSK_ImplicitInstantiation:
1898 case TSK_ExplicitInstantiationDeclaration:
1899 case TSK_ExplicitInstantiationDefinition:
1900 // Handle below.
1901 break;
1902 }
1903
1904 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001905 bool HasPattern = false;
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001906 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001907 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001908
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001909 if (HasPattern && PatternDecl)
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001910 return PatternDecl->isInlined();
1911
1912 return false;
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001913}
1914
Eli Friedmana3b9fa22012-02-07 03:50:18 +00001915static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
1916 // Only consider file-scope declarations in this test.
1917 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
1918 return false;
1919
1920 // Only consider explicit declarations; the presence of a builtin for a
1921 // libcall shouldn't affect whether a definition is externally visible.
1922 if (Redecl->isImplicit())
1923 return false;
1924
1925 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
1926 return true; // Not an inline definition
1927
1928 return false;
1929}
1930
Nick Lewyckydce67a72011-07-18 05:26:13 +00001931/// \brief For a function declaration in C or C++, determine whether this
1932/// declaration causes the definition to be externally visible.
1933///
Eli Friedmana3b9fa22012-02-07 03:50:18 +00001934/// Specifically, this determines if adding the current declaration to the set
1935/// of redeclarations of the given functions causes
1936/// isInlineDefinitionExternallyVisible to change from false to true.
Nick Lewyckydce67a72011-07-18 05:26:13 +00001937bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
1938 assert(!doesThisDeclarationHaveABody() &&
1939 "Must have a declaration without a body.");
1940
1941 ASTContext &Context = getASTContext();
1942
David Blaikie4e4d0842012-03-11 07:00:24 +00001943 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00001944 // With GNU inlining, a declaration with 'inline' but not 'extern', forces
1945 // an externally visible definition.
1946 //
1947 // FIXME: What happens if gnu_inline gets added on after the first
1948 // declaration?
1949 if (!isInlineSpecified() || getStorageClassAsWritten() == SC_Extern)
1950 return false;
1951
1952 const FunctionDecl *Prev = this;
1953 bool FoundBody = false;
1954 while ((Prev = Prev->getPreviousDecl())) {
1955 FoundBody |= Prev->Body;
1956
1957 if (Prev->Body) {
1958 // If it's not the case that both 'inline' and 'extern' are
1959 // specified on the definition, then it is always externally visible.
1960 if (!Prev->isInlineSpecified() ||
1961 Prev->getStorageClassAsWritten() != SC_Extern)
1962 return false;
1963 } else if (Prev->isInlineSpecified() &&
1964 Prev->getStorageClassAsWritten() != SC_Extern) {
1965 return false;
1966 }
1967 }
1968 return FoundBody;
1969 }
1970
David Blaikie4e4d0842012-03-11 07:00:24 +00001971 if (Context.getLangOpts().CPlusPlus)
Nick Lewyckydce67a72011-07-18 05:26:13 +00001972 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00001973
1974 // C99 6.7.4p6:
1975 // [...] If all of the file scope declarations for a function in a
1976 // translation unit include the inline function specifier without extern,
1977 // then the definition in that translation unit is an inline definition.
1978 if (isInlineSpecified() && getStorageClass() != SC_Extern)
Nick Lewyckydce67a72011-07-18 05:26:13 +00001979 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00001980 const FunctionDecl *Prev = this;
1981 bool FoundBody = false;
1982 while ((Prev = Prev->getPreviousDecl())) {
1983 FoundBody |= Prev->Body;
1984 if (RedeclForcesDefC99(Prev))
1985 return false;
1986 }
1987 return FoundBody;
Nick Lewyckydce67a72011-07-18 05:26:13 +00001988}
1989
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00001990/// \brief For an inline function definition in C or C++, determine whether the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00001991/// definition will be externally visible.
1992///
1993/// Inline function definitions are always available for inlining optimizations.
1994/// However, depending on the language dialect, declaration specifiers, and
1995/// attributes, the definition of an inline function may or may not be
1996/// "externally" visible to other translation units in the program.
1997///
1998/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00001999/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002000/// inline definition becomes externally visible (C99 6.7.4p6).
2001///
2002/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
2003/// definition, we use the GNU semantics for inline, which are nearly the
2004/// opposite of C99 semantics. In particular, "inline" by itself will create
2005/// an externally visible symbol, but "extern inline" will not create an
2006/// externally visible symbol.
2007bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00002008 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002009 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00002010 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002011
David Blaikie4e4d0842012-03-11 07:00:24 +00002012 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002013 // Note: If you change the logic here, please change
2014 // doesDeclarationForceExternallyVisibleDefinition as well.
2015 //
Douglas Gregor8f150942010-12-09 16:59:22 +00002016 // If it's not the case that both 'inline' and 'extern' are
2017 // specified on the definition, then this inline definition is
2018 // externally visible.
2019 if (!(isInlineSpecified() && getStorageClassAsWritten() == SC_Extern))
2020 return true;
2021
2022 // If any declaration is 'inline' but not 'extern', then this definition
2023 // is externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002024 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
2025 Redecl != RedeclEnd;
2026 ++Redecl) {
Douglas Gregor8f150942010-12-09 16:59:22 +00002027 if (Redecl->isInlineSpecified() &&
2028 Redecl->getStorageClassAsWritten() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002029 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00002030 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002031
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002032 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002033 }
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002034
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002035 // C99 6.7.4p6:
2036 // [...] If all of the file scope declarations for a function in a
2037 // translation unit include the inline function specifier without extern,
2038 // then the definition in that translation unit is an inline definition.
2039 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end();
2040 Redecl != RedeclEnd;
2041 ++Redecl) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002042 if (RedeclForcesDefC99(*Redecl))
2043 return true;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002044 }
2045
2046 // C99 6.7.4p6:
2047 // An inline definition does not provide an external definition for the
2048 // function, and does not forbid an external definition in another
2049 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002050 return false;
2051}
2052
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002053/// getOverloadedOperator - Which C++ overloaded operator this
2054/// function represents, if any.
2055OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00002056 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
2057 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002058 else
2059 return OO_None;
2060}
2061
Sean Hunta6c058d2010-01-13 09:01:02 +00002062/// getLiteralIdentifier - The literal suffix identifier this function
2063/// represents, if any.
2064const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
2065 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
2066 return getDeclName().getCXXLiteralIdentifier();
2067 else
2068 return 0;
2069}
2070
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002071FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
2072 if (TemplateOrSpecialization.isNull())
2073 return TK_NonTemplate;
2074 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
2075 return TK_FunctionTemplate;
2076 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
2077 return TK_MemberSpecialization;
2078 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
2079 return TK_FunctionTemplateSpecialization;
2080 if (TemplateOrSpecialization.is
2081 <DependentFunctionTemplateSpecializationInfo*>())
2082 return TK_DependentFunctionTemplateSpecialization;
2083
David Blaikieb219cfc2011-09-23 05:06:16 +00002084 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002085}
2086
Douglas Gregor2db32322009-10-07 23:56:10 +00002087FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002088 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00002089 return cast<FunctionDecl>(Info->getInstantiatedFrom());
2090
2091 return 0;
2092}
2093
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002094MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
2095 return TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2096}
2097
Douglas Gregor2db32322009-10-07 23:56:10 +00002098void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002099FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
2100 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00002101 TemplateSpecializationKind TSK) {
2102 assert(TemplateOrSpecialization.isNull() &&
2103 "Member function is already a specialization");
2104 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002105 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00002106 TemplateOrSpecialization = Info;
2107}
2108
Douglas Gregor3b846b62009-10-27 20:53:28 +00002109bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002110 // If the function is invalid, it can't be implicitly instantiated.
2111 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00002112 return false;
2113
2114 switch (getTemplateSpecializationKind()) {
2115 case TSK_Undeclared:
Douglas Gregor3b846b62009-10-27 20:53:28 +00002116 case TSK_ExplicitInstantiationDefinition:
2117 return false;
2118
2119 case TSK_ImplicitInstantiation:
2120 return true;
2121
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002122 // It is possible to instantiate TSK_ExplicitSpecialization kind
2123 // if the FunctionDecl has a class scope specialization pattern.
2124 case TSK_ExplicitSpecialization:
2125 return getClassScopeSpecializationPattern() != 0;
2126
Douglas Gregor3b846b62009-10-27 20:53:28 +00002127 case TSK_ExplicitInstantiationDeclaration:
2128 // Handled below.
2129 break;
2130 }
2131
2132 // Find the actual template from which we will instantiate.
2133 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002134 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002135 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002136 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00002137
2138 // C++0x [temp.explicit]p9:
2139 // Except for inline functions, other explicit instantiation declarations
2140 // have the effect of suppressing the implicit instantiation of the entity
2141 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002142 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00002143 return true;
2144
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002145 return PatternDecl->isInlined();
Ted Kremenek75df4ee2011-12-01 00:59:17 +00002146}
2147
2148bool FunctionDecl::isTemplateInstantiation() const {
2149 switch (getTemplateSpecializationKind()) {
2150 case TSK_Undeclared:
2151 case TSK_ExplicitSpecialization:
2152 return false;
2153 case TSK_ImplicitInstantiation:
2154 case TSK_ExplicitInstantiationDeclaration:
2155 case TSK_ExplicitInstantiationDefinition:
2156 return true;
2157 }
2158 llvm_unreachable("All TSK values handled.");
2159}
Douglas Gregor3b846b62009-10-27 20:53:28 +00002160
2161FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002162 // Handle class scope explicit specialization special case.
2163 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2164 return getClassScopeSpecializationPattern();
2165
Douglas Gregor3b846b62009-10-27 20:53:28 +00002166 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
2167 while (Primary->getInstantiatedFromMemberTemplate()) {
2168 // If we have hit a point where the user provided a specialization of
2169 // this template, we're done looking.
2170 if (Primary->isMemberSpecialization())
2171 break;
2172
2173 Primary = Primary->getInstantiatedFromMemberTemplate();
2174 }
2175
2176 return Primary->getTemplatedDecl();
2177 }
2178
2179 return getInstantiatedFromMemberFunction();
2180}
2181
Douglas Gregor16e8be22009-06-29 17:30:29 +00002182FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002183 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002184 = TemplateOrSpecialization
2185 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002186 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00002187 }
2188 return 0;
2189}
2190
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002191FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
2192 return getASTContext().getClassScopeSpecializationPattern(this);
2193}
2194
Douglas Gregor16e8be22009-06-29 17:30:29 +00002195const TemplateArgumentList *
2196FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002197 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00002198 = TemplateOrSpecialization
2199 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00002200 return Info->TemplateArguments;
2201 }
2202 return 0;
2203}
2204
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00002205const ASTTemplateArgumentListInfo *
Abramo Bagnarae03db982010-05-20 15:32:11 +00002206FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
2207 if (FunctionTemplateSpecializationInfo *Info
2208 = TemplateOrSpecialization
2209 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
2210 return Info->TemplateArgumentsAsWritten;
2211 }
2212 return 0;
2213}
2214
Mike Stump1eb44332009-09-09 15:08:12 +00002215void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002216FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
2217 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00002218 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002219 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00002220 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00002221 const TemplateArgumentListInfo *TemplateArgsAsWritten,
2222 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00002223 assert(TSK != TSK_Undeclared &&
2224 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00002225 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00002226 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00002227 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00002228 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
2229 TemplateArgs,
2230 TemplateArgsAsWritten,
2231 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00002232 TemplateOrSpecialization = Info;
Douglas Gregor1e1e9722012-03-28 14:34:23 +00002233 Template->addSpecialization(Info, InsertPos);
Douglas Gregor1637be72009-06-26 00:10:03 +00002234}
2235
John McCallaf2094e2010-04-08 09:05:18 +00002236void
2237FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
2238 const UnresolvedSetImpl &Templates,
2239 const TemplateArgumentListInfo &TemplateArgs) {
2240 assert(TemplateOrSpecialization.isNull());
2241 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
2242 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00002243 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00002244 void *Buffer = Context.Allocate(Size);
2245 DependentFunctionTemplateSpecializationInfo *Info =
2246 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
2247 TemplateArgs);
2248 TemplateOrSpecialization = Info;
2249}
2250
2251DependentFunctionTemplateSpecializationInfo::
2252DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
2253 const TemplateArgumentListInfo &TArgs)
2254 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
2255
2256 d.NumTemplates = Ts.size();
2257 d.NumArgs = TArgs.size();
2258
2259 FunctionTemplateDecl **TsArray =
2260 const_cast<FunctionTemplateDecl**>(getTemplates());
2261 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
2262 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
2263
2264 TemplateArgumentLoc *ArgsArray =
2265 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
2266 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
2267 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
2268}
2269
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002270TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002271 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002272 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00002273 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002274 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00002275 if (FTSInfo)
2276 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00002277
Douglas Gregor2db32322009-10-07 23:56:10 +00002278 MemberSpecializationInfo *MSInfo
2279 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
2280 if (MSInfo)
2281 return MSInfo->getTemplateSpecializationKind();
2282
2283 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002284}
2285
Mike Stump1eb44332009-09-09 15:08:12 +00002286void
Douglas Gregor0a897e32009-10-15 17:21:20 +00002287FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2288 SourceLocation PointOfInstantiation) {
2289 if (FunctionTemplateSpecializationInfo *FTSInfo
2290 = TemplateOrSpecialization.dyn_cast<
2291 FunctionTemplateSpecializationInfo*>()) {
2292 FTSInfo->setTemplateSpecializationKind(TSK);
2293 if (TSK != TSK_ExplicitSpecialization &&
2294 PointOfInstantiation.isValid() &&
2295 FTSInfo->getPointOfInstantiation().isInvalid())
2296 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
2297 } else if (MemberSpecializationInfo *MSInfo
2298 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
2299 MSInfo->setTemplateSpecializationKind(TSK);
2300 if (TSK != TSK_ExplicitSpecialization &&
2301 PointOfInstantiation.isValid() &&
2302 MSInfo->getPointOfInstantiation().isInvalid())
2303 MSInfo->setPointOfInstantiation(PointOfInstantiation);
2304 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00002305 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor0a897e32009-10-15 17:21:20 +00002306}
2307
2308SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00002309 if (FunctionTemplateSpecializationInfo *FTSInfo
2310 = TemplateOrSpecialization.dyn_cast<
2311 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002312 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00002313 else if (MemberSpecializationInfo *MSInfo
2314 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00002315 return MSInfo->getPointOfInstantiation();
2316
2317 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00002318}
2319
Douglas Gregor9f185072009-09-11 20:15:17 +00002320bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00002321 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00002322 return true;
2323
2324 // If this function was instantiated from a member function of a
2325 // class template, check whether that member function was defined out-of-line.
2326 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
2327 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002328 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002329 return Definition->isOutOfLine();
2330 }
2331
2332 // If this function was instantiated from a function template,
2333 // check whether that function template was defined out-of-line.
2334 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
2335 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002336 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00002337 return Definition->isOutOfLine();
2338 }
2339
2340 return false;
2341}
2342
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002343SourceRange FunctionDecl::getSourceRange() const {
2344 return SourceRange(getOuterLocStart(), EndRangeLoc);
2345}
2346
Anna Zaks9392d4e2012-01-18 02:45:01 +00002347unsigned FunctionDecl::getMemoryFunctionKind() const {
Anna Zaksd9b859a2012-01-13 21:52:01 +00002348 IdentifierInfo *FnInfo = getIdentifier();
2349
2350 if (!FnInfo)
Anna Zaks0a151a12012-01-17 00:37:07 +00002351 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002352
2353 // Builtin handling.
2354 switch (getBuiltinID()) {
2355 case Builtin::BI__builtin_memset:
2356 case Builtin::BI__builtin___memset_chk:
2357 case Builtin::BImemset:
Anna Zaks0a151a12012-01-17 00:37:07 +00002358 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002359
2360 case Builtin::BI__builtin_memcpy:
2361 case Builtin::BI__builtin___memcpy_chk:
2362 case Builtin::BImemcpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00002363 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002364
2365 case Builtin::BI__builtin_memmove:
2366 case Builtin::BI__builtin___memmove_chk:
2367 case Builtin::BImemmove:
Anna Zaks0a151a12012-01-17 00:37:07 +00002368 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002369
2370 case Builtin::BIstrlcpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00002371 return Builtin::BIstrlcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002372 case Builtin::BIstrlcat:
Anna Zaks0a151a12012-01-17 00:37:07 +00002373 return Builtin::BIstrlcat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002374
2375 case Builtin::BI__builtin_memcmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00002376 case Builtin::BImemcmp:
2377 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002378
2379 case Builtin::BI__builtin_strncpy:
2380 case Builtin::BI__builtin___strncpy_chk:
2381 case Builtin::BIstrncpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00002382 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002383
2384 case Builtin::BI__builtin_strncmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00002385 case Builtin::BIstrncmp:
2386 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002387
2388 case Builtin::BI__builtin_strncasecmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00002389 case Builtin::BIstrncasecmp:
2390 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002391
2392 case Builtin::BI__builtin_strncat:
Anna Zaksc36bedc2012-02-01 19:08:57 +00002393 case Builtin::BI__builtin___strncat_chk:
Anna Zaksd9b859a2012-01-13 21:52:01 +00002394 case Builtin::BIstrncat:
Anna Zaks0a151a12012-01-17 00:37:07 +00002395 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002396
2397 case Builtin::BI__builtin_strndup:
2398 case Builtin::BIstrndup:
Anna Zaks0a151a12012-01-17 00:37:07 +00002399 return Builtin::BIstrndup;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002400
Anna Zaksc36bedc2012-02-01 19:08:57 +00002401 case Builtin::BI__builtin_strlen:
2402 case Builtin::BIstrlen:
2403 return Builtin::BIstrlen;
2404
Anna Zaksd9b859a2012-01-13 21:52:01 +00002405 default:
Eli Friedman750dc2b2012-01-15 01:23:58 +00002406 if (isExternC()) {
Anna Zaksd9b859a2012-01-13 21:52:01 +00002407 if (FnInfo->isStr("memset"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002408 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002409 else if (FnInfo->isStr("memcpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002410 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002411 else if (FnInfo->isStr("memmove"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002412 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002413 else if (FnInfo->isStr("memcmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002414 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002415 else if (FnInfo->isStr("strncpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002416 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002417 else if (FnInfo->isStr("strncmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002418 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002419 else if (FnInfo->isStr("strncasecmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002420 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002421 else if (FnInfo->isStr("strncat"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002422 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002423 else if (FnInfo->isStr("strndup"))
Anna Zaks0a151a12012-01-17 00:37:07 +00002424 return Builtin::BIstrndup;
Anna Zaksc36bedc2012-02-01 19:08:57 +00002425 else if (FnInfo->isStr("strlen"))
2426 return Builtin::BIstrlen;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002427 }
2428 break;
2429 }
Anna Zaks0a151a12012-01-17 00:37:07 +00002430 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00002431}
2432
Chris Lattner8a934232008-03-31 00:36:02 +00002433//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002434// FieldDecl Implementation
2435//===----------------------------------------------------------------------===//
2436
Jay Foad4ba2a172011-01-12 09:06:06 +00002437FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002438 SourceLocation StartLoc, SourceLocation IdLoc,
2439 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00002440 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
2441 bool HasInit) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002442 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smith7a614d82011-06-11 17:19:42 +00002443 BW, Mutable, HasInit);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002444}
2445
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002446FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2447 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FieldDecl));
2448 return new (Mem) FieldDecl(Field, 0, SourceLocation(), SourceLocation(),
2449 0, QualType(), 0, 0, false, false);
2450}
2451
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002452bool FieldDecl::isAnonymousStructOrUnion() const {
2453 if (!isImplicit() || getDeclName())
2454 return false;
2455
2456 if (const RecordType *Record = getType()->getAs<RecordType>())
2457 return Record->getDecl()->isAnonymousStructOrUnion();
2458
2459 return false;
2460}
2461
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002462unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
2463 assert(isBitField() && "not a bitfield");
2464 Expr *BitWidth = InitializerOrBitWidth.getPointer();
2465 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
2466}
2467
John McCallba4f5d52011-01-20 07:57:12 +00002468unsigned FieldDecl::getFieldIndex() const {
2469 if (CachedFieldIndex) return CachedFieldIndex - 1;
2470
Richard Smith180f4792011-11-10 06:34:14 +00002471 unsigned Index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002472 const RecordDecl *RD = getParent();
2473 const FieldDecl *LastFD = 0;
2474 bool IsMsStruct = RD->hasAttr<MsStructAttr>();
Richard Smith180f4792011-11-10 06:34:14 +00002475
2476 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
2477 I != E; ++I, ++Index) {
David Blaikie262bc182012-04-30 02:36:29 +00002478 I->CachedFieldIndex = Index + 1;
John McCallba4f5d52011-01-20 07:57:12 +00002479
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002480 if (IsMsStruct) {
2481 // Zero-length bitfields following non-bitfield members are ignored.
David Blaikie262bc182012-04-30 02:36:29 +00002482 if (getASTContext().ZeroBitfieldFollowsNonBitfield(&*I, LastFD)) {
Richard Smith180f4792011-11-10 06:34:14 +00002483 --Index;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002484 continue;
2485 }
David Blaikie262bc182012-04-30 02:36:29 +00002486 LastFD = &*I;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00002487 }
John McCallba4f5d52011-01-20 07:57:12 +00002488 }
2489
Richard Smith180f4792011-11-10 06:34:14 +00002490 assert(CachedFieldIndex && "failed to find field in parent");
2491 return CachedFieldIndex - 1;
John McCallba4f5d52011-01-20 07:57:12 +00002492}
2493
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002494SourceRange FieldDecl::getSourceRange() const {
Abramo Bagnarad330e232011-08-05 08:02:55 +00002495 if (const Expr *E = InitializerOrBitWidth.getPointer())
2496 return SourceRange(getInnerLocStart(), E->getLocEnd());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002497 return DeclaratorDecl::getSourceRange();
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00002498}
2499
Richard Smith7a614d82011-06-11 17:19:42 +00002500void FieldDecl::setInClassInitializer(Expr *Init) {
2501 assert(!InitializerOrBitWidth.getPointer() &&
2502 "bit width or initializer already set");
2503 InitializerOrBitWidth.setPointer(Init);
2504 InitializerOrBitWidth.setInt(0);
2505}
2506
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002507//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002508// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002509//===----------------------------------------------------------------------===//
2510
Douglas Gregor1693e152010-07-06 18:42:40 +00002511SourceLocation TagDecl::getOuterLocStart() const {
2512 return getTemplateOrInnerLocStart(this);
2513}
2514
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002515SourceRange TagDecl::getSourceRange() const {
2516 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00002517 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00002518}
2519
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002520TagDecl* TagDecl::getCanonicalDecl() {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002521 return getFirstDeclaration();
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00002522}
2523
Richard Smith162e1c12011-04-15 14:24:37 +00002524void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
2525 TypedefNameDeclOrQualifier = TDD;
Douglas Gregor60e70642010-05-19 18:39:18 +00002526 if (TypeForDecl)
John McCallf4c73712011-01-19 06:33:43 +00002527 const_cast<Type*>(TypeForDecl)->ClearLinkageCache();
Douglas Gregor381d34e2010-12-06 18:36:25 +00002528 ClearLinkageCache();
Douglas Gregor60e70642010-05-19 18:39:18 +00002529}
2530
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002531void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00002532 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00002533
2534 if (isa<CXXRecordDecl>(this)) {
2535 CXXRecordDecl *D = cast<CXXRecordDecl>(this);
2536 struct CXXRecordDecl::DefinitionData *Data =
2537 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
John McCall22432882010-03-26 21:56:38 +00002538 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I)
2539 cast<CXXRecordDecl>(*I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00002540 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002541}
2542
2543void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00002544 assert((!isa<CXXRecordDecl>(this) ||
2545 cast<CXXRecordDecl>(this)->hasDefinition()) &&
2546 "definition completed but not started");
2547
John McCall5e1cdac2011-10-07 06:10:15 +00002548 IsCompleteDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00002549 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002550
2551 if (ASTMutationListener *L = getASTMutationListener())
2552 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00002553}
2554
John McCall5e1cdac2011-10-07 06:10:15 +00002555TagDecl *TagDecl::getDefinition() const {
2556 if (isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002557 return const_cast<TagDecl *>(this);
Andrew Trick220a9c82010-10-19 21:54:32 +00002558 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
2559 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002560
2561 for (redecl_iterator R = redecls_begin(), REnd = redecls_end();
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002562 R != REnd; ++R)
John McCall5e1cdac2011-10-07 06:10:15 +00002563 if (R->isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002564 return *R;
Mike Stump1eb44332009-09-09 15:08:12 +00002565
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00002566 return 0;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002567}
2568
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002569void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
2570 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00002571 // Make sure the extended qualifier info is allocated.
2572 if (!hasExtInfo())
Richard Smith162e1c12011-04-15 14:24:37 +00002573 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00002574 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002575 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00002576 } else {
John McCallb6217662010-03-15 10:12:16 +00002577 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00002578 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002579 if (getExtInfo()->NumTemplParamLists == 0) {
2580 getASTContext().Deallocate(getExtInfo());
Richard Smith162e1c12011-04-15 14:24:37 +00002581 TypedefNameDeclOrQualifier = (TypedefNameDecl*) 0;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002582 }
2583 else
2584 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00002585 }
2586 }
2587}
2588
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002589void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
2590 unsigned NumTPLists,
2591 TemplateParameterList **TPLists) {
2592 assert(NumTPLists > 0);
2593 // Make sure the extended decl info is allocated.
2594 if (!hasExtInfo())
2595 // Allocate external info struct.
Richard Smith162e1c12011-04-15 14:24:37 +00002596 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00002597 // Set the template parameter lists info.
2598 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
2599}
2600
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002601//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002602// EnumDecl Implementation
2603//===----------------------------------------------------------------------===//
2604
David Blaikie99ba9e32011-12-20 02:48:34 +00002605void EnumDecl::anchor() { }
2606
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002607EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
2608 SourceLocation StartLoc, SourceLocation IdLoc,
2609 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002610 EnumDecl *PrevDecl, bool IsScoped,
2611 bool IsScopedUsingClassTag, bool IsFixed) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002612 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00002613 IsScoped, IsScopedUsingClassTag, IsFixed);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002614 C.getTypeDeclType(Enum, PrevDecl);
2615 return Enum;
2616}
2617
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002618EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2619 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumDecl));
2620 return new (Mem) EnumDecl(0, SourceLocation(), SourceLocation(), 0, 0,
2621 false, false, false);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002622}
2623
Douglas Gregor838db382010-02-11 01:19:42 +00002624void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00002625 QualType NewPromotionType,
2626 unsigned NumPositiveBits,
2627 unsigned NumNegativeBits) {
John McCall5e1cdac2011-10-07 06:10:15 +00002628 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00002629 if (!IntegerType)
2630 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002631 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00002632 setNumPositiveBits(NumPositiveBits);
2633 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002634 TagDecl::completeDefinition();
2635}
2636
Richard Smith1af83c42012-03-23 03:33:32 +00002637TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
2638 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2639 return MSI->getTemplateSpecializationKind();
2640
2641 return TSK_Undeclared;
2642}
2643
2644void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2645 SourceLocation PointOfInstantiation) {
2646 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
2647 assert(MSI && "Not an instantiated member enumeration?");
2648 MSI->setTemplateSpecializationKind(TSK);
2649 if (TSK != TSK_ExplicitSpecialization &&
2650 PointOfInstantiation.isValid() &&
2651 MSI->getPointOfInstantiation().isInvalid())
2652 MSI->setPointOfInstantiation(PointOfInstantiation);
2653}
2654
Richard Smithf1c66b42012-03-14 23:13:10 +00002655EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
2656 if (SpecializationInfo)
2657 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
2658
2659 return 0;
2660}
2661
2662void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
2663 TemplateSpecializationKind TSK) {
2664 assert(!SpecializationInfo && "Member enum is already a specialization");
2665 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
2666}
2667
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002668//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002669// RecordDecl Implementation
2670//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002671
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002672RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
2673 SourceLocation StartLoc, SourceLocation IdLoc,
2674 IdentifierInfo *Id, RecordDecl *PrevDecl)
2675 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00002676 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002677 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002678 HasObjectMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002679 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00002680 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00002681}
2682
Jay Foad4ba2a172011-01-12 09:06:06 +00002683RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00002684 SourceLocation StartLoc, SourceLocation IdLoc,
2685 IdentifierInfo *Id, RecordDecl* PrevDecl) {
2686 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
2687 PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002688 C.getTypeDeclType(R, PrevDecl);
2689 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00002690}
2691
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002692RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
2693 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(RecordDecl));
2694 return new (Mem) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
2695 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00002696}
2697
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002698bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00002699 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00002700 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
2701}
2702
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002703RecordDecl::field_iterator RecordDecl::field_begin() const {
2704 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
2705 LoadFieldsFromExternalStorage();
2706
2707 return field_iterator(decl_iterator(FirstDecl));
2708}
2709
Douglas Gregorda2142f2011-02-19 18:51:44 +00002710/// completeDefinition - Notes that the definition of this type is now
2711/// complete.
2712void RecordDecl::completeDefinition() {
John McCall5e1cdac2011-10-07 06:10:15 +00002713 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorda2142f2011-02-19 18:51:44 +00002714 TagDecl::completeDefinition();
2715}
2716
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002717void RecordDecl::LoadFieldsFromExternalStorage() const {
2718 ExternalASTSource *Source = getASTContext().getExternalSource();
2719 assert(hasExternalLexicalStorage() && Source && "No external storage?");
2720
2721 // Notify that we have a RecordDecl doing some initialization.
2722 ExternalASTSource::Deserializing TheFields(Source);
2723
Chris Lattner5f9e2722011-07-23 10:55:15 +00002724 SmallVector<Decl*, 64> Decls;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002725 LoadedFieldsFromExternalStorage = true;
2726 switch (Source->FindExternalLexicalDeclsBy<FieldDecl>(this, Decls)) {
2727 case ELR_Success:
2728 break;
2729
2730 case ELR_AlreadyLoaded:
2731 case ELR_Failure:
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002732 return;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00002733 }
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002734
2735#ifndef NDEBUG
2736 // Check that all decls we got were FieldDecls.
2737 for (unsigned i=0, e=Decls.size(); i != e; ++i)
2738 assert(isa<FieldDecl>(Decls[i]));
2739#endif
2740
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002741 if (Decls.empty())
2742 return;
2743
Argyrios Kyrtzidisec2ec1f2011-10-07 21:55:43 +00002744 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
2745 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002746}
2747
Steve Naroff56ee6892008-10-08 17:01:13 +00002748//===----------------------------------------------------------------------===//
2749// BlockDecl Implementation
2750//===----------------------------------------------------------------------===//
2751
David Blaikie4278c652011-09-21 18:16:56 +00002752void BlockDecl::setParams(llvm::ArrayRef<ParmVarDecl *> NewParamInfo) {
Steve Naroffe78b8092009-03-13 16:56:44 +00002753 assert(ParamInfo == 0 && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00002754
Steve Naroffe78b8092009-03-13 16:56:44 +00002755 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00002756 if (!NewParamInfo.empty()) {
2757 NumParams = NewParamInfo.size();
2758 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
2759 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffe78b8092009-03-13 16:56:44 +00002760 }
2761}
2762
John McCall6b5a61b2011-02-07 10:33:21 +00002763void BlockDecl::setCaptures(ASTContext &Context,
2764 const Capture *begin,
2765 const Capture *end,
2766 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00002767 CapturesCXXThis = capturesCXXThis;
2768
2769 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00002770 NumCaptures = 0;
2771 Captures = 0;
John McCall469a1eb2011-02-02 13:00:07 +00002772 return;
2773 }
2774
John McCall6b5a61b2011-02-07 10:33:21 +00002775 NumCaptures = end - begin;
2776
2777 // Avoid new Capture[] because we don't want to provide a default
2778 // constructor.
2779 size_t allocationSize = NumCaptures * sizeof(Capture);
2780 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
2781 memcpy(buffer, begin, allocationSize);
2782 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00002783}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002784
John McCall204e1332011-06-15 22:51:16 +00002785bool BlockDecl::capturesVariable(const VarDecl *variable) const {
2786 for (capture_const_iterator
2787 i = capture_begin(), e = capture_end(); i != e; ++i)
2788 // Only auto vars can be captured, so no redeclaration worries.
2789 if (i->getVariable() == variable)
2790 return true;
2791
2792 return false;
2793}
2794
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00002795SourceRange BlockDecl::getSourceRange() const {
2796 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
2797}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002798
2799//===----------------------------------------------------------------------===//
2800// Other Decl Allocation/Deallocation Method Implementations
2801//===----------------------------------------------------------------------===//
2802
David Blaikie99ba9e32011-12-20 02:48:34 +00002803void TranslationUnitDecl::anchor() { }
2804
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002805TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
2806 return new (C) TranslationUnitDecl(C);
2807}
2808
David Blaikie99ba9e32011-12-20 02:48:34 +00002809void LabelDecl::anchor() { }
2810
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002811LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00002812 SourceLocation IdentL, IdentifierInfo *II) {
2813 return new (C) LabelDecl(DC, IdentL, II, 0, IdentL);
2814}
2815
2816LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
2817 SourceLocation IdentL, IdentifierInfo *II,
2818 SourceLocation GnuLabelL) {
2819 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
2820 return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002821}
2822
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002823LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2824 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LabelDecl));
2825 return new (Mem) LabelDecl(0, SourceLocation(), 0, 0, SourceLocation());
Douglas Gregor06c91932010-10-27 19:49:05 +00002826}
2827
David Blaikie99ba9e32011-12-20 02:48:34 +00002828void ValueDecl::anchor() { }
2829
2830void ImplicitParamDecl::anchor() { }
2831
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002832ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002833 SourceLocation IdLoc,
2834 IdentifierInfo *Id,
2835 QualType Type) {
2836 return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002837}
2838
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002839ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
2840 unsigned ID) {
2841 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ImplicitParamDecl));
2842 return new (Mem) ImplicitParamDecl(0, SourceLocation(), 0, QualType());
2843}
2844
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002845FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002846 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00002847 const DeclarationNameInfo &NameInfo,
2848 QualType T, TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002849 StorageClass SC, StorageClass SCAsWritten,
Douglas Gregor8f150942010-12-09 16:59:22 +00002850 bool isInlineSpecified,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002851 bool hasWrittenPrototype,
2852 bool isConstexprSpecified) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002853 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo,
2854 T, TInfo, SC, SCAsWritten,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00002855 isInlineSpecified,
2856 isConstexprSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002857 New->HasWrittenPrototype = hasWrittenPrototype;
2858 return New;
2859}
2860
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002861FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2862 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionDecl));
2863 return new (Mem) FunctionDecl(Function, 0, SourceLocation(),
2864 DeclarationNameInfo(), QualType(), 0,
2865 SC_None, SC_None, false, false);
2866}
2867
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002868BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
2869 return new (C) BlockDecl(DC, L);
2870}
2871
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002872BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2873 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(BlockDecl));
2874 return new (Mem) BlockDecl(0, SourceLocation());
2875}
2876
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002877EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
2878 SourceLocation L,
2879 IdentifierInfo *Id, QualType T,
2880 Expr *E, const llvm::APSInt &V) {
2881 return new (C) EnumConstantDecl(CD, L, Id, T, E, V);
2882}
2883
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002884EnumConstantDecl *
2885EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2886 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumConstantDecl));
2887 return new (Mem) EnumConstantDecl(0, SourceLocation(), 0, QualType(), 0,
2888 llvm::APSInt());
2889}
2890
David Blaikie99ba9e32011-12-20 02:48:34 +00002891void IndirectFieldDecl::anchor() { }
2892
Benjamin Kramerd9811462010-11-21 14:11:41 +00002893IndirectFieldDecl *
2894IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
2895 IdentifierInfo *Id, QualType T, NamedDecl **CH,
2896 unsigned CHS) {
Francois Pichet87c2e122010-11-21 06:08:52 +00002897 return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
2898}
2899
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002900IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
2901 unsigned ID) {
2902 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(IndirectFieldDecl));
2903 return new (Mem) IndirectFieldDecl(0, SourceLocation(), DeclarationName(),
2904 QualType(), 0, 0);
2905}
2906
Douglas Gregor8e7139c2010-09-01 20:41:53 +00002907SourceRange EnumConstantDecl::getSourceRange() const {
2908 SourceLocation End = getLocation();
2909 if (Init)
2910 End = Init->getLocEnd();
2911 return SourceRange(getLocation(), End);
2912}
2913
David Blaikie99ba9e32011-12-20 02:48:34 +00002914void TypeDecl::anchor() { }
2915
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002916TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00002917 SourceLocation StartLoc, SourceLocation IdLoc,
2918 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
2919 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002920}
2921
David Blaikie99ba9e32011-12-20 02:48:34 +00002922void TypedefNameDecl::anchor() { }
2923
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002924TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2925 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl));
2926 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2927}
2928
Richard Smith162e1c12011-04-15 14:24:37 +00002929TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
2930 SourceLocation StartLoc,
2931 SourceLocation IdLoc, IdentifierInfo *Id,
2932 TypeSourceInfo *TInfo) {
2933 return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo);
2934}
2935
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002936TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2937 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypeAliasDecl));
2938 return new (Mem) TypeAliasDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2939}
2940
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002941SourceRange TypedefDecl::getSourceRange() const {
2942 SourceLocation RangeEnd = getLocation();
2943 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
2944 if (typeIsPostfix(TInfo->getType()))
2945 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2946 }
2947 return SourceRange(getLocStart(), RangeEnd);
2948}
2949
Richard Smith162e1c12011-04-15 14:24:37 +00002950SourceRange TypeAliasDecl::getSourceRange() const {
2951 SourceLocation RangeEnd = getLocStart();
2952 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
2953 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
2954 return SourceRange(getLocStart(), RangeEnd);
2955}
2956
David Blaikie99ba9e32011-12-20 02:48:34 +00002957void FileScopeAsmDecl::anchor() { }
2958
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002959FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002960 StringLiteral *Str,
2961 SourceLocation AsmLoc,
2962 SourceLocation RParenLoc) {
2963 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002964}
Douglas Gregor15de72c2011-12-02 23:23:56 +00002965
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002966FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
2967 unsigned ID) {
2968 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FileScopeAsmDecl));
2969 return new (Mem) FileScopeAsmDecl(0, 0, SourceLocation(), SourceLocation());
2970}
2971
Douglas Gregor15de72c2011-12-02 23:23:56 +00002972//===----------------------------------------------------------------------===//
2973// ImportDecl Implementation
2974//===----------------------------------------------------------------------===//
2975
2976/// \brief Retrieve the number of module identifiers needed to name the given
2977/// module.
2978static unsigned getNumModuleIdentifiers(Module *Mod) {
2979 unsigned Result = 1;
2980 while (Mod->Parent) {
2981 Mod = Mod->Parent;
2982 ++Result;
2983 }
2984 return Result;
2985}
2986
Douglas Gregor5948ae12012-01-03 18:04:46 +00002987ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00002988 Module *Imported,
2989 ArrayRef<SourceLocation> IdentifierLocs)
Douglas Gregor5948ae12012-01-03 18:04:46 +00002990 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
Douglas Gregore6649772011-12-03 00:30:27 +00002991 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00002992{
2993 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
2994 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
2995 memcpy(StoredLocs, IdentifierLocs.data(),
2996 IdentifierLocs.size() * sizeof(SourceLocation));
2997}
2998
Douglas Gregor5948ae12012-01-03 18:04:46 +00002999ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003000 Module *Imported, SourceLocation EndLoc)
Douglas Gregor5948ae12012-01-03 18:04:46 +00003001 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
Douglas Gregore6649772011-12-03 00:30:27 +00003002 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00003003{
3004 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
3005}
3006
3007ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00003008 SourceLocation StartLoc, Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003009 ArrayRef<SourceLocation> IdentifierLocs) {
3010 void *Mem = C.Allocate(sizeof(ImportDecl) +
3011 IdentifierLocs.size() * sizeof(SourceLocation));
Douglas Gregor5948ae12012-01-03 18:04:46 +00003012 return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregor15de72c2011-12-02 23:23:56 +00003013}
3014
3015ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00003016 SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003017 Module *Imported,
3018 SourceLocation EndLoc) {
3019 void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation));
Douglas Gregor5948ae12012-01-03 18:04:46 +00003020 ImportDecl *Import = new (Mem) ImportDecl(DC, StartLoc, Imported, EndLoc);
Douglas Gregor15de72c2011-12-02 23:23:56 +00003021 Import->setImplicit();
3022 return Import;
3023}
3024
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003025ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
3026 unsigned NumLocations) {
3027 void *Mem = AllocateDeserializedDecl(C, ID,
3028 (sizeof(ImportDecl) +
3029 NumLocations * sizeof(SourceLocation)));
Douglas Gregor15de72c2011-12-02 23:23:56 +00003030 return new (Mem) ImportDecl(EmptyShell());
3031}
3032
3033ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
3034 if (!ImportedAndComplete.getInt())
3035 return ArrayRef<SourceLocation>();
3036
3037 const SourceLocation *StoredLocs
3038 = reinterpret_cast<const SourceLocation *>(this + 1);
3039 return ArrayRef<SourceLocation>(StoredLocs,
3040 getNumModuleIdentifiers(getImportedModule()));
3041}
3042
3043SourceRange ImportDecl::getSourceRange() const {
3044 if (!ImportedAndComplete.getInt())
3045 return SourceRange(getLocation(),
3046 *reinterpret_cast<const SourceLocation *>(this + 1));
3047
3048 return SourceRange(getLocation(), getIdentifierLocs().back());
3049}