blob: ba6fd2e103c51000d305497f17770372a4a5e306 [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);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700622 } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) {
623 // - a data member of an anonymous union.
624 const VarDecl *VD = IFD->getVarDecl();
625 assert(VD && "Expected a VarDecl in this IndirectFieldDecl!");
626 return getLVForNamespaceScopeDecl(VD, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000627 }
David Majnemer885d8bf2013-10-23 20:52:43 +0000628 assert(!isa<FieldDecl>(D) && "Didn't expect a FieldDecl!");
Douglas Gregord85b5b92009-11-25 22:24:25 +0000629
Chandler Carruth094b6432011-02-24 19:03:39 +0000630 if (D->isInAnonymousNamespace()) {
631 const VarDecl *Var = dyn_cast<VarDecl>(D);
632 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D);
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000633 if ((!Var || !isFirstInExternCContext(Var)) &&
634 (!Func || !isFirstInExternCContext(Func)))
Chandler Carruth094b6432011-02-24 19:03:39 +0000635 return LinkageInfo::uniqueExternal();
636 }
John McCalle7bc9722010-10-28 04:18:25 +0000637
John McCall1fb0caa2010-10-22 21:05:15 +0000638 // Set up the defaults.
639
640 // C99 6.2.2p5:
641 // If the declaration of an identifier for an object has file
642 // scope and no storage-class specifier, its linkage is
643 // external.
John McCallaf146032010-10-30 11:50:40 +0000644 LinkageInfo LV;
645
John McCalld4c3d662013-02-20 01:54:26 +0000646 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000647 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000648 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000649 } else {
650 // If we're declared in a namespace with a visibility attribute,
John McCall5a758de2013-02-16 00:17:33 +0000651 // use that namespace's visibility, and it still counts as explicit.
Rafael Espindolae9836a22012-04-16 18:46:26 +0000652 for (const DeclContext *DC = D->getDeclContext();
653 !isa<TranslationUnitDecl>(DC);
654 DC = DC->getParent()) {
655 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
656 if (!ND) continue;
David Blaikiedc84cd52013-02-20 22:23:23 +0000657 if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) {
Rafael Espindola5727cf52012-04-19 02:22:07 +0000658 LV.mergeVisibility(*Vis, true);
Rafael Espindolae9836a22012-04-16 18:46:26 +0000659 break;
660 }
661 }
662 }
Rafael Espindolae9836a22012-04-16 18:46:26 +0000663
John McCall5a758de2013-02-16 00:17:33 +0000664 // Add in global settings if the above didn't give us direct visibility.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000665 if (!LV.isVisibilityExplicit()) {
John McCalla880b192013-02-19 01:57:35 +0000666 // Use global type/value visibility as appropriate.
667 Visibility globalVisibility;
668 if (computation == LVForValue) {
669 globalVisibility = Context.getLangOpts().getValueVisibilityMode();
670 } else {
671 assert(computation == LVForType);
672 globalVisibility = Context.getLangOpts().getTypeVisibilityMode();
673 }
674 LV.mergeVisibility(globalVisibility, /*explicit*/ false);
John McCall5a758de2013-02-16 00:17:33 +0000675
676 // If we're paying attention to global visibility, apply
677 // -finline-visibility-hidden if this is an inline method.
678 if (useInlineVisibilityHidden(D))
679 LV.mergeVisibility(HiddenVisibility, true);
680 }
Rafael Espindolab04b7312012-07-13 14:25:36 +0000681 }
Rafael Espindolaff257982012-04-19 02:55:01 +0000682
Douglas Gregord85b5b92009-11-25 22:24:25 +0000683 // C++ [basic.link]p4:
John McCall1fb0caa2010-10-22 21:05:15 +0000684
Douglas Gregord85b5b92009-11-25 22:24:25 +0000685 // A name having namespace scope has external linkage if it is the
686 // name of
687 //
688 // - an object or reference, unless it has internal linkage; or
689 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
John McCall110e8e52010-10-29 22:22:43 +0000690 // GCC applies the following optimization to variables and static
691 // data members, but not to functions:
692 //
John McCall1fb0caa2010-10-22 21:05:15 +0000693 // Modify the variable's LV by the LV of its type unless this is
694 // C or extern "C". This follows from [basic.link]p9:
695 // A type without linkage shall not be used as the type of a
696 // variable or function with external linkage unless
697 // - the entity has C language linkage, or
698 // - the entity is declared within an unnamed namespace, or
699 // - the entity is not used or is defined in the same
700 // translation unit.
701 // and [basic.link]p10:
702 // ...the types specified by all declarations referring to a
703 // given variable or function shall be identical...
704 // C does not have an equivalent rule.
705 //
John McCallac65c622010-10-26 04:59:26 +0000706 // Ignore this if we've got an explicit attribute; the user
707 // probably knows what they're doing.
708 //
John McCall1fb0caa2010-10-22 21:05:15 +0000709 // Note that we don't want to make the variable non-external
710 // because of this, but unique-external linkage suits us.
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +0000711 if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var)) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000712 LinkageInfo TypeLV = getLVForType(*Var->getType(), computation);
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000713 if (TypeLV.getLinkage() != ExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000714 return LinkageInfo::uniqueExternal();
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000715 if (!LV.isVisibilityExplicit())
John McCall5a758de2013-02-16 00:17:33 +0000716 LV.mergeVisibility(TypeLV);
John McCall110e8e52010-10-29 22:22:43 +0000717 }
718
John McCall35cebc32010-11-02 18:38:13 +0000719 if (Var->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000720 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000721
Rafael Espindola538fb982012-11-12 04:10:23 +0000722 // Note that Sema::MergeVarDecl already takes care of implementing
723 // C99 6.2.2p4 and propagating the visibility attribute, so we don't have
724 // to do it here.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000725
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700726 // As per function and class template specializations (below),
727 // consider LV for the template and template arguments. We're at file
728 // scope, so we do not need to worry about nested specializations.
729 if (const VarTemplateSpecializationDecl *spec
730 = dyn_cast<VarTemplateSpecializationDecl>(Var)) {
731 mergeTemplateLV(LV, spec, computation);
732 }
733
Douglas Gregord85b5b92009-11-25 22:24:25 +0000734 // - a function, unless it has internal linkage; or
John McCall1fb0caa2010-10-22 21:05:15 +0000735 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall67fa6d52010-10-28 07:07:52 +0000736 // In theory, we can modify the function's LV by the LV of its
737 // type unless it has C linkage (see comment above about variables
738 // for justification). In practice, GCC doesn't do this, so it's
739 // just too painful to make work.
John McCall1fb0caa2010-10-22 21:05:15 +0000740
John McCall35cebc32010-11-02 18:38:13 +0000741 if (Function->getStorageClass() == SC_PrivateExtern)
Rafael Espindola5727cf52012-04-19 02:22:07 +0000742 LV.mergeVisibility(HiddenVisibility, true);
John McCall35cebc32010-11-02 18:38:13 +0000743
Rafael Espindola51758612012-11-21 02:47:19 +0000744 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
745 // merging storage classes and visibility attributes, so we don't have to
746 // look at previous decls in here.
Douglas Gregord85b5b92009-11-25 22:24:25 +0000747
John McCallaf8ca372011-02-10 06:50:24 +0000748 // In C++, then if the type of the function uses a type with
749 // unique-external linkage, it's not legally usable from outside
750 // this translation unit. However, we should use the C linkage
751 // rules instead for extern "C" declarations.
David Blaikie4e4d0842012-03-11 07:00:24 +0000752 if (Context.getLangOpts().CPlusPlus &&
Richard Smithd248e582013-05-12 23:17:59 +0000753 !Function->isInExternCContext()) {
754 // Only look at the type-as-written. If this function has an auto-deduced
755 // return type, we can't compute the linkage of that type because it could
756 // require looking at the linkage of this function, and we don't need this
757 // for correctness because the type is not part of the function's
758 // signature.
Faisal Valiffc63a82013-10-08 04:15:04 +0000759 // FIXME: This is a hack. We should be able to solve this circularity and
760 // the one in getLVForClassMember for Functions some other way.
Richard Smithd248e582013-05-12 23:17:59 +0000761 QualType TypeAsWritten = Function->getType();
762 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
763 TypeAsWritten = TSI->getType();
764 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage)
765 return LinkageInfo::uniqueExternal();
766 }
John McCallaf8ca372011-02-10 06:50:24 +0000767
John McCall3892d022013-02-21 23:42:58 +0000768 // Consider LV from the template and the template arguments.
769 // We're at file scope, so we do not need to worry about nested
770 // specializations.
John McCall6ce51ee2011-06-27 23:06:04 +0000771 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000772 = Function->getTemplateSpecializationInfo()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000773 mergeTemplateLV(LV, Function, specInfo, computation);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000774 }
775
Douglas Gregord85b5b92009-11-25 22:24:25 +0000776 // - a named class (Clause 9), or an unnamed class defined in a
777 // typedef declaration in which the class has the typedef name
778 // for linkage purposes (7.1.3); or
779 // - a named enumeration (7.2), or an unnamed enumeration
780 // defined in a typedef declaration in which the enumeration
781 // has the typedef name for linkage purposes (7.1.3); or
John McCall1fb0caa2010-10-22 21:05:15 +0000782 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) {
783 // Unnamed tags have no linkage.
John McCall83972f12013-03-09 00:54:27 +0000784 if (!Tag->hasNameForLinkage())
John McCallaf146032010-10-30 11:50:40 +0000785 return LinkageInfo::none();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000786
John McCall1fb0caa2010-10-22 21:05:15 +0000787 // If this is a class template specialization, consider the
John McCall3892d022013-02-21 23:42:58 +0000788 // linkage of the template and template arguments. We're at file
789 // scope, so we do not need to worry about nested specializations.
John McCall6ce51ee2011-06-27 23:06:04 +0000790 if (const ClassTemplateSpecializationDecl *spec
John McCall1fb0caa2010-10-22 21:05:15 +0000791 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCall5a758de2013-02-16 00:17:33 +0000792 mergeTemplateLV(LV, spec, computation);
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000793 }
Douglas Gregord85b5b92009-11-25 22:24:25 +0000794
795 // - an enumerator belonging to an enumeration with external linkage;
John McCall1fb0caa2010-10-22 21:05:15 +0000796 } else if (isa<EnumConstantDecl>(D)) {
Rafael Espindola1266b612012-04-21 23:28:21 +0000797 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
John McCall5a758de2013-02-16 00:17:33 +0000798 computation);
Rafael Espindola88ce12a2013-05-27 14:14:42 +0000799 if (!isExternalFormalLinkage(EnumLV.getLinkage()))
John McCallaf146032010-10-30 11:50:40 +0000800 return LinkageInfo::none();
801 LV.merge(EnumLV);
Douglas Gregord85b5b92009-11-25 22:24:25 +0000802
803 // - a template, unless it is a function template that has
804 // internal linkage (Clause 14);
John McCall1a0918a2011-03-04 10:39:25 +0000805 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
John McCalld4c3d662013-02-20 01:54:26 +0000806 bool considerVisibility = !hasExplicitVisibilityAlready(computation);
John McCall5a758de2013-02-16 00:17:33 +0000807 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000808 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000809 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
810
Douglas Gregord85b5b92009-11-25 22:24:25 +0000811 // - a namespace (7.3), unless it is declared within an unnamed
812 // namespace.
John McCall1fb0caa2010-10-22 21:05:15 +0000813 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) {
814 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000815
John McCall1fb0caa2010-10-22 21:05:15 +0000816 // By extension, we assign external linkage to Objective-C
817 // interfaces.
818 } else if (isa<ObjCInterfaceDecl>(D)) {
819 // fallout
820
821 // Everything not covered here has no linkage.
822 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800823 // FIXME: A typedef declaration has linkage if it gives a type a name for
824 // linkage purposes.
John McCallaf146032010-10-30 11:50:40 +0000825 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +0000826 }
827
828 // If we ended up with non-external linkage, visibility should
829 // always be default.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000830 if (LV.getLinkage() != ExternalLinkage)
831 return LinkageInfo(LV.getLinkage(), DefaultVisibility, false);
John McCall1fb0caa2010-10-22 21:05:15 +0000832
John McCall1fb0caa2010-10-22 21:05:15 +0000833 return LV;
Douglas Gregord85b5b92009-11-25 22:24:25 +0000834}
835
John McCall5a758de2013-02-16 00:17:33 +0000836static LinkageInfo getLVForClassMember(const NamedDecl *D,
837 LVComputationKind computation) {
John McCall1fb0caa2010-10-22 21:05:15 +0000838 // Only certain class members have linkage. Note that fields don't
839 // really have linkage, but it's convenient to say they do for the
840 // purposes of calculating linkage of pointer-to-data-member
841 // template arguments.
Stephen Hines651f13c2014-04-23 16:59:28 -0700842 //
843 // Templates also don't officially have linkage, but since we ignore
844 // the C++ standard and look at template arguments when determining
845 // linkage and visibility of a template specialization, we might hit
846 // a template template argument that way. If we do, we need to
847 // consider its linkage.
John McCall3cdfc4d2010-08-13 08:35:10 +0000848 if (!(isa<CXXMethodDecl>(D) ||
849 isa<VarDecl>(D) ||
John McCall1fb0caa2010-10-22 21:05:15 +0000850 isa<FieldDecl>(D) ||
David Majnemer885d8bf2013-10-23 20:52:43 +0000851 isa<IndirectFieldDecl>(D) ||
Stephen Hines651f13c2014-04-23 16:59:28 -0700852 isa<TagDecl>(D) ||
853 isa<TemplateDecl>(D)))
John McCallaf146032010-10-30 11:50:40 +0000854 return LinkageInfo::none();
John McCall3cdfc4d2010-08-13 08:35:10 +0000855
John McCall36987482010-11-02 01:45:15 +0000856 LinkageInfo LV;
857
John McCall36987482010-11-02 01:45:15 +0000858 // If we have an explicit visibility attribute, merge that in.
John McCalld4c3d662013-02-20 01:54:26 +0000859 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +0000860 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation))
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000861 LV.mergeVisibility(*Vis, true);
Rafael Espindolab04b7312012-07-13 14:25:36 +0000862 // If we're paying attention to global visibility, apply
863 // -finline-visibility-hidden if this is an inline method.
864 //
865 // Note that we do this before merging information about
866 // the class visibility.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000867 if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D))
Rafael Espindolab04b7312012-07-13 14:25:36 +0000868 LV.mergeVisibility(HiddenVisibility, true);
John McCall36987482010-11-02 01:45:15 +0000869 }
Rafael Espindolac7e60602012-04-19 05:50:08 +0000870
871 // If this class member has an explicit visibility attribute, the only
872 // thing that can change its visibility is the template arguments, so
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +0000873 // only look for them when processing the class.
John McCalld4c3d662013-02-20 01:54:26 +0000874 LVComputationKind classComputation = computation;
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000875 if (LV.isVisibilityExplicit())
John McCalld4c3d662013-02-20 01:54:26 +0000876 classComputation = withExplicitVisibilityAlready(computation);
Rafael Espindola0f905902012-04-16 18:25:01 +0000877
John McCall3892d022013-02-21 23:42:58 +0000878 LinkageInfo classLV =
879 getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation);
John McCall3cdfc4d2010-08-13 08:35:10 +0000880 // If the class already has unique-external linkage, we can't improve.
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000881 if (classLV.getLinkage() == UniqueExternalLinkage)
John McCallaf146032010-10-30 11:50:40 +0000882 return LinkageInfo::uniqueExternal();
John McCall3cdfc4d2010-08-13 08:35:10 +0000883
Rafael Espindolae8328542013-05-28 02:22:10 +0000884 if (!isExternallyVisible(classLV.getLinkage()))
885 return LinkageInfo::none();
886
887
John McCall3892d022013-02-21 23:42:58 +0000888 // Otherwise, don't merge in classLV yet, because in certain cases
889 // we need to completely ignore the visibility from it.
890
891 // Specifically, if this decl exists and has an explicit attribute.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700892 const NamedDecl *explicitSpecSuppressor = nullptr;
John McCall3892d022013-02-21 23:42:58 +0000893
John McCall3cdfc4d2010-08-13 08:35:10 +0000894 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
John McCallaf8ca372011-02-10 06:50:24 +0000895 // If the type of the function uses a type with unique-external
896 // linkage, it's not legally usable from outside this translation unit.
Faisal Valiffc63a82013-10-08 04:15:04 +0000897 // But only look at the type-as-written. If this function has an auto-deduced
898 // return type, we can't compute the linkage of that type because it could
899 // require looking at the linkage of this function, and we don't need this
900 // for correctness because the type is not part of the function's
901 // signature.
902 // FIXME: This is a hack. We should be able to solve this circularity and the
903 // one in getLVForNamespaceScopeDecl for Functions some other way.
904 {
905 QualType TypeAsWritten = MD->getType();
906 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
907 TypeAsWritten = TSI->getType();
908 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage)
909 return LinkageInfo::uniqueExternal();
910 }
John McCall1fb0caa2010-10-22 21:05:15 +0000911 // If this is a method template specialization, use the linkage for
912 // the template parameters and arguments.
John McCall6ce51ee2011-06-27 23:06:04 +0000913 if (FunctionTemplateSpecializationInfo *spec
John McCall3cdfc4d2010-08-13 08:35:10 +0000914 = MD->getTemplateSpecializationInfo()) {
Rafael Espindola74caf012013-05-29 04:55:30 +0000915 mergeTemplateLV(LV, MD, spec, computation);
John McCall3892d022013-02-21 23:42:58 +0000916 if (spec->isExplicitSpecialization()) {
917 explicitSpecSuppressor = MD;
918 } else if (isExplicitMemberSpecialization(spec->getTemplate())) {
919 explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl();
920 }
921 } else if (isExplicitMemberSpecialization(MD)) {
922 explicitSpecSuppressor = MD;
John McCall66cbcf32010-11-01 01:29:57 +0000923 }
John McCall1fb0caa2010-10-22 21:05:15 +0000924
John McCall110e8e52010-10-29 22:22:43 +0000925 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
John McCall6ce51ee2011-06-27 23:06:04 +0000926 if (const ClassTemplateSpecializationDecl *spec
John McCall110e8e52010-10-29 22:22:43 +0000927 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
John McCall5a758de2013-02-16 00:17:33 +0000928 mergeTemplateLV(LV, spec, computation);
John McCall3892d022013-02-21 23:42:58 +0000929 if (spec->isExplicitSpecialization()) {
930 explicitSpecSuppressor = spec;
931 } else {
932 const ClassTemplateDecl *temp = spec->getSpecializedTemplate();
933 if (isExplicitMemberSpecialization(temp)) {
934 explicitSpecSuppressor = temp->getTemplatedDecl();
935 }
936 }
937 } else if (isExplicitMemberSpecialization(RD)) {
938 explicitSpecSuppressor = RD;
John McCall110e8e52010-10-29 22:22:43 +0000939 }
940
John McCall110e8e52010-10-29 22:22:43 +0000941 // Static data members.
942 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700943 if (const VarTemplateSpecializationDecl *spec
944 = dyn_cast<VarTemplateSpecializationDecl>(VD))
945 mergeTemplateLV(LV, spec, computation);
946
John McCallee301022010-10-30 09:18:49 +0000947 // Modify the variable's linkage by its type, but ignore the
948 // type's visibility unless it's a definition.
Rafael Espindola74caf012013-05-29 04:55:30 +0000949 LinkageInfo typeLV = getLVForType(*VD->getType(), computation);
Rafael Espindolae9808902013-05-30 21:23:15 +0000950 if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit())
951 LV.mergeVisibility(typeLV);
952 LV.mergeExternalVisibility(typeLV);
John McCall3892d022013-02-21 23:42:58 +0000953
954 if (isExplicitMemberSpecialization(VD)) {
955 explicitSpecSuppressor = VD;
956 }
John McCall5a758de2013-02-16 00:17:33 +0000957
958 // Template members.
959 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) {
960 bool considerVisibility =
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000961 (!LV.isVisibilityExplicit() &&
962 !classLV.isVisibilityExplicit() &&
John McCalld4c3d662013-02-20 01:54:26 +0000963 !hasExplicitVisibilityAlready(computation));
John McCall5a758de2013-02-16 00:17:33 +0000964 LinkageInfo tempLV =
Rafael Espindola74caf012013-05-29 04:55:30 +0000965 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCall5a758de2013-02-16 00:17:33 +0000966 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
John McCall3892d022013-02-21 23:42:58 +0000967
968 if (const RedeclarableTemplateDecl *redeclTemp =
969 dyn_cast<RedeclarableTemplateDecl>(temp)) {
970 if (isExplicitMemberSpecialization(redeclTemp)) {
971 explicitSpecSuppressor = temp->getTemplatedDecl();
972 }
973 }
John McCall110e8e52010-10-29 22:22:43 +0000974 }
975
John McCall3892d022013-02-21 23:42:58 +0000976 // We should never be looking for an attribute directly on a template.
977 assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor));
978
979 // If this member is an explicit member specialization, and it has
980 // an explicit attribute, ignore visibility from the parent.
981 bool considerClassVisibility = true;
982 if (explicitSpecSuppressor &&
Rafael Espindolaf127eb82013-02-27 02:56:45 +0000983 // optimization: hasDVA() is true only with explicit visibility.
984 LV.isVisibilityExplicit() &&
985 classLV.getVisibility() != DefaultVisibility &&
John McCall3892d022013-02-21 23:42:58 +0000986 hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) {
987 considerClassVisibility = false;
988 }
989
990 // Finally, merge in information from the class.
991 LV.mergeMaybeWithVisibility(classLV, considerClassVisibility);
John McCall1fb0caa2010-10-22 21:05:15 +0000992 return LV;
John McCall3cdfc4d2010-08-13 08:35:10 +0000993}
994
David Blaikie99ba9e32011-12-20 02:48:34 +0000995void NamedDecl::anchor() { }
996
Rafael Espindola74caf012013-05-29 04:55:30 +0000997static LinkageInfo computeLVForDecl(const NamedDecl *D,
998 LVComputationKind computation);
999
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001000bool NamedDecl::isLinkageValid() const {
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001001 if (!hasCachedLinkage())
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001002 return true;
John McCallf76b0922011-02-08 19:01:05 +00001003
Rafael Espindola74caf012013-05-29 04:55:30 +00001004 return computeLVForDecl(this, LVForLinkageOnly).getLinkage() ==
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001005 getCachedLinkage();
John McCallf76b0922011-02-08 19:01:05 +00001006}
1007
Stephen Hines176edba2014-12-01 14:53:08 -08001008ObjCStringFormatFamily NamedDecl::getObjCFStringFormattingFamily() const {
1009 StringRef name = getName();
1010 if (name.empty()) return SFF_None;
1011
1012 if (name.front() == 'C')
1013 if (name == "CFStringCreateWithFormat" ||
1014 name == "CFStringCreateWithFormatAndArguments" ||
1015 name == "CFStringAppendFormat" ||
1016 name == "CFStringAppendFormatAndArguments")
1017 return SFF_CFString;
1018 return SFF_None;
1019}
1020
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001021Linkage NamedDecl::getLinkageInternal() const {
John McCalld4c3d662013-02-20 01:54:26 +00001022 // We don't care about visibility here, so ask for the cheapest
1023 // possible visibility analysis.
Rafael Espindoladc070562013-05-28 19:43:11 +00001024 return getLVForDecl(this, LVForLinkageOnly).getLinkage();
Douglas Gregor381d34e2010-12-06 18:36:25 +00001025}
1026
John McCallaf146032010-10-30 11:50:40 +00001027LinkageInfo NamedDecl::getLinkageAndVisibility() const {
John McCall5a758de2013-02-16 00:17:33 +00001028 LVComputationKind computation =
1029 (usesTypeVisibility(this) ? LVForType : LVForValue);
Rafael Espindoladc070562013-05-28 19:43:11 +00001030 return getLVForDecl(this, computation);
John McCall0df95872010-10-29 00:29:13 +00001031}
Ted Kremenekbecc3082010-04-20 23:15:35 +00001032
Bill Wendlingb8110d42013-11-27 05:28:46 +00001033static Optional<Visibility>
1034getExplicitVisibilityAux(const NamedDecl *ND,
1035 NamedDecl::ExplicitVisibilityKind kind,
1036 bool IsMostRecent) {
1037 assert(!IsMostRecent || ND == ND->getMostRecentDecl());
1038
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001039 // Check the declaration itself first.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001040 if (Optional<Visibility> V = getVisibilityOf(ND, kind))
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001041 return V;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001042
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001043 // If this is a member class of a specialization of a class template
1044 // and the corresponding decl has explicit visibility, use that.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001045 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(ND)) {
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001046 CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
1047 if (InstantiatedFrom)
1048 return getVisibilityOf(InstantiatedFrom, kind);
1049 }
1050
1051 // If there wasn't explicit visibility there, and this is a
1052 // specialization of a class template, check for visibility
1053 // on the pattern.
1054 if (const ClassTemplateSpecializationDecl *spec
Bill Wendlingb8110d42013-11-27 05:28:46 +00001055 = dyn_cast<ClassTemplateSpecializationDecl>(ND))
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001056 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl(),
1057 kind);
1058
1059 // Use the most recent declaration.
Bill Wendling525f2f52013-12-09 02:00:10 +00001060 if (!IsMostRecent && !isa<NamespaceDecl>(ND)) {
Bill Wendlingb8110d42013-11-27 05:28:46 +00001061 const NamedDecl *MostRecent = ND->getMostRecentDecl();
1062 if (MostRecent != ND)
1063 return getExplicitVisibilityAux(MostRecent, kind, true);
1064 }
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001065
Bill Wendlingb8110d42013-11-27 05:28:46 +00001066 if (const VarDecl *Var = dyn_cast<VarDecl>(ND)) {
Rafael Espindola797105a2012-05-16 02:10:38 +00001067 if (Var->isStaticDataMember()) {
1068 VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
1069 if (InstantiatedFrom)
John McCalld4c3d662013-02-20 01:54:26 +00001070 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola797105a2012-05-16 02:10:38 +00001071 }
1072
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001073 if (const auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(Var))
1074 return getVisibilityOf(VTSD->getSpecializedTemplate()->getTemplatedDecl(),
1075 kind);
1076
David Blaikie66874fb2013-02-21 01:47:18 +00001077 return None;
Rafael Espindola797105a2012-05-16 02:10:38 +00001078 }
Rafael Espindolad3b2f0a2013-02-26 19:33:14 +00001079 // Also handle function template specializations.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001080 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001081 // If the function is a specialization of a template with an
1082 // explicit visibility attribute, use that.
1083 if (FunctionTemplateSpecializationInfo *templateInfo
1084 = fn->getTemplateSpecializationInfo())
John McCalld4c3d662013-02-20 01:54:26 +00001085 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(),
1086 kind);
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001087
Rafael Espindola860097c2012-02-23 04:17:32 +00001088 // If the function is a member of a specialization of a class template
1089 // and the corresponding decl has explicit visibility, use that.
1090 FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
1091 if (InstantiatedFrom)
John McCalld4c3d662013-02-20 01:54:26 +00001092 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola860097c2012-02-23 04:17:32 +00001093
David Blaikie66874fb2013-02-21 01:47:18 +00001094 return None;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001095 }
1096
Rafael Espindola98499012012-07-31 19:02:02 +00001097 // The visibility of a template is stored in the templated decl.
Bill Wendlingb8110d42013-11-27 05:28:46 +00001098 if (const TemplateDecl *TD = dyn_cast<TemplateDecl>(ND))
John McCalld4c3d662013-02-20 01:54:26 +00001099 return getVisibilityOf(TD->getTemplatedDecl(), kind);
Rafael Espindola98499012012-07-31 19:02:02 +00001100
David Blaikie66874fb2013-02-21 01:47:18 +00001101 return None;
Douglas Gregor4421d2b2011-03-26 12:10:19 +00001102}
1103
Bill Wendlingb8110d42013-11-27 05:28:46 +00001104Optional<Visibility>
1105NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const {
1106 return getExplicitVisibilityAux(this, kind, false);
1107}
1108
Eli Friedman07369dd2013-07-01 20:22:57 +00001109static LinkageInfo getLVForClosure(const DeclContext *DC, Decl *ContextDecl,
1110 LVComputationKind computation) {
1111 // This lambda has its linkage/visibility determined by its owner.
1112 if (ContextDecl) {
1113 if (isa<ParmVarDecl>(ContextDecl))
1114 DC = ContextDecl->getDeclContext()->getRedeclContext();
1115 else
1116 return getLVForDecl(cast<NamedDecl>(ContextDecl), computation);
1117 }
Faisal Valic6867dd2013-09-29 20:27:06 +00001118
Eli Friedman07369dd2013-07-01 20:22:57 +00001119 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC))
1120 return getLVForDecl(ND, computation);
Faisal Valic6867dd2013-09-29 20:27:06 +00001121
Eli Friedman07369dd2013-07-01 20:22:57 +00001122 return LinkageInfo::external();
1123}
1124
John McCall5a758de2013-02-16 00:17:33 +00001125static LinkageInfo getLVForLocalDecl(const NamedDecl *D,
1126 LVComputationKind computation) {
1127 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
1128 if (Function->isInAnonymousNamespace() &&
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001129 !Function->isInExternCContext())
John McCall5a758de2013-02-16 00:17:33 +00001130 return LinkageInfo::uniqueExternal();
1131
1132 // This is a "void f();" which got merged with a file static.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001133 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
John McCall5a758de2013-02-16 00:17:33 +00001134 return LinkageInfo::internal();
1135
1136 LinkageInfo LV;
John McCalld4c3d662013-02-20 01:54:26 +00001137 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +00001138 if (Optional<Visibility> Vis =
1139 getExplicitVisibility(Function, computation))
John McCall5a758de2013-02-16 00:17:33 +00001140 LV.mergeVisibility(*Vis, true);
1141 }
1142
1143 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
1144 // merging storage classes and visibility attributes, so we don't have to
1145 // look at previous decls in here.
1146
1147 return LV;
1148 }
1149
1150 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) {
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001151 if (Var->hasExternalStorage()) {
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001152 if (Var->isInAnonymousNamespace() && !Var->isInExternCContext())
John McCall5a758de2013-02-16 00:17:33 +00001153 return LinkageInfo::uniqueExternal();
1154
John McCall5a758de2013-02-16 00:17:33 +00001155 LinkageInfo LV;
1156 if (Var->getStorageClass() == SC_PrivateExtern)
1157 LV.mergeVisibility(HiddenVisibility, true);
John McCalld4c3d662013-02-20 01:54:26 +00001158 else if (!hasExplicitVisibilityAlready(computation)) {
David Blaikiedc84cd52013-02-20 22:23:23 +00001159 if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation))
John McCall5a758de2013-02-16 00:17:33 +00001160 LV.mergeVisibility(*Vis, true);
1161 }
1162
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001163 if (const VarDecl *Prev = Var->getPreviousDecl()) {
1164 LinkageInfo PrevLV = getLVForDecl(Prev, computation);
1165 if (PrevLV.getLinkage())
1166 LV.setLinkage(PrevLV.getLinkage());
1167 LV.mergeVisibility(PrevLV);
1168 }
1169
John McCall5a758de2013-02-16 00:17:33 +00001170 return LV;
1171 }
Rafael Espindola9610d772013-06-17 20:04:51 +00001172
1173 if (!Var->isStaticLocal())
1174 return LinkageInfo::none();
John McCall5a758de2013-02-16 00:17:33 +00001175 }
1176
Rafael Espindola9610d772013-06-17 20:04:51 +00001177 ASTContext &Context = D->getASTContext();
1178 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001179 return LinkageInfo::none();
1180
Eli Friedman07369dd2013-07-01 20:22:57 +00001181 const Decl *OuterD = getOutermostFuncOrBlockContext(D);
1182 if (!OuterD)
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001183 return LinkageInfo::none();
Rafael Espindolaec0d96f2013-06-04 13:43:35 +00001184
Eli Friedman07369dd2013-07-01 20:22:57 +00001185 LinkageInfo LV;
1186 if (const BlockDecl *BD = dyn_cast<BlockDecl>(OuterD)) {
1187 if (!BD->getBlockManglingNumber())
1188 return LinkageInfo::none();
Rafael Espindolaec0d96f2013-06-04 13:43:35 +00001189
Eli Friedman07369dd2013-07-01 20:22:57 +00001190 LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(),
1191 BD->getBlockManglingContextDecl(), computation);
1192 } else {
1193 const FunctionDecl *FD = cast<FunctionDecl>(OuterD);
1194 if (!FD->isInlined() &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001195 !isTemplateInstantiation(FD->getTemplateSpecializationKind()))
Eli Friedman07369dd2013-07-01 20:22:57 +00001196 return LinkageInfo::none();
1197
1198 LV = getLVForDecl(FD, computation);
1199 }
Rafael Espindolabdf2bba2013-05-27 14:50:21 +00001200 if (!isExternallyVisible(LV.getLinkage()))
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001201 return LinkageInfo::none();
1202 return LinkageInfo(VisibleNoLinkage, LV.getVisibility(),
1203 LV.isVisibilityExplicit());
John McCall5a758de2013-02-16 00:17:33 +00001204}
1205
Faisal Valide8eaa22013-10-01 02:51:53 +00001206static inline const CXXRecordDecl*
1207getOutermostEnclosingLambda(const CXXRecordDecl *Record) {
1208 const CXXRecordDecl *Ret = Record;
1209 while (Record && Record->isLambda()) {
1210 Ret = Record;
1211 if (!Record->getParent()) break;
1212 // Get the Containing Class of this Lambda Class
1213 Record = dyn_cast_or_null<CXXRecordDecl>(
1214 Record->getParent()->getParent());
1215 }
1216 return Ret;
1217}
1218
Rafael Espindoladc070562013-05-28 19:43:11 +00001219static LinkageInfo computeLVForDecl(const NamedDecl *D,
1220 LVComputationKind computation) {
Ted Kremenekbecc3082010-04-20 23:15:35 +00001221 // Objective-C: treat all Objective-C declarations as having external
1222 // linkage.
John McCall0df95872010-10-29 00:29:13 +00001223 switch (D->getKind()) {
Ted Kremenekbecc3082010-04-20 23:15:35 +00001224 default:
1225 break;
Argyrios Kyrtzidisf8d34ed2011-12-01 01:28:21 +00001226 case Decl::ParmVar:
1227 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +00001228 case Decl::TemplateTemplateParm: // count these as external
1229 case Decl::NonTypeTemplateParm:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001230 case Decl::ObjCAtDefsField:
1231 case Decl::ObjCCategory:
1232 case Decl::ObjCCategoryImpl:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001233 case Decl::ObjCCompatibleAlias:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001234 case Decl::ObjCImplementation:
Ted Kremenekbecc3082010-04-20 23:15:35 +00001235 case Decl::ObjCMethod:
1236 case Decl::ObjCProperty:
1237 case Decl::ObjCPropertyImpl:
1238 case Decl::ObjCProtocol:
John McCallaf146032010-10-30 11:50:40 +00001239 return LinkageInfo::external();
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001240
1241 case Decl::CXXRecord: {
1242 const CXXRecordDecl *Record = cast<CXXRecordDecl>(D);
1243 if (Record->isLambda()) {
1244 if (!Record->getLambdaManglingNumber()) {
1245 // This lambda has no mangling number, so it's internal.
1246 return LinkageInfo::internal();
1247 }
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001248
Faisal Valide8eaa22013-10-01 02:51:53 +00001249 // This lambda has its linkage/visibility determined:
1250 // - either by the outermost lambda if that lambda has no mangling
1251 // number.
1252 // - or by the parent of the outer most lambda
1253 // This prevents infinite recursion in settings such as nested lambdas
1254 // used in NSDMI's, for e.g.
1255 // struct L {
1256 // int t{};
1257 // int t2 = ([](int a) { return [](int b) { return b; };})(t)(t);
1258 // };
1259 const CXXRecordDecl *OuterMostLambda =
1260 getOutermostEnclosingLambda(Record);
1261 if (!OuterMostLambda->getLambdaManglingNumber())
1262 return LinkageInfo::internal();
1263
1264 return getLVForClosure(
1265 OuterMostLambda->getDeclContext()->getRedeclContext(),
1266 OuterMostLambda->getLambdaContextDecl(), computation);
Douglas Gregor5878cbc2012-02-21 04:17:39 +00001267 }
1268
1269 break;
1270 }
Ted Kremenekbecc3082010-04-20 23:15:35 +00001271 }
1272
Douglas Gregord85b5b92009-11-25 22:24:25 +00001273 // Handle linkage for namespace-scope names.
John McCall0df95872010-10-29 00:29:13 +00001274 if (D->getDeclContext()->getRedeclContext()->isFileContext())
John McCall5a758de2013-02-16 00:17:33 +00001275 return getLVForNamespaceScopeDecl(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001276
1277 // C++ [basic.link]p5:
1278 // In addition, a member function, static data member, a named
1279 // class or enumeration of class scope, or an unnamed class or
1280 // enumeration defined in a class-scope typedef declaration such
1281 // that the class or enumeration has the typedef name for linkage
1282 // purposes (7.1.3), has external linkage if the name of the class
1283 // has external linkage.
John McCall0df95872010-10-29 00:29:13 +00001284 if (D->getDeclContext()->isRecord())
John McCall5a758de2013-02-16 00:17:33 +00001285 return getLVForClassMember(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001286
1287 // C++ [basic.link]p6:
1288 // The name of a function declared in block scope and the name of
1289 // an object declared by a block scope extern declaration have
1290 // linkage. If there is a visible declaration of an entity with
1291 // linkage having the same name and type, ignoring entities
1292 // declared outside the innermost enclosing namespace scope, the
1293 // block scope declaration declares that same entity and receives
1294 // the linkage of the previous declaration. If there is more than
1295 // one such matching entity, the program is ill-formed. Otherwise,
1296 // if no matching entity is found, the block scope entity receives
1297 // external linkage.
John McCall5a758de2013-02-16 00:17:33 +00001298 if (D->getDeclContext()->isFunctionOrMethod())
1299 return getLVForLocalDecl(D, computation);
Douglas Gregord85b5b92009-11-25 22:24:25 +00001300
1301 // C++ [basic.link]p6:
1302 // Names not covered by these rules have no linkage.
John McCallaf146032010-10-30 11:50:40 +00001303 return LinkageInfo::none();
John McCall1fb0caa2010-10-22 21:05:15 +00001304}
Douglas Gregord85b5b92009-11-25 22:24:25 +00001305
Rafael Espindoladc070562013-05-28 19:43:11 +00001306namespace clang {
1307class LinkageComputer {
1308public:
1309 static LinkageInfo getLVForDecl(const NamedDecl *D,
1310 LVComputationKind computation) {
1311 if (computation == LVForLinkageOnly && D->hasCachedLinkage())
1312 return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
1313
1314 LinkageInfo LV = computeLVForDecl(D, computation);
1315 if (D->hasCachedLinkage())
1316 assert(D->getCachedLinkage() == LV.getLinkage());
1317
1318 D->setCachedLinkage(LV.getLinkage());
1319
1320#ifndef NDEBUG
1321 // In C (because of gnu inline) and in c++ with microsoft extensions an
1322 // static can follow an extern, so we can have two decls with different
1323 // linkages.
1324 const LangOptions &Opts = D->getASTContext().getLangOpts();
1325 if (!Opts.CPlusPlus || Opts.MicrosoftExt)
1326 return LV;
1327
1328 // We have just computed the linkage for this decl. By induction we know
1329 // that all other computed linkages match, check that the one we just
Stephen Hines651f13c2014-04-23 16:59:28 -07001330 // computed also does.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001331 NamedDecl *Old = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001332 for (auto I : D->redecls()) {
1333 NamedDecl *T = cast<NamedDecl>(I);
Rafael Espindoladc070562013-05-28 19:43:11 +00001334 if (T == D)
1335 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07001336 if (!T->isInvalidDecl() && T->hasCachedLinkage()) {
Rafael Espindoladc070562013-05-28 19:43:11 +00001337 Old = T;
1338 break;
1339 }
1340 }
1341 assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
1342#endif
1343
1344 return LV;
1345 }
1346};
1347}
1348
1349static LinkageInfo getLVForDecl(const NamedDecl *D,
1350 LVComputationKind computation) {
1351 return clang::LinkageComputer::getLVForDecl(D, computation);
1352}
1353
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001354std::string NamedDecl::getQualifiedNameAsString() const {
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001355 std::string QualName;
1356 llvm::raw_string_ostream OS(QualName);
Stephen Hines651f13c2014-04-23 16:59:28 -07001357 printQualifiedName(OS, getASTContext().getPrintingPolicy());
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001358 return OS.str();
1359}
1360
1361void NamedDecl::printQualifiedName(raw_ostream &OS) const {
1362 printQualifiedName(OS, getASTContext().getPrintingPolicy());
1363}
1364
1365void NamedDecl::printQualifiedName(raw_ostream &OS,
1366 const PrintingPolicy &P) const {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001367 const DeclContext *Ctx = getDeclContext();
1368
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001369 if (Ctx->isFunctionOrMethod()) {
1370 printName(OS);
1371 return;
1372 }
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001373
Chris Lattner5f9e2722011-07-23 10:55:15 +00001374 typedef SmallVector<const DeclContext *, 8> ContextsTy;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001375 ContextsTy Contexts;
1376
1377 // Collect contexts.
1378 while (Ctx && isa<NamedDecl>(Ctx)) {
1379 Contexts.push_back(Ctx);
1380 Ctx = Ctx->getParent();
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001381 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001382
1383 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
1384 I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +00001385 if (const ClassTemplateSpecializationDecl *Spec
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001386 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) {
Benjamin Kramer5eada842013-02-22 15:46:01 +00001387 OS << Spec->getName();
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001388 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Benjamin Kramer5eada842013-02-22 15:46:01 +00001389 TemplateSpecializationType::PrintTemplateArgumentList(OS,
1390 TemplateArgs.data(),
1391 TemplateArgs.size(),
1392 P);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001393 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001394 if (P.SuppressUnwrittenScope &&
1395 (ND->isAnonymousNamespace() || ND->isInline()))
1396 continue;
Sam Weinig6be11202009-12-24 23:15:03 +00001397 if (ND->isAnonymousNamespace())
Stephen Hines651f13c2014-04-23 16:59:28 -07001398 OS << "(anonymous namespace)";
Sam Weinig6be11202009-12-24 23:15:03 +00001399 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001400 OS << *ND;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001401 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) {
1402 if (!RD->getIdentifier())
Stephen Hines651f13c2014-04-23 16:59:28 -07001403 OS << "(anonymous " << RD->getKindName() << ')';
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001404 else
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001405 OS << *RD;
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001406 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001407 const FunctionProtoType *FT = nullptr;
Sam Weinig3521d012009-12-28 03:19:38 +00001408 if (FD->hasWrittenPrototype())
Eli Friedman482466b2012-08-30 22:22:09 +00001409 FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
Sam Weinig3521d012009-12-28 03:19:38 +00001410
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001411 OS << *FD << '(';
Sam Weinig3521d012009-12-28 03:19:38 +00001412 if (FT) {
Sam Weinig3521d012009-12-28 03:19:38 +00001413 unsigned NumParams = FD->getNumParams();
1414 for (unsigned i = 0; i < NumParams; ++i) {
1415 if (i)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001416 OS << ", ";
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +00001417 OS << FD->getParamDecl(i)->getType().stream(P);
Sam Weinig3521d012009-12-28 03:19:38 +00001418 }
1419
1420 if (FT->isVariadic()) {
1421 if (NumParams > 0)
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001422 OS << ", ";
1423 OS << "...";
Sam Weinig3521d012009-12-28 03:19:38 +00001424 }
1425 }
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001426 OS << ')';
1427 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001428 OS << *cast<NamedDecl>(*I);
Benjamin Kramer68eebbb2010-04-28 14:33:51 +00001429 }
1430 OS << "::";
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001431 }
1432
John McCall8472af42010-03-16 21:48:18 +00001433 if (getDeclName())
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001434 OS << *this;
John McCall8472af42010-03-16 21:48:18 +00001435 else
Stephen Hines651f13c2014-04-23 16:59:28 -07001436 OS << "(anonymous)";
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001437}
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001438
Benjamin Kramerb063ef02013-02-23 13:53:57 +00001439void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
1440 const PrintingPolicy &Policy,
1441 bool Qualified) const {
1442 if (Qualified)
1443 printQualifiedName(OS, Policy);
1444 else
1445 printName(OS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001446}
1447
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001448static bool isKindReplaceableBy(Decl::Kind OldK, Decl::Kind NewK) {
1449 // For method declarations, we never replace.
1450 if (ObjCMethodDecl::classofKind(NewK))
1451 return false;
1452
1453 if (OldK == NewK)
1454 return true;
1455
1456 // A compatibility alias for a class can be replaced by an interface.
1457 if (ObjCCompatibleAliasDecl::classofKind(OldK) &&
1458 ObjCInterfaceDecl::classofKind(NewK))
1459 return true;
1460
1461 // A typedef-declaration, alias-declaration, or Objective-C class declaration
1462 // can replace another declaration of the same type. Semantic analysis checks
1463 // that we have matching types.
1464 if ((TypedefNameDecl::classofKind(OldK) ||
1465 ObjCInterfaceDecl::classofKind(OldK)) &&
1466 (TypedefNameDecl::classofKind(NewK) ||
1467 ObjCInterfaceDecl::classofKind(NewK)))
1468 return true;
1469
1470 // Otherwise, a kind mismatch implies that the declaration is not replaced.
1471 return false;
1472}
1473
1474template<typename T> static bool isRedeclarableImpl(Redeclarable<T> *) {
1475 return true;
1476}
1477static bool isRedeclarableImpl(...) { return false; }
1478static bool isRedeclarable(Decl::Kind K) {
1479 switch (K) {
1480#define DECL(Type, Base) \
1481 case Decl::Type: \
1482 return isRedeclarableImpl((Type##Decl *)nullptr);
1483#define ABSTRACT_DECL(DECL)
1484#include "clang/AST/DeclNodes.inc"
1485 }
1486 llvm_unreachable("unknown decl kind");
1487}
1488
1489bool NamedDecl::declarationReplaces(NamedDecl *OldD, bool IsKnownNewer) const {
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001490 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
1491
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001492 // Never replace one imported declaration with another; we need both results
1493 // when re-exporting.
1494 if (OldD->isFromASTFile() && isFromASTFile())
1495 return false;
1496
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001497 if (!isKindReplaceableBy(OldD->getKind(), getKind()))
1498 return false;
1499
1500 // Inline namespaces can give us two declarations with the same
1501 // name and kind in the same scope but different contexts; we should
1502 // keep both declarations in this case.
1503 if (!this->getDeclContext()->getRedeclContext()->Equals(
1504 OldD->getDeclContext()->getRedeclContext()))
1505 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001506
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001507 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
1508 // For function declarations, we keep track of redeclarations.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001509 // FIXME: This returns false for functions that should in fact be replaced.
1510 // Instead, perform some kind of type check?
1511 if (FD->getPreviousDecl() != OldD)
1512 return false;
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001513
Douglas Gregore53060f2009-06-25 22:08:12 +00001514 // For function templates, the underlying function declarations are linked.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001515 if (const FunctionTemplateDecl *FunctionTemplate =
1516 dyn_cast<FunctionTemplateDecl>(this))
1517 return FunctionTemplate->getTemplatedDecl()->declarationReplaces(
1518 cast<FunctionTemplateDecl>(OldD)->getTemplatedDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001519
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001520 // Using shadow declarations can be overloaded on their target declarations
1521 // if they introduce functions.
1522 // FIXME: If our target replaces the old target, can we replace the old
1523 // shadow declaration?
1524 if (auto *USD = dyn_cast<UsingShadowDecl>(this))
1525 if (USD->getTargetDecl() != cast<UsingShadowDecl>(OldD)->getTargetDecl())
1526 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001527
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001528 // Using declarations can be overloaded if they introduce functions.
1529 if (auto *UD = dyn_cast<UsingDecl>(this)) {
Douglas Gregordc355712011-02-25 00:36:19 +00001530 ASTContext &Context = getASTContext();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001531 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
Douglas Gregordc355712011-02-25 00:36:19 +00001532 Context.getCanonicalNestedNameSpecifier(
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001533 cast<UsingDecl>(OldD)->getQualifier());
Douglas Gregordc355712011-02-25 00:36:19 +00001534 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001535 if (auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) {
Eli Friedman13b572c2013-08-20 00:39:40 +00001536 ASTContext &Context = getASTContext();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001537 return Context.getCanonicalNestedNameSpecifier(UUVD->getQualifier()) ==
Eli Friedman13b572c2013-08-20 00:39:40 +00001538 Context.getCanonicalNestedNameSpecifier(
1539 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
1540 }
1541
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001542 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name.
1543 // We want to keep it, unless it nominates same namespace.
1544 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this))
1545 return UD->getNominatedNamespace()->getOriginalNamespace() ==
1546 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace()
1547 ->getOriginalNamespace();
Stephen Hines651f13c2014-04-23 16:59:28 -07001548
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001549 if (!IsKnownNewer && isRedeclarable(getKind())) {
1550 // Check whether this is actually newer than OldD. We want to keep the
1551 // newer declaration. This loop will usually only iterate once, because
1552 // OldD is usually the previous declaration.
1553 for (auto D : redecls()) {
1554 if (D == OldD)
1555 break;
1556
1557 // If we reach the canonical declaration, then OldD is not actually older
1558 // than this one.
1559 //
1560 // FIXME: In this case, we should not add this decl to the lookup table.
1561 if (D->isCanonicalDecl())
1562 return false;
1563 }
1564 }
1565
1566 // It's a newer declaration of the same kind of declaration in the same scope,
1567 // and not an overload: we want this decl instead of the existing one.
1568 return true;
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001569}
1570
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00001571bool NamedDecl::hasLinkage() const {
Rafael Espindolaa99ecbc2013-05-25 17:16:20 +00001572 return getFormalLinkage() != NoLinkage;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00001573}
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001574
Daniel Dunbar6daffa52012-03-08 18:20:41 +00001575NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
Anders Carlssone136e0e2009-06-26 06:29:23 +00001576 NamedDecl *ND = this;
Benjamin Kramer56757e92012-03-08 21:00:45 +00001577 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND))
1578 ND = UD->getTargetDecl();
1579
1580 if (ObjCCompatibleAliasDecl *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
1581 return AD->getClassInterface();
1582
1583 return ND;
Anders Carlssone136e0e2009-06-26 06:29:23 +00001584}
1585
John McCall161755a2010-04-06 21:38:20 +00001586bool NamedDecl::isCXXInstanceMember() const {
Douglas Gregor5bc37f62012-03-08 02:08:05 +00001587 if (!isCXXClassMember())
1588 return false;
1589
John McCall161755a2010-04-06 21:38:20 +00001590 const NamedDecl *D = this;
1591 if (isa<UsingShadowDecl>(D))
1592 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1593
John McCall76da55d2013-04-16 07:28:30 +00001594 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
John McCall161755a2010-04-06 21:38:20 +00001595 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -07001596 if (const CXXMethodDecl *MD =
1597 dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()))
1598 return MD->isInstance();
John McCall161755a2010-04-06 21:38:20 +00001599 return false;
1600}
1601
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00001602//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001603// DeclaratorDecl Implementation
1604//===----------------------------------------------------------------------===//
1605
Douglas Gregor1693e152010-07-06 18:42:40 +00001606template <typename DeclT>
1607static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
1608 if (decl->getNumTemplateParameterLists() > 0)
1609 return decl->getTemplateParameterList(0)->getTemplateLoc();
1610 else
1611 return decl->getInnerLocStart();
1612}
1613
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001614SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCall4e449832010-05-28 23:32:21 +00001615 TypeSourceInfo *TSI = getTypeSourceInfo();
1616 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001617 return SourceLocation();
1618}
1619
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001620void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1621 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00001622 // Make sure the extended decl info is allocated.
1623 if (!hasExtInfo()) {
1624 // Save (non-extended) type source info pointer.
1625 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1626 // Allocate external info struct.
1627 DeclInfo = new (getASTContext()) ExtInfo;
1628 // Restore savedTInfo into (extended) decl info.
1629 getExtInfo()->TInfo = savedTInfo;
1630 }
1631 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001632 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00001633 } else {
John McCallb6217662010-03-15 10:12:16 +00001634 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00001635 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001636 if (getExtInfo()->NumTemplParamLists == 0) {
1637 // Save type source info pointer.
1638 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1639 // Deallocate the extended decl info.
1640 getASTContext().Deallocate(getExtInfo());
1641 // Restore savedTInfo into (non-extended) decl info.
1642 DeclInfo = savedTInfo;
1643 }
1644 else
1645 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00001646 }
1647 }
1648}
1649
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00001650void
1651DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context,
1652 unsigned NumTPLists,
1653 TemplateParameterList **TPLists) {
1654 assert(NumTPLists > 0);
1655 // Make sure the extended decl info is allocated.
1656 if (!hasExtInfo()) {
1657 // Save (non-extended) type source info pointer.
1658 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1659 // Allocate external info struct.
1660 DeclInfo = new (getASTContext()) ExtInfo;
1661 // Restore savedTInfo into (extended) decl info.
1662 getExtInfo()->TInfo = savedTInfo;
1663 }
1664 // Set the template parameter lists info.
1665 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
1666}
1667
Douglas Gregor1693e152010-07-06 18:42:40 +00001668SourceLocation DeclaratorDecl::getOuterLocStart() const {
1669 return getTemplateOrInnerLocStart(this);
1670}
1671
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001672namespace {
1673
1674// Helper function: returns true if QT is or contains a type
1675// having a postfix component.
1676bool typeIsPostfix(clang::QualType QT) {
1677 while (true) {
1678 const Type* T = QT.getTypePtr();
1679 switch (T->getTypeClass()) {
1680 default:
1681 return false;
1682 case Type::Pointer:
1683 QT = cast<PointerType>(T)->getPointeeType();
1684 break;
1685 case Type::BlockPointer:
1686 QT = cast<BlockPointerType>(T)->getPointeeType();
1687 break;
1688 case Type::MemberPointer:
1689 QT = cast<MemberPointerType>(T)->getPointeeType();
1690 break;
1691 case Type::LValueReference:
1692 case Type::RValueReference:
1693 QT = cast<ReferenceType>(T)->getPointeeType();
1694 break;
1695 case Type::PackExpansion:
1696 QT = cast<PackExpansionType>(T)->getPattern();
1697 break;
1698 case Type::Paren:
1699 case Type::ConstantArray:
1700 case Type::DependentSizedArray:
1701 case Type::IncompleteArray:
1702 case Type::VariableArray:
1703 case Type::FunctionProto:
1704 case Type::FunctionNoProto:
1705 return true;
1706 }
1707 }
1708}
1709
1710} // namespace
1711
1712SourceRange DeclaratorDecl::getSourceRange() const {
1713 SourceLocation RangeEnd = getLocation();
1714 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001715 // If the declaration has no name or the type extends past the name take the
1716 // end location of the type.
1717 if (!getDeclName() || typeIsPostfix(TInfo->getType()))
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001718 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1719 }
1720 return SourceRange(getOuterLocStart(), RangeEnd);
1721}
1722
Abramo Bagnara9b934882010-06-12 08:15:14 +00001723void
Douglas Gregorc722ea42010-06-15 17:44:38 +00001724QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context,
1725 unsigned NumTPLists,
Abramo Bagnara9b934882010-06-12 08:15:14 +00001726 TemplateParameterList **TPLists) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001727 assert((NumTPLists == 0 || TPLists != nullptr) &&
Abramo Bagnara9b934882010-06-12 08:15:14 +00001728 "Empty array of template parameters with positive size!");
Abramo Bagnara9b934882010-06-12 08:15:14 +00001729
1730 // Free previous template parameters (if any).
1731 if (NumTemplParamLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001732 Context.Deallocate(TemplParamLists);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001733 TemplParamLists = nullptr;
Abramo Bagnara9b934882010-06-12 08:15:14 +00001734 NumTemplParamLists = 0;
1735 }
1736 // Set info on matched template parameter lists (if any).
1737 if (NumTPLists > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +00001738 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Abramo Bagnara9b934882010-06-12 08:15:14 +00001739 NumTemplParamLists = NumTPLists;
1740 for (unsigned i = NumTPLists; i-- > 0; )
1741 TemplParamLists[i] = TPLists[i];
1742 }
1743}
1744
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001745//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001746// VarDecl Implementation
1747//===----------------------------------------------------------------------===//
1748
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001749const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1750 switch (SC) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00001751 case SC_None: break;
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001752 case SC_Auto: return "auto";
1753 case SC_Extern: return "extern";
1754 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>";
1755 case SC_PrivateExtern: return "__private_extern__";
1756 case SC_Register: return "register";
1757 case SC_Static: return "static";
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001758 }
1759
Peter Collingbourne8be0c742011-09-20 12:40:26 +00001760 llvm_unreachable("Invalid storage class");
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001761}
1762
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001763VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
1764 SourceLocation StartLoc, SourceLocation IdLoc,
1765 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1766 StorageClass SC)
1767 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
1768 redeclarable_base(C), Init() {
Stephen Hines651f13c2014-04-23 16:59:28 -07001769 static_assert(sizeof(VarDeclBitfields) <= sizeof(unsigned),
1770 "VarDeclBitfields too large!");
1771 static_assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned),
1772 "ParmVarDeclBitfields too large!");
Larisse Voufoef4579c2013-08-06 01:03:05 +00001773 AllBits = 0;
1774 VarDeclBits.SClass = SC;
1775 // Everything else is implicitly initialized to false.
1776}
1777
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001778VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1779 SourceLocation StartL, SourceLocation IdL,
John McCalla93c9342009-12-07 02:54:59 +00001780 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001781 StorageClass S) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001782 return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
Nuno Lopes99f06ba2008-12-17 23:39:55 +00001783}
1784
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001785VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001786 return new (C, ID)
1787 VarDecl(Var, C, nullptr, SourceLocation(), SourceLocation(), nullptr,
1788 QualType(), nullptr, SC_None);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001789}
1790
Douglas Gregor381d34e2010-12-06 18:36:25 +00001791void VarDecl::setStorageClass(StorageClass SC) {
1792 assert(isLegalForVariable(SC));
John McCallf1e4fbf2011-05-01 02:13:58 +00001793 VarDeclBits.SClass = SC;
Douglas Gregor381d34e2010-12-06 18:36:25 +00001794}
1795
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001796VarDecl::TLSKind VarDecl::getTLSKind() const {
1797 switch (VarDeclBits.TSCSpec) {
1798 case TSCS_unspecified:
1799 if (hasAttr<ThreadAttr>())
1800 return TLS_Static;
1801 return TLS_None;
1802 case TSCS___thread: // Fall through.
1803 case TSCS__Thread_local:
1804 return TLS_Static;
1805 case TSCS_thread_local:
1806 return TLS_Dynamic;
1807 }
1808 llvm_unreachable("Unknown thread storage class specifier!");
1809}
1810
Douglas Gregor1693e152010-07-06 18:42:40 +00001811SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidisd69f31c2012-10-08 23:08:41 +00001812 if (const Expr *Init = getInit()) {
1813 SourceLocation InitEnd = Init->getLocEnd();
Nico Weber3a344f92013-01-22 17:00:09 +00001814 // If Init is implicit, ignore its source range and fallback on
1815 // DeclaratorDecl::getSourceRange() to handle postfix elements.
1816 if (InitEnd.isValid() && InitEnd != getLocation())
Argyrios Kyrtzidisd69f31c2012-10-08 23:08:41 +00001817 return SourceRange(getOuterLocStart(), InitEnd);
1818 }
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001819 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00001820}
1821
Rafael Espindola7ac928b2013-01-04 21:18:45 +00001822template<typename T>
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001823static LanguageLinkage getDeclLanguageLinkage(const T &D) {
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001824 // C++ [dcl.link]p1: All function types, function names with external linkage,
1825 // and variable names with external linkage have a language linkage.
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001826 if (!D.hasExternalFormalLinkage())
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001827 return NoLanguageLinkage;
1828
1829 // Language linkage is a C++ concept, but saying that everything else in C has
Rafael Espindola2b721f52013-01-04 20:41:40 +00001830 // C language linkage fits the implementation nicely.
Rafael Espindola78eeba82012-12-28 14:21:58 +00001831 ASTContext &Context = D.getASTContext();
1832 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindola950fee22013-02-14 01:18:37 +00001833 return CLanguageLinkage;
1834
Rafael Espindolad2fdd422013-02-14 01:47:04 +00001835 // C++ [dcl.link]p4: A C language linkage is ignored in determining the
1836 // language linkage of the names of class members and the function type of
1837 // class member functions.
Rafael Espindola78eeba82012-12-28 14:21:58 +00001838 const DeclContext *DC = D.getDeclContext();
1839 if (DC->isRecord())
Rafael Espindola950fee22013-02-14 01:18:37 +00001840 return CXXLanguageLinkage;
Rafael Espindola78eeba82012-12-28 14:21:58 +00001841
1842 // If the first decl is in an extern "C" context, any other redeclaration
1843 // will have C language linkage. If the first one is not in an extern "C"
1844 // context, we would have reported an error for any other decl being in one.
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001845 if (isFirstInExternCContext(&D))
Rafael Espindola950fee22013-02-14 01:18:37 +00001846 return CLanguageLinkage;
1847 return CXXLanguageLinkage;
Rafael Espindola78eeba82012-12-28 14:21:58 +00001848}
1849
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001850template<typename T>
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001851static bool isDeclExternC(const T &D) {
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001852 // Since the context is ignored for class members, they can only have C++
1853 // language linkage or no language linkage.
1854 const DeclContext *DC = D.getDeclContext();
1855 if (DC->isRecord()) {
1856 assert(D.getASTContext().getLangOpts().CPlusPlus);
1857 return false;
1858 }
1859
1860 return D.getLanguageLinkage() == CLanguageLinkage;
1861}
1862
Rafael Espindola950fee22013-02-14 01:18:37 +00001863LanguageLinkage VarDecl::getLanguageLinkage() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001864 return getDeclLanguageLinkage(*this);
Rafael Espindola78eeba82012-12-28 14:21:58 +00001865}
1866
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001867bool VarDecl::isExternC() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001868 return isDeclExternC(*this);
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001869}
1870
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001871bool VarDecl::isInExternCContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00001872 return getLexicalDeclContext()->isExternCContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001873}
1874
1875bool VarDecl::isInExternCXXContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00001876 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00001877}
1878
Rafael Espindolabc650912013-10-17 15:37:26 +00001879VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001880
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001881VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition(
1882 ASTContext &C) const
1883{
Sebastian Redle9d12b62010-01-31 22:27:38 +00001884 // C++ [basic.def]p2:
1885 // A declaration is a definition unless [...] it contains the 'extern'
1886 // specifier or a linkage-specification and neither an initializer [...],
1887 // it declares a static data member in a class declaration [...].
Richard Smithd0629eb2013-09-27 20:14:12 +00001888 // C++1y [temp.expl.spec]p15:
1889 // An explicit specialization of a static data member or an explicit
1890 // specialization of a static data member template is a definition if the
1891 // declaration includes an initializer; otherwise, it is a declaration.
1892 //
1893 // FIXME: How do you declare (but not define) a partial specialization of
1894 // a static data member template outside the containing class?
Sebastian Redle9d12b62010-01-31 22:27:38 +00001895 if (isStaticDataMember()) {
Richard Smithd0629eb2013-09-27 20:14:12 +00001896 if (isOutOfLine() &&
1897 (hasInit() ||
1898 // If the first declaration is out-of-line, this may be an
1899 // instantiation of an out-of-line partial specialization of a variable
1900 // template for which we have not yet instantiated the initializer.
Rafael Espindolabc650912013-10-17 15:37:26 +00001901 (getFirstDecl()->isOutOfLine()
Richard Smithd0629eb2013-09-27 20:14:12 +00001902 ? getTemplateSpecializationKind() == TSK_Undeclared
1903 : getTemplateSpecializationKind() !=
1904 TSK_ExplicitSpecialization) ||
1905 isa<VarTemplatePartialSpecializationDecl>(this)))
Sebastian Redle9d12b62010-01-31 22:27:38 +00001906 return Definition;
1907 else
1908 return DeclarationOnly;
1909 }
1910 // C99 6.7p5:
1911 // A definition of an identifier is a declaration for that identifier that
1912 // [...] causes storage to be reserved for that object.
1913 // Note: that applies for all non-file-scope objects.
1914 // C99 6.9.2p1:
1915 // If the declaration of an identifier for an object has file scope and an
1916 // initializer, the declaration is an external definition for the identifier
1917 if (hasInit())
1918 return Definition;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001919
Rafael Espindolab1c0e202013-10-22 21:39:03 +00001920 if (hasAttr<AliasAttr>())
1921 return Definition;
1922
Richard Smithd0629eb2013-09-27 20:14:12 +00001923 // A variable template specialization (other than a static data member
1924 // template or an explicit specialization) is a declaration until we
1925 // instantiate its initializer.
1926 if (isa<VarTemplateSpecializationDecl>(this) &&
1927 getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
1928 return DeclarationOnly;
1929
Sebastian Redle9d12b62010-01-31 22:27:38 +00001930 if (hasExternalStorage())
1931 return DeclarationOnly;
Rafael Espindola37783002013-03-07 01:42:44 +00001932
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001933 // [dcl.link] p7:
1934 // A declaration directly contained in a linkage-specification is treated
1935 // as if it contains the extern specifier for the purpose of determining
1936 // the linkage of the declared name and whether it is a definition.
Stephen Hines651f13c2014-04-23 16:59:28 -07001937 if (isSingleLineLanguageLinkage(*this))
Rafael Espindolae5e575d2013-04-26 01:30:23 +00001938 return DeclarationOnly;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00001939
Sebastian Redle9d12b62010-01-31 22:27:38 +00001940 // C99 6.9.2p2:
1941 // A declaration of an object that has file scope without an initializer,
1942 // and without a storage class specifier or the scs 'static', constitutes
1943 // a tentative definition.
1944 // No such thing in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00001945 if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
Sebastian Redle9d12b62010-01-31 22:27:38 +00001946 return TentativeDefinition;
1947
1948 // What's left is (in C, block-scope) declarations without initializers or
1949 // external storage. These are definitions.
1950 return Definition;
1951}
1952
Sebastian Redle9d12b62010-01-31 22:27:38 +00001953VarDecl *VarDecl::getActingDefinition() {
1954 DefinitionKind Kind = isThisDeclarationADefinition();
1955 if (Kind != TentativeDefinition)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001956 return nullptr;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001957
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001958 VarDecl *LastTentative = nullptr;
Rafael Espindolabc650912013-10-17 15:37:26 +00001959 VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001960 for (auto I : First->redecls()) {
1961 Kind = I->isThisDeclarationADefinition();
Sebastian Redle9d12b62010-01-31 22:27:38 +00001962 if (Kind == Definition)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001963 return nullptr;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001964 else if (Kind == TentativeDefinition)
Stephen Hines651f13c2014-04-23 16:59:28 -07001965 LastTentative = I;
Sebastian Redle9d12b62010-01-31 22:27:38 +00001966 }
1967 return LastTentative;
1968}
1969
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001970VarDecl *VarDecl::getDefinition(ASTContext &C) {
Rafael Espindolabc650912013-10-17 15:37:26 +00001971 VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001972 for (auto I : First->redecls()) {
1973 if (I->isThisDeclarationADefinition(C) == Definition)
1974 return I;
Sebastian Redl31310a22010-02-01 20:16:42 +00001975 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001976 return nullptr;
Sebastian Redl31310a22010-02-01 20:16:42 +00001977}
1978
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00001979VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
John McCall110e8e52010-10-29 22:22:43 +00001980 DefinitionKind Kind = DeclarationOnly;
1981
Rafael Espindolabc650912013-10-17 15:37:26 +00001982 const VarDecl *First = getFirstDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -07001983 for (auto I : First->redecls()) {
1984 Kind = std::max(Kind, I->isThisDeclarationADefinition(C));
Daniel Dunbar047da192012-03-06 23:52:46 +00001985 if (Kind == Definition)
1986 break;
1987 }
John McCall110e8e52010-10-29 22:22:43 +00001988
1989 return Kind;
1990}
1991
Sebastian Redl31310a22010-02-01 20:16:42 +00001992const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001993 for (auto I : redecls()) {
1994 if (auto Expr = I->getInit()) {
1995 D = I;
1996 return Expr;
1997 }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00001998 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001999 return nullptr;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002000}
2001
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002002bool VarDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00002003 if (Decl::isOutOfLine())
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002004 return true;
Chandler Carruth8761d682010-02-21 07:08:09 +00002005
2006 if (!isStaticDataMember())
2007 return false;
2008
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002009 // If this static data member was instantiated from a static data member of
2010 // a class template, check whether that static data member was defined
2011 // out-of-line.
2012 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
2013 return VD->isOutOfLine();
2014
2015 return false;
2016}
2017
Douglas Gregor0d035142009-10-27 18:42:08 +00002018VarDecl *VarDecl::getOutOfLineDefinition() {
2019 if (!isStaticDataMember())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002020 return nullptr;
2021
Stephen Hines651f13c2014-04-23 16:59:28 -07002022 for (auto RD : redecls()) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002023 if (RD->getLexicalDeclContext()->isFileContext())
Stephen Hines651f13c2014-04-23 16:59:28 -07002024 return RD;
Douglas Gregor0d035142009-10-27 18:42:08 +00002025 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002026
2027 return nullptr;
Douglas Gregor0d035142009-10-27 18:42:08 +00002028}
2029
Douglas Gregor838db382010-02-11 01:19:42 +00002030void VarDecl::setInit(Expr *I) {
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002031 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
2032 Eval->~EvaluatedStmt();
Douglas Gregor838db382010-02-11 01:19:42 +00002033 getASTContext().Deallocate(Eval);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002034 }
2035
2036 Init = I;
2037}
2038
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00002039bool VarDecl::isUsableInConstantExpressions(ASTContext &C) const {
David Blaikie4e4d0842012-03-11 07:00:24 +00002040 const LangOptions &Lang = C.getLangOpts();
Richard Smith1d238ea2011-12-21 02:55:12 +00002041
Richard Smith16581332012-03-02 04:14:40 +00002042 if (!Lang.CPlusPlus)
2043 return false;
2044
2045 // In C++11, any variable of reference type can be used in a constant
2046 // expression if it is initialized by a constant expression.
Richard Smith80ad52f2013-01-02 11:42:31 +00002047 if (Lang.CPlusPlus11 && getType()->isReferenceType())
Richard Smith16581332012-03-02 04:14:40 +00002048 return true;
2049
2050 // Only const objects can be used in constant expressions in C++. C++98 does
Richard Smith1d238ea2011-12-21 02:55:12 +00002051 // not require the variable to be non-volatile, but we consider this to be a
2052 // defect.
Richard Smith16581332012-03-02 04:14:40 +00002053 if (!getType().isConstQualified() || getType().isVolatileQualified())
Richard Smith1d238ea2011-12-21 02:55:12 +00002054 return false;
2055
2056 // In C++, const, non-volatile variables of integral or enumeration types
2057 // can be used in constant expressions.
2058 if (getType()->isIntegralOrEnumerationType())
2059 return true;
2060
Richard Smith16581332012-03-02 04:14:40 +00002061 // Additionally, in C++11, non-volatile constexpr variables can be used in
2062 // constant expressions.
Richard Smith80ad52f2013-01-02 11:42:31 +00002063 return Lang.CPlusPlus11 && isConstexpr();
Richard Smith1d238ea2011-12-21 02:55:12 +00002064}
2065
Richard Smith099e7f62011-12-19 06:19:21 +00002066/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
2067/// form, which contains extra information on the evaluated value of the
2068/// initializer.
2069EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
2070 EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>();
2071 if (!Eval) {
2072 Stmt *S = Init.get<Stmt *>();
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002073 // Note: EvaluatedStmt contains an APValue, which usually holds
2074 // resources not allocated from the ASTContext. We need to do some
2075 // work to avoid leaking those, but we do so in VarDecl::evaluateValue
2076 // where we can detect whether there's anything to clean up or not.
Richard Smith099e7f62011-12-19 06:19:21 +00002077 Eval = new (getASTContext()) EvaluatedStmt;
2078 Eval->Value = S;
2079 Init = Eval;
2080 }
2081 return Eval;
2082}
2083
Richard Smith2d6a5672012-01-14 04:30:29 +00002084APValue *VarDecl::evaluateValue() const {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002085 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith2d6a5672012-01-14 04:30:29 +00002086 return evaluateValue(Notes);
2087}
2088
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002089namespace {
2090// Destroy an APValue that was allocated in an ASTContext.
2091void DestroyAPValue(void* UntypedValue) {
2092 static_cast<APValue*>(UntypedValue)->~APValue();
2093}
2094} // namespace
2095
Richard Smith2d6a5672012-01-14 04:30:29 +00002096APValue *VarDecl::evaluateValue(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002097 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smith099e7f62011-12-19 06:19:21 +00002098 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2099
2100 // We only produce notes indicating why an initializer is non-constant the
2101 // first time it is evaluated. FIXME: The notes won't always be emitted the
2102 // first time we try evaluation, so might not be produced at all.
2103 if (Eval->WasEvaluated)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002104 return Eval->Evaluated.isUninit() ? nullptr : &Eval->Evaluated;
Richard Smith099e7f62011-12-19 06:19:21 +00002105
2106 const Expr *Init = cast<Expr>(Eval->Value);
2107 assert(!Init->isValueDependent());
2108
2109 if (Eval->IsEvaluating) {
2110 // FIXME: Produce a diagnostic for self-initialization.
2111 Eval->CheckedICE = true;
2112 Eval->IsICE = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002113 return nullptr;
Richard Smith099e7f62011-12-19 06:19:21 +00002114 }
2115
2116 Eval->IsEvaluating = true;
2117
2118 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
2119 this, Notes);
2120
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002121 // Ensure the computed APValue is cleaned up later if evaluation succeeded,
2122 // or that it's empty (so that there's nothing to clean up) if evaluation
2123 // failed.
Richard Smith099e7f62011-12-19 06:19:21 +00002124 if (!Result)
2125 Eval->Evaluated = APValue();
Manuel Klimekf0f353b2013-06-03 13:51:33 +00002126 else if (Eval->Evaluated.needsCleanup())
2127 getASTContext().AddDeallocation(DestroyAPValue, &Eval->Evaluated);
Richard Smith099e7f62011-12-19 06:19:21 +00002128
2129 Eval->IsEvaluating = false;
2130 Eval->WasEvaluated = true;
2131
2132 // In C++11, we have determined whether the initializer was a constant
2133 // expression as a side-effect.
Richard Smith80ad52f2013-01-02 11:42:31 +00002134 if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) {
Richard Smith099e7f62011-12-19 06:19:21 +00002135 Eval->CheckedICE = true;
Eli Friedman210386e2012-02-06 21:50:18 +00002136 Eval->IsICE = Result && Notes.empty();
Richard Smith099e7f62011-12-19 06:19:21 +00002137 }
2138
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002139 return Result ? &Eval->Evaluated : nullptr;
Richard Smith099e7f62011-12-19 06:19:21 +00002140}
2141
2142bool VarDecl::checkInitIsICE() const {
John McCall73076432012-01-05 00:13:19 +00002143 // Initializers of weak variables are never ICEs.
2144 if (isWeak())
2145 return false;
2146
Richard Smith099e7f62011-12-19 06:19:21 +00002147 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2148 if (Eval->CheckedICE)
2149 // We have already checked whether this subexpression is an
2150 // integral constant expression.
2151 return Eval->IsICE;
2152
2153 const Expr *Init = cast<Expr>(Eval->Value);
2154 assert(!Init->isValueDependent());
2155
2156 // In C++11, evaluate the initializer to check whether it's a constant
2157 // expression.
Richard Smith80ad52f2013-01-02 11:42:31 +00002158 if (getASTContext().getLangOpts().CPlusPlus11) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002159 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith099e7f62011-12-19 06:19:21 +00002160 evaluateValue(Notes);
2161 return Eval->IsICE;
2162 }
2163
2164 // It's an ICE whether or not the definition we found is
2165 // out-of-line. See DR 721 and the discussion in Clang PR
2166 // 6206 for details.
2167
2168 if (Eval->CheckingICE)
2169 return false;
2170 Eval->CheckingICE = true;
2171
2172 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
2173 Eval->CheckingICE = false;
2174 Eval->CheckedICE = true;
2175 return Eval->IsICE;
2176}
2177
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002178VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002179 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002180 return cast<VarDecl>(MSI->getInstantiatedFrom());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002181
2182 return nullptr;
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002183}
2184
Douglas Gregor663b5a02009-10-14 20:14:33 +00002185TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Larisse Voufoef4579c2013-08-06 01:03:05 +00002186 if (const VarTemplateSpecializationDecl *Spec =
2187 dyn_cast<VarTemplateSpecializationDecl>(this))
2188 return Spec->getSpecializationKind();
2189
Sebastian Redle9d12b62010-01-31 22:27:38 +00002190 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002191 return MSI->getTemplateSpecializationKind();
Richard Smithd0629eb2013-09-27 20:14:12 +00002192
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002193 return TSK_Undeclared;
2194}
2195
Richard Smithd0629eb2013-09-27 20:14:12 +00002196SourceLocation VarDecl::getPointOfInstantiation() const {
2197 if (const VarTemplateSpecializationDecl *Spec =
2198 dyn_cast<VarTemplateSpecializationDecl>(this))
2199 return Spec->getPointOfInstantiation();
2200
2201 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2202 return MSI->getPointOfInstantiation();
2203
2204 return SourceLocation();
2205}
2206
Larisse Voufoef4579c2013-08-06 01:03:05 +00002207VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
2208 return getASTContext().getTemplateOrSpecializationInfo(this)
2209 .dyn_cast<VarTemplateDecl *>();
2210}
2211
2212void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
2213 getASTContext().setTemplateOrSpecializationInfo(this, Template);
2214}
2215
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002216MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Richard Smith3f322102013-08-01 04:12:04 +00002217 if (isStaticDataMember())
Larisse Voufoef4579c2013-08-06 01:03:05 +00002218 // FIXME: Remove ?
2219 // return getASTContext().getInstantiatedFromStaticDataMember(this);
2220 return getASTContext().getTemplateOrSpecializationInfo(this)
2221 .dyn_cast<MemberSpecializationInfo *>();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002222 return nullptr;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002223}
2224
Douglas Gregor0a897e32009-10-15 17:21:20 +00002225void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2226 SourceLocation PointOfInstantiation) {
Richard Smithd0629eb2013-09-27 20:14:12 +00002227 assert((isa<VarTemplateSpecializationDecl>(this) ||
2228 getMemberSpecializationInfo()) &&
2229 "not a variable or static data member template specialization");
2230
Larisse Voufoef4579c2013-08-06 01:03:05 +00002231 if (VarTemplateSpecializationDecl *Spec =
2232 dyn_cast<VarTemplateSpecializationDecl>(this)) {
2233 Spec->setSpecializationKind(TSK);
2234 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
2235 Spec->getPointOfInstantiation().isInvalid())
2236 Spec->setPointOfInstantiation(PointOfInstantiation);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002237 }
2238
2239 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
2240 MSI->setTemplateSpecializationKind(TSK);
2241 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
2242 MSI->getPointOfInstantiation().isInvalid())
2243 MSI->setPointOfInstantiation(PointOfInstantiation);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002244 }
Larisse Voufoef4579c2013-08-06 01:03:05 +00002245}
2246
2247void
2248VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
2249 TemplateSpecializationKind TSK) {
2250 assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
2251 "Previous template or instantiation?");
2252 getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002253}
2254
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002255//===----------------------------------------------------------------------===//
2256// ParmVarDecl Implementation
2257//===----------------------------------------------------------------------===//
Douglas Gregor275a3692009-03-10 23:43:53 +00002258
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002259ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002260 SourceLocation StartLoc,
2261 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002262 QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002263 StorageClass S, Expr *DefArg) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002264 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
Stephen Hines651f13c2014-04-23 16:59:28 -07002265 S, DefArg);
Douglas Gregor275a3692009-03-10 23:43:53 +00002266}
2267
Reid Kleckner12df2462013-06-24 17:51:48 +00002268QualType ParmVarDecl::getOriginalType() const {
2269 TypeSourceInfo *TSI = getTypeSourceInfo();
2270 QualType T = TSI ? TSI->getType() : getType();
2271 if (const DecayedType *DT = dyn_cast<DecayedType>(T))
2272 return DT->getOriginalType();
2273 return T;
2274}
2275
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002276ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002277 return new (C, ID)
2278 ParmVarDecl(ParmVar, C, nullptr, SourceLocation(), SourceLocation(),
2279 nullptr, QualType(), nullptr, SC_None, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002280}
2281
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00002282SourceRange ParmVarDecl::getSourceRange() const {
2283 if (!hasInheritedDefaultArg()) {
2284 SourceRange ArgRange = getDefaultArgRange();
2285 if (ArgRange.isValid())
2286 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
2287 }
2288
Argyrios Kyrtzidis673c5d52013-04-17 01:56:48 +00002289 // DeclaratorDecl considers the range of postfix types as overlapping with the
2290 // declaration name, but this is not the case with parameters in ObjC methods.
2291 if (isa<ObjCMethodDecl>(getDeclContext()))
2292 return SourceRange(DeclaratorDecl::getLocStart(), getLocation());
2293
Argyrios Kyrtzidis0bfe83b2011-07-30 17:23:26 +00002294 return DeclaratorDecl::getSourceRange();
2295}
2296
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002297Expr *ParmVarDecl::getDefaultArg() {
2298 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
2299 assert(!hasUninstantiatedDefaultArg() &&
2300 "Default argument is not yet instantiated!");
2301
2302 Expr *Arg = getInit();
John McCall4765fa02010-12-06 08:20:24 +00002303 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg))
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002304 return E->getSubExpr();
Douglas Gregor275a3692009-03-10 23:43:53 +00002305
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002306 return Arg;
2307}
2308
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002309SourceRange ParmVarDecl::getDefaultArgRange() const {
2310 if (const Expr *E = getInit())
2311 return E->getSourceRange();
2312
2313 if (hasUninstantiatedDefaultArg())
2314 return getUninstantiatedDefaultArg()->getSourceRange();
2315
2316 return SourceRange();
Argyrios Kyrtzidisfc7e2a82009-07-05 22:21:56 +00002317}
2318
Douglas Gregor1fe85ea2011-01-05 21:11:38 +00002319bool ParmVarDecl::isParameterPack() const {
2320 return isa<PackExpansionType>(getType());
2321}
2322
Ted Kremenekd211cb72011-10-06 05:00:56 +00002323void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
2324 getASTContext().setParameterIndex(this, parameterIndex);
2325 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
2326}
2327
2328unsigned ParmVarDecl::getParameterIndexLarge() const {
2329 return getASTContext().getParameterIndex(this);
2330}
2331
Nuno Lopes99f06ba2008-12-17 23:39:55 +00002332//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00002333// FunctionDecl Implementation
2334//===----------------------------------------------------------------------===//
2335
Benjamin Kramer5eada842013-02-22 15:46:01 +00002336void FunctionDecl::getNameForDiagnostic(
2337 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
2338 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
Douglas Gregorda2142f2011-02-19 18:51:44 +00002339 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
2340 if (TemplateArgs)
Benjamin Kramer5eada842013-02-22 15:46:01 +00002341 TemplateSpecializationType::PrintTemplateArgumentList(
2342 OS, TemplateArgs->data(), TemplateArgs->size(), Policy);
Douglas Gregorda2142f2011-02-19 18:51:44 +00002343}
2344
Ted Kremenek9498d382010-04-29 16:49:01 +00002345bool FunctionDecl::isVariadic() const {
2346 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>())
2347 return FT->isVariadic();
2348 return false;
2349}
2350
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002351bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002352 for (auto I : redecls()) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00002353 if (I->Body || I->IsLateTemplateParsed) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002354 Definition = I;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002355 return true;
2356 }
2357 }
2358
2359 return false;
2360}
2361
Anders Carlssonffb945f2011-05-14 23:26:09 +00002362bool FunctionDecl::hasTrivialBody() const
2363{
2364 Stmt *S = getBody();
2365 if (!S) {
2366 // Since we don't have a body for this function, we don't know if it's
2367 // trivial or not.
2368 return false;
2369 }
2370
2371 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
2372 return true;
2373 return false;
2374}
2375
Sean Hunt10620eb2011-05-06 20:44:56 +00002376bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002377 for (auto I : redecls()) {
Rafael Espindolab1c0e202013-10-22 21:39:03 +00002378 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed ||
2379 I->hasAttr<AliasAttr>()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002380 Definition = I->IsDeleted ? I->getCanonicalDecl() : I;
Sean Hunt10620eb2011-05-06 20:44:56 +00002381 return true;
2382 }
2383 }
2384
2385 return false;
2386}
2387
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002388Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Rafael Espindola65d10962013-10-19 01:37:17 +00002389 if (!hasBody(Definition))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002390 return nullptr;
Rafael Espindola65d10962013-10-19 01:37:17 +00002391
2392 if (Definition->Body)
2393 return Definition->Body.get(getASTContext().getExternalSource());
Douglas Gregorf0097952008-04-21 02:02:58 +00002394
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002395 return nullptr;
Reid Spencer5f016e22007-07-11 17:01:13 +00002396}
2397
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00002398void FunctionDecl::setBody(Stmt *B) {
2399 Body = B;
Douglas Gregorb5f35ba2010-12-06 17:49:01 +00002400 if (B)
Argyrios Kyrtzidis55d608c2009-06-20 08:09:14 +00002401 EndRangeLoc = B->getLocEnd();
2402}
2403
Douglas Gregor21386642010-09-28 21:55:22 +00002404void FunctionDecl::setPure(bool P) {
2405 IsPure = P;
2406 if (P)
2407 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
2408 Parent->markedVirtualFunctionPure();
2409}
2410
Richard Smithddcff1b2013-07-21 23:12:18 +00002411template<std::size_t Len>
2412static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
2413 IdentifierInfo *II = ND->getIdentifier();
2414 return II && II->isStr(Str);
2415}
2416
Douglas Gregor48a83b52009-09-12 00:17:51 +00002417bool FunctionDecl::isMain() const {
John McCall23c608d2011-05-15 17:49:20 +00002418 const TranslationUnitDecl *tunit =
2419 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2420 return tunit &&
David Blaikie4e4d0842012-03-11 07:00:24 +00002421 !tunit->getASTContext().getLangOpts().Freestanding &&
Richard Smithddcff1b2013-07-21 23:12:18 +00002422 isNamed(this, "main");
John McCall23c608d2011-05-15 17:49:20 +00002423}
2424
David Majnemere9f6f332013-09-16 22:44:20 +00002425bool FunctionDecl::isMSVCRTEntryPoint() const {
2426 const TranslationUnitDecl *TUnit =
2427 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2428 if (!TUnit)
2429 return false;
2430
2431 // Even though we aren't really targeting MSVCRT if we are freestanding,
2432 // semantic analysis for these functions remains the same.
2433
2434 // MSVCRT entry points only exist on MSVCRT targets.
2435 if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT())
2436 return false;
2437
2438 // Nameless functions like constructors cannot be entry points.
2439 if (!getIdentifier())
2440 return false;
2441
2442 return llvm::StringSwitch<bool>(getName())
2443 .Cases("main", // an ANSI console app
2444 "wmain", // a Unicode console App
2445 "WinMain", // an ANSI GUI app
2446 "wWinMain", // a Unicode GUI app
2447 "DllMain", // a DLL
2448 true)
2449 .Default(false);
2450}
2451
John McCall23c608d2011-05-15 17:49:20 +00002452bool FunctionDecl::isReservedGlobalPlacementOperator() const {
2453 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
2454 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
2455 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2456 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
2457 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
2458
Stephen Hines651f13c2014-04-23 16:59:28 -07002459 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2460 return false;
John McCall23c608d2011-05-15 17:49:20 +00002461
2462 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07002463 if (proto->getNumParams() != 2 || proto->isVariadic())
2464 return false;
John McCall23c608d2011-05-15 17:49:20 +00002465
2466 ASTContext &Context =
2467 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
2468 ->getASTContext();
2469
2470 // The result type and first argument type are constant across all
2471 // these operators. The second argument must be exactly void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07002472 return (proto->getParamType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregor04495c82009-02-24 01:23:02 +00002473}
2474
Richard Smithddcff1b2013-07-21 23:12:18 +00002475bool FunctionDecl::isReplaceableGlobalAllocationFunction() const {
2476 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
2477 return false;
2478 if (getDeclName().getCXXOverloadedOperator() != OO_New &&
2479 getDeclName().getCXXOverloadedOperator() != OO_Delete &&
2480 getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
2481 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
2482 return false;
2483
2484 if (isa<CXXRecordDecl>(getDeclContext()))
2485 return false;
Stephen Hines651f13c2014-04-23 16:59:28 -07002486
2487 // This can only fail for an invalid 'operator new' declaration.
2488 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2489 return false;
Richard Smithddcff1b2013-07-21 23:12:18 +00002490
2491 const FunctionProtoType *FPT = getType()->castAs<FunctionProtoType>();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002492 if (FPT->getNumParams() == 0 || FPT->getNumParams() > 2 || FPT->isVariadic())
Richard Smithddcff1b2013-07-21 23:12:18 +00002493 return false;
2494
2495 // If this is a single-parameter function, it must be a replaceable global
2496 // allocation or deallocation function.
Stephen Hines651f13c2014-04-23 16:59:28 -07002497 if (FPT->getNumParams() == 1)
Richard Smithddcff1b2013-07-21 23:12:18 +00002498 return true;
2499
2500 // Otherwise, we're looking for a second parameter whose type is
Richard Smith4cb295d2013-09-29 04:40:38 +00002501 // 'const std::nothrow_t &', or, in C++1y, 'std::size_t'.
Stephen Hines651f13c2014-04-23 16:59:28 -07002502 QualType Ty = FPT->getParamType(1);
Richard Smith4cb295d2013-09-29 04:40:38 +00002503 ASTContext &Ctx = getASTContext();
Richard Smith3cebc732013-11-05 09:12:18 +00002504 if (Ctx.getLangOpts().SizedDeallocation &&
2505 Ctx.hasSameType(Ty, Ctx.getSizeType()))
Richard Smith4cb295d2013-09-29 04:40:38 +00002506 return true;
Richard Smithddcff1b2013-07-21 23:12:18 +00002507 if (!Ty->isReferenceType())
2508 return false;
2509 Ty = Ty->getPointeeType();
2510 if (Ty.getCVRQualifiers() != Qualifiers::Const)
2511 return false;
Richard Smithddcff1b2013-07-21 23:12:18 +00002512 const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002513 return RD && isNamed(RD, "nothrow_t") && RD->isInStdNamespace();
Richard Smithddcff1b2013-07-21 23:12:18 +00002514}
2515
Rafael Espindola950fee22013-02-14 01:18:37 +00002516LanguageLinkage FunctionDecl::getLanguageLinkage() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002517 return getDeclLanguageLinkage(*this);
Rafael Espindola78eeba82012-12-28 14:21:58 +00002518}
2519
Rafael Espindola2d1b0962013-03-14 03:07:35 +00002520bool FunctionDecl::isExternC() const {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002521 return isDeclExternC(*this);
Rafael Espindola2d1b0962013-03-14 03:07:35 +00002522}
2523
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002524bool FunctionDecl::isInExternCContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00002525 return getLexicalDeclContext()->isExternCContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002526}
2527
2528bool FunctionDecl::isInExternCXXContext() const {
Serge Pavlov142ab062013-11-14 02:13:03 +00002529 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002530}
2531
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002532bool FunctionDecl::isGlobal() const {
2533 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this))
2534 return Method->isStatic();
2535
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002536 if (getCanonicalDecl()->getStorageClass() == SC_Static)
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002537 return false;
2538
Mike Stump1eb44332009-09-09 15:08:12 +00002539 for (const DeclContext *DC = getDeclContext();
Douglas Gregor8499f3f2009-03-31 16:35:03 +00002540 DC->isNamespace();
2541 DC = DC->getParent()) {
2542 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) {
2543 if (!Namespace->getDeclName())
2544 return false;
2545 break;
2546 }
2547 }
2548
2549 return true;
2550}
2551
Richard Smithcd8ab512013-01-17 01:30:42 +00002552bool FunctionDecl::isNoReturn() const {
2553 return hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
Richard Smith7586a6e2013-01-30 05:45:05 +00002554 hasAttr<C11NoReturnAttr>() ||
Richard Smithcd8ab512013-01-17 01:30:42 +00002555 getType()->getAs<FunctionType>()->getNoReturnAttr();
2556}
2557
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002558void
2559FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
Rafael Espindolabc650912013-10-17 15:37:26 +00002560 redeclarable_base::setPreviousDecl(PrevDecl);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002561
2562 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
2563 FunctionTemplateDecl *PrevFunTmpl
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002564 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002565 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
Rafael Espindolabc650912013-10-17 15:37:26 +00002566 FunTmpl->setPreviousDecl(PrevFunTmpl);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002567 }
Douglas Gregor8f150942010-12-09 16:59:22 +00002568
Axel Naumannd9d137e2011-11-08 18:21:06 +00002569 if (PrevDecl && PrevDecl->IsInline)
Douglas Gregor8f150942010-12-09 16:59:22 +00002570 IsInline = true;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002571}
2572
2573const FunctionDecl *FunctionDecl::getCanonicalDecl() const {
Rafael Espindolabc650912013-10-17 15:37:26 +00002574 return getFirstDecl();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002575}
2576
Rafael Espindolabc650912013-10-17 15:37:26 +00002577FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl7783bfc2010-01-26 22:01:41 +00002578
Douglas Gregor3e41d602009-02-13 23:20:09 +00002579/// \brief Returns a value indicating whether this function
2580/// corresponds to a builtin function.
2581///
2582/// The function corresponds to a built-in function if it is
2583/// declared at translation scope or within an extern "C" block and
2584/// its name matches with the name of a builtin. The returned value
2585/// will be 0 for functions that do not correspond to a builtin, a
Mike Stump1eb44332009-09-09 15:08:12 +00002586/// value of type \c Builtin::ID if in the target-independent range
Douglas Gregor3e41d602009-02-13 23:20:09 +00002587/// \c [1,Builtin::First), or a target-specific builtin value.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00002588unsigned FunctionDecl::getBuiltinID() const {
Daniel Dunbar60d302a2012-03-06 23:52:37 +00002589 if (!getIdentifier())
Douglas Gregor3c385e52009-02-14 18:57:46 +00002590 return 0;
2591
2592 unsigned BuiltinID = getIdentifier()->getBuiltinID();
Daniel Dunbar60d302a2012-03-06 23:52:37 +00002593 if (!BuiltinID)
2594 return 0;
2595
2596 ASTContext &Context = getASTContext();
Warren Hunt2d023ec2013-11-01 23:46:51 +00002597 if (Context.getLangOpts().CPlusPlus) {
2598 const LinkageSpecDecl *LinkageDecl = dyn_cast<LinkageSpecDecl>(
2599 getFirstDecl()->getDeclContext());
2600 // In C++, the first declaration of a builtin is always inside an implicit
2601 // extern "C".
2602 // FIXME: A recognised library function may not be directly in an extern "C"
2603 // declaration, for instance "extern "C" { namespace std { decl } }".
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07002604 if (!LinkageDecl) {
2605 if (BuiltinID == Builtin::BI__GetExceptionInfo &&
2606 Context.getTargetInfo().getCXXABI().isMicrosoft() &&
2607 isInStdNamespace())
2608 return Builtin::BI__GetExceptionInfo;
2609 return 0;
2610 }
2611 if (LinkageDecl->getLanguage() != LinkageSpecDecl::lang_c)
Warren Hunt2d023ec2013-11-01 23:46:51 +00002612 return 0;
2613 }
2614
2615 // If the function is marked "overloadable", it has a different mangled name
2616 // and is not the C library function.
Stephen Hines651f13c2014-04-23 16:59:28 -07002617 if (hasAttr<OverloadableAttr>())
Warren Hunt2d023ec2013-11-01 23:46:51 +00002618 return 0;
2619
Douglas Gregor3c385e52009-02-14 18:57:46 +00002620 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
2621 return BuiltinID;
2622
2623 // This function has the name of a known C library
2624 // function. Determine whether it actually refers to the C library
2625 // function or whether it just has the same name.
2626
Douglas Gregor9add3172009-02-17 03:23:10 +00002627 // If this is a static function, it's not a builtin.
John McCalld931b082010-08-26 03:08:43 +00002628 if (getStorageClass() == SC_Static)
Douglas Gregor9add3172009-02-17 03:23:10 +00002629 return 0;
2630
Warren Hunt2d023ec2013-11-01 23:46:51 +00002631 return BuiltinID;
Douglas Gregor3e41d602009-02-13 23:20:09 +00002632}
2633
2634
Chris Lattner1ad9b282009-04-25 06:03:53 +00002635/// getNumParams - Return the number of parameters this function must have
Bob Wilson8dbfbf42011-01-10 18:23:55 +00002636/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner1ad9b282009-04-25 06:03:53 +00002637/// after it has been created.
2638unsigned FunctionDecl::getNumParams() const {
Stephen Hines651f13c2014-04-23 16:59:28 -07002639 const FunctionProtoType *FPT = getType()->getAs<FunctionProtoType>();
2640 return FPT ? FPT->getNumParams() : 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00002641}
2642
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002643void FunctionDecl::setParams(ASTContext &C,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002644 ArrayRef<ParmVarDecl *> NewParamInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002645 assert(!ParamInfo && "Already has param info!");
David Blaikie4278c652011-09-21 18:16:56 +00002646 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump1eb44332009-09-09 15:08:12 +00002647
Reid Spencer5f016e22007-07-11 17:01:13 +00002648 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00002649 if (!NewParamInfo.empty()) {
2650 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
2651 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00002652 }
2653}
2654
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00002655void FunctionDecl::setDeclsInPrototypeScope(ArrayRef<NamedDecl *> NewDecls) {
James Molloy16f1f712012-02-29 10:24:19 +00002656 assert(DeclsInPrototypeScope.empty() && "Already has prototype decls!");
2657
2658 if (!NewDecls.empty()) {
2659 NamedDecl **A = new (getASTContext()) NamedDecl*[NewDecls.size()];
2660 std::copy(NewDecls.begin(), NewDecls.end(), A);
Stephen Hines176edba2014-12-01 14:53:08 -08002661 DeclsInPrototypeScope = llvm::makeArrayRef(A, NewDecls.size());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002662 // Move declarations introduced in prototype to the function context.
2663 for (auto I : NewDecls) {
2664 DeclContext *DC = I->getDeclContext();
2665 // Forward-declared reference to an enumeration is not added to
2666 // declaration scope, so skip declaration that is absent from its
2667 // declaration contexts.
2668 if (DC->containsDecl(I)) {
2669 DC->removeDecl(I);
2670 I->setDeclContext(this);
2671 addDecl(I);
2672 }
2673 }
James Molloy16f1f712012-02-29 10:24:19 +00002674 }
2675}
2676
Chris Lattner8123a952008-04-10 02:22:51 +00002677/// getMinRequiredArguments - Returns the minimum number of arguments
2678/// needed to call this function. This may be fewer than the number of
2679/// function parameters, if some of the parameters have default
Stephen Hines651f13c2014-04-23 16:59:28 -07002680/// arguments (in C++) or are parameter packs (C++11).
Chris Lattner8123a952008-04-10 02:22:51 +00002681unsigned FunctionDecl::getMinRequiredArguments() const {
David Blaikie4e4d0842012-03-11 07:00:24 +00002682 if (!getASTContext().getLangOpts().CPlusPlus)
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00002683 return getNumParams();
Chris Lattner8123a952008-04-10 02:22:51 +00002684
Stephen Hines651f13c2014-04-23 16:59:28 -07002685 unsigned NumRequiredArgs = 0;
2686 for (auto *Param : params())
2687 if (!Param->isParameterPack() && !Param->hasDefaultArg())
2688 ++NumRequiredArgs;
Chris Lattner8123a952008-04-10 02:22:51 +00002689 return NumRequiredArgs;
2690}
2691
Stephen Hines651f13c2014-04-23 16:59:28 -07002692/// \brief The combination of the extern and inline keywords under MSVC forces
2693/// the function to be required.
2694///
2695/// Note: This function assumes that we will only get called when isInlined()
2696/// would return true for this FunctionDecl.
2697bool FunctionDecl::isMSExternInline() const {
2698 assert(isInlined() && "expected to get called on an inlined function!");
2699
2700 const ASTContext &Context = getASTContext();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002701 if (!Context.getLangOpts().MSVCCompat && !hasAttr<DLLExportAttr>())
Stephen Hines651f13c2014-04-23 16:59:28 -07002702 return false;
2703
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07002704 for (const FunctionDecl *FD = getMostRecentDecl(); FD;
2705 FD = FD->getPreviousDecl())
Stephen Hines651f13c2014-04-23 16:59:28 -07002706 if (FD->getStorageClass() == SC_Extern)
2707 return true;
2708
2709 return false;
2710}
2711
2712static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
2713 if (Redecl->getStorageClass() != SC_Extern)
2714 return false;
2715
2716 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
2717 FD = FD->getPreviousDecl())
2718 if (FD->getStorageClass() == SC_Extern)
2719 return false;
2720
2721 return true;
2722}
2723
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002724static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
2725 // Only consider file-scope declarations in this test.
2726 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
2727 return false;
2728
2729 // Only consider explicit declarations; the presence of a builtin for a
2730 // libcall shouldn't affect whether a definition is externally visible.
2731 if (Redecl->isImplicit())
2732 return false;
2733
2734 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
2735 return true; // Not an inline definition
2736
2737 return false;
2738}
2739
Nick Lewyckydce67a72011-07-18 05:26:13 +00002740/// \brief For a function declaration in C or C++, determine whether this
2741/// declaration causes the definition to be externally visible.
2742///
Stephen Hines651f13c2014-04-23 16:59:28 -07002743/// For instance, this determines if adding the current declaration to the set
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002744/// of redeclarations of the given functions causes
2745/// isInlineDefinitionExternallyVisible to change from false to true.
Nick Lewyckydce67a72011-07-18 05:26:13 +00002746bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
2747 assert(!doesThisDeclarationHaveABody() &&
2748 "Must have a declaration without a body.");
2749
2750 ASTContext &Context = getASTContext();
2751
Stephen Hines651f13c2014-04-23 16:59:28 -07002752 if (Context.getLangOpts().MSVCCompat) {
2753 const FunctionDecl *Definition;
2754 if (hasBody(Definition) && Definition->isInlined() &&
2755 redeclForcesDefMSVC(this))
2756 return true;
2757 }
2758
David Blaikie4e4d0842012-03-11 07:00:24 +00002759 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002760 // With GNU inlining, a declaration with 'inline' but not 'extern', forces
2761 // an externally visible definition.
2762 //
2763 // FIXME: What happens if gnu_inline gets added on after the first
2764 // declaration?
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002765 if (!isInlineSpecified() || getStorageClass() == SC_Extern)
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002766 return false;
2767
2768 const FunctionDecl *Prev = this;
2769 bool FoundBody = false;
2770 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7247c882013-05-15 07:37:26 +00002771 FoundBody |= Prev->Body.isValid();
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002772
2773 if (Prev->Body) {
2774 // If it's not the case that both 'inline' and 'extern' are
2775 // specified on the definition, then it is always externally visible.
2776 if (!Prev->isInlineSpecified() ||
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002777 Prev->getStorageClass() != SC_Extern)
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002778 return false;
2779 } else if (Prev->isInlineSpecified() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002780 Prev->getStorageClass() != SC_Extern) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002781 return false;
2782 }
2783 }
2784 return FoundBody;
2785 }
2786
David Blaikie4e4d0842012-03-11 07:00:24 +00002787 if (Context.getLangOpts().CPlusPlus)
Nick Lewyckydce67a72011-07-18 05:26:13 +00002788 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002789
2790 // C99 6.7.4p6:
2791 // [...] If all of the file scope declarations for a function in a
2792 // translation unit include the inline function specifier without extern,
2793 // then the definition in that translation unit is an inline definition.
2794 if (isInlineSpecified() && getStorageClass() != SC_Extern)
Nick Lewyckydce67a72011-07-18 05:26:13 +00002795 return false;
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002796 const FunctionDecl *Prev = this;
2797 bool FoundBody = false;
2798 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7247c882013-05-15 07:37:26 +00002799 FoundBody |= Prev->Body.isValid();
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002800 if (RedeclForcesDefC99(Prev))
2801 return false;
2802 }
2803 return FoundBody;
Nick Lewyckydce67a72011-07-18 05:26:13 +00002804}
2805
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002806SourceRange FunctionDecl::getReturnTypeSourceRange() const {
2807 const TypeSourceInfo *TSI = getTypeSourceInfo();
2808 if (!TSI)
2809 return SourceRange();
2810 FunctionTypeLoc FTL =
2811 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>();
2812 if (!FTL)
2813 return SourceRange();
2814
2815 // Skip self-referential return types.
2816 const SourceManager &SM = getASTContext().getSourceManager();
2817 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
2818 SourceLocation Boundary = getNameInfo().getLocStart();
2819 if (RTRange.isInvalid() || Boundary.isInvalid() ||
2820 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
2821 return SourceRange();
2822
2823 return RTRange;
2824}
2825
Richard Smithd4497dd2013-01-25 00:08:28 +00002826/// \brief For an inline function definition in C, or for a gnu_inline function
2827/// in C++, determine whether the definition will be externally visible.
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002828///
2829/// Inline function definitions are always available for inlining optimizations.
2830/// However, depending on the language dialect, declaration specifiers, and
2831/// attributes, the definition of an inline function may or may not be
2832/// "externally" visible to other translation units in the program.
2833///
2834/// In C99, inline definitions are not externally visible by default. However,
Mike Stump1e5fd7f2010-01-06 02:05:39 +00002835/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002836/// inline definition becomes externally visible (C99 6.7.4p6).
2837///
2838/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
2839/// definition, we use the GNU semantics for inline, which are nearly the
2840/// opposite of C99 semantics. In particular, "inline" by itself will create
2841/// an externally visible symbol, but "extern inline" will not create an
2842/// externally visible symbol.
2843bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Sean Hunt10620eb2011-05-06 20:44:56 +00002844 assert(doesThisDeclarationHaveABody() && "Must have the function definition");
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002845 assert(isInlined() && "Function must be inline");
Douglas Gregor7d9c3c92009-10-27 23:26:40 +00002846 ASTContext &Context = getASTContext();
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002847
David Blaikie4e4d0842012-03-11 07:00:24 +00002848 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002849 // Note: If you change the logic here, please change
2850 // doesDeclarationForceExternallyVisibleDefinition as well.
2851 //
Douglas Gregor8f150942010-12-09 16:59:22 +00002852 // If it's not the case that both 'inline' and 'extern' are
2853 // specified on the definition, then this inline definition is
2854 // externally visible.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002855 if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
Douglas Gregor8f150942010-12-09 16:59:22 +00002856 return true;
2857
2858 // If any declaration is 'inline' but not 'extern', then this definition
2859 // is externally visible.
Stephen Hines651f13c2014-04-23 16:59:28 -07002860 for (auto Redecl : redecls()) {
Douglas Gregor8f150942010-12-09 16:59:22 +00002861 if (Redecl->isInlineSpecified() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002862 Redecl->getStorageClass() != SC_Extern)
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002863 return true;
Douglas Gregor8f150942010-12-09 16:59:22 +00002864 }
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002865
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002866 return false;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002867 }
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002868
Richard Smithd4497dd2013-01-25 00:08:28 +00002869 // The rest of this function is C-only.
2870 assert(!Context.getLangOpts().CPlusPlus &&
2871 "should not use C inline rules in C++");
2872
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002873 // C99 6.7.4p6:
2874 // [...] If all of the file scope declarations for a function in a
2875 // translation unit include the inline function specifier without extern,
2876 // then the definition in that translation unit is an inline definition.
Stephen Hines651f13c2014-04-23 16:59:28 -07002877 for (auto Redecl : redecls()) {
2878 if (RedeclForcesDefC99(Redecl))
Eli Friedmana3b9fa22012-02-07 03:50:18 +00002879 return true;
Douglas Gregor1fc09a92009-09-13 07:46:26 +00002880 }
2881
2882 // C99 6.7.4p6:
2883 // An inline definition does not provide an external definition for the
2884 // function, and does not forbid an external definition in another
2885 // translation unit.
Douglas Gregor9f9bf252009-04-28 06:37:30 +00002886 return false;
2887}
2888
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002889/// getOverloadedOperator - Which C++ overloaded operator this
2890/// function represents, if any.
2891OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +00002892 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
2893 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002894 else
2895 return OO_None;
2896}
2897
Sean Hunta6c058d2010-01-13 09:01:02 +00002898/// getLiteralIdentifier - The literal suffix identifier this function
2899/// represents, if any.
2900const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
2901 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
2902 return getDeclName().getCXXLiteralIdentifier();
2903 else
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002904 return nullptr;
Sean Hunta6c058d2010-01-13 09:01:02 +00002905}
2906
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002907FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
2908 if (TemplateOrSpecialization.isNull())
2909 return TK_NonTemplate;
2910 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
2911 return TK_FunctionTemplate;
2912 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
2913 return TK_MemberSpecialization;
2914 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
2915 return TK_FunctionTemplateSpecialization;
2916 if (TemplateOrSpecialization.is
2917 <DependentFunctionTemplateSpecializationInfo*>())
2918 return TK_DependentFunctionTemplateSpecialization;
2919
David Blaikieb219cfc2011-09-23 05:06:16 +00002920 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidisd0913552010-06-22 09:54:51 +00002921}
2922
Douglas Gregor2db32322009-10-07 23:56:10 +00002923FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002924 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregor2db32322009-10-07 23:56:10 +00002925 return cast<FunctionDecl>(Info->getInstantiatedFrom());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002926
2927 return nullptr;
Douglas Gregor2db32322009-10-07 23:56:10 +00002928}
2929
2930void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002931FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
2932 FunctionDecl *FD,
Douglas Gregor2db32322009-10-07 23:56:10 +00002933 TemplateSpecializationKind TSK) {
2934 assert(TemplateOrSpecialization.isNull() &&
2935 "Member function is already a specialization");
2936 MemberSpecializationInfo *Info
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00002937 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregor2db32322009-10-07 23:56:10 +00002938 TemplateOrSpecialization = Info;
2939}
2940
Douglas Gregor3b846b62009-10-27 20:53:28 +00002941bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002942 // If the function is invalid, it can't be implicitly instantiated.
2943 if (isInvalidDecl())
Douglas Gregor3b846b62009-10-27 20:53:28 +00002944 return false;
2945
2946 switch (getTemplateSpecializationKind()) {
2947 case TSK_Undeclared:
Douglas Gregor3b846b62009-10-27 20:53:28 +00002948 case TSK_ExplicitInstantiationDefinition:
2949 return false;
2950
2951 case TSK_ImplicitInstantiation:
2952 return true;
2953
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002954 // It is possible to instantiate TSK_ExplicitSpecialization kind
2955 // if the FunctionDecl has a class scope specialization pattern.
2956 case TSK_ExplicitSpecialization:
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002957 return getClassScopeSpecializationPattern() != nullptr;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002958
Douglas Gregor3b846b62009-10-27 20:53:28 +00002959 case TSK_ExplicitInstantiationDeclaration:
2960 // Handled below.
2961 break;
2962 }
2963
2964 // Find the actual template from which we will instantiate.
2965 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002966 bool HasPattern = false;
Douglas Gregor3b846b62009-10-27 20:53:28 +00002967 if (PatternDecl)
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002968 HasPattern = PatternDecl->hasBody(PatternDecl);
Douglas Gregor3b846b62009-10-27 20:53:28 +00002969
2970 // C++0x [temp.explicit]p9:
2971 // Except for inline functions, other explicit instantiation declarations
2972 // have the effect of suppressing the implicit instantiation of the entity
2973 // to which they refer.
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002974 if (!HasPattern || !PatternDecl)
Douglas Gregor3b846b62009-10-27 20:53:28 +00002975 return true;
2976
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002977 return PatternDecl->isInlined();
Ted Kremenek75df4ee2011-12-01 00:59:17 +00002978}
2979
2980bool FunctionDecl::isTemplateInstantiation() const {
2981 switch (getTemplateSpecializationKind()) {
2982 case TSK_Undeclared:
2983 case TSK_ExplicitSpecialization:
2984 return false;
2985 case TSK_ImplicitInstantiation:
2986 case TSK_ExplicitInstantiationDeclaration:
2987 case TSK_ExplicitInstantiationDefinition:
2988 return true;
2989 }
2990 llvm_unreachable("All TSK values handled.");
2991}
Douglas Gregor3b846b62009-10-27 20:53:28 +00002992
2993FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002994 // Handle class scope explicit specialization special case.
2995 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2996 return getClassScopeSpecializationPattern();
Stephen Hines651f13c2014-04-23 16:59:28 -07002997
2998 // If this is a generic lambda call operator specialization, its
2999 // instantiation pattern is always its primary template's pattern
3000 // even if its primary template was instantiated from another
3001 // member template (which happens with nested generic lambdas).
3002 // Since a lambda's call operator's body is transformed eagerly,
3003 // we don't have to go hunting for a prototype definition template
3004 // (i.e. instantiated-from-member-template) to use as an instantiation
3005 // pattern.
Francois Pichetaf0f4d02011-08-14 03:52:19 +00003006
Stephen Hines651f13c2014-04-23 16:59:28 -07003007 if (isGenericLambdaCallOperatorSpecialization(
3008 dyn_cast<CXXMethodDecl>(this))) {
3009 assert(getPrimaryTemplate() && "A generic lambda specialization must be "
3010 "generated from a primary call operator "
3011 "template");
3012 assert(getPrimaryTemplate()->getTemplatedDecl()->getBody() &&
3013 "A generic lambda call operator template must always have a body - "
3014 "even if instantiated from a prototype (i.e. as written) member "
3015 "template");
3016 return getPrimaryTemplate()->getTemplatedDecl();
3017 }
3018
Douglas Gregor3b846b62009-10-27 20:53:28 +00003019 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
3020 while (Primary->getInstantiatedFromMemberTemplate()) {
3021 // If we have hit a point where the user provided a specialization of
3022 // this template, we're done looking.
3023 if (Primary->isMemberSpecialization())
3024 break;
Douglas Gregor3b846b62009-10-27 20:53:28 +00003025 Primary = Primary->getInstantiatedFromMemberTemplate();
3026 }
3027
3028 return Primary->getTemplatedDecl();
3029 }
3030
3031 return getInstantiatedFromMemberFunction();
3032}
3033
Douglas Gregor16e8be22009-06-29 17:30:29 +00003034FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003035 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00003036 = TemplateOrSpecialization
3037 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003038 return Info->Template.getPointer();
Douglas Gregor16e8be22009-06-29 17:30:29 +00003039 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003040 return nullptr;
Douglas Gregor16e8be22009-06-29 17:30:29 +00003041}
3042
Francois Pichetaf0f4d02011-08-14 03:52:19 +00003043FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const {
3044 return getASTContext().getClassScopeSpecializationPattern(this);
3045}
3046
Douglas Gregor16e8be22009-06-29 17:30:29 +00003047const TemplateArgumentList *
3048FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003049 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorfd056bc2009-10-13 16:30:37 +00003050 = TemplateOrSpecialization
3051 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor16e8be22009-06-29 17:30:29 +00003052 return Info->TemplateArguments;
3053 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003054 return nullptr;
Douglas Gregor16e8be22009-06-29 17:30:29 +00003055}
3056
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +00003057const ASTTemplateArgumentListInfo *
Abramo Bagnarae03db982010-05-20 15:32:11 +00003058FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
3059 if (FunctionTemplateSpecializationInfo *Info
3060 = TemplateOrSpecialization
3061 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
3062 return Info->TemplateArgumentsAsWritten;
3063 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003064 return nullptr;
Abramo Bagnarae03db982010-05-20 15:32:11 +00003065}
3066
Mike Stump1eb44332009-09-09 15:08:12 +00003067void
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00003068FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
3069 FunctionTemplateDecl *Template,
Douglas Gregor127102b2009-06-29 20:59:39 +00003070 const TemplateArgumentList *TemplateArgs,
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00003071 void *InsertPos,
Abramo Bagnarae03db982010-05-20 15:32:11 +00003072 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +00003073 const TemplateArgumentListInfo *TemplateArgsAsWritten,
3074 SourceLocation PointOfInstantiation) {
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00003075 assert(TSK != TSK_Undeclared &&
3076 "Must specify the type of function template specialization");
Mike Stump1eb44332009-09-09 15:08:12 +00003077 FunctionTemplateSpecializationInfo *Info
Douglas Gregor16e8be22009-06-29 17:30:29 +00003078 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor1637be72009-06-26 00:10:03 +00003079 if (!Info)
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +00003080 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK,
3081 TemplateArgs,
3082 TemplateArgsAsWritten,
3083 PointOfInstantiation);
Douglas Gregor1637be72009-06-26 00:10:03 +00003084 TemplateOrSpecialization = Info;
Douglas Gregor1e1e9722012-03-28 14:34:23 +00003085 Template->addSpecialization(Info, InsertPos);
Douglas Gregor1637be72009-06-26 00:10:03 +00003086}
3087
John McCallaf2094e2010-04-08 09:05:18 +00003088void
3089FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
3090 const UnresolvedSetImpl &Templates,
3091 const TemplateArgumentListInfo &TemplateArgs) {
3092 assert(TemplateOrSpecialization.isNull());
3093 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo);
3094 Size += Templates.size() * sizeof(FunctionTemplateDecl*);
John McCall21c01602010-04-13 22:18:28 +00003095 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc);
John McCallaf2094e2010-04-08 09:05:18 +00003096 void *Buffer = Context.Allocate(Size);
3097 DependentFunctionTemplateSpecializationInfo *Info =
3098 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates,
3099 TemplateArgs);
3100 TemplateOrSpecialization = Info;
3101}
3102
3103DependentFunctionTemplateSpecializationInfo::
3104DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
3105 const TemplateArgumentListInfo &TArgs)
3106 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
3107
3108 d.NumTemplates = Ts.size();
3109 d.NumArgs = TArgs.size();
3110
3111 FunctionTemplateDecl **TsArray =
3112 const_cast<FunctionTemplateDecl**>(getTemplates());
3113 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
3114 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
3115
3116 TemplateArgumentLoc *ArgsArray =
3117 const_cast<TemplateArgumentLoc*>(getTemplateArgs());
3118 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
3119 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
3120}
3121
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003122TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003123 // For a function template specialization, query the specialization
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003124 // information object.
Douglas Gregor2db32322009-10-07 23:56:10 +00003125 FunctionTemplateSpecializationInfo *FTSInfo
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003126 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>();
Douglas Gregor2db32322009-10-07 23:56:10 +00003127 if (FTSInfo)
3128 return FTSInfo->getTemplateSpecializationKind();
Mike Stump1eb44332009-09-09 15:08:12 +00003129
Douglas Gregor2db32322009-10-07 23:56:10 +00003130 MemberSpecializationInfo *MSInfo
3131 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>();
3132 if (MSInfo)
3133 return MSInfo->getTemplateSpecializationKind();
3134
3135 return TSK_Undeclared;
Douglas Gregord0e3daf2009-09-04 22:48:11 +00003136}
3137
Mike Stump1eb44332009-09-09 15:08:12 +00003138void
Douglas Gregor0a897e32009-10-15 17:21:20 +00003139FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3140 SourceLocation PointOfInstantiation) {
3141 if (FunctionTemplateSpecializationInfo *FTSInfo
3142 = TemplateOrSpecialization.dyn_cast<
3143 FunctionTemplateSpecializationInfo*>()) {
3144 FTSInfo->setTemplateSpecializationKind(TSK);
3145 if (TSK != TSK_ExplicitSpecialization &&
3146 PointOfInstantiation.isValid() &&
3147 FTSInfo->getPointOfInstantiation().isInvalid())
3148 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
3149 } else if (MemberSpecializationInfo *MSInfo
3150 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
3151 MSInfo->setTemplateSpecializationKind(TSK);
3152 if (TSK != TSK_ExplicitSpecialization &&
3153 PointOfInstantiation.isValid() &&
3154 MSInfo->getPointOfInstantiation().isInvalid())
3155 MSInfo->setPointOfInstantiation(PointOfInstantiation);
3156 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00003157 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor0a897e32009-10-15 17:21:20 +00003158}
3159
3160SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregor2db32322009-10-07 23:56:10 +00003161 if (FunctionTemplateSpecializationInfo *FTSInfo
3162 = TemplateOrSpecialization.dyn_cast<
3163 FunctionTemplateSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00003164 return FTSInfo->getPointOfInstantiation();
Douglas Gregor2db32322009-10-07 23:56:10 +00003165 else if (MemberSpecializationInfo *MSInfo
3166 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor0a897e32009-10-15 17:21:20 +00003167 return MSInfo->getPointOfInstantiation();
3168
3169 return SourceLocation();
Douglas Gregor1fd2dd12009-06-29 22:39:32 +00003170}
3171
Douglas Gregor9f185072009-09-11 20:15:17 +00003172bool FunctionDecl::isOutOfLine() const {
Douglas Gregorda2142f2011-02-19 18:51:44 +00003173 if (Decl::isOutOfLine())
Douglas Gregor9f185072009-09-11 20:15:17 +00003174 return true;
3175
3176 // If this function was instantiated from a member function of a
3177 // class template, check whether that member function was defined out-of-line.
3178 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
3179 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00003180 if (FD->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00003181 return Definition->isOutOfLine();
3182 }
3183
3184 // If this function was instantiated from a function template,
3185 // check whether that function template was defined out-of-line.
3186 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
3187 const FunctionDecl *Definition;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00003188 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor9f185072009-09-11 20:15:17 +00003189 return Definition->isOutOfLine();
3190 }
3191
3192 return false;
3193}
3194
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00003195SourceRange FunctionDecl::getSourceRange() const {
3196 return SourceRange(getOuterLocStart(), EndRangeLoc);
3197}
3198
Anna Zaks9392d4e2012-01-18 02:45:01 +00003199unsigned FunctionDecl::getMemoryFunctionKind() const {
Anna Zaksd9b859a2012-01-13 21:52:01 +00003200 IdentifierInfo *FnInfo = getIdentifier();
3201
3202 if (!FnInfo)
Anna Zaks0a151a12012-01-17 00:37:07 +00003203 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003204
3205 // Builtin handling.
3206 switch (getBuiltinID()) {
3207 case Builtin::BI__builtin_memset:
3208 case Builtin::BI__builtin___memset_chk:
3209 case Builtin::BImemset:
Anna Zaks0a151a12012-01-17 00:37:07 +00003210 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003211
3212 case Builtin::BI__builtin_memcpy:
3213 case Builtin::BI__builtin___memcpy_chk:
3214 case Builtin::BImemcpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00003215 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003216
3217 case Builtin::BI__builtin_memmove:
3218 case Builtin::BI__builtin___memmove_chk:
3219 case Builtin::BImemmove:
Anna Zaks0a151a12012-01-17 00:37:07 +00003220 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003221
3222 case Builtin::BIstrlcpy:
Stephen Hines176edba2014-12-01 14:53:08 -08003223 case Builtin::BI__builtin___strlcpy_chk:
Anna Zaks0a151a12012-01-17 00:37:07 +00003224 return Builtin::BIstrlcpy;
Stephen Hines176edba2014-12-01 14:53:08 -08003225
Anna Zaksd9b859a2012-01-13 21:52:01 +00003226 case Builtin::BIstrlcat:
Stephen Hines176edba2014-12-01 14:53:08 -08003227 case Builtin::BI__builtin___strlcat_chk:
Anna Zaks0a151a12012-01-17 00:37:07 +00003228 return Builtin::BIstrlcat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003229
3230 case Builtin::BI__builtin_memcmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003231 case Builtin::BImemcmp:
3232 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003233
3234 case Builtin::BI__builtin_strncpy:
3235 case Builtin::BI__builtin___strncpy_chk:
3236 case Builtin::BIstrncpy:
Anna Zaks0a151a12012-01-17 00:37:07 +00003237 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003238
3239 case Builtin::BI__builtin_strncmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003240 case Builtin::BIstrncmp:
3241 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003242
3243 case Builtin::BI__builtin_strncasecmp:
Anna Zaks0a151a12012-01-17 00:37:07 +00003244 case Builtin::BIstrncasecmp:
3245 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003246
3247 case Builtin::BI__builtin_strncat:
Anna Zaksc36bedc2012-02-01 19:08:57 +00003248 case Builtin::BI__builtin___strncat_chk:
Anna Zaksd9b859a2012-01-13 21:52:01 +00003249 case Builtin::BIstrncat:
Anna Zaks0a151a12012-01-17 00:37:07 +00003250 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003251
3252 case Builtin::BI__builtin_strndup:
3253 case Builtin::BIstrndup:
Anna Zaks0a151a12012-01-17 00:37:07 +00003254 return Builtin::BIstrndup;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003255
Anna Zaksc36bedc2012-02-01 19:08:57 +00003256 case Builtin::BI__builtin_strlen:
3257 case Builtin::BIstrlen:
3258 return Builtin::BIstrlen;
3259
Anna Zaksd9b859a2012-01-13 21:52:01 +00003260 default:
Rafael Espindolad2fdd422013-02-14 01:47:04 +00003261 if (isExternC()) {
Anna Zaksd9b859a2012-01-13 21:52:01 +00003262 if (FnInfo->isStr("memset"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003263 return Builtin::BImemset;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003264 else if (FnInfo->isStr("memcpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003265 return Builtin::BImemcpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003266 else if (FnInfo->isStr("memmove"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003267 return Builtin::BImemmove;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003268 else if (FnInfo->isStr("memcmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003269 return Builtin::BImemcmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003270 else if (FnInfo->isStr("strncpy"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003271 return Builtin::BIstrncpy;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003272 else if (FnInfo->isStr("strncmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003273 return Builtin::BIstrncmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003274 else if (FnInfo->isStr("strncasecmp"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003275 return Builtin::BIstrncasecmp;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003276 else if (FnInfo->isStr("strncat"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003277 return Builtin::BIstrncat;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003278 else if (FnInfo->isStr("strndup"))
Anna Zaks0a151a12012-01-17 00:37:07 +00003279 return Builtin::BIstrndup;
Anna Zaksc36bedc2012-02-01 19:08:57 +00003280 else if (FnInfo->isStr("strlen"))
3281 return Builtin::BIstrlen;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003282 }
3283 break;
3284 }
Anna Zaks0a151a12012-01-17 00:37:07 +00003285 return 0;
Anna Zaksd9b859a2012-01-13 21:52:01 +00003286}
3287
Chris Lattner8a934232008-03-31 00:36:02 +00003288//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003289// FieldDecl Implementation
3290//===----------------------------------------------------------------------===//
3291
Jay Foad4ba2a172011-01-12 09:06:06 +00003292FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003293 SourceLocation StartLoc, SourceLocation IdLoc,
3294 IdentifierInfo *Id, QualType T,
Richard Smith7a614d82011-06-11 17:19:42 +00003295 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
Richard Smithca523302012-06-10 03:12:00 +00003296 InClassInitStyle InitStyle) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003297 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3298 BW, Mutable, InitStyle);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003299}
3300
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003301FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003302 return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(),
3303 SourceLocation(), nullptr, QualType(), nullptr,
3304 nullptr, false, ICIS_NoInit);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003305}
3306
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003307bool FieldDecl::isAnonymousStructOrUnion() const {
3308 if (!isImplicit() || getDeclName())
3309 return false;
3310
3311 if (const RecordType *Record = getType()->getAs<RecordType>())
3312 return Record->getDecl()->isAnonymousStructOrUnion();
3313
3314 return false;
3315}
3316
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003317unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
3318 assert(isBitField() && "not a bitfield");
Stephen Hines176edba2014-12-01 14:53:08 -08003319 Expr *BitWidth = static_cast<Expr *>(InitStorage.getPointer());
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003320 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue();
3321}
3322
John McCallba4f5d52011-01-20 07:57:12 +00003323unsigned FieldDecl::getFieldIndex() const {
Richard Smith4ed01222013-10-07 08:02:11 +00003324 const FieldDecl *Canonical = getCanonicalDecl();
3325 if (Canonical != this)
3326 return Canonical->getFieldIndex();
3327
John McCallba4f5d52011-01-20 07:57:12 +00003328 if (CachedFieldIndex) return CachedFieldIndex - 1;
3329
Richard Smith180f4792011-11-10 06:34:14 +00003330 unsigned Index = 0;
Fariborz Jahanian07a8a212011-04-28 22:49:46 +00003331 const RecordDecl *RD = getParent();
Richard Smith180f4792011-11-10 06:34:14 +00003332
Stephen Hines176edba2014-12-01 14:53:08 -08003333 for (auto *Field : RD->fields()) {
3334 Field->getCanonicalDecl()->CachedFieldIndex = Index + 1;
3335 ++Index;
3336 }
John McCallba4f5d52011-01-20 07:57:12 +00003337
Richard Smith180f4792011-11-10 06:34:14 +00003338 assert(CachedFieldIndex && "failed to find field in parent");
3339 return CachedFieldIndex - 1;
John McCallba4f5d52011-01-20 07:57:12 +00003340}
3341
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00003342SourceRange FieldDecl::getSourceRange() const {
Stephen Hines176edba2014-12-01 14:53:08 -08003343 switch (InitStorage.getInt()) {
3344 // All three of these cases store an optional Expr*.
3345 case ISK_BitWidthOrNothing:
3346 case ISK_InClassCopyInit:
3347 case ISK_InClassListInit:
3348 if (const Expr *E = static_cast<const Expr *>(InitStorage.getPointer()))
3349 return SourceRange(getInnerLocStart(), E->getLocEnd());
3350 // FALLTHROUGH
3351
3352 case ISK_CapturedVLAType:
3353 return DeclaratorDecl::getSourceRange();
3354 }
3355 llvm_unreachable("bad init storage kind");
Abramo Bagnaraf2cf5622011-03-08 11:07:11 +00003356}
3357
Stephen Hines176edba2014-12-01 14:53:08 -08003358void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) {
3359 assert((getParent()->isLambda() || getParent()->isCapturedRecord()) &&
3360 "capturing type in non-lambda or captured record.");
3361 assert(InitStorage.getInt() == ISK_BitWidthOrNothing &&
3362 InitStorage.getPointer() == nullptr &&
3363 "bit width, initializer or captured type already set");
3364 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType),
3365 ISK_CapturedVLAType);
Richard Smith7a614d82011-06-11 17:19:42 +00003366}
3367
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003368//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003369// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003370//===----------------------------------------------------------------------===//
3371
Douglas Gregor1693e152010-07-06 18:42:40 +00003372SourceLocation TagDecl::getOuterLocStart() const {
3373 return getTemplateOrInnerLocStart(this);
3374}
3375
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00003376SourceRange TagDecl::getSourceRange() const {
3377 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregor1693e152010-07-06 18:42:40 +00003378 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidisf602c8b2009-07-14 03:17:17 +00003379}
3380
Rafael Espindolabc650912013-10-17 15:37:26 +00003381TagDecl *TagDecl::getCanonicalDecl() { return getFirstDecl(); }
Argyrios Kyrtzidisb57a4fe2009-07-18 00:34:07 +00003382
Rafael Espindola2d9e8832013-03-12 21:06:00 +00003383void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
David Majnemeraa824612013-09-17 23:57:10 +00003384 NamedDeclOrQualifier = TDD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003385 if (const Type *T = getTypeForDecl()) {
3386 (void)T;
3387 assert(T->isLinkageValid());
3388 }
Rafael Espindola2d1b0962013-03-14 03:07:35 +00003389 assert(isLinkageValid());
Douglas Gregor60e70642010-05-19 18:39:18 +00003390}
3391
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003392void TagDecl::startDefinition() {
Sebastian Redled48a8f2010-08-02 18:27:05 +00003393 IsBeingDefined = true;
John McCall86ff3082010-02-04 22:26:26 +00003394
David Blaikie66cff722012-11-14 01:52:05 +00003395 if (CXXRecordDecl *D = dyn_cast<CXXRecordDecl>(this)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003396 struct CXXRecordDecl::DefinitionData *Data =
John McCall86ff3082010-02-04 22:26:26 +00003397 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
Stephen Hines651f13c2014-04-23 16:59:28 -07003398 for (auto I : redecls())
3399 cast<CXXRecordDecl>(I)->DefinitionData = Data;
John McCall86ff3082010-02-04 22:26:26 +00003400 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003401}
3402
3403void TagDecl::completeDefinition() {
John McCall5cfa0112010-02-05 01:33:36 +00003404 assert((!isa<CXXRecordDecl>(this) ||
3405 cast<CXXRecordDecl>(this)->hasDefinition()) &&
3406 "definition completed but not started");
3407
John McCall5e1cdac2011-10-07 06:10:15 +00003408 IsCompleteDefinition = true;
Sebastian Redled48a8f2010-08-02 18:27:05 +00003409 IsBeingDefined = false;
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00003410
3411 if (ASTMutationListener *L = getASTMutationListener())
3412 L->CompletedTagDefinition(this);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003413}
3414
John McCall5e1cdac2011-10-07 06:10:15 +00003415TagDecl *TagDecl::getDefinition() const {
3416 if (isCompleteDefinition())
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +00003417 return const_cast<TagDecl *>(this);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003418
3419 // If it's possible for us to have an out-of-date definition, check now.
3420 if (MayHaveOutOfDateDef) {
3421 if (IdentifierInfo *II = getIdentifier()) {
3422 if (II->isOutOfDate()) {
3423 updateOutOfDate(*II);
3424 }
3425 }
3426 }
3427
Andrew Trick220a9c82010-10-19 21:54:32 +00003428 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this))
3429 return CXXRD->getDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00003430
Stephen Hines651f13c2014-04-23 16:59:28 -07003431 for (auto R : redecls())
John McCall5e1cdac2011-10-07 06:10:15 +00003432 if (R->isCompleteDefinition())
Stephen Hines651f13c2014-04-23 16:59:28 -07003433 return R;
Mike Stump1eb44332009-09-09 15:08:12 +00003434
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003435 return nullptr;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003436}
3437
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003438void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
3439 if (QualifierLoc) {
John McCallb6217662010-03-15 10:12:16 +00003440 // Make sure the extended qualifier info is allocated.
3441 if (!hasExtInfo())
David Majnemeraa824612013-09-17 23:57:10 +00003442 NamedDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCallb6217662010-03-15 10:12:16 +00003443 // Set qualifier info.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003444 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier30601782011-08-17 23:08:45 +00003445 } else {
John McCallb6217662010-03-15 10:12:16 +00003446 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCallb6217662010-03-15 10:12:16 +00003447 if (hasExtInfo()) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003448 if (getExtInfo()->NumTemplParamLists == 0) {
3449 getASTContext().Deallocate(getExtInfo());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003450 NamedDeclOrQualifier = (TypedefNameDecl*)nullptr;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003451 }
3452 else
3453 getExtInfo()->QualifierLoc = QualifierLoc;
John McCallb6217662010-03-15 10:12:16 +00003454 }
3455 }
3456}
3457
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003458void TagDecl::setTemplateParameterListsInfo(ASTContext &Context,
3459 unsigned NumTPLists,
3460 TemplateParameterList **TPLists) {
3461 assert(NumTPLists > 0);
3462 // Make sure the extended decl info is allocated.
3463 if (!hasExtInfo())
3464 // Allocate external info struct.
David Majnemeraa824612013-09-17 23:57:10 +00003465 NamedDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00003466 // Set the template parameter lists info.
3467 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists);
3468}
3469
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003470//===----------------------------------------------------------------------===//
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003471// EnumDecl Implementation
3472//===----------------------------------------------------------------------===//
3473
David Blaikie99ba9e32011-12-20 02:48:34 +00003474void EnumDecl::anchor() { }
3475
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00003476EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
3477 SourceLocation StartLoc, SourceLocation IdLoc,
3478 IdentifierInfo *Id,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +00003479 EnumDecl *PrevDecl, bool IsScoped,
3480 bool IsScopedUsingClassTag, bool IsFixed) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003481 EnumDecl *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl,
Stephen Hines651f13c2014-04-23 16:59:28 -07003482 IsScoped, IsScopedUsingClassTag,
3483 IsFixed);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003484 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003485 C.getTypeDeclType(Enum, PrevDecl);
3486 return Enum;
3487}
3488
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003489EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003490 EnumDecl *Enum =
3491 new (C, ID) EnumDecl(C, nullptr, SourceLocation(), SourceLocation(),
3492 nullptr, nullptr, false, false, false);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003493 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3494 return Enum;
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00003495}
3496
Stephen Hines651f13c2014-04-23 16:59:28 -07003497SourceRange EnumDecl::getIntegerTypeRange() const {
3498 if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
3499 return TI->getTypeLoc().getSourceRange();
3500 return SourceRange();
3501}
3502
Douglas Gregor838db382010-02-11 01:19:42 +00003503void EnumDecl::completeDefinition(QualType NewType,
John McCall1b5a6182010-05-06 08:49:23 +00003504 QualType NewPromotionType,
3505 unsigned NumPositiveBits,
3506 unsigned NumNegativeBits) {
John McCall5e1cdac2011-10-07 06:10:15 +00003507 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor1274ccd2010-10-08 23:50:27 +00003508 if (!IntegerType)
3509 IntegerType = NewType.getTypePtr();
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003510 PromotionType = NewPromotionType;
John McCall1b5a6182010-05-06 08:49:23 +00003511 setNumPositiveBits(NumPositiveBits);
3512 setNumNegativeBits(NumNegativeBits);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003513 TagDecl::completeDefinition();
3514}
3515
Richard Smith1af83c42012-03-23 03:33:32 +00003516TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
3517 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
3518 return MSI->getTemplateSpecializationKind();
3519
3520 return TSK_Undeclared;
3521}
3522
3523void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3524 SourceLocation PointOfInstantiation) {
3525 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
3526 assert(MSI && "Not an instantiated member enumeration?");
3527 MSI->setTemplateSpecializationKind(TSK);
3528 if (TSK != TSK_ExplicitSpecialization &&
3529 PointOfInstantiation.isValid() &&
3530 MSI->getPointOfInstantiation().isInvalid())
3531 MSI->setPointOfInstantiation(PointOfInstantiation);
3532}
3533
Richard Smithf1c66b42012-03-14 23:13:10 +00003534EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
3535 if (SpecializationInfo)
3536 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
3537
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003538 return nullptr;
Richard Smithf1c66b42012-03-14 23:13:10 +00003539}
3540
3541void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
3542 TemplateSpecializationKind TSK) {
3543 assert(!SpecializationInfo && "Member enum is already a specialization");
3544 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
3545}
3546
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003547//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +00003548// RecordDecl Implementation
3549//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00003550
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003551RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
3552 DeclContext *DC, SourceLocation StartLoc,
3553 SourceLocation IdLoc, IdentifierInfo *Id,
3554 RecordDecl *PrevDecl)
3555 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
Ted Kremenek63597922008-09-02 21:12:32 +00003556 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003557 AnonymousStructOrUnion = false;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003558 HasObjectMember = false;
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +00003559 HasVolatileMember = false;
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003560 LoadedFieldsFromExternalStorage = false;
Ted Kremenek63597922008-09-02 21:12:32 +00003561 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +00003562}
3563
Jay Foad4ba2a172011-01-12 09:06:06 +00003564RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00003565 SourceLocation StartLoc, SourceLocation IdLoc,
3566 IdentifierInfo *Id, RecordDecl* PrevDecl) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003567 RecordDecl *R = new (C, DC) RecordDecl(Record, TK, C, DC,
3568 StartLoc, IdLoc, Id, PrevDecl);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003569 R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3570
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003571 C.getTypeDeclType(R, PrevDecl);
3572 return R;
Ted Kremenek63597922008-09-02 21:12:32 +00003573}
3574
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003575RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003576 RecordDecl *R =
3577 new (C, ID) RecordDecl(Record, TTK_Struct, C, nullptr, SourceLocation(),
3578 SourceLocation(), nullptr, nullptr);
Douglas Gregor6bd99292013-02-09 01:35:03 +00003579 R->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3580 return R;
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00003581}
3582
Douglas Gregorc9b5b402009-03-25 15:59:44 +00003583bool RecordDecl::isInjectedClassName() const {
Mike Stump1eb44332009-09-09 15:08:12 +00003584 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregorc9b5b402009-03-25 15:59:44 +00003585 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
3586}
3587
Stephen Hines176edba2014-12-01 14:53:08 -08003588bool RecordDecl::isLambda() const {
3589 if (auto RD = dyn_cast<CXXRecordDecl>(this))
3590 return RD->isLambda();
3591 return false;
3592}
3593
3594bool RecordDecl::isCapturedRecord() const {
3595 return hasAttr<CapturedRecordAttr>();
3596}
3597
3598void RecordDecl::setCapturedRecord() {
3599 addAttr(CapturedRecordAttr::CreateImplicit(getASTContext()));
3600}
3601
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003602RecordDecl::field_iterator RecordDecl::field_begin() const {
3603 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage)
3604 LoadFieldsFromExternalStorage();
3605
3606 return field_iterator(decl_iterator(FirstDecl));
3607}
3608
Douglas Gregorda2142f2011-02-19 18:51:44 +00003609/// completeDefinition - Notes that the definition of this type is now
3610/// complete.
3611void RecordDecl::completeDefinition() {
John McCall5e1cdac2011-10-07 06:10:15 +00003612 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorda2142f2011-02-19 18:51:44 +00003613 TagDecl::completeDefinition();
3614}
3615
Eli Friedman5f608ae2012-10-12 23:29:20 +00003616/// isMsStruct - Get whether or not this record uses ms_struct layout.
3617/// This which can be turned on with an attribute, pragma, or the
3618/// -mms-bitfields command-line option.
3619bool RecordDecl::isMsStruct(const ASTContext &C) const {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003620 return hasAttr<MSStructAttr>() || C.getLangOpts().MSBitfields == 1;
Eli Friedman5f608ae2012-10-12 23:29:20 +00003621}
3622
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003623static bool isFieldOrIndirectField(Decl::Kind K) {
3624 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
3625}
3626
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003627void RecordDecl::LoadFieldsFromExternalStorage() const {
3628 ExternalASTSource *Source = getASTContext().getExternalSource();
3629 assert(hasExternalLexicalStorage() && Source && "No external storage?");
3630
3631 // Notify that we have a RecordDecl doing some initialization.
3632 ExternalASTSource::Deserializing TheFields(Source);
3633
Chris Lattner5f9e2722011-07-23 10:55:15 +00003634 SmallVector<Decl*, 64> Decls;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003635 LoadedFieldsFromExternalStorage = true;
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003636 switch (Source->FindExternalLexicalDecls(this, isFieldOrIndirectField,
3637 Decls)) {
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003638 case ELR_Success:
3639 break;
3640
3641 case ELR_AlreadyLoaded:
3642 case ELR_Failure:
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003643 return;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00003644 }
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003645
3646#ifndef NDEBUG
3647 // Check that all decls we got were FieldDecls.
3648 for (unsigned i=0, e=Decls.size(); i != e; ++i)
Argyrios Kyrtzidis22cd9ac2012-09-10 22:04:22 +00003649 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003650#endif
3651
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003652 if (Decls.empty())
3653 return;
3654
Stephen Hines651f13c2014-04-23 16:59:28 -07003655 std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
Argyrios Kyrtzidisec2ec1f2011-10-07 21:55:43 +00003656 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00003657}
3658
Stephen Hines176edba2014-12-01 14:53:08 -08003659bool RecordDecl::mayInsertExtraPadding(bool EmitRemark) const {
3660 ASTContext &Context = getASTContext();
3661 if (!Context.getLangOpts().Sanitize.has(SanitizerKind::Address) ||
3662 !Context.getLangOpts().SanitizeAddressFieldPadding)
3663 return false;
3664 const auto &Blacklist = Context.getSanitizerBlacklist();
3665 const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this);
3666 // We may be able to relax some of these requirements.
3667 int ReasonToReject = -1;
3668 if (!CXXRD || CXXRD->isExternCContext())
3669 ReasonToReject = 0; // is not C++.
3670 else if (CXXRD->hasAttr<PackedAttr>())
3671 ReasonToReject = 1; // is packed.
3672 else if (CXXRD->isUnion())
3673 ReasonToReject = 2; // is a union.
3674 else if (CXXRD->isTriviallyCopyable())
3675 ReasonToReject = 3; // is trivially copyable.
3676 else if (CXXRD->hasTrivialDestructor())
3677 ReasonToReject = 4; // has trivial destructor.
3678 else if (CXXRD->isStandardLayout())
3679 ReasonToReject = 5; // is standard layout.
3680 else if (Blacklist.isBlacklistedLocation(getLocation(), "field-padding"))
3681 ReasonToReject = 6; // is in a blacklisted file.
3682 else if (Blacklist.isBlacklistedType(getQualifiedNameAsString(),
3683 "field-padding"))
3684 ReasonToReject = 7; // is blacklisted.
3685
3686 if (EmitRemark) {
3687 if (ReasonToReject >= 0)
3688 Context.getDiagnostics().Report(
3689 getLocation(),
3690 diag::remark_sanitize_address_insert_extra_padding_rejected)
3691 << getQualifiedNameAsString() << ReasonToReject;
3692 else
3693 Context.getDiagnostics().Report(
3694 getLocation(),
3695 diag::remark_sanitize_address_insert_extra_padding_accepted)
3696 << getQualifiedNameAsString();
3697 }
3698 return ReasonToReject < 0;
3699}
3700
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003701const FieldDecl *RecordDecl::findFirstNamedDataMember() const {
3702 for (const auto *I : fields()) {
3703 if (I->getIdentifier())
3704 return I;
3705
3706 if (const RecordType *RT = I->getType()->getAs<RecordType>())
3707 if (const FieldDecl *NamedDataMember =
3708 RT->getDecl()->findFirstNamedDataMember())
3709 return NamedDataMember;
3710 }
3711
3712 // We didn't find a named data member.
3713 return nullptr;
3714}
3715
3716
Steve Naroff56ee6892008-10-08 17:01:13 +00003717//===----------------------------------------------------------------------===//
3718// BlockDecl Implementation
3719//===----------------------------------------------------------------------===//
3720
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003721void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003722 assert(!ParamInfo && "Already has param info!");
Mike Stump1eb44332009-09-09 15:08:12 +00003723
Steve Naroffe78b8092009-03-13 16:56:44 +00003724 // Zero params -> null pointer.
David Blaikie4278c652011-09-21 18:16:56 +00003725 if (!NewParamInfo.empty()) {
3726 NumParams = NewParamInfo.size();
3727 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
3728 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffe78b8092009-03-13 16:56:44 +00003729 }
3730}
3731
John McCall6b5a61b2011-02-07 10:33:21 +00003732void BlockDecl::setCaptures(ASTContext &Context,
3733 const Capture *begin,
3734 const Capture *end,
3735 bool capturesCXXThis) {
John McCall469a1eb2011-02-02 13:00:07 +00003736 CapturesCXXThis = capturesCXXThis;
3737
3738 if (begin == end) {
John McCall6b5a61b2011-02-07 10:33:21 +00003739 NumCaptures = 0;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003740 Captures = nullptr;
John McCall469a1eb2011-02-02 13:00:07 +00003741 return;
3742 }
3743
John McCall6b5a61b2011-02-07 10:33:21 +00003744 NumCaptures = end - begin;
3745
3746 // Avoid new Capture[] because we don't want to provide a default
3747 // constructor.
3748 size_t allocationSize = NumCaptures * sizeof(Capture);
3749 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*));
3750 memcpy(buffer, begin, allocationSize);
3751 Captures = static_cast<Capture*>(buffer);
Steve Naroffe78b8092009-03-13 16:56:44 +00003752}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003753
John McCall204e1332011-06-15 22:51:16 +00003754bool BlockDecl::capturesVariable(const VarDecl *variable) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07003755 for (const auto &I : captures())
John McCall204e1332011-06-15 22:51:16 +00003756 // Only auto vars can be captured, so no redeclaration worries.
Stephen Hines651f13c2014-04-23 16:59:28 -07003757 if (I.getVariable() == variable)
John McCall204e1332011-06-15 22:51:16 +00003758 return true;
3759
3760 return false;
3761}
3762
Douglas Gregor2fcbcef2010-12-21 16:27:07 +00003763SourceRange BlockDecl::getSourceRange() const {
3764 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
3765}
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003766
3767//===----------------------------------------------------------------------===//
3768// Other Decl Allocation/Deallocation Method Implementations
3769//===----------------------------------------------------------------------===//
3770
David Blaikie99ba9e32011-12-20 02:48:34 +00003771void TranslationUnitDecl::anchor() { }
3772
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003773TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003774 return new (C, (DeclContext *)nullptr) TranslationUnitDecl(C);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003775}
3776
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07003777void ExternCContextDecl::anchor() { }
3778
3779ExternCContextDecl *ExternCContextDecl::Create(const ASTContext &C,
3780 TranslationUnitDecl *DC) {
3781 return new (C, DC) ExternCContextDecl(DC);
3782}
3783
David Blaikie99ba9e32011-12-20 02:48:34 +00003784void LabelDecl::anchor() { }
3785
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003786LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara67843042011-03-05 18:21:20 +00003787 SourceLocation IdentL, IdentifierInfo *II) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003788 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
Abramo Bagnara67843042011-03-05 18:21:20 +00003789}
3790
3791LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
3792 SourceLocation IdentL, IdentifierInfo *II,
3793 SourceLocation GnuLabelL) {
3794 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003795 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, GnuLabelL);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003796}
3797
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003798LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003799 return new (C, ID) LabelDecl(nullptr, SourceLocation(), nullptr, nullptr,
3800 SourceLocation());
Douglas Gregor06c91932010-10-27 19:49:05 +00003801}
3802
Stephen Hines176edba2014-12-01 14:53:08 -08003803void LabelDecl::setMSAsmLabel(StringRef Name) {
3804 char *Buffer = new (getASTContext(), 1) char[Name.size() + 1];
3805 memcpy(Buffer, Name.data(), Name.size());
3806 Buffer[Name.size()] = '\0';
3807 MSAsmName = Buffer;
3808}
3809
David Blaikie99ba9e32011-12-20 02:48:34 +00003810void ValueDecl::anchor() { }
3811
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +00003812bool ValueDecl::isWeak() const {
Stephen Hines651f13c2014-04-23 16:59:28 -07003813 for (const auto *I : attrs())
3814 if (isa<WeakAttr>(I) || isa<WeakRefAttr>(I))
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +00003815 return true;
3816
3817 return isWeakImported();
3818}
3819
David Blaikie99ba9e32011-12-20 02:48:34 +00003820void ImplicitParamDecl::anchor() { }
3821
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003822ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003823 SourceLocation IdLoc,
3824 IdentifierInfo *Id,
3825 QualType Type) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003826 return new (C, DC) ImplicitParamDecl(C, DC, IdLoc, Id, Type);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003827}
3828
Stephen Hines651f13c2014-04-23 16:59:28 -07003829ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003830 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003831 return new (C, ID) ImplicitParamDecl(C, nullptr, SourceLocation(), nullptr,
3832 QualType());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003833}
3834
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003835FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003836 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00003837 const DeclarationNameInfo &NameInfo,
3838 QualType T, TypeSourceInfo *TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003839 StorageClass SC,
Stephen Hines651f13c2014-04-23 16:59:28 -07003840 bool isInlineSpecified,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00003841 bool hasWrittenPrototype,
3842 bool isConstexprSpecified) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003843 FunctionDecl *New =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003844 new (C, DC) FunctionDecl(Function, C, DC, StartLoc, NameInfo, T, TInfo,
3845 SC, isInlineSpecified, isConstexprSpecified);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003846 New->HasWrittenPrototype = hasWrittenPrototype;
3847 return New;
3848}
3849
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003850FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003851 return new (C, ID) FunctionDecl(Function, C, nullptr, SourceLocation(),
3852 DeclarationNameInfo(), QualType(), nullptr,
Stephen Hines651f13c2014-04-23 16:59:28 -07003853 SC_None, false, false);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003854}
3855
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003856BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003857 return new (C, DC) BlockDecl(DC, L);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003858}
3859
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003860BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003861 return new (C, ID) BlockDecl(nullptr, SourceLocation());
John McCall76da55d2013-04-16 07:28:30 +00003862}
3863
Ben Langmuir8c045ac2013-05-03 19:00:33 +00003864CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
3865 unsigned NumParams) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003866 return new (C, DC, NumParams * sizeof(ImplicitParamDecl *))
3867 CapturedDecl(DC, NumParams);
Tareq A. Siraj6afcf882013-04-16 19:37:38 +00003868}
3869
Ben Langmuirdc5be4f2013-05-03 19:20:19 +00003870CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
Stephen Hines651f13c2014-04-23 16:59:28 -07003871 unsigned NumParams) {
3872 return new (C, ID, NumParams * sizeof(ImplicitParamDecl *))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003873 CapturedDecl(nullptr, NumParams);
Ben Langmuirdc5be4f2013-05-03 19:20:19 +00003874}
3875
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003876EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
3877 SourceLocation L,
3878 IdentifierInfo *Id, QualType T,
3879 Expr *E, const llvm::APSInt &V) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003880 return new (C, CD) EnumConstantDecl(CD, L, Id, T, E, V);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003881}
3882
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003883EnumConstantDecl *
3884EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003885 return new (C, ID) EnumConstantDecl(nullptr, SourceLocation(), nullptr,
3886 QualType(), nullptr, llvm::APSInt());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003887}
3888
David Blaikie99ba9e32011-12-20 02:48:34 +00003889void IndirectFieldDecl::anchor() { }
3890
Benjamin Kramerd9811462010-11-21 14:11:41 +00003891IndirectFieldDecl *
3892IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
3893 IdentifierInfo *Id, QualType T, NamedDecl **CH,
3894 unsigned CHS) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003895 return new (C, DC) IndirectFieldDecl(DC, L, Id, T, CH, CHS);
Francois Pichet87c2e122010-11-21 06:08:52 +00003896}
3897
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003898IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
3899 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003900 return new (C, ID) IndirectFieldDecl(nullptr, SourceLocation(),
3901 DeclarationName(), QualType(), nullptr,
3902 0);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003903}
3904
Douglas Gregor8e7139c2010-09-01 20:41:53 +00003905SourceRange EnumConstantDecl::getSourceRange() const {
3906 SourceLocation End = getLocation();
3907 if (Init)
3908 End = Init->getLocEnd();
3909 return SourceRange(getLocation(), End);
3910}
3911
David Blaikie99ba9e32011-12-20 02:48:34 +00003912void TypeDecl::anchor() { }
3913
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003914TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara344577e2011-03-06 15:48:19 +00003915 SourceLocation StartLoc, SourceLocation IdLoc,
3916 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003917 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003918}
3919
David Blaikie99ba9e32011-12-20 02:48:34 +00003920void TypedefNameDecl::anchor() { }
3921
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07003922TagDecl *TypedefNameDecl::getAnonDeclWithTypedefName() const {
3923 if (auto *TT = getTypeSourceInfo()->getType()->getAs<TagType>())
3924 if (TT->getDecl()->getTypedefNameForAnonDecl() == this)
3925 return TT->getDecl();
3926
3927 return nullptr;
3928}
3929
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003930TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003931 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(),
3932 nullptr, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003933}
3934
Richard Smith162e1c12011-04-15 14:24:37 +00003935TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
3936 SourceLocation StartLoc,
3937 SourceLocation IdLoc, IdentifierInfo *Id,
3938 TypeSourceInfo *TInfo) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003939 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00003940}
3941
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003942TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003943 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(),
3944 SourceLocation(), nullptr, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003945}
3946
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00003947SourceRange TypedefDecl::getSourceRange() const {
3948 SourceLocation RangeEnd = getLocation();
3949 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
3950 if (typeIsPostfix(TInfo->getType()))
3951 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
3952 }
3953 return SourceRange(getLocStart(), RangeEnd);
3954}
3955
Richard Smith162e1c12011-04-15 14:24:37 +00003956SourceRange TypeAliasDecl::getSourceRange() const {
3957 SourceLocation RangeEnd = getLocStart();
3958 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
3959 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
3960 return SourceRange(getLocStart(), RangeEnd);
3961}
3962
David Blaikie99ba9e32011-12-20 02:48:34 +00003963void FileScopeAsmDecl::anchor() { }
3964
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003965FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara21e006e2011-03-03 14:20:18 +00003966 StringLiteral *Str,
3967 SourceLocation AsmLoc,
3968 SourceLocation RParenLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003969 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl7783bfc2010-01-26 22:01:41 +00003970}
Douglas Gregor15de72c2011-12-02 23:23:56 +00003971
Stephen Hines651f13c2014-04-23 16:59:28 -07003972FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003973 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003974 return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(),
3975 SourceLocation());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00003976}
3977
Michael Han684aa732013-02-22 17:15:32 +00003978void EmptyDecl::anchor() {}
3979
3980EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003981 return new (C, DC) EmptyDecl(DC, L);
Michael Han684aa732013-02-22 17:15:32 +00003982}
3983
3984EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003985 return new (C, ID) EmptyDecl(nullptr, SourceLocation());
Michael Han684aa732013-02-22 17:15:32 +00003986}
3987
Douglas Gregor15de72c2011-12-02 23:23:56 +00003988//===----------------------------------------------------------------------===//
3989// ImportDecl Implementation
3990//===----------------------------------------------------------------------===//
3991
3992/// \brief Retrieve the number of module identifiers needed to name the given
3993/// module.
3994static unsigned getNumModuleIdentifiers(Module *Mod) {
3995 unsigned Result = 1;
3996 while (Mod->Parent) {
3997 Mod = Mod->Parent;
3998 ++Result;
3999 }
4000 return Result;
4001}
4002
Douglas Gregor5948ae12012-01-03 18:04:46 +00004003ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00004004 Module *Imported,
4005 ArrayRef<SourceLocation> IdentifierLocs)
Douglas Gregor5948ae12012-01-03 18:04:46 +00004006 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true),
Douglas Gregore6649772011-12-03 00:30:27 +00004007 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00004008{
4009 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
4010 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1);
4011 memcpy(StoredLocs, IdentifierLocs.data(),
4012 IdentifierLocs.size() * sizeof(SourceLocation));
4013}
4014
Douglas Gregor5948ae12012-01-03 18:04:46 +00004015ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregor15de72c2011-12-02 23:23:56 +00004016 Module *Imported, SourceLocation EndLoc)
Douglas Gregor5948ae12012-01-03 18:04:46 +00004017 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false),
Douglas Gregore6649772011-12-03 00:30:27 +00004018 NextLocalImport()
Douglas Gregor15de72c2011-12-02 23:23:56 +00004019{
4020 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc;
4021}
4022
Stephen Hines651f13c2014-04-23 16:59:28 -07004023ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00004024 SourceLocation StartLoc, Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00004025 ArrayRef<SourceLocation> IdentifierLocs) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004026 return new (C, DC, IdentifierLocs.size() * sizeof(SourceLocation))
4027 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregor15de72c2011-12-02 23:23:56 +00004028}
4029
Stephen Hines651f13c2014-04-23 16:59:28 -07004030ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor5948ae12012-01-03 18:04:46 +00004031 SourceLocation StartLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07004032 Module *Imported,
Douglas Gregor15de72c2011-12-02 23:23:56 +00004033 SourceLocation EndLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004034 ImportDecl *Import =
4035 new (C, DC, sizeof(SourceLocation)) ImportDecl(DC, StartLoc,
4036 Imported, EndLoc);
Douglas Gregor15de72c2011-12-02 23:23:56 +00004037 Import->setImplicit();
4038 return Import;
4039}
4040
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00004041ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
4042 unsigned NumLocations) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004043 return new (C, ID, NumLocations * sizeof(SourceLocation))
4044 ImportDecl(EmptyShell());
Douglas Gregor15de72c2011-12-02 23:23:56 +00004045}
4046
4047ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
4048 if (!ImportedAndComplete.getInt())
Dmitri Gribenko55431692013-05-05 00:41:58 +00004049 return None;
Douglas Gregor15de72c2011-12-02 23:23:56 +00004050
4051 const SourceLocation *StoredLocs
4052 = reinterpret_cast<const SourceLocation *>(this + 1);
Stephen Hines176edba2014-12-01 14:53:08 -08004053 return llvm::makeArrayRef(StoredLocs,
4054 getNumModuleIdentifiers(getImportedModule()));
Douglas Gregor15de72c2011-12-02 23:23:56 +00004055}
4056
4057SourceRange ImportDecl::getSourceRange() const {
4058 if (!ImportedAndComplete.getInt())
4059 return SourceRange(getLocation(),
4060 *reinterpret_cast<const SourceLocation *>(this + 1));
4061
4062 return SourceRange(getLocation(), getIdentifierLocs().back());
4063}