blob: a937fdf09209400fa12f0232ccd0c8e6d964dc3c [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"
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000015#include "clang/AST/ASTContext.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070016#include "clang/AST/ASTLambda.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000017#include "clang/AST/ASTMutationListener.h"
18#include "clang/AST/Attr.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/AST/DeclCXX.h"
20#include "clang/AST/DeclObjC.h"
21#include "clang/AST/DeclTemplate.h"
Nuno Lopes99f06ba2008-12-17 23:39:55 +000022#include "clang/AST/Expr.h"
Anders Carlsson337cba42009-12-15 19:16:31 +000023#include "clang/AST/ExprCXX.h"
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000024#include "clang/AST/PrettyPrinter.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000025#include "clang/AST/Stmt.h"
26#include "clang/AST/TypeLoc.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000027#include "clang/Basic/Builtins.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000028#include "clang/Basic/IdentifierTable.h"
Douglas Gregor15de72c2011-12-02 23:23:56 +000029#include "clang/Basic/Module.h"
Abramo Bagnara465d41b2010-05-11 21:36:43 +000030#include "clang/Basic/Specifiers.h"
Douglas Gregor4421d2b2011-03-26 12:10:19 +000031#include "clang/Basic/TargetInfo.h"
Stephen Hines176edba2014-12-01 14:53:08 -080032#include "clang/Frontend/FrontendDiagnostic.h"
John McCallf1bbbb42009-09-04 01:14:41 +000033#include "llvm/Support/ErrorHandling.h"
David Blaikie4278c652011-09-21 18:16:56 +000034#include <algorithm>
35
Reid Spencer5f016e22007-07-11 17:01:13 +000036using namespace clang;
37
Richard Smith4ed01222013-10-07 08:02:11 +000038Decl *clang::getPrimaryMergedDecl(Decl *D) {
39 return D->getASTContext().getPrimaryMergedDecl(D);
40}
41
Stephen Hines176edba2014-12-01 14:53:08 -080042// Defined here so that it can be inlined into its direct callers.
43bool Decl::isOutOfLine() const {
44 return !getLexicalDeclContext()->Equals(getDeclContext());
45}
46
Chris Lattnerd3b90652008-03-15 05:43:15 +000047//===----------------------------------------------------------------------===//
Douglas Gregor4afa39d2009-01-20 01:17:11 +000048// NamedDecl Implementation
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000049//===----------------------------------------------------------------------===//
50
John McCall5a758de2013-02-16 00:17:33 +000051// Visibility rules aren't rigorously externally specified, but here
52// are the basic principles behind what we implement:
53//
54// 1. An explicit visibility attribute is generally a direct expression
55// of the user's intent and should be honored. Only the innermost
56// visibility attribute applies. If no visibility attribute applies,
57// global visibility settings are considered.
58//
59// 2. There is one caveat to the above: on or in a template pattern,
60// an explicit visibility attribute is just a default rule, and
61// visibility can be decreased by the visibility of template
62// arguments. But this, too, has an exception: an attribute on an
63// explicit specialization or instantiation causes all the visibility
64// restrictions of the template arguments to be ignored.
65//
66// 3. A variable that does not otherwise have explicit visibility can
67// be restricted by the visibility of its type.
68//
69// 4. A visibility restriction is explicit if it comes from an
70// attribute (or something like it), not a global visibility setting.
71// When emitting a reference to an external symbol, visibility
72// restrictions are ignored unless they are explicit.
John McCalld4c3d662013-02-20 01:54:26 +000073//
74// 5. When computing the visibility of a non-type, including a
75// non-type member of a class, only non-type visibility restrictions
76// are considered: the 'visibility' attribute, global value-visibility
77// settings, and a few special cases like __private_extern.
78//
79// 6. When computing the visibility of a type, including a type member
80// of a class, only type visibility restrictions are considered:
81// the 'type_visibility' attribute and global type-visibility settings.
82// However, a 'visibility' attribute counts as a 'type_visibility'
83// attribute on any declaration that only has the former.
84//
85// The visibility of a "secondary" entity, like a template argument,
86// is computed using the kind of that entity, not the kind of the
87// primary entity for which we are computing visibility. For example,
88// the visibility of a specialization of either of these templates:
89// template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X);
90// template <class T, bool (&compare)(T, X)> class matcher;
91// is restricted according to the type visibility of the argument 'T',
92// the type visibility of 'bool(&)(T,X)', and the value visibility of
93// the argument function 'compare'. That 'has_match' is a value
94// and 'matcher' is a type only matters when looking for attributes
95// and settings from the immediate context.
John McCall5a758de2013-02-16 00:17:33 +000096
John McCall3892d022013-02-21 23:42:58 +000097const unsigned IgnoreExplicitVisibilityBit = 2;
Rafael Espindoladc070562013-05-28 19:43:11 +000098const unsigned IgnoreAllVisibilityBit = 4;
John McCall3892d022013-02-21 23:42:58 +000099
John McCall5a758de2013-02-16 00:17:33 +0000100/// Kinds of LV computation. The linkage side of the computation is
101/// always the same, but different things can change how visibility is
102/// computed.
103enum LVComputationKind {
John McCall3892d022013-02-21 23:42:58 +0000104 /// Do an LV computation for, ultimately, a type.
105 /// Visibility may be restricted by type visibility settings and
106 /// the visibility of template arguments.
John McCalld4c3d662013-02-20 01:54:26 +0000107 LVForType = NamedDecl::VisibilityForType,
John McCall5a758de2013-02-16 00:17:33 +0000108
John McCall3892d022013-02-21 23:42:58 +0000109 /// Do an LV computation for, ultimately, a non-type declaration.
110 /// Visibility may be restricted by value visibility settings and
111 /// the visibility of template arguments.
John McCalld4c3d662013-02-20 01:54:26 +0000112 LVForValue = NamedDecl::VisibilityForValue,
113
John McCall3892d022013-02-21 23:42:58 +0000114 /// Do an LV computation for, ultimately, a type that already has
115 /// some sort of explicit visibility. Visibility may only be
116 /// restricted by the visibility of template arguments.
117 LVForExplicitType = (LVForType | IgnoreExplicitVisibilityBit),
John McCalld4c3d662013-02-20 01:54:26 +0000118
John McCall3892d022013-02-21 23:42:58 +0000119 /// Do an LV computation for, ultimately, a non-type declaration
120 /// that already has some sort of explicit visibility. Visibility
121 /// may only be restricted by the visibility of template arguments.
Rafael Espindoladc070562013-05-28 19:43:11 +0000122 LVForExplicitValue = (LVForValue | IgnoreExplicitVisibilityBit),
123
124 /// Do an LV computation when we only care about the linkage.
125 LVForLinkageOnly =
126 LVForValue | IgnoreExplicitVisibilityBit | IgnoreAllVisibilityBit
John McCall5a758de2013-02-16 00:17:33 +0000127};
128
John McCalld4c3d662013-02-20 01:54:26 +0000129/// Does this computation kind permit us to consider additional
130/// visibility settings from attributes and the like?
131static bool hasExplicitVisibilityAlready(LVComputationKind computation) {
John McCall3892d022013-02-21 23:42:58 +0000132 return ((unsigned(computation) & IgnoreExplicitVisibilityBit) != 0);
John McCalld4c3d662013-02-20 01:54:26 +0000133}
134
135/// Given an LVComputationKind, return one of the same type/value sort
136/// that records that it already has explicit visibility.
137static LVComputationKind
138withExplicitVisibilityAlready(LVComputationKind oldKind) {
139 LVComputationKind newKind =
John McCall3892d022013-02-21 23:42:58 +0000140 static_cast<LVComputationKind>(unsigned(oldKind) |
141 IgnoreExplicitVisibilityBit);
John McCalld4c3d662013-02-20 01:54:26 +0000142 assert(oldKind != LVForType || newKind == LVForExplicitType);
143 assert(oldKind != LVForValue || newKind == LVForExplicitValue);
144 assert(oldKind != LVForExplicitType || newKind == LVForExplicitType);
145 assert(oldKind != LVForExplicitValue || newKind == LVForExplicitValue);
146 return newKind;
147}
148
David Blaikiedc84cd52013-02-20 22:23:23 +0000149static Optional<Visibility> getExplicitVisibility(const NamedDecl *D,
150 LVComputationKind kind) {
John McCalld4c3d662013-02-20 01:54:26 +0000151 assert(!hasExplicitVisibilityAlready(kind) &&
152 "asking for explicit visibility when we shouldn't be");
153 return D->getExplicitVisibility((NamedDecl::ExplicitVisibilityKind) kind);
154}
155
John McCall5a758de2013-02-16 00:17:33 +0000156/// Is the given declaration a "type" or a "value" for the purposes of
157/// visibility computation?
158static bool usesTypeVisibility(const NamedDecl *D) {
John McCalla880b192013-02-19 01:57:35 +0000159 return isa<TypeDecl>(D) ||
160 isa<ClassTemplateDecl>(D) ||
161 isa<ObjCInterfaceDecl>(D);
John McCall5a758de2013-02-16 00:17:33 +0000162}
163
John McCall3892d022013-02-21 23:42:58 +0000164/// Does the given declaration have member specialization information,
165/// and if so, is it an explicit specialization?
166template <class T> static typename
Stephen Hines651f13c2014-04-23 16:59:28 -0700167std::enable_if<!std::is_base_of<RedeclarableTemplateDecl, T>::value, bool>::type
John McCall3892d022013-02-21 23:42:58 +0000168isExplicitMemberSpecialization(const T *D) {
169 if (const MemberSpecializationInfo *member =
170 D->getMemberSpecializationInfo()) {
171 return member->isExplicitSpecialization();
172 }
173 return false;
174}
175
176/// For templates, this question is easier: a member template can't be
177/// explicitly instantiated, so there's a single bit indicating whether
178/// or not this is an explicit member specialization.
179static bool isExplicitMemberSpecialization(const RedeclarableTemplateDecl *D) {
180 return D->isMemberSpecialization();
181}
182
John McCalld4c3d662013-02-20 01:54:26 +0000183/// Given a visibility attribute, return the explicit visibility
184/// associated with it.
185template <class T>
186static Visibility getVisibilityFromAttr(const T *attr) {
187 switch (attr->getVisibility()) {
188 case T::Default:
189 return DefaultVisibility;
190 case T::Hidden:
191 return HiddenVisibility;
192 case T::Protected:
193 return ProtectedVisibility;
194 }
195 llvm_unreachable("bad visibility kind");
196}
197
John McCall5a758de2013-02-16 00:17:33 +0000198/// Return the explicit visibility of the given declaration.
David Blaikiedc84cd52013-02-20 22:23:23 +0000199static Optional<Visibility> getVisibilityOf(const NamedDecl *D,
John McCalld4c3d662013-02-20 01:54:26 +0000200 NamedDecl::ExplicitVisibilityKind kind) {
201 // If we're ultimately computing the visibility of a type, look for
202 // a 'type_visibility' attribute before looking for 'visibility'.
203 if (kind == NamedDecl::VisibilityForType) {
204 if (const TypeVisibilityAttr *A = D->getAttr<TypeVisibilityAttr>()) {
205 return getVisibilityFromAttr(A);
206 }
207 }
208
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000209 // If this declaration has an explicit visibility attribute, use it.
210 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) {
John McCalld4c3d662013-02-20 01:54:26 +0000211 return getVisibilityFromAttr(A);
John McCall1fb0caa2010-10-22 21:05:15 +0000212 }
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000213
214 // If we're on Mac OS X, an 'availability' for Mac OS X attribute
215 // implies visibility(default).
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000216 if (D->getASTContext().getTargetInfo().getTriple().isOSDarwin()) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700217 for (const auto *A : D->specific_attrs<AvailabilityAttr>())
218 if (A->getPlatform()->getName().equals("macosx"))
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000219 return DefaultVisibility;
220 }
221
David Blaikie66874fb2013-02-21 01:47:18 +0000222 return None;
John McCall1fb0caa2010-10-22 21:05:15 +0000223}
224
Rafael Espindola74caf012013-05-29 04:55:30 +0000225static LinkageInfo
226getLVForType(const Type &T, LVComputationKind computation) {
227 if (computation == LVForLinkageOnly)
228 return LinkageInfo(T.getLinkage(), DefaultVisibility, true);
229 return T.getLinkageAndVisibility();
230}
231
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000232/// \brief Get the most restrictive linkage for the types in the given
John McCall5a758de2013-02-16 00:17:33 +0000233/// template parameter list. For visibility purposes, template
234/// parameters are part of the signature of a template.
Rafael Espindola093ecc92012-01-14 00:30:36 +0000235static LinkageInfo
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700236getLVForTemplateParameterList(const TemplateParameterList *Params,
Rafael Espindola74caf012013-05-29 04:55:30 +0000237 LVComputationKind computation) {
John McCall5a758de2013-02-16 00:17:33 +0000238 LinkageInfo LV;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700239 for (const NamedDecl *P : *Params) {
John McCall5a758de2013-02-16 00:17:33 +0000240 // Template type parameters are the most common and never
241 // contribute to visibility, pack or not.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700242 if (isa<TemplateTypeParmDecl>(P))
John McCall5a758de2013-02-16 00:17:33 +0000243 continue;
244
245 // Non-type template parameters can be restricted by the value type, e.g.
246 // template <enum X> class A { ... };
247 // We have to be careful here, though, because we can be dealing with
248 // dependent types.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700249 if (const NonTypeTemplateParmDecl *NTTP =
250 dyn_cast<NonTypeTemplateParmDecl>(P)) {
John McCall5a758de2013-02-16 00:17:33 +0000251 // Handle the non-pack case first.
252 if (!NTTP->isExpandedParameterPack()) {
253 if (!NTTP->getType()->isDependentType()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000254 LV.merge(getLVForType(*NTTP->getType(), computation));
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000255 }
256 continue;
257 }
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000258
John McCall5a758de2013-02-16 00:17:33 +0000259 // Look at all the types in an expanded pack.
260 for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) {
261 QualType type = NTTP->getExpansionType(i);
262 if (!type->isDependentType())
Rafael Espindola18895dc2013-02-27 02:27:19 +0000263 LV.merge(type->getLinkageAndVisibility());
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000264 }
John McCall5a758de2013-02-16 00:17:33 +0000265 continue;
Douglas Gregor6952f1e2011-01-19 20:10:05 +0000266 }
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000267
John McCall5a758de2013-02-16 00:17:33 +0000268 // Template template parameters can be restricted by their
269 // template parameters, recursively.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700270 const TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(P);
John McCall5a758de2013-02-16 00:17:33 +0000271
272 // Handle the non-pack case first.
273 if (!TTP->isExpandedParameterPack()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000274 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(),
275 computation));
John McCall5a758de2013-02-16 00:17:33 +0000276 continue;
277 }
278
279 // Look at all expansions in an expanded pack.
280 for (unsigned i = 0, n = TTP->getNumExpansionTemplateParameters();
281 i != n; ++i) {
282 LV.merge(getLVForTemplateParameterList(
Rafael Espindola74caf012013-05-29 04:55:30 +0000283 TTP->getExpansionTemplateParameters(i), computation));
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000284 }
285 }
286
John McCall1fb0caa2010-10-22 21:05:15 +0000287 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000288}
289
Rafael Espindola838dc592013-01-12 06:42:30 +0000290/// getLVForDecl - Get the linkage and visibility for the given declaration.
John McCall5a758de2013-02-16 00:17:33 +0000291static LinkageInfo getLVForDecl(const NamedDecl *D,
292 LVComputationKind computation);
Douglas Gregor381d34e2010-12-06 18:36:25 +0000293
Eli Friedman07369dd2013-07-01 20:22:57 +0000294static const Decl *getOutermostFuncOrBlockContext(const Decl *D) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700295 const Decl *Ret = nullptr;
Rafael Espindola1229e202013-05-16 04:30:21 +0000296 const DeclContext *DC = D->getDeclContext();
297 while (DC->getDeclKind() != Decl::TranslationUnit) {
Eli Friedman07369dd2013-07-01 20:22:57 +0000298 if (isa<FunctionDecl>(DC) || isa<BlockDecl>(DC))
299 Ret = cast<Decl>(DC);
Rafael Espindola1229e202013-05-16 04:30:21 +0000300 DC = DC->getParent();
301 }
302 return Ret;
303}
304
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000305/// \brief Get the most restrictive linkage for the types and
306/// declarations in the given template argument list.
John McCall5a758de2013-02-16 00:17:33 +0000307///
308/// Note that we don't take an LVComputationKind because we always
309/// want to honor the visibility of template arguments in the same way.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700310static LinkageInfo getLVForTemplateArgumentList(ArrayRef<TemplateArgument> Args,
311 LVComputationKind computation) {
John McCall5a758de2013-02-16 00:17:33 +0000312 LinkageInfo LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000313
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700314 for (const TemplateArgument &Arg : Args) {
315 switch (Arg.getKind()) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000316 case TemplateArgument::Null:
317 case TemplateArgument::Integral:
318 case TemplateArgument::Expression:
John McCall5a758de2013-02-16 00:17:33 +0000319 continue;
Rafael Espindolab5d763d2012-01-02 06:26:22 +0000320
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000321 case TemplateArgument::Type:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700322 LV.merge(getLVForType(*Arg.getAsType(), computation));
John McCall5a758de2013-02-16 00:17:33 +0000323 continue;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000324
325 case TemplateArgument::Declaration:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700326 if (NamedDecl *ND = dyn_cast<NamedDecl>(Arg.getAsDecl())) {
John McCall5a758de2013-02-16 00:17:33 +0000327 assert(!usesTypeVisibility(ND));
Rafael Espindola74caf012013-05-29 04:55:30 +0000328 LV.merge(getLVForDecl(ND, computation));
John McCall5a758de2013-02-16 00:17:33 +0000329 }
330 continue;
Eli Friedmand7a6b162012-09-26 02:36:12 +0000331
332 case TemplateArgument::NullPtr:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700333 LV.merge(Arg.getNullPtrType()->getLinkageAndVisibility());
John McCall5a758de2013-02-16 00:17:33 +0000334 continue;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000335
336 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +0000337 case TemplateArgument::TemplateExpansion:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700338 if (TemplateDecl *Template =
339 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Rafael Espindola74caf012013-05-29 04:55:30 +0000340 LV.merge(getLVForDecl(Template, computation));
John McCall5a758de2013-02-16 00:17:33 +0000341 continue;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000342
343 case TemplateArgument::Pack:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700344 LV.merge(getLVForTemplateArgumentList(Arg.getPackAsArray(), computation));
John McCall5a758de2013-02-16 00:17:33 +0000345 continue;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000346 }
John McCall5a758de2013-02-16 00:17:33 +0000347 llvm_unreachable("bad template argument kind");
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000348 }
349
John McCall1fb0caa2010-10-22 21:05:15 +0000350 return LV;
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000351}
352
Rafael Espindola093ecc92012-01-14 00:30:36 +0000353static LinkageInfo
Rafael Espindola74caf012013-05-29 04:55:30 +0000354getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
355 LVComputationKind computation) {
356 return getLVForTemplateArgumentList(TArgs.asArray(), computation);
John McCall3cdfc4d2010-08-13 08:35:10 +0000357}
358
John McCall3892d022013-02-21 23:42:58 +0000359static bool shouldConsiderTemplateVisibility(const FunctionDecl *fn,
360 const FunctionTemplateSpecializationInfo *specInfo) {
361 // Include visibility from the template parameters and arguments
362 // only if this is not an explicit instantiation or specialization
363 // with direct explicit visibility. (Implicit instantiations won't
364 // have a direct attribute.)
365 if (!specInfo->isExplicitInstantiationOrSpecialization())
366 return true;
367
368 return !fn->hasAttr<VisibilityAttr>();
369}
370
John McCall5a758de2013-02-16 00:17:33 +0000371/// Merge in template-related linkage and visibility for the given
372/// function template specialization.
373///
374/// We don't need a computation kind here because we can assume
375/// LVForValue.
John McCall3892d022013-02-21 23:42:58 +0000376///
NAKAMURA Takumid9bd83e2013-02-22 04:06:28 +0000377/// \param[out] LV the computation to use for the parent
John McCall3892d022013-02-21 23:42:58 +0000378static void
379mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn,
Rafael Espindola74caf012013-05-29 04:55:30 +0000380 const FunctionTemplateSpecializationInfo *specInfo,
381 LVComputationKind computation) {
John McCall3892d022013-02-21 23:42:58 +0000382 bool considerVisibility =
383 shouldConsiderTemplateVisibility(fn, specInfo);
John McCall5a758de2013-02-16 00:17:33 +0000384
385 // Merge information from the template parameters.
John McCall3892d022013-02-21 23:42:58 +0000386 FunctionTemplateDecl *temp = specInfo->getTemplate();
John McCall5a758de2013-02-16 00:17:33 +0000387 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000388 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000389 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
390
391 // Merge information from the template arguments.
392 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
Rafael Espindola74caf012013-05-29 04:55:30 +0000393 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
John McCall5a758de2013-02-16 00:17:33 +0000394 LV.mergeMaybeWithVisibility(argsLV, considerVisibility);
John McCall6ce51ee2011-06-27 23:06:04 +0000395}
396
John McCall3892d022013-02-21 23:42:58 +0000397/// Does the given declaration have a direct visibility attribute
398/// that would match the given rules?
399static bool hasDirectVisibilityAttribute(const NamedDecl *D,
400 LVComputationKind computation) {
401 switch (computation) {
402 case LVForType:
403 case LVForExplicitType:
404 if (D->hasAttr<TypeVisibilityAttr>())
405 return true;
406 // fallthrough
407 case LVForValue:
408 case LVForExplicitValue:
409 if (D->hasAttr<VisibilityAttr>())
410 return true;
411 return false;
Rafael Espindoladc070562013-05-28 19:43:11 +0000412 case LVForLinkageOnly:
413 return false;
John McCall3892d022013-02-21 23:42:58 +0000414 }
415 llvm_unreachable("bad visibility computation kind");
416}
417
John McCalld4c3d662013-02-20 01:54:26 +0000418/// Should we consider visibility associated with the template
419/// arguments and parameters of the given class template specialization?
420static bool shouldConsiderTemplateVisibility(
421 const ClassTemplateSpecializationDecl *spec,
422 LVComputationKind computation) {
John McCall5a758de2013-02-16 00:17:33 +0000423 // Include visibility from the template parameters and arguments
424 // only if this is not an explicit instantiation or specialization
425 // with direct explicit visibility (and note that implicit
426 // instantiations won't have a direct attribute).
427 //
428 // Furthermore, we want to ignore template parameters and arguments
John McCalld4c3d662013-02-20 01:54:26 +0000429 // for an explicit specialization when computing the visibility of a
430 // member thereof with explicit visibility.
John McCall5a758de2013-02-16 00:17:33 +0000431 //
432 // This is a bit complex; let's unpack it.
433 //
434 // An explicit class specialization is an independent, top-level
435 // declaration. As such, if it or any of its members has an
436 // explicit visibility attribute, that must directly express the
437 // user's intent, and we should honor it. The same logic applies to
438 // an explicit instantiation of a member of such a thing.
John McCalld4c3d662013-02-20 01:54:26 +0000439
440 // Fast path: if this is not an explicit instantiation or
441 // specialization, we always want to consider template-related
442 // visibility restrictions.
443 if (!spec->isExplicitInstantiationOrSpecialization())
444 return true;
445
446 // This is the 'member thereof' check.
447 if (spec->isExplicitSpecialization() &&
448 hasExplicitVisibilityAlready(computation))
449 return false;
450
John McCall3892d022013-02-21 23:42:58 +0000451 return !hasDirectVisibilityAttribute(spec, computation);
John McCalld4c3d662013-02-20 01:54:26 +0000452}
453
454/// Merge in template-related linkage and visibility for the given
455/// class template specialization.
456static void mergeTemplateLV(LinkageInfo &LV,
457 const ClassTemplateSpecializationDecl *spec,
458 LVComputationKind computation) {
459 bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
John McCall5a758de2013-02-16 00:17:33 +0000460
461 // Merge information from the template parameters, but ignore
462 // visibility if we're only considering template arguments.
463
John McCalld4c3d662013-02-20 01:54:26 +0000464 ClassTemplateDecl *temp = spec->getSpecializedTemplate();
John McCall5a758de2013-02-16 00:17:33 +0000465 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000466 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000467 LV.mergeMaybeWithVisibility(tempLV,
John McCalld4c3d662013-02-20 01:54:26 +0000468 considerVisibility && !hasExplicitVisibilityAlready(computation));
John McCall5a758de2013-02-16 00:17:33 +0000469
470 // Merge information from the template arguments. We ignore
471 // template-argument visibility if we've got an explicit
472 // instantiation with a visibility attribute.
473 const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
Rafael Espindola74caf012013-05-29 04:55:30 +0000474 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
Rafael Espindolae9808902013-05-30 21:23:15 +0000475 if (considerVisibility)
476 LV.mergeVisibility(argsLV);
477 LV.mergeExternalVisibility(argsLV);
John McCall6ce51ee2011-06-27 23:06:04 +0000478}
479
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700480/// Should we consider visibility associated with the template
481/// arguments and parameters of the given variable template
482/// specialization? As usual, follow class template specialization
483/// logic up to initialization.
484static bool shouldConsiderTemplateVisibility(
485 const VarTemplateSpecializationDecl *spec,
486 LVComputationKind computation) {
487 // Include visibility from the template parameters and arguments
488 // only if this is not an explicit instantiation or specialization
489 // with direct explicit visibility (and note that implicit
490 // instantiations won't have a direct attribute).
491 if (!spec->isExplicitInstantiationOrSpecialization())
492 return true;
493
494 // An explicit variable specialization is an independent, top-level
495 // declaration. As such, if it has an explicit visibility attribute,
496 // that must directly express the user's intent, and we should honor
497 // it.
498 if (spec->isExplicitSpecialization() &&
499 hasExplicitVisibilityAlready(computation))
500 return false;
501
502 return !hasDirectVisibilityAttribute(spec, computation);
503}
504
505/// Merge in template-related linkage and visibility for the given
506/// variable template specialization. As usual, follow class template
507/// specialization logic up to initialization.
508static void mergeTemplateLV(LinkageInfo &LV,
509 const VarTemplateSpecializationDecl *spec,
510 LVComputationKind computation) {
511 bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
512
513 // Merge information from the template parameters, but ignore
514 // visibility if we're only considering template arguments.
515
516 VarTemplateDecl *temp = spec->getSpecializedTemplate();
517 LinkageInfo tempLV =
518 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
519 LV.mergeMaybeWithVisibility(tempLV,
520 considerVisibility && !hasExplicitVisibilityAlready(computation));
521
522 // Merge information from the template arguments. We ignore
523 // template-argument visibility if we've got an explicit
524 // instantiation with a visibility attribute.
525 const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
526 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
527 if (considerVisibility)
528 LV.mergeVisibility(argsLV);
529 LV.mergeExternalVisibility(argsLV);
530}
531
Rafael Espindolab04b7312012-07-13 14:25:36 +0000532static bool useInlineVisibilityHidden(const NamedDecl *D) {
533 // FIXME: we should warn if -fvisibility-inlines-hidden is used with c.
Rafael Espindola0bab9da2012-07-13 23:26:43 +0000534 const LangOptions &Opts = D->getASTContext().getLangOpts();
535 if (!Opts.CPlusPlus || !Opts.InlineVisibilityHidden)
Rafael Espindolab04b7312012-07-13 14:25:36 +0000536 return false;
537
538 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
539 if (!FD)
540 return false;
541
542 TemplateSpecializationKind TSK = TSK_Undeclared;
543 if (FunctionTemplateSpecializationInfo *spec
544 = FD->getTemplateSpecializationInfo()) {
545 TSK = spec->getTemplateSpecializationKind();
546 } else if (MemberSpecializationInfo *MSI =
547 FD->getMemberSpecializationInfo()) {
548 TSK = MSI->getTemplateSpecializationKind();
549 }
550
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700551 const FunctionDecl *Def = nullptr;
Rafael Espindolab04b7312012-07-13 14:25:36 +0000552 // InlineVisibilityHidden only applies to definitions, and
553 // isInlined() only gives meaningful answers on definitions
554 // anyway.
555 return TSK != TSK_ExplicitInstantiationDeclaration &&
556 TSK != TSK_ExplicitInstantiationDefinition &&
Rafael Espindola0142f0c2012-10-11 16:32:25 +0000557 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
Rafael Espindolab04b7312012-07-13 14:25:36 +0000558}
559
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000560template <typename T> static bool isFirstInExternCContext(T *D) {
Rafael Espindolabc650912013-10-17 15:37:26 +0000561 const T *First = D->getFirstDecl();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000562 return First->isInExternCContext();
Rafael Espindola950fee22013-02-14 01:18:37 +0000563}
564
Stephen Hines651f13c2014-04-23 16:59:28 -0700565static bool isSingleLineLanguageLinkage(const Decl &D) {
Rafael Espindolae5e575d2013-04-26 01:30:23 +0000566 if (const LinkageSpecDecl *SD = dyn_cast<LinkageSpecDecl>(D.getDeclContext()))
Stephen Hines651f13c2014-04-23 16:59:28 -0700567 if (!SD->hasBraces())
Rafael Espindolae5e575d2013-04-26 01:30:23 +0000568 return true;
569 return false;
570}
571
Rafael Espindola1266b612012-04-21 23:28:21 +0000572static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D,
John McCall5a758de2013-02-16 00:17:33 +0000573 LVComputationKind computation) {
Sebastian Redl7a126a42010-08-31 00:36:30 +0000574 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregord85b5b92009-11-25 22:24:25 +0000575 "Not a name having namespace scope");
576 ASTContext &Context = D->getASTContext();
577
578 // C++ [basic.link]p3:
579 // A name having namespace scope (3.3.6) has internal linkage if it
580 // is the name of
581 // - an object, reference, function or function template that is
582 // explicitly declared static; or,
583 // (This bullet corresponds to C99 6.2.2p3.)
584 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
585 // Explicitly declared static.
John McCalld931b082010-08-26 03:08:43 +0000586 if (Var->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000587 return LinkageInfo::internal();
Douglas Gregord85b5b92009-11-25 22:24:25 +0000588
Richard Smith820e9a72012-10-19 06:37:48 +0000589 // - a non-volatile object or reference that is explicitly declared const
590 // or constexpr and neither explicitly declared extern nor previously
591 // declared to have external linkage; or (there is no equivalent in C99)
David Blaikie4e4d0842012-03-11 07:00:24 +0000592 if (Context.getLangOpts().CPlusPlus &&
Richard Smith820e9a72012-10-19 06:37:48 +0000593 Var->getType().isConstQualified() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +0000594 !Var->getType().isVolatileQualified()) {
Rafael Espindola4f8a3eb2013-04-03 19:22:20 +0000595 const VarDecl *PrevVar = Var->getPreviousDecl();
Rafael Espindola4f8a3eb2013-04-03 19:22:20 +0000596 if (PrevVar)
Rafael Espindola74caf012013-05-29 04:55:30 +0000597 return getLVForDecl(PrevVar, computation);
Rafael Espindolad2615cc2013-04-03 19:27:57 +0000598
599 if (Var->getStorageClass() != SC_Extern &&
Rafael Espindolae5e575d2013-04-26 01:30:23 +0000600 Var->getStorageClass() != SC_PrivateExtern &&
Stephen Hines651f13c2014-04-23 16:59:28 -0700601 !isSingleLineLanguageLinkage(*Var))
Rafael Espindolad2615cc2013-04-03 19:27:57 +0000602 return LinkageInfo::internal();
603 }
604
605 for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
606 PrevVar = PrevVar->getPreviousDecl()) {
607 if (PrevVar->getStorageClass() == SC_PrivateExtern &&
608 Var->getStorageClass() == SC_None)
609 return PrevVar->getLinkageAndVisibility();
610 // Explicitly declared static.
611 if (PrevVar->getStorageClass() == SC_Static)
612 return LinkageInfo::internal();
Fariborz Jahanianc7c90582011-06-16 20:14:50 +0000613 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700614 } else if (const FunctionDecl *Function = D->getAsFunction()) {
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000615 // C++ [temp]p4:
616 // A non-member function template can have internal linkage; any
617 // other template name shall have external linkage.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000618
619 // Explicitly declared static.
Rafael Espindolad2615cc2013-04-03 19:27:57 +0000620 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
John McCallaf146032010-10-30 11:50:40 +0000621 return LinkageInfo(InternalLinkage, DefaultVisibility, false);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000622 }
David Majnemer885d8bf2013-10-23 20:52:43 +0000623 // - a data member of an anonymous union.
624 assert(!isa<IndirectFieldDecl>(D) && "Didn't expect an IndirectFieldDecl!");
625 assert(!isa<FieldDecl>(D) && "Didn't expect a FieldDecl!");
Douglas Gregord85b5b92009-11-25 22:24:25 +0000626
Chandler Carruth094b6432011-02-24 19:03:39 +0000627 if (D->isInAnonymousNamespace()) {
628 const VarDecl *Var = dyn_cast<VarDecl>(D);
629 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000630 if ((!Var || !isFirstInExternCContext(Var)) &&
631 (!Func || !isFirstInExternCContext(Func)))
Chandler Carruth094b6432011-02-24 19:03:39 +0000632 return LinkageInfo::uniqueExternal();
633 }
John McCalle7bc9722010-10-28 04:18:25 +0000634
John McCall1fb0caa2010-10-22 21:05:15 +0000635 // Set up the defaults.
636
637 // C99 6.2.2p5:
638 // If the declaration of an identifier for an object has file
639 // scope and no storage-class specifier, its linkage is
640 // external.
John McCallaf146032010-10-30 11:50:40 +0000641 LinkageInfo LV;
642
John McCalld4c3d662013-02-20 01:54:26 +0000643 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000644 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000645 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000646 } else {
647 // If we're declared in a namespace with a visibility attribute,
John McCall5a758de2013-02-16 00:17:33 +0000648 // use that namespace's visibility, and it still counts as explicit.
Rafael Espindolae9836a22012-04-16 18:46:26 +0000649 for (const DeclContext *DC = D->getDeclContext();
650 !isa<TranslationUnitDecl>(DC);
651 DC = DC->getParent()) {
652 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
653 if (!ND) continue;
David Blaikiedc84cd52013-02-20 22:23:23 +0000654 if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000655 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000656 break;
657 }
658 }
659 }
Rafael Espindolae9836a22012-04-16 18:46:26 +0000660
John McCall5a758de2013-02-16 00:17:33 +0000661 // Add in global settings if the above didn't give us direct visibility.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000662 if (!LV.isVisibilityExplicit()) {
John McCalla880b192013-02-19 01:57:35 +0000663 // Use global type/value visibility as appropriate.
664 Visibility globalVisibility;
665 if (computation == LVForValue) {
666 globalVisibility = Context.getLangOpts().getValueVisibilityMode();
667 } else {
668 assert(computation == LVForType);
669 globalVisibility = Context.getLangOpts().getTypeVisibilityMode();
670 }
671 LV.mergeVisibility(globalVisibility, /*explicit*/ false);
John McCall5a758de2013-02-16 00:17:33 +0000672
673 // If we're paying attention to global visibility, apply
674 // -finline-visibility-hidden if this is an inline method.
675 if (useInlineVisibilityHidden(D))
676 LV.mergeVisibility(HiddenVisibility, true);
677 }
Rafael Espindolab04b7312012-07-13 14:25:36 +0000678 }
Rafael Espindolaff257982012-04-19 02:55:01 +0000679
Douglas Gregord85b5b92009-11-25 22:24:25 +0000680 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000681
Douglas Gregord85b5b92009-11-25 22:24:25 +0000682 // A name having namespace scope has external linkage if it is the
683 // name of
684 //
685 // - an object or reference, unless it has internal linkage; or
686 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000687 // GCC applies the following optimization to variables and static
688 // data members, but not to functions:
689 //
John McCall1fb0caa2010-10-22 21:05:15 +0000690 // Modify the variable's LV by the LV of its type unless this is
691 // C or extern "C". This follows from [basic.link]p9:
692 // A type without linkage shall not be used as the type of a
693 // variable or function with external linkage unless
694 // - the entity has C language linkage, or
695 // - the entity is declared within an unnamed namespace, or
696 // - the entity is not used or is defined in the same
697 // translation unit.
698 // and [basic.link]p10:
699 // ...the types specified by all declarations referring to a
700 // given variable or function shall be identical...
701 // C does not have an equivalent rule.
702 //
John McCallac65c622010-10-26 04:59:26 +0000703 // Ignore this if we've got an explicit attribute; the user
704 // probably knows what they're doing.
705 //
John McCall1fb0caa2010-10-22 21:05:15 +0000706 // Note that we don't want to make the variable non-external
707 // because of this, but unique-external linkage suits us.
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000708 if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var)) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000709 LinkageInfo TypeLV = getLVForType(*Var->getType(), computation);
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000710 if (TypeLV.getLinkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000711 return LinkageInfo::uniqueExternal();
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000712 if (!LV.isVisibilityExplicit())
John McCall5a758de2013-02-16 00:17:33 +0000713 LV.mergeVisibility(TypeLV);
John McCall110e8e52010-10-29 22:22:43 +0000714 }
715
John McCall35cebc32010-11-02 18:38:13 +0000716 if (Var->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000717 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000718
Rafael Espindola538fb982012-11-12 04:10:23 +0000719 // Note that Sema::MergeVarDecl already takes care of implementing
720 // C99 6.2.2p4 and propagating the visibility attribute, so we don't have
721 // to do it here.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000722
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700723 // As per function and class template specializations (below),
724 // consider LV for the template and template arguments. We're at file
725 // scope, so we do not need to worry about nested specializations.
726 if (const VarTemplateSpecializationDecl *spec
727 = dyn_cast<VarTemplateSpecializationDecl>(Var)) {
728 mergeTemplateLV(LV, spec, computation);
729 }
730
Douglas Gregord85b5b92009-11-25 22:24:25 +0000731 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000732 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000733 // In theory, we can modify the function's LV by the LV of its
734 // type unless it has C linkage (see comment above about variables
735 // for justification). In practice, GCC doesn't do this, so it's
736 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000737
John McCall35cebc32010-11-02 18:38:13 +0000738 if (Function->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000739 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000740
Rafael Espindola51758612012-11-21 02:47:19 +0000741 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
742 // merging storage classes and visibility attributes, so we don't have to
743 // look at previous decls in here.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000744
John McCallaf8ca372011-02-10 06:50:24 +0000745 // In C++, then if the type of the function uses a type with
746 // unique-external linkage, it's not legally usable from outside
747 // this translation unit. However, we should use the C linkage
748 // rules instead for extern "C" declarations.
David Blaikie4e4d0842012-03-11 07:00:24 +0000749 if (Context.getLangOpts().CPlusPlus &&
Richard Smithd248e582013-05-12 23:17:59 +0000750 !Function->isInExternCContext()) {
751 // Only look at the type-as-written. If this function has an auto-deduced
752 // return type, we can't compute the linkage of that type because it could
753 // require looking at the linkage of this function, and we don't need this
754 // for correctness because the type is not part of the function's
755 // signature.
Faisal Valiffc63a82013-10-08 04:15:04 +0000756 // FIXME: This is a hack. We should be able to solve this circularity and
757 // the one in getLVForClassMember for Functions some other way.
Richard Smithd248e582013-05-12 23:17:59 +0000758 QualType TypeAsWritten = Function->getType();
759 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
760 TypeAsWritten = TSI->getType();
761 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage)
762 return LinkageInfo::uniqueExternal();
763 }
John McCallaf8ca372011-02-10 06:50:24 +0000764
John McCall3892d022013-02-21 23:42:58 +0000765 // Consider LV from the template and the template arguments.
766 // We're at file scope, so we do not need to worry about nested
767 // specializations.
John McCall6ce51ee2011-06-27 23:06:04 +0000768 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000769 = Function->getTemplateSpecializationInfo()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000770 mergeTemplateLV(LV, Function, specInfo, computation);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000771 }
772
Douglas Gregord85b5b92009-11-25 22:24:25 +0000773 // - a named class (Clause 9), or an unnamed class defined in a
774 // typedef declaration in which the class has the typedef name
775 // for linkage purposes (7.1.3); or
776 // - a named enumeration (7.2), or an unnamed enumeration
777 // defined in a typedef declaration in which the enumeration
778 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000779 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
780 // Unnamed tags have no linkage.
John McCall83972f12013-03-09 00:54:27 +0000781 if (!Tag->hasNameForLinkage())
John McCallaf146032010-10-30 11:50:40 +0000782 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000783
John McCall1fb0caa2010-10-22 21:05:15 +0000784 // If this is a class template specialization, consider the
John McCall3892d022013-02-21 23:42:58 +0000785 // linkage of the template and template arguments. We're at file
786 // scope, so we do not need to worry about nested specializations.
John McCall6ce51ee2011-06-27 23:06:04 +0000787 if (const ClassTemplateSpecializationDecl *spec
John McCall1fb0caa2010-10-22 21:05:15 +0000788 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCall5a758de2013-02-16 00:17:33 +0000789 mergeTemplateLV(LV, spec, computation);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000790 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000791
792 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000793 } else if (isa<EnumConstantDecl>(D)) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000794 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
John McCall5a758de2013-02-16 00:17:33 +0000795 computation);
Rafael Espindola88ce12a2013-05-27 14:14:42 +0000796 if (!isExternalFormalLinkage(EnumLV.getLinkage()))
John McCallaf146032010-10-30 11:50:40 +0000797 return LinkageInfo::none();
798 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000799
800 // - a template, unless it is a function template that has
801 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000802 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
John McCalld4c3d662013-02-20 01:54:26 +0000803 bool considerVisibility = !hasExplicitVisibilityAlready(computation);
John McCall5a758de2013-02-16 00:17:33 +0000804 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000805 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000806 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
807
Douglas Gregord85b5b92009-11-25 22:24:25 +0000808 // - a namespace (7.3), unless it is declared within an unnamed
809 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000810 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
811 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000812
John McCall1fb0caa2010-10-22 21:05:15 +0000813 // By extension, we assign external linkage to Objective-C
814 // interfaces.
815 } else if (isa<ObjCInterfaceDecl>(D)) {
816 // fallout
817
818 // Everything not covered here has no linkage.
819 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800820 // FIXME: A typedef declaration has linkage if it gives a type a name for
821 // linkage purposes.
John McCallaf146032010-10-30 11:50:40 +0000822 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000823 }
824
825 // If we ended up with non-external linkage, visibility should
826 // always be default.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000827 if (LV.getLinkage() != ExternalLinkage)
828 return LinkageInfo(LV.getLinkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000829
John McCall1fb0caa2010-10-22 21:05:15 +0000830 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000831}
832
John McCall5a758de2013-02-16 00:17:33 +0000833static LinkageInfo getLVForClassMember(const NamedDecl *D,
834 LVComputationKind computation) {
John McCall1fb0caa2010-10-22 21:05:15 +0000835 // Only certain class members have linkage. Note that fields don't
836 // really have linkage, but it's convenient to say they do for the
837 // purposes of calculating linkage of pointer-to-data-member
838 // template arguments.
Stephen Hines651f13c2014-04-23 16:59:28 -0700839 //
840 // Templates also don't officially have linkage, but since we ignore
841 // the C++ standard and look at template arguments when determining
842 // linkage and visibility of a template specialization, we might hit
843 // a template template argument that way. If we do, we need to
844 // consider its linkage.
John McCall3cdfc4d2010-08-13 08:35:10 +0000845 if (!(isa<CXXMethodDecl>(D) ||
846 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000847 isa<FieldDecl>(D) ||
David Majnemer885d8bf2013-10-23 20:52:43 +0000848 isa<IndirectFieldDecl>(D) ||
Stephen Hines651f13c2014-04-23 16:59:28 -0700849 isa<TagDecl>(D) ||
850 isa<TemplateDecl>(D)))
John McCallaf146032010-10-30 11:50:40 +0000851 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000852
John McCall36987482010-11-02 01:45:15 +0000853 LinkageInfo LV;
854
John McCall36987482010-11-02 01:45:15 +0000855 // If we have an explicit visibility attribute, merge that in.
John McCalld4c3d662013-02-20 01:54:26 +0000856 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000857 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation))
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000858 LV.mergeVisibility(*Vis, true);
Rafael Espindolab04b7312012-07-13 14:25:36 +0000859 // If we're paying attention to global visibility, apply
860 // -finline-visibility-hidden if this is an inline method.
861 //
862 // Note that we do this before merging information about
863 // the class visibility.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000864 if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D))
Rafael Espindolab04b7312012-07-13 14:25:36 +0000865 LV.mergeVisibility(HiddenVisibility, true);
John McCall36987482010-11-02 01:45:15 +0000866 }
Rafael Espindolac7e60602012-04-19 05:50:08 +0000867
868 // If this class member has an explicit visibility attribute, the only
869 // thing that can change its visibility is the template arguments, so
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +0000870 // only look for them when processing the class.
John McCalld4c3d662013-02-20 01:54:26 +0000871 LVComputationKind classComputation = computation;
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000872 if (LV.isVisibilityExplicit())
John McCalld4c3d662013-02-20 01:54:26 +0000873 classComputation = withExplicitVisibilityAlready(computation);
Rafael Espindola0f905902012-04-16 18:25:01 +0000874
John McCall3892d022013-02-21 23:42:58 +0000875 LinkageInfo classLV =
876 getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation);
John McCall3cdfc4d2010-08-13 08:35:10 +0000877 // If the class already has unique-external linkage, we can't improve.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000878 if (classLV.getLinkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000879 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000880
Rafael Espindolae8328542013-05-28 02:22:10 +0000881 if (!isExternallyVisible(classLV.getLinkage()))
882 return LinkageInfo::none();
883
884
John McCall3892d022013-02-21 23:42:58 +0000885 // Otherwise, don't merge in classLV yet, because in certain cases
886 // we need to completely ignore the visibility from it.
887
888 // Specifically, if this decl exists and has an explicit attribute.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700889 const NamedDecl *explicitSpecSuppressor = nullptr;
John McCall3892d022013-02-21 23:42:58 +0000890
John McCall3cdfc4d2010-08-13 08:35:10 +0000891 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000892 // If the type of the function uses a type with unique-external
893 // linkage, it's not legally usable from outside this translation unit.
Faisal Valiffc63a82013-10-08 04:15:04 +0000894 // But only look at the type-as-written. If this function has an auto-deduced
895 // return type, we can't compute the linkage of that type because it could
896 // require looking at the linkage of this function, and we don't need this
897 // for correctness because the type is not part of the function's
898 // signature.
899 // FIXME: This is a hack. We should be able to solve this circularity and the
900 // one in getLVForNamespaceScopeDecl for Functions some other way.
901 {
902 QualType TypeAsWritten = MD->getType();
903 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
904 TypeAsWritten = TSI->getType();
905 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage)
906 return LinkageInfo::uniqueExternal();
907 }
John McCall1fb0caa2010-10-22 21:05:15 +0000908 // If this is a method template specialization, use the linkage for
909 // the template parameters and arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000910 if (FunctionTemplateSpecializationInfo *spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000911 = MD->getTemplateSpecializationInfo()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000912 mergeTemplateLV(LV, MD, spec, computation);
John McCall3892d022013-02-21 23:42:58 +0000913 if (spec->isExplicitSpecialization()) {
914 explicitSpecSuppressor = MD;
915 } else if (isExplicitMemberSpecialization(spec->getTemplate())) {
916 explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl();
917 }
918 } else if (isExplicitMemberSpecialization(MD)) {
919 explicitSpecSuppressor = MD;
John McCall66cbcf32010-11-01 01:29:57 +0000920 }
John McCall1fb0caa2010-10-22 21:05:15 +0000921
John McCall110e8e52010-10-29 22:22:43 +0000922 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000923 if (const ClassTemplateSpecializationDecl *spec
John McCall110e8e52010-10-29 22:22:43 +0000924 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
John McCall5a758de2013-02-16 00:17:33 +0000925 mergeTemplateLV(LV, spec, computation);
John McCall3892d022013-02-21 23:42:58 +0000926 if (spec->isExplicitSpecialization()) {
927 explicitSpecSuppressor = spec;
928 } else {
929 const ClassTemplateDecl *temp = spec->getSpecializedTemplate();
930 if (isExplicitMemberSpecialization(temp)) {
931 explicitSpecSuppressor = temp->getTemplatedDecl();
932 }
933 }
934 } else if (isExplicitMemberSpecialization(RD)) {
935 explicitSpecSuppressor = RD;
John McCall110e8e52010-10-29 22:22:43 +0000936 }
937
John McCall110e8e52010-10-29 22:22:43 +0000938 // Static data members.
939 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700940 if (const VarTemplateSpecializationDecl *spec
941 = dyn_cast<VarTemplateSpecializationDecl>(VD))
942 mergeTemplateLV(LV, spec, computation);
943
John McCallee301022010-10-30 09:18:49 +0000944 // Modify the variable's linkage by its type, but ignore the
945 // type's visibility unless it's a definition.
Rafael Espindola74caf012013-05-29 04:55:30 +0000946 LinkageInfo typeLV = getLVForType(*VD->getType(), computation);
Rafael Espindolae9808902013-05-30 21:23:15 +0000947 if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit())
948 LV.mergeVisibility(typeLV);
949 LV.mergeExternalVisibility(typeLV);
John McCall3892d022013-02-21 23:42:58 +0000950
951 if (isExplicitMemberSpecialization(VD)) {
952 explicitSpecSuppressor = VD;
953 }
John McCall5a758de2013-02-16 00:17:33 +0000954
955 // Template members.
956 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
957 bool considerVisibility =
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000958 (!LV.isVisibilityExplicit() &&
959 !classLV.isVisibilityExplicit() &&
John McCalld4c3d662013-02-20 01:54:26 +0000960 !hasExplicitVisibilityAlready(computation));
John McCall5a758de2013-02-16 00:17:33 +0000961 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000962 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000963 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
John McCall3892d022013-02-21 23:42:58 +0000964
965 if (const RedeclarableTemplateDecl *redeclTemp =
966 dyn_cast<RedeclarableTemplateDecl>(temp)) {
967 if (isExplicitMemberSpecialization(redeclTemp)) {
968 explicitSpecSuppressor = temp->getTemplatedDecl();
969 }
970 }
John McCall110e8e52010-10-29 22:22:43 +0000971 }
972
John McCall3892d022013-02-21 23:42:58 +0000973 // We should never be looking for an attribute directly on a template.
974 assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor));
975
976 // If this member is an explicit member specialization, and it has
977 // an explicit attribute, ignore visibility from the parent.
978 bool considerClassVisibility = true;
979 if (explicitSpecSuppressor &&
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000980 // optimization: hasDVA() is true only with explicit visibility.
981 LV.isVisibilityExplicit() &&
982 classLV.getVisibility() != DefaultVisibility &&
John McCall3892d022013-02-21 23:42:58 +0000983 hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) {
984 considerClassVisibility = false;
985 }
986
987 // Finally, merge in information from the class.
988 LV.mergeMaybeWithVisibility(classLV, considerClassVisibility);
John McCall1fb0caa2010-10-22 21:05:15 +0000989 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000990}
991
David Blaikie99ba9e32011-12-20 02:48:34 +0000992void NamedDecl::anchor() { }
993
Rafael Espindola74caf012013-05-29 04:55:30 +0000994static LinkageInfo computeLVForDecl(const NamedDecl *D,
995 LVComputationKind computation);
996
Rafael Espindola2d1b0962013-03-14 03:07:35 +0000997bool NamedDecl::isLinkageValid() const {
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +0000998 if (!hasCachedLinkage())
Rafael Espindola2d1b0962013-03-14 03:07:35 +0000999 return true;
John McCallf76b0922011-02-08 19:01:05 +00001000
Rafael Espindola74caf012013-05-29 04:55:30 +00001001 return computeLVForDecl(this, LVForLinkageOnly).getLinkage() ==
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001002 getCachedLinkage();
John McCallf76b0922011-02-08 19:01:05 +00001003}
1004
Stephen Hines176edba2014-12-01 14:53:08 -08001005ObjCStringFormatFamily NamedDecl::getObjCFStringFormattingFamily() const {
1006 StringRef name = getName();
1007 if (name.empty()) return SFF_None;
1008
1009 if (name.front() == 'C')
1010 if (name == "CFStringCreateWithFormat" ||
1011 name == "CFStringCreateWithFormatAndArguments" ||
1012 name == "CFStringAppendFormat" ||
1013 name == "CFStringAppendFormatAndArguments")
1014 return SFF_CFString;
1015 return SFF_None;
1016}
1017
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001018Linkage NamedDecl::getLinkageInternal() const {
John McCalld4c3d662013-02-20 01:54:26 +00001019 // We don't care about visibility here, so ask for the cheapest
1020 // possible visibility analysis.
Rafael Espindoladc070562013-05-28 19:43:11 +00001021 return getLVForDecl(this, LVForLinkageOnly).getLinkage();
Douglas Gregor381d34e2010-12-06 18:36:25 +00001022}
1023
John McCallaf146032010-10-30 11:50:40 +00001024LinkageInfo NamedDecl::getLinkageAndVisibility() const {
John McCall5a758de2013-02-16 00:17:33 +00001025 LVComputationKind computation =
1026 (usesTypeVisibility(this) ? LVForType : LVForValue);
Rafael Espindoladc070562013-05-28 19:43:11 +00001027 return getLVForDecl(this, computation);
John McCall0df95872010-10-29 00:29:13 +00001028}
Ted Kremenekbecc3082010-04-20 23:15:35 +00001029
Bill Wendlingb8110d42013-11-27 05:28:46 +00001030static Optional<Visibility>
1031getExplicitVisibilityAux(const NamedDecl *ND,
1032 NamedDecl::ExplicitVisibilityKind kind,
1033 bool IsMostRecent) {
1034 assert(!IsMostRecent || ND == ND->getMostRecentDecl());
1035
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001036 // Check the declaration itself first.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001037 if (Optional<Visibility> V = getVisibilityOf(ND, kind))
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001038 return V;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001039
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001040 // If this is a member class of a specialization of a class template
1041 // and the corresponding decl has explicit visibility, use that.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001042 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(ND)) {
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001043 CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
1044 if (InstantiatedFrom)
1045 return getVisibilityOf(InstantiatedFrom, kind);
1046 }
1047
1048 // If there wasn't explicit visibility there, and this is a
1049 // specialization of a class template, check for visibility
1050 // on the pattern.
1051 if (const ClassTemplateSpecializationDecl *spec
Bill Wendlingb8110d42013-11-27 05:28:46 +00001052 = dyn_cast<ClassTemplateSpecializationDecl>(ND))
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001053 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl(),
1054 kind);
1055
1056 // Use the most recent declaration.
Bill Wendling525f2f52013-12-09 02:00:10 +00001057 if (!IsMostRecent && !isa<NamespaceDecl>(ND)) {
Bill Wendlingb8110d42013-11-27 05:28:46 +00001058 const NamedDecl *MostRecent = ND->getMostRecentDecl();
1059 if (MostRecent != ND)
1060 return getExplicitVisibilityAux(MostRecent, kind, true);
1061 }
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001062
Bill Wendlingb8110d42013-11-27 05:28:46 +00001063 if (const VarDecl *Var = dyn_cast<VarDecl>(ND)) {
Rafael Espindola797105a2012-05-16 02:10:38 +00001064 if (Var->isStaticDataMember()) {
1065 VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
1066 if (InstantiatedFrom)
John McCalld4c3d662013-02-20 01:54:26 +00001067 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola797105a2012-05-16 02:10:38 +00001068 }
1069
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001070 if (const auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(Var))
1071 return getVisibilityOf(VTSD->getSpecializedTemplate()->getTemplatedDecl(),
1072 kind);
1073
David Blaikie66874fb2013-02-21 01:47:18 +00001074 return None;
Rafael Espindola797105a2012-05-16 02:10:38 +00001075 }
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001076 // Also handle function template specializations.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001077 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001078 // If the function is a specialization of a template with an
1079 // explicit visibility attribute, use that.
1080 if (FunctionTemplateSpecializationInfo *templateInfo
1081 = fn->getTemplateSpecializationInfo())
John McCalld4c3d662013-02-20 01:54:26 +00001082 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(),
1083 kind);
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001084
Rafael Espindola860097c2012-02-23 04:17:32 +00001085 // If the function is a member of a specialization of a class template
1086 // and the corresponding decl has explicit visibility, use that.
1087 FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
1088 if (InstantiatedFrom)
John McCalld4c3d662013-02-20 01:54:26 +00001089 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola860097c2012-02-23 04:17:32 +00001090
David Blaikie66874fb2013-02-21 01:47:18 +00001091 return None;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001092 }
1093
Rafael Espindola98499012012-07-31 19:02:02 +00001094 // The visibility of a template is stored in the templated decl.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001095 if (const TemplateDecl *TD = dyn_cast<TemplateDecl>(ND))
John McCalld4c3d662013-02-20 01:54:26 +00001096 return getVisibilityOf(TD->getTemplatedDecl(), kind);
Rafael Espindola98499012012-07-31 19:02:02 +00001097
David Blaikie66874fb2013-02-21 01:47:18 +00001098 return None;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001099}
1100
Bill Wendlingb8110d42013-11-27 05:28:46 +00001101Optional<Visibility>
1102NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const {
1103 return getExplicitVisibilityAux(this, kind, false);
1104}
1105
Eli Friedman07369dd2013-07-01 20:22:57 +00001106static LinkageInfo getLVForClosure(const DeclContext *DC, Decl *ContextDecl,
1107 LVComputationKind computation) {
1108 // This lambda has its linkage/visibility determined by its owner.
1109 if (ContextDecl) {
1110 if (isa<ParmVarDecl>(ContextDecl))
1111 DC = ContextDecl->getDeclContext()->getRedeclContext();
1112 else
1113 return getLVForDecl(cast<NamedDecl>(ContextDecl), computation);
1114 }
Faisal Valic6867dd2013-09-29 20:27:06 +00001115
Eli Friedman07369dd2013-07-01 20:22:57 +00001116 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC))
1117 return getLVForDecl(ND, computation);
Faisal Valic6867dd2013-09-29 20:27:06 +00001118
Eli Friedman07369dd2013-07-01 20:22:57 +00001119 return LinkageInfo::external();
1120}
1121
John McCall5a758de2013-02-16 00:17:33 +00001122static LinkageInfo getLVForLocalDecl(const NamedDecl *D,
1123 LVComputationKind computation) {
1124 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
1125 if (Function->isInAnonymousNamespace() &&
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001126 !Function->isInExternCContext())
John McCall5a758de2013-02-16 00:17:33 +00001127 return LinkageInfo::uniqueExternal();
1128
1129 // This is a "void f();" which got merged with a file static.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001130 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
John McCall5a758de2013-02-16 00:17:33 +00001131 return LinkageInfo::internal();
1132
1133 LinkageInfo LV;
John McCalld4c3d662013-02-20 01:54:26 +00001134 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +00001135 if (Optional<Visibility> Vis =
1136 getExplicitVisibility(Function, computation))
John McCall5a758de2013-02-16 00:17:33 +00001137 LV.mergeVisibility(*Vis, true);
1138 }
1139
1140 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
1141 // merging storage classes and visibility attributes, so we don't have to
1142 // look at previous decls in here.
1143
1144 return LV;
1145 }
1146
1147 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001148 if (Var->hasExternalStorage()) {
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001149 if (Var->isInAnonymousNamespace() && !Var->isInExternCContext())
John McCall5a758de2013-02-16 00:17:33 +00001150 return LinkageInfo::uniqueExternal();
1151
John McCall5a758de2013-02-16 00:17:33 +00001152 LinkageInfo LV;
1153 if (Var->getStorageClass() == SC_PrivateExtern)
1154 LV.mergeVisibility(HiddenVisibility, true);
John McCalld4c3d662013-02-20 01:54:26 +00001155 else if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +00001156 if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation))
John McCall5a758de2013-02-16 00:17:33 +00001157 LV.mergeVisibility(*Vis, true);
1158 }
1159
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001160 if (const VarDecl *Prev = Var->getPreviousDecl()) {
1161 LinkageInfo PrevLV = getLVForDecl(Prev, computation);
1162 if (PrevLV.getLinkage())
1163 LV.setLinkage(PrevLV.getLinkage());
1164 LV.mergeVisibility(PrevLV);
1165 }
1166
John McCall5a758de2013-02-16 00:17:33 +00001167 return LV;
1168 }
Rafael Espindola9610d772013-06-17 20:04:51 +00001169
1170 if (!Var->isStaticLocal())
1171 return LinkageInfo::none();
John McCall5a758de2013-02-16 00:17:33 +00001172 }
1173
Rafael Espindola9610d772013-06-17 20:04:51 +00001174 ASTContext &Context = D->getASTContext();
1175 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001176 return LinkageInfo::none();
1177
Eli Friedman07369dd2013-07-01 20:22:57 +00001178 const Decl *OuterD = getOutermostFuncOrBlockContext(D);
1179 if (!OuterD)
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001180 return LinkageInfo::none();
Rafael Espindolaec0d96f2013-06-04 13:43:35 +00001181
Eli Friedman07369dd2013-07-01 20:22:57 +00001182 LinkageInfo LV;
1183 if (const BlockDecl *BD = dyn_cast<BlockDecl>(OuterD)) {
1184 if (!BD->getBlockManglingNumber())
1185 return LinkageInfo::none();
Rafael Espindolaec0d96f2013-06-04 13:43:35 +00001186
Eli Friedman07369dd2013-07-01 20:22:57 +00001187 LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(),
1188 BD->getBlockManglingContextDecl(), computation);
1189 } else {
1190 const FunctionDecl *FD = cast<FunctionDecl>(OuterD);
1191 if (!FD->isInlined() &&
1192 FD->getTemplateSpecializationKind() == TSK_Undeclared)
1193 return LinkageInfo::none();
1194
1195 LV = getLVForDecl(FD, computation);
1196 }
Rafael Espindolabdf2bba2013-05-27 14:50:21 +00001197 if (!isExternallyVisible(LV.getLinkage()))
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001198 return LinkageInfo::none();
1199 return LinkageInfo(VisibleNoLinkage, LV.getVisibility(),
1200 LV.isVisibilityExplicit());
John McCall5a758de2013-02-16 00:17:33 +00001201}
1202
Faisal Valide8eaa22013-10-01 02:51:53 +00001203static inline const CXXRecordDecl*
1204getOutermostEnclosingLambda(const CXXRecordDecl *Record) {
1205 const CXXRecordDecl *Ret = Record;
1206 while (Record && Record->isLambda()) {
1207 Ret = Record;
1208 if (!Record->getParent()) break;
1209 // Get the Containing Class of this Lambda Class
1210 Record = dyn_cast_or_null<CXXRecordDecl>(
1211 Record->getParent()->getParent());
1212 }
1213 return Ret;
1214}
1215
Rafael Espindoladc070562013-05-28 19:43:11 +00001216static LinkageInfo computeLVForDecl(const NamedDecl *D,
1217 LVComputationKind computation) {
Ted Kremenekbecc3082010-04-20 23:15:35 +00001218 // Objective-C: treat all Objective-C declarations as having external
1219 // linkage.
John McCall0df95872010-10-29 00:29:13 +00001220 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +00001221 default:
1222 break;
Argyrios Kyrtzidisf8d34ed2011-12-01 01:28:21 +00001223 case Decl::ParmVar:
1224 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +00001225 case Decl::TemplateTemplateParm: // count these as external
1226 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001227 case Decl::ObjCAtDefsField:
1228 case Decl::ObjCCategory:
1229 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001230 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001231 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001232 case Decl::ObjCMethod:
1233 case Decl::ObjCProperty:
1234 case Decl::ObjCPropertyImpl:
1235 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +00001236 return LinkageInfo::external();
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001237
1238 case Decl::CXXRecord: {
1239 const CXXRecordDecl *Record = cast<CXXRecordDecl>(D);
1240 if (Record->isLambda()) {
1241 if (!Record->getLambdaManglingNumber()) {
1242 // This lambda has no mangling number, so it's internal.
1243 return LinkageInfo::internal();
1244 }
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001245
Faisal Valide8eaa22013-10-01 02:51:53 +00001246 // This lambda has its linkage/visibility determined:
1247 // - either by the outermost lambda if that lambda has no mangling
1248 // number.
1249 // - or by the parent of the outer most lambda
1250 // This prevents infinite recursion in settings such as nested lambdas
1251 // used in NSDMI's, for e.g.
1252 // struct L {
1253 // int t{};
1254 // int t2 = ([](int a) { return [](int b) { return b; };})(t)(t);
1255 // };
1256 const CXXRecordDecl *OuterMostLambda =
1257 getOutermostEnclosingLambda(Record);
1258 if (!OuterMostLambda->getLambdaManglingNumber())
1259 return LinkageInfo::internal();
1260
1261 return getLVForClosure(
1262 OuterMostLambda->getDeclContext()->getRedeclContext(),
1263 OuterMostLambda->getLambdaContextDecl(), computation);
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001264 }
1265
1266 break;
1267 }
Ted Kremenekbecc3082010-04-20 23:15:35 +00001268 }
1269
Douglas Gregord85b5b92009-11-25 22:24:25 +00001270 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +00001271 if (D->getDeclContext()->getRedeclContext()->isFileContext())
John McCall5a758de2013-02-16 00:17:33 +00001272 return getLVForNamespaceScopeDecl(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001273
1274 // C++ [basic.link]p5:
1275 // In addition, a member function, static data member, a named
1276 // class or enumeration of class scope, or an unnamed class or
1277 // enumeration defined in a class-scope typedef declaration such
1278 // that the class or enumeration has the typedef name for linkage
1279 // purposes (7.1.3), has external linkage if the name of the class
1280 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +00001281 if (D->getDeclContext()->isRecord())
John McCall5a758de2013-02-16 00:17:33 +00001282 return getLVForClassMember(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001283
1284 // C++ [basic.link]p6:
1285 // The name of a function declared in block scope and the name of
1286 // an object declared by a block scope extern declaration have
1287 // linkage. If there is a visible declaration of an entity with
1288 // linkage having the same name and type, ignoring entities
1289 // declared outside the innermost enclosing namespace scope, the
1290 // block scope declaration declares that same entity and receives
1291 // the linkage of the previous declaration. If there is more than
1292 // one such matching entity, the program is ill-formed. Otherwise,
1293 // if no matching entity is found, the block scope entity receives
1294 // external linkage.
John McCall5a758de2013-02-16 00:17:33 +00001295 if (D->getDeclContext()->isFunctionOrMethod())
1296 return getLVForLocalDecl(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001297
1298 // C++ [basic.link]p6:
1299 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +00001300 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +00001301}
Douglas Gregord85b5b92009-11-25 22:24:25 +00001302
Rafael Espindoladc070562013-05-28 19:43:11 +00001303namespace clang {
1304class LinkageComputer {
1305public:
1306 static LinkageInfo getLVForDecl(const NamedDecl *D,
1307 LVComputationKind computation) {
1308 if (computation == LVForLinkageOnly && D->hasCachedLinkage())
1309 return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
1310
1311 LinkageInfo LV = computeLVForDecl(D, computation);
1312 if (D->hasCachedLinkage())
1313 assert(D->getCachedLinkage() == LV.getLinkage());
1314
1315 D->setCachedLinkage(LV.getLinkage());
1316
1317#ifndef NDEBUG
1318 // In C (because of gnu inline) and in c++ with microsoft extensions an
1319 // static can follow an extern, so we can have two decls with different
1320 // linkages.
1321 const LangOptions &Opts = D->getASTContext().getLangOpts();
1322 if (!Opts.CPlusPlus || Opts.MicrosoftExt)
1323 return LV;
1324
1325 // We have just computed the linkage for this decl. By induction we know
1326 // that all other computed linkages match, check that the one we just
Stephen Hines651f13c2014-04-23 16:59:28 -07001327 // computed also does.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001328 NamedDecl *Old = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001329 for (auto I : D->redecls()) {
1330 NamedDecl *T = cast<NamedDecl>(I);
Rafael Espindoladc070562013-05-28 19:43:11 +00001331 if (T == D)
1332 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07001333 if (!T->isInvalidDecl() && T->hasCachedLinkage()) {
Rafael Espindoladc070562013-05-28 19:43:11 +00001334 Old = T;
1335 break;
1336 }
1337 }
1338 assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
1339#endif
1340
1341 return LV;
1342 }
1343};
1344}
1345
1346static LinkageInfo getLVForDecl(const NamedDecl *D,
1347 LVComputationKind computation) {
1348 return clang::LinkageComputer::getLVForDecl(D, computation);
1349}
1350
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001351std::string NamedDecl::getQualifiedNameAsString() const {
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001352 std::string QualName;
1353 llvm::raw_string_ostream OS(QualName);
Stephen Hines651f13c2014-04-23 16:59:28 -07001354 printQualifiedName(OS, getASTContext().getPrintingPolicy());
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001355 return OS.str();
1356}
1357
1358void NamedDecl::printQualifiedName(raw_ostream &OS) const {
1359 printQualifiedName(OS, getASTContext().getPrintingPolicy());
1360}
1361
1362void NamedDecl::printQualifiedName(raw_ostream &OS,
1363 const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001364 const DeclContext *Ctx = getDeclContext();
1365
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001366 if (Ctx->isFunctionOrMethod()) {
1367 printName(OS);
1368 return;
1369 }
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001370
Chris Lattner5f9e2722011-07-23 10:55:15 +00001371 typedef SmallVector<const DeclContext *, 8> ContextsTy;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001372 ContextsTy Contexts;
1373
1374 // Collect contexts.
1375 while (Ctx && isa<NamedDecl>(Ctx)) {
1376 Contexts.push_back(Ctx);
1377 Ctx = Ctx->getParent();
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001378 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001379
1380 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
1381 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +00001382 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001383 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Benjamin Kramer5eada842013-02-22 15:46:01 +00001384 OS << Spec->getName();
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001385 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Benjamin Kramer5eada842013-02-22 15:46:01 +00001386 TemplateSpecializationType::PrintTemplateArgumentList(OS,
1387 TemplateArgs.data(),
1388 TemplateArgs.size(),
1389 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001390 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001391 if (P.SuppressUnwrittenScope &&
1392 (ND->isAnonymousNamespace() || ND->isInline()))
1393 continue;
Sam Weinig6be11202009-12-24 23:15:03 +00001394 if (ND->isAnonymousNamespace())
Stephen Hines651f13c2014-04-23 16:59:28 -07001395 OS << "(anonymous namespace)";
Sam Weinig6be11202009-12-24 23:15:03 +00001396 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001397 OS << *ND;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001398 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
1399 if (!RD->getIdentifier())
Stephen Hines651f13c2014-04-23 16:59:28 -07001400 OS << "(anonymous " << RD->getKindName() << ')';
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001401 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001402 OS << *RD;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001403 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001404 const FunctionProtoType *FT = nullptr;
Sam Weinig3521d012009-12-28 03:19:38 +00001405 if (FD->hasWrittenPrototype())
Eli Friedman482466b2012-08-30 22:22:09 +00001406 FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
Sam Weinig3521d012009-12-28 03:19:38 +00001407
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001408 OS << *FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +00001409 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +00001410 unsigned NumParams = FD->getNumParams();
1411 for (unsigned i = 0; i < NumParams; ++i) {
1412 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001413 OS << ", ";
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +00001414 OS << FD->getParamDecl(i)->getType().stream(P);
Sam Weinig3521d012009-12-28 03:19:38 +00001415 }
1416
1417 if (FT->isVariadic()) {
1418 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001419 OS << ", ";
1420 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +00001421 }
1422 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001423 OS << ')';
1424 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001425 OS << *cast<NamedDecl>(*I);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001426 }
1427 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001428 }
1429
John McCall8472af42010-03-16 21:48:18 +00001430 if (getDeclName())
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001431 OS << *this;
John McCall8472af42010-03-16 21:48:18 +00001432 else
Stephen Hines651f13c2014-04-23 16:59:28 -07001433 OS << "(anonymous)";
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001434}
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001435
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001436void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
1437 const PrintingPolicy &Policy,
1438 bool Qualified) const {
1439 if (Qualified)
1440 printQualifiedName(OS, Policy);
1441 else
1442 printName(OS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001443}
1444
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001445bool NamedDecl::declarationReplaces(NamedDecl *OldD) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001446 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
1447
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001448 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
1449 // We want to keep it, unless it nominates same namespace.
1450 if (getKind() == Decl::UsingDirective) {
Douglas Gregordb992412011-02-25 16:33:46 +00001451 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace()
1452 ->getOriginalNamespace() ==
1453 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
1454 ->getOriginalNamespace();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001455 }
Mike Stump1eb44332009-09-09 15:08:12 +00001456
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001457 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
1458 // For function declarations, we keep track of redeclarations.
Douglas Gregoref96ee02012-01-14 16:38:05 +00001459 return FD->getPreviousDecl() == OldD;
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001460
Douglas Gregore53060f2009-06-25 22:08:12 +00001461 // For function templates, the underlying function declarations are linked.
1462 if (const FunctionTemplateDecl *FunctionTemplate
1463 = dyn_cast<FunctionTemplateDecl>(this))
1464 if (const FunctionTemplateDecl *OldFunctionTemplate
1465 = dyn_cast<FunctionTemplateDecl>(OldD))
1466 return FunctionTemplate->getTemplatedDecl()
1467 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001468
Steve Naroff0de21fd2009-02-22 19:35:57 +00001469 // For method declarations, we keep track of redeclarations.
1470 if (isa<ObjCMethodDecl>(this))
1471 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001472
Stephen Hines651f13c2014-04-23 16:59:28 -07001473 // FIXME: Is this correct if one of the decls comes from an inline namespace?
John McCallf36e02d2009-10-09 21:13:30 +00001474 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD))
1475 return true;
1476
John McCall9488ea12009-11-17 05:59:44 +00001477 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD))
1478 return cast<UsingShadowDecl>(this)->getTargetDecl() ==
1479 cast<UsingShadowDecl>(OldD)->getTargetDecl();
1480
Douglas Gregordc355712011-02-25 00:36:19 +00001481 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) {
1482 ASTContext &Context = getASTContext();
1483 return Context.getCanonicalNestedNameSpecifier(
1484 cast<UsingDecl>(this)->getQualifier()) ==
1485 Context.getCanonicalNestedNameSpecifier(
1486 cast<UsingDecl>(OldD)->getQualifier());
1487 }
Argyrios Kyrtzidisc80117e2010-11-04 08:48:52 +00001488
Eli Friedman13b572c2013-08-20 00:39:40 +00001489 if (isa<UnresolvedUsingValueDecl>(this) &&
1490 isa<UnresolvedUsingValueDecl>(OldD)) {
1491 ASTContext &Context = getASTContext();
1492 return Context.getCanonicalNestedNameSpecifier(
1493 cast<UnresolvedUsingValueDecl>(this)->getQualifier()) ==
1494 Context.getCanonicalNestedNameSpecifier(
1495 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
1496 }
1497
Douglas Gregor7a537402012-01-03 23:26:26 +00001498 // A typedef of an Objective-C class type can replace an Objective-C class
1499 // declaration or definition, and vice versa.
Stephen Hines651f13c2014-04-23 16:59:28 -07001500 // FIXME: Is this correct if one of the decls comes from an inline namespace?
Douglas Gregor7a537402012-01-03 23:26:26 +00001501 if ((isa<TypedefNameDecl>(this) && isa<ObjCInterfaceDecl>(OldD)) ||
1502 (isa<ObjCInterfaceDecl>(this) && isa<TypedefNameDecl>(OldD)))
1503 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -07001504
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001505 // For non-function declarations, if the declarations are of the
Stephen Hines651f13c2014-04-23 16:59:28 -07001506 // same kind and have the same parent then this must be a redeclaration,
1507 // or semantic analysis would not have given us the new declaration.
1508 // Note that inline namespaces can give us two declarations with the same
1509 // name and kind in the same scope but different contexts.
1510 return this->getKind() == OldD->getKind() &&
1511 this->getDeclContext()->getRedeclContext()->Equals(
1512 OldD->getDeclContext()->getRedeclContext());
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001513}
1514
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00001515bool NamedDecl::hasLinkage() const {
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001516 return getFormalLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00001517}
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001518
Daniel Dunbar6daffa52012-03-08 18:20:41 +00001519NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
Anders Carlssone136e0e2009-06-26 06:29:23 +00001520 NamedDecl *ND = this;
Benjamin Kramer56757e92012-03-08 21:00:45 +00001521 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
1522 ND = UD->getTargetDecl();
1523
1524 if (ObjCCompatibleAliasDecl *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
1525 return AD->getClassInterface();
1526
1527 return ND;
Anders Carlssone136e0e2009-06-26 06:29:23 +00001528}
1529
John McCall161755a2010-04-06 21:38:20 +00001530bool NamedDecl::isCXXInstanceMember() const {
Douglas Gregor5bc37f62012-03-08 02:08:05 +00001531 if (!isCXXClassMember())
1532 return false;
1533
John McCall161755a2010-04-06 21:38:20 +00001534 const NamedDecl *D = this;
1535 if (isa<UsingShadowDecl>(D))
1536 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1537
John McCall76da55d2013-04-16 07:28:30 +00001538 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
John McCall161755a2010-04-06 21:38:20 +00001539 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -07001540 if (const CXXMethodDecl *MD =
1541 dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()))
1542 return MD->isInstance();
John McCall161755a2010-04-06 21:38:20 +00001543 return false;
1544}
1545
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00001546//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001547// DeclaratorDecl Implementation
1548//===----------------------------------------------------------------------===//
1549
Douglas Gregor1693e152010-07-06 18:42:40 +00001550template <typename DeclT>
1551static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
1552 if (decl->getNumTemplateParameterLists() > 0)
1553 return decl->getTemplateParameterList(0)->getTemplateLoc();
1554 else
1555 return decl->getInnerLocStart();
1556}
1557
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001558SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +00001559 TypeSourceInfo *TSI = getTypeSourceInfo();
1560 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001561 return SourceLocation();
1562}
1563
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001564void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1565 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00001566 // Make sure the extended decl info is allocated.
1567 if (!hasExtInfo()) {
1568 // Save (non-extended) type source info pointer.
1569 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1570 // Allocate external info struct.
1571 DeclInfo = new (getASTContext()) ExtInfo;
1572 // Restore savedTInfo into (extended) decl info.
1573 getExtInfo()->TInfo = savedTInfo;
1574 }
1575 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001576 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00001577 } else {
John McCallb6217662010-03-15 10:12:16 +00001578 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00001579 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001580 if (getExtInfo()->NumTemplParamLists == 0) {
1581 // Save type source info pointer.
1582 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1583 // Deallocate the extended decl info.
1584 getASTContext().Deallocate(getExtInfo());
1585 // Restore savedTInfo into (non-extended) decl info.
1586 DeclInfo = savedTInfo;
1587 }
1588 else
1589 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001590 }
1591 }
1592}
1593
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001594void
1595DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1596 unsigned NumTPLists,
1597 TemplateParameterList **TPLists) {
1598 assert(NumTPLists > 0);
1599 // Make sure the extended decl info is allocated.
1600 if (!hasExtInfo()) {
1601 // Save (non-extended) type source info pointer.
1602 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1603 // Allocate external info struct.
1604 DeclInfo = new (getASTContext()) ExtInfo;
1605 // Restore savedTInfo into (extended) decl info.
1606 getExtInfo()->TInfo = savedTInfo;
1607 }
1608 // Set the template parameter lists info.
1609 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1610}
1611
Douglas Gregor1693e152010-07-06 18:42:40 +00001612SourceLocation DeclaratorDecl::getOuterLocStart() const {
1613 return getTemplateOrInnerLocStart(this);
1614}
1615
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001616namespace {
1617
1618// Helper function: returns true if QT is or contains a type
1619// having a postfix component.
1620bool typeIsPostfix(clang::QualType QT) {
1621 while (true) {
1622 const Type* T = QT.getTypePtr();
1623 switch (T->getTypeClass()) {
1624 default:
1625 return false;
1626 case Type::Pointer:
1627 QT = cast<PointerType>(T)->getPointeeType();
1628 break;
1629 case Type::BlockPointer:
1630 QT = cast<BlockPointerType>(T)->getPointeeType();
1631 break;
1632 case Type::MemberPointer:
1633 QT = cast<MemberPointerType>(T)->getPointeeType();
1634 break;
1635 case Type::LValueReference:
1636 case Type::RValueReference:
1637 QT = cast<ReferenceType>(T)->getPointeeType();
1638 break;
1639 case Type::PackExpansion:
1640 QT = cast<PackExpansionType>(T)->getPattern();
1641 break;
1642 case Type::Paren:
1643 case Type::ConstantArray:
1644 case Type::DependentSizedArray:
1645 case Type::IncompleteArray:
1646 case Type::VariableArray:
1647 case Type::FunctionProto:
1648 case Type::FunctionNoProto:
1649 return true;
1650 }
1651 }
1652}
1653
1654} // namespace
1655
1656SourceRange DeclaratorDecl::getSourceRange() const {
1657 SourceLocation RangeEnd = getLocation();
1658 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001659 // If the declaration has no name or the type extends past the name take the
1660 // end location of the type.
1661 if (!getDeclName() || typeIsPostfix(TInfo->getType()))
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001662 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1663 }
1664 return SourceRange(getOuterLocStart(), RangeEnd);
1665}
1666
Abramo Bagnara9b934882010-06-12 08:15:14 +00001667void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001668QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1669 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001670 TemplateParameterList **TPLists) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001671 assert((NumTPLists == 0 || TPLists != nullptr) &&
Abramo Bagnara9b934882010-06-12 08:15:14 +00001672 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001673
1674 // Free previous template parameters (if any).
1675 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001676 Context.Deallocate(TemplParamLists);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001677 TemplParamLists = nullptr;
Abramo Bagnara9b934882010-06-12 08:15:14 +00001678 NumTemplParamLists = 0;
1679 }
1680 // Set info on matched template parameter lists (if any).
1681 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001682 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001683 NumTemplParamLists = NumTPLists;
1684 for (unsigned i = NumTPLists; i-- > 0; )
1685 TemplParamLists[i] = TPLists[i];
1686 }
1687}
1688
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001689//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001690// VarDecl Implementation
1691//===----------------------------------------------------------------------===//
1692
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001693const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1694 switch (SC) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00001695 case SC_None: break;
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001696 case SC_Auto: return "auto";
1697 case SC_Extern: return "extern";
1698 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
1699 case SC_PrivateExtern: return "__private_extern__";
1700 case SC_Register: return "register";
1701 case SC_Static: return "static";
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001702 }
1703
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001704 llvm_unreachable("Invalid storage class");
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001705}
1706
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001707VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
1708 SourceLocation StartLoc, SourceLocation IdLoc,
1709 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1710 StorageClass SC)
1711 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
1712 redeclarable_base(C), Init() {
Stephen Hines651f13c2014-04-23 16:59:28 -07001713 static_assert(sizeof(VarDeclBitfields) <= sizeof(unsigned),
1714 "VarDeclBitfields too large!");
1715 static_assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned),
1716 "ParmVarDeclBitfields too large!");
Larisse Voufoef4579c2013-08-06 01:03:05 +00001717 AllBits = 0;
1718 VarDeclBits.SClass = SC;
1719 // Everything else is implicitly initialized to false.
1720}
1721
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001722VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1723 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001724 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001725 StorageClass S) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001726 return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001727}
1728
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001729VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001730 return new (C, ID)
1731 VarDecl(Var, C, nullptr, SourceLocation(), SourceLocation(), nullptr,
1732 QualType(), nullptr, SC_None);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001733}
1734
Douglas Gregor381d34e2010-12-06 18:36:25 +00001735void VarDecl::setStorageClass(StorageClass SC) {
1736 assert(isLegalForVariable(SC));
John McCallf1e4fbf2011-05-01 02:13:58 +00001737 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001738}
1739
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001740VarDecl::TLSKind VarDecl::getTLSKind() const {
1741 switch (VarDeclBits.TSCSpec) {
1742 case TSCS_unspecified:
1743 if (hasAttr<ThreadAttr>())
1744 return TLS_Static;
1745 return TLS_None;
1746 case TSCS___thread: // Fall through.
1747 case TSCS__Thread_local:
1748 return TLS_Static;
1749 case TSCS_thread_local:
1750 return TLS_Dynamic;
1751 }
1752 llvm_unreachable("Unknown thread storage class specifier!");
1753}
1754
Douglas Gregor1693e152010-07-06 18:42:40 +00001755SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidisd69f31c2012-10-08 23:08:41 +00001756 if (const Expr *Init = getInit()) {
1757 SourceLocation InitEnd = Init->getLocEnd();
Nico Weber3a344f92013-01-22 17:00:09 +00001758 // If Init is implicit, ignore its source range and fallback on
1759 // DeclaratorDecl::getSourceRange() to handle postfix elements.
1760 if (InitEnd.isValid() && InitEnd != getLocation())
Argyrios Kyrtzidisd69f31c2012-10-08 23:08:41 +00001761 return SourceRange(getOuterLocStart(), InitEnd);
1762 }
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001763 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001764}
1765
Rafael Espindola7ac928b2013-01-04 21:18:45 +00001766template<typename T>
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001767static LanguageLinkage getDeclLanguageLinkage(const T &D) {
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001768 // C++ [dcl.link]p1: All function types, function names with external linkage,
1769 // and variable names with external linkage have a language linkage.
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001770 if (!D.hasExternalFormalLinkage())
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001771 return NoLanguageLinkage;
1772
1773 // Language linkage is a C++ concept, but saying that everything else in C has
Rafael Espindola2b721f52013-01-04 20:41:40 +00001774 // C language linkage fits the implementation nicely.
Rafael Espindola78eeba82012-12-28 14:21:58 +00001775 ASTContext &Context = D.getASTContext();
1776 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindola950fee22013-02-14 01:18:37 +00001777 return CLanguageLinkage;
1778
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001779 // C++ [dcl.link]p4: A C language linkage is ignored in determining the
1780 // language linkage of the names of class members and the function type of
1781 // class member functions.
Rafael Espindola78eeba82012-12-28 14:21:58 +00001782 const DeclContext *DC = D.getDeclContext();
1783 if (DC->isRecord())
Rafael Espindola950fee22013-02-14 01:18:37 +00001784 return CXXLanguageLinkage;
Rafael Espindola78eeba82012-12-28 14:21:58 +00001785
1786 // If the first decl is in an extern "C" context, any other redeclaration
1787 // will have C language linkage. If the first one is not in an extern "C"
1788 // context, we would have reported an error for any other decl being in one.
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001789 if (isFirstInExternCContext(&D))
Rafael Espindola950fee22013-02-14 01:18:37 +00001790 return CLanguageLinkage;
1791 return CXXLanguageLinkage;
Rafael Espindola78eeba82012-12-28 14:21:58 +00001792}
1793
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001794template<typename T>
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001795static bool isDeclExternC(const T &D) {
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001796 // Since the context is ignored for class members, they can only have C++
1797 // language linkage or no language linkage.
1798 const DeclContext *DC = D.getDeclContext();
1799 if (DC->isRecord()) {
1800 assert(D.getASTContext().getLangOpts().CPlusPlus);
1801 return false;
1802 }
1803
1804 return D.getLanguageLinkage() == CLanguageLinkage;
1805}
1806
Rafael Espindola950fee22013-02-14 01:18:37 +00001807LanguageLinkage VarDecl::getLanguageLinkage() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001808 return getDeclLanguageLinkage(*this);
Rafael Espindola78eeba82012-12-28 14:21:58 +00001809}
1810
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001811bool VarDecl::isExternC() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001812 return isDeclExternC(*this);
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001813}
1814
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001815bool VarDecl::isInExternCContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00001816 return getLexicalDeclContext()->isExternCContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001817}
1818
1819bool VarDecl::isInExternCXXContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00001820 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001821}
1822
Rafael Espindolabc650912013-10-17 15:37:26 +00001823VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001824
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001825VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition(
1826 ASTContext &C) const
1827{
Sebastian Redle9d12b62010-01-31 22:27:38 +00001828 // C++ [basic.def]p2:
1829 // A declaration is a definition unless [...] it contains the 'extern'
1830 // specifier or a linkage-specification and neither an initializer [...],
1831 // it declares a static data member in a class declaration [...].
Richard Smithd0629eb2013-09-27 20:14:12 +00001832 // C++1y [temp.expl.spec]p15:
1833 // An explicit specialization of a static data member or an explicit
1834 // specialization of a static data member template is a definition if the
1835 // declaration includes an initializer; otherwise, it is a declaration.
1836 //
1837 // FIXME: How do you declare (but not define) a partial specialization of
1838 // a static data member template outside the containing class?
Sebastian Redle9d12b62010-01-31 22:27:38 +00001839 if (isStaticDataMember()) {
Richard Smithd0629eb2013-09-27 20:14:12 +00001840 if (isOutOfLine() &&
1841 (hasInit() ||
1842 // If the first declaration is out-of-line, this may be an
1843 // instantiation of an out-of-line partial specialization of a variable
1844 // template for which we have not yet instantiated the initializer.
Rafael Espindolabc650912013-10-17 15:37:26 +00001845 (getFirstDecl()->isOutOfLine()
Richard Smithd0629eb2013-09-27 20:14:12 +00001846 ? getTemplateSpecializationKind() == TSK_Undeclared
1847 : getTemplateSpecializationKind() !=
1848 TSK_ExplicitSpecialization) ||
1849 isa<VarTemplatePartialSpecializationDecl>(this)))
Sebastian Redle9d12b62010-01-31 22:27:38 +00001850 return Definition;
1851 else
1852 return DeclarationOnly;
1853 }
1854 // C99 6.7p5:
1855 // A definition of an identifier is a declaration for that identifier that
1856 // [...] causes storage to be reserved for that object.
1857 // Note: that applies for all non-file-scope objects.
1858 // C99 6.9.2p1:
1859 // If the declaration of an identifier for an object has file scope and an
1860 // initializer, the declaration is an external definition for the identifier
1861 if (hasInit())
1862 return Definition;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001863
Rafael Espindolab1c0e202013-10-22 21:39:03 +00001864 if (hasAttr<AliasAttr>())
1865 return Definition;
1866
Richard Smithd0629eb2013-09-27 20:14:12 +00001867 // A variable template specialization (other than a static data member
1868 // template or an explicit specialization) is a declaration until we
1869 // instantiate its initializer.
1870 if (isa<VarTemplateSpecializationDecl>(this) &&
1871 getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
1872 return DeclarationOnly;
1873
Sebastian Redle9d12b62010-01-31 22:27:38 +00001874 if (hasExternalStorage())
1875 return DeclarationOnly;
Rafael Espindola37783002013-03-07 01:42:44 +00001876
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001877 // [dcl.link] p7:
1878 // A declaration directly contained in a linkage-specification is treated
1879 // as if it contains the extern specifier for the purpose of determining
1880 // the linkage of the declared name and whether it is a definition.
Stephen Hines651f13c2014-04-23 16:59:28 -07001881 if (isSingleLineLanguageLinkage(*this))
Rafael Espindolae5e575d2013-04-26 01:30:23 +00001882 return DeclarationOnly;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001883
Sebastian Redle9d12b62010-01-31 22:27:38 +00001884 // C99 6.9.2p2:
1885 // A declaration of an object that has file scope without an initializer,
1886 // and without a storage class specifier or the scs 'static', constitutes
1887 // a tentative definition.
1888 // No such thing in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00001889 if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
Sebastian Redle9d12b62010-01-31 22:27:38 +00001890 return TentativeDefinition;
1891
1892 // What's left is (in C, block-scope) declarations without initializers or
1893 // external storage. These are definitions.
1894 return Definition;
1895}
1896
Sebastian Redle9d12b62010-01-31 22:27:38 +00001897VarDecl *VarDecl::getActingDefinition() {
1898 DefinitionKind Kind = isThisDeclarationADefinition();
1899 if (Kind != TentativeDefinition)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001900 return nullptr;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001901
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001902 VarDecl *LastTentative = nullptr;
Rafael Espindolabc650912013-10-17 15:37:26 +00001903 VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001904 for (auto I : First->redecls()) {
1905 Kind = I->isThisDeclarationADefinition();
Sebastian Redle9d12b62010-01-31 22:27:38 +00001906 if (Kind == Definition)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001907 return nullptr;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001908 else if (Kind == TentativeDefinition)
Stephen Hines651f13c2014-04-23 16:59:28 -07001909 LastTentative = I;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001910 }
1911 return LastTentative;
1912}
1913
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001914VarDecl *VarDecl::getDefinition(ASTContext &C) {
Rafael Espindolabc650912013-10-17 15:37:26 +00001915 VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001916 for (auto I : First->redecls()) {
1917 if (I->isThisDeclarationADefinition(C) == Definition)
1918 return I;
Sebastian Redl31310a22010-02-01 20:16:42 +00001919 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001920 return nullptr;
Sebastian Redl31310a22010-02-01 20:16:42 +00001921}
1922
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001923VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
John McCall110e8e52010-10-29 22:22:43 +00001924 DefinitionKind Kind = DeclarationOnly;
1925
Rafael Espindolabc650912013-10-17 15:37:26 +00001926 const VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001927 for (auto I : First->redecls()) {
1928 Kind = std::max(Kind, I->isThisDeclarationADefinition(C));
Daniel Dunbar047da192012-03-06 23:52:46 +00001929 if (Kind == Definition)
1930 break;
1931 }
John McCall110e8e52010-10-29 22:22:43 +00001932
1933 return Kind;
1934}
1935
Sebastian Redl31310a22010-02-01 20:16:42 +00001936const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001937 for (auto I : redecls()) {
1938 if (auto Expr = I->getInit()) {
1939 D = I;
1940 return Expr;
1941 }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001942 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001943 return nullptr;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001944}
1945
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001946bool VarDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00001947 if (Decl::isOutOfLine())
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001948 return true;
Chandler Carruth8761d682010-02-21 07:08:09 +00001949
1950 if (!isStaticDataMember())
1951 return false;
1952
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001953 // If this static data member was instantiated from a static data member of
1954 // a class template, check whether that static data member was defined
1955 // out-of-line.
1956 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
1957 return VD->isOutOfLine();
1958
1959 return false;
1960}
1961
Douglas Gregor0d035142009-10-27 18:42:08 +00001962VarDecl *VarDecl::getOutOfLineDefinition() {
1963 if (!isStaticDataMember())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001964 return nullptr;
1965
Stephen Hines651f13c2014-04-23 16:59:28 -07001966 for (auto RD : redecls()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00001967 if (RD->getLexicalDeclContext()->isFileContext())
Stephen Hines651f13c2014-04-23 16:59:28 -07001968 return RD;
Douglas Gregor0d035142009-10-27 18:42:08 +00001969 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001970
1971 return nullptr;
Douglas Gregor0d035142009-10-27 18:42:08 +00001972}
1973
Douglas Gregor838db382010-02-11 01:19:42 +00001974void VarDecl::setInit(Expr *I) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001975 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
1976 Eval->~EvaluatedStmt();
Douglas Gregor838db382010-02-11 01:19:42 +00001977 getASTContext().Deallocate(Eval);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001978 }
1979
1980 Init = I;
1981}
1982
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001983bool VarDecl::isUsableInConstantExpressions(ASTContext &C) const {
David Blaikie4e4d0842012-03-11 07:00:24 +00001984 const LangOptions &Lang = C.getLangOpts();
Richard Smith1d238ea2011-12-21 02:55:12 +00001985
Richard Smith16581332012-03-02 04:14:40 +00001986 if (!Lang.CPlusPlus)
1987 return false;
1988
1989 // In C++11, any variable of reference type can be used in a constant
1990 // expression if it is initialized by a constant expression.
Richard Smith80ad52f2013-01-02 11:42:31 +00001991 if (Lang.CPlusPlus11 && getType()->isReferenceType())
Richard Smith16581332012-03-02 04:14:40 +00001992 return true;
1993
1994 // Only const objects can be used in constant expressions in C++. C++98 does
Richard Smith1d238ea2011-12-21 02:55:12 +00001995 // not require the variable to be non-volatile, but we consider this to be a
1996 // defect.
Richard Smith16581332012-03-02 04:14:40 +00001997 if (!getType().isConstQualified() || getType().isVolatileQualified())
Richard Smith1d238ea2011-12-21 02:55:12 +00001998 return false;
1999
2000 // In C++, const, non-volatile variables of integral or enumeration types
2001 // can be used in constant expressions.
2002 if (getType()->isIntegralOrEnumerationType())
2003 return true;
2004
Richard Smith16581332012-03-02 04:14:40 +00002005 // Additionally, in C++11, non-volatile constexpr variables can be used in
2006 // constant expressions.
Richard Smith80ad52f2013-01-02 11:42:31 +00002007 return Lang.CPlusPlus11 && isConstexpr();
Richard Smith1d238ea2011-12-21 02:55:12 +00002008}
2009
Richard Smith099e7f62011-12-19 06:19:21 +00002010/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
2011/// form, which contains extra information on the evaluated value of the
2012/// initializer.
2013EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
2014 EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>();
2015 if (!Eval) {
2016 Stmt *S = Init.get<Stmt *>();
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002017 // Note: EvaluatedStmt contains an APValue, which usually holds
2018 // resources not allocated from the ASTContext. We need to do some
2019 // work to avoid leaking those, but we do so in VarDecl::evaluateValue
2020 // where we can detect whether there's anything to clean up or not.
Richard Smith099e7f62011-12-19 06:19:21 +00002021 Eval = new (getASTContext()) EvaluatedStmt;
2022 Eval->Value = S;
2023 Init = Eval;
2024 }
2025 return Eval;
2026}
2027
Richard Smith2d6a5672012-01-14 04:30:29 +00002028APValue *VarDecl::evaluateValue() const {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002029 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith2d6a5672012-01-14 04:30:29 +00002030 return evaluateValue(Notes);
2031}
2032
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002033namespace {
2034// Destroy an APValue that was allocated in an ASTContext.
2035void DestroyAPValue(void* UntypedValue) {
2036 static_cast<APValue*>(UntypedValue)->~APValue();
2037}
2038} // namespace
2039
Richard Smith2d6a5672012-01-14 04:30:29 +00002040APValue *VarDecl::evaluateValue(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002041 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smith099e7f62011-12-19 06:19:21 +00002042 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2043
2044 // We only produce notes indicating why an initializer is non-constant the
2045 // first time it is evaluated. FIXME: The notes won't always be emitted the
2046 // first time we try evaluation, so might not be produced at all.
2047 if (Eval->WasEvaluated)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002048 return Eval->Evaluated.isUninit() ? nullptr : &Eval->Evaluated;
Richard Smith099e7f62011-12-19 06:19:21 +00002049
2050 const Expr *Init = cast<Expr>(Eval->Value);
2051 assert(!Init->isValueDependent());
2052
2053 if (Eval->IsEvaluating) {
2054 // FIXME: Produce a diagnostic for self-initialization.
2055 Eval->CheckedICE = true;
2056 Eval->IsICE = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002057 return nullptr;
Richard Smith099e7f62011-12-19 06:19:21 +00002058 }
2059
2060 Eval->IsEvaluating = true;
2061
2062 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
2063 this, Notes);
2064
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002065 // Ensure the computed APValue is cleaned up later if evaluation succeeded,
2066 // or that it's empty (so that there's nothing to clean up) if evaluation
2067 // failed.
Richard Smith099e7f62011-12-19 06:19:21 +00002068 if (!Result)
2069 Eval->Evaluated = APValue();
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002070 else if (Eval->Evaluated.needsCleanup())
2071 getASTContext().AddDeallocation(DestroyAPValue, &Eval->Evaluated);
Richard Smith099e7f62011-12-19 06:19:21 +00002072
2073 Eval->IsEvaluating = false;
2074 Eval->WasEvaluated = true;
2075
2076 // In C++11, we have determined whether the initializer was a constant
2077 // expression as a side-effect.
Richard Smith80ad52f2013-01-02 11:42:31 +00002078 if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) {
Richard Smith099e7f62011-12-19 06:19:21 +00002079 Eval->CheckedICE = true;
Eli Friedman210386e2012-02-06 21:50:18 +00002080 Eval->IsICE = Result && Notes.empty();
Richard Smith099e7f62011-12-19 06:19:21 +00002081 }
2082
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002083 return Result ? &Eval->Evaluated : nullptr;
Richard Smith099e7f62011-12-19 06:19:21 +00002084}
2085
2086bool VarDecl::checkInitIsICE() const {
John McCall73076432012-01-05 00:13:19 +00002087 // Initializers of weak variables are never ICEs.
2088 if (isWeak())
2089 return false;
2090
Richard Smith099e7f62011-12-19 06:19:21 +00002091 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2092 if (Eval->CheckedICE)
2093 // We have already checked whether this subexpression is an
2094 // integral constant expression.
2095 return Eval->IsICE;
2096
2097 const Expr *Init = cast<Expr>(Eval->Value);
2098 assert(!Init->isValueDependent());
2099
2100 // In C++11, evaluate the initializer to check whether it's a constant
2101 // expression.
Richard Smith80ad52f2013-01-02 11:42:31 +00002102 if (getASTContext().getLangOpts().CPlusPlus11) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002103 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith099e7f62011-12-19 06:19:21 +00002104 evaluateValue(Notes);
2105 return Eval->IsICE;
2106 }
2107
2108 // It's an ICE whether or not the definition we found is
2109 // out-of-line. See DR 721 and the discussion in Clang PR
2110 // 6206 for details.
2111
2112 if (Eval->CheckingICE)
2113 return false;
2114 Eval->CheckingICE = true;
2115
2116 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
2117 Eval->CheckingICE = false;
2118 Eval->CheckedICE = true;
2119 return Eval->IsICE;
2120}
2121
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002122VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002123 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002124 return cast<VarDecl>(MSI->getInstantiatedFrom());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002125
2126 return nullptr;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002127}
2128
Douglas Gregor663b5a02009-10-14 20:14:33 +00002129TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Larisse Voufoef4579c2013-08-06 01:03:05 +00002130 if (const VarTemplateSpecializationDecl *Spec =
2131 dyn_cast<VarTemplateSpecializationDecl>(this))
2132 return Spec->getSpecializationKind();
2133
Sebastian Redle9d12b62010-01-31 22:27:38 +00002134 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002135 return MSI->getTemplateSpecializationKind();
Richard Smithd0629eb2013-09-27 20:14:12 +00002136
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002137 return TSK_Undeclared;
2138}
2139
Richard Smithd0629eb2013-09-27 20:14:12 +00002140SourceLocation VarDecl::getPointOfInstantiation() const {
2141 if (const VarTemplateSpecializationDecl *Spec =
2142 dyn_cast<VarTemplateSpecializationDecl>(this))
2143 return Spec->getPointOfInstantiation();
2144
2145 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2146 return MSI->getPointOfInstantiation();
2147
2148 return SourceLocation();
2149}
2150
Larisse Voufoef4579c2013-08-06 01:03:05 +00002151VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
2152 return getASTContext().getTemplateOrSpecializationInfo(this)
2153 .dyn_cast<VarTemplateDecl *>();
2154}
2155
2156void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
2157 getASTContext().setTemplateOrSpecializationInfo(this, Template);
2158}
2159
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002160MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Richard Smith3f322102013-08-01 04:12:04 +00002161 if (isStaticDataMember())
Larisse Voufoef4579c2013-08-06 01:03:05 +00002162 // FIXME: Remove ?
2163 // return getASTContext().getInstantiatedFromStaticDataMember(this);
2164 return getASTContext().getTemplateOrSpecializationInfo(this)
2165 .dyn_cast<MemberSpecializationInfo *>();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002166 return nullptr;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002167}
2168
Douglas Gregor0a897e32009-10-15 17:21:20 +00002169void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2170 SourceLocation PointOfInstantiation) {
Richard Smithd0629eb2013-09-27 20:14:12 +00002171 assert((isa<VarTemplateSpecializationDecl>(this) ||
2172 getMemberSpecializationInfo()) &&
2173 "not a variable or static data member template specialization");
2174
Larisse Voufoef4579c2013-08-06 01:03:05 +00002175 if (VarTemplateSpecializationDecl *Spec =
2176 dyn_cast<VarTemplateSpecializationDecl>(this)) {
2177 Spec->setSpecializationKind(TSK);
2178 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
2179 Spec->getPointOfInstantiation().isInvalid())
2180 Spec->setPointOfInstantiation(PointOfInstantiation);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002181 }
2182
2183 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
2184 MSI->setTemplateSpecializationKind(TSK);
2185 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
2186 MSI->getPointOfInstantiation().isInvalid())
2187 MSI->setPointOfInstantiation(PointOfInstantiation);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002188 }
Larisse Voufoef4579c2013-08-06 01:03:05 +00002189}
2190
2191void
2192VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
2193 TemplateSpecializationKind TSK) {
2194 assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
2195 "Previous template or instantiation?");
2196 getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002197}
2198
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002199//===----------------------------------------------------------------------===//
2200// ParmVarDecl Implementation
2201//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00002202
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002203ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002204 SourceLocation StartLoc,
2205 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002206 QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002207 StorageClass S, Expr *DefArg) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002208 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
Stephen Hines651f13c2014-04-23 16:59:28 -07002209 S, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00002210}
2211
Reid Kleckner12df2462013-06-24 17:51:48 +00002212QualType ParmVarDecl::getOriginalType() const {
2213 TypeSourceInfo *TSI = getTypeSourceInfo();
2214 QualType T = TSI ? TSI->getType() : getType();
2215 if (const DecayedType *DT = dyn_cast<DecayedType>(T))
2216 return DT->getOriginalType();
2217 return T;
2218}
2219
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002220ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002221 return new (C, ID)
2222 ParmVarDecl(ParmVar, C, nullptr, SourceLocation(), SourceLocation(),
2223 nullptr, QualType(), nullptr, SC_None, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002224}
2225
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00002226SourceRange ParmVarDecl::getSourceRange() const {
2227 if (!hasInheritedDefaultArg()) {
2228 SourceRange ArgRange = getDefaultArgRange();
2229 if (ArgRange.isValid())
2230 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
2231 }
2232
Argyrios Kyrtzidis673c5d52013-04-17 01:56:48 +00002233 // DeclaratorDecl considers the range of postfix types as overlapping with the
2234 // declaration name, but this is not the case with parameters in ObjC methods.
2235 if (isa<ObjCMethodDecl>(getDeclContext()))
2236 return SourceRange(DeclaratorDecl::getLocStart(), getLocation());
2237
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00002238 return DeclaratorDecl::getSourceRange();
2239}
2240
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002241Expr *ParmVarDecl::getDefaultArg() {
2242 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
2243 assert(!hasUninstantiatedDefaultArg() &&
2244 "Default argument is not yet instantiated!");
2245
2246 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00002247 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002248 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00002249
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002250 return Arg;
2251}
2252
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002253SourceRange ParmVarDecl::getDefaultArgRange() const {
2254 if (const Expr *E = getInit())
2255 return E->getSourceRange();
2256
2257 if (hasUninstantiatedDefaultArg())
2258 return getUninstantiatedDefaultArg()->getSourceRange();
2259
2260 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00002261}
2262
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00002263bool ParmVarDecl::isParameterPack() const {
2264 return isa<PackExpansionType>(getType());
2265}
2266
Ted Kremenekd211cb72011-10-06 05:00:56 +00002267void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
2268 getASTContext().setParameterIndex(this, parameterIndex);
2269 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
2270}
2271
2272unsigned ParmVarDecl::getParameterIndexLarge() const {
2273 return getASTContext().getParameterIndex(this);
2274}
2275
Nuno Lopes99f06ba2008-12-17 23:39:55 +00002276//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002277// FunctionDecl Implementation
2278//===----------------------------------------------------------------------===//
2279
Benjamin Kramer5eada842013-02-22 15:46:01 +00002280void FunctionDecl::getNameForDiagnostic(
2281 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
2282 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
Douglas Gregorda2142f2011-02-19 18:51:44 +00002283 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
2284 if (TemplateArgs)
Benjamin Kramer5eada842013-02-22 15:46:01 +00002285 TemplateSpecializationType::PrintTemplateArgumentList(
2286 OS, TemplateArgs->data(), TemplateArgs->size(), Policy);
Douglas Gregorda2142f2011-02-19 18:51:44 +00002287}
2288
Ted Kremenek9498d382010-04-29 16:49:01 +00002289bool FunctionDecl::isVariadic() const {
2290 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
2291 return FT->isVariadic();
2292 return false;
2293}
2294
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002295bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002296 for (auto I : redecls()) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002297 if (I->Body || I->IsLateTemplateParsed) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002298 Definition = I;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002299 return true;
2300 }
2301 }
2302
2303 return false;
2304}
2305
Anders Carlssonffb945f2011-05-14 23:26:09 +00002306bool FunctionDecl::hasTrivialBody() const
2307{
2308 Stmt *S = getBody();
2309 if (!S) {
2310 // Since we don't have a body for this function, we don't know if it's
2311 // trivial or not.
2312 return false;
2313 }
2314
2315 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
2316 return true;
2317 return false;
2318}
2319
Sean Hunt10620eb2011-05-06 20:44:56 +00002320bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002321 for (auto I : redecls()) {
Rafael Espindolab1c0e202013-10-22 21:39:03 +00002322 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed ||
2323 I->hasAttr<AliasAttr>()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002324 Definition = I->IsDeleted ? I->getCanonicalDecl() : I;
Sean Hunt10620eb2011-05-06 20:44:56 +00002325 return true;
2326 }
2327 }
2328
2329 return false;
2330}
2331
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002332Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Rafael Espindola65d10962013-10-19 01:37:17 +00002333 if (!hasBody(Definition))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002334 return nullptr;
Rafael Espindola65d10962013-10-19 01:37:17 +00002335
2336 if (Definition->Body)
2337 return Definition->Body.get(getASTContext().getExternalSource());
Douglas Gregorf0097952008-04-21 02:02:58 +00002338
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002339 return nullptr;
Reid Spencer5f016e22007-07-11 17:01:13 +00002340}
2341
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00002342void FunctionDecl::setBody(Stmt *B) {
2343 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00002344 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00002345 EndRangeLoc = B->getLocEnd();
2346}
2347
Douglas Gregor21386642010-09-28 21:55:22 +00002348void FunctionDecl::setPure(bool P) {
2349 IsPure = P;
2350 if (P)
2351 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
2352 Parent->markedVirtualFunctionPure();
2353}
2354
Richard Smithddcff1b2013-07-21 23:12:18 +00002355template<std::size_t Len>
2356static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
2357 IdentifierInfo *II = ND->getIdentifier();
2358 return II && II->isStr(Str);
2359}
2360
Douglas Gregor48a83b52009-09-12 00:17:51 +00002361bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00002362 const TranslationUnitDecl *tunit =
2363 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2364 return tunit &&
David Blaikie4e4d0842012-03-11 07:00:24 +00002365 !tunit->getASTContext().getLangOpts().Freestanding &&
Richard Smithddcff1b2013-07-21 23:12:18 +00002366 isNamed(this, "main");
John McCall23c608d2011-05-15 17:49:20 +00002367}
2368
David Majnemere9f6f332013-09-16 22:44:20 +00002369bool FunctionDecl::isMSVCRTEntryPoint() const {
2370 const TranslationUnitDecl *TUnit =
2371 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2372 if (!TUnit)
2373 return false;
2374
2375 // Even though we aren't really targeting MSVCRT if we are freestanding,
2376 // semantic analysis for these functions remains the same.
2377
2378 // MSVCRT entry points only exist on MSVCRT targets.
2379 if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT())
2380 return false;
2381
2382 // Nameless functions like constructors cannot be entry points.
2383 if (!getIdentifier())
2384 return false;
2385
2386 return llvm::StringSwitch<bool>(getName())
2387 .Cases("main", // an ANSI console app
2388 "wmain", // a Unicode console App
2389 "WinMain", // an ANSI GUI app
2390 "wWinMain", // a Unicode GUI app
2391 "DllMain", // a DLL
2392 true)
2393 .Default(false);
2394}
2395
John McCall23c608d2011-05-15 17:49:20 +00002396bool FunctionDecl::isReservedGlobalPlacementOperator() const {
2397 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
2398 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
2399 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2400 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
2401 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
2402
Stephen Hines651f13c2014-04-23 16:59:28 -07002403 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2404 return false;
John McCall23c608d2011-05-15 17:49:20 +00002405
2406 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07002407 if (proto->getNumParams() != 2 || proto->isVariadic())
2408 return false;
John McCall23c608d2011-05-15 17:49:20 +00002409
2410 ASTContext &Context =
2411 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
2412 ->getASTContext();
2413
2414 // The result type and first argument type are constant across all
2415 // these operators. The second argument must be exactly void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07002416 return (proto->getParamType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00002417}
2418
Richard Smithddcff1b2013-07-21 23:12:18 +00002419bool FunctionDecl::isReplaceableGlobalAllocationFunction() const {
2420 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
2421 return false;
2422 if (getDeclName().getCXXOverloadedOperator() != OO_New &&
2423 getDeclName().getCXXOverloadedOperator() != OO_Delete &&
2424 getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
2425 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
2426 return false;
2427
2428 if (isa<CXXRecordDecl>(getDeclContext()))
2429 return false;
Stephen Hines651f13c2014-04-23 16:59:28 -07002430
2431 // This can only fail for an invalid 'operator new' declaration.
2432 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2433 return false;
Richard Smithddcff1b2013-07-21 23:12:18 +00002434
2435 const FunctionProtoType *FPT = getType()->castAs<FunctionProtoType>();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002436 if (FPT->getNumParams() == 0 || FPT->getNumParams() > 2 || FPT->isVariadic())
Richard Smithddcff1b2013-07-21 23:12:18 +00002437 return false;
2438
2439 // If this is a single-parameter function, it must be a replaceable global
2440 // allocation or deallocation function.
Stephen Hines651f13c2014-04-23 16:59:28 -07002441 if (FPT->getNumParams() == 1)
Richard Smithddcff1b2013-07-21 23:12:18 +00002442 return true;
2443
2444 // Otherwise, we're looking for a second parameter whose type is
Richard Smith4cb295d2013-09-29 04:40:38 +00002445 // 'const std::nothrow_t &', or, in C++1y, 'std::size_t'.
Stephen Hines651f13c2014-04-23 16:59:28 -07002446 QualType Ty = FPT->getParamType(1);
Richard Smith4cb295d2013-09-29 04:40:38 +00002447 ASTContext &Ctx = getASTContext();
Richard Smith3cebc732013-11-05 09:12:18 +00002448 if (Ctx.getLangOpts().SizedDeallocation &&
2449 Ctx.hasSameType(Ty, Ctx.getSizeType()))
Richard Smith4cb295d2013-09-29 04:40:38 +00002450 return true;
Richard Smithddcff1b2013-07-21 23:12:18 +00002451 if (!Ty->isReferenceType())
2452 return false;
2453 Ty = Ty->getPointeeType();
2454 if (Ty.getCVRQualifiers() != Qualifiers::Const)
2455 return false;
Richard Smithddcff1b2013-07-21 23:12:18 +00002456 const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002457 return RD && isNamed(RD, "nothrow_t") && RD->isInStdNamespace();
Richard Smithddcff1b2013-07-21 23:12:18 +00002458}
2459
Richard Smith3cebc732013-11-05 09:12:18 +00002460FunctionDecl *
2461FunctionDecl::getCorrespondingUnsizedGlobalDeallocationFunction() const {
2462 ASTContext &Ctx = getASTContext();
2463 if (!Ctx.getLangOpts().SizedDeallocation)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002464 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002465
2466 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002467 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002468 if (getDeclName().getCXXOverloadedOperator() != OO_Delete &&
2469 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002470 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002471 if (isa<CXXRecordDecl>(getDeclContext()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002472 return nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002473
2474 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002475 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002476
2477 if (getNumParams() != 2 || isVariadic() ||
Stephen Hines651f13c2014-04-23 16:59:28 -07002478 !Ctx.hasSameType(getType()->castAs<FunctionProtoType>()->getParamType(1),
Richard Smith3cebc732013-11-05 09:12:18 +00002479 Ctx.getSizeType()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002480 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002481
2482 // This is a sized deallocation function. Find the corresponding unsized
2483 // deallocation function.
2484 lookup_const_result R = getDeclContext()->lookup(getDeclName());
2485 for (lookup_const_result::iterator RI = R.begin(), RE = R.end(); RI != RE;
2486 ++RI)
2487 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*RI))
2488 if (FD->getNumParams() == 1 && !FD->isVariadic())
2489 return FD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002490 return nullptr;
Richard Smith3cebc732013-11-05 09:12:18 +00002491}
2492
Rafael Espindola950fee22013-02-14 01:18:37 +00002493LanguageLinkage FunctionDecl::getLanguageLinkage() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002494 return getDeclLanguageLinkage(*this);
Rafael Espindola78eeba82012-12-28 14:21:58 +00002495}
2496
Rafael Espindola2d1b0962013-03-14 03:07:35 +00002497bool FunctionDecl::isExternC() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002498 return isDeclExternC(*this);
Rafael Espindola2d1b0962013-03-14 03:07:35 +00002499}
2500
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002501bool FunctionDecl::isInExternCContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00002502 return getLexicalDeclContext()->isExternCContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002503}
2504
2505bool FunctionDecl::isInExternCXXContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00002506 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002507}
2508
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002509bool FunctionDecl::isGlobal() const {
2510 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
2511 return Method->isStatic();
2512
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002513 if (getCanonicalDecl()->getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002514 return false;
2515
Mike Stump1eb44332009-09-09 15:08:12 +00002516 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002517 DC->isNamespace();
2518 DC = DC->getParent()) {
2519 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
2520 if (!Namespace->getDeclName())
2521 return false;
2522 break;
2523 }
2524 }
2525
2526 return true;
2527}
2528
Richard Smithcd8ab512013-01-17 01:30:42 +00002529bool FunctionDecl::isNoReturn() const {
2530 return hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
Richard Smith7586a6e2013-01-30 05:45:05 +00002531 hasAttr<C11NoReturnAttr>() ||
Richard Smithcd8ab512013-01-17 01:30:42 +00002532 getType()->getAs<FunctionType>()->getNoReturnAttr();
2533}
2534
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002535void
2536FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
Rafael Espindolabc650912013-10-17 15:37:26 +00002537 redeclarable_base::setPreviousDecl(PrevDecl);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002538
2539 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
2540 FunctionTemplateDecl *PrevFunTmpl
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002541 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002542 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
Rafael Espindolabc650912013-10-17 15:37:26 +00002543 FunTmpl->setPreviousDecl(PrevFunTmpl);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002544 }
Douglas Gregor8f150942010-12-09 16:59:22 +00002545
Axel Naumannd9d137e2011-11-08 18:21:06 +00002546 if (PrevDecl && PrevDecl->IsInline)
Douglas Gregor8f150942010-12-09 16:59:22 +00002547 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002548}
2549
2550const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
Rafael Espindolabc650912013-10-17 15:37:26 +00002551 return getFirstDecl();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002552}
2553
Rafael Espindolabc650912013-10-17 15:37:26 +00002554FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002555
Douglas Gregor3e41d602009-02-13 23:20:09 +00002556/// \brief Returns a value indicating whether this function
2557/// corresponds to a builtin function.
2558///
2559/// The function corresponds to a built-in function if it is
2560/// declared at translation scope or within an extern "C" block and
2561/// its name matches with the name of a builtin. The returned value
2562/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00002563/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00002564/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00002565unsigned FunctionDecl::getBuiltinID() const {
Daniel Dunbar60d302a2012-03-06 23:52:37 +00002566 if (!getIdentifier())
Douglas Gregor3c385e52009-02-14 18:57:46 +00002567 return 0;
2568
2569 unsigned BuiltinID = getIdentifier()->getBuiltinID();
Daniel Dunbar60d302a2012-03-06 23:52:37 +00002570 if (!BuiltinID)
2571 return 0;
2572
2573 ASTContext &Context = getASTContext();
Warren Hunt2d023ec2013-11-01 23:46:51 +00002574 if (Context.getLangOpts().CPlusPlus) {
2575 const LinkageSpecDecl *LinkageDecl = dyn_cast<LinkageSpecDecl>(
2576 getFirstDecl()->getDeclContext());
2577 // In C++, the first declaration of a builtin is always inside an implicit
2578 // extern "C".
2579 // FIXME: A recognised library function may not be directly in an extern "C"
2580 // declaration, for instance "extern "C" { namespace std { decl } }".
2581 if (!LinkageDecl || LinkageDecl->getLanguage() != LinkageSpecDecl::lang_c)
2582 return 0;
2583 }
2584
2585 // If the function is marked "overloadable", it has a different mangled name
2586 // and is not the C library function.
Stephen Hines651f13c2014-04-23 16:59:28 -07002587 if (hasAttr<OverloadableAttr>())
Warren Hunt2d023ec2013-11-01 23:46:51 +00002588 return 0;
2589
Douglas Gregor3c385e52009-02-14 18:57:46 +00002590 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
2591 return BuiltinID;
2592
2593 // This function has the name of a known C library
2594 // function. Determine whether it actually refers to the C library
2595 // function or whether it just has the same name.
2596
Douglas Gregor9add3172009-02-17 03:23:10 +00002597 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00002598 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00002599 return 0;
2600
Warren Hunt2d023ec2013-11-01 23:46:51 +00002601 return BuiltinID;
Douglas Gregor3e41d602009-02-13 23:20:09 +00002602}
2603
2604
Chris Lattner1ad9b282009-04-25 06:03:53 +00002605/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00002606/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00002607/// after it has been created.
2608unsigned FunctionDecl::getNumParams() const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002609 const FunctionProtoType *FPT = getType()->getAs<FunctionProtoType>();
2610 return FPT ? FPT->getNumParams() : 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00002611}
2612
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002613void FunctionDecl::setParams(ASTContext &C,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002614 ArrayRef<ParmVarDecl *> NewParamInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002615 assert(!ParamInfo && "Already has param info!");
David Blaikie4278c652011-09-21 18:16:56 +00002616 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00002617
Reid Spencer5f016e22007-07-11 17:01:13 +00002618 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00002619 if (!NewParamInfo.empty()) {
2620 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
2621 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00002622 }
2623}
2624
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002625void FunctionDecl::setDeclsInPrototypeScope(ArrayRef<NamedDecl *> NewDecls) {
James Molloy16f1f712012-02-29 10:24:19 +00002626 assert(DeclsInPrototypeScope.empty() && "Already has prototype decls!");
2627
2628 if (!NewDecls.empty()) {
2629 NamedDecl **A = new (getASTContext()) NamedDecl*[NewDecls.size()];
2630 std::copy(NewDecls.begin(), NewDecls.end(), A);
Stephen Hines176edba2014-12-01 14:53:08 -08002631 DeclsInPrototypeScope = llvm::makeArrayRef(A, NewDecls.size());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002632 // Move declarations introduced in prototype to the function context.
2633 for (auto I : NewDecls) {
2634 DeclContext *DC = I->getDeclContext();
2635 // Forward-declared reference to an enumeration is not added to
2636 // declaration scope, so skip declaration that is absent from its
2637 // declaration contexts.
2638 if (DC->containsDecl(I)) {
2639 DC->removeDecl(I);
2640 I->setDeclContext(this);
2641 addDecl(I);
2642 }
2643 }
James Molloy16f1f712012-02-29 10:24:19 +00002644 }
2645}
2646
Chris Lattner8123a952008-04-10 02:22:51 +00002647/// getMinRequiredArguments - Returns the minimum number of arguments
2648/// needed to call this function. This may be fewer than the number of
2649/// function parameters, if some of the parameters have default
Stephen Hines651f13c2014-04-23 16:59:28 -07002650/// arguments (in C++) or are parameter packs (C++11).
Chris Lattner8123a952008-04-10 02:22:51 +00002651unsigned FunctionDecl::getMinRequiredArguments() const {
David Blaikie4e4d0842012-03-11 07:00:24 +00002652 if (!getASTContext().getLangOpts().CPlusPlus)
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00002653 return getNumParams();
Chris Lattner8123a952008-04-10 02:22:51 +00002654
Stephen Hines651f13c2014-04-23 16:59:28 -07002655 unsigned NumRequiredArgs = 0;
2656 for (auto *Param : params())
2657 if (!Param->isParameterPack() && !Param->hasDefaultArg())
2658 ++NumRequiredArgs;
Chris Lattner8123a952008-04-10 02:22:51 +00002659 return NumRequiredArgs;
2660}
2661
Stephen Hines651f13c2014-04-23 16:59:28 -07002662/// \brief The combination of the extern and inline keywords under MSVC forces
2663/// the function to be required.
2664///
2665/// Note: This function assumes that we will only get called when isInlined()
2666/// would return true for this FunctionDecl.
2667bool FunctionDecl::isMSExternInline() const {
2668 assert(isInlined() && "expected to get called on an inlined function!");
2669
2670 const ASTContext &Context = getASTContext();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002671 if (!Context.getLangOpts().MSVCCompat && !hasAttr<DLLExportAttr>())
Stephen Hines651f13c2014-04-23 16:59:28 -07002672 return false;
2673
2674 for (const FunctionDecl *FD = this; FD; FD = FD->getPreviousDecl())
2675 if (FD->getStorageClass() == SC_Extern)
2676 return true;
2677
2678 return false;
2679}
2680
2681static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
2682 if (Redecl->getStorageClass() != SC_Extern)
2683 return false;
2684
2685 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
2686 FD = FD->getPreviousDecl())
2687 if (FD->getStorageClass() == SC_Extern)
2688 return false;
2689
2690 return true;
2691}
2692
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002693static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
2694 // Only consider file-scope declarations in this test.
2695 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
2696 return false;
2697
2698 // Only consider explicit declarations; the presence of a builtin for a
2699 // libcall shouldn't affect whether a definition is externally visible.
2700 if (Redecl->isImplicit())
2701 return false;
2702
2703 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
2704 return true; // Not an inline definition
2705
2706 return false;
2707}
2708
Nick Lewyckydce67a72011-07-18 05:26:13 +00002709/// \brief For a function declaration in C or C++, determine whether this
2710/// declaration causes the definition to be externally visible.
2711///
Stephen Hines651f13c2014-04-23 16:59:28 -07002712/// For instance, this determines if adding the current declaration to the set
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002713/// of redeclarations of the given functions causes
2714/// isInlineDefinitionExternallyVisible to change from false to true.
Nick Lewyckydce67a72011-07-18 05:26:13 +00002715bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
2716 assert(!doesThisDeclarationHaveABody() &&
2717 "Must have a declaration without a body.");
2718
2719 ASTContext &Context = getASTContext();
2720
Stephen Hines651f13c2014-04-23 16:59:28 -07002721 if (Context.getLangOpts().MSVCCompat) {
2722 const FunctionDecl *Definition;
2723 if (hasBody(Definition) && Definition->isInlined() &&
2724 redeclForcesDefMSVC(this))
2725 return true;
2726 }
2727
David Blaikie4e4d0842012-03-11 07:00:24 +00002728 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002729 // With GNU inlining, a declaration with 'inline' but not 'extern', forces
2730 // an externally visible definition.
2731 //
2732 // FIXME: What happens if gnu_inline gets added on after the first
2733 // declaration?
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002734 if (!isInlineSpecified() || getStorageClass() == SC_Extern)
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002735 return false;
2736
2737 const FunctionDecl *Prev = this;
2738 bool FoundBody = false;
2739 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7247c882013-05-15 07:37:26 +00002740 FoundBody |= Prev->Body.isValid();
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002741
2742 if (Prev->Body) {
2743 // If it's not the case that both 'inline' and 'extern' are
2744 // specified on the definition, then it is always externally visible.
2745 if (!Prev->isInlineSpecified() ||
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002746 Prev->getStorageClass() != SC_Extern)
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002747 return false;
2748 } else if (Prev->isInlineSpecified() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002749 Prev->getStorageClass() != SC_Extern) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002750 return false;
2751 }
2752 }
2753 return FoundBody;
2754 }
2755
David Blaikie4e4d0842012-03-11 07:00:24 +00002756 if (Context.getLangOpts().CPlusPlus)
Nick Lewyckydce67a72011-07-18 05:26:13 +00002757 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002758
2759 // C99 6.7.4p6:
2760 // [...] If all of the file scope declarations for a function in a
2761 // translation unit include the inline function specifier without extern,
2762 // then the definition in that translation unit is an inline definition.
2763 if (isInlineSpecified() && getStorageClass() != SC_Extern)
Nick Lewyckydce67a72011-07-18 05:26:13 +00002764 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002765 const FunctionDecl *Prev = this;
2766 bool FoundBody = false;
2767 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7247c882013-05-15 07:37:26 +00002768 FoundBody |= Prev->Body.isValid();
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002769 if (RedeclForcesDefC99(Prev))
2770 return false;
2771 }
2772 return FoundBody;
Nick Lewyckydce67a72011-07-18 05:26:13 +00002773}
2774
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002775SourceRange FunctionDecl::getReturnTypeSourceRange() const {
2776 const TypeSourceInfo *TSI = getTypeSourceInfo();
2777 if (!TSI)
2778 return SourceRange();
2779 FunctionTypeLoc FTL =
2780 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>();
2781 if (!FTL)
2782 return SourceRange();
2783
2784 // Skip self-referential return types.
2785 const SourceManager &SM = getASTContext().getSourceManager();
2786 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
2787 SourceLocation Boundary = getNameInfo().getLocStart();
2788 if (RTRange.isInvalid() || Boundary.isInvalid() ||
2789 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
2790 return SourceRange();
2791
2792 return RTRange;
2793}
2794
Richard Smithd4497dd2013-01-25 00:08:28 +00002795/// \brief For an inline function definition in C, or for a gnu_inline function
2796/// in C++, determine whether the definition will be externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002797///
2798/// Inline function definitions are always available for inlining optimizations.
2799/// However, depending on the language dialect, declaration specifiers, and
2800/// attributes, the definition of an inline function may or may not be
2801/// "externally" visible to other translation units in the program.
2802///
2803/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00002804/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002805/// inline definition becomes externally visible (C99 6.7.4p6).
2806///
2807/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
2808/// definition, we use the GNU semantics for inline, which are nearly the
2809/// opposite of C99 semantics. In particular, "inline" by itself will create
2810/// an externally visible symbol, but "extern inline" will not create an
2811/// externally visible symbol.
2812bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00002813 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002814 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00002815 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002816
David Blaikie4e4d0842012-03-11 07:00:24 +00002817 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002818 // Note: If you change the logic here, please change
2819 // doesDeclarationForceExternallyVisibleDefinition as well.
2820 //
Douglas Gregor8f150942010-12-09 16:59:22 +00002821 // If it's not the case that both 'inline' and 'extern' are
2822 // specified on the definition, then this inline definition is
2823 // externally visible.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002824 if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
Douglas Gregor8f150942010-12-09 16:59:22 +00002825 return true;
2826
2827 // If any declaration is 'inline' but not 'extern', then this definition
2828 // is externally visible.
Stephen Hines651f13c2014-04-23 16:59:28 -07002829 for (auto Redecl : redecls()) {
Douglas Gregor8f150942010-12-09 16:59:22 +00002830 if (Redecl->isInlineSpecified() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002831 Redecl->getStorageClass() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002832 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00002833 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002834
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002835 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002836 }
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002837
Richard Smithd4497dd2013-01-25 00:08:28 +00002838 // The rest of this function is C-only.
2839 assert(!Context.getLangOpts().CPlusPlus &&
2840 "should not use C inline rules in C++");
2841
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002842 // C99 6.7.4p6:
2843 // [...] If all of the file scope declarations for a function in a
2844 // translation unit include the inline function specifier without extern,
2845 // then the definition in that translation unit is an inline definition.
Stephen Hines651f13c2014-04-23 16:59:28 -07002846 for (auto Redecl : redecls()) {
2847 if (RedeclForcesDefC99(Redecl))
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002848 return true;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002849 }
2850
2851 // C99 6.7.4p6:
2852 // An inline definition does not provide an external definition for the
2853 // function, and does not forbid an external definition in another
2854 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002855 return false;
2856}
2857
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002858/// getOverloadedOperator - Which C++ overloaded operator this
2859/// function represents, if any.
2860OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00002861 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
2862 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002863 else
2864 return OO_None;
2865}
2866
Sean Hunta6c058d2010-01-13 09:01:02 +00002867/// getLiteralIdentifier - The literal suffix identifier this function
2868/// represents, if any.
2869const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
2870 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
2871 return getDeclName().getCXXLiteralIdentifier();
2872 else
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002873 return nullptr;
Sean Hunta6c058d2010-01-13 09:01:02 +00002874}
2875
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002876FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
2877 if (TemplateOrSpecialization.isNull())
2878 return TK_NonTemplate;
2879 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
2880 return TK_FunctionTemplate;
2881 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
2882 return TK_MemberSpecialization;
2883 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
2884 return TK_FunctionTemplateSpecialization;
2885 if (TemplateOrSpecialization.is
2886 <DependentFunctionTemplateSpecializationInfo*>())
2887 return TK_DependentFunctionTemplateSpecialization;
2888
David Blaikieb219cfc2011-09-23 05:06:16 +00002889 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002890}
2891
Douglas Gregor2db32322009-10-07 23:56:10 +00002892FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002893 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00002894 return cast<FunctionDecl>(Info->getInstantiatedFrom());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002895
2896 return nullptr;
Douglas Gregor2db32322009-10-07 23:56:10 +00002897}
2898
2899void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002900FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
2901 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00002902 TemplateSpecializationKind TSK) {
2903 assert(TemplateOrSpecialization.isNull() &&
2904 "Member function is already a specialization");
2905 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002906 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00002907 TemplateOrSpecialization = Info;
2908}
2909
Douglas Gregor3b846b62009-10-27 20:53:28 +00002910bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002911 // If the function is invalid, it can't be implicitly instantiated.
2912 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00002913 return false;
2914
2915 switch (getTemplateSpecializationKind()) {
2916 case TSK_Undeclared:
Douglas Gregor3b846b62009-10-27 20:53:28 +00002917 case TSK_ExplicitInstantiationDefinition:
2918 return false;
2919
2920 case TSK_ImplicitInstantiation:
2921 return true;
2922
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002923 // It is possible to instantiate TSK_ExplicitSpecialization kind
2924 // if the FunctionDecl has a class scope specialization pattern.
2925 case TSK_ExplicitSpecialization:
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002926 return getClassScopeSpecializationPattern() != nullptr;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002927
Douglas Gregor3b846b62009-10-27 20:53:28 +00002928 case TSK_ExplicitInstantiationDeclaration:
2929 // Handled below.
2930 break;
2931 }
2932
2933 // Find the actual template from which we will instantiate.
2934 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002935 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002936 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002937 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00002938
2939 // C++0x [temp.explicit]p9:
2940 // Except for inline functions, other explicit instantiation declarations
2941 // have the effect of suppressing the implicit instantiation of the entity
2942 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002943 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00002944 return true;
2945
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002946 return PatternDecl->isInlined();
Ted Kremenek75df4ee2011-12-01 00:59:17 +00002947}
2948
2949bool FunctionDecl::isTemplateInstantiation() const {
2950 switch (getTemplateSpecializationKind()) {
2951 case TSK_Undeclared:
2952 case TSK_ExplicitSpecialization:
2953 return false;
2954 case TSK_ImplicitInstantiation:
2955 case TSK_ExplicitInstantiationDeclaration:
2956 case TSK_ExplicitInstantiationDefinition:
2957 return true;
2958 }
2959 llvm_unreachable("All TSK values handled.");
2960}
Douglas Gregor3b846b62009-10-27 20:53:28 +00002961
2962FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002963 // Handle class scope explicit specialization special case.
2964 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2965 return getClassScopeSpecializationPattern();
Stephen Hines651f13c2014-04-23 16:59:28 -07002966
2967 // If this is a generic lambda call operator specialization, its
2968 // instantiation pattern is always its primary template's pattern
2969 // even if its primary template was instantiated from another
2970 // member template (which happens with nested generic lambdas).
2971 // Since a lambda's call operator's body is transformed eagerly,
2972 // we don't have to go hunting for a prototype definition template
2973 // (i.e. instantiated-from-member-template) to use as an instantiation
2974 // pattern.
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002975
Stephen Hines651f13c2014-04-23 16:59:28 -07002976 if (isGenericLambdaCallOperatorSpecialization(
2977 dyn_cast<CXXMethodDecl>(this))) {
2978 assert(getPrimaryTemplate() && "A generic lambda specialization must be "
2979 "generated from a primary call operator "
2980 "template");
2981 assert(getPrimaryTemplate()->getTemplatedDecl()->getBody() &&
2982 "A generic lambda call operator template must always have a body - "
2983 "even if instantiated from a prototype (i.e. as written) member "
2984 "template");
2985 return getPrimaryTemplate()->getTemplatedDecl();
2986 }
2987
Douglas Gregor3b846b62009-10-27 20:53:28 +00002988 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
2989 while (Primary->getInstantiatedFromMemberTemplate()) {
2990 // If we have hit a point where the user provided a specialization of
2991 // this template, we're done looking.
2992 if (Primary->isMemberSpecialization())
2993 break;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002994 Primary = Primary->getInstantiatedFromMemberTemplate();
2995 }
2996
2997 return Primary->getTemplatedDecl();
2998 }
2999
3000 return getInstantiatedFromMemberFunction();
3001}
3002
Douglas Gregor16e8be22009-06-29 17:30:29 +00003003FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003004 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00003005 = TemplateOrSpecialization
3006 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003007 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00003008 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003009 return nullptr;
Douglas Gregor16e8be22009-06-29 17:30:29 +00003010}
3011
Francois Pichetaf0f4d02011-08-14 03:52:19 +00003012FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
3013 return getASTContext().getClassScopeSpecializationPattern(this);
3014}
3015
Douglas Gregor16e8be22009-06-29 17:30:29 +00003016const TemplateArgumentList *
3017FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003018 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00003019 = TemplateOrSpecialization
3020 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00003021 return Info->TemplateArguments;
3022 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003023 return nullptr;
Douglas Gregor16e8be22009-06-29 17:30:29 +00003024}
3025
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00003026const ASTTemplateArgumentListInfo *
Abramo Bagnarae03db982010-05-20 15:32:11 +00003027FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
3028 if (FunctionTemplateSpecializationInfo *Info
3029 = TemplateOrSpecialization
3030 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
3031 return Info->TemplateArgumentsAsWritten;
3032 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003033 return nullptr;
Abramo Bagnarae03db982010-05-20 15:32:11 +00003034}
3035
Mike Stump1eb44332009-09-09 15:08:12 +00003036void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00003037FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
3038 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00003039 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00003040 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00003041 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00003042 const TemplateArgumentListInfo *TemplateArgsAsWritten,
3043 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00003044 assert(TSK != TSK_Undeclared &&
3045 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00003046 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00003047 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00003048 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00003049 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
3050 TemplateArgs,
3051 TemplateArgsAsWritten,
3052 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00003053 TemplateOrSpecialization = Info;
Douglas Gregor1e1e9722012-03-28 14:34:23 +00003054 Template->addSpecialization(Info, InsertPos);
Douglas Gregor1637be72009-06-26 00:10:03 +00003055}
3056
John McCallaf2094e2010-04-08 09:05:18 +00003057void
3058FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
3059 const UnresolvedSetImpl &Templates,
3060 const TemplateArgumentListInfo &TemplateArgs) {
3061 assert(TemplateOrSpecialization.isNull());
3062 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
3063 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00003064 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00003065 void *Buffer = Context.Allocate(Size);
3066 DependentFunctionTemplateSpecializationInfo *Info =
3067 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
3068 TemplateArgs);
3069 TemplateOrSpecialization = Info;
3070}
3071
3072DependentFunctionTemplateSpecializationInfo::
3073DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
3074 const TemplateArgumentListInfo &TArgs)
3075 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
3076
3077 d.NumTemplates = Ts.size();
3078 d.NumArgs = TArgs.size();
3079
3080 FunctionTemplateDecl **TsArray =
3081 const_cast<FunctionTemplateDecl**>(getTemplates());
3082 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
3083 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
3084
3085 TemplateArgumentLoc *ArgsArray =
3086 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
3087 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
3088 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
3089}
3090
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003091TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003092 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003093 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00003094 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003095 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00003096 if (FTSInfo)
3097 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00003098
Douglas Gregor2db32322009-10-07 23:56:10 +00003099 MemberSpecializationInfo *MSInfo
3100 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
3101 if (MSInfo)
3102 return MSInfo->getTemplateSpecializationKind();
3103
3104 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003105}
3106
Mike Stump1eb44332009-09-09 15:08:12 +00003107void
Douglas Gregor0a897e32009-10-15 17:21:20 +00003108FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3109 SourceLocation PointOfInstantiation) {
3110 if (FunctionTemplateSpecializationInfo *FTSInfo
3111 = TemplateOrSpecialization.dyn_cast<
3112 FunctionTemplateSpecializationInfo*>()) {
3113 FTSInfo->setTemplateSpecializationKind(TSK);
3114 if (TSK != TSK_ExplicitSpecialization &&
3115 PointOfInstantiation.isValid() &&
3116 FTSInfo->getPointOfInstantiation().isInvalid())
3117 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
3118 } else if (MemberSpecializationInfo *MSInfo
3119 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
3120 MSInfo->setTemplateSpecializationKind(TSK);
3121 if (TSK != TSK_ExplicitSpecialization &&
3122 PointOfInstantiation.isValid() &&
3123 MSInfo->getPointOfInstantiation().isInvalid())
3124 MSInfo->setPointOfInstantiation(PointOfInstantiation);
3125 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00003126 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor0a897e32009-10-15 17:21:20 +00003127}
3128
3129SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00003130 if (FunctionTemplateSpecializationInfo *FTSInfo
3131 = TemplateOrSpecialization.dyn_cast<
3132 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00003133 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00003134 else if (MemberSpecializationInfo *MSInfo
3135 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00003136 return MSInfo->getPointOfInstantiation();
3137
3138 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003139}
3140
Douglas Gregor9f185072009-09-11 20:15:17 +00003141bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00003142 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00003143 return true;
3144
3145 // If this function was instantiated from a member function of a
3146 // class template, check whether that member function was defined out-of-line.
3147 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
3148 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00003149 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00003150 return Definition->isOutOfLine();
3151 }
3152
3153 // If this function was instantiated from a function template,
3154 // check whether that function template was defined out-of-line.
3155 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
3156 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00003157 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00003158 return Definition->isOutOfLine();
3159 }
3160
3161 return false;
3162}
3163
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00003164SourceRange FunctionDecl::getSourceRange() const {
3165 return SourceRange(getOuterLocStart(), EndRangeLoc);
3166}
3167
Anna Zaks9392d4e2012-01-18 02:45:01 +00003168unsigned FunctionDecl::getMemoryFunctionKind() const {
Anna Zaksd9b859a2012-01-13 21:52:01 +00003169 IdentifierInfo *FnInfo = getIdentifier();
3170
3171 if (!FnInfo)
Anna Zaks0a151a12012-01-17 00:37:07 +00003172 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003173
3174 // Builtin handling.
3175 switch (getBuiltinID()) {
3176 case Builtin::BI__builtin_memset:
3177 case Builtin::BI__builtin___memset_chk:
3178 case Builtin::BImemset:
Anna Zaks0a151a12012-01-17 00:37:07 +00003179 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003180
3181 case Builtin::BI__builtin_memcpy:
3182 case Builtin::BI__builtin___memcpy_chk:
3183 case Builtin::BImemcpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00003184 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003185
3186 case Builtin::BI__builtin_memmove:
3187 case Builtin::BI__builtin___memmove_chk:
3188 case Builtin::BImemmove:
Anna Zaks0a151a12012-01-17 00:37:07 +00003189 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003190
3191 case Builtin::BIstrlcpy:
Stephen Hines176edba2014-12-01 14:53:08 -08003192 case Builtin::BI__builtin___strlcpy_chk:
Anna Zaks0a151a12012-01-17 00:37:07 +00003193 return Builtin::BIstrlcpy;
Stephen Hines176edba2014-12-01 14:53:08 -08003194
Anna Zaksd9b859a2012-01-13 21:52:01 +00003195 case Builtin::BIstrlcat:
Stephen Hines176edba2014-12-01 14:53:08 -08003196 case Builtin::BI__builtin___strlcat_chk:
Anna Zaks0a151a12012-01-17 00:37:07 +00003197 return Builtin::BIstrlcat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003198
3199 case Builtin::BI__builtin_memcmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003200 case Builtin::BImemcmp:
3201 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003202
3203 case Builtin::BI__builtin_strncpy:
3204 case Builtin::BI__builtin___strncpy_chk:
3205 case Builtin::BIstrncpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00003206 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003207
3208 case Builtin::BI__builtin_strncmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003209 case Builtin::BIstrncmp:
3210 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003211
3212 case Builtin::BI__builtin_strncasecmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003213 case Builtin::BIstrncasecmp:
3214 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003215
3216 case Builtin::BI__builtin_strncat:
Anna Zaksc36bedc2012-02-01 19:08:57 +00003217 case Builtin::BI__builtin___strncat_chk:
Anna Zaksd9b859a2012-01-13 21:52:01 +00003218 case Builtin::BIstrncat:
Anna Zaks0a151a12012-01-17 00:37:07 +00003219 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003220
3221 case Builtin::BI__builtin_strndup:
3222 case Builtin::BIstrndup:
Anna Zaks0a151a12012-01-17 00:37:07 +00003223 return Builtin::BIstrndup;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003224
Anna Zaksc36bedc2012-02-01 19:08:57 +00003225 case Builtin::BI__builtin_strlen:
3226 case Builtin::BIstrlen:
3227 return Builtin::BIstrlen;
3228
Anna Zaksd9b859a2012-01-13 21:52:01 +00003229 default:
Rafael Espindolad2fdd422013-02-14 01:47:04 +00003230 if (isExternC()) {
Anna Zaksd9b859a2012-01-13 21:52:01 +00003231 if (FnInfo->isStr("memset"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003232 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003233 else if (FnInfo->isStr("memcpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003234 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003235 else if (FnInfo->isStr("memmove"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003236 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003237 else if (FnInfo->isStr("memcmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003238 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003239 else if (FnInfo->isStr("strncpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003240 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003241 else if (FnInfo->isStr("strncmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003242 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003243 else if (FnInfo->isStr("strncasecmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003244 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003245 else if (FnInfo->isStr("strncat"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003246 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003247 else if (FnInfo->isStr("strndup"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003248 return Builtin::BIstrndup;
Anna Zaksc36bedc2012-02-01 19:08:57 +00003249 else if (FnInfo->isStr("strlen"))
3250 return Builtin::BIstrlen;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003251 }
3252 break;
3253 }
Anna Zaks0a151a12012-01-17 00:37:07 +00003254 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003255}
3256
Chris Lattner8a934232008-03-31 00:36:02 +00003257//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003258// FieldDecl Implementation
3259//===----------------------------------------------------------------------===//
3260
Jay Foad4ba2a172011-01-12 09:06:06 +00003261FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003262 SourceLocation StartLoc, SourceLocation IdLoc,
3263 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00003264 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
Richard Smithca523302012-06-10 03:12:00 +00003265 InClassInitStyle InitStyle) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003266 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3267 BW, Mutable, InitStyle);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003268}
3269
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003270FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003271 return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(),
3272 SourceLocation(), nullptr, QualType(), nullptr,
3273 nullptr, false, ICIS_NoInit);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003274}
3275
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003276bool FieldDecl::isAnonymousStructOrUnion() const {
3277 if (!isImplicit() || getDeclName())
3278 return false;
3279
3280 if (const RecordType *Record = getType()->getAs<RecordType>())
3281 return Record->getDecl()->isAnonymousStructOrUnion();
3282
3283 return false;
3284}
3285
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003286unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
3287 assert(isBitField() && "not a bitfield");
Stephen Hines176edba2014-12-01 14:53:08 -08003288 Expr *BitWidth = static_cast<Expr *>(InitStorage.getPointer());
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003289 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
3290}
3291
John McCallba4f5d52011-01-20 07:57:12 +00003292unsigned FieldDecl::getFieldIndex() const {
Richard Smith4ed01222013-10-07 08:02:11 +00003293 const FieldDecl *Canonical = getCanonicalDecl();
3294 if (Canonical != this)
3295 return Canonical->getFieldIndex();
3296
John McCallba4f5d52011-01-20 07:57:12 +00003297 if (CachedFieldIndex) return CachedFieldIndex - 1;
3298
Richard Smith180f4792011-11-10 06:34:14 +00003299 unsigned Index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00003300 const RecordDecl *RD = getParent();
Richard Smith180f4792011-11-10 06:34:14 +00003301
Stephen Hines176edba2014-12-01 14:53:08 -08003302 for (auto *Field : RD->fields()) {
3303 Field->getCanonicalDecl()->CachedFieldIndex = Index + 1;
3304 ++Index;
3305 }
John McCallba4f5d52011-01-20 07:57:12 +00003306
Richard Smith180f4792011-11-10 06:34:14 +00003307 assert(CachedFieldIndex && "failed to find field in parent");
3308 return CachedFieldIndex - 1;
John McCallba4f5d52011-01-20 07:57:12 +00003309}
3310
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00003311SourceRange FieldDecl::getSourceRange() const {
Stephen Hines176edba2014-12-01 14:53:08 -08003312 switch (InitStorage.getInt()) {
3313 // All three of these cases store an optional Expr*.
3314 case ISK_BitWidthOrNothing:
3315 case ISK_InClassCopyInit:
3316 case ISK_InClassListInit:
3317 if (const Expr *E = static_cast<const Expr *>(InitStorage.getPointer()))
3318 return SourceRange(getInnerLocStart(), E->getLocEnd());
3319 // FALLTHROUGH
3320
3321 case ISK_CapturedVLAType:
3322 return DeclaratorDecl::getSourceRange();
3323 }
3324 llvm_unreachable("bad init storage kind");
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00003325}
3326
Stephen Hines176edba2014-12-01 14:53:08 -08003327void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) {
3328 assert((getParent()->isLambda() || getParent()->isCapturedRecord()) &&
3329 "capturing type in non-lambda or captured record.");
3330 assert(InitStorage.getInt() == ISK_BitWidthOrNothing &&
3331 InitStorage.getPointer() == nullptr &&
3332 "bit width, initializer or captured type already set");
3333 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType),
3334 ISK_CapturedVLAType);
Richard Smith7a614d82011-06-11 17:19:42 +00003335}
3336
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003337//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003338// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003339//===----------------------------------------------------------------------===//
3340
Douglas Gregor1693e152010-07-06 18:42:40 +00003341SourceLocation TagDecl::getOuterLocStart() const {
3342 return getTemplateOrInnerLocStart(this);
3343}
3344
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00003345SourceRange TagDecl::getSourceRange() const {
3346 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00003347 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00003348}
3349
Rafael Espindolabc650912013-10-17 15:37:26 +00003350TagDecl *TagDecl::getCanonicalDecl() { return getFirstDecl(); }
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00003351
Rafael Espindola2d9e8832013-03-12 21:06:00 +00003352void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
David Majnemeraa824612013-09-17 23:57:10 +00003353 NamedDeclOrQualifier = TDD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003354 if (const Type *T = getTypeForDecl()) {
3355 (void)T;
3356 assert(T->isLinkageValid());
3357 }
Rafael Espindola2d1b0962013-03-14 03:07:35 +00003358 assert(isLinkageValid());
Douglas Gregor60e70642010-05-19 18:39:18 +00003359}
3360
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003361void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00003362 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00003363
David Blaikie66cff722012-11-14 01:52:05 +00003364 if (CXXRecordDecl *D = dyn_cast<CXXRecordDecl>(this)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003365 struct CXXRecordDecl::DefinitionData *Data =
John McCall86ff3082010-02-04 22:26:26 +00003366 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
Stephen Hines651f13c2014-04-23 16:59:28 -07003367 for (auto I : redecls())
3368 cast<CXXRecordDecl>(I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00003369 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003370}
3371
3372void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00003373 assert((!isa<CXXRecordDecl>(this) ||
3374 cast<CXXRecordDecl>(this)->hasDefinition()) &&
3375 "definition completed but not started");
3376
John McCall5e1cdac2011-10-07 06:10:15 +00003377 IsCompleteDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00003378 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00003379
3380 if (ASTMutationListener *L = getASTMutationListener())
3381 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003382}
3383
John McCall5e1cdac2011-10-07 06:10:15 +00003384TagDecl *TagDecl::getDefinition() const {
3385 if (isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00003386 return const_cast<TagDecl *>(this);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003387
3388 // If it's possible for us to have an out-of-date definition, check now.
3389 if (MayHaveOutOfDateDef) {
3390 if (IdentifierInfo *II = getIdentifier()) {
3391 if (II->isOutOfDate()) {
3392 updateOutOfDate(*II);
3393 }
3394 }
3395 }
3396
Andrew Trick220a9c82010-10-19 21:54:32 +00003397 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
3398 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00003399
Stephen Hines651f13c2014-04-23 16:59:28 -07003400 for (auto R : redecls())
John McCall5e1cdac2011-10-07 06:10:15 +00003401 if (R->isCompleteDefinition())
Stephen Hines651f13c2014-04-23 16:59:28 -07003402 return R;
Mike Stump1eb44332009-09-09 15:08:12 +00003403
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003404 return nullptr;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003405}
3406
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003407void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
3408 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00003409 // Make sure the extended qualifier info is allocated.
3410 if (!hasExtInfo())
David Majnemeraa824612013-09-17 23:57:10 +00003411 NamedDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00003412 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003413 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00003414 } else {
John McCallb6217662010-03-15 10:12:16 +00003415 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00003416 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003417 if (getExtInfo()->NumTemplParamLists == 0) {
3418 getASTContext().Deallocate(getExtInfo());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003419 NamedDeclOrQualifier = (TypedefNameDecl*)nullptr;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003420 }
3421 else
3422 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00003423 }
3424 }
3425}
3426
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003427void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
3428 unsigned NumTPLists,
3429 TemplateParameterList **TPLists) {
3430 assert(NumTPLists > 0);
3431 // Make sure the extended decl info is allocated.
3432 if (!hasExtInfo())
3433 // Allocate external info struct.
David Majnemeraa824612013-09-17 23:57:10 +00003434 NamedDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003435 // Set the template parameter lists info.
3436 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
3437}
3438
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003439//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003440// EnumDecl Implementation
3441//===----------------------------------------------------------------------===//
3442
David Blaikie99ba9e32011-12-20 02:48:34 +00003443void EnumDecl::anchor() { }
3444
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00003445EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
3446 SourceLocation StartLoc, SourceLocation IdLoc,
3447 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003448 EnumDecl *PrevDecl, bool IsScoped,
3449 bool IsScopedUsingClassTag, bool IsFixed) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003450 EnumDecl *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl,
Stephen Hines651f13c2014-04-23 16:59:28 -07003451 IsScoped, IsScopedUsingClassTag,
3452 IsFixed);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003453 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003454 C.getTypeDeclType(Enum, PrevDecl);
3455 return Enum;
3456}
3457
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003458EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003459 EnumDecl *Enum =
3460 new (C, ID) EnumDecl(C, nullptr, SourceLocation(), SourceLocation(),
3461 nullptr, nullptr, false, false, false);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003462 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3463 return Enum;
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00003464}
3465
Stephen Hines651f13c2014-04-23 16:59:28 -07003466SourceRange EnumDecl::getIntegerTypeRange() const {
3467 if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
3468 return TI->getTypeLoc().getSourceRange();
3469 return SourceRange();
3470}
3471
Douglas Gregor838db382010-02-11 01:19:42 +00003472void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00003473 QualType NewPromotionType,
3474 unsigned NumPositiveBits,
3475 unsigned NumNegativeBits) {
John McCall5e1cdac2011-10-07 06:10:15 +00003476 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003477 if (!IntegerType)
3478 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003479 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00003480 setNumPositiveBits(NumPositiveBits);
3481 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003482 TagDecl::completeDefinition();
3483}
3484
Richard Smith1af83c42012-03-23 03:33:32 +00003485TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
3486 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
3487 return MSI->getTemplateSpecializationKind();
3488
3489 return TSK_Undeclared;
3490}
3491
3492void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3493 SourceLocation PointOfInstantiation) {
3494 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
3495 assert(MSI && "Not an instantiated member enumeration?");
3496 MSI->setTemplateSpecializationKind(TSK);
3497 if (TSK != TSK_ExplicitSpecialization &&
3498 PointOfInstantiation.isValid() &&
3499 MSI->getPointOfInstantiation().isInvalid())
3500 MSI->setPointOfInstantiation(PointOfInstantiation);
3501}
3502
Richard Smithf1c66b42012-03-14 23:13:10 +00003503EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
3504 if (SpecializationInfo)
3505 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
3506
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003507 return nullptr;
Richard Smithf1c66b42012-03-14 23:13:10 +00003508}
3509
3510void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
3511 TemplateSpecializationKind TSK) {
3512 assert(!SpecializationInfo && "Member enum is already a specialization");
3513 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
3514}
3515
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003516//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00003517// RecordDecl Implementation
3518//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00003519
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003520RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
3521 DeclContext *DC, SourceLocation StartLoc,
3522 SourceLocation IdLoc, IdentifierInfo *Id,
3523 RecordDecl *PrevDecl)
3524 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00003525 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003526 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003527 HasObjectMember = false;
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +00003528 HasVolatileMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003529 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00003530 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00003531}
3532
Jay Foad4ba2a172011-01-12 09:06:06 +00003533RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00003534 SourceLocation StartLoc, SourceLocation IdLoc,
3535 IdentifierInfo *Id, RecordDecl* PrevDecl) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003536 RecordDecl *R = new (C, DC) RecordDecl(Record, TK, C, DC,
3537 StartLoc, IdLoc, Id, PrevDecl);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003538 R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3539
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003540 C.getTypeDeclType(R, PrevDecl);
3541 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00003542}
3543
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003544RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003545 RecordDecl *R =
3546 new (C, ID) RecordDecl(Record, TTK_Struct, C, nullptr, SourceLocation(),
3547 SourceLocation(), nullptr, nullptr);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003548 R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3549 return R;
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00003550}
3551
Douglas Gregorc9b5b402009-03-25 15:59:44 +00003552bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003553 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00003554 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
3555}
3556
Stephen Hines176edba2014-12-01 14:53:08 -08003557bool RecordDecl::isLambda() const {
3558 if (auto RD = dyn_cast<CXXRecordDecl>(this))
3559 return RD->isLambda();
3560 return false;
3561}
3562
3563bool RecordDecl::isCapturedRecord() const {
3564 return hasAttr<CapturedRecordAttr>();
3565}
3566
3567void RecordDecl::setCapturedRecord() {
3568 addAttr(CapturedRecordAttr::CreateImplicit(getASTContext()));
3569}
3570
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003571RecordDecl::field_iterator RecordDecl::field_begin() const {
3572 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
3573 LoadFieldsFromExternalStorage();
3574
3575 return field_iterator(decl_iterator(FirstDecl));
3576}
3577
Douglas Gregorda2142f2011-02-19 18:51:44 +00003578/// completeDefinition - Notes that the definition of this type is now
3579/// complete.
3580void RecordDecl::completeDefinition() {
John McCall5e1cdac2011-10-07 06:10:15 +00003581 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorda2142f2011-02-19 18:51:44 +00003582 TagDecl::completeDefinition();
3583}
3584
Eli Friedman5f608ae2012-10-12 23:29:20 +00003585/// isMsStruct - Get whether or not this record uses ms_struct layout.
3586/// This which can be turned on with an attribute, pragma, or the
3587/// -mms-bitfields command-line option.
3588bool RecordDecl::isMsStruct(const ASTContext &C) const {
3589 return hasAttr<MsStructAttr>() || C.getLangOpts().MSBitfields == 1;
3590}
3591
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003592static bool isFieldOrIndirectField(Decl::Kind K) {
3593 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
3594}
3595
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003596void RecordDecl::LoadFieldsFromExternalStorage() const {
3597 ExternalASTSource *Source = getASTContext().getExternalSource();
3598 assert(hasExternalLexicalStorage() && Source && "No external storage?");
3599
3600 // Notify that we have a RecordDecl doing some initialization.
3601 ExternalASTSource::Deserializing TheFields(Source);
3602
Chris Lattner5f9e2722011-07-23 10:55:15 +00003603 SmallVector<Decl*, 64> Decls;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003604 LoadedFieldsFromExternalStorage = true;
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003605 switch (Source->FindExternalLexicalDecls(this, isFieldOrIndirectField,
3606 Decls)) {
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003607 case ELR_Success:
3608 break;
3609
3610 case ELR_AlreadyLoaded:
3611 case ELR_Failure:
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003612 return;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003613 }
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003614
3615#ifndef NDEBUG
3616 // Check that all decls we got were FieldDecls.
3617 for (unsigned i=0, e=Decls.size(); i != e; ++i)
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003618 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003619#endif
3620
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003621 if (Decls.empty())
3622 return;
3623
Stephen Hines651f13c2014-04-23 16:59:28 -07003624 std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
Argyrios Kyrtzidisec2ec1f2011-10-07 21:55:43 +00003625 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003626}
3627
Stephen Hines176edba2014-12-01 14:53:08 -08003628bool RecordDecl::mayInsertExtraPadding(bool EmitRemark) const {
3629 ASTContext &Context = getASTContext();
3630 if (!Context.getLangOpts().Sanitize.has(SanitizerKind::Address) ||
3631 !Context.getLangOpts().SanitizeAddressFieldPadding)
3632 return false;
3633 const auto &Blacklist = Context.getSanitizerBlacklist();
3634 const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this);
3635 // We may be able to relax some of these requirements.
3636 int ReasonToReject = -1;
3637 if (!CXXRD || CXXRD->isExternCContext())
3638 ReasonToReject = 0; // is not C++.
3639 else if (CXXRD->hasAttr<PackedAttr>())
3640 ReasonToReject = 1; // is packed.
3641 else if (CXXRD->isUnion())
3642 ReasonToReject = 2; // is a union.
3643 else if (CXXRD->isTriviallyCopyable())
3644 ReasonToReject = 3; // is trivially copyable.
3645 else if (CXXRD->hasTrivialDestructor())
3646 ReasonToReject = 4; // has trivial destructor.
3647 else if (CXXRD->isStandardLayout())
3648 ReasonToReject = 5; // is standard layout.
3649 else if (Blacklist.isBlacklistedLocation(getLocation(), "field-padding"))
3650 ReasonToReject = 6; // is in a blacklisted file.
3651 else if (Blacklist.isBlacklistedType(getQualifiedNameAsString(),
3652 "field-padding"))
3653 ReasonToReject = 7; // is blacklisted.
3654
3655 if (EmitRemark) {
3656 if (ReasonToReject >= 0)
3657 Context.getDiagnostics().Report(
3658 getLocation(),
3659 diag::remark_sanitize_address_insert_extra_padding_rejected)
3660 << getQualifiedNameAsString() << ReasonToReject;
3661 else
3662 Context.getDiagnostics().Report(
3663 getLocation(),
3664 diag::remark_sanitize_address_insert_extra_padding_accepted)
3665 << getQualifiedNameAsString();
3666 }
3667 return ReasonToReject < 0;
3668}
3669
Steve Naroff56ee6892008-10-08 17:01:13 +00003670//===----------------------------------------------------------------------===//
3671// BlockDecl Implementation
3672//===----------------------------------------------------------------------===//
3673
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003674void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003675 assert(!ParamInfo && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00003676
Steve Naroffe78b8092009-03-13 16:56:44 +00003677 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00003678 if (!NewParamInfo.empty()) {
3679 NumParams = NewParamInfo.size();
3680 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
3681 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffe78b8092009-03-13 16:56:44 +00003682 }
3683}
3684
John McCall6b5a61b2011-02-07 10:33:21 +00003685void BlockDecl::setCaptures(ASTContext &Context,
3686 const Capture *begin,
3687 const Capture *end,
3688 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00003689 CapturesCXXThis = capturesCXXThis;
3690
3691 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00003692 NumCaptures = 0;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003693 Captures = nullptr;
John McCall469a1eb2011-02-02 13:00:07 +00003694 return;
3695 }
3696
John McCall6b5a61b2011-02-07 10:33:21 +00003697 NumCaptures = end - begin;
3698
3699 // Avoid new Capture[] because we don't want to provide a default
3700 // constructor.
3701 size_t allocationSize = NumCaptures * sizeof(Capture);
3702 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
3703 memcpy(buffer, begin, allocationSize);
3704 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00003705}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003706
John McCall204e1332011-06-15 22:51:16 +00003707bool BlockDecl::capturesVariable(const VarDecl *variable) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07003708 for (const auto &I : captures())
John McCall204e1332011-06-15 22:51:16 +00003709 // Only auto vars can be captured, so no redeclaration worries.
Stephen Hines651f13c2014-04-23 16:59:28 -07003710 if (I.getVariable() == variable)
John McCall204e1332011-06-15 22:51:16 +00003711 return true;
3712
3713 return false;
3714}
3715
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00003716SourceRange BlockDecl::getSourceRange() const {
3717 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
3718}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003719
3720//===----------------------------------------------------------------------===//
3721// Other Decl Allocation/Deallocation Method Implementations
3722//===----------------------------------------------------------------------===//
3723
David Blaikie99ba9e32011-12-20 02:48:34 +00003724void TranslationUnitDecl::anchor() { }
3725
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003726TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003727 return new (C, (DeclContext *)nullptr) TranslationUnitDecl(C);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003728}
3729
David Blaikie99ba9e32011-12-20 02:48:34 +00003730void LabelDecl::anchor() { }
3731
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003732LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00003733 SourceLocation IdentL, IdentifierInfo *II) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003734 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
Abramo Bagnara67843042011-03-05 18:21:20 +00003735}
3736
3737LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
3738 SourceLocation IdentL, IdentifierInfo *II,
3739 SourceLocation GnuLabelL) {
3740 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003741 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003742}
3743
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003744LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003745 return new (C, ID) LabelDecl(nullptr, SourceLocation(), nullptr, nullptr,
3746 SourceLocation());
Douglas Gregor06c91932010-10-27 19:49:05 +00003747}
3748
Stephen Hines176edba2014-12-01 14:53:08 -08003749void LabelDecl::setMSAsmLabel(StringRef Name) {
3750 char *Buffer = new (getASTContext(), 1) char[Name.size() + 1];
3751 memcpy(Buffer, Name.data(), Name.size());
3752 Buffer[Name.size()] = '\0';
3753 MSAsmName = Buffer;
3754}
3755
David Blaikie99ba9e32011-12-20 02:48:34 +00003756void ValueDecl::anchor() { }
3757
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +00003758bool ValueDecl::isWeak() const {
Stephen Hines651f13c2014-04-23 16:59:28 -07003759 for (const auto *I : attrs())
3760 if (isa<WeakAttr>(I) || isa<WeakRefAttr>(I))
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +00003761 return true;
3762
3763 return isWeakImported();
3764}
3765
David Blaikie99ba9e32011-12-20 02:48:34 +00003766void ImplicitParamDecl::anchor() { }
3767
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003768ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003769 SourceLocation IdLoc,
3770 IdentifierInfo *Id,
3771 QualType Type) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003772 return new (C, DC) ImplicitParamDecl(C, DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003773}
3774
Stephen Hines651f13c2014-04-23 16:59:28 -07003775ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003776 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003777 return new (C, ID) ImplicitParamDecl(C, nullptr, SourceLocation(), nullptr,
3778 QualType());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003779}
3780
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003781FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003782 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00003783 const DeclarationNameInfo &NameInfo,
3784 QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003785 StorageClass SC,
Stephen Hines651f13c2014-04-23 16:59:28 -07003786 bool isInlineSpecified,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00003787 bool hasWrittenPrototype,
3788 bool isConstexprSpecified) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003789 FunctionDecl *New =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003790 new (C, DC) FunctionDecl(Function, C, DC, StartLoc, NameInfo, T, TInfo,
3791 SC, isInlineSpecified, isConstexprSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003792 New->HasWrittenPrototype = hasWrittenPrototype;
3793 return New;
3794}
3795
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003796FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003797 return new (C, ID) FunctionDecl(Function, C, nullptr, SourceLocation(),
3798 DeclarationNameInfo(), QualType(), nullptr,
Stephen Hines651f13c2014-04-23 16:59:28 -07003799 SC_None, false, false);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003800}
3801
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003802BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003803 return new (C, DC) BlockDecl(DC, L);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003804}
3805
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003806BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003807 return new (C, ID) BlockDecl(nullptr, SourceLocation());
John McCall76da55d2013-04-16 07:28:30 +00003808}
3809
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003810CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
3811 unsigned NumParams) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003812 return new (C, DC, NumParams * sizeof(ImplicitParamDecl *))
3813 CapturedDecl(DC, NumParams);
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003814}
3815
Ben Langmuirdc5be4f2013-05-03 19:20:19 +00003816CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
Stephen Hines651f13c2014-04-23 16:59:28 -07003817 unsigned NumParams) {
3818 return new (C, ID, NumParams * sizeof(ImplicitParamDecl *))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003819 CapturedDecl(nullptr, NumParams);
Ben Langmuirdc5be4f2013-05-03 19:20:19 +00003820}
3821
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003822EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
3823 SourceLocation L,
3824 IdentifierInfo *Id, QualType T,
3825 Expr *E, const llvm::APSInt &V) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003826 return new (C, CD) EnumConstantDecl(CD, L, Id, T, E, V);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003827}
3828
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003829EnumConstantDecl *
3830EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003831 return new (C, ID) EnumConstantDecl(nullptr, SourceLocation(), nullptr,
3832 QualType(), nullptr, llvm::APSInt());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003833}
3834
David Blaikie99ba9e32011-12-20 02:48:34 +00003835void IndirectFieldDecl::anchor() { }
3836
Benjamin Kramerd9811462010-11-21 14:11:41 +00003837IndirectFieldDecl *
3838IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
3839 IdentifierInfo *Id, QualType T, NamedDecl **CH,
3840 unsigned CHS) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003841 return new (C, DC) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
Francois Pichet87c2e122010-11-21 06:08:52 +00003842}
3843
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003844IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
3845 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003846 return new (C, ID) IndirectFieldDecl(nullptr, SourceLocation(),
3847 DeclarationName(), QualType(), nullptr,
3848 0);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003849}
3850
Douglas Gregor8e7139c2010-09-01 20:41:53 +00003851SourceRange EnumConstantDecl::getSourceRange() const {
3852 SourceLocation End = getLocation();
3853 if (Init)
3854 End = Init->getLocEnd();
3855 return SourceRange(getLocation(), End);
3856}
3857
David Blaikie99ba9e32011-12-20 02:48:34 +00003858void TypeDecl::anchor() { }
3859
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003860TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00003861 SourceLocation StartLoc, SourceLocation IdLoc,
3862 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003863 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003864}
3865
David Blaikie99ba9e32011-12-20 02:48:34 +00003866void TypedefNameDecl::anchor() { }
3867
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003868TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003869 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(),
3870 nullptr, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003871}
3872
Richard Smith162e1c12011-04-15 14:24:37 +00003873TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
3874 SourceLocation StartLoc,
3875 SourceLocation IdLoc, IdentifierInfo *Id,
3876 TypeSourceInfo *TInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003877 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00003878}
3879
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003880TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003881 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(),
3882 SourceLocation(), nullptr, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003883}
3884
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00003885SourceRange TypedefDecl::getSourceRange() const {
3886 SourceLocation RangeEnd = getLocation();
3887 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
3888 if (typeIsPostfix(TInfo->getType()))
3889 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
3890 }
3891 return SourceRange(getLocStart(), RangeEnd);
3892}
3893
Richard Smith162e1c12011-04-15 14:24:37 +00003894SourceRange TypeAliasDecl::getSourceRange() const {
3895 SourceLocation RangeEnd = getLocStart();
3896 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
3897 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
3898 return SourceRange(getLocStart(), RangeEnd);
3899}
3900
David Blaikie99ba9e32011-12-20 02:48:34 +00003901void FileScopeAsmDecl::anchor() { }
3902
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003903FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00003904 StringLiteral *Str,
3905 SourceLocation AsmLoc,
3906 SourceLocation RParenLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003907 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003908}
Douglas Gregor15de72c2011-12-02 23:23:56 +00003909
Stephen Hines651f13c2014-04-23 16:59:28 -07003910FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003911 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003912 return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(),
3913 SourceLocation());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003914}
3915
Michael Han684aa732013-02-22 17:15:32 +00003916void EmptyDecl::anchor() {}
3917
3918EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003919 return new (C, DC) EmptyDecl(DC, L);
Michael Han684aa732013-02-22 17:15:32 +00003920}
3921
3922EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003923 return new (C, ID) EmptyDecl(nullptr, SourceLocation());
Michael Han684aa732013-02-22 17:15:32 +00003924}
3925
Douglas Gregor15de72c2011-12-02 23:23:56 +00003926//===----------------------------------------------------------------------===//
3927// ImportDecl Implementation
3928//===----------------------------------------------------------------------===//
3929
3930/// \brief Retrieve the number of module identifiers needed to name the given
3931/// module.
3932static unsigned getNumModuleIdentifiers(Module *Mod) {
3933 unsigned Result = 1;
3934 while (Mod->Parent) {
3935 Mod = Mod->Parent;
3936 ++Result;
3937 }
3938 return Result;
3939}
3940
Douglas Gregor5948ae12012-01-03 18:04:46 +00003941ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003942 Module *Imported,
3943 ArrayRef<SourceLocation> IdentifierLocs)
Douglas Gregor5948ae12012-01-03 18:04:46 +00003944 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
Douglas Gregore6649772011-12-03 00:30:27 +00003945 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00003946{
3947 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
3948 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
3949 memcpy(StoredLocs, IdentifierLocs.data(),
3950 IdentifierLocs.size() * sizeof(SourceLocation));
3951}
3952
Douglas Gregor5948ae12012-01-03 18:04:46 +00003953ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003954 Module *Imported, SourceLocation EndLoc)
Douglas Gregor5948ae12012-01-03 18:04:46 +00003955 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
Douglas Gregore6649772011-12-03 00:30:27 +00003956 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00003957{
3958 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
3959}
3960
Stephen Hines651f13c2014-04-23 16:59:28 -07003961ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00003962 SourceLocation StartLoc, Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003963 ArrayRef<SourceLocation> IdentifierLocs) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003964 return new (C, DC, IdentifierLocs.size() * sizeof(SourceLocation))
3965 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregor15de72c2011-12-02 23:23:56 +00003966}
3967
Stephen Hines651f13c2014-04-23 16:59:28 -07003968ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00003969 SourceLocation StartLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07003970 Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00003971 SourceLocation EndLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003972 ImportDecl *Import =
3973 new (C, DC, sizeof(SourceLocation)) ImportDecl(DC, StartLoc,
3974 Imported, EndLoc);
Douglas Gregor15de72c2011-12-02 23:23:56 +00003975 Import->setImplicit();
3976 return Import;
3977}
3978
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003979ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
3980 unsigned NumLocations) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003981 return new (C, ID, NumLocations * sizeof(SourceLocation))
3982 ImportDecl(EmptyShell());
Douglas Gregor15de72c2011-12-02 23:23:56 +00003983}
3984
3985ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
3986 if (!ImportedAndComplete.getInt())
Dmitri Gribenko55431692013-05-05 00:41:58 +00003987 return None;
Douglas Gregor15de72c2011-12-02 23:23:56 +00003988
3989 const SourceLocation *StoredLocs
3990 = reinterpret_cast<const SourceLocation *>(this + 1);
Stephen Hines176edba2014-12-01 14:53:08 -08003991 return llvm::makeArrayRef(StoredLocs,
3992 getNumModuleIdentifiers(getImportedModule()));
Douglas Gregor15de72c2011-12-02 23:23:56 +00003993}
3994
3995SourceRange ImportDecl::getSourceRange() const {
3996 if (!ImportedAndComplete.getInt())
3997 return SourceRange(getLocation(),
3998 *reinterpret_cast<const SourceLocation *>(this + 1));
3999
4000 return SourceRange(getLocation(), getIdentifierLocs().back());
4001}