blob: dae4af8bb2490e2e89776cbc92e1988b382fa466 [file] [log] [blame]
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001//===- Decl.cpp - Declaration AST Node Implementation ---------------------===//
Chris Lattnera11999d2006-10-15 22:34:45 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattnera11999d2006-10-15 22:34:45 +00006//
7//===----------------------------------------------------------------------===//
8//
Argyrios Kyrtzidis63018842008-06-04 13:04:04 +00009// This file implements the Decl subclasses.
Chris Lattnera11999d2006-10-15 22:34:45 +000010//
11//===----------------------------------------------------------------------===//
12
13#include "clang/AST/Decl.h"
George Burgess IV99db3ea2017-08-09 04:02:49 +000014#include "Linkage.h"
Chris Lattnera7b32872008-03-15 06:12:44 +000015#include "clang/AST/ASTContext.h"
Richard Trieu0f25c742018-12-14 03:35:10 +000016#include "clang/AST/ASTDiagnostic.h"
Faisal Valib90b2112014-04-03 16:32:21 +000017#include "clang/AST/ASTLambda.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000018#include "clang/AST/ASTMutationListener.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000019#include "clang/AST/CanonicalType.h"
20#include "clang/AST/DeclBase.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/AST/DeclCXX.h"
22#include "clang/AST/DeclObjC.h"
Alexey Bataev94a4f0c2016-03-03 05:21:39 +000023#include "clang/AST/DeclOpenMP.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/AST/DeclTemplate.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000025#include "clang/AST/DeclarationName.h"
Nuno Lopes394ec982008-12-17 23:39:55 +000026#include "clang/AST/Expr.h"
Anders Carlsson714d0962009-12-15 19:16:31 +000027#include "clang/AST/ExprCXX.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000028#include "clang/AST/ExternalASTSource.h"
Richard Trieue6caa262017-12-23 00:41:01 +000029#include "clang/AST/ODRHash.h"
Jordan Rose1e879d82018-03-23 00:07:18 +000030#include "clang/AST/PrettyDeclStackTrace.h"
Douglas Gregor7de59662009-05-29 20:38:28 +000031#include "clang/AST/PrettyPrinter.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000032#include "clang/AST/Redeclarable.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000033#include "clang/AST/Stmt.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000034#include "clang/AST/TemplateBase.h"
35#include "clang/AST/Type.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000036#include "clang/AST/TypeLoc.h"
Chris Lattner15ba9492009-06-14 01:54:56 +000037#include "clang/Basic/Builtins.h"
Daniel Dunbar221fa942008-08-11 04:54:23 +000038#include "clang/Basic/IdentifierTable.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000039#include "clang/Basic/LLVM.h"
40#include "clang/Basic/LangOptions.h"
41#include "clang/Basic/Linkage.h"
Douglas Gregorba345522011-12-02 23:23:56 +000042#include "clang/Basic/Module.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000043#include "clang/Basic/PartialDiagnostic.h"
44#include "clang/Basic/SanitizerBlacklist.h"
45#include "clang/Basic/Sanitizers.h"
46#include "clang/Basic/SourceLocation.h"
47#include "clang/Basic/SourceManager.h"
Abramo Bagnara6150c882010-05-11 21:36:43 +000048#include "clang/Basic/Specifiers.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000049#include "clang/Basic/TargetCXXABI.h"
Douglas Gregor1baf38f2011-03-26 12:10:19 +000050#include "clang/Basic/TargetInfo.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000051#include "clang/Basic/Visibility.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000052#include "llvm/ADT/APSInt.h"
53#include "llvm/ADT/ArrayRef.h"
54#include "llvm/ADT/None.h"
55#include "llvm/ADT/Optional.h"
56#include "llvm/ADT/STLExtras.h"
57#include "llvm/ADT/SmallVector.h"
58#include "llvm/ADT/StringSwitch.h"
59#include "llvm/ADT/StringRef.h"
60#include "llvm/ADT/Triple.h"
61#include "llvm/Support/Casting.h"
John McCall06f6fe8d2009-09-04 01:14:41 +000062#include "llvm/Support/ErrorHandling.h"
Eugene Zelenkode0215c2017-11-13 23:01:27 +000063#include "llvm/Support/raw_ostream.h"
David Blaikie9c70e042011-09-21 18:16:56 +000064#include <algorithm>
Eugene Zelenkode0215c2017-11-13 23:01:27 +000065#include <cassert>
66#include <cstddef>
67#include <cstring>
68#include <memory>
69#include <string>
70#include <tuple>
71#include <type_traits>
David Blaikie9c70e042011-09-21 18:16:56 +000072
Chris Lattner6d9a6852006-10-25 05:11:20 +000073using namespace clang;
Chris Lattnera11999d2006-10-15 22:34:45 +000074
Richard Smith0b87e072013-10-07 08:02:11 +000075Decl *clang::getPrimaryMergedDecl(Decl *D) {
76 return D->getASTContext().getPrimaryMergedDecl(D);
77}
78
Jordan Rose1e879d82018-03-23 00:07:18 +000079void PrettyDeclStackTraceEntry::print(raw_ostream &OS) const {
80 SourceLocation Loc = this->Loc;
81 if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation();
82 if (Loc.isValid()) {
83 Loc.print(OS, Context.getSourceManager());
84 OS << ": ";
85 }
86 OS << Message;
87
88 if (auto *ND = dyn_cast_or_null<NamedDecl>(TheDecl)) {
89 OS << " '";
90 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), true);
91 OS << "'";
92 }
93
94 OS << '\n';
95}
96
Richard Smith73b21d82014-09-03 02:33:22 +000097// Defined here so that it can be inlined into its direct callers.
98bool Decl::isOutOfLine() const {
99 return !getLexicalDeclContext()->Equals(getDeclContext());
100}
101
Richard Smith42413142015-05-15 20:05:43 +0000102TranslationUnitDecl::TranslationUnitDecl(ASTContext &ctx)
103 : Decl(TranslationUnit, nullptr, SourceLocation()),
Eugene Zelenkode0215c2017-11-13 23:01:27 +0000104 DeclContext(TranslationUnit), Ctx(ctx) {}
Richard Smith42413142015-05-15 20:05:43 +0000105
Chris Lattner88f70d62008-03-15 05:43:15 +0000106//===----------------------------------------------------------------------===//
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000107// NamedDecl Implementation
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +0000108//===----------------------------------------------------------------------===//
109
John McCalldf25c432013-02-16 00:17:33 +0000110// Visibility rules aren't rigorously externally specified, but here
111// are the basic principles behind what we implement:
112//
113// 1. An explicit visibility attribute is generally a direct expression
114// of the user's intent and should be honored. Only the innermost
115// visibility attribute applies. If no visibility attribute applies,
116// global visibility settings are considered.
117//
118// 2. There is one caveat to the above: on or in a template pattern,
119// an explicit visibility attribute is just a default rule, and
120// visibility can be decreased by the visibility of template
121// arguments. But this, too, has an exception: an attribute on an
122// explicit specialization or instantiation causes all the visibility
123// restrictions of the template arguments to be ignored.
124//
125// 3. A variable that does not otherwise have explicit visibility can
126// be restricted by the visibility of its type.
127//
128// 4. A visibility restriction is explicit if it comes from an
129// attribute (or something like it), not a global visibility setting.
130// When emitting a reference to an external symbol, visibility
131// restrictions are ignored unless they are explicit.
John McCalld041a9b2013-02-20 01:54:26 +0000132//
133// 5. When computing the visibility of a non-type, including a
134// non-type member of a class, only non-type visibility restrictions
135// are considered: the 'visibility' attribute, global value-visibility
136// settings, and a few special cases like __private_extern.
137//
138// 6. When computing the visibility of a type, including a type member
139// of a class, only type visibility restrictions are considered:
140// the 'type_visibility' attribute and global type-visibility settings.
141// However, a 'visibility' attribute counts as a 'type_visibility'
142// attribute on any declaration that only has the former.
143//
144// The visibility of a "secondary" entity, like a template argument,
145// is computed using the kind of that entity, not the kind of the
146// primary entity for which we are computing visibility. For example,
147// the visibility of a specialization of either of these templates:
148// template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X);
149// template <class T, bool (&compare)(T, X)> class matcher;
150// is restricted according to the type visibility of the argument 'T',
151// the type visibility of 'bool(&)(T,X)', and the value visibility of
152// the argument function 'compare'. That 'has_match' is a value
153// and 'matcher' is a type only matters when looking for attributes
154// and settings from the immediate context.
John McCalldf25c432013-02-16 00:17:33 +0000155
John McCalld041a9b2013-02-20 01:54:26 +0000156/// Does this computation kind permit us to consider additional
157/// visibility settings from attributes and the like?
158static bool hasExplicitVisibilityAlready(LVComputationKind computation) {
Richard Smithfbe7b462017-09-22 02:22:32 +0000159 return computation.IgnoreExplicitVisibility;
John McCalld041a9b2013-02-20 01:54:26 +0000160}
161
162/// Given an LVComputationKind, return one of the same type/value sort
163/// that records that it already has explicit visibility.
164static LVComputationKind
Richard Smithfbe7b462017-09-22 02:22:32 +0000165withExplicitVisibilityAlready(LVComputationKind Kind) {
166 Kind.IgnoreExplicitVisibility = true;
167 return Kind;
John McCalld041a9b2013-02-20 01:54:26 +0000168}
169
David Blaikie05785d12013-02-20 22:23:23 +0000170static Optional<Visibility> getExplicitVisibility(const NamedDecl *D,
171 LVComputationKind kind) {
Richard Smithfbe7b462017-09-22 02:22:32 +0000172 assert(!kind.IgnoreExplicitVisibility &&
John McCalld041a9b2013-02-20 01:54:26 +0000173 "asking for explicit visibility when we shouldn't be");
Richard Smithfbe7b462017-09-22 02:22:32 +0000174 return D->getExplicitVisibility(kind.getExplicitVisibilityKind());
John McCalld041a9b2013-02-20 01:54:26 +0000175}
176
John McCalldf25c432013-02-16 00:17:33 +0000177/// Is the given declaration a "type" or a "value" for the purposes of
178/// visibility computation?
179static bool usesTypeVisibility(const NamedDecl *D) {
John McCallb4a99d32013-02-19 01:57:35 +0000180 return isa<TypeDecl>(D) ||
181 isa<ClassTemplateDecl>(D) ||
182 isa<ObjCInterfaceDecl>(D);
John McCalldf25c432013-02-16 00:17:33 +0000183}
184
John McCall5f46c482013-02-21 23:42:58 +0000185/// Does the given declaration have member specialization information,
186/// and if so, is it an explicit specialization?
187template <class T> static typename
Benjamin Kramered2f4762014-03-07 14:30:23 +0000188std::enable_if<!std::is_base_of<RedeclarableTemplateDecl, T>::value, bool>::type
John McCall5f46c482013-02-21 23:42:58 +0000189isExplicitMemberSpecialization(const T *D) {
190 if (const MemberSpecializationInfo *member =
191 D->getMemberSpecializationInfo()) {
192 return member->isExplicitSpecialization();
193 }
194 return false;
195}
196
197/// For templates, this question is easier: a member template can't be
198/// explicitly instantiated, so there's a single bit indicating whether
199/// or not this is an explicit member specialization.
200static bool isExplicitMemberSpecialization(const RedeclarableTemplateDecl *D) {
201 return D->isMemberSpecialization();
202}
203
John McCalld041a9b2013-02-20 01:54:26 +0000204/// Given a visibility attribute, return the explicit visibility
205/// associated with it.
206template <class T>
207static Visibility getVisibilityFromAttr(const T *attr) {
208 switch (attr->getVisibility()) {
209 case T::Default:
210 return DefaultVisibility;
211 case T::Hidden:
212 return HiddenVisibility;
213 case T::Protected:
214 return ProtectedVisibility;
215 }
216 llvm_unreachable("bad visibility kind");
217}
218
John McCalldf25c432013-02-16 00:17:33 +0000219/// Return the explicit visibility of the given declaration.
David Blaikie05785d12013-02-20 22:23:23 +0000220static Optional<Visibility> getVisibilityOf(const NamedDecl *D,
John McCalld041a9b2013-02-20 01:54:26 +0000221 NamedDecl::ExplicitVisibilityKind kind) {
222 // If we're ultimately computing the visibility of a type, look for
223 // a 'type_visibility' attribute before looking for 'visibility'.
224 if (kind == NamedDecl::VisibilityForType) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000225 if (const auto *A = D->getAttr<TypeVisibilityAttr>()) {
John McCalld041a9b2013-02-20 01:54:26 +0000226 return getVisibilityFromAttr(A);
227 }
228 }
229
Douglas Gregor1baf38f2011-03-26 12:10:19 +0000230 // If this declaration has an explicit visibility attribute, use it.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000231 if (const auto *A = D->getAttr<VisibilityAttr>()) {
John McCalld041a9b2013-02-20 01:54:26 +0000232 return getVisibilityFromAttr(A);
John McCall457a04e2010-10-22 21:05:15 +0000233 }
Douglas Gregor1baf38f2011-03-26 12:10:19 +0000234
David Blaikie7a30dc52013-02-21 01:47:18 +0000235 return None;
John McCall457a04e2010-10-22 21:05:15 +0000236}
237
George Burgess IV99db3ea2017-08-09 04:02:49 +0000238LinkageInfo LinkageComputer::getLVForType(const Type &T,
239 LVComputationKind computation) {
Richard Smithfbe7b462017-09-22 02:22:32 +0000240 if (computation.IgnoreAllVisibility)
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000241 return LinkageInfo(T.getLinkage(), DefaultVisibility, true);
George Burgess IV35cb4f82017-08-09 04:12:17 +0000242 return getTypeLinkageAndVisibility(&T);
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000243}
244
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000245/// Get the most restrictive linkage for the types in the given
John McCalldf25c432013-02-16 00:17:33 +0000246/// template parameter list. For visibility purposes, template
247/// parameters are part of the signature of a template.
George Burgess IV99db3ea2017-08-09 04:02:49 +0000248LinkageInfo LinkageComputer::getLVForTemplateParameterList(
249 const TemplateParameterList *Params, LVComputationKind computation) {
John McCalldf25c432013-02-16 00:17:33 +0000250 LinkageInfo LV;
David Majnemerc7b85c42014-04-23 05:16:48 +0000251 for (const NamedDecl *P : *Params) {
John McCalldf25c432013-02-16 00:17:33 +0000252 // Template type parameters are the most common and never
253 // contribute to visibility, pack or not.
David Majnemerc7b85c42014-04-23 05:16:48 +0000254 if (isa<TemplateTypeParmDecl>(P))
John McCalldf25c432013-02-16 00:17:33 +0000255 continue;
256
257 // Non-type template parameters can be restricted by the value type, e.g.
258 // template <enum X> class A { ... };
259 // We have to be careful here, though, because we can be dealing with
260 // dependent types.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000261 if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
John McCalldf25c432013-02-16 00:17:33 +0000262 // Handle the non-pack case first.
263 if (!NTTP->isExpandedParameterPack()) {
264 if (!NTTP->getType()->isDependentType()) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000265 LV.merge(getLVForType(*NTTP->getType(), computation));
Douglas Gregor0231d8d2011-01-19 20:10:05 +0000266 }
267 continue;
268 }
Rafael Espindolaeeb9d9f2012-01-02 06:26:22 +0000269
John McCalldf25c432013-02-16 00:17:33 +0000270 // Look at all the types in an expanded pack.
271 for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) {
272 QualType type = NTTP->getExpansionType(i);
273 if (!type->isDependentType())
George Burgess IV35cb4f82017-08-09 04:12:17 +0000274 LV.merge(getTypeLinkageAndVisibility(type));
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000275 }
John McCalldf25c432013-02-16 00:17:33 +0000276 continue;
Douglas Gregor0231d8d2011-01-19 20:10:05 +0000277 }
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000278
John McCalldf25c432013-02-16 00:17:33 +0000279 // Template template parameters can be restricted by their
280 // template parameters, recursively.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000281 const auto *TTP = cast<TemplateTemplateParmDecl>(P);
John McCalldf25c432013-02-16 00:17:33 +0000282
283 // Handle the non-pack case first.
284 if (!TTP->isExpandedParameterPack()) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000285 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(),
286 computation));
John McCalldf25c432013-02-16 00:17:33 +0000287 continue;
288 }
289
290 // Look at all expansions in an expanded pack.
291 for (unsigned i = 0, n = TTP->getNumExpansionTemplateParameters();
292 i != n; ++i) {
293 LV.merge(getLVForTemplateParameterList(
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000294 TTP->getExpansionTemplateParameters(i), computation));
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000295 }
296 }
297
John McCall457a04e2010-10-22 21:05:15 +0000298 return LV;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000299}
300
Eli Friedman7e346a82013-07-01 20:22:57 +0000301static const Decl *getOutermostFuncOrBlockContext(const Decl *D) {
Craig Topper36250ad2014-05-12 05:36:57 +0000302 const Decl *Ret = nullptr;
Rafael Espindolac1b38a22013-05-16 04:30:21 +0000303 const DeclContext *DC = D->getDeclContext();
304 while (DC->getDeclKind() != Decl::TranslationUnit) {
Eli Friedman7e346a82013-07-01 20:22:57 +0000305 if (isa<FunctionDecl>(DC) || isa<BlockDecl>(DC))
306 Ret = cast<Decl>(DC);
Rafael Espindolac1b38a22013-05-16 04:30:21 +0000307 DC = DC->getParent();
308 }
309 return Ret;
310}
311
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000312/// Get the most restrictive linkage for the types and
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000313/// declarations in the given template argument list.
John McCalldf25c432013-02-16 00:17:33 +0000314///
315/// Note that we don't take an LVComputationKind because we always
316/// want to honor the visibility of template arguments in the same way.
George Burgess IV99db3ea2017-08-09 04:02:49 +0000317LinkageInfo
318LinkageComputer::getLVForTemplateArgumentList(ArrayRef<TemplateArgument> Args,
319 LVComputationKind computation) {
John McCalldf25c432013-02-16 00:17:33 +0000320 LinkageInfo LV;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000321
David Majnemerc7b85c42014-04-23 05:16:48 +0000322 for (const TemplateArgument &Arg : Args) {
323 switch (Arg.getKind()) {
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000324 case TemplateArgument::Null:
325 case TemplateArgument::Integral:
326 case TemplateArgument::Expression:
John McCalldf25c432013-02-16 00:17:33 +0000327 continue;
Rafael Espindolaeeb9d9f2012-01-02 06:26:22 +0000328
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000329 case TemplateArgument::Type:
David Majnemerc7b85c42014-04-23 05:16:48 +0000330 LV.merge(getLVForType(*Arg.getAsType(), computation));
John McCalldf25c432013-02-16 00:17:33 +0000331 continue;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000332
George Burgess IV00f70bd2018-03-01 05:43:23 +0000333 case TemplateArgument::Declaration: {
334 const NamedDecl *ND = Arg.getAsDecl();
335 assert(!usesTypeVisibility(ND));
336 LV.merge(getLVForDecl(ND, computation));
John McCalldf25c432013-02-16 00:17:33 +0000337 continue;
George Burgess IV00f70bd2018-03-01 05:43:23 +0000338 }
Eli Friedmanb826a002012-09-26 02:36:12 +0000339
340 case TemplateArgument::NullPtr:
George Burgess IV35cb4f82017-08-09 04:12:17 +0000341 LV.merge(getTypeLinkageAndVisibility(Arg.getNullPtrType()));
John McCalldf25c432013-02-16 00:17:33 +0000342 continue;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000343
344 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000345 case TemplateArgument::TemplateExpansion:
David Majnemerc7b85c42014-04-23 05:16:48 +0000346 if (TemplateDecl *Template =
347 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl())
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000348 LV.merge(getLVForDecl(Template, computation));
John McCalldf25c432013-02-16 00:17:33 +0000349 continue;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000350
351 case TemplateArgument::Pack:
David Majnemerc7b85c42014-04-23 05:16:48 +0000352 LV.merge(getLVForTemplateArgumentList(Arg.getPackAsArray(), computation));
John McCalldf25c432013-02-16 00:17:33 +0000353 continue;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000354 }
John McCalldf25c432013-02-16 00:17:33 +0000355 llvm_unreachable("bad template argument kind");
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000356 }
357
John McCall457a04e2010-10-22 21:05:15 +0000358 return LV;
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000359}
360
George Burgess IV99db3ea2017-08-09 04:02:49 +0000361LinkageInfo
362LinkageComputer::getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
363 LVComputationKind computation) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000364 return getLVForTemplateArgumentList(TArgs.asArray(), computation);
John McCall8823c652010-08-13 08:35:10 +0000365}
366
John McCall5f46c482013-02-21 23:42:58 +0000367static bool shouldConsiderTemplateVisibility(const FunctionDecl *fn,
368 const FunctionTemplateSpecializationInfo *specInfo) {
369 // Include visibility from the template parameters and arguments
370 // only if this is not an explicit instantiation or specialization
371 // with direct explicit visibility. (Implicit instantiations won't
372 // have a direct attribute.)
373 if (!specInfo->isExplicitInstantiationOrSpecialization())
374 return true;
375
376 return !fn->hasAttr<VisibilityAttr>();
377}
378
John McCalldf25c432013-02-16 00:17:33 +0000379/// Merge in template-related linkage and visibility for the given
380/// function template specialization.
381///
382/// We don't need a computation kind here because we can assume
383/// LVForValue.
John McCall5f46c482013-02-21 23:42:58 +0000384///
NAKAMURA Takumi62eae082013-02-22 04:06:28 +0000385/// \param[out] LV the computation to use for the parent
George Burgess IV99db3ea2017-08-09 04:02:49 +0000386void LinkageComputer::mergeTemplateLV(
387 LinkageInfo &LV, const FunctionDecl *fn,
388 const FunctionTemplateSpecializationInfo *specInfo,
389 LVComputationKind computation) {
John McCall5f46c482013-02-21 23:42:58 +0000390 bool considerVisibility =
391 shouldConsiderTemplateVisibility(fn, specInfo);
John McCalldf25c432013-02-16 00:17:33 +0000392
393 // Merge information from the template parameters.
John McCall5f46c482013-02-21 23:42:58 +0000394 FunctionTemplateDecl *temp = specInfo->getTemplate();
John McCalldf25c432013-02-16 00:17:33 +0000395 LinkageInfo tempLV =
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000396 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCalldf25c432013-02-16 00:17:33 +0000397 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
398
399 // Merge information from the template arguments.
400 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000401 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
John McCalldf25c432013-02-16 00:17:33 +0000402 LV.mergeMaybeWithVisibility(argsLV, considerVisibility);
John McCallb8c604a2011-06-27 23:06:04 +0000403}
404
John McCall5f46c482013-02-21 23:42:58 +0000405/// Does the given declaration have a direct visibility attribute
406/// that would match the given rules?
407static bool hasDirectVisibilityAttribute(const NamedDecl *D,
408 LVComputationKind computation) {
Richard Smithfbe7b462017-09-22 02:22:32 +0000409 if (computation.IgnoreAllVisibility)
John McCall5f46c482013-02-21 23:42:58 +0000410 return false;
Richard Smithfbe7b462017-09-22 02:22:32 +0000411
412 return (computation.isTypeVisibility() && D->hasAttr<TypeVisibilityAttr>()) ||
413 D->hasAttr<VisibilityAttr>();
John McCall5f46c482013-02-21 23:42:58 +0000414}
415
John McCalld041a9b2013-02-20 01:54:26 +0000416/// Should we consider visibility associated with the template
417/// arguments and parameters of the given class template specialization?
418static bool shouldConsiderTemplateVisibility(
419 const ClassTemplateSpecializationDecl *spec,
420 LVComputationKind computation) {
John McCalldf25c432013-02-16 00:17:33 +0000421 // Include visibility from the template parameters and arguments
422 // only if this is not an explicit instantiation or specialization
423 // with direct explicit visibility (and note that implicit
424 // instantiations won't have a direct attribute).
425 //
426 // Furthermore, we want to ignore template parameters and arguments
John McCalld041a9b2013-02-20 01:54:26 +0000427 // for an explicit specialization when computing the visibility of a
428 // member thereof with explicit visibility.
John McCalldf25c432013-02-16 00:17:33 +0000429 //
430 // This is a bit complex; let's unpack it.
431 //
432 // An explicit class specialization is an independent, top-level
433 // declaration. As such, if it or any of its members has an
434 // explicit visibility attribute, that must directly express the
435 // user's intent, and we should honor it. The same logic applies to
436 // an explicit instantiation of a member of such a thing.
John McCalld041a9b2013-02-20 01:54:26 +0000437
438 // Fast path: if this is not an explicit instantiation or
439 // specialization, we always want to consider template-related
440 // visibility restrictions.
441 if (!spec->isExplicitInstantiationOrSpecialization())
442 return true;
443
444 // This is the 'member thereof' check.
445 if (spec->isExplicitSpecialization() &&
446 hasExplicitVisibilityAlready(computation))
447 return false;
448
John McCall5f46c482013-02-21 23:42:58 +0000449 return !hasDirectVisibilityAttribute(spec, computation);
John McCalld041a9b2013-02-20 01:54:26 +0000450}
451
452/// Merge in template-related linkage and visibility for the given
453/// class template specialization.
George Burgess IV99db3ea2017-08-09 04:02:49 +0000454void LinkageComputer::mergeTemplateLV(
455 LinkageInfo &LV, const ClassTemplateSpecializationDecl *spec,
456 LVComputationKind computation) {
John McCalld041a9b2013-02-20 01:54:26 +0000457 bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
John McCalldf25c432013-02-16 00:17:33 +0000458
459 // Merge information from the template parameters, but ignore
460 // visibility if we're only considering template arguments.
461
John McCalld041a9b2013-02-20 01:54:26 +0000462 ClassTemplateDecl *temp = spec->getSpecializedTemplate();
John McCalldf25c432013-02-16 00:17:33 +0000463 LinkageInfo tempLV =
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000464 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCalldf25c432013-02-16 00:17:33 +0000465 LV.mergeMaybeWithVisibility(tempLV,
John McCalld041a9b2013-02-20 01:54:26 +0000466 considerVisibility && !hasExplicitVisibilityAlready(computation));
John McCalldf25c432013-02-16 00:17:33 +0000467
468 // Merge information from the template arguments. We ignore
469 // template-argument visibility if we've got an explicit
470 // instantiation with a visibility attribute.
471 const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000472 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
Rafael Espindola503276b2013-05-30 21:23:15 +0000473 if (considerVisibility)
474 LV.mergeVisibility(argsLV);
475 LV.mergeExternalVisibility(argsLV);
John McCallb8c604a2011-06-27 23:06:04 +0000476}
477
Larisse Voufo5899e192014-07-02 23:08:34 +0000478/// Should we consider visibility associated with the template
479/// arguments and parameters of the given variable template
480/// specialization? As usual, follow class template specialization
481/// logic up to initialization.
482static bool shouldConsiderTemplateVisibility(
483 const VarTemplateSpecializationDecl *spec,
484 LVComputationKind computation) {
485 // Include visibility from the template parameters and arguments
486 // only if this is not an explicit instantiation or specialization
487 // with direct explicit visibility (and note that implicit
488 // instantiations won't have a direct attribute).
489 if (!spec->isExplicitInstantiationOrSpecialization())
490 return true;
491
492 // An explicit variable specialization is an independent, top-level
493 // declaration. As such, if it has an explicit visibility attribute,
494 // that must directly express the user's intent, and we should honor
495 // it.
496 if (spec->isExplicitSpecialization() &&
497 hasExplicitVisibilityAlready(computation))
498 return false;
499
500 return !hasDirectVisibilityAttribute(spec, computation);
501}
502
503/// Merge in template-related linkage and visibility for the given
504/// variable template specialization. As usual, follow class template
505/// specialization logic up to initialization.
George Burgess IV99db3ea2017-08-09 04:02:49 +0000506void LinkageComputer::mergeTemplateLV(LinkageInfo &LV,
507 const VarTemplateSpecializationDecl *spec,
508 LVComputationKind computation) {
Larisse Voufo5899e192014-07-02 23:08:34 +0000509 bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
510
511 // Merge information from the template parameters, but ignore
512 // visibility if we're only considering template arguments.
513
514 VarTemplateDecl *temp = spec->getSpecializedTemplate();
515 LinkageInfo tempLV =
516 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
517 LV.mergeMaybeWithVisibility(tempLV,
518 considerVisibility && !hasExplicitVisibilityAlready(computation));
519
520 // Merge information from the template arguments. We ignore
521 // template-argument visibility if we've got an explicit
522 // instantiation with a visibility attribute.
523 const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
524 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
525 if (considerVisibility)
526 LV.mergeVisibility(argsLV);
527 LV.mergeExternalVisibility(argsLV);
528}
529
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000530static bool useInlineVisibilityHidden(const NamedDecl *D) {
531 // FIXME: we should warn if -fvisibility-inlines-hidden is used with c.
Rafael Espindola5cc78902012-07-13 23:26:43 +0000532 const LangOptions &Opts = D->getASTContext().getLangOpts();
533 if (!Opts.CPlusPlus || !Opts.InlineVisibilityHidden)
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000534 return false;
535
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000536 const auto *FD = dyn_cast<FunctionDecl>(D);
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000537 if (!FD)
538 return false;
539
540 TemplateSpecializationKind TSK = TSK_Undeclared;
541 if (FunctionTemplateSpecializationInfo *spec
542 = FD->getTemplateSpecializationInfo()) {
543 TSK = spec->getTemplateSpecializationKind();
544 } else if (MemberSpecializationInfo *MSI =
545 FD->getMemberSpecializationInfo()) {
546 TSK = MSI->getTemplateSpecializationKind();
547 }
548
Craig Topper36250ad2014-05-12 05:36:57 +0000549 const FunctionDecl *Def = nullptr;
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000550 // InlineVisibilityHidden only applies to definitions, and
551 // isInlined() only gives meaningful answers on definitions
552 // anyway.
553 return TSK != TSK_ExplicitInstantiationDeclaration &&
554 TSK != TSK_ExplicitInstantiationDefinition &&
Rafael Espindolafb9d4b42012-10-11 16:32:25 +0000555 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000556}
557
Rafael Espindola593537a2013-05-05 20:15:21 +0000558template <typename T> static bool isFirstInExternCContext(T *D) {
Rafael Espindola8db352d2013-10-17 15:37:26 +0000559 const T *First = D->getFirstDecl();
Rafael Espindola593537a2013-05-05 20:15:21 +0000560 return First->isInExternCContext();
Rafael Espindolaf4187652013-02-14 01:18:37 +0000561}
562
Richard Smith03c05032014-02-17 23:34:47 +0000563static bool isSingleLineLanguageLinkage(const Decl &D) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000564 if (const auto *SD = dyn_cast<LinkageSpecDecl>(D.getDeclContext()))
Richard Smith03c05032014-02-17 23:34:47 +0000565 if (!SD->hasBraces())
Rafael Espindola327be3c2013-04-26 01:30:23 +0000566 return true;
567 return false;
568}
569
Richard Smitha5bbbfe2019-04-18 21:12:54 +0000570/// Determine whether D is declared in the purview of a named module.
571static bool isInModulePurview(const NamedDecl *D) {
572 if (auto *M = D->getOwningModule())
573 return M->isModulePurview();
574 return false;
575}
576
Ali Tamurb6a8a6c2019-04-19 02:15:57 +0000577static bool isExportedFromModuleInterfaceUnit(const NamedDecl *D) {
Richard Smithbecb92d2017-10-10 22:33:17 +0000578 // FIXME: Handle isModulePrivate.
Richard Smith1283e982017-07-07 20:04:28 +0000579 switch (D->getModuleOwnershipKind()) {
580 case Decl::ModuleOwnershipKind::Unowned:
581 case Decl::ModuleOwnershipKind::ModulePrivate:
582 return false;
583 case Decl::ModuleOwnershipKind::Visible:
584 case Decl::ModuleOwnershipKind::VisibleWhenImported:
Richard Smitha5bbbfe2019-04-18 21:12:54 +0000585 return isInModulePurview(D);
Richard Smith1283e982017-07-07 20:04:28 +0000586 }
587 llvm_unreachable("unexpected module ownership kind");
588}
589
590static LinkageInfo getInternalLinkageFor(const NamedDecl *D) {
591 // Internal linkage declarations within a module interface unit are modeled
592 // as "module-internal linkage", which means that they have internal linkage
593 // formally but can be indirectly accessed from outside the module via inline
594 // functions and templates defined within the module.
Richard Smitha5bbbfe2019-04-18 21:12:54 +0000595 if (isInModulePurview(D))
596 return LinkageInfo(ModuleInternalLinkage, DefaultVisibility, false);
Richard Smith1283e982017-07-07 20:04:28 +0000597
598 return LinkageInfo::internal();
599}
600
601static LinkageInfo getExternalLinkageFor(const NamedDecl *D) {
602 // C++ Modules TS [basic.link]/6.8:
603 // - A name declared at namespace scope that does not have internal linkage
604 // by the previous rules and that is introduced by a non-exported
605 // declaration has module linkage.
Richard Smith96451e32019-04-19 02:46:50 +0000606 if (isInModulePurview(D) && !isExportedFromModuleInterfaceUnit(
607 cast<NamedDecl>(D->getCanonicalDecl())))
Richard Smitha5bbbfe2019-04-18 21:12:54 +0000608 return LinkageInfo(ModuleLinkage, DefaultVisibility, false);
Richard Smith1283e982017-07-07 20:04:28 +0000609
610 return LinkageInfo::external();
611}
612
Richard Smithbb750682019-04-26 01:51:08 +0000613static StorageClass getStorageClass(const Decl *D) {
614 if (auto *TD = dyn_cast<TemplateDecl>(D))
615 D = TD->getTemplatedDecl();
Hans Wennborgb0dbc9612019-05-14 10:11:33 +0000616 if (D) {
617 if (auto *VD = dyn_cast<VarDecl>(D))
618 return VD->getStorageClass();
619 if (auto *FD = dyn_cast<FunctionDecl>(D))
620 return FD->getStorageClass();
Richard Smithbb750682019-04-26 01:51:08 +0000621 }
622 return SC_None;
623}
624
George Burgess IV99db3ea2017-08-09 04:02:49 +0000625LinkageInfo
626LinkageComputer::getLVForNamespaceScopeDecl(const NamedDecl *D,
Richard Smithc95d2c52017-09-22 04:25:05 +0000627 LVComputationKind computation,
628 bool IgnoreVarTypeLinkage) {
Sebastian Redl50c68252010-08-31 00:36:30 +0000629 assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
Douglas Gregorf73b2822009-11-25 22:24:25 +0000630 "Not a name having namespace scope");
631 ASTContext &Context = D->getASTContext();
632
633 // C++ [basic.link]p3:
634 // A name having namespace scope (3.3.6) has internal linkage if it
635 // is the name of
Ilya Biryukovb8292c92019-04-24 08:50:24 +0000636
Hans Wennborgb0dbc9612019-05-14 10:11:33 +0000637 if (getStorageClass(D->getCanonicalDecl()) == SC_Static) {
Richard Smithbb750682019-04-26 01:51:08 +0000638 // - a variable, variable template, function, or function template
639 // that is explicitly declared static; or
640 // (This bullet corresponds to C99 6.2.2p3.)
641 return getInternalLinkageFor(D);
642 }
643
644 if (const auto *Var = dyn_cast<VarDecl>(D)) {
645 // - a non-template variable of non-volatile const-qualified type, unless
646 // - it is explicitly declared extern, or
647 // - it is inline or exported, or
648 // - it was previously declared and the prior declaration did not have
649 // internal linkage
650 // (There is no equivalent in C99.)
David Blaikiebbafb8a2012-03-11 07:00:24 +0000651 if (Context.getLangOpts().CPlusPlus &&
Fangrui Song6907ce22018-07-30 19:24:48 +0000652 Var->getType().isConstQualified() &&
Richard Smith62f19e72016-06-25 00:15:56 +0000653 !Var->getType().isVolatileQualified() &&
Richard Smith1283e982017-07-07 20:04:28 +0000654 !Var->isInline() &&
Richard Smithbb750682019-04-26 01:51:08 +0000655 !isExportedFromModuleInterfaceUnit(Var) &&
656 !isa<VarTemplateSpecializationDecl>(Var) &&
657 !Var->getDescribedVarTemplate()) {
Rafael Espindola985a3ab2013-04-03 19:22:20 +0000658 const VarDecl *PrevVar = Var->getPreviousDecl();
Rafael Espindola985a3ab2013-04-03 19:22:20 +0000659 if (PrevVar)
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000660 return getLVForDecl(PrevVar, computation);
Rafael Espindola6ae7e502013-04-03 19:27:57 +0000661
662 if (Var->getStorageClass() != SC_Extern &&
Rafael Espindola327be3c2013-04-26 01:30:23 +0000663 Var->getStorageClass() != SC_PrivateExtern &&
Richard Smith03c05032014-02-17 23:34:47 +0000664 !isSingleLineLanguageLinkage(*Var))
Richard Smith1283e982017-07-07 20:04:28 +0000665 return getInternalLinkageFor(Var);
Rafael Espindola6ae7e502013-04-03 19:27:57 +0000666 }
667
668 for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
669 PrevVar = PrevVar->getPreviousDecl()) {
670 if (PrevVar->getStorageClass() == SC_PrivateExtern &&
671 Var->getStorageClass() == SC_None)
George Burgess IV35cb4f82017-08-09 04:12:17 +0000672 return getDeclLinkageAndVisibility(PrevVar);
Rafael Espindola6ae7e502013-04-03 19:27:57 +0000673 // Explicitly declared static.
674 if (PrevVar->getStorageClass() == SC_Static)
Richard Smith1283e982017-07-07 20:04:28 +0000675 return getInternalLinkageFor(Var);
Fariborz Jahanian8feee2d2011-06-16 20:14:50 +0000676 }
David Majnemer18fac3b2014-12-10 22:58:14 +0000677 } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) {
678 // - a data member of an anonymous union.
679 const VarDecl *VD = IFD->getVarDecl();
680 assert(VD && "Expected a VarDecl in this IndirectFieldDecl!");
Richard Smithc95d2c52017-09-22 04:25:05 +0000681 return getLVForNamespaceScopeDecl(VD, computation, IgnoreVarTypeLinkage);
Douglas Gregorf73b2822009-11-25 22:24:25 +0000682 }
David Majnemer0eb8bbd2013-10-23 20:52:43 +0000683 assert(!isa<FieldDecl>(D) && "Didn't expect a FieldDecl!");
Douglas Gregorf73b2822009-11-25 22:24:25 +0000684
Richard Smithbb750682019-04-26 01:51:08 +0000685 // FIXME: This gives internal linkage to names that should have no linkage
686 // (those not covered by [basic.link]p6).
Chandler Carruth9682a2fd2011-02-24 19:03:39 +0000687 if (D->isInAnonymousNamespace()) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000688 const auto *Var = dyn_cast<VarDecl>(D);
689 const auto *Func = dyn_cast<FunctionDecl>(D);
Richard Smithdf963a32017-09-22 22:21:44 +0000690 // FIXME: The check for extern "C" here is not justified by the standard
691 // wording, but we retain it from the pre-DR1113 model to avoid breaking
692 // code.
Richard Smith1283e982017-07-07 20:04:28 +0000693 //
694 // C++11 [basic.link]p4:
695 // An unnamed namespace or a namespace declared directly or indirectly
696 // within an unnamed namespace has internal linkage.
Rafael Espindola593537a2013-05-05 20:15:21 +0000697 if ((!Var || !isFirstInExternCContext(Var)) &&
698 (!Func || !isFirstInExternCContext(Func)))
Richard Smithdf963a32017-09-22 22:21:44 +0000699 return getInternalLinkageFor(D);
Chandler Carruth9682a2fd2011-02-24 19:03:39 +0000700 }
John McCallb7139c42010-10-28 04:18:25 +0000701
John McCall457a04e2010-10-22 21:05:15 +0000702 // Set up the defaults.
703
704 // C99 6.2.2p5:
705 // If the declaration of an identifier for an object has file
706 // scope and no storage-class specifier, its linkage is
707 // external.
Richard Smithdd8b5332017-09-04 05:37:53 +0000708 LinkageInfo LV = getExternalLinkageFor(D);
John McCallc273f242010-10-30 11:50:40 +0000709
John McCalld041a9b2013-02-20 01:54:26 +0000710 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikie05785d12013-02-20 22:23:23 +0000711 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) {
Rafael Espindola7a5543d2012-04-19 02:22:07 +0000712 LV.mergeVisibility(*Vis, true);
Rafael Espindola78158af2012-04-16 18:46:26 +0000713 } else {
714 // If we're declared in a namespace with a visibility attribute,
John McCalldf25c432013-02-16 00:17:33 +0000715 // use that namespace's visibility, and it still counts as explicit.
Rafael Espindola78158af2012-04-16 18:46:26 +0000716 for (const DeclContext *DC = D->getDeclContext();
717 !isa<TranslationUnitDecl>(DC);
718 DC = DC->getParent()) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000719 const auto *ND = dyn_cast<NamespaceDecl>(DC);
Rafael Espindola78158af2012-04-16 18:46:26 +0000720 if (!ND) continue;
David Blaikie05785d12013-02-20 22:23:23 +0000721 if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) {
Rafael Espindola7a5543d2012-04-19 02:22:07 +0000722 LV.mergeVisibility(*Vis, true);
Rafael Espindola78158af2012-04-16 18:46:26 +0000723 break;
724 }
725 }
726 }
Rafael Espindola78158af2012-04-16 18:46:26 +0000727
John McCalldf25c432013-02-16 00:17:33 +0000728 // Add in global settings if the above didn't give us direct visibility.
Rafael Espindola4a5da442013-02-27 02:56:45 +0000729 if (!LV.isVisibilityExplicit()) {
John McCallb4a99d32013-02-19 01:57:35 +0000730 // Use global type/value visibility as appropriate.
Richard Smithfbe7b462017-09-22 02:22:32 +0000731 Visibility globalVisibility =
732 computation.isValueVisibility()
733 ? Context.getLangOpts().getValueVisibilityMode()
734 : Context.getLangOpts().getTypeVisibilityMode();
John McCallb4a99d32013-02-19 01:57:35 +0000735 LV.mergeVisibility(globalVisibility, /*explicit*/ false);
John McCalldf25c432013-02-16 00:17:33 +0000736
737 // If we're paying attention to global visibility, apply
738 // -finline-visibility-hidden if this is an inline method.
739 if (useInlineVisibilityHidden(D))
Reid Klecknera52d1512018-10-10 21:59:56 +0000740 LV.mergeVisibility(HiddenVisibility, /*visibilityExplicit=*/false);
John McCalldf25c432013-02-16 00:17:33 +0000741 }
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000742 }
Rafael Espindolaaf690f52012-04-19 02:55:01 +0000743
Douglas Gregorf73b2822009-11-25 22:24:25 +0000744 // C++ [basic.link]p4:
John McCall457a04e2010-10-22 21:05:15 +0000745
Richard Smithbb750682019-04-26 01:51:08 +0000746 // A name having namespace scope that has not been given internal linkage
747 // above and that is the name of
748 // [...bullets...]
749 // has its linkage determined as follows:
750 // - if the enclosing namespace has internal linkage, the name has
751 // internal linkage; [handled above]
752 // - otherwise, if the declaration of the name is attached to a named
753 // module and is not exported, the name has module linkage;
754 // - otherwise, the name has external linkage.
755 // LV is currently set up to handle the last two bullets.
Douglas Gregorf73b2822009-11-25 22:24:25 +0000756 //
Richard Smithbb750682019-04-26 01:51:08 +0000757 // The bullets are:
758
759 // - a variable; or
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000760 if (const auto *Var = dyn_cast<VarDecl>(D)) {
John McCall37bb6c92010-10-29 22:22:43 +0000761 // GCC applies the following optimization to variables and static
762 // data members, but not to functions:
763 //
John McCall457a04e2010-10-22 21:05:15 +0000764 // Modify the variable's LV by the LV of its type unless this is
765 // C or extern "C". This follows from [basic.link]p9:
766 // A type without linkage shall not be used as the type of a
767 // variable or function with external linkage unless
768 // - the entity has C language linkage, or
769 // - the entity is declared within an unnamed namespace, or
770 // - the entity is not used or is defined in the same
771 // translation unit.
772 // and [basic.link]p10:
773 // ...the types specified by all declarations referring to a
774 // given variable or function shall be identical...
775 // C does not have an equivalent rule.
776 //
John McCall5fe84122010-10-26 04:59:26 +0000777 // Ignore this if we've got an explicit attribute; the user
778 // probably knows what they're doing.
779 //
John McCall457a04e2010-10-22 21:05:15 +0000780 // Note that we don't want to make the variable non-external
781 // because of this, but unique-external linkage suits us.
Richard Smithc95d2c52017-09-22 04:25:05 +0000782 if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var) &&
783 !IgnoreVarTypeLinkage) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000784 LinkageInfo TypeLV = getLVForType(*Var->getType(), computation);
Richard Smith405e2db2017-09-20 07:22:00 +0000785 if (!isExternallyVisible(TypeLV.getLinkage()))
John McCallc273f242010-10-30 11:50:40 +0000786 return LinkageInfo::uniqueExternal();
Rafael Espindola4a5da442013-02-27 02:56:45 +0000787 if (!LV.isVisibilityExplicit())
John McCalldf25c432013-02-16 00:17:33 +0000788 LV.mergeVisibility(TypeLV);
John McCall37bb6c92010-10-29 22:22:43 +0000789 }
790
John McCall23032652010-11-02 18:38:13 +0000791 if (Var->getStorageClass() == SC_PrivateExtern)
Rafael Espindola7a5543d2012-04-19 02:22:07 +0000792 LV.mergeVisibility(HiddenVisibility, true);
John McCall23032652010-11-02 18:38:13 +0000793
Rafael Espindolad5ed0332012-11-12 04:10:23 +0000794 // Note that Sema::MergeVarDecl already takes care of implementing
795 // C99 6.2.2p4 and propagating the visibility attribute, so we don't have
796 // to do it here.
Douglas Gregorf73b2822009-11-25 22:24:25 +0000797
Larisse Voufo5899e192014-07-02 23:08:34 +0000798 // As per function and class template specializations (below),
799 // consider LV for the template and template arguments. We're at file
800 // scope, so we do not need to worry about nested specializations.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000801 if (const auto *spec = dyn_cast<VarTemplateSpecializationDecl>(Var)) {
Larisse Voufo5899e192014-07-02 23:08:34 +0000802 mergeTemplateLV(LV, spec, computation);
803 }
804
Richard Smithbb750682019-04-26 01:51:08 +0000805 // - a function; or
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000806 } else if (const auto *Function = dyn_cast<FunctionDecl>(D)) {
John McCall2efaf112010-10-28 07:07:52 +0000807 // In theory, we can modify the function's LV by the LV of its
808 // type unless it has C linkage (see comment above about variables
809 // for justification). In practice, GCC doesn't do this, so it's
810 // just too painful to make work.
John McCall457a04e2010-10-22 21:05:15 +0000811
John McCall23032652010-11-02 18:38:13 +0000812 if (Function->getStorageClass() == SC_PrivateExtern)
Rafael Espindola7a5543d2012-04-19 02:22:07 +0000813 LV.mergeVisibility(HiddenVisibility, true);
John McCall23032652010-11-02 18:38:13 +0000814
Rafael Espindolaa508c5d2012-11-21 02:47:19 +0000815 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
816 // merging storage classes and visibility attributes, so we don't have to
817 // look at previous decls in here.
Douglas Gregorf73b2822009-11-25 22:24:25 +0000818
John McCallf768aa72011-02-10 06:50:24 +0000819 // In C++, then if the type of the function uses a type with
820 // unique-external linkage, it's not legally usable from outside
821 // this translation unit. However, we should use the C linkage
822 // rules instead for extern "C" declarations.
Richard Smith99f54792018-01-03 02:34:35 +0000823 if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Function)) {
Richard Smithc95d2c52017-09-22 04:25:05 +0000824 // Only look at the type-as-written. Otherwise, deducing the return type
825 // of a function could change its linkage.
Richard Smith50f4afc2013-05-12 23:17:59 +0000826 QualType TypeAsWritten = Function->getType();
827 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
828 TypeAsWritten = TSI->getType();
Richard Smith405e2db2017-09-20 07:22:00 +0000829 if (!isExternallyVisible(TypeAsWritten->getLinkage()))
Richard Smith50f4afc2013-05-12 23:17:59 +0000830 return LinkageInfo::uniqueExternal();
831 }
John McCallf768aa72011-02-10 06:50:24 +0000832
John McCall5f46c482013-02-21 23:42:58 +0000833 // Consider LV from the template and the template arguments.
834 // We're at file scope, so we do not need to worry about nested
835 // specializations.
John McCallb8c604a2011-06-27 23:06:04 +0000836 if (FunctionTemplateSpecializationInfo *specInfo
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000837 = Function->getTemplateSpecializationInfo()) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000838 mergeTemplateLV(LV, Function, specInfo, computation);
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000839 }
840
Douglas Gregorf73b2822009-11-25 22:24:25 +0000841 // - a named class (Clause 9), or an unnamed class defined in a
842 // typedef declaration in which the class has the typedef name
843 // for linkage purposes (7.1.3); or
844 // - a named enumeration (7.2), or an unnamed enumeration
845 // defined in a typedef declaration in which the enumeration
846 // has the typedef name for linkage purposes (7.1.3); or
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000847 } else if (const auto *Tag = dyn_cast<TagDecl>(D)) {
John McCall457a04e2010-10-22 21:05:15 +0000848 // Unnamed tags have no linkage.
John McCall5ea95772013-03-09 00:54:27 +0000849 if (!Tag->hasNameForLinkage())
John McCallc273f242010-10-30 11:50:40 +0000850 return LinkageInfo::none();
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000851
John McCall457a04e2010-10-22 21:05:15 +0000852 // If this is a class template specialization, consider the
John McCall5f46c482013-02-21 23:42:58 +0000853 // linkage of the template and template arguments. We're at file
854 // scope, so we do not need to worry about nested specializations.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000855 if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
John McCalldf25c432013-02-16 00:17:33 +0000856 mergeTemplateLV(LV, spec, computation);
Douglas Gregor7dc5c172010-02-03 09:33:45 +0000857 }
Douglas Gregorf73b2822009-11-25 22:24:25 +0000858
Richard Smithbb750682019-04-26 01:51:08 +0000859 // FIXME: This is not part of the C++ standard any more.
860 // - an enumerator belonging to an enumeration with external linkage; or
John McCall457a04e2010-10-22 21:05:15 +0000861 } else if (isa<EnumConstantDecl>(D)) {
Rafael Espindola46cb6f12012-04-21 23:28:21 +0000862 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
John McCalldf25c432013-02-16 00:17:33 +0000863 computation);
Rafael Espindolab97e8962013-05-27 14:14:42 +0000864 if (!isExternalFormalLinkage(EnumLV.getLinkage()))
John McCallc273f242010-10-30 11:50:40 +0000865 return LinkageInfo::none();
866 LV.merge(EnumLV);
Douglas Gregorf73b2822009-11-25 22:24:25 +0000867
Richard Smithbb750682019-04-26 01:51:08 +0000868 // - a template
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000869 } else if (const auto *temp = dyn_cast<TemplateDecl>(D)) {
John McCalld041a9b2013-02-20 01:54:26 +0000870 bool considerVisibility = !hasExplicitVisibilityAlready(computation);
John McCalldf25c432013-02-16 00:17:33 +0000871 LinkageInfo tempLV =
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000872 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCalldf25c432013-02-16 00:17:33 +0000873 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
874
Richard Smithbb750682019-04-26 01:51:08 +0000875 // An unnamed namespace or a namespace declared directly or indirectly
876 // within an unnamed namespace has internal linkage. All other namespaces
877 // have external linkage.
Richard Smith1283e982017-07-07 20:04:28 +0000878 //
879 // We handled names in anonymous namespaces above.
880 } else if (isa<NamespaceDecl>(D)) {
John McCall457a04e2010-10-22 21:05:15 +0000881 return LV;
Douglas Gregorf73b2822009-11-25 22:24:25 +0000882
John McCall457a04e2010-10-22 21:05:15 +0000883 // By extension, we assign external linkage to Objective-C
884 // interfaces.
885 } else if (isa<ObjCInterfaceDecl>(D)) {
886 // fallout
887
Richard Smith97135cc2015-11-12 22:19:45 +0000888 } else if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
889 // A typedef declaration has linkage if it gives a type a name for
890 // linkage purposes.
891 if (!TD->getAnonDeclWithTypedefName(/*AnyRedecl*/true))
892 return LinkageInfo::none();
893
John McCall457a04e2010-10-22 21:05:15 +0000894 // Everything not covered here has no linkage.
895 } else {
John McCallc273f242010-10-30 11:50:40 +0000896 return LinkageInfo::none();
John McCall457a04e2010-10-22 21:05:15 +0000897 }
898
Richard Smithc445d5d2017-10-03 01:58:15 +0000899 // If we ended up with non-externally-visible linkage, visibility should
John McCall457a04e2010-10-22 21:05:15 +0000900 // always be default.
Richard Smithc445d5d2017-10-03 01:58:15 +0000901 if (!isExternallyVisible(LV.getLinkage()))
Rafael Espindola4a5da442013-02-27 02:56:45 +0000902 return LinkageInfo(LV.getLinkage(), DefaultVisibility, false);
John McCall457a04e2010-10-22 21:05:15 +0000903
John McCall457a04e2010-10-22 21:05:15 +0000904 return LV;
Douglas Gregorf73b2822009-11-25 22:24:25 +0000905}
906
George Burgess IV99db3ea2017-08-09 04:02:49 +0000907LinkageInfo
908LinkageComputer::getLVForClassMember(const NamedDecl *D,
Richard Smithc95d2c52017-09-22 04:25:05 +0000909 LVComputationKind computation,
910 bool IgnoreVarTypeLinkage) {
John McCall457a04e2010-10-22 21:05:15 +0000911 // Only certain class members have linkage. Note that fields don't
912 // really have linkage, but it's convenient to say they do for the
913 // purposes of calculating linkage of pointer-to-data-member
914 // template arguments.
Richard Smith26d11be2014-01-08 01:51:59 +0000915 //
916 // Templates also don't officially have linkage, but since we ignore
917 // the C++ standard and look at template arguments when determining
918 // linkage and visibility of a template specialization, we might hit
919 // a template template argument that way. If we do, we need to
920 // consider its linkage.
John McCall8823c652010-08-13 08:35:10 +0000921 if (!(isa<CXXMethodDecl>(D) ||
922 isa<VarDecl>(D) ||
John McCall457a04e2010-10-22 21:05:15 +0000923 isa<FieldDecl>(D) ||
David Majnemer0eb8bbd2013-10-23 20:52:43 +0000924 isa<IndirectFieldDecl>(D) ||
Richard Smith26d11be2014-01-08 01:51:59 +0000925 isa<TagDecl>(D) ||
926 isa<TemplateDecl>(D)))
John McCallc273f242010-10-30 11:50:40 +0000927 return LinkageInfo::none();
John McCall8823c652010-08-13 08:35:10 +0000928
John McCall07072662010-11-02 01:45:15 +0000929 LinkageInfo LV;
930
John McCall07072662010-11-02 01:45:15 +0000931 // If we have an explicit visibility attribute, merge that in.
John McCalld041a9b2013-02-20 01:54:26 +0000932 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikie05785d12013-02-20 22:23:23 +0000933 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation))
Douglas Gregor1baf38f2011-03-26 12:10:19 +0000934 LV.mergeVisibility(*Vis, true);
Rafael Espindolac7c7ad52012-07-13 14:25:36 +0000935 // If we're paying attention to global visibility, apply
936 // -finline-visibility-hidden if this is an inline method.
937 //
938 // Note that we do this before merging information about
939 // the class visibility.
Rafael Espindola4a5da442013-02-27 02:56:45 +0000940 if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D))
Reid Klecknera52d1512018-10-10 21:59:56 +0000941 LV.mergeVisibility(HiddenVisibility, /*visibilityExplicit=*/false);
John McCall07072662010-11-02 01:45:15 +0000942 }
Rafael Espindola53cf2192012-04-19 05:50:08 +0000943
944 // If this class member has an explicit visibility attribute, the only
945 // thing that can change its visibility is the template arguments, so
Sylvestre Ledru830885c2012-07-23 08:59:39 +0000946 // only look for them when processing the class.
John McCalld041a9b2013-02-20 01:54:26 +0000947 LVComputationKind classComputation = computation;
Rafael Espindola4a5da442013-02-27 02:56:45 +0000948 if (LV.isVisibilityExplicit())
John McCalld041a9b2013-02-20 01:54:26 +0000949 classComputation = withExplicitVisibilityAlready(computation);
Rafael Espindola505a7c82012-04-16 18:25:01 +0000950
John McCall5f46c482013-02-21 23:42:58 +0000951 LinkageInfo classLV =
952 getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation);
Richard Smithcdb06f22017-09-23 04:02:17 +0000953 // The member has the same linkage as the class. If that's not externally
954 // visible, we don't need to compute anything about the linkage.
955 // FIXME: If we're only computing linkage, can we bail out here?
Rafael Espindolae6190db2013-05-28 02:22:10 +0000956 if (!isExternallyVisible(classLV.getLinkage()))
Richard Smithcdb06f22017-09-23 04:02:17 +0000957 return classLV;
Rafael Espindolae6190db2013-05-28 02:22:10 +0000958
959
John McCall5f46c482013-02-21 23:42:58 +0000960 // Otherwise, don't merge in classLV yet, because in certain cases
961 // we need to completely ignore the visibility from it.
962
963 // Specifically, if this decl exists and has an explicit attribute.
Craig Topper36250ad2014-05-12 05:36:57 +0000964 const NamedDecl *explicitSpecSuppressor = nullptr;
John McCall5f46c482013-02-21 23:42:58 +0000965
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000966 if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc95d2c52017-09-22 04:25:05 +0000967 // Only look at the type-as-written. Otherwise, deducing the return type
968 // of a function could change its linkage.
969 QualType TypeAsWritten = MD->getType();
970 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
971 TypeAsWritten = TSI->getType();
972 if (!isExternallyVisible(TypeAsWritten->getLinkage()))
973 return LinkageInfo::uniqueExternal();
974
John McCall457a04e2010-10-22 21:05:15 +0000975 // If this is a method template specialization, use the linkage for
976 // the template parameters and arguments.
John McCallb8c604a2011-06-27 23:06:04 +0000977 if (FunctionTemplateSpecializationInfo *spec
John McCall8823c652010-08-13 08:35:10 +0000978 = MD->getTemplateSpecializationInfo()) {
Rafael Espindolaecf63c62013-05-29 04:55:30 +0000979 mergeTemplateLV(LV, MD, spec, computation);
John McCall5f46c482013-02-21 23:42:58 +0000980 if (spec->isExplicitSpecialization()) {
981 explicitSpecSuppressor = MD;
982 } else if (isExplicitMemberSpecialization(spec->getTemplate())) {
983 explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl();
984 }
985 } else if (isExplicitMemberSpecialization(MD)) {
986 explicitSpecSuppressor = MD;
John McCalle6e622e2010-11-01 01:29:57 +0000987 }
John McCall457a04e2010-10-22 21:05:15 +0000988
Alexander Kornienkofd6ce042015-11-09 17:53:06 +0000989 } else if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) {
990 if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
John McCalldf25c432013-02-16 00:17:33 +0000991 mergeTemplateLV(LV, spec, computation);
John McCall5f46c482013-02-21 23:42:58 +0000992 if (spec->isExplicitSpecialization()) {
993 explicitSpecSuppressor = spec;
994 } else {
995 const ClassTemplateDecl *temp = spec->getSpecializedTemplate();
996 if (isExplicitMemberSpecialization(temp)) {
997 explicitSpecSuppressor = temp->getTemplatedDecl();
998 }
999 }
1000 } else if (isExplicitMemberSpecialization(RD)) {
1001 explicitSpecSuppressor = RD;
John McCall37bb6c92010-10-29 22:22:43 +00001002 }
1003
John McCall37bb6c92010-10-29 22:22:43 +00001004 // Static data members.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001005 } else if (const auto *VD = dyn_cast<VarDecl>(D)) {
1006 if (const auto *spec = dyn_cast<VarTemplateSpecializationDecl>(VD))
Larisse Voufo5899e192014-07-02 23:08:34 +00001007 mergeTemplateLV(LV, spec, computation);
1008
John McCall36cd5cc2010-10-30 09:18:49 +00001009 // Modify the variable's linkage by its type, but ignore the
1010 // type's visibility unless it's a definition.
Richard Smithc95d2c52017-09-22 04:25:05 +00001011 if (!IgnoreVarTypeLinkage) {
1012 LinkageInfo typeLV = getLVForType(*VD->getType(), computation);
1013 // FIXME: If the type's linkage is not externally visible, we can
1014 // give this static data member UniqueExternalLinkage.
1015 if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit())
1016 LV.mergeVisibility(typeLV);
1017 LV.mergeExternalVisibility(typeLV);
1018 }
John McCall5f46c482013-02-21 23:42:58 +00001019
1020 if (isExplicitMemberSpecialization(VD)) {
1021 explicitSpecSuppressor = VD;
1022 }
John McCalldf25c432013-02-16 00:17:33 +00001023
1024 // Template members.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001025 } else if (const auto *temp = dyn_cast<TemplateDecl>(D)) {
John McCalldf25c432013-02-16 00:17:33 +00001026 bool considerVisibility =
Rafael Espindola4a5da442013-02-27 02:56:45 +00001027 (!LV.isVisibilityExplicit() &&
1028 !classLV.isVisibilityExplicit() &&
John McCalld041a9b2013-02-20 01:54:26 +00001029 !hasExplicitVisibilityAlready(computation));
John McCalldf25c432013-02-16 00:17:33 +00001030 LinkageInfo tempLV =
Rafael Espindolaecf63c62013-05-29 04:55:30 +00001031 getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
John McCalldf25c432013-02-16 00:17:33 +00001032 LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
John McCall5f46c482013-02-21 23:42:58 +00001033
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001034 if (const auto *redeclTemp = dyn_cast<RedeclarableTemplateDecl>(temp)) {
John McCall5f46c482013-02-21 23:42:58 +00001035 if (isExplicitMemberSpecialization(redeclTemp)) {
1036 explicitSpecSuppressor = temp->getTemplatedDecl();
1037 }
1038 }
John McCall37bb6c92010-10-29 22:22:43 +00001039 }
1040
John McCall5f46c482013-02-21 23:42:58 +00001041 // We should never be looking for an attribute directly on a template.
1042 assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor));
1043
1044 // If this member is an explicit member specialization, and it has
1045 // an explicit attribute, ignore visibility from the parent.
1046 bool considerClassVisibility = true;
1047 if (explicitSpecSuppressor &&
Rafael Espindola4a5da442013-02-27 02:56:45 +00001048 // optimization: hasDVA() is true only with explicit visibility.
1049 LV.isVisibilityExplicit() &&
1050 classLV.getVisibility() != DefaultVisibility &&
John McCall5f46c482013-02-21 23:42:58 +00001051 hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) {
1052 considerClassVisibility = false;
1053 }
1054
1055 // Finally, merge in information from the class.
1056 LV.mergeMaybeWithVisibility(classLV, considerClassVisibility);
John McCall457a04e2010-10-22 21:05:15 +00001057 return LV;
John McCall8823c652010-08-13 08:35:10 +00001058}
1059
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001060void NamedDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00001061
Rafael Espindola0e0d0092013-03-14 03:07:35 +00001062bool NamedDecl::isLinkageValid() const {
Rafael Espindola50df3a02013-05-25 17:16:20 +00001063 if (!hasCachedLinkage())
Rafael Espindola0e0d0092013-03-14 03:07:35 +00001064 return true;
John McCalld396b972011-02-08 19:01:05 +00001065
Richard Smithfbe7b462017-09-22 02:22:32 +00001066 Linkage L = LinkageComputer{}
1067 .computeLVForDecl(this, LVComputationKind::forLinkageOnly())
1068 .getLinkage();
George Burgess IV99db3ea2017-08-09 04:02:49 +00001069 return L == getCachedLinkage();
John McCalld396b972011-02-08 19:01:05 +00001070}
1071
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00001072ObjCStringFormatFamily NamedDecl::getObjCFStringFormattingFamily() const {
1073 StringRef name = getName();
1074 if (name.empty()) return SFF_None;
Fangrui Song6907ce22018-07-30 19:24:48 +00001075
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00001076 if (name.front() == 'C')
1077 if (name == "CFStringCreateWithFormat" ||
1078 name == "CFStringCreateWithFormatAndArguments" ||
1079 name == "CFStringAppendFormat" ||
1080 name == "CFStringAppendFormatAndArguments")
1081 return SFF_CFString;
1082 return SFF_None;
1083}
1084
Rafael Espindola3ae00052013-05-13 00:12:11 +00001085Linkage NamedDecl::getLinkageInternal() const {
John McCalld041a9b2013-02-20 01:54:26 +00001086 // We don't care about visibility here, so ask for the cheapest
1087 // possible visibility analysis.
Richard Smithfbe7b462017-09-22 02:22:32 +00001088 return LinkageComputer{}
1089 .getLVForDecl(this, LVComputationKind::forLinkageOnly())
1090 .getLinkage();
Douglas Gregorbf62d642010-12-06 18:36:25 +00001091}
1092
John McCallc273f242010-10-30 11:50:40 +00001093LinkageInfo NamedDecl::getLinkageAndVisibility() const {
George Burgess IV99db3ea2017-08-09 04:02:49 +00001094 return LinkageComputer{}.getDeclLinkageAndVisibility(this);
John McCall033caa52010-10-29 00:29:13 +00001095}
Ted Kremenek926d8602010-04-20 23:15:35 +00001096
Rafael Espindola9ad61122013-11-26 16:09:08 +00001097static Optional<Visibility>
1098getExplicitVisibilityAux(const NamedDecl *ND,
1099 NamedDecl::ExplicitVisibilityKind kind,
1100 bool IsMostRecent) {
1101 assert(!IsMostRecent || ND == ND->getMostRecentDecl());
1102
Rafael Espindola3a52c442013-02-26 19:33:14 +00001103 // Check the declaration itself first.
Rafael Espindola9ad61122013-11-26 16:09:08 +00001104 if (Optional<Visibility> V = getVisibilityOf(ND, kind))
Rafael Espindola3a52c442013-02-26 19:33:14 +00001105 return V;
Douglas Gregor1baf38f2011-03-26 12:10:19 +00001106
Rafael Espindola3a52c442013-02-26 19:33:14 +00001107 // If this is a member class of a specialization of a class template
1108 // and the corresponding decl has explicit visibility, use that.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001109 if (const auto *RD = dyn_cast<CXXRecordDecl>(ND)) {
Rafael Espindola3a52c442013-02-26 19:33:14 +00001110 CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
1111 if (InstantiatedFrom)
1112 return getVisibilityOf(InstantiatedFrom, kind);
1113 }
1114
1115 // If there wasn't explicit visibility there, and this is a
1116 // specialization of a class template, check for visibility
1117 // on the pattern.
Steven Wu79cbd112018-04-19 15:46:43 +00001118 if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
1119 // Walk all the template decl till this point to see if there are
1120 // explicit visibility attributes.
1121 const auto *TD = spec->getSpecializedTemplate()->getTemplatedDecl();
1122 while (TD != nullptr) {
1123 auto Vis = getVisibilityOf(TD, kind);
1124 if (Vis != None)
1125 return Vis;
1126 TD = TD->getPreviousDecl();
1127 }
1128 return None;
1129 }
Rafael Espindola3a52c442013-02-26 19:33:14 +00001130
1131 // Use the most recent declaration.
Rafael Espindola7ab1ce02013-12-08 01:13:22 +00001132 if (!IsMostRecent && !isa<NamespaceDecl>(ND)) {
Rafael Espindola9ad61122013-11-26 16:09:08 +00001133 const NamedDecl *MostRecent = ND->getMostRecentDecl();
1134 if (MostRecent != ND)
1135 return getExplicitVisibilityAux(MostRecent, kind, true);
1136 }
Rafael Espindola3a52c442013-02-26 19:33:14 +00001137
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001138 if (const auto *Var = dyn_cast<VarDecl>(ND)) {
Rafael Espindola96e68242012-05-16 02:10:38 +00001139 if (Var->isStaticDataMember()) {
1140 VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
1141 if (InstantiatedFrom)
John McCalld041a9b2013-02-20 01:54:26 +00001142 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola96e68242012-05-16 02:10:38 +00001143 }
1144
David Majnemer35b02bc2014-04-29 07:32:26 +00001145 if (const auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(Var))
1146 return getVisibilityOf(VTSD->getSpecializedTemplate()->getTemplatedDecl(),
1147 kind);
1148
David Blaikie7a30dc52013-02-21 01:47:18 +00001149 return None;
Rafael Espindola96e68242012-05-16 02:10:38 +00001150 }
Rafael Espindola3a52c442013-02-26 19:33:14 +00001151 // Also handle function template specializations.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001152 if (const auto *fn = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor1baf38f2011-03-26 12:10:19 +00001153 // If the function is a specialization of a template with an
1154 // explicit visibility attribute, use that.
1155 if (FunctionTemplateSpecializationInfo *templateInfo
1156 = fn->getTemplateSpecializationInfo())
John McCalld041a9b2013-02-20 01:54:26 +00001157 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(),
1158 kind);
Douglas Gregor1baf38f2011-03-26 12:10:19 +00001159
Rafael Espindola8093fdf2012-02-23 04:17:32 +00001160 // If the function is a member of a specialization of a class template
1161 // and the corresponding decl has explicit visibility, use that.
1162 FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
1163 if (InstantiatedFrom)
John McCalld041a9b2013-02-20 01:54:26 +00001164 return getVisibilityOf(InstantiatedFrom, kind);
Rafael Espindola8093fdf2012-02-23 04:17:32 +00001165
David Blaikie7a30dc52013-02-21 01:47:18 +00001166 return None;
Douglas Gregor1baf38f2011-03-26 12:10:19 +00001167 }
1168
Rafael Espindolafb4263f2012-07-31 19:02:02 +00001169 // The visibility of a template is stored in the templated decl.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001170 if (const auto *TD = dyn_cast<TemplateDecl>(ND))
John McCalld041a9b2013-02-20 01:54:26 +00001171 return getVisibilityOf(TD->getTemplatedDecl(), kind);
Rafael Espindolafb4263f2012-07-31 19:02:02 +00001172
David Blaikie7a30dc52013-02-21 01:47:18 +00001173 return None;
Douglas Gregor1baf38f2011-03-26 12:10:19 +00001174}
1175
Rafael Espindola9ad61122013-11-26 16:09:08 +00001176Optional<Visibility>
1177NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const {
1178 return getExplicitVisibilityAux(this, kind, false);
1179}
1180
George Burgess IV99db3ea2017-08-09 04:02:49 +00001181LinkageInfo LinkageComputer::getLVForClosure(const DeclContext *DC,
1182 Decl *ContextDecl,
1183 LVComputationKind computation) {
Eli Friedman7e346a82013-07-01 20:22:57 +00001184 // This lambda has its linkage/visibility determined by its owner.
Richard Smithc95d2c52017-09-22 04:25:05 +00001185 const NamedDecl *Owner;
1186 if (!ContextDecl)
1187 Owner = dyn_cast<NamedDecl>(DC);
1188 else if (isa<ParmVarDecl>(ContextDecl))
1189 Owner =
1190 dyn_cast<NamedDecl>(ContextDecl->getDeclContext()->getRedeclContext());
1191 else
1192 Owner = cast<NamedDecl>(ContextDecl);
1193
Richard Smithc95d2c52017-09-22 04:25:05 +00001194 if (!Owner)
Richard Smith7ff83042017-09-22 04:33:20 +00001195 return LinkageInfo::none();
Richard Smithc95d2c52017-09-22 04:25:05 +00001196
1197 // If the owner has a deduced type, we need to skip querying the linkage and
1198 // visibility of that type, because it might involve this closure type. The
1199 // only effect of this is that we might give a lambda VisibleNoLinkage rather
1200 // than NoLinkage when we don't strictly need to, which is benign.
1201 auto *VD = dyn_cast<VarDecl>(Owner);
Richard Smith7ff83042017-09-22 04:33:20 +00001202 LinkageInfo OwnerLV =
Richard Smithc95d2c52017-09-22 04:25:05 +00001203 VD && VD->getType()->getContainedDeducedType()
1204 ? computeLVForDecl(Owner, computation, /*IgnoreVarTypeLinkage*/true)
1205 : getLVForDecl(Owner, computation);
1206
Richard Smith7ff83042017-09-22 04:33:20 +00001207 // A lambda never formally has linkage. But if the owner is externally
1208 // visible, then the lambda is too. We apply the same rules to blocks.
1209 if (!isExternallyVisible(OwnerLV.getLinkage()))
1210 return LinkageInfo::none();
1211 return LinkageInfo(VisibleNoLinkage, OwnerLV.getVisibility(),
1212 OwnerLV.isVisibilityExplicit());
Eli Friedman7e346a82013-07-01 20:22:57 +00001213}
1214
George Burgess IV99db3ea2017-08-09 04:02:49 +00001215LinkageInfo LinkageComputer::getLVForLocalDecl(const NamedDecl *D,
1216 LVComputationKind computation) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001217 if (const auto *Function = dyn_cast<FunctionDecl>(D)) {
John McCalldf25c432013-02-16 00:17:33 +00001218 if (Function->isInAnonymousNamespace() &&
Richard Smith99f54792018-01-03 02:34:35 +00001219 !isFirstInExternCContext(Function))
Richard Smithdf963a32017-09-22 22:21:44 +00001220 return getInternalLinkageFor(Function);
John McCalldf25c432013-02-16 00:17:33 +00001221
1222 // This is a "void f();" which got merged with a file static.
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001223 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
Richard Smith1283e982017-07-07 20:04:28 +00001224 return getInternalLinkageFor(Function);
John McCalldf25c432013-02-16 00:17:33 +00001225
1226 LinkageInfo LV;
John McCalld041a9b2013-02-20 01:54:26 +00001227 if (!hasExplicitVisibilityAlready(computation)) {
David Blaikie05785d12013-02-20 22:23:23 +00001228 if (Optional<Visibility> Vis =
1229 getExplicitVisibility(Function, computation))
John McCalldf25c432013-02-16 00:17:33 +00001230 LV.mergeVisibility(*Vis, true);
1231 }
1232
1233 // Note that Sema::MergeCompatibleFunctionDecls already takes care of
1234 // merging storage classes and visibility attributes, so we don't have to
1235 // look at previous decls in here.
1236
1237 return LV;
1238 }
1239
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001240 if (const auto *Var = dyn_cast<VarDecl>(D)) {
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001241 if (Var->hasExternalStorage()) {
Richard Smith99f54792018-01-03 02:34:35 +00001242 if (Var->isInAnonymousNamespace() && !isFirstInExternCContext(Var))
Richard Smithdf963a32017-09-22 22:21:44 +00001243 return getInternalLinkageFor(Var);
John McCalldf25c432013-02-16 00:17:33 +00001244
John McCalldf25c432013-02-16 00:17:33 +00001245 LinkageInfo LV;
1246 if (Var->getStorageClass() == SC_PrivateExtern)
1247 LV.mergeVisibility(HiddenVisibility, true);
John McCalld041a9b2013-02-20 01:54:26 +00001248 else if (!hasExplicitVisibilityAlready(computation)) {
David Blaikie05785d12013-02-20 22:23:23 +00001249 if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation))
John McCalldf25c432013-02-16 00:17:33 +00001250 LV.mergeVisibility(*Vis, true);
1251 }
1252
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001253 if (const VarDecl *Prev = Var->getPreviousDecl()) {
1254 LinkageInfo PrevLV = getLVForDecl(Prev, computation);
1255 if (PrevLV.getLinkage())
1256 LV.setLinkage(PrevLV.getLinkage());
1257 LV.mergeVisibility(PrevLV);
1258 }
1259
John McCalldf25c432013-02-16 00:17:33 +00001260 return LV;
1261 }
Rafael Espindolaa4184182013-06-17 20:04:51 +00001262
1263 if (!Var->isStaticLocal())
1264 return LinkageInfo::none();
John McCalldf25c432013-02-16 00:17:33 +00001265 }
1266
Rafael Espindolaa4184182013-06-17 20:04:51 +00001267 ASTContext &Context = D->getASTContext();
1268 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindola50df3a02013-05-25 17:16:20 +00001269 return LinkageInfo::none();
1270
Eli Friedman7e346a82013-07-01 20:22:57 +00001271 const Decl *OuterD = getOutermostFuncOrBlockContext(D);
Alexey Bataev0a47e652016-01-12 09:01:25 +00001272 if (!OuterD || OuterD->isInvalidDecl())
Rafael Espindola50df3a02013-05-25 17:16:20 +00001273 return LinkageInfo::none();
Rafael Espindola52189362013-06-04 13:43:35 +00001274
Eli Friedman7e346a82013-07-01 20:22:57 +00001275 LinkageInfo LV;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001276 if (const auto *BD = dyn_cast<BlockDecl>(OuterD)) {
Eli Friedman7e346a82013-07-01 20:22:57 +00001277 if (!BD->getBlockManglingNumber())
1278 return LinkageInfo::none();
Rafael Espindola52189362013-06-04 13:43:35 +00001279
Eli Friedman7e346a82013-07-01 20:22:57 +00001280 LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(),
1281 BD->getBlockManglingContextDecl(), computation);
1282 } else {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001283 const auto *FD = cast<FunctionDecl>(OuterD);
Eli Friedman7e346a82013-07-01 20:22:57 +00001284 if (!FD->isInlined() &&
David Majnemer9963ade2014-12-16 04:52:14 +00001285 !isTemplateInstantiation(FD->getTemplateSpecializationKind()))
Eli Friedman7e346a82013-07-01 20:22:57 +00001286 return LinkageInfo::none();
1287
Hiroshi Inoue03ff37d2018-08-22 05:43:27 +00001288 // If a function is hidden by -fvisibility-inlines-hidden option and
1289 // is not explicitly attributed as a hidden function,
1290 // we should not make static local variables in the function hidden.
Eli Friedman7e346a82013-07-01 20:22:57 +00001291 LV = getLVForDecl(FD, computation);
Reid Klecknera52d1512018-10-10 21:59:56 +00001292 if (isa<VarDecl>(D) && useInlineVisibilityHidden(FD) &&
1293 !LV.isVisibilityExplicit()) {
1294 assert(cast<VarDecl>(D)->isStaticLocal());
1295 // If this was an implicitly hidden inline method, check again for
1296 // explicit visibility on the parent class, and use that for static locals
1297 // if present.
1298 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
1299 LV = getLVForDecl(MD->getParent(), computation);
1300 if (!LV.isVisibilityExplicit()) {
1301 Visibility globalVisibility =
1302 computation.isValueVisibility()
1303 ? Context.getLangOpts().getValueVisibilityMode()
1304 : Context.getLangOpts().getTypeVisibilityMode();
1305 return LinkageInfo(VisibleNoLinkage, globalVisibility,
1306 /*visibilityExplicit=*/false);
1307 }
1308 }
Eli Friedman7e346a82013-07-01 20:22:57 +00001309 }
Rafael Espindola111bb2e2013-05-27 14:50:21 +00001310 if (!isExternallyVisible(LV.getLinkage()))
Rafael Espindola50df3a02013-05-25 17:16:20 +00001311 return LinkageInfo::none();
1312 return LinkageInfo(VisibleNoLinkage, LV.getVisibility(),
1313 LV.isVisibilityExplicit());
John McCalldf25c432013-02-16 00:17:33 +00001314}
1315
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001316static inline const CXXRecordDecl*
1317getOutermostEnclosingLambda(const CXXRecordDecl *Record) {
1318 const CXXRecordDecl *Ret = Record;
1319 while (Record && Record->isLambda()) {
1320 Ret = Record;
1321 if (!Record->getParent()) break;
1322 // Get the Containing Class of this Lambda Class
1323 Record = dyn_cast_or_null<CXXRecordDecl>(
1324 Record->getParent()->getParent());
1325 }
1326 return Ret;
1327}
1328
George Burgess IV99db3ea2017-08-09 04:02:49 +00001329LinkageInfo LinkageComputer::computeLVForDecl(const NamedDecl *D,
Richard Smithc95d2c52017-09-22 04:25:05 +00001330 LVComputationKind computation,
1331 bool IgnoreVarTypeLinkage) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001332 // Internal_linkage attribute overrides other considerations.
1333 if (D->hasAttr<InternalLinkageAttr>())
Richard Smith1283e982017-07-07 20:04:28 +00001334 return getInternalLinkageFor(D);
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001335
Ted Kremenek926d8602010-04-20 23:15:35 +00001336 // Objective-C: treat all Objective-C declarations as having external
1337 // linkage.
John McCall033caa52010-10-29 00:29:13 +00001338 switch (D->getKind()) {
Ted Kremenek926d8602010-04-20 23:15:35 +00001339 default:
1340 break;
Richard Smith97135cc2015-11-12 22:19:45 +00001341
1342 // Per C++ [basic.link]p2, only the names of objects, references,
1343 // functions, types, templates, namespaces, and values ever have linkage.
1344 //
1345 // Note that the name of a typedef, namespace alias, using declaration,
1346 // and so on are not the name of the corresponding type, namespace, or
1347 // declaration, so they do *not* have linkage.
Richard Smith97135cc2015-11-12 22:19:45 +00001348 case Decl::ImplicitParam:
1349 case Decl::Label:
1350 case Decl::NamespaceAlias:
Argyrios Kyrtzidis79d04282011-12-01 01:28:21 +00001351 case Decl::ParmVar:
Richard Smith97135cc2015-11-12 22:19:45 +00001352 case Decl::Using:
1353 case Decl::UsingShadow:
1354 case Decl::UsingDirective:
Argyrios Kyrtzidis79d04282011-12-01 01:28:21 +00001355 return LinkageInfo::none();
Richard Smith97135cc2015-11-12 22:19:45 +00001356
Richard Smith26210db2015-11-13 03:52:13 +00001357 case Decl::EnumConstant:
1358 // C++ [basic.link]p4: an enumerator has the linkage of its enumeration.
Bruno Cardoso Lopes057c82c2017-07-01 00:06:27 +00001359 if (D->getASTContext().getLangOpts().CPlusPlus)
1360 return getLVForDecl(cast<EnumDecl>(D->getDeclContext()), computation);
1361 return LinkageInfo::visible_none();
Richard Smith26210db2015-11-13 03:52:13 +00001362
Richard Smith97135cc2015-11-12 22:19:45 +00001363 case Decl::Typedef:
1364 case Decl::TypeAlias:
1365 // A typedef declaration has linkage if it gives a type a name for
1366 // linkage purposes.
Vassil Vassilevb00ea082017-07-01 20:44:49 +00001367 if (!cast<TypedefNameDecl>(D)
Richard Smith97135cc2015-11-12 22:19:45 +00001368 ->getAnonDeclWithTypedefName(/*AnyRedecl*/true))
1369 return LinkageInfo::none();
1370 break;
1371
John McCall457a04e2010-10-22 21:05:15 +00001372 case Decl::TemplateTemplateParm: // count these as external
1373 case Decl::NonTypeTemplateParm:
Ted Kremenek926d8602010-04-20 23:15:35 +00001374 case Decl::ObjCAtDefsField:
1375 case Decl::ObjCCategory:
1376 case Decl::ObjCCategoryImpl:
Ted Kremenek926d8602010-04-20 23:15:35 +00001377 case Decl::ObjCCompatibleAlias:
Ted Kremenek926d8602010-04-20 23:15:35 +00001378 case Decl::ObjCImplementation:
Ted Kremenek926d8602010-04-20 23:15:35 +00001379 case Decl::ObjCMethod:
1380 case Decl::ObjCProperty:
1381 case Decl::ObjCPropertyImpl:
1382 case Decl::ObjCProtocol:
Richard Smith1283e982017-07-07 20:04:28 +00001383 return getExternalLinkageFor(D);
Fangrui Song6907ce22018-07-30 19:24:48 +00001384
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001385 case Decl::CXXRecord: {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001386 const auto *Record = cast<CXXRecordDecl>(D);
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001387 if (Record->isLambda()) {
Michael Liao243ebfb2019-10-19 00:15:19 +00001388 if (Record->hasKnownLambdaInternalLinkage() ||
1389 !Record->getLambdaManglingNumber()) {
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001390 // This lambda has no mangling number, so it's internal.
Richard Smith1283e982017-07-07 20:04:28 +00001391 return getInternalLinkageFor(D);
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001392 }
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001393
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001394 // This lambda has its linkage/visibility determined:
Fangrui Song6907ce22018-07-30 19:24:48 +00001395 // - either by the outermost lambda if that lambda has no mangling
1396 // number.
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001397 // - or by the parent of the outer most lambda
Fangrui Song6907ce22018-07-30 19:24:48 +00001398 // This prevents infinite recursion in settings such as nested lambdas
1399 // used in NSDMI's, for e.g.
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001400 // struct L {
1401 // int t{};
Fangrui Song6907ce22018-07-30 19:24:48 +00001402 // int t2 = ([](int a) { return [](int b) { return b; };})(t)(t);
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001403 // };
Fangrui Song6907ce22018-07-30 19:24:48 +00001404 const CXXRecordDecl *OuterMostLambda =
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001405 getOutermostEnclosingLambda(Record);
Michael Liao243ebfb2019-10-19 00:15:19 +00001406 if (OuterMostLambda->hasKnownLambdaInternalLinkage() ||
1407 !OuterMostLambda->getLambdaManglingNumber())
Richard Smith1283e982017-07-07 20:04:28 +00001408 return getInternalLinkageFor(D);
Fangrui Song6907ce22018-07-30 19:24:48 +00001409
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001410 return getLVForClosure(
1411 OuterMostLambda->getDeclContext()->getRedeclContext(),
1412 OuterMostLambda->getLambdaContextDecl(), computation);
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001413 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001414
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001415 break;
1416 }
Ted Kremenek926d8602010-04-20 23:15:35 +00001417 }
1418
Douglas Gregorf73b2822009-11-25 22:24:25 +00001419 // Handle linkage for namespace-scope names.
John McCall033caa52010-10-29 00:29:13 +00001420 if (D->getDeclContext()->getRedeclContext()->isFileContext())
Richard Smithc95d2c52017-09-22 04:25:05 +00001421 return getLVForNamespaceScopeDecl(D, computation, IgnoreVarTypeLinkage);
Fangrui Song6907ce22018-07-30 19:24:48 +00001422
Douglas Gregorf73b2822009-11-25 22:24:25 +00001423 // C++ [basic.link]p5:
1424 // In addition, a member function, static data member, a named
1425 // class or enumeration of class scope, or an unnamed class or
1426 // enumeration defined in a class-scope typedef declaration such
1427 // that the class or enumeration has the typedef name for linkage
1428 // purposes (7.1.3), has external linkage if the name of the class
1429 // has external linkage.
John McCall033caa52010-10-29 00:29:13 +00001430 if (D->getDeclContext()->isRecord())
Richard Smithc95d2c52017-09-22 04:25:05 +00001431 return getLVForClassMember(D, computation, IgnoreVarTypeLinkage);
Douglas Gregorf73b2822009-11-25 22:24:25 +00001432
1433 // C++ [basic.link]p6:
1434 // The name of a function declared in block scope and the name of
1435 // an object declared by a block scope extern declaration have
1436 // linkage. If there is a visible declaration of an entity with
1437 // linkage having the same name and type, ignoring entities
1438 // declared outside the innermost enclosing namespace scope, the
1439 // block scope declaration declares that same entity and receives
1440 // the linkage of the previous declaration. If there is more than
1441 // one such matching entity, the program is ill-formed. Otherwise,
1442 // if no matching entity is found, the block scope entity receives
1443 // external linkage.
John McCalldf25c432013-02-16 00:17:33 +00001444 if (D->getDeclContext()->isFunctionOrMethod())
1445 return getLVForLocalDecl(D, computation);
Douglas Gregorf73b2822009-11-25 22:24:25 +00001446
1447 // C++ [basic.link]p6:
1448 // Names not covered by these rules have no linkage.
John McCallc273f242010-10-30 11:50:40 +00001449 return LinkageInfo::none();
John McCall457a04e2010-10-22 21:05:15 +00001450}
Douglas Gregorf73b2822009-11-25 22:24:25 +00001451
George Burgess IV99db3ea2017-08-09 04:02:49 +00001452/// getLVForDecl - Get the linkage and visibility for the given declaration.
1453LinkageInfo LinkageComputer::getLVForDecl(const NamedDecl *D,
1454 LVComputationKind computation) {
1455 // Internal_linkage attribute overrides other considerations.
1456 if (D->hasAttr<InternalLinkageAttr>())
1457 return getInternalLinkageFor(D);
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001458
Richard Smithfbe7b462017-09-22 02:22:32 +00001459 if (computation.IgnoreAllVisibility && D->hasCachedLinkage())
George Burgess IV99db3ea2017-08-09 04:02:49 +00001460 return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001461
George Burgess IV35cb4f82017-08-09 04:12:17 +00001462 if (llvm::Optional<LinkageInfo> LI = lookup(D, computation))
1463 return *LI;
1464
George Burgess IV99db3ea2017-08-09 04:02:49 +00001465 LinkageInfo LV = computeLVForDecl(D, computation);
1466 if (D->hasCachedLinkage())
1467 assert(D->getCachedLinkage() == LV.getLinkage());
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001468
George Burgess IV99db3ea2017-08-09 04:02:49 +00001469 D->setCachedLinkage(LV.getLinkage());
George Burgess IV35cb4f82017-08-09 04:12:17 +00001470 cache(D, computation, LV);
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001471
1472#ifndef NDEBUG
George Burgess IV99db3ea2017-08-09 04:02:49 +00001473 // In C (because of gnu inline) and in c++ with microsoft extensions an
1474 // static can follow an extern, so we can have two decls with different
1475 // linkages.
1476 const LangOptions &Opts = D->getASTContext().getLangOpts();
1477 if (!Opts.CPlusPlus || Opts.MicrosoftExt)
1478 return LV;
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001479
George Burgess IV99db3ea2017-08-09 04:02:49 +00001480 // We have just computed the linkage for this decl. By induction we know
1481 // that all other computed linkages match, check that the one we just
1482 // computed also does.
1483 NamedDecl *Old = nullptr;
1484 for (auto I : D->redecls()) {
1485 auto *T = cast<NamedDecl>(I);
1486 if (T == D)
1487 continue;
1488 if (!T->isInvalidDecl() && T->hasCachedLinkage()) {
1489 Old = T;
1490 break;
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001491 }
George Burgess IV99db3ea2017-08-09 04:02:49 +00001492 }
1493 assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001494#endif
1495
George Burgess IV99db3ea2017-08-09 04:02:49 +00001496 return LV;
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001497}
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001498
George Burgess IV99db3ea2017-08-09 04:02:49 +00001499LinkageInfo LinkageComputer::getDeclLinkageAndVisibility(const NamedDecl *D) {
Richard Smithfbe7b462017-09-22 02:22:32 +00001500 return getLVForDecl(D,
1501 LVComputationKind(usesTypeVisibility(D)
1502 ? NamedDecl::VisibilityForType
1503 : NamedDecl::VisibilityForValue));
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001504}
1505
Richard Smithbecb92d2017-10-10 22:33:17 +00001506Module *Decl::getOwningModuleForLinkage(bool IgnoreLinkage) const {
Richard Smithdd8b5332017-09-04 05:37:53 +00001507 Module *M = getOwningModule();
1508 if (!M)
1509 return nullptr;
1510
1511 switch (M->Kind) {
1512 case Module::ModuleMapModule:
1513 // Module map modules have no special linkage semantics.
1514 return nullptr;
1515
1516 case Module::ModuleInterfaceUnit:
1517 return M;
1518
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001519 case Module::GlobalModuleFragment: {
Richard Smithdd8b5332017-09-04 05:37:53 +00001520 // External linkage declarations in the global module have no owning module
1521 // for linkage purposes. But internal linkage declarations in the global
1522 // module fragment of a particular module are owned by that module for
1523 // linkage purposes.
Richard Smithbecb92d2017-10-10 22:33:17 +00001524 if (IgnoreLinkage)
1525 return nullptr;
1526 bool InternalLinkage;
1527 if (auto *ND = dyn_cast<NamedDecl>(this))
1528 InternalLinkage = !ND->hasExternalFormalLinkage();
1529 else {
1530 auto *NSD = dyn_cast<NamespaceDecl>(this);
1531 InternalLinkage = (NSD && NSD->isAnonymousNamespace()) ||
1532 isInAnonymousNamespace();
1533 }
1534 return InternalLinkage ? M->Parent : nullptr;
Richard Smithdd8b5332017-09-04 05:37:53 +00001535 }
Richard Smitha5bbbfe2019-04-18 21:12:54 +00001536
1537 case Module::PrivateModuleFragment:
1538 // The private module fragment is part of its containing module for linkage
1539 // purposes.
1540 return M->Parent;
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001541 }
Richard Smithdd8b5332017-09-04 05:37:53 +00001542
1543 llvm_unreachable("unknown module kind");
1544}
1545
Richard Smith7873de02016-08-11 22:25:46 +00001546void NamedDecl::printName(raw_ostream &os) const {
1547 os << Name;
1548}
1549
Douglas Gregor2ada0482009-02-04 17:27:36 +00001550std::string NamedDecl::getQualifiedNameAsString() const {
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001551 std::string QualName;
1552 llvm::raw_string_ostream OS(QualName);
Aaron Ballman75ee4cc2014-01-03 18:42:48 +00001553 printQualifiedName(OS, getASTContext().getPrintingPolicy());
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001554 return OS.str();
1555}
1556
1557void NamedDecl::printQualifiedName(raw_ostream &OS) const {
1558 printQualifiedName(OS, getASTContext().getPrintingPolicy());
1559}
1560
1561void NamedDecl::printQualifiedName(raw_ostream &OS,
1562 const PrintingPolicy &P) const {
Ilya Biryukov66482232019-09-25 15:46:04 +00001563 if (getDeclContext()->isFunctionOrMethod()) {
1564 // We do not print '(anonymous)' for function parameters without name.
1565 printName(OS);
1566 return;
1567 }
1568 printNestedNameSpecifier(OS, P);
1569 if (getDeclName() || isa<DecompositionDecl>(this))
1570 OS << *this;
1571 else
1572 OS << "(anonymous)";
1573}
1574
1575void NamedDecl::printNestedNameSpecifier(raw_ostream &OS) const {
1576 printNestedNameSpecifier(OS, getASTContext().getPrintingPolicy());
1577}
1578
1579void NamedDecl::printNestedNameSpecifier(raw_ostream &OS,
1580 const PrintingPolicy &P) const {
Douglas Gregor2ada0482009-02-04 17:27:36 +00001581 const DeclContext *Ctx = getDeclContext();
1582
David Goldman19d21852019-04-04 20:13:22 +00001583 // For ObjC methods and properties, look through categories and use the
1584 // interface as context.
Argyrios Kyrtzidisa166a2b2017-03-07 09:26:07 +00001585 if (auto *MD = dyn_cast<ObjCMethodDecl>(this))
1586 if (auto *ID = MD->getClassInterface())
1587 Ctx = ID;
David Goldman19d21852019-04-04 20:13:22 +00001588 if (auto *PD = dyn_cast<ObjCPropertyDecl>(this)) {
1589 if (auto *MD = PD->getGetterMethodDecl())
1590 if (auto *ID = MD->getClassInterface())
1591 Ctx = ID;
1592 }
Argyrios Kyrtzidisa166a2b2017-03-07 09:26:07 +00001593
Ilya Biryukov66482232019-09-25 15:46:04 +00001594 if (Ctx->isFunctionOrMethod())
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001595 return;
Douglas Gregor2ada0482009-02-04 17:27:36 +00001596
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001597 using ContextsTy = SmallVector<const DeclContext *, 8>;
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001598 ContextsTy Contexts;
1599
Sam McCall34f9d3f2018-02-02 13:34:47 +00001600 // Collect named contexts.
1601 while (Ctx) {
1602 if (isa<NamedDecl>(Ctx))
1603 Contexts.push_back(Ctx);
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001604 Ctx = Ctx->getParent();
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001605 }
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001606
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001607 for (const DeclContext *DC : llvm::reverse(Contexts)) {
David Majnemerf7e36092016-06-23 00:15:04 +00001608 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
Benjamin Kramer9170e912013-02-22 15:46:01 +00001609 OS << Spec->getName();
Douglas Gregor85673582009-05-18 17:01:57 +00001610 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Serge Pavlov03e672c2017-11-28 16:14:14 +00001611 printTemplateArgumentList(OS, TemplateArgs.asArray(), P);
David Majnemerf7e36092016-06-23 00:15:04 +00001612 } else if (const auto *ND = dyn_cast<NamespaceDecl>(DC)) {
Richard Smith46dd5bb2014-05-30 22:16:51 +00001613 if (P.SuppressUnwrittenScope &&
1614 (ND->isAnonymousNamespace() || ND->isInline()))
1615 continue;
Reid Kleckner60103382015-12-16 02:04:40 +00001616 if (ND->isAnonymousNamespace()) {
1617 OS << (P.MSVCFormatting ? "`anonymous namespace\'"
1618 : "(anonymous namespace)");
1619 }
Sam Weinig07d211e2009-12-24 23:15:03 +00001620 else
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001621 OS << *ND;
David Majnemerf7e36092016-06-23 00:15:04 +00001622 } else if (const auto *RD = dyn_cast<RecordDecl>(DC)) {
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001623 if (!RD->getIdentifier())
David Blaikieabe1a392014-04-02 05:58:29 +00001624 OS << "(anonymous " << RD->getKindName() << ')';
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001625 else
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001626 OS << *RD;
David Majnemerf7e36092016-06-23 00:15:04 +00001627 } else if (const auto *FD = dyn_cast<FunctionDecl>(DC)) {
Craig Topper36250ad2014-05-12 05:36:57 +00001628 const FunctionProtoType *FT = nullptr;
Sam Weinigb999f682009-12-28 03:19:38 +00001629 if (FD->hasWrittenPrototype())
Eli Friedman5c27c4c2012-08-30 22:22:09 +00001630 FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
Sam Weinigb999f682009-12-28 03:19:38 +00001631
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001632 OS << *FD << '(';
Sam Weinigb999f682009-12-28 03:19:38 +00001633 if (FT) {
Sam Weinigb999f682009-12-28 03:19:38 +00001634 unsigned NumParams = FD->getNumParams();
1635 for (unsigned i = 0; i < NumParams; ++i) {
1636 if (i)
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001637 OS << ", ";
Argyrios Kyrtzidisa18347e2012-05-05 04:20:37 +00001638 OS << FD->getParamDecl(i)->getType().stream(P);
Sam Weinigb999f682009-12-28 03:19:38 +00001639 }
1640
1641 if (FT->isVariadic()) {
1642 if (NumParams > 0)
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001643 OS << ", ";
1644 OS << "...";
Sam Weinigb999f682009-12-28 03:19:38 +00001645 }
1646 }
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001647 OS << ')';
David Majnemerf7e36092016-06-23 00:15:04 +00001648 } else if (const auto *ED = dyn_cast<EnumDecl>(DC)) {
Alexander Kornienko4f355322015-11-09 16:45:17 +00001649 // C++ [dcl.enum]p10: Each enum-name and each unscoped
1650 // enumerator is declared in the scope that immediately contains
1651 // the enum-specifier. Each scoped enumerator is declared in the
1652 // scope of the enumeration.
Paul Robinsonf1838482017-12-21 21:47:22 +00001653 // For the case of unscoped enumerator, do not include in the qualified
Paul Robinsond1c3dd82017-12-26 18:01:19 +00001654 // name any information about its enum enclosing scope, as its visibility
Paul Robinsonf1838482017-12-21 21:47:22 +00001655 // is global.
1656 if (ED->isScoped())
Alexander Kornienko4f355322015-11-09 16:45:17 +00001657 OS << *ED;
1658 else
1659 continue;
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001660 } else {
David Majnemerf7e36092016-06-23 00:15:04 +00001661 OS << *cast<NamedDecl>(DC);
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001662 }
1663 OS << "::";
Douglas Gregor2ada0482009-02-04 17:27:36 +00001664 }
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001665}
Douglas Gregor2ada0482009-02-04 17:27:36 +00001666
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001667void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
1668 const PrintingPolicy &Policy,
1669 bool Qualified) const {
1670 if (Qualified)
1671 printQualifiedName(OS, Policy);
1672 else
1673 printName(OS);
Douglas Gregor2ada0482009-02-04 17:27:36 +00001674}
1675
Richard Smithe8292b12015-02-10 03:28:10 +00001676template<typename T> static bool isRedeclarableImpl(Redeclarable<T> *) {
1677 return true;
1678}
1679static bool isRedeclarableImpl(...) { return false; }
1680static bool isRedeclarable(Decl::Kind K) {
1681 switch (K) {
1682#define DECL(Type, Base) \
1683 case Decl::Type: \
1684 return isRedeclarableImpl((Type##Decl *)nullptr);
1685#define ABSTRACT_DECL(DECL)
1686#include "clang/AST/DeclNodes.inc"
1687 }
1688 llvm_unreachable("unknown decl kind");
1689}
1690
1691bool NamedDecl::declarationReplaces(NamedDecl *OldD, bool IsKnownNewer) const {
Douglas Gregor8b9ccca2008-12-23 21:05:05 +00001692 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
1693
Richard Smithfe620d22015-03-05 23:24:12 +00001694 // Never replace one imported declaration with another; we need both results
1695 // when re-exporting.
1696 if (OldD->isFromASTFile() && isFromASTFile())
1697 return false;
1698
Richard Smith5cd86f82015-11-03 03:13:11 +00001699 // A kind mismatch implies that the declaration is not replaced.
1700 if (OldD->getKind() != getKind())
Richard Smithe8292b12015-02-10 03:28:10 +00001701 return false;
1702
Richard Smith5cd86f82015-11-03 03:13:11 +00001703 // For method declarations, we never replace. (Why?)
1704 if (isa<ObjCMethodDecl>(this))
1705 return false;
1706
1707 // For parameters, pick the newer one. This is either an error or (in
1708 // Objective-C) permitted as an extension.
1709 if (isa<ParmVarDecl>(this))
1710 return true;
1711
Richard Smithe8292b12015-02-10 03:28:10 +00001712 // Inline namespaces can give us two declarations with the same
1713 // name and kind in the same scope but different contexts; we should
1714 // keep both declarations in this case.
1715 if (!this->getDeclContext()->getRedeclContext()->Equals(
1716 OldD->getDeclContext()->getRedeclContext()))
1717 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001718
Richard Smith5cd86f82015-11-03 03:13:11 +00001719 // Using declarations can be replaced if they import the same name from the
1720 // same context.
Richard Smithe8292b12015-02-10 03:28:10 +00001721 if (auto *UD = dyn_cast<UsingDecl>(this)) {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001722 ASTContext &Context = getASTContext();
Richard Smithe8292b12015-02-10 03:28:10 +00001723 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001724 Context.getCanonicalNestedNameSpecifier(
Richard Smithe8292b12015-02-10 03:28:10 +00001725 cast<UsingDecl>(OldD)->getQualifier());
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001726 }
Richard Smithe8292b12015-02-10 03:28:10 +00001727 if (auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) {
Eli Friedman0eaf10b2013-08-20 00:39:40 +00001728 ASTContext &Context = getASTContext();
Richard Smithe8292b12015-02-10 03:28:10 +00001729 return Context.getCanonicalNestedNameSpecifier(UUVD->getQualifier()) ==
Eli Friedman0eaf10b2013-08-20 00:39:40 +00001730 Context.getCanonicalNestedNameSpecifier(
1731 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
1732 }
1733
Richard Smith5cd86f82015-11-03 03:13:11 +00001734 if (isRedeclarable(getKind())) {
1735 if (getCanonicalDecl() != OldD->getCanonicalDecl())
1736 return false;
1737
1738 if (IsKnownNewer)
1739 return true;
1740
Richard Smithe8292b12015-02-10 03:28:10 +00001741 // Check whether this is actually newer than OldD. We want to keep the
1742 // newer declaration. This loop will usually only iterate once, because
1743 // OldD is usually the previous declaration.
1744 for (auto D : redecls()) {
1745 if (D == OldD)
1746 break;
1747
1748 // If we reach the canonical declaration, then OldD is not actually older
1749 // than this one.
1750 //
1751 // FIXME: In this case, we should not add this decl to the lookup table.
1752 if (D->isCanonicalDecl())
1753 return false;
1754 }
Richard Smith5cd86f82015-11-03 03:13:11 +00001755
1756 // It's a newer declaration of the same kind of declaration in the same
1757 // scope: we want this decl instead of the existing one.
1758 return true;
Richard Smithe8292b12015-02-10 03:28:10 +00001759 }
1760
Richard Smith5cd86f82015-11-03 03:13:11 +00001761 // In all other cases, we need to keep both declarations in case they have
1762 // different visibility. Any attempt to use the name will result in an
1763 // ambiguity if more than one is visible.
1764 return false;
Douglas Gregor8b9ccca2008-12-23 21:05:05 +00001765}
1766
Douglas Gregoreddf4332009-02-24 20:03:32 +00001767bool NamedDecl::hasLinkage() const {
Rafael Espindola50df3a02013-05-25 17:16:20 +00001768 return getFormalLinkage() != NoLinkage;
Douglas Gregoreddf4332009-02-24 20:03:32 +00001769}
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001770
Daniel Dunbar166ea9ad2012-03-08 18:20:41 +00001771NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
Anders Carlsson6915bf62009-06-26 06:29:23 +00001772 NamedDecl *ND = this;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001773 while (auto *UD = dyn_cast<UsingShadowDecl>(ND))
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001774 ND = UD->getTargetDecl();
1775
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001776 if (auto *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001777 return AD->getClassInterface();
1778
Richard Smithf2005d32015-12-29 23:34:32 +00001779 if (auto *AD = dyn_cast<NamespaceAliasDecl>(ND))
1780 return AD->getNamespace();
1781
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001782 return ND;
Anders Carlsson6915bf62009-06-26 06:29:23 +00001783}
1784
John McCalla8ae2222010-04-06 21:38:20 +00001785bool NamedDecl::isCXXInstanceMember() const {
Douglas Gregor3f28ec22012-03-08 02:08:05 +00001786 if (!isCXXClassMember())
1787 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00001788
John McCalla8ae2222010-04-06 21:38:20 +00001789 const NamedDecl *D = this;
1790 if (isa<UsingShadowDecl>(D))
1791 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1792
John McCall5e77d762013-04-16 07:28:30 +00001793 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
John McCalla8ae2222010-04-06 21:38:20 +00001794 return true;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001795 if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()))
Alp Tokera2794f92014-01-22 07:29:52 +00001796 return MD->isInstance();
John McCalla8ae2222010-04-06 21:38:20 +00001797 return false;
1798}
1799
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00001800//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001801// DeclaratorDecl Implementation
1802//===----------------------------------------------------------------------===//
1803
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00001804template <typename DeclT>
1805static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
1806 if (decl->getNumTemplateParameterLists() > 0)
1807 return decl->getTemplateParameterList(0)->getTemplateLoc();
1808 else
1809 return decl->getInnerLocStart();
1810}
1811
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001812SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCallf7bcc812010-05-28 23:32:21 +00001813 TypeSourceInfo *TSI = getTypeSourceInfo();
1814 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001815 return SourceLocation();
1816}
1817
Douglas Gregor14454802011-02-25 02:25:35 +00001818void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1819 if (QualifierLoc) {
John McCall3e11ebe2010-03-15 10:12:16 +00001820 // Make sure the extended decl info is allocated.
1821 if (!hasExtInfo()) {
1822 // Save (non-extended) type source info pointer.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001823 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
John McCall3e11ebe2010-03-15 10:12:16 +00001824 // Allocate external info struct.
1825 DeclInfo = new (getASTContext()) ExtInfo;
1826 // Restore savedTInfo into (extended) decl info.
1827 getExtInfo()->TInfo = savedTInfo;
1828 }
1829 // Set qualifier info.
Douglas Gregor14454802011-02-25 02:25:35 +00001830 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier6fdf38b2011-08-17 23:08:45 +00001831 } else {
John McCall3e11ebe2010-03-15 10:12:16 +00001832 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCall3e11ebe2010-03-15 10:12:16 +00001833 if (hasExtInfo()) {
Abramo Bagnara60804e12011-03-18 15:16:37 +00001834 if (getExtInfo()->NumTemplParamLists == 0) {
1835 // Save type source info pointer.
1836 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1837 // Deallocate the extended decl info.
1838 getASTContext().Deallocate(getExtInfo());
1839 // Restore savedTInfo into (non-extended) decl info.
1840 DeclInfo = savedTInfo;
1841 }
1842 else
1843 getExtInfo()->QualifierLoc = QualifierLoc;
John McCall3e11ebe2010-03-15 10:12:16 +00001844 }
1845 }
1846}
1847
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001848void DeclaratorDecl::setTemplateParameterListsInfo(
1849 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
1850 assert(!TPLists.empty());
Abramo Bagnara60804e12011-03-18 15:16:37 +00001851 // Make sure the extended decl info is allocated.
1852 if (!hasExtInfo()) {
1853 // Save (non-extended) type source info pointer.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001854 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
Abramo Bagnara60804e12011-03-18 15:16:37 +00001855 // Allocate external info struct.
1856 DeclInfo = new (getASTContext()) ExtInfo;
1857 // Restore savedTInfo into (extended) decl info.
1858 getExtInfo()->TInfo = savedTInfo;
1859 }
1860 // Set the template parameter lists info.
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001861 getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
Abramo Bagnara60804e12011-03-18 15:16:37 +00001862}
1863
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00001864SourceLocation DeclaratorDecl::getOuterLocStart() const {
1865 return getTemplateOrInnerLocStart(this);
1866}
1867
Abramo Bagnaraea947882011-03-08 16:41:52 +00001868// Helper function: returns true if QT is or contains a type
1869// having a postfix component.
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001870static bool typeIsPostfix(QualType QT) {
Abramo Bagnaraea947882011-03-08 16:41:52 +00001871 while (true) {
1872 const Type* T = QT.getTypePtr();
1873 switch (T->getTypeClass()) {
1874 default:
1875 return false;
1876 case Type::Pointer:
1877 QT = cast<PointerType>(T)->getPointeeType();
1878 break;
1879 case Type::BlockPointer:
1880 QT = cast<BlockPointerType>(T)->getPointeeType();
1881 break;
1882 case Type::MemberPointer:
1883 QT = cast<MemberPointerType>(T)->getPointeeType();
1884 break;
1885 case Type::LValueReference:
1886 case Type::RValueReference:
1887 QT = cast<ReferenceType>(T)->getPointeeType();
1888 break;
1889 case Type::PackExpansion:
1890 QT = cast<PackExpansionType>(T)->getPattern();
1891 break;
1892 case Type::Paren:
1893 case Type::ConstantArray:
1894 case Type::DependentSizedArray:
1895 case Type::IncompleteArray:
1896 case Type::VariableArray:
1897 case Type::FunctionProto:
1898 case Type::FunctionNoProto:
1899 return true;
1900 }
1901 }
1902}
1903
Abramo Bagnaraea947882011-03-08 16:41:52 +00001904SourceRange DeclaratorDecl::getSourceRange() const {
1905 SourceLocation RangeEnd = getLocation();
1906 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
Benjamin Kramer3a7cc812014-02-02 15:28:46 +00001907 // If the declaration has no name or the type extends past the name take the
1908 // end location of the type.
1909 if (!getDeclName() || typeIsPostfix(TInfo->getType()))
Abramo Bagnaraea947882011-03-08 16:41:52 +00001910 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1911 }
1912 return SourceRange(getOuterLocStart(), RangeEnd);
1913}
1914
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001915void QualifierInfo::setTemplateParameterListsInfo(
1916 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001917 // Free previous template parameters (if any).
1918 if (NumTemplParamLists > 0) {
Douglas Gregor20527e22010-06-15 17:44:38 +00001919 Context.Deallocate(TemplParamLists);
Craig Topper36250ad2014-05-12 05:36:57 +00001920 TemplParamLists = nullptr;
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001921 NumTemplParamLists = 0;
1922 }
1923 // Set info on matched template parameter lists (if any).
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001924 if (!TPLists.empty()) {
1925 TemplParamLists = new (Context) TemplateParameterList *[TPLists.size()];
1926 NumTemplParamLists = TPLists.size();
1927 std::copy(TPLists.begin(), TPLists.end(), TemplParamLists);
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001928 }
1929}
1930
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001931//===----------------------------------------------------------------------===//
Nuno Lopes394ec982008-12-17 23:39:55 +00001932// VarDecl Implementation
1933//===----------------------------------------------------------------------===//
1934
Sebastian Redl833ef452010-01-26 22:01:41 +00001935const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1936 switch (SC) {
Peter Collingbourne2dbb7082011-09-19 21:14:35 +00001937 case SC_None: break;
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001938 case SC_Auto: return "auto";
1939 case SC_Extern: return "extern";
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001940 case SC_PrivateExtern: return "__private_extern__";
1941 case SC_Register: return "register";
1942 case SC_Static: return "static";
Sebastian Redl833ef452010-01-26 22:01:41 +00001943 }
1944
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001945 llvm_unreachable("Invalid storage class");
Sebastian Redl833ef452010-01-26 22:01:41 +00001946}
1947
Richard Smith053f6c62014-05-16 23:01:30 +00001948VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
1949 SourceLocation StartLoc, SourceLocation IdLoc,
1950 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1951 StorageClass SC)
1952 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001953 redeclarable_base(C) {
Benjamin Kramera939c232014-03-15 18:54:13 +00001954 static_assert(sizeof(VarDeclBitfields) <= sizeof(unsigned),
1955 "VarDeclBitfields too large!");
1956 static_assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned),
1957 "ParmVarDeclBitfields too large!");
David Majnemerfa7bc782015-05-19 00:57:16 +00001958 static_assert(sizeof(NonParmVarDeclBitfields) <= sizeof(unsigned),
1959 "NonParmVarDeclBitfields too large!");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001960 AllBits = 0;
1961 VarDeclBits.SClass = SC;
1962 // Everything else is implicitly initialized to false.
1963}
1964
Abramo Bagnaradff19302011-03-08 08:55:46 +00001965VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1966 SourceLocation StartL, SourceLocation IdL,
John McCallbcd03502009-12-07 02:54:59 +00001967 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001968 StorageClass S) {
Richard Smith053f6c62014-05-16 23:01:30 +00001969 return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
Nuno Lopes394ec982008-12-17 23:39:55 +00001970}
1971
Douglas Gregor72172e92012-01-05 21:55:30 +00001972VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00001973 return new (C, ID)
1974 VarDecl(Var, C, nullptr, SourceLocation(), SourceLocation(), nullptr,
1975 QualType(), nullptr, SC_None);
Douglas Gregor72172e92012-01-05 21:55:30 +00001976}
1977
Douglas Gregorbf62d642010-12-06 18:36:25 +00001978void VarDecl::setStorageClass(StorageClass SC) {
1979 assert(isLegalForVariable(SC));
John McCallbeaa11c2011-05-01 02:13:58 +00001980 VarDeclBits.SClass = SC;
Douglas Gregorbf62d642010-12-06 18:36:25 +00001981}
1982
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001983VarDecl::TLSKind VarDecl::getTLSKind() const {
1984 switch (VarDeclBits.TSCSpec) {
1985 case TSCS_unspecified:
Samuel Antaof8b50122015-07-13 22:54:53 +00001986 if (!hasAttr<ThreadAttr>() &&
1987 !(getASTContext().getLangOpts().OpenMPUseTLS &&
1988 getASTContext().getTargetInfo().isTLSSupported() &&
1989 hasAttr<OMPThreadPrivateDeclAttr>()))
David Majnemer1b5baff2015-05-14 05:19:23 +00001990 return TLS_None;
Samuel Antaof8b50122015-07-13 22:54:53 +00001991 return ((getASTContext().getLangOpts().isCompatibleWithMSVC(
1992 LangOptions::MSVC2015)) ||
1993 hasAttr<OMPThreadPrivateDeclAttr>())
David Majnemer1b5baff2015-05-14 05:19:23 +00001994 ? TLS_Dynamic
1995 : TLS_Static;
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001996 case TSCS___thread: // Fall through.
1997 case TSCS__Thread_local:
Samuel Antaof8b50122015-07-13 22:54:53 +00001998 return TLS_Static;
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001999 case TSCS_thread_local:
2000 return TLS_Dynamic;
2001 }
2002 llvm_unreachable("Unknown thread storage class specifier!");
2003}
2004
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00002005SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidise0d64972012-10-08 23:08:41 +00002006 if (const Expr *Init = getInit()) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002007 SourceLocation InitEnd = Init->getEndLoc();
Fangrui Song6907ce22018-07-30 19:24:48 +00002008 // If Init is implicit, ignore its source range and fallback on
Nico Weberbbe13942013-01-22 17:00:09 +00002009 // DeclaratorDecl::getSourceRange() to handle postfix elements.
2010 if (InitEnd.isValid() && InitEnd != getLocation())
Argyrios Kyrtzidise0d64972012-10-08 23:08:41 +00002011 return SourceRange(getOuterLocStart(), InitEnd);
2012 }
Abramo Bagnaraea947882011-03-08 16:41:52 +00002013 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002014}
2015
Rafael Espindola88510672013-01-04 21:18:45 +00002016template<typename T>
Alp Toker84212df2014-05-31 06:11:02 +00002017static LanguageLinkage getDeclLanguageLinkage(const T &D) {
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002018 // C++ [dcl.link]p1: All function types, function names with external linkage,
2019 // and variable names with external linkage have a language linkage.
Rafael Espindola3ae00052013-05-13 00:12:11 +00002020 if (!D.hasExternalFormalLinkage())
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002021 return NoLanguageLinkage;
2022
2023 // Language linkage is a C++ concept, but saying that everything else in C has
Rafael Espindola66748e92013-01-04 20:41:40 +00002024 // C language linkage fits the implementation nicely.
Rafael Espindola576127d2012-12-28 14:21:58 +00002025 ASTContext &Context = D.getASTContext();
2026 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindolaf4187652013-02-14 01:18:37 +00002027 return CLanguageLinkage;
2028
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002029 // C++ [dcl.link]p4: A C language linkage is ignored in determining the
2030 // language linkage of the names of class members and the function type of
2031 // class member functions.
Rafael Espindola576127d2012-12-28 14:21:58 +00002032 const DeclContext *DC = D.getDeclContext();
2033 if (DC->isRecord())
Rafael Espindolaf4187652013-02-14 01:18:37 +00002034 return CXXLanguageLinkage;
Rafael Espindola576127d2012-12-28 14:21:58 +00002035
2036 // If the first decl is in an extern "C" context, any other redeclaration
2037 // will have C language linkage. If the first one is not in an extern "C"
2038 // context, we would have reported an error for any other decl being in one.
Rafael Espindola593537a2013-05-05 20:15:21 +00002039 if (isFirstInExternCContext(&D))
Rafael Espindolaf4187652013-02-14 01:18:37 +00002040 return CLanguageLinkage;
2041 return CXXLanguageLinkage;
Rafael Espindola576127d2012-12-28 14:21:58 +00002042}
2043
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002044template<typename T>
Alp Toker84212df2014-05-31 06:11:02 +00002045static bool isDeclExternC(const T &D) {
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002046 // Since the context is ignored for class members, they can only have C++
2047 // language linkage or no language linkage.
2048 const DeclContext *DC = D.getDeclContext();
2049 if (DC->isRecord()) {
2050 assert(D.getASTContext().getLangOpts().CPlusPlus);
2051 return false;
2052 }
2053
2054 return D.getLanguageLinkage() == CLanguageLinkage;
2055}
2056
Rafael Espindolaf4187652013-02-14 01:18:37 +00002057LanguageLinkage VarDecl::getLanguageLinkage() const {
Alp Toker84212df2014-05-31 06:11:02 +00002058 return getDeclLanguageLinkage(*this);
Rafael Espindola576127d2012-12-28 14:21:58 +00002059}
2060
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002061bool VarDecl::isExternC() const {
Alp Toker84212df2014-05-31 06:11:02 +00002062 return isDeclExternC(*this);
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002063}
2064
Rafael Espindola593537a2013-05-05 20:15:21 +00002065bool VarDecl::isInExternCContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00002066 return getLexicalDeclContext()->isExternCContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002067}
2068
2069bool VarDecl::isInExternCXXContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00002070 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002071}
2072
Rafael Espindola8db352d2013-10-17 15:37:26 +00002073VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl833ef452010-01-26 22:01:41 +00002074
Nico Weber7f5015a2015-04-15 21:53:00 +00002075VarDecl::DefinitionKind
2076VarDecl::isThisDeclarationADefinition(ASTContext &C) const {
Richard Smitha22d9a52017-12-02 00:55:48 +00002077 if (isThisDeclarationADemotedDefinition())
2078 return DeclarationOnly;
2079
Sebastian Redl35351a92010-01-31 22:27:38 +00002080 // C++ [basic.def]p2:
2081 // A declaration is a definition unless [...] it contains the 'extern'
2082 // specifier or a linkage-specification and neither an initializer [...],
Richard Smith62f19e72016-06-25 00:15:56 +00002083 // it declares a non-inline static data member in a class declaration [...],
2084 // it declares a static data member outside a class definition and the variable
2085 // was defined within the class with the constexpr specifier [...],
Richard Smith8809a0c2013-09-27 20:14:12 +00002086 // C++1y [temp.expl.spec]p15:
2087 // An explicit specialization of a static data member or an explicit
2088 // specialization of a static data member template is a definition if the
2089 // declaration includes an initializer; otherwise, it is a declaration.
2090 //
2091 // FIXME: How do you declare (but not define) a partial specialization of
2092 // a static data member template outside the containing class?
Sebastian Redl35351a92010-01-31 22:27:38 +00002093 if (isStaticDataMember()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00002094 if (isOutOfLine() &&
Richard Smith62f19e72016-06-25 00:15:56 +00002095 !(getCanonicalDecl()->isInline() &&
2096 getCanonicalDecl()->isConstexpr()) &&
Richard Smith8809a0c2013-09-27 20:14:12 +00002097 (hasInit() ||
2098 // If the first declaration is out-of-line, this may be an
2099 // instantiation of an out-of-line partial specialization of a variable
2100 // template for which we have not yet instantiated the initializer.
Rafael Espindola8db352d2013-10-17 15:37:26 +00002101 (getFirstDecl()->isOutOfLine()
Richard Smith8809a0c2013-09-27 20:14:12 +00002102 ? getTemplateSpecializationKind() == TSK_Undeclared
2103 : getTemplateSpecializationKind() !=
2104 TSK_ExplicitSpecialization) ||
2105 isa<VarTemplatePartialSpecializationDecl>(this)))
Sebastian Redl35351a92010-01-31 22:27:38 +00002106 return Definition;
Richard Smith62f19e72016-06-25 00:15:56 +00002107 else if (!isOutOfLine() && isInline())
2108 return Definition;
Sebastian Redl35351a92010-01-31 22:27:38 +00002109 else
2110 return DeclarationOnly;
2111 }
2112 // C99 6.7p5:
2113 // A definition of an identifier is a declaration for that identifier that
2114 // [...] causes storage to be reserved for that object.
2115 // Note: that applies for all non-file-scope objects.
2116 // C99 6.9.2p1:
2117 // If the declaration of an identifier for an object has file scope and an
2118 // initializer, the declaration is an external definition for the identifier
2119 if (hasInit())
2120 return Definition;
Rafael Espindolabff59562013-04-25 12:11:36 +00002121
Dmitry Polukhin85eda122016-04-11 07:48:59 +00002122 if (hasDefiningAttr())
Rafael Espindolad53ffa02013-10-22 21:39:03 +00002123 return Definition;
2124
David Majnemerdd0bed12015-05-14 05:19:20 +00002125 if (const auto *SAA = getAttr<SelectAnyAttr>())
2126 if (!SAA->isInherited())
2127 return Definition;
2128
Richard Smith8809a0c2013-09-27 20:14:12 +00002129 // A variable template specialization (other than a static data member
2130 // template or an explicit specialization) is a declaration until we
2131 // instantiate its initializer.
Richard Smith435e6472017-12-02 02:48:42 +00002132 if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(this)) {
2133 if (VTSD->getTemplateSpecializationKind() != TSK_ExplicitSpecialization &&
2134 !isa<VarTemplatePartialSpecializationDecl>(VTSD) &&
2135 !VTSD->IsCompleteDefinition)
2136 return DeclarationOnly;
2137 }
Richard Smith8809a0c2013-09-27 20:14:12 +00002138
Nico Weber608e7682015-04-15 23:04:24 +00002139 if (hasExternalStorage())
Sebastian Redl35351a92010-01-31 22:27:38 +00002140 return DeclarationOnly;
Rafael Espindola8f326a52013-03-07 01:42:44 +00002141
Rafael Espindolabff59562013-04-25 12:11:36 +00002142 // [dcl.link] p7:
2143 // A declaration directly contained in a linkage-specification is treated
2144 // as if it contains the extern specifier for the purpose of determining
2145 // the linkage of the declared name and whether it is a definition.
Nico Weber608e7682015-04-15 23:04:24 +00002146 if (isSingleLineLanguageLinkage(*this))
Rafael Espindola327be3c2013-04-26 01:30:23 +00002147 return DeclarationOnly;
Rafael Espindolabff59562013-04-25 12:11:36 +00002148
Sebastian Redl35351a92010-01-31 22:27:38 +00002149 // C99 6.9.2p2:
2150 // A declaration of an object that has file scope without an initializer,
2151 // and without a storage class specifier or the scs 'static', constitutes
2152 // a tentative definition.
2153 // No such thing in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002154 if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
Sebastian Redl35351a92010-01-31 22:27:38 +00002155 return TentativeDefinition;
2156
2157 // What's left is (in C, block-scope) declarations without initializers or
2158 // external storage. These are definitions.
2159 return Definition;
2160}
2161
Sebastian Redl35351a92010-01-31 22:27:38 +00002162VarDecl *VarDecl::getActingDefinition() {
2163 DefinitionKind Kind = isThisDeclarationADefinition();
2164 if (Kind != TentativeDefinition)
Craig Topper36250ad2014-05-12 05:36:57 +00002165 return nullptr;
Sebastian Redl35351a92010-01-31 22:27:38 +00002166
Craig Topper36250ad2014-05-12 05:36:57 +00002167 VarDecl *LastTentative = nullptr;
Rafael Espindola8db352d2013-10-17 15:37:26 +00002168 VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002169 for (auto I : First->redecls()) {
2170 Kind = I->isThisDeclarationADefinition();
Sebastian Redl35351a92010-01-31 22:27:38 +00002171 if (Kind == Definition)
Craig Topper36250ad2014-05-12 05:36:57 +00002172 return nullptr;
Sebastian Redl35351a92010-01-31 22:27:38 +00002173 else if (Kind == TentativeDefinition)
Aaron Ballman86c93902014-03-06 23:45:36 +00002174 LastTentative = I;
Sebastian Redl35351a92010-01-31 22:27:38 +00002175 }
2176 return LastTentative;
2177}
2178
Daniel Dunbar9d355812012-03-09 01:51:51 +00002179VarDecl *VarDecl::getDefinition(ASTContext &C) {
Rafael Espindola8db352d2013-10-17 15:37:26 +00002180 VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002181 for (auto I : First->redecls()) {
2182 if (I->isThisDeclarationADefinition(C) == Definition)
2183 return I;
Sebastian Redl5ca79842010-02-01 20:16:42 +00002184 }
Craig Topper36250ad2014-05-12 05:36:57 +00002185 return nullptr;
Sebastian Redl5ca79842010-02-01 20:16:42 +00002186}
2187
Daniel Dunbar9d355812012-03-09 01:51:51 +00002188VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
John McCall37bb6c92010-10-29 22:22:43 +00002189 DefinitionKind Kind = DeclarationOnly;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002190
Rafael Espindola8db352d2013-10-17 15:37:26 +00002191 const VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002192 for (auto I : First->redecls()) {
2193 Kind = std::max(Kind, I->isThisDeclarationADefinition(C));
Daniel Dunbar082c62d2012-03-06 23:52:46 +00002194 if (Kind == Definition)
2195 break;
2196 }
John McCall37bb6c92010-10-29 22:22:43 +00002197
2198 return Kind;
2199}
2200
Sebastian Redl5ca79842010-02-01 20:16:42 +00002201const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002202 for (auto I : redecls()) {
2203 if (auto Expr = I->getInit()) {
2204 D = I;
2205 return Expr;
2206 }
Sebastian Redl833ef452010-01-26 22:01:41 +00002207 }
Craig Topper36250ad2014-05-12 05:36:57 +00002208 return nullptr;
Sebastian Redl833ef452010-01-26 22:01:41 +00002209}
2210
Chandler Carruth813faed2015-12-30 02:51:00 +00002211bool VarDecl::hasInit() const {
2212 if (auto *P = dyn_cast<ParmVarDecl>(this))
2213 if (P->hasUnparsedDefaultArg() || P->hasUninstantiatedDefaultArg())
2214 return false;
2215
2216 return !Init.isNull();
2217}
2218
2219Expr *VarDecl::getInit() {
2220 if (!hasInit())
2221 return nullptr;
2222
2223 if (auto *S = Init.dyn_cast<Stmt *>())
2224 return cast<Expr>(S);
2225
2226 return cast_or_null<Expr>(Init.get<EvaluatedStmt *>()->Value);
2227}
2228
2229Stmt **VarDecl::getInitAddress() {
2230 if (auto *ES = Init.dyn_cast<EvaluatedStmt *>())
2231 return &ES->Value;
2232
2233 return Init.getAddrOfPtr1();
2234}
2235
Richard Smitha6e8b682019-09-04 20:30:37 +00002236VarDecl *VarDecl::getInitializingDeclaration() {
2237 VarDecl *Def = nullptr;
2238 for (auto I : redecls()) {
2239 if (I->hasInit())
2240 return I;
2241
2242 if (I->isThisDeclarationADefinition()) {
2243 if (isStaticDataMember())
2244 return I;
2245 else
2246 Def = I;
2247 }
2248 }
2249 return Def;
2250}
2251
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002252bool VarDecl::isOutOfLine() const {
Douglas Gregorb11aad82011-02-19 18:51:44 +00002253 if (Decl::isOutOfLine())
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002254 return true;
Chandler Carruthf50ef6e2010-02-21 07:08:09 +00002255
2256 if (!isStaticDataMember())
2257 return false;
2258
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002259 // If this static data member was instantiated from a static data member of
Fangrui Song6907ce22018-07-30 19:24:48 +00002260 // a class template, check whether that static data member was defined
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002261 // out-of-line.
2262 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
2263 return VD->isOutOfLine();
Fangrui Song6907ce22018-07-30 19:24:48 +00002264
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002265 return false;
2266}
2267
Douglas Gregord5058122010-02-11 01:19:42 +00002268void VarDecl::setInit(Expr *I) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002269 if (auto *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
Sebastian Redl833ef452010-01-26 22:01:41 +00002270 Eval->~EvaluatedStmt();
Douglas Gregord5058122010-02-11 01:19:42 +00002271 getASTContext().Deallocate(Eval);
Sebastian Redl833ef452010-01-26 22:01:41 +00002272 }
2273
2274 Init = I;
2275}
2276
Richard Smith715f7a12019-06-11 17:50:32 +00002277bool VarDecl::mightBeUsableInConstantExpressions(ASTContext &C) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002278 const LangOptions &Lang = C.getLangOpts();
Richard Smith242ad892011-12-21 02:55:12 +00002279
Richard Smith35ecb362012-03-02 04:14:40 +00002280 if (!Lang.CPlusPlus)
2281 return false;
2282
Richard Smith715f7a12019-06-11 17:50:32 +00002283 // Function parameters are never usable in constant expressions.
2284 if (isa<ParmVarDecl>(this))
2285 return false;
2286
Richard Smith35ecb362012-03-02 04:14:40 +00002287 // In C++11, any variable of reference type can be used in a constant
2288 // expression if it is initialized by a constant expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002289 if (Lang.CPlusPlus11 && getType()->isReferenceType())
Richard Smith35ecb362012-03-02 04:14:40 +00002290 return true;
2291
2292 // Only const objects can be used in constant expressions in C++. C++98 does
Richard Smith242ad892011-12-21 02:55:12 +00002293 // not require the variable to be non-volatile, but we consider this to be a
2294 // defect.
Richard Smith35ecb362012-03-02 04:14:40 +00002295 if (!getType().isConstQualified() || getType().isVolatileQualified())
Richard Smith242ad892011-12-21 02:55:12 +00002296 return false;
2297
2298 // In C++, const, non-volatile variables of integral or enumeration types
2299 // can be used in constant expressions.
2300 if (getType()->isIntegralOrEnumerationType())
2301 return true;
2302
Richard Smith35ecb362012-03-02 04:14:40 +00002303 // Additionally, in C++11, non-volatile constexpr variables can be used in
2304 // constant expressions.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002305 return Lang.CPlusPlus11 && isConstexpr();
Richard Smith242ad892011-12-21 02:55:12 +00002306}
2307
Richard Smith715f7a12019-06-11 17:50:32 +00002308bool VarDecl::isUsableInConstantExpressions(ASTContext &Context) const {
2309 // C++2a [expr.const]p3:
2310 // A variable is usable in constant expressions after its initializing
2311 // declaration is encountered...
2312 const VarDecl *DefVD = nullptr;
2313 const Expr *Init = getAnyInitializer(DefVD);
Richard Smith94bc88e2019-06-17 21:46:17 +00002314 if (!Init || Init->isValueDependent() || getType()->isDependentType())
Richard Smith715f7a12019-06-11 17:50:32 +00002315 return false;
2316 // ... if it is a constexpr variable, or it is of reference type or of
2317 // const-qualified integral or enumeration type, ...
2318 if (!DefVD->mightBeUsableInConstantExpressions(Context))
2319 return false;
2320 // ... and its initializer is a constant initializer.
2321 return DefVD->checkInitIsICE();
2322}
2323
Richard Smithd0b4dd62011-12-19 06:19:21 +00002324/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
2325/// form, which contains extra information on the evaluated value of the
2326/// initializer.
2327EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002328 auto *Eval = Init.dyn_cast<EvaluatedStmt *>();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002329 if (!Eval) {
Manuel Klimeka7328992013-06-03 13:51:33 +00002330 // Note: EvaluatedStmt contains an APValue, which usually holds
2331 // resources not allocated from the ASTContext. We need to do some
2332 // work to avoid leaking those, but we do so in VarDecl::evaluateValue
2333 // where we can detect whether there's anything to clean up or not.
Richard Smithd0b4dd62011-12-19 06:19:21 +00002334 Eval = new (getASTContext()) EvaluatedStmt;
Chandler Carruth813faed2015-12-30 02:51:00 +00002335 Eval->Value = Init.get<Stmt *>();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002336 Init = Eval;
2337 }
2338 return Eval;
2339}
2340
Richard Smithdafff942012-01-14 04:30:29 +00002341APValue *VarDecl::evaluateValue() const {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002342 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smithdafff942012-01-14 04:30:29 +00002343 return evaluateValue(Notes);
2344}
2345
2346APValue *VarDecl::evaluateValue(
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002347 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smithd0b4dd62011-12-19 06:19:21 +00002348 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2349
2350 // We only produce notes indicating why an initializer is non-constant the
2351 // first time it is evaluated. FIXME: The notes won't always be emitted the
2352 // first time we try evaluation, so might not be produced at all.
2353 if (Eval->WasEvaluated)
Richard Smithe637cbe2019-05-21 23:15:18 +00002354 return Eval->Evaluated.isAbsent() ? nullptr : &Eval->Evaluated;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002355
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002356 const auto *Init = cast<Expr>(Eval->Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002357 assert(!Init->isValueDependent());
2358
2359 if (Eval->IsEvaluating) {
2360 // FIXME: Produce a diagnostic for self-initialization.
2361 Eval->CheckedICE = true;
2362 Eval->IsICE = false;
Craig Topper36250ad2014-05-12 05:36:57 +00002363 return nullptr;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002364 }
2365
2366 Eval->IsEvaluating = true;
2367
2368 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
2369 this, Notes);
2370
Manuel Klimeka7328992013-06-03 13:51:33 +00002371 // Ensure the computed APValue is cleaned up later if evaluation succeeded,
2372 // or that it's empty (so that there's nothing to clean up) if evaluation
2373 // failed.
Richard Smithd0b4dd62011-12-19 06:19:21 +00002374 if (!Result)
2375 Eval->Evaluated = APValue();
Manuel Klimeka7328992013-06-03 13:51:33 +00002376 else if (Eval->Evaluated.needsCleanup())
George Burgess IVb61bfbd2017-02-14 05:37:36 +00002377 getASTContext().addDestruction(&Eval->Evaluated);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002378
2379 Eval->IsEvaluating = false;
2380 Eval->WasEvaluated = true;
2381
2382 // In C++11, we have determined whether the initializer was a constant
2383 // expression as a side-effect.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002384 if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) {
Richard Smithd0b4dd62011-12-19 06:19:21 +00002385 Eval->CheckedICE = true;
Eli Friedman8f66cdf2012-02-06 21:50:18 +00002386 Eval->IsICE = Result && Notes.empty();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002387 }
2388
Craig Topper36250ad2014-05-12 05:36:57 +00002389 return Result ? &Eval->Evaluated : nullptr;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002390}
2391
Chandler Carruth813faed2015-12-30 02:51:00 +00002392APValue *VarDecl::getEvaluatedValue() const {
2393 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>())
2394 if (Eval->WasEvaluated)
2395 return &Eval->Evaluated;
2396
2397 return nullptr;
2398}
2399
2400bool VarDecl::isInitKnownICE() const {
2401 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>())
2402 return Eval->CheckedICE;
2403
2404 return false;
2405}
2406
2407bool VarDecl::isInitICE() const {
2408 assert(isInitKnownICE() &&
2409 "Check whether we already know that the initializer is an ICE");
2410 return Init.get<EvaluatedStmt *>()->IsICE;
2411}
2412
Richard Smithd0b4dd62011-12-19 06:19:21 +00002413bool VarDecl::checkInitIsICE() const {
John McCalla59dc2f2012-01-05 00:13:19 +00002414 // Initializers of weak variables are never ICEs.
2415 if (isWeak())
2416 return false;
2417
Richard Smithd0b4dd62011-12-19 06:19:21 +00002418 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2419 if (Eval->CheckedICE)
2420 // We have already checked whether this subexpression is an
2421 // integral constant expression.
2422 return Eval->IsICE;
2423
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002424 const auto *Init = cast<Expr>(Eval->Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002425 assert(!Init->isValueDependent());
2426
2427 // In C++11, evaluate the initializer to check whether it's a constant
2428 // expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002429 if (getASTContext().getLangOpts().CPlusPlus11) {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002430 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002431 evaluateValue(Notes);
2432 return Eval->IsICE;
2433 }
2434
2435 // It's an ICE whether or not the definition we found is
2436 // out-of-line. See DR 721 and the discussion in Clang PR
2437 // 6206 for details.
2438
2439 if (Eval->CheckingICE)
2440 return false;
2441 Eval->CheckingICE = true;
2442
2443 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
2444 Eval->CheckingICE = false;
2445 Eval->CheckedICE = true;
2446 return Eval->IsICE;
2447}
2448
Richard Smithb2997f52019-05-21 20:10:50 +00002449bool VarDecl::isParameterPack() const {
2450 return isa<PackExpansionType>(getType());
2451}
2452
Richard Smith2195ec92017-04-21 01:15:13 +00002453template<typename DeclT>
2454static DeclT *getDefinitionOrSelf(DeclT *D) {
2455 assert(D);
2456 if (auto *Def = D->getDefinition())
2457 return Def;
2458 return D;
2459}
2460
Akira Hatanaka8e57b072018-10-01 21:51:28 +00002461bool VarDecl::isEscapingByref() const {
2462 return hasAttr<BlocksAttr>() && NonParmVarDeclBits.EscapingByref;
2463}
2464
2465bool VarDecl::isNonEscapingByref() const {
2466 return hasAttr<BlocksAttr>() && !NonParmVarDeclBits.EscapingByref;
2467}
2468
Richard Smithedbc6e92016-10-14 21:41:24 +00002469VarDecl *VarDecl::getTemplateInstantiationPattern() const {
Richard Smitha6b41d72019-05-03 23:51:38 +00002470 const VarDecl *VD = this;
Richard Smithedbc6e92016-10-14 21:41:24 +00002471
Richard Smitha6b41d72019-05-03 23:51:38 +00002472 // If this is an instantiated member, walk back to the template from which
2473 // it was instantiated.
2474 if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo()) {
Richard Smithedbc6e92016-10-14 21:41:24 +00002475 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
Richard Smitha6b41d72019-05-03 23:51:38 +00002476 VD = VD->getInstantiatedFromStaticDataMember();
Richard Smithedbc6e92016-10-14 21:41:24 +00002477 while (auto *NewVD = VD->getInstantiatedFromStaticDataMember())
2478 VD = NewVD;
Richard Smithedbc6e92016-10-14 21:41:24 +00002479 }
2480 }
2481
Richard Smitha6b41d72019-05-03 23:51:38 +00002482 // If it's an instantiated variable template specialization, find the
2483 // template or partial specialization from which it was instantiated.
2484 if (auto *VDTemplSpec = dyn_cast<VarTemplateSpecializationDecl>(VD)) {
2485 if (isTemplateInstantiation(VDTemplSpec->getTemplateSpecializationKind())) {
2486 auto From = VDTemplSpec->getInstantiatedFrom();
2487 if (auto *VTD = From.dyn_cast<VarTemplateDecl *>()) {
2488 while (!VTD->isMemberSpecialization()) {
2489 auto *NewVTD = VTD->getInstantiatedFromMemberTemplate();
2490 if (!NewVTD)
2491 break;
2492 VTD = NewVTD;
2493 }
2494 return getDefinitionOrSelf(VTD->getTemplatedDecl());
2495 }
2496 if (auto *VTPSD =
2497 From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
2498 while (!VTPSD->isMemberSpecialization()) {
2499 auto *NewVTPSD = VTPSD->getInstantiatedFromMember();
2500 if (!NewVTPSD)
2501 break;
2502 VTPSD = NewVTPSD;
2503 }
2504 return getDefinitionOrSelf<VarDecl>(VTPSD);
2505 }
2506 }
2507 }
2508
2509 // If this is the pattern of a variable template, find where it was
2510 // instantiated from. FIXME: Is this necessary?
2511 if (VarTemplateDecl *VarTemplate = VD->getDescribedVarTemplate()) {
2512 while (!VarTemplate->isMemberSpecialization()) {
2513 auto *NewVT = VarTemplate->getInstantiatedFromMemberTemplate();
2514 if (!NewVT)
Richard Smithedbc6e92016-10-14 21:41:24 +00002515 break;
Richard Smitha6b41d72019-05-03 23:51:38 +00002516 VarTemplate = NewVT;
Richard Smithedbc6e92016-10-14 21:41:24 +00002517 }
2518
Richard Smith2195ec92017-04-21 01:15:13 +00002519 return getDefinitionOrSelf(VarTemplate->getTemplatedDecl());
Richard Smithedbc6e92016-10-14 21:41:24 +00002520 }
Richard Smitha6b41d72019-05-03 23:51:38 +00002521
2522 if (VD == this)
2523 return nullptr;
2524 return getDefinitionOrSelf(const_cast<VarDecl*>(VD));
Richard Smithedbc6e92016-10-14 21:41:24 +00002525}
2526
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002527VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregor06db9f52009-10-12 20:18:28 +00002528 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor86d142a2009-10-08 07:24:58 +00002529 return cast<VarDecl>(MSI->getInstantiatedFrom());
Craig Topper36250ad2014-05-12 05:36:57 +00002530
2531 return nullptr;
Douglas Gregor86d142a2009-10-08 07:24:58 +00002532}
2533
Douglas Gregor3c74d412009-10-14 20:14:33 +00002534TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002535 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002536 return Spec->getSpecializationKind();
2537
Sebastian Redl35351a92010-01-31 22:27:38 +00002538 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor86d142a2009-10-08 07:24:58 +00002539 return MSI->getTemplateSpecializationKind();
Richard Smith8809a0c2013-09-27 20:14:12 +00002540
Douglas Gregor86d142a2009-10-08 07:24:58 +00002541 return TSK_Undeclared;
2542}
2543
Richard Smitha6b41d72019-05-03 23:51:38 +00002544TemplateSpecializationKind
2545VarDecl::getTemplateSpecializationKindForInstantiation() const {
2546 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2547 return MSI->getTemplateSpecializationKind();
2548
2549 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
2550 return Spec->getSpecializationKind();
2551
2552 return TSK_Undeclared;
2553}
2554
Richard Smith8809a0c2013-09-27 20:14:12 +00002555SourceLocation VarDecl::getPointOfInstantiation() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002556 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
Richard Smith8809a0c2013-09-27 20:14:12 +00002557 return Spec->getPointOfInstantiation();
2558
2559 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2560 return MSI->getPointOfInstantiation();
2561
2562 return SourceLocation();
2563}
2564
Larisse Voufo39a1e502013-08-06 01:03:05 +00002565VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
2566 return getASTContext().getTemplateOrSpecializationInfo(this)
2567 .dyn_cast<VarTemplateDecl *>();
2568}
2569
2570void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
2571 getASTContext().setTemplateOrSpecializationInfo(this, Template);
2572}
2573
Justin Lebar5489f852018-05-17 16:15:07 +00002574bool VarDecl::isKnownToBeDefined() const {
2575 const auto &LangOpts = getASTContext().getLangOpts();
2576 // In CUDA mode without relocatable device code, variables of form 'extern
2577 // __shared__ Foo foo[]' are pointers to the base of the GPU core's shared
2578 // memory pool. These are never undefined variables, even if they appear
2579 // inside of an anon namespace or static function.
2580 //
2581 // With CUDA relocatable device code enabled, these variables don't get
2582 // special handling; they're treated like regular extern variables.
Yaxun Liu97670892018-10-02 17:48:54 +00002583 if (LangOpts.CUDA && !LangOpts.GPURelocatableDeviceCode &&
Justin Lebar5489f852018-05-17 16:15:07 +00002584 hasExternalStorage() && hasAttr<CUDASharedAttr>() &&
2585 isa<IncompleteArrayType>(getType()))
2586 return true;
2587
2588 return hasDefinition();
2589}
2590
Erik Pilkington5a559e62018-08-21 17:24:06 +00002591bool VarDecl::isNoDestroy(const ASTContext &Ctx) const {
2592 return hasGlobalStorage() && (hasAttr<NoDestroyAttr>() ||
2593 (!Ctx.getLangOpts().RegisterStaticDestructors &&
2594 !hasAttr<AlwaysDestroyAttr>()));
2595}
2596
Richard Smith2b4fa532019-09-29 05:08:46 +00002597QualType::DestructionKind
2598VarDecl::needsDestruction(const ASTContext &Ctx) const {
2599 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>())
2600 if (Eval->HasConstantDestruction)
2601 return QualType::DK_none;
2602
2603 if (isNoDestroy(Ctx))
2604 return QualType::DK_none;
2605
2606 return getType().isDestructedType();
2607}
2608
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002609MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Richard Smithb71782b2013-08-01 04:12:04 +00002610 if (isStaticDataMember())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002611 // FIXME: Remove ?
2612 // return getASTContext().getInstantiatedFromStaticDataMember(this);
2613 return getASTContext().getTemplateOrSpecializationInfo(this)
2614 .dyn_cast<MemberSpecializationInfo *>();
Craig Topper36250ad2014-05-12 05:36:57 +00002615 return nullptr;
Douglas Gregor06db9f52009-10-12 20:18:28 +00002616}
2617
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00002618void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2619 SourceLocation PointOfInstantiation) {
Richard Smith8809a0c2013-09-27 20:14:12 +00002620 assert((isa<VarTemplateSpecializationDecl>(this) ||
2621 getMemberSpecializationInfo()) &&
2622 "not a variable or static data member template specialization");
2623
Larisse Voufo39a1e502013-08-06 01:03:05 +00002624 if (VarTemplateSpecializationDecl *Spec =
2625 dyn_cast<VarTemplateSpecializationDecl>(this)) {
2626 Spec->setSpecializationKind(TSK);
Richard Smitha6b41d72019-05-03 23:51:38 +00002627 if (TSK != TSK_ExplicitSpecialization &&
2628 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00002629 Spec->getPointOfInstantiation().isInvalid()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002630 Spec->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00002631 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
2632 L->InstantiationRequested(this);
2633 }
Richard Smitha6b41d72019-05-03 23:51:38 +00002634 } else if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002635 MSI->setTemplateSpecializationKind(TSK);
2636 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00002637 MSI->getPointOfInstantiation().isInvalid()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002638 MSI->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00002639 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
2640 L->InstantiationRequested(this);
2641 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002642 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002643}
2644
2645void
2646VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
2647 TemplateSpecializationKind TSK) {
2648 assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
2649 "Previous template or instantiation?");
2650 getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002651}
2652
Sebastian Redl833ef452010-01-26 22:01:41 +00002653//===----------------------------------------------------------------------===//
2654// ParmVarDecl Implementation
2655//===----------------------------------------------------------------------===//
Douglas Gregor0760fa12009-03-10 23:43:53 +00002656
Sebastian Redl833ef452010-01-26 22:01:41 +00002657ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00002658 SourceLocation StartLoc,
2659 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl833ef452010-01-26 22:01:41 +00002660 QualType T, TypeSourceInfo *TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00002661 StorageClass S, Expr *DefArg) {
Richard Smith053f6c62014-05-16 23:01:30 +00002662 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smithf7981722013-11-22 09:01:48 +00002663 S, DefArg);
Douglas Gregor0760fa12009-03-10 23:43:53 +00002664}
2665
Reid Kleckner8a365022013-06-24 17:51:48 +00002666QualType ParmVarDecl::getOriginalType() const {
2667 TypeSourceInfo *TSI = getTypeSourceInfo();
2668 QualType T = TSI ? TSI->getType() : getType();
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002669 if (const auto *DT = dyn_cast<DecayedType>(T))
Reid Kleckner8a365022013-06-24 17:51:48 +00002670 return DT->getOriginalType();
2671 return T;
2672}
2673
Douglas Gregor72172e92012-01-05 21:55:30 +00002674ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00002675 return new (C, ID)
2676 ParmVarDecl(ParmVar, C, nullptr, SourceLocation(), SourceLocation(),
2677 nullptr, QualType(), nullptr, SC_None, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00002678}
2679
Argyrios Kyrtzidis4c6efa622011-07-30 17:23:26 +00002680SourceRange ParmVarDecl::getSourceRange() const {
2681 if (!hasInheritedDefaultArg()) {
2682 SourceRange ArgRange = getDefaultArgRange();
2683 if (ArgRange.isValid())
2684 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
2685 }
2686
Argyrios Kyrtzidisa0772792013-04-17 01:56:48 +00002687 // DeclaratorDecl considers the range of postfix types as overlapping with the
2688 // declaration name, but this is not the case with parameters in ObjC methods.
2689 if (isa<ObjCMethodDecl>(getDeclContext()))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002690 return SourceRange(DeclaratorDecl::getBeginLoc(), getLocation());
Argyrios Kyrtzidisa0772792013-04-17 01:56:48 +00002691
Argyrios Kyrtzidis4c6efa622011-07-30 17:23:26 +00002692 return DeclaratorDecl::getSourceRange();
2693}
2694
Sebastian Redl833ef452010-01-26 22:01:41 +00002695Expr *ParmVarDecl::getDefaultArg() {
2696 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
2697 assert(!hasUninstantiatedDefaultArg() &&
2698 "Default argument is not yet instantiated!");
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002699
Sebastian Redl833ef452010-01-26 22:01:41 +00002700 Expr *Arg = getInit();
Bill Wendling7c44da22018-10-31 03:48:47 +00002701 if (auto *E = dyn_cast_or_null<FullExpr>(Arg))
Sebastian Redl833ef452010-01-26 22:01:41 +00002702 return E->getSubExpr();
Douglas Gregor0760fa12009-03-10 23:43:53 +00002703
Sebastian Redl833ef452010-01-26 22:01:41 +00002704 return Arg;
2705}
2706
Chandler Carruth813faed2015-12-30 02:51:00 +00002707void ParmVarDecl::setDefaultArg(Expr *defarg) {
2708 ParmVarDeclBits.DefaultArgKind = DAK_Normal;
2709 Init = defarg;
2710}
Sebastian Redl833ef452010-01-26 22:01:41 +00002711
Chandler Carruth813faed2015-12-30 02:51:00 +00002712SourceRange ParmVarDecl::getDefaultArgRange() const {
2713 switch (ParmVarDeclBits.DefaultArgKind) {
2714 case DAK_None:
2715 case DAK_Unparsed:
2716 // Nothing we can do here.
2717 return SourceRange();
2718
2719 case DAK_Uninstantiated:
Sebastian Redl833ef452010-01-26 22:01:41 +00002720 return getUninstantiatedDefaultArg()->getSourceRange();
2721
Chandler Carruth813faed2015-12-30 02:51:00 +00002722 case DAK_Normal:
2723 if (const Expr *E = getInit())
2724 return E->getSourceRange();
2725
2726 // Missing an actual expression, may be invalid.
2727 return SourceRange();
2728 }
2729 llvm_unreachable("Invalid default argument kind.");
2730}
2731
2732void ParmVarDecl::setUninstantiatedDefaultArg(Expr *arg) {
2733 ParmVarDeclBits.DefaultArgKind = DAK_Uninstantiated;
2734 Init = arg;
2735}
2736
2737Expr *ParmVarDecl::getUninstantiatedDefaultArg() {
2738 assert(hasUninstantiatedDefaultArg() &&
2739 "Wrong kind of initialization expression!");
2740 return cast_or_null<Expr>(Init.get<Stmt *>());
2741}
2742
2743bool ParmVarDecl::hasDefaultArg() const {
2744 // FIXME: We should just return false for DAK_None here once callers are
2745 // prepared for the case that we encountered an invalid default argument and
2746 // were unable to even build an invalid expression.
2747 return hasUnparsedDefaultArg() || hasUninstantiatedDefaultArg() ||
2748 !Init.isNull();
Argyrios Kyrtzidis02dd4f92009-07-05 22:21:56 +00002749}
2750
Ted Kremenek540017e2011-10-06 05:00:56 +00002751void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
2752 getASTContext().setParameterIndex(this, parameterIndex);
2753 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
2754}
2755
2756unsigned ParmVarDecl::getParameterIndexLarge() const {
2757 return getASTContext().getParameterIndex(this);
2758}
2759
Nuno Lopes394ec982008-12-17 23:39:55 +00002760//===----------------------------------------------------------------------===//
Chris Lattner59a25942008-03-31 00:36:02 +00002761// FunctionDecl Implementation
2762//===----------------------------------------------------------------------===//
2763
Erich Keane9c665062018-08-01 21:02:40 +00002764FunctionDecl::FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC,
2765 SourceLocation StartLoc,
2766 const DeclarationNameInfo &NameInfo, QualType T,
2767 TypeSourceInfo *TInfo, StorageClass S,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00002768 bool isInlineSpecified,
2769 ConstexprSpecKind ConstexprKind)
Erich Keane9c665062018-08-01 21:02:40 +00002770 : DeclaratorDecl(DK, DC, NameInfo.getLoc(), NameInfo.getName(), T, TInfo,
2771 StartLoc),
2772 DeclContext(DK), redeclarable_base(C), ODRHash(0),
2773 EndRangeLoc(NameInfo.getEndLoc()), DNLoc(NameInfo.getInfo()) {
Jonas Devlieghere64a26302018-11-11 00:56:15 +00002774 assert(T.isNull() || T->isFunctionType());
Bruno Ricci0b639da2018-12-03 13:04:10 +00002775 FunctionDeclBits.SClass = S;
2776 FunctionDeclBits.IsInline = isInlineSpecified;
2777 FunctionDeclBits.IsInlineSpecified = isInlineSpecified;
Bruno Ricci0b639da2018-12-03 13:04:10 +00002778 FunctionDeclBits.IsVirtualAsWritten = false;
2779 FunctionDeclBits.IsPure = false;
2780 FunctionDeclBits.HasInheritedPrototype = false;
2781 FunctionDeclBits.HasWrittenPrototype = true;
2782 FunctionDeclBits.IsDeleted = false;
2783 FunctionDeclBits.IsTrivial = false;
2784 FunctionDeclBits.IsTrivialForCall = false;
2785 FunctionDeclBits.IsDefaulted = false;
2786 FunctionDeclBits.IsExplicitlyDefaulted = false;
2787 FunctionDeclBits.HasImplicitReturnZero = false;
2788 FunctionDeclBits.IsLateTemplateParsed = false;
Gauthier Harnisch796ed032019-06-14 08:56:20 +00002789 FunctionDeclBits.ConstexprKind = ConstexprKind;
Bruno Ricci0b639da2018-12-03 13:04:10 +00002790 FunctionDeclBits.InstantiationIsPending = false;
2791 FunctionDeclBits.UsesSEHTry = false;
2792 FunctionDeclBits.HasSkippedBody = false;
2793 FunctionDeclBits.WillHaveBody = false;
2794 FunctionDeclBits.IsMultiVersion = false;
2795 FunctionDeclBits.IsCopyDeductionCandidate = false;
2796 FunctionDeclBits.HasODRHash = false;
Erich Keane9c665062018-08-01 21:02:40 +00002797}
2798
Benjamin Kramer9170e912013-02-22 15:46:01 +00002799void FunctionDecl::getNameForDiagnostic(
2800 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
2801 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
Douglas Gregorb11aad82011-02-19 18:51:44 +00002802 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
2803 if (TemplateArgs)
Serge Pavlov03e672c2017-11-28 16:14:14 +00002804 printTemplateArgumentList(OS, TemplateArgs->asArray(), Policy);
Douglas Gregorb11aad82011-02-19 18:51:44 +00002805}
2806
Ted Kremenek186a0742010-04-29 16:49:01 +00002807bool FunctionDecl::isVariadic() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002808 if (const auto *FT = getType()->getAs<FunctionProtoType>())
Ted Kremenek186a0742010-04-29 16:49:01 +00002809 return FT->isVariadic();
2810 return false;
2811}
2812
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00002813bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002814 for (auto I : redecls()) {
Serge Pavlov9a618e12017-02-15 12:30:35 +00002815 if (I->doesThisDeclarationHaveABody()) {
Aaron Ballman86c93902014-03-06 23:45:36 +00002816 Definition = I;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00002817 return true;
2818 }
2819 }
2820
2821 return false;
2822}
2823
Anders Carlsson9bd7d162011-05-14 23:26:09 +00002824bool FunctionDecl::hasTrivialBody() const
2825{
2826 Stmt *S = getBody();
2827 if (!S) {
2828 // Since we don't have a body for this function, we don't know if it's
2829 // trivial or not.
2830 return false;
2831 }
2832
2833 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
2834 return true;
2835 return false;
2836}
2837
Alexis Hunt4a8ea102011-05-06 20:44:56 +00002838bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002839 for (auto I : redecls()) {
Serge Pavlov10673c92017-06-04 12:53:12 +00002840 if (I->isThisDeclarationADefinition()) {
2841 Definition = I;
Alexis Hunt4a8ea102011-05-06 20:44:56 +00002842 return true;
2843 }
2844 }
2845
2846 return false;
2847}
2848
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +00002849Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Rafael Espindola44503012013-10-19 01:37:17 +00002850 if (!hasBody(Definition))
Craig Topper36250ad2014-05-12 05:36:57 +00002851 return nullptr;
Rafael Espindola44503012013-10-19 01:37:17 +00002852
2853 if (Definition->Body)
2854 return Definition->Body.get(getASTContext().getExternalSource());
Douglas Gregor89f238c2008-04-21 02:02:58 +00002855
Craig Topper36250ad2014-05-12 05:36:57 +00002856 return nullptr;
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002857}
2858
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002859void FunctionDecl::setBody(Stmt *B) {
2860 Body = B;
Douglas Gregor027ba502010-12-06 17:49:01 +00002861 if (B)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002862 EndRangeLoc = B->getEndLoc();
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002863}
2864
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002865void FunctionDecl::setPure(bool P) {
Erich Keane9c665062018-08-01 21:02:40 +00002866 FunctionDeclBits.IsPure = P;
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002867 if (P)
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002868 if (auto *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002869 Parent->markedVirtualFunctionPure();
2870}
2871
Richard Smith8d0dc312013-07-21 23:12:18 +00002872template<std::size_t Len>
2873static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
2874 IdentifierInfo *II = ND->getIdentifier();
2875 return II && II->isStr(Str);
2876}
2877
Douglas Gregor16618f22009-09-12 00:17:51 +00002878bool FunctionDecl::isMain() const {
John McCall53ffd372011-05-15 17:49:20 +00002879 const TranslationUnitDecl *tunit =
2880 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2881 return tunit &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00002882 !tunit->getASTContext().getLangOpts().Freestanding &&
Richard Smith8d0dc312013-07-21 23:12:18 +00002883 isNamed(this, "main");
John McCall53ffd372011-05-15 17:49:20 +00002884}
2885
David Majnemerc729b0b2013-09-16 22:44:20 +00002886bool FunctionDecl::isMSVCRTEntryPoint() const {
2887 const TranslationUnitDecl *TUnit =
2888 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2889 if (!TUnit)
2890 return false;
2891
2892 // Even though we aren't really targeting MSVCRT if we are freestanding,
2893 // semantic analysis for these functions remains the same.
2894
2895 // MSVCRT entry points only exist on MSVCRT targets.
2896 if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT())
2897 return false;
2898
2899 // Nameless functions like constructors cannot be entry points.
2900 if (!getIdentifier())
2901 return false;
2902
2903 return llvm::StringSwitch<bool>(getName())
2904 .Cases("main", // an ANSI console app
2905 "wmain", // a Unicode console App
2906 "WinMain", // an ANSI GUI app
2907 "wWinMain", // a Unicode GUI app
2908 "DllMain", // a DLL
2909 true)
2910 .Default(false);
2911}
2912
John McCall53ffd372011-05-15 17:49:20 +00002913bool FunctionDecl::isReservedGlobalPlacementOperator() const {
2914 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
2915 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
2916 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2917 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
2918 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
2919
Richard Smithf6004412014-01-19 23:25:37 +00002920 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2921 return false;
John McCall53ffd372011-05-15 17:49:20 +00002922
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002923 const auto *proto = getType()->castAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00002924 if (proto->getNumParams() != 2 || proto->isVariadic())
2925 return false;
John McCall53ffd372011-05-15 17:49:20 +00002926
2927 ASTContext &Context =
2928 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
2929 ->getASTContext();
2930
2931 // The result type and first argument type are constant across all
2932 // these operators. The second argument must be exactly void*.
Alp Toker9cacbab2014-01-20 20:26:09 +00002933 return (proto->getParamType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregore62c0a42009-02-24 01:23:02 +00002934}
2935
Akira Hatanakacae83f72017-06-29 18:48:40 +00002936bool FunctionDecl::isReplaceableGlobalAllocationFunction(bool *IsAligned) const {
Richard Smith8d0dc312013-07-21 23:12:18 +00002937 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
2938 return false;
2939 if (getDeclName().getCXXOverloadedOperator() != OO_New &&
2940 getDeclName().getCXXOverloadedOperator() != OO_Delete &&
2941 getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
2942 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
2943 return false;
2944
2945 if (isa<CXXRecordDecl>(getDeclContext()))
2946 return false;
Richard Smithf6004412014-01-19 23:25:37 +00002947
2948 // This can only fail for an invalid 'operator new' declaration.
2949 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2950 return false;
Richard Smith8d0dc312013-07-21 23:12:18 +00002951
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002952 const auto *FPT = getType()->castAs<FunctionProtoType>();
Richard Smithb2f0f052016-10-10 18:54:32 +00002953 if (FPT->getNumParams() == 0 || FPT->getNumParams() > 3 || FPT->isVariadic())
Richard Smith8d0dc312013-07-21 23:12:18 +00002954 return false;
2955
2956 // If this is a single-parameter function, it must be a replaceable global
2957 // allocation or deallocation function.
Alp Toker9cacbab2014-01-20 20:26:09 +00002958 if (FPT->getNumParams() == 1)
Richard Smith8d0dc312013-07-21 23:12:18 +00002959 return true;
2960
Richard Smithb2f0f052016-10-10 18:54:32 +00002961 unsigned Params = 1;
2962 QualType Ty = FPT->getParamType(Params);
Richard Smith1cdec012013-09-29 04:40:38 +00002963 ASTContext &Ctx = getASTContext();
Richard Smithb2f0f052016-10-10 18:54:32 +00002964
2965 auto Consume = [&] {
2966 ++Params;
2967 Ty = Params < FPT->getNumParams() ? FPT->getParamType(Params) : QualType();
2968 };
2969
2970 // In C++14, the next parameter can be a 'std::size_t' for sized delete.
2971 bool IsSizedDelete = false;
Richard Smithb47c36f2013-11-05 09:12:18 +00002972 if (Ctx.getLangOpts().SizedDeallocation &&
Richard Smithb2f0f052016-10-10 18:54:32 +00002973 (getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2974 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete) &&
2975 Ctx.hasSameType(Ty, Ctx.getSizeType())) {
2976 IsSizedDelete = true;
2977 Consume();
2978 }
2979
2980 // In C++17, the next parameter can be a 'std::align_val_t' for aligned
2981 // new/delete.
Akira Hatanakacae83f72017-06-29 18:48:40 +00002982 if (Ctx.getLangOpts().AlignedAllocation && !Ty.isNull() && Ty->isAlignValT()) {
2983 if (IsAligned)
2984 *IsAligned = true;
Richard Smithb2f0f052016-10-10 18:54:32 +00002985 Consume();
Akira Hatanakacae83f72017-06-29 18:48:40 +00002986 }
Richard Smithb2f0f052016-10-10 18:54:32 +00002987
2988 // Finally, if this is not a sized delete, the final parameter can
2989 // be a 'const std::nothrow_t&'.
2990 if (!IsSizedDelete && !Ty.isNull() && Ty->isReferenceType()) {
2991 Ty = Ty->getPointeeType();
2992 if (Ty.getCVRQualifiers() != Qualifiers::Const)
2993 return false;
Richard Smith62a95562019-09-27 01:26:49 +00002994 if (Ty->isNothrowT())
Richard Smithb2f0f052016-10-10 18:54:32 +00002995 Consume();
2996 }
2997
2998 return Params == FPT->getNumParams();
Richard Smith8d0dc312013-07-21 23:12:18 +00002999}
3000
Richard Smith5b349582017-10-13 01:55:36 +00003001bool FunctionDecl::isDestroyingOperatorDelete() const {
3002 // C++ P0722:
3003 // Within a class C, a single object deallocation function with signature
3004 // (T, std::destroying_delete_t, <more params>)
3005 // is a destroying operator delete.
3006 if (!isa<CXXMethodDecl>(this) || getOverloadedOperator() != OO_Delete ||
3007 getNumParams() < 2)
3008 return false;
3009
3010 auto *RD = getParamDecl(1)->getType()->getAsCXXRecordDecl();
3011 return RD && RD->isInStdNamespace() && RD->getIdentifier() &&
3012 RD->getIdentifier()->isStr("destroying_delete_t");
3013}
3014
Rafael Espindolaf4187652013-02-14 01:18:37 +00003015LanguageLinkage FunctionDecl::getLanguageLinkage() const {
Alp Toker84212df2014-05-31 06:11:02 +00003016 return getDeclLanguageLinkage(*this);
Rafael Espindola576127d2012-12-28 14:21:58 +00003017}
3018
Rafael Espindola0e0d0092013-03-14 03:07:35 +00003019bool FunctionDecl::isExternC() const {
Alp Toker84212df2014-05-31 06:11:02 +00003020 return isDeclExternC(*this);
Rafael Espindola0e0d0092013-03-14 03:07:35 +00003021}
3022
Rafael Espindola593537a2013-05-05 20:15:21 +00003023bool FunctionDecl::isInExternCContext() const {
Anastasia Stulovad6865b72019-05-07 14:22:34 +00003024 if (hasAttr<OpenCLKernelAttr>())
3025 return true;
Serge Pavlov3cb80222013-11-14 02:13:03 +00003026 return getLexicalDeclContext()->isExternCContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00003027}
3028
3029bool FunctionDecl::isInExternCXXContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00003030 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00003031}
3032
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003033bool FunctionDecl::isGlobal() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003034 if (const auto *Method = dyn_cast<CXXMethodDecl>(this))
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003035 return Method->isStatic();
3036
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003037 if (getCanonicalDecl()->getStorageClass() == SC_Static)
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003038 return false;
3039
Mike Stump11289f42009-09-09 15:08:12 +00003040 for (const DeclContext *DC = getDeclContext();
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003041 DC->isNamespace();
3042 DC = DC->getParent()) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003043 if (const auto *Namespace = cast<NamespaceDecl>(DC)) {
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003044 if (!Namespace->getDeclName())
3045 return false;
3046 break;
3047 }
3048 }
3049
3050 return true;
3051}
3052
Richard Smith10876ef2013-01-17 01:30:42 +00003053bool FunctionDecl::isNoReturn() const {
Adrian Prantl721c7cb2016-08-17 16:42:15 +00003054 if (hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
3055 hasAttr<C11NoReturnAttr>())
3056 return true;
3057
3058 if (auto *FnTy = getType()->getAs<FunctionType>())
3059 return FnTy->getNoReturnAttr();
3060
3061 return false;
Richard Smith10876ef2013-01-17 01:30:42 +00003062}
3063
Erich Keane5c0d1922018-11-28 18:34:14 +00003064
3065MultiVersionKind FunctionDecl::getMultiVersionKind() const {
3066 if (hasAttr<TargetAttr>())
3067 return MultiVersionKind::Target;
3068 if (hasAttr<CPUDispatchAttr>())
3069 return MultiVersionKind::CPUDispatch;
3070 if (hasAttr<CPUSpecificAttr>())
3071 return MultiVersionKind::CPUSpecific;
3072 return MultiVersionKind::None;
3073}
3074
Erich Keane3efe0022018-07-20 14:13:28 +00003075bool FunctionDecl::isCPUDispatchMultiVersion() const {
3076 return isMultiVersion() && hasAttr<CPUDispatchAttr>();
3077}
3078
3079bool FunctionDecl::isCPUSpecificMultiVersion() const {
3080 return isMultiVersion() && hasAttr<CPUSpecificAttr>();
3081}
3082
Erich Keane19a8adc2018-10-25 18:57:19 +00003083bool FunctionDecl::isTargetMultiVersion() const {
3084 return isMultiVersion() && hasAttr<TargetAttr>();
3085}
3086
Sebastian Redl833ef452010-01-26 22:01:41 +00003087void
3088FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
Rafael Espindola8db352d2013-10-17 15:37:26 +00003089 redeclarable_base::setPreviousDecl(PrevDecl);
Sebastian Redl833ef452010-01-26 22:01:41 +00003090
3091 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
3092 FunctionTemplateDecl *PrevFunTmpl
Craig Topper36250ad2014-05-12 05:36:57 +00003093 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr;
Sebastian Redl833ef452010-01-26 22:01:41 +00003094 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
Rafael Espindola8db352d2013-10-17 15:37:26 +00003095 FunTmpl->setPreviousDecl(PrevFunTmpl);
Sebastian Redl833ef452010-01-26 22:01:41 +00003096 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003097
Erich Keane9c665062018-08-01 21:02:40 +00003098 if (PrevDecl && PrevDecl->isInlined())
3099 setImplicitlyInline(true);
Sebastian Redl833ef452010-01-26 22:01:41 +00003100}
3101
Rafael Espindola8db352d2013-10-17 15:37:26 +00003102FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl833ef452010-01-26 22:01:41 +00003103
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003104/// Returns a value indicating whether this function corresponds to a builtin
3105/// function.
Douglas Gregorb9063fc2009-02-13 23:20:09 +00003106///
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003107/// The function corresponds to a built-in function if it is declared at
3108/// translation scope or within an extern "C" block and its name matches with
3109/// the name of a builtin. The returned value will be 0 for functions that do
3110/// not correspond to a builtin, a value of type \c Builtin::ID if in the
3111/// target-independent range \c [1,Builtin::First), or a target-specific builtin
3112/// value.
3113///
3114/// \param ConsiderWrapperFunctions If true, we should consider wrapper
3115/// functions as their wrapped builtins. This shouldn't be done in general, but
3116/// it's useful in Sema to diagnose calls to wrappers based on their semantics.
3117unsigned FunctionDecl::getBuiltinID(bool ConsiderWrapperFunctions) const {
Daniel Dunbar304314d2012-03-06 23:52:37 +00003118 if (!getIdentifier())
Douglas Gregore711f702009-02-14 18:57:46 +00003119 return 0;
3120
3121 unsigned BuiltinID = getIdentifier()->getBuiltinID();
Daniel Dunbar304314d2012-03-06 23:52:37 +00003122 if (!BuiltinID)
3123 return 0;
3124
3125 ASTContext &Context = getASTContext();
Warren Hunt445d83e2013-11-01 23:46:51 +00003126 if (Context.getLangOpts().CPlusPlus) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003127 const auto *LinkageDecl =
3128 dyn_cast<LinkageSpecDecl>(getFirstDecl()->getDeclContext());
Warren Hunt445d83e2013-11-01 23:46:51 +00003129 // In C++, the first declaration of a builtin is always inside an implicit
3130 // extern "C".
3131 // FIXME: A recognised library function may not be directly in an extern "C"
3132 // declaration, for instance "extern "C" { namespace std { decl } }".
David Majnemerba3e5ec2015-03-13 18:26:17 +00003133 if (!LinkageDecl) {
3134 if (BuiltinID == Builtin::BI__GetExceptionInfo &&
David Majnemer145abde2016-01-26 01:12:17 +00003135 Context.getTargetInfo().getCXXABI().isMicrosoft())
David Majnemerba3e5ec2015-03-13 18:26:17 +00003136 return Builtin::BI__GetExceptionInfo;
3137 return 0;
3138 }
3139 if (LinkageDecl->getLanguage() != LinkageSpecDecl::lang_c)
Warren Hunt445d83e2013-11-01 23:46:51 +00003140 return 0;
3141 }
3142
3143 // If the function is marked "overloadable", it has a different mangled name
3144 // and is not the C library function.
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003145 if (!ConsiderWrapperFunctions && hasAttr<OverloadableAttr>())
Warren Hunt445d83e2013-11-01 23:46:51 +00003146 return 0;
3147
Douglas Gregore711f702009-02-14 18:57:46 +00003148 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
3149 return BuiltinID;
3150
3151 // This function has the name of a known C library
3152 // function. Determine whether it actually refers to the C library
3153 // function or whether it just has the same name.
3154
Douglas Gregora908e7f2009-02-17 03:23:10 +00003155 // If this is a static function, it's not a builtin.
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003156 if (!ConsiderWrapperFunctions && getStorageClass() == SC_Static)
Douglas Gregora908e7f2009-02-17 03:23:10 +00003157 return 0;
3158
Anastasia Stulova1202de32016-02-12 12:07:04 +00003159 // OpenCL v1.2 s6.9.f - The library functions defined in
3160 // the C99 standard headers are not available.
3161 if (Context.getLangOpts().OpenCL &&
3162 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
3163 return 0;
3164
Artem Belevich5ecdb942018-01-23 19:08:18 +00003165 // CUDA does not have device-side standard library. printf and malloc are the
3166 // only special cases that are supported by device-side runtime.
3167 if (Context.getLangOpts().CUDA && hasAttr<CUDADeviceAttr>() &&
3168 !hasAttr<CUDAHostAttr>() &&
3169 !(BuiltinID == Builtin::BIprintf || BuiltinID == Builtin::BImalloc))
3170 return 0;
3171
Warren Hunt445d83e2013-11-01 23:46:51 +00003172 return BuiltinID;
Douglas Gregorb9063fc2009-02-13 23:20:09 +00003173}
3174
Chris Lattner47c0d002009-04-25 06:03:53 +00003175/// getNumParams - Return the number of parameters this function must have
Bob Wilsonb39017a2011-01-10 18:23:55 +00003176/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner47c0d002009-04-25 06:03:53 +00003177/// after it has been created.
3178unsigned FunctionDecl::getNumParams() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003179 const auto *FPT = getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00003180 return FPT ? FPT->getNumParams() : 0;
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00003181}
3182
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003183void FunctionDecl::setParams(ASTContext &C,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003184 ArrayRef<ParmVarDecl *> NewParamInfo) {
Craig Topper36250ad2014-05-12 05:36:57 +00003185 assert(!ParamInfo && "Already has param info!");
David Blaikie9c70e042011-09-21 18:16:56 +00003186 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump11289f42009-09-09 15:08:12 +00003187
Chris Lattner8f5bf2f2007-01-21 19:04:10 +00003188 // Zero params -> null pointer.
David Blaikie9c70e042011-09-21 18:16:56 +00003189 if (!NewParamInfo.empty()) {
3190 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
3191 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Chris Lattner8f5bf2f2007-01-21 19:04:10 +00003192 }
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00003193}
Chris Lattner41943152007-01-25 04:52:46 +00003194
Chris Lattner58258242008-04-10 02:22:51 +00003195/// getMinRequiredArguments - Returns the minimum number of arguments
3196/// needed to call this function. This may be fewer than the number of
3197/// function parameters, if some of the parameters have default
Richard Smith91151782014-04-01 19:18:16 +00003198/// arguments (in C++) or are parameter packs (C++11).
Chris Lattner58258242008-04-10 02:22:51 +00003199unsigned FunctionDecl::getMinRequiredArguments() const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003200 if (!getASTContext().getLangOpts().CPlusPlus)
Douglas Gregor0dd423e2011-01-11 01:52:23 +00003201 return getNumParams();
Chris Lattner58258242008-04-10 02:22:51 +00003202
Richard Smith91151782014-04-01 19:18:16 +00003203 unsigned NumRequiredArgs = 0;
David Majnemer59f77922016-06-24 04:05:48 +00003204 for (auto *Param : parameters())
Richard Smith91151782014-04-01 19:18:16 +00003205 if (!Param->isParameterPack() && !Param->hasDefaultArg())
3206 ++NumRequiredArgs;
Chris Lattner58258242008-04-10 02:22:51 +00003207 return NumRequiredArgs;
3208}
3209
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003210/// The combination of the extern and inline keywords under MSVC forces
David Majnemer54e3ba52014-04-02 23:17:29 +00003211/// the function to be required.
3212///
3213/// Note: This function assumes that we will only get called when isInlined()
3214/// would return true for this FunctionDecl.
3215bool FunctionDecl::isMSExternInline() const {
3216 assert(isInlined() && "expected to get called on an inlined function!");
3217
3218 const ASTContext &Context = getASTContext();
David Majnemer3f021502015-10-08 04:53:31 +00003219 if (!Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3220 !hasAttr<DLLExportAttr>())
David Majnemer54e3ba52014-04-02 23:17:29 +00003221 return false;
3222
David Majnemer73768702015-03-20 00:02:27 +00003223 for (const FunctionDecl *FD = getMostRecentDecl(); FD;
3224 FD = FD->getPreviousDecl())
David Majnemerc0c42f32015-07-10 20:55:38 +00003225 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
David Majnemer54e3ba52014-04-02 23:17:29 +00003226 return true;
3227
3228 return false;
3229}
3230
3231static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
3232 if (Redecl->getStorageClass() != SC_Extern)
3233 return false;
3234
3235 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
3236 FD = FD->getPreviousDecl())
David Majnemerc0c42f32015-07-10 20:55:38 +00003237 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
David Majnemer54e3ba52014-04-02 23:17:29 +00003238 return false;
3239
3240 return true;
3241}
3242
Eli Friedman1b125c32012-02-07 03:50:18 +00003243static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
3244 // Only consider file-scope declarations in this test.
3245 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
3246 return false;
3247
3248 // Only consider explicit declarations; the presence of a builtin for a
3249 // libcall shouldn't affect whether a definition is externally visible.
3250 if (Redecl->isImplicit())
3251 return false;
3252
Fangrui Song6907ce22018-07-30 19:24:48 +00003253 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003254 return true; // Not an inline definition
3255
3256 return false;
3257}
3258
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003259/// For a function declaration in C or C++, determine whether this
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003260/// declaration causes the definition to be externally visible.
3261///
David Majnemer54e3ba52014-04-02 23:17:29 +00003262/// For instance, this determines if adding the current declaration to the set
Eli Friedman1b125c32012-02-07 03:50:18 +00003263/// of redeclarations of the given functions causes
3264/// isInlineDefinitionExternallyVisible to change from false to true.
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003265bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
Justin Lebar0241c962016-10-28 16:46:39 +00003266 assert(!doesThisDeclarationHaveABody() &&
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003267 "Must have a declaration without a body.");
3268
3269 ASTContext &Context = getASTContext();
3270
David Majnemer54e3ba52014-04-02 23:17:29 +00003271 if (Context.getLangOpts().MSVCCompat) {
3272 const FunctionDecl *Definition;
3273 if (hasBody(Definition) && Definition->isInlined() &&
3274 redeclForcesDefMSVC(this))
3275 return true;
3276 }
3277
Martin Storsjo71decf82019-09-27 12:25:19 +00003278 if (Context.getLangOpts().CPlusPlus)
3279 return false;
3280
David Blaikiebbafb8a2012-03-11 07:00:24 +00003281 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003282 // With GNU inlining, a declaration with 'inline' but not 'extern', forces
3283 // an externally visible definition.
3284 //
3285 // FIXME: What happens if gnu_inline gets added on after the first
3286 // declaration?
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003287 if (!isInlineSpecified() || getStorageClass() == SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003288 return false;
3289
3290 const FunctionDecl *Prev = this;
3291 bool FoundBody = false;
3292 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7d170102013-05-15 07:37:26 +00003293 FoundBody |= Prev->Body.isValid();
Eli Friedman1b125c32012-02-07 03:50:18 +00003294
3295 if (Prev->Body) {
3296 // If it's not the case that both 'inline' and 'extern' are
3297 // specified on the definition, then it is always externally visible.
3298 if (!Prev->isInlineSpecified() ||
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003299 Prev->getStorageClass() != SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003300 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003301 } else if (Prev->isInlineSpecified() &&
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003302 Prev->getStorageClass() != SC_Extern) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003303 return false;
3304 }
3305 }
3306 return FoundBody;
3307 }
3308
Eli Friedman1b125c32012-02-07 03:50:18 +00003309 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003310 // [...] If all of the file scope declarations for a function in a
3311 // translation unit include the inline function specifier without extern,
Eli Friedman1b125c32012-02-07 03:50:18 +00003312 // then the definition in that translation unit is an inline definition.
3313 if (isInlineSpecified() && getStorageClass() != SC_Extern)
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003314 return false;
Eli Friedman1b125c32012-02-07 03:50:18 +00003315 const FunctionDecl *Prev = this;
3316 bool FoundBody = false;
3317 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7d170102013-05-15 07:37:26 +00003318 FoundBody |= Prev->Body.isValid();
Eli Friedman1b125c32012-02-07 03:50:18 +00003319 if (RedeclForcesDefC99(Prev))
3320 return false;
3321 }
3322 return FoundBody;
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003323}
3324
Richard Smithd052a5782019-10-22 17:44:08 -07003325FunctionTypeLoc FunctionDecl::getFunctionTypeLoc() const {
Alp Tokerd0787eb2014-07-02 01:47:15 +00003326 const TypeSourceInfo *TSI = getTypeSourceInfo();
Richard Smithd052a5782019-10-22 17:44:08 -07003327 return TSI ? TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>()
3328 : FunctionTypeLoc();
3329}
3330
3331SourceRange FunctionDecl::getReturnTypeSourceRange() const {
3332 FunctionTypeLoc FTL = getFunctionTypeLoc();
Alp Tokerf5b10792014-07-02 12:55:58 +00003333 if (!FTL)
Alp Tokerd0787eb2014-07-02 01:47:15 +00003334 return SourceRange();
3335
Alp Tokerf5b10792014-07-02 12:55:58 +00003336 // Skip self-referential return types.
3337 const SourceManager &SM = getASTContext().getSourceManager();
3338 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003339 SourceLocation Boundary = getNameInfo().getBeginLoc();
Alp Tokerf5b10792014-07-02 12:55:58 +00003340 if (RTRange.isInvalid() || Boundary.isInvalid() ||
3341 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
3342 return SourceRange();
Alp Tokerd0787eb2014-07-02 01:47:15 +00003343
Alp Tokerf5b10792014-07-02 12:55:58 +00003344 return RTRange;
Alp Tokerd0787eb2014-07-02 01:47:15 +00003345}
3346
Malcolm Parsonsa3220ce2017-01-12 16:11:28 +00003347SourceRange FunctionDecl::getExceptionSpecSourceRange() const {
Richard Smithd052a5782019-10-22 17:44:08 -07003348 FunctionTypeLoc FTL = getFunctionTypeLoc();
3349 return FTL ? FTL.getExceptionSpecRange() : SourceRange();
Malcolm Parsonsa3220ce2017-01-12 16:11:28 +00003350}
3351
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003352/// For an inline function definition in C, or for a gnu_inline function
Richard Smithf3814ad2013-01-25 00:08:28 +00003353/// in C++, determine whether the definition will be externally visible.
Douglas Gregor299d76e2009-09-13 07:46:26 +00003354///
3355/// Inline function definitions are always available for inlining optimizations.
3356/// However, depending on the language dialect, declaration specifiers, and
3357/// attributes, the definition of an inline function may or may not be
3358/// "externally" visible to other translation units in the program.
3359///
3360/// In C99, inline definitions are not externally visible by default. However,
Mike Stump13c66702010-01-06 02:05:39 +00003361/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor299d76e2009-09-13 07:46:26 +00003362/// inline definition becomes externally visible (C99 6.7.4p6).
3363///
3364/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
Fangrui Song6907ce22018-07-30 19:24:48 +00003365/// definition, we use the GNU semantics for inline, which are nearly the
3366/// opposite of C99 semantics. In particular, "inline" by itself will create
3367/// an externally visible symbol, but "extern inline" will not create an
Douglas Gregor299d76e2009-09-13 07:46:26 +00003368/// externally visible symbol.
3369bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Nick Desaulniers58060222019-09-12 19:53:35 +00003370 assert((doesThisDeclarationHaveABody() || willHaveBody() ||
3371 hasAttr<AliasAttr>()) &&
Manuel Klimekda7456a2016-11-01 10:30:50 +00003372 "Must be a function definition");
Douglas Gregor583dcaf2009-10-27 21:11:48 +00003373 assert(isInlined() && "Function must be inline");
Douglas Gregorb7e5c842009-10-27 23:26:40 +00003374 ASTContext &Context = getASTContext();
Fangrui Song6907ce22018-07-30 19:24:48 +00003375
David Blaikiebbafb8a2012-03-11 07:00:24 +00003376 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003377 // Note: If you change the logic here, please change
3378 // doesDeclarationForceExternallyVisibleDefinition as well.
3379 //
Douglas Gregorff76cb92010-12-09 16:59:22 +00003380 // If it's not the case that both 'inline' and 'extern' are
3381 // specified on the definition, then this inline definition is
3382 // externally visible.
Martin Storsjo71decf82019-09-27 12:25:19 +00003383 if (Context.getLangOpts().CPlusPlus)
3384 return false;
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003385 if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
Douglas Gregorff76cb92010-12-09 16:59:22 +00003386 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003387
Douglas Gregorff76cb92010-12-09 16:59:22 +00003388 // If any declaration is 'inline' but not 'extern', then this definition
3389 // is externally visible.
Aaron Ballman86c93902014-03-06 23:45:36 +00003390 for (auto Redecl : redecls()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00003391 if (Redecl->isInlineSpecified() &&
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003392 Redecl->getStorageClass() != SC_Extern)
Douglas Gregor299d76e2009-09-13 07:46:26 +00003393 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003394 }
3395
Douglas Gregor76fe50c2009-04-28 06:37:30 +00003396 return false;
Douglas Gregor299d76e2009-09-13 07:46:26 +00003397 }
Eli Friedman1b125c32012-02-07 03:50:18 +00003398
Richard Smithf3814ad2013-01-25 00:08:28 +00003399 // The rest of this function is C-only.
3400 assert(!Context.getLangOpts().CPlusPlus &&
3401 "should not use C inline rules in C++");
3402
Douglas Gregor299d76e2009-09-13 07:46:26 +00003403 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003404 // [...] If all of the file scope declarations for a function in a
3405 // translation unit include the inline function specifier without extern,
Douglas Gregor299d76e2009-09-13 07:46:26 +00003406 // then the definition in that translation unit is an inline definition.
Aaron Ballman86c93902014-03-06 23:45:36 +00003407 for (auto Redecl : redecls()) {
3408 if (RedeclForcesDefC99(Redecl))
Eli Friedman1b125c32012-02-07 03:50:18 +00003409 return true;
Douglas Gregor299d76e2009-09-13 07:46:26 +00003410 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003411
Douglas Gregor299d76e2009-09-13 07:46:26 +00003412 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003413 // An inline definition does not provide an external definition for the
3414 // function, and does not forbid an external definition in another
Douglas Gregor299d76e2009-09-13 07:46:26 +00003415 // translation unit.
Douglas Gregor76fe50c2009-04-28 06:37:30 +00003416 return false;
3417}
3418
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00003419/// getOverloadedOperator - Which C++ overloaded operator this
3420/// function represents, if any.
3421OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregor163c5852008-11-18 14:39:36 +00003422 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
3423 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00003424 else
3425 return OO_None;
3426}
3427
Alexis Huntc88db062010-01-13 09:01:02 +00003428/// getLiteralIdentifier - The literal suffix identifier this function
3429/// represents, if any.
3430const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
3431 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
3432 return getDeclName().getCXXLiteralIdentifier();
3433 else
Craig Topper36250ad2014-05-12 05:36:57 +00003434 return nullptr;
Alexis Huntc88db062010-01-13 09:01:02 +00003435}
3436
Argyrios Kyrtzidiscb6f3462010-06-22 09:54:51 +00003437FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
3438 if (TemplateOrSpecialization.isNull())
3439 return TK_NonTemplate;
3440 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
3441 return TK_FunctionTemplate;
3442 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
3443 return TK_MemberSpecialization;
3444 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
3445 return TK_FunctionTemplateSpecialization;
3446 if (TemplateOrSpecialization.is
3447 <DependentFunctionTemplateSpecializationInfo*>())
3448 return TK_DependentFunctionTemplateSpecialization;
3449
David Blaikie83d382b2011-09-23 05:06:16 +00003450 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidiscb6f3462010-06-22 09:54:51 +00003451}
3452
Douglas Gregord801b062009-10-07 23:56:10 +00003453FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregor06db9f52009-10-12 20:18:28 +00003454 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregord801b062009-10-07 23:56:10 +00003455 return cast<FunctionDecl>(Info->getInstantiatedFrom());
Craig Topper36250ad2014-05-12 05:36:57 +00003456
3457 return nullptr;
Douglas Gregord801b062009-10-07 23:56:10 +00003458}
3459
Chandler Carruth21c90602015-12-30 03:24:14 +00003460MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
Richard Smithf19a8b02019-05-02 00:49:14 +00003461 if (auto *MSI =
3462 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
3463 return MSI;
3464 if (auto *FTSI = TemplateOrSpecialization
3465 .dyn_cast<FunctionTemplateSpecializationInfo *>())
3466 return FTSI->getMemberSpecializationInfo();
3467 return nullptr;
Chandler Carruth21c90602015-12-30 03:24:14 +00003468}
3469
Fangrui Song6907ce22018-07-30 19:24:48 +00003470void
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003471FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
3472 FunctionDecl *FD,
Douglas Gregord801b062009-10-07 23:56:10 +00003473 TemplateSpecializationKind TSK) {
Fangrui Song6907ce22018-07-30 19:24:48 +00003474 assert(TemplateOrSpecialization.isNull() &&
Douglas Gregord801b062009-10-07 23:56:10 +00003475 "Member function is already a specialization");
Fangrui Song6907ce22018-07-30 19:24:48 +00003476 MemberSpecializationInfo *Info
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003477 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregord801b062009-10-07 23:56:10 +00003478 TemplateOrSpecialization = Info;
3479}
3480
Chandler Carruth21c90602015-12-30 03:24:14 +00003481FunctionTemplateDecl *FunctionDecl::getDescribedFunctionTemplate() const {
3482 return TemplateOrSpecialization.dyn_cast<FunctionTemplateDecl *>();
3483}
3484
3485void FunctionDecl::setDescribedFunctionTemplate(FunctionTemplateDecl *Template) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003486 assert(TemplateOrSpecialization.isNull() &&
3487 "Member function is already a specialization");
Chandler Carruth21c90602015-12-30 03:24:14 +00003488 TemplateOrSpecialization = Template;
3489}
3490
Douglas Gregorafca3b42009-10-27 20:53:28 +00003491bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor69f6a362010-05-17 17:34:56 +00003492 // If the function is invalid, it can't be implicitly instantiated.
3493 if (isInvalidDecl())
Douglas Gregorafca3b42009-10-27 20:53:28 +00003494 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003495
Richard Smithf19a8b02019-05-02 00:49:14 +00003496 switch (getTemplateSpecializationKindForInstantiation()) {
Douglas Gregorafca3b42009-10-27 20:53:28 +00003497 case TSK_Undeclared:
Douglas Gregorafca3b42009-10-27 20:53:28 +00003498 case TSK_ExplicitInstantiationDefinition:
Richard Smithf19a8b02019-05-02 00:49:14 +00003499 case TSK_ExplicitSpecialization:
Douglas Gregorafca3b42009-10-27 20:53:28 +00003500 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003501
Douglas Gregorafca3b42009-10-27 20:53:28 +00003502 case TSK_ImplicitInstantiation:
3503 return true;
3504
3505 case TSK_ExplicitInstantiationDeclaration:
3506 // Handled below.
3507 break;
3508 }
3509
3510 // Find the actual template from which we will instantiate.
3511 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003512 bool HasPattern = false;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003513 if (PatternDecl)
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003514 HasPattern = PatternDecl->hasBody(PatternDecl);
Fangrui Song6907ce22018-07-30 19:24:48 +00003515
Douglas Gregorafca3b42009-10-27 20:53:28 +00003516 // C++0x [temp.explicit]p9:
3517 // Except for inline functions, other explicit instantiation declarations
3518 // have the effect of suppressing the implicit instantiation of the entity
Fangrui Song6907ce22018-07-30 19:24:48 +00003519 // to which they refer.
3520 if (!HasPattern || !PatternDecl)
Douglas Gregorafca3b42009-10-27 20:53:28 +00003521 return true;
3522
Douglas Gregor583dcaf2009-10-27 21:11:48 +00003523 return PatternDecl->isInlined();
Ted Kremenek85825ae2011-12-01 00:59:17 +00003524}
3525
3526bool FunctionDecl::isTemplateInstantiation() const {
Richard Smithf19a8b02019-05-02 00:49:14 +00003527 // FIXME: Remove this, it's not clear what it means. (Which template
3528 // specialization kind?)
3529 return clang::isTemplateInstantiation(getTemplateSpecializationKind());
Ted Kremenek85825ae2011-12-01 00:59:17 +00003530}
Fangrui Song6907ce22018-07-30 19:24:48 +00003531
Douglas Gregorafca3b42009-10-27 20:53:28 +00003532FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Fangrui Song6907ce22018-07-30 19:24:48 +00003533 // If this is a generic lambda call operator specialization, its
Faisal Valib90b2112014-04-03 16:32:21 +00003534 // instantiation pattern is always its primary template's pattern
Fangrui Song6907ce22018-07-30 19:24:48 +00003535 // even if its primary template was instantiated from another
Faisal Valib90b2112014-04-03 16:32:21 +00003536 // member template (which happens with nested generic lambdas).
Fangrui Song6907ce22018-07-30 19:24:48 +00003537 // Since a lambda's call operator's body is transformed eagerly,
3538 // we don't have to go hunting for a prototype definition template
3539 // (i.e. instantiated-from-member-template) to use as an instantiation
Faisal Valib90b2112014-04-03 16:32:21 +00003540 // pattern.
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003541
Faisal Valib90b2112014-04-03 16:32:21 +00003542 if (isGenericLambdaCallOperatorSpecialization(
3543 dyn_cast<CXXMethodDecl>(this))) {
Richard Smith2195ec92017-04-21 01:15:13 +00003544 assert(getPrimaryTemplate() && "not a generic lambda call operator?");
3545 return getDefinitionOrSelf(getPrimaryTemplate()->getTemplatedDecl());
Faisal Valib90b2112014-04-03 16:32:21 +00003546 }
Richard Smith2195ec92017-04-21 01:15:13 +00003547
Richard Smithf19a8b02019-05-02 00:49:14 +00003548 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo()) {
3549 if (!clang::isTemplateInstantiation(Info->getTemplateSpecializationKind()))
3550 return nullptr;
3551 return getDefinitionOrSelf(cast<FunctionDecl>(Info->getInstantiatedFrom()));
3552 }
3553
3554 if (!clang::isTemplateInstantiation(getTemplateSpecializationKind()))
3555 return nullptr;
3556
Douglas Gregorafca3b42009-10-27 20:53:28 +00003557 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
Richard Smitha6b41d72019-05-03 23:51:38 +00003558 // If we hit a point where the user provided a specialization of this
3559 // template, we're done looking.
3560 while (!Primary->isMemberSpecialization()) {
3561 auto *NewPrimary = Primary->getInstantiatedFromMemberTemplate();
3562 if (!NewPrimary)
Douglas Gregorafca3b42009-10-27 20:53:28 +00003563 break;
Richard Smitha6b41d72019-05-03 23:51:38 +00003564 Primary = NewPrimary;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003565 }
Richard Smith2195ec92017-04-21 01:15:13 +00003566
3567 return getDefinitionOrSelf(Primary->getTemplatedDecl());
Fangrui Song6907ce22018-07-30 19:24:48 +00003568 }
Richard Smith2195ec92017-04-21 01:15:13 +00003569
Richard Smith2195ec92017-04-21 01:15:13 +00003570 return nullptr;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003571}
3572
Douglas Gregor70d83e22009-06-29 17:30:29 +00003573FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump11289f42009-09-09 15:08:12 +00003574 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor70d83e22009-06-29 17:30:29 +00003575 = TemplateOrSpecialization
3576 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003577 return Info->getTemplate();
Douglas Gregor70d83e22009-06-29 17:30:29 +00003578 }
Craig Topper36250ad2014-05-12 05:36:57 +00003579 return nullptr;
Douglas Gregor70d83e22009-06-29 17:30:29 +00003580}
3581
Chandler Carruth21c90602015-12-30 03:24:14 +00003582FunctionTemplateSpecializationInfo *
3583FunctionDecl::getTemplateSpecializationInfo() const {
3584 return TemplateOrSpecialization
3585 .dyn_cast<FunctionTemplateSpecializationInfo *>();
3586}
3587
Douglas Gregor70d83e22009-06-29 17:30:29 +00003588const TemplateArgumentList *
3589FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump11289f42009-09-09 15:08:12 +00003590 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorcf915552009-10-13 16:30:37 +00003591 = TemplateOrSpecialization
3592 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor70d83e22009-06-29 17:30:29 +00003593 return Info->TemplateArguments;
3594 }
Craig Topper36250ad2014-05-12 05:36:57 +00003595 return nullptr;
Douglas Gregor70d83e22009-06-29 17:30:29 +00003596}
3597
Argyrios Kyrtzidise9a24432011-09-22 20:07:09 +00003598const ASTTemplateArgumentListInfo *
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003599FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
3600 if (FunctionTemplateSpecializationInfo *Info
3601 = TemplateOrSpecialization
3602 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
3603 return Info->TemplateArgumentsAsWritten;
3604 }
Craig Topper36250ad2014-05-12 05:36:57 +00003605 return nullptr;
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003606}
3607
Mike Stump11289f42009-09-09 15:08:12 +00003608void
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003609FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
3610 FunctionTemplateDecl *Template,
Douglas Gregor8f5d4422009-06-29 20:59:39 +00003611 const TemplateArgumentList *TemplateArgs,
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00003612 void *InsertPos,
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003613 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis927d8e02010-07-05 10:37:55 +00003614 const TemplateArgumentListInfo *TemplateArgsAsWritten,
3615 SourceLocation PointOfInstantiation) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003616 assert((TemplateOrSpecialization.isNull() ||
3617 TemplateOrSpecialization.is<MemberSpecializationInfo *>()) &&
3618 "Member function is already a specialization");
Fangrui Song6907ce22018-07-30 19:24:48 +00003619 assert(TSK != TSK_Undeclared &&
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00003620 "Must specify the type of function template specialization");
Richard Smithf19a8b02019-05-02 00:49:14 +00003621 assert((TemplateOrSpecialization.isNull() ||
3622 TSK == TSK_ExplicitSpecialization) &&
3623 "Member specialization must be an explicit specialization");
3624 FunctionTemplateSpecializationInfo *Info =
3625 FunctionTemplateSpecializationInfo::Create(
3626 C, this, Template, TSK, TemplateArgs, TemplateArgsAsWritten,
3627 PointOfInstantiation,
3628 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>());
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00003629 TemplateOrSpecialization = Info;
Douglas Gregorce9978f2012-03-28 14:34:23 +00003630 Template->addSpecialization(Info, InsertPos);
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00003631}
3632
John McCallb9c78482010-04-08 09:05:18 +00003633void
3634FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
3635 const UnresolvedSetImpl &Templates,
3636 const TemplateArgumentListInfo &TemplateArgs) {
3637 assert(TemplateOrSpecialization.isNull());
John McCallb9c78482010-04-08 09:05:18 +00003638 DependentFunctionTemplateSpecializationInfo *Info =
James Y Knight7a22b242015-08-06 20:26:32 +00003639 DependentFunctionTemplateSpecializationInfo::Create(Context, Templates,
3640 TemplateArgs);
John McCallb9c78482010-04-08 09:05:18 +00003641 TemplateOrSpecialization = Info;
3642}
3643
James Y Knight7a22b242015-08-06 20:26:32 +00003644DependentFunctionTemplateSpecializationInfo *
Chandler Carruth21c90602015-12-30 03:24:14 +00003645FunctionDecl::getDependentSpecializationInfo() const {
3646 return TemplateOrSpecialization
3647 .dyn_cast<DependentFunctionTemplateSpecializationInfo *>();
3648}
3649
3650DependentFunctionTemplateSpecializationInfo *
James Y Knight7a22b242015-08-06 20:26:32 +00003651DependentFunctionTemplateSpecializationInfo::Create(
3652 ASTContext &Context, const UnresolvedSetImpl &Ts,
3653 const TemplateArgumentListInfo &TArgs) {
3654 void *Buffer = Context.Allocate(
3655 totalSizeToAlloc<TemplateArgumentLoc, FunctionTemplateDecl *>(
3656 TArgs.size(), Ts.size()));
3657 return new (Buffer) DependentFunctionTemplateSpecializationInfo(Ts, TArgs);
3658}
3659
John McCallb9c78482010-04-08 09:05:18 +00003660DependentFunctionTemplateSpecializationInfo::
3661DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
3662 const TemplateArgumentListInfo &TArgs)
Benjamin Kramer3ebba522015-04-02 12:43:31 +00003663 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
James Y Knight53c76162015-07-17 18:21:37 +00003664 NumTemplates = Ts.size();
3665 NumArgs = TArgs.size();
Benjamin Kramer3ebba522015-04-02 12:43:31 +00003666
James Y Knight7a22b242015-08-06 20:26:32 +00003667 FunctionTemplateDecl **TsArray = getTrailingObjects<FunctionTemplateDecl *>();
John McCallb9c78482010-04-08 09:05:18 +00003668 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
3669 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
3670
James Y Knight7a22b242015-08-06 20:26:32 +00003671 TemplateArgumentLoc *ArgsArray = getTrailingObjects<TemplateArgumentLoc>();
John McCallb9c78482010-04-08 09:05:18 +00003672 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
3673 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
3674}
3675
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003676TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump11289f42009-09-09 15:08:12 +00003677 // For a function template specialization, query the specialization
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003678 // information object.
Richard Smithf19a8b02019-05-02 00:49:14 +00003679 if (FunctionTemplateSpecializationInfo *FTSInfo =
3680 TemplateOrSpecialization
3681 .dyn_cast<FunctionTemplateSpecializationInfo *>())
Douglas Gregord801b062009-10-07 23:56:10 +00003682 return FTSInfo->getTemplateSpecializationKind();
Mike Stump11289f42009-09-09 15:08:12 +00003683
Richard Smithf19a8b02019-05-02 00:49:14 +00003684 if (MemberSpecializationInfo *MSInfo =
3685 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
3686 return MSInfo->getTemplateSpecializationKind();
3687
3688 return TSK_Undeclared;
3689}
3690
3691TemplateSpecializationKind
3692FunctionDecl::getTemplateSpecializationKindForInstantiation() const {
3693 // This is the same as getTemplateSpecializationKind(), except that for a
3694 // function that is both a function template specialization and a member
3695 // specialization, we prefer the member specialization information. Eg:
3696 //
3697 // template<typename T> struct A {
3698 // template<typename U> void f() {}
3699 // template<> void f<int>() {}
3700 // };
3701 //
3702 // For A<int>::f<int>():
3703 // * getTemplateSpecializationKind() will return TSK_ExplicitSpecialization
3704 // * getTemplateSpecializationKindForInstantiation() will return
3705 // TSK_ImplicitInstantiation
3706 //
3707 // This reflects the facts that A<int>::f<int> is an explicit specialization
3708 // of A<int>::f, and that A<int>::f<int> should be implicitly instantiated
3709 // from A::f<int> if a definition is needed.
3710 if (FunctionTemplateSpecializationInfo *FTSInfo =
3711 TemplateOrSpecialization
3712 .dyn_cast<FunctionTemplateSpecializationInfo *>()) {
3713 if (auto *MSInfo = FTSInfo->getMemberSpecializationInfo())
3714 return MSInfo->getTemplateSpecializationKind();
3715 return FTSInfo->getTemplateSpecializationKind();
3716 }
3717
3718 if (MemberSpecializationInfo *MSInfo =
3719 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
Douglas Gregord801b062009-10-07 23:56:10 +00003720 return MSInfo->getTemplateSpecializationKind();
Fangrui Song6907ce22018-07-30 19:24:48 +00003721
Douglas Gregord801b062009-10-07 23:56:10 +00003722 return TSK_Undeclared;
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003723}
3724
Mike Stump11289f42009-09-09 15:08:12 +00003725void
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003726FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3727 SourceLocation PointOfInstantiation) {
3728 if (FunctionTemplateSpecializationInfo *FTSInfo
3729 = TemplateOrSpecialization.dyn_cast<
3730 FunctionTemplateSpecializationInfo*>()) {
3731 FTSInfo->setTemplateSpecializationKind(TSK);
3732 if (TSK != TSK_ExplicitSpecialization &&
3733 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00003734 FTSInfo->getPointOfInstantiation().isInvalid()) {
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003735 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00003736 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
3737 L->InstantiationRequested(this);
3738 }
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003739 } else if (MemberSpecializationInfo *MSInfo
3740 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
3741 MSInfo->setTemplateSpecializationKind(TSK);
3742 if (TSK != TSK_ExplicitSpecialization &&
3743 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00003744 MSInfo->getPointOfInstantiation().isInvalid()) {
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003745 MSInfo->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00003746 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
3747 L->InstantiationRequested(this);
3748 }
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003749 } else
David Blaikie83d382b2011-09-23 05:06:16 +00003750 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003751}
3752
3753SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregord801b062009-10-07 23:56:10 +00003754 if (FunctionTemplateSpecializationInfo *FTSInfo
3755 = TemplateOrSpecialization.dyn_cast<
3756 FunctionTemplateSpecializationInfo*>())
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003757 return FTSInfo->getPointOfInstantiation();
Douglas Gregord801b062009-10-07 23:56:10 +00003758 else if (MemberSpecializationInfo *MSInfo
3759 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003760 return MSInfo->getPointOfInstantiation();
Fangrui Song6907ce22018-07-30 19:24:48 +00003761
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003762 return SourceLocation();
Douglas Gregore8925db2009-06-29 22:39:32 +00003763}
3764
Douglas Gregor6411b922009-09-11 20:15:17 +00003765bool FunctionDecl::isOutOfLine() const {
Douglas Gregorb11aad82011-02-19 18:51:44 +00003766 if (Decl::isOutOfLine())
Douglas Gregor6411b922009-09-11 20:15:17 +00003767 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003768
3769 // If this function was instantiated from a member function of a
Douglas Gregor6411b922009-09-11 20:15:17 +00003770 // class template, check whether that member function was defined out-of-line.
3771 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
3772 const FunctionDecl *Definition;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003773 if (FD->hasBody(Definition))
Douglas Gregor6411b922009-09-11 20:15:17 +00003774 return Definition->isOutOfLine();
3775 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003776
Douglas Gregor6411b922009-09-11 20:15:17 +00003777 // If this function was instantiated from a function template,
3778 // check whether that function template was defined out-of-line.
3779 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
3780 const FunctionDecl *Definition;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003781 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor6411b922009-09-11 20:15:17 +00003782 return Definition->isOutOfLine();
3783 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003784
Douglas Gregor6411b922009-09-11 20:15:17 +00003785 return false;
3786}
3787
Abramo Bagnaraea947882011-03-08 16:41:52 +00003788SourceRange FunctionDecl::getSourceRange() const {
3789 return SourceRange(getOuterLocStart(), EndRangeLoc);
3790}
3791
Anna Zaks28db7ce2012-01-18 02:45:01 +00003792unsigned FunctionDecl::getMemoryFunctionKind() const {
Anna Zaks201d4892012-01-13 21:52:01 +00003793 IdentifierInfo *FnInfo = getIdentifier();
3794
3795 if (!FnInfo)
Anna Zaks22122702012-01-17 00:37:07 +00003796 return 0;
Fangrui Song6907ce22018-07-30 19:24:48 +00003797
Anna Zaks201d4892012-01-13 21:52:01 +00003798 // Builtin handling.
3799 switch (getBuiltinID()) {
3800 case Builtin::BI__builtin_memset:
3801 case Builtin::BI__builtin___memset_chk:
3802 case Builtin::BImemset:
Anna Zaks22122702012-01-17 00:37:07 +00003803 return Builtin::BImemset;
Anna Zaks201d4892012-01-13 21:52:01 +00003804
3805 case Builtin::BI__builtin_memcpy:
3806 case Builtin::BI__builtin___memcpy_chk:
3807 case Builtin::BImemcpy:
Anna Zaks22122702012-01-17 00:37:07 +00003808 return Builtin::BImemcpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003809
3810 case Builtin::BI__builtin_memmove:
3811 case Builtin::BI__builtin___memmove_chk:
3812 case Builtin::BImemmove:
Anna Zaks22122702012-01-17 00:37:07 +00003813 return Builtin::BImemmove;
Anna Zaks201d4892012-01-13 21:52:01 +00003814
3815 case Builtin::BIstrlcpy:
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003816 case Builtin::BI__builtin___strlcpy_chk:
Anna Zaks22122702012-01-17 00:37:07 +00003817 return Builtin::BIstrlcpy;
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003818
Anna Zaks201d4892012-01-13 21:52:01 +00003819 case Builtin::BIstrlcat:
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003820 case Builtin::BI__builtin___strlcat_chk:
Anna Zaks22122702012-01-17 00:37:07 +00003821 return Builtin::BIstrlcat;
Anna Zaks201d4892012-01-13 21:52:01 +00003822
3823 case Builtin::BI__builtin_memcmp:
Anna Zaks22122702012-01-17 00:37:07 +00003824 case Builtin::BImemcmp:
3825 return Builtin::BImemcmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003826
Clement Courbet8c3343d2019-02-14 12:00:34 +00003827 case Builtin::BI__builtin_bcmp:
3828 case Builtin::BIbcmp:
3829 return Builtin::BIbcmp;
3830
Anna Zaks201d4892012-01-13 21:52:01 +00003831 case Builtin::BI__builtin_strncpy:
3832 case Builtin::BI__builtin___strncpy_chk:
3833 case Builtin::BIstrncpy:
Anna Zaks22122702012-01-17 00:37:07 +00003834 return Builtin::BIstrncpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003835
3836 case Builtin::BI__builtin_strncmp:
Anna Zaks22122702012-01-17 00:37:07 +00003837 case Builtin::BIstrncmp:
3838 return Builtin::BIstrncmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003839
3840 case Builtin::BI__builtin_strncasecmp:
Anna Zaks22122702012-01-17 00:37:07 +00003841 case Builtin::BIstrncasecmp:
3842 return Builtin::BIstrncasecmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003843
3844 case Builtin::BI__builtin_strncat:
Anna Zaks314cd092012-02-01 19:08:57 +00003845 case Builtin::BI__builtin___strncat_chk:
Anna Zaks201d4892012-01-13 21:52:01 +00003846 case Builtin::BIstrncat:
Anna Zaks22122702012-01-17 00:37:07 +00003847 return Builtin::BIstrncat;
Anna Zaks201d4892012-01-13 21:52:01 +00003848
3849 case Builtin::BI__builtin_strndup:
3850 case Builtin::BIstrndup:
Anna Zaks22122702012-01-17 00:37:07 +00003851 return Builtin::BIstrndup;
Anna Zaks201d4892012-01-13 21:52:01 +00003852
Anna Zaks314cd092012-02-01 19:08:57 +00003853 case Builtin::BI__builtin_strlen:
3854 case Builtin::BIstrlen:
3855 return Builtin::BIstrlen;
3856
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00003857 case Builtin::BI__builtin_bzero:
3858 case Builtin::BIbzero:
3859 return Builtin::BIbzero;
3860
Anna Zaks201d4892012-01-13 21:52:01 +00003861 default:
Rafael Espindola5bda63f2013-02-14 01:47:04 +00003862 if (isExternC()) {
Anna Zaks201d4892012-01-13 21:52:01 +00003863 if (FnInfo->isStr("memset"))
Anna Zaks22122702012-01-17 00:37:07 +00003864 return Builtin::BImemset;
Anna Zaks201d4892012-01-13 21:52:01 +00003865 else if (FnInfo->isStr("memcpy"))
Anna Zaks22122702012-01-17 00:37:07 +00003866 return Builtin::BImemcpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003867 else if (FnInfo->isStr("memmove"))
Anna Zaks22122702012-01-17 00:37:07 +00003868 return Builtin::BImemmove;
Anna Zaks201d4892012-01-13 21:52:01 +00003869 else if (FnInfo->isStr("memcmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003870 return Builtin::BImemcmp;
Clement Courbet8c3343d2019-02-14 12:00:34 +00003871 else if (FnInfo->isStr("bcmp"))
3872 return Builtin::BIbcmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003873 else if (FnInfo->isStr("strncpy"))
Anna Zaks22122702012-01-17 00:37:07 +00003874 return Builtin::BIstrncpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003875 else if (FnInfo->isStr("strncmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003876 return Builtin::BIstrncmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003877 else if (FnInfo->isStr("strncasecmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003878 return Builtin::BIstrncasecmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003879 else if (FnInfo->isStr("strncat"))
Anna Zaks22122702012-01-17 00:37:07 +00003880 return Builtin::BIstrncat;
Anna Zaks201d4892012-01-13 21:52:01 +00003881 else if (FnInfo->isStr("strndup"))
Anna Zaks22122702012-01-17 00:37:07 +00003882 return Builtin::BIstrndup;
Anna Zaks314cd092012-02-01 19:08:57 +00003883 else if (FnInfo->isStr("strlen"))
3884 return Builtin::BIstrlen;
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00003885 else if (FnInfo->isStr("bzero"))
3886 return Builtin::BIbzero;
Anna Zaks201d4892012-01-13 21:52:01 +00003887 }
3888 break;
3889 }
Anna Zaks22122702012-01-17 00:37:07 +00003890 return 0;
Anna Zaks201d4892012-01-13 21:52:01 +00003891}
3892
Richard Trieu27c1b1a2018-07-10 01:40:50 +00003893unsigned FunctionDecl::getODRHash() const {
Erich Keane9c665062018-08-01 21:02:40 +00003894 assert(hasODRHash());
Richard Trieu27c1b1a2018-07-10 01:40:50 +00003895 return ODRHash;
3896}
3897
Richard Trieue6caa262017-12-23 00:41:01 +00003898unsigned FunctionDecl::getODRHash() {
Erich Keane9c665062018-08-01 21:02:40 +00003899 if (hasODRHash())
Richard Trieue6caa262017-12-23 00:41:01 +00003900 return ODRHash;
3901
Richard Trieu0ac2eb72018-02-22 05:50:29 +00003902 if (auto *FT = getInstantiatedFromMemberFunction()) {
Erich Keane9c665062018-08-01 21:02:40 +00003903 setHasODRHash(true);
Richard Trieu0ac2eb72018-02-22 05:50:29 +00003904 ODRHash = FT->getODRHash();
3905 return ODRHash;
3906 }
3907
Richard Trieue6caa262017-12-23 00:41:01 +00003908 class ODRHash Hash;
3909 Hash.AddFunctionDecl(this);
Erich Keane9c665062018-08-01 21:02:40 +00003910 setHasODRHash(true);
Richard Trieue6caa262017-12-23 00:41:01 +00003911 ODRHash = Hash.CalculateHash();
3912 return ODRHash;
3913}
3914
Chris Lattner59a25942008-03-31 00:36:02 +00003915//===----------------------------------------------------------------------===//
Sebastian Redl833ef452010-01-26 22:01:41 +00003916// FieldDecl Implementation
3917//===----------------------------------------------------------------------===//
3918
Jay Foad39c79802011-01-12 09:06:06 +00003919FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00003920 SourceLocation StartLoc, SourceLocation IdLoc,
3921 IdentifierInfo *Id, QualType T,
Richard Smith938f40b2011-06-11 17:19:42 +00003922 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
Richard Smith2b013182012-06-10 03:12:00 +00003923 InClassInitStyle InitStyle) {
Richard Smithf7981722013-11-22 09:01:48 +00003924 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3925 BW, Mutable, InitStyle);
Sebastian Redl833ef452010-01-26 22:01:41 +00003926}
3927
Douglas Gregor72172e92012-01-05 21:55:30 +00003928FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00003929 return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(),
3930 SourceLocation(), nullptr, QualType(), nullptr,
3931 nullptr, false, ICIS_NoInit);
Douglas Gregor72172e92012-01-05 21:55:30 +00003932}
3933
Sebastian Redl833ef452010-01-26 22:01:41 +00003934bool FieldDecl::isAnonymousStructOrUnion() const {
3935 if (!isImplicit() || getDeclName())
3936 return false;
3937
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003938 if (const auto *Record = getType()->getAs<RecordType>())
Sebastian Redl833ef452010-01-26 22:01:41 +00003939 return Record->getDecl()->isAnonymousStructOrUnion();
3940
3941 return false;
3942}
3943
Richard Smithcaf33902011-10-10 18:28:20 +00003944unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
3945 assert(isBitField() && "not a bitfield");
Richard Smith6b8e3c02017-08-28 00:28:14 +00003946 return getBitWidth()->EvaluateKnownConstInt(Ctx).getZExtValue();
Richard Smithcaf33902011-10-10 18:28:20 +00003947}
3948
Richard Smith866dee42018-04-02 18:29:43 +00003949bool FieldDecl::isZeroLengthBitField(const ASTContext &Ctx) const {
3950 return isUnnamedBitfield() && !getBitWidth()->isValueDependent() &&
3951 getBitWidthValue(Ctx) == 0;
3952}
3953
Richard Smith78b239e2019-06-20 20:44:45 +00003954bool FieldDecl::isZeroSize(const ASTContext &Ctx) const {
3955 if (isZeroLengthBitField(Ctx))
3956 return true;
3957
3958 // C++2a [intro.object]p7:
3959 // An object has nonzero size if it
3960 // -- is not a potentially-overlapping subobject, or
3961 if (!hasAttr<NoUniqueAddressAttr>())
3962 return false;
3963
3964 // -- is not of class type, or
3965 const auto *RT = getType()->getAs<RecordType>();
3966 if (!RT)
3967 return false;
3968 const RecordDecl *RD = RT->getDecl()->getDefinition();
3969 if (!RD) {
3970 assert(isInvalidDecl() && "valid field has incomplete type");
3971 return false;
3972 }
3973
3974 // -- [has] virtual member functions or virtual base classes, or
3975 // -- has subobjects of nonzero size or bit-fields of nonzero length
3976 const auto *CXXRD = cast<CXXRecordDecl>(RD);
3977 if (!CXXRD->isEmpty())
3978 return false;
3979
3980 // Otherwise, [...] the circumstances under which the object has zero size
3981 // are implementation-defined.
3982 // FIXME: This might be Itanium ABI specific; we don't yet know what the MS
3983 // ABI will do.
3984 return true;
3985}
3986
John McCall4e819612011-01-20 07:57:12 +00003987unsigned FieldDecl::getFieldIndex() const {
Richard Smith0b87e072013-10-07 08:02:11 +00003988 const FieldDecl *Canonical = getCanonicalDecl();
3989 if (Canonical != this)
3990 return Canonical->getFieldIndex();
3991
John McCall4e819612011-01-20 07:57:12 +00003992 if (CachedFieldIndex) return CachedFieldIndex - 1;
3993
Richard Smithd62306a2011-11-10 06:34:14 +00003994 unsigned Index = 0;
Richard Smith85567dd2017-11-15 01:33:46 +00003995 const RecordDecl *RD = getParent()->getDefinition();
3996 assert(RD && "requested index for field of struct with no definition");
Richard Smithd62306a2011-11-10 06:34:14 +00003997
Hans Wennborga302cd92014-08-21 16:06:57 +00003998 for (auto *Field : RD->fields()) {
3999 Field->getCanonicalDecl()->CachedFieldIndex = Index + 1;
4000 ++Index;
4001 }
John McCall4e819612011-01-20 07:57:12 +00004002
Richard Smithd62306a2011-11-10 06:34:14 +00004003 assert(CachedFieldIndex && "failed to find field in parent");
4004 return CachedFieldIndex - 1;
John McCall4e819612011-01-20 07:57:12 +00004005}
4006
Abramo Bagnara20c9e242011-03-08 11:07:11 +00004007SourceRange FieldDecl::getSourceRange() const {
Richard Smith6b8e3c02017-08-28 00:28:14 +00004008 const Expr *FinalExpr = getInClassInitializer();
4009 if (!FinalExpr)
4010 FinalExpr = getBitWidth();
4011 if (FinalExpr)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004012 return SourceRange(getInnerLocStart(), FinalExpr->getEndLoc());
Richard Smith6b8e3c02017-08-28 00:28:14 +00004013 return DeclaratorDecl::getSourceRange();
Alexey Bataev39c81e22014-08-28 04:28:19 +00004014}
4015
4016void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) {
David Blaikie11ab0782014-10-31 17:18:09 +00004017 assert((getParent()->isLambda() || getParent()->isCapturedRecord()) &&
Alexey Bataev330de032014-10-29 12:21:55 +00004018 "capturing type in non-lambda or captured record.");
Richard Smith6b8e3c02017-08-28 00:28:14 +00004019 assert(InitStorage.getInt() == ISK_NoInit &&
John McCallc90c1492014-10-10 18:44:34 +00004020 InitStorage.getPointer() == nullptr &&
Alexey Bataev39c81e22014-08-28 04:28:19 +00004021 "bit width, initializer or captured type already set");
John McCallc90c1492014-10-10 18:44:34 +00004022 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType),
4023 ISK_CapturedVLAType);
Alexey Bataev39c81e22014-08-28 04:28:19 +00004024}
4025
Sebastian Redl833ef452010-01-26 22:01:41 +00004026//===----------------------------------------------------------------------===//
Douglas Gregor9ac7a072009-01-07 00:43:41 +00004027// TagDecl Implementation
Ted Kremenek21475702008-09-05 17:16:31 +00004028//===----------------------------------------------------------------------===//
4029
Erich Keanef92f31c2018-08-01 20:48:16 +00004030TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
4031 SourceLocation L, IdentifierInfo *Id, TagDecl *PrevDecl,
4032 SourceLocation StartL)
4033 : TypeDecl(DK, DC, L, Id, StartL), DeclContext(DK), redeclarable_base(C),
4034 TypedefNameDeclOrQualifier((TypedefNameDecl *)nullptr) {
4035 assert((DK != Enum || TK == TTK_Enum) &&
4036 "EnumDecl not matched with TTK_Enum");
4037 setPreviousDecl(PrevDecl);
4038 setTagKind(TK);
4039 setCompleteDefinition(false);
4040 setBeingDefined(false);
4041 setEmbeddedInDeclarator(false);
4042 setFreeStanding(false);
4043 setCompleteDefinitionRequired(false);
4044}
4045
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00004046SourceLocation TagDecl::getOuterLocStart() const {
4047 return getTemplateOrInnerLocStart(this);
4048}
4049
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00004050SourceRange TagDecl::getSourceRange() const {
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00004051 SourceLocation RBraceLoc = BraceRange.getEnd();
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00004052 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00004053 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00004054}
4055
Rafael Espindola8db352d2013-10-17 15:37:26 +00004056TagDecl *TagDecl::getCanonicalDecl() { return getFirstDecl(); }
Argyrios Kyrtzidis5614aef2009-07-18 00:34:07 +00004057
Rafael Espindolabf5c33b2013-03-12 21:06:00 +00004058void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
David Majnemer00350522015-08-31 18:48:39 +00004059 TypedefNameDeclOrQualifier = TDD;
Reid Klecknercae82a22014-04-23 22:03:04 +00004060 if (const Type *T = getTypeForDecl()) {
4061 (void)T;
Richard Smith5b21db82014-04-23 18:20:42 +00004062 assert(T->isLinkageValid());
Reid Klecknercae82a22014-04-23 22:03:04 +00004063 }
Rafael Espindola0e0d0092013-03-14 03:07:35 +00004064 assert(isLinkageValid());
Douglas Gregora72a4e32010-05-19 18:39:18 +00004065}
4066
Douglas Gregordee1be82009-01-17 00:42:38 +00004067void TagDecl::startDefinition() {
Erich Keanef92f31c2018-08-01 20:48:16 +00004068 setBeingDefined(true);
John McCall67da35c2010-02-04 22:26:26 +00004069
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004070 if (auto *D = dyn_cast<CXXRecordDecl>(this)) {
Richard Smith053f6c62014-05-16 23:01:30 +00004071 struct CXXRecordDecl::DefinitionData *Data =
John McCall67da35c2010-02-04 22:26:26 +00004072 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
Aaron Ballman86c93902014-03-06 23:45:36 +00004073 for (auto I : redecls())
Richard Smith64c06302014-05-22 23:19:02 +00004074 cast<CXXRecordDecl>(I)->DefinitionData = Data;
John McCall67da35c2010-02-04 22:26:26 +00004075 }
Douglas Gregordee1be82009-01-17 00:42:38 +00004076}
4077
4078void TagDecl::completeDefinition() {
John McCallae580fe2010-02-05 01:33:36 +00004079 assert((!isa<CXXRecordDecl>(this) ||
4080 cast<CXXRecordDecl>(this)->hasDefinition()) &&
4081 "definition completed but not started");
4082
Erich Keanef92f31c2018-08-01 20:48:16 +00004083 setCompleteDefinition(true);
4084 setBeingDefined(false);
Argyrios Kyrtzidisd170d842010-10-24 17:26:50 +00004085
4086 if (ASTMutationListener *L = getASTMutationListener())
4087 L->CompletedTagDefinition(this);
Douglas Gregordee1be82009-01-17 00:42:38 +00004088}
4089
John McCallf937c022011-10-07 06:10:15 +00004090TagDecl *TagDecl::getDefinition() const {
4091 if (isCompleteDefinition())
Douglas Gregorb6b8f9e2009-07-29 23:36:44 +00004092 return const_cast<TagDecl *>(this);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004093
4094 // If it's possible for us to have an out-of-date definition, check now.
Erich Keanef92f31c2018-08-01 20:48:16 +00004095 if (mayHaveOutOfDateDef()) {
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004096 if (IdentifierInfo *II = getIdentifier()) {
4097 if (II->isOutOfDate()) {
4098 updateOutOfDate(*II);
4099 }
4100 }
4101 }
4102
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004103 if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(this))
Andrew Trickba266ee2010-10-19 21:54:32 +00004104 return CXXRD->getDefinition();
Mike Stump11289f42009-09-09 15:08:12 +00004105
Aaron Ballman86c93902014-03-06 23:45:36 +00004106 for (auto R : redecls())
John McCallf937c022011-10-07 06:10:15 +00004107 if (R->isCompleteDefinition())
Aaron Ballman86c93902014-03-06 23:45:36 +00004108 return R;
Mike Stump11289f42009-09-09 15:08:12 +00004109
Craig Topper36250ad2014-05-12 05:36:57 +00004110 return nullptr;
Ted Kremenek21475702008-09-05 17:16:31 +00004111}
4112
Douglas Gregor14454802011-02-25 02:25:35 +00004113void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
4114 if (QualifierLoc) {
John McCall3e11ebe2010-03-15 10:12:16 +00004115 // Make sure the extended qualifier info is allocated.
4116 if (!hasExtInfo())
David Majnemer00350522015-08-31 18:48:39 +00004117 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCall3e11ebe2010-03-15 10:12:16 +00004118 // Set qualifier info.
Douglas Gregor14454802011-02-25 02:25:35 +00004119 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier6fdf38b2011-08-17 23:08:45 +00004120 } else {
John McCall3e11ebe2010-03-15 10:12:16 +00004121 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCall3e11ebe2010-03-15 10:12:16 +00004122 if (hasExtInfo()) {
Abramo Bagnara60804e12011-03-18 15:16:37 +00004123 if (getExtInfo()->NumTemplParamLists == 0) {
4124 getASTContext().Deallocate(getExtInfo());
David Majnemer00350522015-08-31 18:48:39 +00004125 TypedefNameDeclOrQualifier = (TypedefNameDecl *)nullptr;
Abramo Bagnara60804e12011-03-18 15:16:37 +00004126 }
4127 else
4128 getExtInfo()->QualifierLoc = QualifierLoc;
John McCall3e11ebe2010-03-15 10:12:16 +00004129 }
4130 }
4131}
4132
Benjamin Kramer9cc210652015-08-05 09:40:49 +00004133void TagDecl::setTemplateParameterListsInfo(
4134 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
4135 assert(!TPLists.empty());
Abramo Bagnara60804e12011-03-18 15:16:37 +00004136 // Make sure the extended decl info is allocated.
4137 if (!hasExtInfo())
4138 // Allocate external info struct.
David Majnemer00350522015-08-31 18:48:39 +00004139 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara60804e12011-03-18 15:16:37 +00004140 // Set the template parameter lists info.
Benjamin Kramer9cc210652015-08-05 09:40:49 +00004141 getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
Abramo Bagnara60804e12011-03-18 15:16:37 +00004142}
4143
Ted Kremenek21475702008-09-05 17:16:31 +00004144//===----------------------------------------------------------------------===//
Sebastian Redl833ef452010-01-26 22:01:41 +00004145// EnumDecl Implementation
4146//===----------------------------------------------------------------------===//
4147
Erich Keanef92f31c2018-08-01 20:48:16 +00004148EnumDecl::EnumDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
4149 SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl,
4150 bool Scoped, bool ScopedUsingClassTag, bool Fixed)
4151 : TagDecl(Enum, TTK_Enum, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
4152 assert(Scoped || !ScopedUsingClassTag);
4153 IntegerType = nullptr;
4154 setNumPositiveBits(0);
4155 setNumNegativeBits(0);
4156 setScoped(Scoped);
4157 setScopedUsingClassTag(ScopedUsingClassTag);
4158 setFixed(Fixed);
4159 setHasODRHash(false);
4160 ODRHash = 0;
4161}
4162
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004163void EnumDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004164
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004165EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
4166 SourceLocation StartLoc, SourceLocation IdLoc,
4167 IdentifierInfo *Id,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00004168 EnumDecl *PrevDecl, bool IsScoped,
4169 bool IsScopedUsingClassTag, bool IsFixed) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004170 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl,
4171 IsScoped, IsScopedUsingClassTag, IsFixed);
Erich Keanef92f31c2018-08-01 20:48:16 +00004172 Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Sebastian Redl833ef452010-01-26 22:01:41 +00004173 C.getTypeDeclType(Enum, PrevDecl);
4174 return Enum;
4175}
4176
Douglas Gregor72172e92012-01-05 21:55:30 +00004177EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004178 EnumDecl *Enum =
4179 new (C, ID) EnumDecl(C, nullptr, SourceLocation(), SourceLocation(),
4180 nullptr, nullptr, false, false, false);
Erich Keanef92f31c2018-08-01 20:48:16 +00004181 Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004182 return Enum;
Argyrios Kyrtzidis39f0e302010-07-02 11:54:55 +00004183}
4184
Alp Tokerb9fa5122014-01-06 11:31:18 +00004185SourceRange EnumDecl::getIntegerTypeRange() const {
4186 if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
4187 return TI->getTypeLoc().getSourceRange();
4188 return SourceRange();
4189}
4190
Douglas Gregord5058122010-02-11 01:19:42 +00004191void EnumDecl::completeDefinition(QualType NewType,
John McCall9aa35be2010-05-06 08:49:23 +00004192 QualType NewPromotionType,
4193 unsigned NumPositiveBits,
4194 unsigned NumNegativeBits) {
John McCallf937c022011-10-07 06:10:15 +00004195 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor0bf31402010-10-08 23:50:27 +00004196 if (!IntegerType)
4197 IntegerType = NewType.getTypePtr();
Sebastian Redl833ef452010-01-26 22:01:41 +00004198 PromotionType = NewPromotionType;
John McCall9aa35be2010-05-06 08:49:23 +00004199 setNumPositiveBits(NumPositiveBits);
4200 setNumNegativeBits(NumNegativeBits);
Sebastian Redl833ef452010-01-26 22:01:41 +00004201 TagDecl::completeDefinition();
4202}
4203
Akira Hatanaka3c268af2017-03-21 02:23:00 +00004204bool EnumDecl::isClosed() const {
4205 if (const auto *A = getAttr<EnumExtensibilityAttr>())
4206 return A->getExtensibility() == EnumExtensibilityAttr::Closed;
4207 return true;
4208}
4209
4210bool EnumDecl::isClosedFlag() const {
4211 return isClosed() && hasAttr<FlagEnumAttr>();
4212}
4213
4214bool EnumDecl::isClosedNonFlag() const {
4215 return isClosed() && !hasAttr<FlagEnumAttr>();
4216}
4217
Richard Smith7d137e32012-03-23 03:33:32 +00004218TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
4219 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
4220 return MSI->getTemplateSpecializationKind();
4221
4222 return TSK_Undeclared;
4223}
4224
4225void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
4226 SourceLocation PointOfInstantiation) {
4227 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
4228 assert(MSI && "Not an instantiated member enumeration?");
4229 MSI->setTemplateSpecializationKind(TSK);
4230 if (TSK != TSK_ExplicitSpecialization &&
4231 PointOfInstantiation.isValid() &&
4232 MSI->getPointOfInstantiation().isInvalid())
4233 MSI->setPointOfInstantiation(PointOfInstantiation);
4234}
4235
Richard Smith6739a102016-05-05 00:56:12 +00004236EnumDecl *EnumDecl::getTemplateInstantiationPattern() const {
4237 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
4238 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
4239 EnumDecl *ED = getInstantiatedFromMemberEnum();
4240 while (auto *NewED = ED->getInstantiatedFromMemberEnum())
4241 ED = NewED;
Richard Smith2195ec92017-04-21 01:15:13 +00004242 return getDefinitionOrSelf(ED);
Richard Smith6739a102016-05-05 00:56:12 +00004243 }
4244 }
4245
4246 assert(!isTemplateInstantiation(getTemplateSpecializationKind()) &&
4247 "couldn't find pattern for enum instantiation");
4248 return nullptr;
4249}
4250
Richard Smith4b38ded2012-03-14 23:13:10 +00004251EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
4252 if (SpecializationInfo)
4253 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
4254
Craig Topper36250ad2014-05-12 05:36:57 +00004255 return nullptr;
Richard Smith4b38ded2012-03-14 23:13:10 +00004256}
4257
4258void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
4259 TemplateSpecializationKind TSK) {
4260 assert(!SpecializationInfo && "Member enum is already a specialization");
4261 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
4262}
4263
Richard Trieuab4d7302018-07-25 22:52:05 +00004264unsigned EnumDecl::getODRHash() {
Erich Keanef92f31c2018-08-01 20:48:16 +00004265 if (hasODRHash())
Richard Trieuab4d7302018-07-25 22:52:05 +00004266 return ODRHash;
4267
4268 class ODRHash Hash;
4269 Hash.AddEnumDecl(this);
Erich Keanef92f31c2018-08-01 20:48:16 +00004270 setHasODRHash(true);
Richard Trieuab4d7302018-07-25 22:52:05 +00004271 ODRHash = Hash.CalculateHash();
4272 return ODRHash;
4273}
4274
Sebastian Redl833ef452010-01-26 22:01:41 +00004275//===----------------------------------------------------------------------===//
Chris Lattner59a25942008-03-31 00:36:02 +00004276// RecordDecl Implementation
4277//===----------------------------------------------------------------------===//
Chris Lattner41943152007-01-25 04:52:46 +00004278
Richard Smith053f6c62014-05-16 23:01:30 +00004279RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
4280 DeclContext *DC, SourceLocation StartLoc,
4281 SourceLocation IdLoc, IdentifierInfo *Id,
4282 RecordDecl *PrevDecl)
Erich Keanef92f31c2018-08-01 20:48:16 +00004283 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
4284 assert(classof(static_cast<Decl *>(this)) && "Invalid Kind!");
4285 setHasFlexibleArrayMember(false);
4286 setAnonymousStructOrUnion(false);
4287 setHasObjectMember(false);
4288 setHasVolatileMember(false);
4289 setHasLoadedFieldsFromExternalStorage(false);
4290 setNonTrivialToPrimitiveDefaultInitialize(false);
4291 setNonTrivialToPrimitiveCopy(false);
4292 setNonTrivialToPrimitiveDestroy(false);
Akira Hatanaka09051062019-09-07 00:34:43 +00004293 setHasNonTrivialToPrimitiveDefaultInitializeCUnion(false);
4294 setHasNonTrivialToPrimitiveDestructCUnion(false);
4295 setHasNonTrivialToPrimitiveCopyCUnion(false);
Erich Keanef92f31c2018-08-01 20:48:16 +00004296 setParamDestroyedInCallee(false);
4297 setArgPassingRestrictions(APK_CanPassInRegs);
Ted Kremenek52baf502008-09-02 21:12:32 +00004298}
4299
Jay Foad39c79802011-01-12 09:06:06 +00004300RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004301 SourceLocation StartLoc, SourceLocation IdLoc,
4302 IdentifierInfo *Id, RecordDecl* PrevDecl) {
Richard Smith053f6c62014-05-16 23:01:30 +00004303 RecordDecl *R = new (C, DC) RecordDecl(Record, TK, C, DC,
4304 StartLoc, IdLoc, Id, PrevDecl);
Erich Keanef92f31c2018-08-01 20:48:16 +00004305 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004306
Ted Kremenek21475702008-09-05 17:16:31 +00004307 C.getTypeDeclType(R, PrevDecl);
4308 return R;
Ted Kremenek52baf502008-09-02 21:12:32 +00004309}
4310
Douglas Gregor72172e92012-01-05 21:55:30 +00004311RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004312 RecordDecl *R =
4313 new (C, ID) RecordDecl(Record, TTK_Struct, C, nullptr, SourceLocation(),
4314 SourceLocation(), nullptr, nullptr);
Erich Keanef92f31c2018-08-01 20:48:16 +00004315 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004316 return R;
Argyrios Kyrtzidis39f0e302010-07-02 11:54:55 +00004317}
4318
Douglas Gregordfcad112009-03-25 15:59:44 +00004319bool RecordDecl::isInjectedClassName() const {
Mike Stump11289f42009-09-09 15:08:12 +00004320 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregordfcad112009-03-25 15:59:44 +00004321 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
4322}
4323
Alexey Bataev39c81e22014-08-28 04:28:19 +00004324bool RecordDecl::isLambda() const {
4325 if (auto RD = dyn_cast<CXXRecordDecl>(this))
4326 return RD->isLambda();
4327 return false;
4328}
4329
Alexey Bataev330de032014-10-29 12:21:55 +00004330bool RecordDecl::isCapturedRecord() const {
4331 return hasAttr<CapturedRecordAttr>();
4332}
4333
4334void RecordDecl::setCapturedRecord() {
4335 addAttr(CapturedRecordAttr::CreateImplicit(getASTContext()));
4336}
4337
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004338RecordDecl::field_iterator RecordDecl::field_begin() const {
Erich Keanef92f31c2018-08-01 20:48:16 +00004339 if (hasExternalLexicalStorage() && !hasLoadedFieldsFromExternalStorage())
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004340 LoadFieldsFromExternalStorage();
4341
4342 return field_iterator(decl_iterator(FirstDecl));
4343}
4344
Douglas Gregorb11aad82011-02-19 18:51:44 +00004345/// completeDefinition - Notes that the definition of this type is now
4346/// complete.
4347void RecordDecl::completeDefinition() {
John McCallf937c022011-10-07 06:10:15 +00004348 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorb11aad82011-02-19 18:51:44 +00004349 TagDecl::completeDefinition();
4350}
4351
Eli Friedman9ee2d0472012-10-12 23:29:20 +00004352/// isMsStruct - Get whether or not this record uses ms_struct layout.
4353/// This which can be turned on with an attribute, pragma, or the
4354/// -mms-bitfields command-line option.
4355bool RecordDecl::isMsStruct(const ASTContext &C) const {
David Majnemer8ab003a2015-02-02 19:30:52 +00004356 return hasAttr<MSStructAttr>() || C.getLangOpts().MSBitfields == 1;
Eli Friedman9ee2d0472012-10-12 23:29:20 +00004357}
4358
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004359void RecordDecl::LoadFieldsFromExternalStorage() const {
4360 ExternalASTSource *Source = getASTContext().getExternalSource();
4361 assert(hasExternalLexicalStorage() && Source && "No external storage?");
4362
4363 // Notify that we have a RecordDecl doing some initialization.
4364 ExternalASTSource::Deserializing TheFields(Source);
4365
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004366 SmallVector<Decl*, 64> Decls;
Erich Keanef92f31c2018-08-01 20:48:16 +00004367 setHasLoadedFieldsFromExternalStorage(true);
Richard Smith3cb15722015-08-05 22:41:45 +00004368 Source->FindExternalLexicalDecls(this, [](Decl::Kind K) {
4369 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
4370 }, Decls);
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004371
4372#ifndef NDEBUG
4373 // Check that all decls we got were FieldDecls.
4374 for (unsigned i=0, e=Decls.size(); i != e; ++i)
Argyrios Kyrtzidisf89a9272012-09-10 22:04:22 +00004375 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004376#endif
4377
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004378 if (Decls.empty())
4379 return;
4380
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00004381 std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
Argyrios Kyrtzidis094da732011-10-07 21:55:43 +00004382 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004383}
4384
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004385bool RecordDecl::mayInsertExtraPadding(bool EmitRemark) const {
4386 ASTContext &Context = getASTContext();
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004387 const SanitizerMask EnabledAsanMask = Context.getLangOpts().Sanitize.Mask &
4388 (SanitizerKind::Address | SanitizerKind::KernelAddress);
4389 if (!EnabledAsanMask || !Context.getLangOpts().SanitizeAddressFieldPadding)
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004390 return false;
Alexey Samsonov33e00e22014-10-16 23:50:26 +00004391 const auto &Blacklist = Context.getSanitizerBlacklist();
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004392 const auto *CXXRD = dyn_cast<CXXRecordDecl>(this);
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004393 // We may be able to relax some of these requirements.
4394 int ReasonToReject = -1;
4395 if (!CXXRD || CXXRD->isExternCContext())
4396 ReasonToReject = 0; // is not C++.
4397 else if (CXXRD->hasAttr<PackedAttr>())
4398 ReasonToReject = 1; // is packed.
4399 else if (CXXRD->isUnion())
4400 ReasonToReject = 2; // is a union.
4401 else if (CXXRD->isTriviallyCopyable())
4402 ReasonToReject = 3; // is trivially copyable.
4403 else if (CXXRD->hasTrivialDestructor())
4404 ReasonToReject = 4; // has trivial destructor.
4405 else if (CXXRD->isStandardLayout())
4406 ReasonToReject = 5; // is standard layout.
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004407 else if (Blacklist.isBlacklistedLocation(EnabledAsanMask, getLocation(),
4408 "field-padding"))
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004409 ReasonToReject = 6; // is in a blacklisted file.
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004410 else if (Blacklist.isBlacklistedType(EnabledAsanMask,
4411 getQualifiedNameAsString(),
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004412 "field-padding"))
4413 ReasonToReject = 7; // is blacklisted.
4414
4415 if (EmitRemark) {
4416 if (ReasonToReject >= 0)
4417 Context.getDiagnostics().Report(
4418 getLocation(),
4419 diag::remark_sanitize_address_insert_extra_padding_rejected)
4420 << getQualifiedNameAsString() << ReasonToReject;
4421 else
4422 Context.getDiagnostics().Report(
4423 getLocation(),
4424 diag::remark_sanitize_address_insert_extra_padding_accepted)
4425 << getQualifiedNameAsString();
4426 }
4427 return ReasonToReject < 0;
4428}
4429
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004430const FieldDecl *RecordDecl::findFirstNamedDataMember() const {
4431 for (const auto *I : fields()) {
4432 if (I->getIdentifier())
4433 return I;
4434
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004435 if (const auto *RT = I->getType()->getAs<RecordType>())
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004436 if (const FieldDecl *NamedDataMember =
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004437 RT->getDecl()->findFirstNamedDataMember())
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004438 return NamedDataMember;
4439 }
4440
4441 // We didn't find a named data member.
4442 return nullptr;
4443}
4444
Steve Naroff415d3d52008-10-08 17:01:13 +00004445//===----------------------------------------------------------------------===//
4446// BlockDecl Implementation
4447//===----------------------------------------------------------------------===//
4448
Erich Keanec9d29902018-08-01 21:16:54 +00004449BlockDecl::BlockDecl(DeclContext *DC, SourceLocation CaretLoc)
4450 : Decl(Block, DC, CaretLoc), DeclContext(Block) {
4451 setIsVariadic(false);
4452 setCapturesCXXThis(false);
4453 setBlockMissingReturnType(true);
4454 setIsConversionFromLambda(false);
4455 setDoesNotEscape(false);
Akira Hatanakac5792aa2019-02-27 18:17:16 +00004456 setCanAvoidCopyToHeap(false);
Erich Keanec9d29902018-08-01 21:16:54 +00004457}
4458
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004459void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
Craig Topper36250ad2014-05-12 05:36:57 +00004460 assert(!ParamInfo && "Already has param info!");
Mike Stump11289f42009-09-09 15:08:12 +00004461
Steve Naroffc4b30e52009-03-13 16:56:44 +00004462 // Zero params -> null pointer.
David Blaikie9c70e042011-09-21 18:16:56 +00004463 if (!NewParamInfo.empty()) {
4464 NumParams = NewParamInfo.size();
4465 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
4466 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffc4b30e52009-03-13 16:56:44 +00004467 }
4468}
4469
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004470void BlockDecl::setCaptures(ASTContext &Context, ArrayRef<Capture> Captures,
4471 bool CapturesCXXThis) {
Erich Keanec9d29902018-08-01 21:16:54 +00004472 this->setCapturesCXXThis(CapturesCXXThis);
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004473 this->NumCaptures = Captures.size();
John McCallc63de662011-02-02 13:00:07 +00004474
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004475 if (Captures.empty()) {
4476 this->Captures = nullptr;
John McCallc63de662011-02-02 13:00:07 +00004477 return;
4478 }
4479
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004480 this->Captures = Captures.copy(Context).data();
Steve Naroffc4b30e52009-03-13 16:56:44 +00004481}
Sebastian Redl833ef452010-01-26 22:01:41 +00004482
John McCallce45f882011-06-15 22:51:16 +00004483bool BlockDecl::capturesVariable(const VarDecl *variable) const {
Aaron Ballman9371dd22014-03-14 18:34:04 +00004484 for (const auto &I : captures())
John McCallce45f882011-06-15 22:51:16 +00004485 // Only auto vars can be captured, so no redeclaration worries.
Aaron Ballman9371dd22014-03-14 18:34:04 +00004486 if (I.getVariable() == variable)
John McCallce45f882011-06-15 22:51:16 +00004487 return true;
4488
4489 return false;
4490}
4491
Douglas Gregor70226da2010-12-21 16:27:07 +00004492SourceRange BlockDecl::getSourceRange() const {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004493 return SourceRange(getLocation(), Body ? Body->getEndLoc() : getLocation());
Douglas Gregor70226da2010-12-21 16:27:07 +00004494}
Sebastian Redl833ef452010-01-26 22:01:41 +00004495
4496//===----------------------------------------------------------------------===//
4497// Other Decl Allocation/Deallocation Method Implementations
4498//===----------------------------------------------------------------------===//
4499
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004500void TranslationUnitDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004501
Sebastian Redl833ef452010-01-26 22:01:41 +00004502TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
Craig Topper36250ad2014-05-12 05:36:57 +00004503 return new (C, (DeclContext *)nullptr) TranslationUnitDecl(C);
Sebastian Redl833ef452010-01-26 22:01:41 +00004504}
4505
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004506void PragmaCommentDecl::anchor() {}
Nico Weber66220292016-03-02 17:28:48 +00004507
4508PragmaCommentDecl *PragmaCommentDecl::Create(const ASTContext &C,
4509 TranslationUnitDecl *DC,
4510 SourceLocation CommentLoc,
4511 PragmaMSCommentKind CommentKind,
4512 StringRef Arg) {
4513 PragmaCommentDecl *PCD =
4514 new (C, DC, additionalSizeToAlloc<char>(Arg.size() + 1))
4515 PragmaCommentDecl(DC, CommentLoc, CommentKind);
4516 memcpy(PCD->getTrailingObjects<char>(), Arg.data(), Arg.size());
4517 PCD->getTrailingObjects<char>()[Arg.size()] = '\0';
4518 return PCD;
4519}
4520
4521PragmaCommentDecl *PragmaCommentDecl::CreateDeserialized(ASTContext &C,
4522 unsigned ID,
4523 unsigned ArgSize) {
4524 return new (C, ID, additionalSizeToAlloc<char>(ArgSize + 1))
4525 PragmaCommentDecl(nullptr, SourceLocation(), PCK_Unknown);
4526}
4527
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004528void PragmaDetectMismatchDecl::anchor() {}
Nico Webercbbaeb12016-03-02 19:28:54 +00004529
4530PragmaDetectMismatchDecl *
4531PragmaDetectMismatchDecl::Create(const ASTContext &C, TranslationUnitDecl *DC,
4532 SourceLocation Loc, StringRef Name,
4533 StringRef Value) {
4534 size_t ValueStart = Name.size() + 1;
4535 PragmaDetectMismatchDecl *PDMD =
4536 new (C, DC, additionalSizeToAlloc<char>(ValueStart + Value.size() + 1))
4537 PragmaDetectMismatchDecl(DC, Loc, ValueStart);
4538 memcpy(PDMD->getTrailingObjects<char>(), Name.data(), Name.size());
4539 PDMD->getTrailingObjects<char>()[Name.size()] = '\0';
4540 memcpy(PDMD->getTrailingObjects<char>() + ValueStart, Value.data(),
4541 Value.size());
4542 PDMD->getTrailingObjects<char>()[ValueStart + Value.size()] = '\0';
4543 return PDMD;
4544}
4545
4546PragmaDetectMismatchDecl *
4547PragmaDetectMismatchDecl::CreateDeserialized(ASTContext &C, unsigned ID,
4548 unsigned NameValueSize) {
4549 return new (C, ID, additionalSizeToAlloc<char>(NameValueSize + 1))
4550 PragmaDetectMismatchDecl(nullptr, SourceLocation(), 0);
4551}
Nico Weber66220292016-03-02 17:28:48 +00004552
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004553void ExternCContextDecl::anchor() {}
Richard Smithf19e1272015-03-07 00:04:49 +00004554
4555ExternCContextDecl *ExternCContextDecl::Create(const ASTContext &C,
4556 TranslationUnitDecl *DC) {
4557 return new (C, DC) ExternCContextDecl(DC);
4558}
4559
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004560void LabelDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004561
Chris Lattnerc8e630e2011-02-17 07:39:24 +00004562LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara1c3af962011-03-05 18:21:20 +00004563 SourceLocation IdentL, IdentifierInfo *II) {
Craig Topper36250ad2014-05-12 05:36:57 +00004564 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
Abramo Bagnara1c3af962011-03-05 18:21:20 +00004565}
4566
4567LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
4568 SourceLocation IdentL, IdentifierInfo *II,
4569 SourceLocation GnuLabelL) {
4570 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
Craig Topper36250ad2014-05-12 05:36:57 +00004571 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, GnuLabelL);
Chris Lattnerc8e630e2011-02-17 07:39:24 +00004572}
4573
Douglas Gregor72172e92012-01-05 21:55:30 +00004574LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004575 return new (C, ID) LabelDecl(nullptr, SourceLocation(), nullptr, nullptr,
4576 SourceLocation());
Douglas Gregor417e87c2010-10-27 19:49:05 +00004577}
4578
Ehsan Akhgari31097582014-09-22 02:21:54 +00004579void LabelDecl::setMSAsmLabel(StringRef Name) {
4580 char *Buffer = new (getASTContext(), 1) char[Name.size() + 1];
4581 memcpy(Buffer, Name.data(), Name.size());
4582 Buffer[Name.size()] = '\0';
4583 MSAsmName = Buffer;
4584}
4585
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004586void ValueDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004587
Benjamin Kramerea70eb32012-12-01 15:09:41 +00004588bool ValueDecl::isWeak() const {
Aaron Ballmanb97112e2014-03-08 22:19:01 +00004589 for (const auto *I : attrs())
4590 if (isa<WeakAttr>(I) || isa<WeakRefAttr>(I))
Benjamin Kramerea70eb32012-12-01 15:09:41 +00004591 return true;
4592
4593 return isWeakImported();
4594}
4595
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004596void ImplicitParamDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004597
Sebastian Redl833ef452010-01-26 22:01:41 +00004598ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00004599 SourceLocation IdLoc,
Alexey Bataev56223232017-06-09 13:40:18 +00004600 IdentifierInfo *Id, QualType Type,
4601 ImplicitParamKind ParamKind) {
4602 return new (C, DC) ImplicitParamDecl(C, DC, IdLoc, Id, Type, ParamKind);
4603}
4604
4605ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, QualType Type,
4606 ImplicitParamKind ParamKind) {
4607 return new (C, nullptr) ImplicitParamDecl(C, Type, ParamKind);
Sebastian Redl833ef452010-01-26 22:01:41 +00004608}
4609
Richard Smithf7981722013-11-22 09:01:48 +00004610ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor72172e92012-01-05 21:55:30 +00004611 unsigned ID) {
Alexey Bataev56223232017-06-09 13:40:18 +00004612 return new (C, ID) ImplicitParamDecl(C, QualType(), ImplicitParamKind::Other);
Douglas Gregor72172e92012-01-05 21:55:30 +00004613}
4614
Sebastian Redl833ef452010-01-26 22:01:41 +00004615FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00004616 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004617 const DeclarationNameInfo &NameInfo,
4618 QualType T, TypeSourceInfo *TInfo,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004619 StorageClass SC, bool isInlineSpecified,
Richard Smitha77a0a62011-08-15 21:04:07 +00004620 bool hasWrittenPrototype,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004621 ConstexprSpecKind ConstexprKind) {
Richard Smithf7981722013-11-22 09:01:48 +00004622 FunctionDecl *New =
Richard Smith053f6c62014-05-16 23:01:30 +00004623 new (C, DC) FunctionDecl(Function, C, DC, StartLoc, NameInfo, T, TInfo,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004624 SC, isInlineSpecified, ConstexprKind);
Erich Keane9c665062018-08-01 21:02:40 +00004625 New->setHasWrittenPrototype(hasWrittenPrototype);
Sebastian Redl833ef452010-01-26 22:01:41 +00004626 return New;
4627}
4628
Douglas Gregor72172e92012-01-05 21:55:30 +00004629FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004630 return new (C, ID) FunctionDecl(Function, C, nullptr, SourceLocation(),
Craig Topper36250ad2014-05-12 05:36:57 +00004631 DeclarationNameInfo(), QualType(), nullptr,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004632 SC_None, false, CSK_unspecified);
Douglas Gregor72172e92012-01-05 21:55:30 +00004633}
4634
Sebastian Redl833ef452010-01-26 22:01:41 +00004635BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Richard Smithf7981722013-11-22 09:01:48 +00004636 return new (C, DC) BlockDecl(DC, L);
Sebastian Redl833ef452010-01-26 22:01:41 +00004637}
4638
Douglas Gregor72172e92012-01-05 21:55:30 +00004639BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004640 return new (C, ID) BlockDecl(nullptr, SourceLocation());
John McCall5e77d762013-04-16 07:28:30 +00004641}
4642
Chandler Carruth21c90602015-12-30 03:24:14 +00004643CapturedDecl::CapturedDecl(DeclContext *DC, unsigned NumParams)
4644 : Decl(Captured, DC, SourceLocation()), DeclContext(Captured),
4645 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {}
4646
Ben Langmuir37943a72013-05-03 19:00:33 +00004647CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
4648 unsigned NumParams) {
James Y Knight7a22b242015-08-06 20:26:32 +00004649 return new (C, DC, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
Richard Smithf7981722013-11-22 09:01:48 +00004650 CapturedDecl(DC, NumParams);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00004651}
4652
Ben Langmuirce914fc2013-05-03 19:20:19 +00004653CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
Richard Smithf7981722013-11-22 09:01:48 +00004654 unsigned NumParams) {
James Y Knight7a22b242015-08-06 20:26:32 +00004655 return new (C, ID, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
Craig Topper36250ad2014-05-12 05:36:57 +00004656 CapturedDecl(nullptr, NumParams);
Ben Langmuirce914fc2013-05-03 19:20:19 +00004657}
4658
Chandler Carruth21c90602015-12-30 03:24:14 +00004659Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); }
4660void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); }
4661
4662bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); }
4663void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); }
4664
Sebastian Redl833ef452010-01-26 22:01:41 +00004665EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
4666 SourceLocation L,
4667 IdentifierInfo *Id, QualType T,
4668 Expr *E, const llvm::APSInt &V) {
Richard Smithf7981722013-11-22 09:01:48 +00004669 return new (C, CD) EnumConstantDecl(CD, L, Id, T, E, V);
Sebastian Redl833ef452010-01-26 22:01:41 +00004670}
4671
Douglas Gregor72172e92012-01-05 21:55:30 +00004672EnumConstantDecl *
4673EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004674 return new (C, ID) EnumConstantDecl(nullptr, SourceLocation(), nullptr,
4675 QualType(), nullptr, llvm::APSInt());
Douglas Gregor72172e92012-01-05 21:55:30 +00004676}
4677
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004678void IndirectFieldDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004679
Richard Smith9f951822016-01-06 22:49:11 +00004680IndirectFieldDecl::IndirectFieldDecl(ASTContext &C, DeclContext *DC,
4681 SourceLocation L, DeclarationName N,
David Majnemer59f77922016-06-24 04:05:48 +00004682 QualType T,
4683 MutableArrayRef<NamedDecl *> CH)
4684 : ValueDecl(IndirectField, DC, L, N, T), Chaining(CH.data()),
4685 ChainingSize(CH.size()) {
Richard Smith9f951822016-01-06 22:49:11 +00004686 // In C++, indirect field declarations conflict with tag declarations in the
4687 // same scope, so add them to IDNS_Tag so that tag redeclaration finds them.
4688 if (C.getLangOpts().CPlusPlus)
4689 IdentifierNamespace |= IDNS_Tag;
4690}
4691
Benjamin Kramer39593702010-11-21 14:11:41 +00004692IndirectFieldDecl *
4693IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
David Majnemer59f77922016-06-24 04:05:48 +00004694 IdentifierInfo *Id, QualType T,
4695 llvm::MutableArrayRef<NamedDecl *> CH) {
4696 return new (C, DC) IndirectFieldDecl(C, DC, L, Id, T, CH);
Francois Pichet783dd6e2010-11-21 06:08:52 +00004697}
4698
Douglas Gregor72172e92012-01-05 21:55:30 +00004699IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
4700 unsigned ID) {
Richard Smith9f951822016-01-06 22:49:11 +00004701 return new (C, ID) IndirectFieldDecl(C, nullptr, SourceLocation(),
David Majnemer59f77922016-06-24 04:05:48 +00004702 DeclarationName(), QualType(), None);
Douglas Gregor72172e92012-01-05 21:55:30 +00004703}
4704
Douglas Gregorbe996932010-09-01 20:41:53 +00004705SourceRange EnumConstantDecl::getSourceRange() const {
4706 SourceLocation End = getLocation();
4707 if (Init)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004708 End = Init->getEndLoc();
Douglas Gregorbe996932010-09-01 20:41:53 +00004709 return SourceRange(getLocation(), End);
4710}
4711
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004712void TypeDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004713
Sebastian Redl833ef452010-01-26 22:01:41 +00004714TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnarab3185b02011-03-06 15:48:19 +00004715 SourceLocation StartLoc, SourceLocation IdLoc,
4716 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
Richard Smith053f6c62014-05-16 23:01:30 +00004717 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl833ef452010-01-26 22:01:41 +00004718}
4719
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004720void TypedefNameDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004721
Richard Smith42413142015-05-15 20:05:43 +00004722TagDecl *TypedefNameDecl::getAnonDeclWithTypedefName(bool AnyRedecl) const {
4723 if (auto *TT = getTypeSourceInfo()->getType()->getAs<TagType>()) {
4724 auto *OwningTypedef = TT->getDecl()->getTypedefNameForAnonDecl();
4725 auto *ThisTypedef = this;
4726 if (AnyRedecl && OwningTypedef) {
4727 OwningTypedef = OwningTypedef->getCanonicalDecl();
4728 ThisTypedef = ThisTypedef->getCanonicalDecl();
4729 }
4730 if (OwningTypedef == ThisTypedef)
Richard Smitha5230222015-03-27 01:37:43 +00004731 return TT->getDecl();
Richard Smith42413142015-05-15 20:05:43 +00004732 }
Richard Smitha5230222015-03-27 01:37:43 +00004733
4734 return nullptr;
4735}
4736
Argyrios Kyrtzidis3b25c912017-03-21 16:56:02 +00004737bool TypedefNameDecl::isTransparentTagSlow() const {
4738 auto determineIsTransparent = [&]() {
4739 if (auto *TT = getUnderlyingType()->getAs<TagType>()) {
4740 if (auto *TD = TT->getDecl()) {
4741 if (TD->getName() != getName())
4742 return false;
4743 SourceLocation TTLoc = getLocation();
4744 SourceLocation TDLoc = TD->getLocation();
4745 if (!TTLoc.isMacroID() || !TDLoc.isMacroID())
4746 return false;
4747 SourceManager &SM = getASTContext().getSourceManager();
4748 return SM.getSpellingLoc(TTLoc) == SM.getSpellingLoc(TDLoc);
4749 }
4750 }
4751 return false;
4752 };
4753
4754 bool isTransparent = determineIsTransparent();
Benjamin Kramerdfb730a2018-01-26 14:14:11 +00004755 MaybeModedTInfo.setInt((isTransparent << 1) | 1);
Argyrios Kyrtzidis3b25c912017-03-21 16:56:02 +00004756 return isTransparent;
4757}
4758
Douglas Gregor72172e92012-01-05 21:55:30 +00004759TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004760 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(),
Craig Topper36250ad2014-05-12 05:36:57 +00004761 nullptr, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00004762}
4763
Richard Smithdda56e42011-04-15 14:24:37 +00004764TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
4765 SourceLocation StartLoc,
4766 SourceLocation IdLoc, IdentifierInfo *Id,
4767 TypeSourceInfo *TInfo) {
Richard Smith053f6c62014-05-16 23:01:30 +00004768 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Richard Smithdda56e42011-04-15 14:24:37 +00004769}
4770
Douglas Gregor72172e92012-01-05 21:55:30 +00004771TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004772 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(),
4773 SourceLocation(), nullptr, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00004774}
4775
Abramo Bagnaraea947882011-03-08 16:41:52 +00004776SourceRange TypedefDecl::getSourceRange() const {
4777 SourceLocation RangeEnd = getLocation();
4778 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
4779 if (typeIsPostfix(TInfo->getType()))
4780 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
4781 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004782 return SourceRange(getBeginLoc(), RangeEnd);
Abramo Bagnaraea947882011-03-08 16:41:52 +00004783}
4784
Richard Smithdda56e42011-04-15 14:24:37 +00004785SourceRange TypeAliasDecl::getSourceRange() const {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004786 SourceLocation RangeEnd = getBeginLoc();
Richard Smithdda56e42011-04-15 14:24:37 +00004787 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
4788 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004789 return SourceRange(getBeginLoc(), RangeEnd);
Richard Smithdda56e42011-04-15 14:24:37 +00004790}
4791
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004792void FileScopeAsmDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004793
Sebastian Redl833ef452010-01-26 22:01:41 +00004794FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara348823a2011-03-03 14:20:18 +00004795 StringLiteral *Str,
4796 SourceLocation AsmLoc,
4797 SourceLocation RParenLoc) {
Richard Smithf7981722013-11-22 09:01:48 +00004798 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl833ef452010-01-26 22:01:41 +00004799}
Douglas Gregorba345522011-12-02 23:23:56 +00004800
Richard Smithf7981722013-11-22 09:01:48 +00004801FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor72172e92012-01-05 21:55:30 +00004802 unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004803 return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(),
4804 SourceLocation());
Douglas Gregor72172e92012-01-05 21:55:30 +00004805}
4806
Michael Han84324352013-02-22 17:15:32 +00004807void EmptyDecl::anchor() {}
4808
4809EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Richard Smithf7981722013-11-22 09:01:48 +00004810 return new (C, DC) EmptyDecl(DC, L);
Michael Han84324352013-02-22 17:15:32 +00004811}
4812
4813EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004814 return new (C, ID) EmptyDecl(nullptr, SourceLocation());
Michael Han84324352013-02-22 17:15:32 +00004815}
4816
Douglas Gregorba345522011-12-02 23:23:56 +00004817//===----------------------------------------------------------------------===//
4818// ImportDecl Implementation
4819//===----------------------------------------------------------------------===//
4820
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004821/// Retrieve the number of module identifiers needed to name the given
Douglas Gregorba345522011-12-02 23:23:56 +00004822/// module.
4823static unsigned getNumModuleIdentifiers(Module *Mod) {
4824 unsigned Result = 1;
4825 while (Mod->Parent) {
4826 Mod = Mod->Parent;
4827 ++Result;
4828 }
4829 return Result;
4830}
4831
Fangrui Song6907ce22018-07-30 19:24:48 +00004832ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregorba345522011-12-02 23:23:56 +00004833 Module *Imported,
4834 ArrayRef<SourceLocation> IdentifierLocs)
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004835 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true) {
Douglas Gregorba345522011-12-02 23:23:56 +00004836 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004837 auto *StoredLocs = getTrailingObjects<SourceLocation>();
James Y Knight7a22b242015-08-06 20:26:32 +00004838 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(),
4839 StoredLocs);
Douglas Gregorba345522011-12-02 23:23:56 +00004840}
4841
Fangrui Song6907ce22018-07-30 19:24:48 +00004842ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregorba345522011-12-02 23:23:56 +00004843 Module *Imported, SourceLocation EndLoc)
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004844 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false) {
James Y Knight7a22b242015-08-06 20:26:32 +00004845 *getTrailingObjects<SourceLocation>() = EndLoc;
Douglas Gregorba345522011-12-02 23:23:56 +00004846}
4847
Richard Smithf7981722013-11-22 09:01:48 +00004848ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor22d09742012-01-03 18:04:46 +00004849 SourceLocation StartLoc, Module *Imported,
Douglas Gregorba345522011-12-02 23:23:56 +00004850 ArrayRef<SourceLocation> IdentifierLocs) {
James Y Knight7a22b242015-08-06 20:26:32 +00004851 return new (C, DC,
4852 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size()))
Richard Smithf7981722013-11-22 09:01:48 +00004853 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregorba345522011-12-02 23:23:56 +00004854}
4855
Richard Smithf7981722013-11-22 09:01:48 +00004856ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor22d09742012-01-03 18:04:46 +00004857 SourceLocation StartLoc,
Richard Smithf7981722013-11-22 09:01:48 +00004858 Module *Imported,
Douglas Gregorba345522011-12-02 23:23:56 +00004859 SourceLocation EndLoc) {
James Y Knight7a22b242015-08-06 20:26:32 +00004860 ImportDecl *Import = new (C, DC, additionalSizeToAlloc<SourceLocation>(1))
4861 ImportDecl(DC, StartLoc, Imported, EndLoc);
Douglas Gregorba345522011-12-02 23:23:56 +00004862 Import->setImplicit();
4863 return Import;
4864}
4865
Douglas Gregor72172e92012-01-05 21:55:30 +00004866ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
4867 unsigned NumLocations) {
James Y Knight7a22b242015-08-06 20:26:32 +00004868 return new (C, ID, additionalSizeToAlloc<SourceLocation>(NumLocations))
Richard Smithf7981722013-11-22 09:01:48 +00004869 ImportDecl(EmptyShell());
Douglas Gregorba345522011-12-02 23:23:56 +00004870}
4871
4872ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
4873 if (!ImportedAndComplete.getInt())
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00004874 return None;
Douglas Gregorba345522011-12-02 23:23:56 +00004875
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004876 const auto *StoredLocs = getTrailingObjects<SourceLocation>();
Craig Topper5fc8fc22014-08-27 06:28:36 +00004877 return llvm::makeArrayRef(StoredLocs,
4878 getNumModuleIdentifiers(getImportedModule()));
Douglas Gregorba345522011-12-02 23:23:56 +00004879}
4880
4881SourceRange ImportDecl::getSourceRange() const {
4882 if (!ImportedAndComplete.getInt())
James Y Knight7a22b242015-08-06 20:26:32 +00004883 return SourceRange(getLocation(), *getTrailingObjects<SourceLocation>());
4884
Douglas Gregorba345522011-12-02 23:23:56 +00004885 return SourceRange(getLocation(), getIdentifierLocs().back());
4886}
Richard Smith8df390f2016-09-08 23:14:54 +00004887
4888//===----------------------------------------------------------------------===//
4889// ExportDecl Implementation
4890//===----------------------------------------------------------------------===//
4891
4892void ExportDecl::anchor() {}
4893
4894ExportDecl *ExportDecl::Create(ASTContext &C, DeclContext *DC,
4895 SourceLocation ExportLoc) {
4896 return new (C, DC) ExportDecl(DC, ExportLoc);
4897}
4898
4899ExportDecl *ExportDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
4900 return new (C, ID) ExportDecl(nullptr, SourceLocation());
4901}