blob: aeb7963f9004542e575aaadc4ae9176fc66e033e [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()) {
1388 if (!Record->getLambdaManglingNumber()) {
1389 // This lambda has no mangling number, so it's internal.
Richard Smith1283e982017-07-07 20:04:28 +00001390 return getInternalLinkageFor(D);
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001391 }
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001392
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001393 // This lambda has its linkage/visibility determined:
Fangrui Song6907ce22018-07-30 19:24:48 +00001394 // - either by the outermost lambda if that lambda has no mangling
1395 // number.
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001396 // - or by the parent of the outer most lambda
Fangrui Song6907ce22018-07-30 19:24:48 +00001397 // This prevents infinite recursion in settings such as nested lambdas
1398 // used in NSDMI's, for e.g.
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001399 // struct L {
1400 // int t{};
Fangrui Song6907ce22018-07-30 19:24:48 +00001401 // int t2 = ([](int a) { return [](int b) { return b; };})(t)(t);
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001402 // };
Fangrui Song6907ce22018-07-30 19:24:48 +00001403 const CXXRecordDecl *OuterMostLambda =
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001404 getOutermostEnclosingLambda(Record);
1405 if (!OuterMostLambda->getLambdaManglingNumber())
Richard Smith1283e982017-07-07 20:04:28 +00001406 return getInternalLinkageFor(D);
Fangrui Song6907ce22018-07-30 19:24:48 +00001407
Faisal Vali49b4c1f2013-10-01 02:51:53 +00001408 return getLVForClosure(
1409 OuterMostLambda->getDeclContext()->getRedeclContext(),
1410 OuterMostLambda->getLambdaContextDecl(), computation);
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001411 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001412
Douglas Gregor6f88e5e2012-02-21 04:17:39 +00001413 break;
1414 }
Ted Kremenek926d8602010-04-20 23:15:35 +00001415 }
1416
Douglas Gregorf73b2822009-11-25 22:24:25 +00001417 // Handle linkage for namespace-scope names.
John McCall033caa52010-10-29 00:29:13 +00001418 if (D->getDeclContext()->getRedeclContext()->isFileContext())
Richard Smithc95d2c52017-09-22 04:25:05 +00001419 return getLVForNamespaceScopeDecl(D, computation, IgnoreVarTypeLinkage);
Fangrui Song6907ce22018-07-30 19:24:48 +00001420
Douglas Gregorf73b2822009-11-25 22:24:25 +00001421 // C++ [basic.link]p5:
1422 // In addition, a member function, static data member, a named
1423 // class or enumeration of class scope, or an unnamed class or
1424 // enumeration defined in a class-scope typedef declaration such
1425 // that the class or enumeration has the typedef name for linkage
1426 // purposes (7.1.3), has external linkage if the name of the class
1427 // has external linkage.
John McCall033caa52010-10-29 00:29:13 +00001428 if (D->getDeclContext()->isRecord())
Richard Smithc95d2c52017-09-22 04:25:05 +00001429 return getLVForClassMember(D, computation, IgnoreVarTypeLinkage);
Douglas Gregorf73b2822009-11-25 22:24:25 +00001430
1431 // C++ [basic.link]p6:
1432 // The name of a function declared in block scope and the name of
1433 // an object declared by a block scope extern declaration have
1434 // linkage. If there is a visible declaration of an entity with
1435 // linkage having the same name and type, ignoring entities
1436 // declared outside the innermost enclosing namespace scope, the
1437 // block scope declaration declares that same entity and receives
1438 // the linkage of the previous declaration. If there is more than
1439 // one such matching entity, the program is ill-formed. Otherwise,
1440 // if no matching entity is found, the block scope entity receives
1441 // external linkage.
John McCalldf25c432013-02-16 00:17:33 +00001442 if (D->getDeclContext()->isFunctionOrMethod())
1443 return getLVForLocalDecl(D, computation);
Douglas Gregorf73b2822009-11-25 22:24:25 +00001444
1445 // C++ [basic.link]p6:
1446 // Names not covered by these rules have no linkage.
John McCallc273f242010-10-30 11:50:40 +00001447 return LinkageInfo::none();
John McCall457a04e2010-10-22 21:05:15 +00001448}
Douglas Gregorf73b2822009-11-25 22:24:25 +00001449
George Burgess IV99db3ea2017-08-09 04:02:49 +00001450/// getLVForDecl - Get the linkage and visibility for the given declaration.
1451LinkageInfo LinkageComputer::getLVForDecl(const NamedDecl *D,
1452 LVComputationKind computation) {
1453 // Internal_linkage attribute overrides other considerations.
1454 if (D->hasAttr<InternalLinkageAttr>())
1455 return getInternalLinkageFor(D);
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001456
Richard Smithfbe7b462017-09-22 02:22:32 +00001457 if (computation.IgnoreAllVisibility && D->hasCachedLinkage())
George Burgess IV99db3ea2017-08-09 04:02:49 +00001458 return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001459
George Burgess IV35cb4f82017-08-09 04:12:17 +00001460 if (llvm::Optional<LinkageInfo> LI = lookup(D, computation))
1461 return *LI;
1462
George Burgess IV99db3ea2017-08-09 04:02:49 +00001463 LinkageInfo LV = computeLVForDecl(D, computation);
1464 if (D->hasCachedLinkage())
1465 assert(D->getCachedLinkage() == LV.getLinkage());
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001466
George Burgess IV99db3ea2017-08-09 04:02:49 +00001467 D->setCachedLinkage(LV.getLinkage());
George Burgess IV35cb4f82017-08-09 04:12:17 +00001468 cache(D, computation, LV);
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001469
1470#ifndef NDEBUG
George Burgess IV99db3ea2017-08-09 04:02:49 +00001471 // In C (because of gnu inline) and in c++ with microsoft extensions an
1472 // static can follow an extern, so we can have two decls with different
1473 // linkages.
1474 const LangOptions &Opts = D->getASTContext().getLangOpts();
1475 if (!Opts.CPlusPlus || Opts.MicrosoftExt)
1476 return LV;
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001477
George Burgess IV99db3ea2017-08-09 04:02:49 +00001478 // We have just computed the linkage for this decl. By induction we know
1479 // that all other computed linkages match, check that the one we just
1480 // computed also does.
1481 NamedDecl *Old = nullptr;
1482 for (auto I : D->redecls()) {
1483 auto *T = cast<NamedDecl>(I);
1484 if (T == D)
1485 continue;
1486 if (!T->isInvalidDecl() && T->hasCachedLinkage()) {
1487 Old = T;
1488 break;
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001489 }
George Burgess IV99db3ea2017-08-09 04:02:49 +00001490 }
1491 assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001492#endif
1493
George Burgess IV99db3ea2017-08-09 04:02:49 +00001494 return LV;
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001495}
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001496
George Burgess IV99db3ea2017-08-09 04:02:49 +00001497LinkageInfo LinkageComputer::getDeclLinkageAndVisibility(const NamedDecl *D) {
Richard Smithfbe7b462017-09-22 02:22:32 +00001498 return getLVForDecl(D,
1499 LVComputationKind(usesTypeVisibility(D)
1500 ? NamedDecl::VisibilityForType
1501 : NamedDecl::VisibilityForValue));
Rafael Espindola9551d3b2013-05-28 19:43:11 +00001502}
1503
Richard Smithbecb92d2017-10-10 22:33:17 +00001504Module *Decl::getOwningModuleForLinkage(bool IgnoreLinkage) const {
Richard Smithdd8b5332017-09-04 05:37:53 +00001505 Module *M = getOwningModule();
1506 if (!M)
1507 return nullptr;
1508
1509 switch (M->Kind) {
1510 case Module::ModuleMapModule:
1511 // Module map modules have no special linkage semantics.
1512 return nullptr;
1513
1514 case Module::ModuleInterfaceUnit:
1515 return M;
1516
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001517 case Module::GlobalModuleFragment: {
Richard Smithdd8b5332017-09-04 05:37:53 +00001518 // External linkage declarations in the global module have no owning module
1519 // for linkage purposes. But internal linkage declarations in the global
1520 // module fragment of a particular module are owned by that module for
1521 // linkage purposes.
Richard Smithbecb92d2017-10-10 22:33:17 +00001522 if (IgnoreLinkage)
1523 return nullptr;
1524 bool InternalLinkage;
1525 if (auto *ND = dyn_cast<NamedDecl>(this))
1526 InternalLinkage = !ND->hasExternalFormalLinkage();
1527 else {
1528 auto *NSD = dyn_cast<NamespaceDecl>(this);
1529 InternalLinkage = (NSD && NSD->isAnonymousNamespace()) ||
1530 isInAnonymousNamespace();
1531 }
1532 return InternalLinkage ? M->Parent : nullptr;
Richard Smithdd8b5332017-09-04 05:37:53 +00001533 }
Richard Smitha5bbbfe2019-04-18 21:12:54 +00001534
1535 case Module::PrivateModuleFragment:
1536 // The private module fragment is part of its containing module for linkage
1537 // purposes.
1538 return M->Parent;
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001539 }
Richard Smithdd8b5332017-09-04 05:37:53 +00001540
1541 llvm_unreachable("unknown module kind");
1542}
1543
Richard Smith7873de02016-08-11 22:25:46 +00001544void NamedDecl::printName(raw_ostream &os) const {
1545 os << Name;
1546}
1547
Douglas Gregor2ada0482009-02-04 17:27:36 +00001548std::string NamedDecl::getQualifiedNameAsString() const {
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001549 std::string QualName;
1550 llvm::raw_string_ostream OS(QualName);
Aaron Ballman75ee4cc2014-01-03 18:42:48 +00001551 printQualifiedName(OS, getASTContext().getPrintingPolicy());
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001552 return OS.str();
1553}
1554
1555void NamedDecl::printQualifiedName(raw_ostream &OS) const {
1556 printQualifiedName(OS, getASTContext().getPrintingPolicy());
1557}
1558
1559void NamedDecl::printQualifiedName(raw_ostream &OS,
1560 const PrintingPolicy &P) const {
Douglas Gregor2ada0482009-02-04 17:27:36 +00001561 const DeclContext *Ctx = getDeclContext();
1562
David Goldman19d21852019-04-04 20:13:22 +00001563 // For ObjC methods and properties, look through categories and use the
1564 // interface as context.
Argyrios Kyrtzidisa166a2b2017-03-07 09:26:07 +00001565 if (auto *MD = dyn_cast<ObjCMethodDecl>(this))
1566 if (auto *ID = MD->getClassInterface())
1567 Ctx = ID;
David Goldman19d21852019-04-04 20:13:22 +00001568 if (auto *PD = dyn_cast<ObjCPropertyDecl>(this)) {
1569 if (auto *MD = PD->getGetterMethodDecl())
1570 if (auto *ID = MD->getClassInterface())
1571 Ctx = ID;
1572 }
Argyrios Kyrtzidisa166a2b2017-03-07 09:26:07 +00001573
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001574 if (Ctx->isFunctionOrMethod()) {
1575 printName(OS);
1576 return;
1577 }
Douglas Gregor2ada0482009-02-04 17:27:36 +00001578
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001579 using ContextsTy = SmallVector<const DeclContext *, 8>;
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001580 ContextsTy Contexts;
1581
Sam McCall34f9d3f2018-02-02 13:34:47 +00001582 // Collect named contexts.
1583 while (Ctx) {
1584 if (isa<NamedDecl>(Ctx))
1585 Contexts.push_back(Ctx);
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001586 Ctx = Ctx->getParent();
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001587 }
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001588
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001589 for (const DeclContext *DC : llvm::reverse(Contexts)) {
David Majnemerf7e36092016-06-23 00:15:04 +00001590 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
Benjamin Kramer9170e912013-02-22 15:46:01 +00001591 OS << Spec->getName();
Douglas Gregor85673582009-05-18 17:01:57 +00001592 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Serge Pavlov03e672c2017-11-28 16:14:14 +00001593 printTemplateArgumentList(OS, TemplateArgs.asArray(), P);
David Majnemerf7e36092016-06-23 00:15:04 +00001594 } else if (const auto *ND = dyn_cast<NamespaceDecl>(DC)) {
Richard Smith46dd5bb2014-05-30 22:16:51 +00001595 if (P.SuppressUnwrittenScope &&
1596 (ND->isAnonymousNamespace() || ND->isInline()))
1597 continue;
Reid Kleckner60103382015-12-16 02:04:40 +00001598 if (ND->isAnonymousNamespace()) {
1599 OS << (P.MSVCFormatting ? "`anonymous namespace\'"
1600 : "(anonymous namespace)");
1601 }
Sam Weinig07d211e2009-12-24 23:15:03 +00001602 else
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001603 OS << *ND;
David Majnemerf7e36092016-06-23 00:15:04 +00001604 } else if (const auto *RD = dyn_cast<RecordDecl>(DC)) {
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001605 if (!RD->getIdentifier())
David Blaikieabe1a392014-04-02 05:58:29 +00001606 OS << "(anonymous " << RD->getKindName() << ')';
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001607 else
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001608 OS << *RD;
David Majnemerf7e36092016-06-23 00:15:04 +00001609 } else if (const auto *FD = dyn_cast<FunctionDecl>(DC)) {
Craig Topper36250ad2014-05-12 05:36:57 +00001610 const FunctionProtoType *FT = nullptr;
Sam Weinigb999f682009-12-28 03:19:38 +00001611 if (FD->hasWrittenPrototype())
Eli Friedman5c27c4c2012-08-30 22:22:09 +00001612 FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
Sam Weinigb999f682009-12-28 03:19:38 +00001613
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001614 OS << *FD << '(';
Sam Weinigb999f682009-12-28 03:19:38 +00001615 if (FT) {
Sam Weinigb999f682009-12-28 03:19:38 +00001616 unsigned NumParams = FD->getNumParams();
1617 for (unsigned i = 0; i < NumParams; ++i) {
1618 if (i)
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001619 OS << ", ";
Argyrios Kyrtzidisa18347e2012-05-05 04:20:37 +00001620 OS << FD->getParamDecl(i)->getType().stream(P);
Sam Weinigb999f682009-12-28 03:19:38 +00001621 }
1622
1623 if (FT->isVariadic()) {
1624 if (NumParams > 0)
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001625 OS << ", ";
1626 OS << "...";
Sam Weinigb999f682009-12-28 03:19:38 +00001627 }
1628 }
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001629 OS << ')';
David Majnemerf7e36092016-06-23 00:15:04 +00001630 } else if (const auto *ED = dyn_cast<EnumDecl>(DC)) {
Alexander Kornienko4f355322015-11-09 16:45:17 +00001631 // C++ [dcl.enum]p10: Each enum-name and each unscoped
1632 // enumerator is declared in the scope that immediately contains
1633 // the enum-specifier. Each scoped enumerator is declared in the
1634 // scope of the enumeration.
Paul Robinsonf1838482017-12-21 21:47:22 +00001635 // For the case of unscoped enumerator, do not include in the qualified
Paul Robinsond1c3dd82017-12-26 18:01:19 +00001636 // name any information about its enum enclosing scope, as its visibility
Paul Robinsonf1838482017-12-21 21:47:22 +00001637 // is global.
1638 if (ED->isScoped())
Alexander Kornienko4f355322015-11-09 16:45:17 +00001639 OS << *ED;
1640 else
1641 continue;
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001642 } else {
David Majnemerf7e36092016-06-23 00:15:04 +00001643 OS << *cast<NamedDecl>(DC);
Benjamin Kramerd76b6982010-04-28 14:33:51 +00001644 }
1645 OS << "::";
Douglas Gregor2ada0482009-02-04 17:27:36 +00001646 }
1647
Richard Smith7873de02016-08-11 22:25:46 +00001648 if (getDeclName() || isa<DecompositionDecl>(this))
Benjamin Kramerb89514a2011-10-14 18:45:37 +00001649 OS << *this;
John McCalla2a3f7d2010-03-16 21:48:18 +00001650 else
David Blaikieabe1a392014-04-02 05:58:29 +00001651 OS << "(anonymous)";
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001652}
Douglas Gregor2ada0482009-02-04 17:27:36 +00001653
Benjamin Kramer24ebf7c2013-02-23 13:53:57 +00001654void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
1655 const PrintingPolicy &Policy,
1656 bool Qualified) const {
1657 if (Qualified)
1658 printQualifiedName(OS, Policy);
1659 else
1660 printName(OS);
Douglas Gregor2ada0482009-02-04 17:27:36 +00001661}
1662
Richard Smithe8292b12015-02-10 03:28:10 +00001663template<typename T> static bool isRedeclarableImpl(Redeclarable<T> *) {
1664 return true;
1665}
1666static bool isRedeclarableImpl(...) { return false; }
1667static bool isRedeclarable(Decl::Kind K) {
1668 switch (K) {
1669#define DECL(Type, Base) \
1670 case Decl::Type: \
1671 return isRedeclarableImpl((Type##Decl *)nullptr);
1672#define ABSTRACT_DECL(DECL)
1673#include "clang/AST/DeclNodes.inc"
1674 }
1675 llvm_unreachable("unknown decl kind");
1676}
1677
1678bool NamedDecl::declarationReplaces(NamedDecl *OldD, bool IsKnownNewer) const {
Douglas Gregor8b9ccca2008-12-23 21:05:05 +00001679 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
1680
Richard Smithfe620d22015-03-05 23:24:12 +00001681 // Never replace one imported declaration with another; we need both results
1682 // when re-exporting.
1683 if (OldD->isFromASTFile() && isFromASTFile())
1684 return false;
1685
Richard Smith5cd86f82015-11-03 03:13:11 +00001686 // A kind mismatch implies that the declaration is not replaced.
1687 if (OldD->getKind() != getKind())
Richard Smithe8292b12015-02-10 03:28:10 +00001688 return false;
1689
Richard Smith5cd86f82015-11-03 03:13:11 +00001690 // For method declarations, we never replace. (Why?)
1691 if (isa<ObjCMethodDecl>(this))
1692 return false;
1693
1694 // For parameters, pick the newer one. This is either an error or (in
1695 // Objective-C) permitted as an extension.
1696 if (isa<ParmVarDecl>(this))
1697 return true;
1698
Richard Smithe8292b12015-02-10 03:28:10 +00001699 // Inline namespaces can give us two declarations with the same
1700 // name and kind in the same scope but different contexts; we should
1701 // keep both declarations in this case.
1702 if (!this->getDeclContext()->getRedeclContext()->Equals(
1703 OldD->getDeclContext()->getRedeclContext()))
1704 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001705
Richard Smith5cd86f82015-11-03 03:13:11 +00001706 // Using declarations can be replaced if they import the same name from the
1707 // same context.
Richard Smithe8292b12015-02-10 03:28:10 +00001708 if (auto *UD = dyn_cast<UsingDecl>(this)) {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001709 ASTContext &Context = getASTContext();
Richard Smithe8292b12015-02-10 03:28:10 +00001710 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001711 Context.getCanonicalNestedNameSpecifier(
Richard Smithe8292b12015-02-10 03:28:10 +00001712 cast<UsingDecl>(OldD)->getQualifier());
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001713 }
Richard Smithe8292b12015-02-10 03:28:10 +00001714 if (auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) {
Eli Friedman0eaf10b2013-08-20 00:39:40 +00001715 ASTContext &Context = getASTContext();
Richard Smithe8292b12015-02-10 03:28:10 +00001716 return Context.getCanonicalNestedNameSpecifier(UUVD->getQualifier()) ==
Eli Friedman0eaf10b2013-08-20 00:39:40 +00001717 Context.getCanonicalNestedNameSpecifier(
1718 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
1719 }
1720
Richard Smith5cd86f82015-11-03 03:13:11 +00001721 if (isRedeclarable(getKind())) {
1722 if (getCanonicalDecl() != OldD->getCanonicalDecl())
1723 return false;
1724
1725 if (IsKnownNewer)
1726 return true;
1727
Richard Smithe8292b12015-02-10 03:28:10 +00001728 // Check whether this is actually newer than OldD. We want to keep the
1729 // newer declaration. This loop will usually only iterate once, because
1730 // OldD is usually the previous declaration.
1731 for (auto D : redecls()) {
1732 if (D == OldD)
1733 break;
1734
1735 // If we reach the canonical declaration, then OldD is not actually older
1736 // than this one.
1737 //
1738 // FIXME: In this case, we should not add this decl to the lookup table.
1739 if (D->isCanonicalDecl())
1740 return false;
1741 }
Richard Smith5cd86f82015-11-03 03:13:11 +00001742
1743 // It's a newer declaration of the same kind of declaration in the same
1744 // scope: we want this decl instead of the existing one.
1745 return true;
Richard Smithe8292b12015-02-10 03:28:10 +00001746 }
1747
Richard Smith5cd86f82015-11-03 03:13:11 +00001748 // In all other cases, we need to keep both declarations in case they have
1749 // different visibility. Any attempt to use the name will result in an
1750 // ambiguity if more than one is visible.
1751 return false;
Douglas Gregor8b9ccca2008-12-23 21:05:05 +00001752}
1753
Douglas Gregoreddf4332009-02-24 20:03:32 +00001754bool NamedDecl::hasLinkage() const {
Rafael Espindola50df3a02013-05-25 17:16:20 +00001755 return getFormalLinkage() != NoLinkage;
Douglas Gregoreddf4332009-02-24 20:03:32 +00001756}
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001757
Daniel Dunbar166ea9ad2012-03-08 18:20:41 +00001758NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
Anders Carlsson6915bf62009-06-26 06:29:23 +00001759 NamedDecl *ND = this;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001760 while (auto *UD = dyn_cast<UsingShadowDecl>(ND))
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001761 ND = UD->getTargetDecl();
1762
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001763 if (auto *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001764 return AD->getClassInterface();
1765
Richard Smithf2005d32015-12-29 23:34:32 +00001766 if (auto *AD = dyn_cast<NamespaceAliasDecl>(ND))
1767 return AD->getNamespace();
1768
Benjamin Kramerba0495a2012-03-08 21:00:45 +00001769 return ND;
Anders Carlsson6915bf62009-06-26 06:29:23 +00001770}
1771
John McCalla8ae2222010-04-06 21:38:20 +00001772bool NamedDecl::isCXXInstanceMember() const {
Douglas Gregor3f28ec22012-03-08 02:08:05 +00001773 if (!isCXXClassMember())
1774 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00001775
John McCalla8ae2222010-04-06 21:38:20 +00001776 const NamedDecl *D = this;
1777 if (isa<UsingShadowDecl>(D))
1778 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1779
John McCall5e77d762013-04-16 07:28:30 +00001780 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
John McCalla8ae2222010-04-06 21:38:20 +00001781 return true;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001782 if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()))
Alp Tokera2794f92014-01-22 07:29:52 +00001783 return MD->isInstance();
John McCalla8ae2222010-04-06 21:38:20 +00001784 return false;
1785}
1786
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00001787//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001788// DeclaratorDecl Implementation
1789//===----------------------------------------------------------------------===//
1790
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00001791template <typename DeclT>
1792static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
1793 if (decl->getNumTemplateParameterLists() > 0)
1794 return decl->getTemplateParameterList(0)->getTemplateLoc();
1795 else
1796 return decl->getInnerLocStart();
1797}
1798
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001799SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
John McCallf7bcc812010-05-28 23:32:21 +00001800 TypeSourceInfo *TSI = getTypeSourceInfo();
1801 if (TSI) return TSI->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001802 return SourceLocation();
1803}
1804
Douglas Gregor14454802011-02-25 02:25:35 +00001805void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
1806 if (QualifierLoc) {
John McCall3e11ebe2010-03-15 10:12:16 +00001807 // Make sure the extended decl info is allocated.
1808 if (!hasExtInfo()) {
1809 // Save (non-extended) type source info pointer.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001810 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
John McCall3e11ebe2010-03-15 10:12:16 +00001811 // Allocate external info struct.
1812 DeclInfo = new (getASTContext()) ExtInfo;
1813 // Restore savedTInfo into (extended) decl info.
1814 getExtInfo()->TInfo = savedTInfo;
1815 }
1816 // Set qualifier info.
Douglas Gregor14454802011-02-25 02:25:35 +00001817 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier6fdf38b2011-08-17 23:08:45 +00001818 } else {
John McCall3e11ebe2010-03-15 10:12:16 +00001819 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCall3e11ebe2010-03-15 10:12:16 +00001820 if (hasExtInfo()) {
Abramo Bagnara60804e12011-03-18 15:16:37 +00001821 if (getExtInfo()->NumTemplParamLists == 0) {
1822 // Save type source info pointer.
1823 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo;
1824 // Deallocate the extended decl info.
1825 getASTContext().Deallocate(getExtInfo());
1826 // Restore savedTInfo into (non-extended) decl info.
1827 DeclInfo = savedTInfo;
1828 }
1829 else
1830 getExtInfo()->QualifierLoc = QualifierLoc;
John McCall3e11ebe2010-03-15 10:12:16 +00001831 }
1832 }
1833}
1834
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001835void DeclaratorDecl::setTemplateParameterListsInfo(
1836 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
1837 assert(!TPLists.empty());
Abramo Bagnara60804e12011-03-18 15:16:37 +00001838 // Make sure the extended decl info is allocated.
1839 if (!hasExtInfo()) {
1840 // Save (non-extended) type source info pointer.
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00001841 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
Abramo Bagnara60804e12011-03-18 15:16:37 +00001842 // Allocate external info struct.
1843 DeclInfo = new (getASTContext()) ExtInfo;
1844 // Restore savedTInfo into (extended) decl info.
1845 getExtInfo()->TInfo = savedTInfo;
1846 }
1847 // Set the template parameter lists info.
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001848 getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
Abramo Bagnara60804e12011-03-18 15:16:37 +00001849}
1850
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00001851SourceLocation DeclaratorDecl::getOuterLocStart() const {
1852 return getTemplateOrInnerLocStart(this);
1853}
1854
Abramo Bagnaraea947882011-03-08 16:41:52 +00001855// Helper function: returns true if QT is or contains a type
1856// having a postfix component.
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001857static bool typeIsPostfix(QualType QT) {
Abramo Bagnaraea947882011-03-08 16:41:52 +00001858 while (true) {
1859 const Type* T = QT.getTypePtr();
1860 switch (T->getTypeClass()) {
1861 default:
1862 return false;
1863 case Type::Pointer:
1864 QT = cast<PointerType>(T)->getPointeeType();
1865 break;
1866 case Type::BlockPointer:
1867 QT = cast<BlockPointerType>(T)->getPointeeType();
1868 break;
1869 case Type::MemberPointer:
1870 QT = cast<MemberPointerType>(T)->getPointeeType();
1871 break;
1872 case Type::LValueReference:
1873 case Type::RValueReference:
1874 QT = cast<ReferenceType>(T)->getPointeeType();
1875 break;
1876 case Type::PackExpansion:
1877 QT = cast<PackExpansionType>(T)->getPattern();
1878 break;
1879 case Type::Paren:
1880 case Type::ConstantArray:
1881 case Type::DependentSizedArray:
1882 case Type::IncompleteArray:
1883 case Type::VariableArray:
1884 case Type::FunctionProto:
1885 case Type::FunctionNoProto:
1886 return true;
1887 }
1888 }
1889}
1890
Abramo Bagnaraea947882011-03-08 16:41:52 +00001891SourceRange DeclaratorDecl::getSourceRange() const {
1892 SourceLocation RangeEnd = getLocation();
1893 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
Benjamin Kramer3a7cc812014-02-02 15:28:46 +00001894 // If the declaration has no name or the type extends past the name take the
1895 // end location of the type.
1896 if (!getDeclName() || typeIsPostfix(TInfo->getType()))
Abramo Bagnaraea947882011-03-08 16:41:52 +00001897 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
1898 }
1899 return SourceRange(getOuterLocStart(), RangeEnd);
1900}
1901
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001902void QualifierInfo::setTemplateParameterListsInfo(
1903 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001904 // Free previous template parameters (if any).
1905 if (NumTemplParamLists > 0) {
Douglas Gregor20527e22010-06-15 17:44:38 +00001906 Context.Deallocate(TemplParamLists);
Craig Topper36250ad2014-05-12 05:36:57 +00001907 TemplParamLists = nullptr;
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001908 NumTemplParamLists = 0;
1909 }
1910 // Set info on matched template parameter lists (if any).
Benjamin Kramer9cc210652015-08-05 09:40:49 +00001911 if (!TPLists.empty()) {
1912 TemplParamLists = new (Context) TemplateParameterList *[TPLists.size()];
1913 NumTemplParamLists = TPLists.size();
1914 std::copy(TPLists.begin(), TPLists.end(), TemplParamLists);
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00001915 }
1916}
1917
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00001918//===----------------------------------------------------------------------===//
Nuno Lopes394ec982008-12-17 23:39:55 +00001919// VarDecl Implementation
1920//===----------------------------------------------------------------------===//
1921
Sebastian Redl833ef452010-01-26 22:01:41 +00001922const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
1923 switch (SC) {
Peter Collingbourne2dbb7082011-09-19 21:14:35 +00001924 case SC_None: break;
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001925 case SC_Auto: return "auto";
1926 case SC_Extern: return "extern";
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001927 case SC_PrivateExtern: return "__private_extern__";
1928 case SC_Register: return "register";
1929 case SC_Static: return "static";
Sebastian Redl833ef452010-01-26 22:01:41 +00001930 }
1931
Peter Collingbourne9a8f1532011-09-20 12:40:26 +00001932 llvm_unreachable("Invalid storage class");
Sebastian Redl833ef452010-01-26 22:01:41 +00001933}
1934
Richard Smith053f6c62014-05-16 23:01:30 +00001935VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
1936 SourceLocation StartLoc, SourceLocation IdLoc,
1937 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1938 StorageClass SC)
1939 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
Eugene Zelenkode0215c2017-11-13 23:01:27 +00001940 redeclarable_base(C) {
Benjamin Kramera939c232014-03-15 18:54:13 +00001941 static_assert(sizeof(VarDeclBitfields) <= sizeof(unsigned),
1942 "VarDeclBitfields too large!");
1943 static_assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned),
1944 "ParmVarDeclBitfields too large!");
David Majnemerfa7bc782015-05-19 00:57:16 +00001945 static_assert(sizeof(NonParmVarDeclBitfields) <= sizeof(unsigned),
1946 "NonParmVarDeclBitfields too large!");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001947 AllBits = 0;
1948 VarDeclBits.SClass = SC;
1949 // Everything else is implicitly initialized to false.
1950}
1951
Abramo Bagnaradff19302011-03-08 08:55:46 +00001952VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
1953 SourceLocation StartL, SourceLocation IdL,
John McCallbcd03502009-12-07 02:54:59 +00001954 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00001955 StorageClass S) {
Richard Smith053f6c62014-05-16 23:01:30 +00001956 return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
Nuno Lopes394ec982008-12-17 23:39:55 +00001957}
1958
Douglas Gregor72172e92012-01-05 21:55:30 +00001959VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00001960 return new (C, ID)
1961 VarDecl(Var, C, nullptr, SourceLocation(), SourceLocation(), nullptr,
1962 QualType(), nullptr, SC_None);
Douglas Gregor72172e92012-01-05 21:55:30 +00001963}
1964
Douglas Gregorbf62d642010-12-06 18:36:25 +00001965void VarDecl::setStorageClass(StorageClass SC) {
1966 assert(isLegalForVariable(SC));
John McCallbeaa11c2011-05-01 02:13:58 +00001967 VarDeclBits.SClass = SC;
Douglas Gregorbf62d642010-12-06 18:36:25 +00001968}
1969
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001970VarDecl::TLSKind VarDecl::getTLSKind() const {
1971 switch (VarDeclBits.TSCSpec) {
1972 case TSCS_unspecified:
Samuel Antaof8b50122015-07-13 22:54:53 +00001973 if (!hasAttr<ThreadAttr>() &&
1974 !(getASTContext().getLangOpts().OpenMPUseTLS &&
1975 getASTContext().getTargetInfo().isTLSSupported() &&
1976 hasAttr<OMPThreadPrivateDeclAttr>()))
David Majnemer1b5baff2015-05-14 05:19:23 +00001977 return TLS_None;
Samuel Antaof8b50122015-07-13 22:54:53 +00001978 return ((getASTContext().getLangOpts().isCompatibleWithMSVC(
1979 LangOptions::MSVC2015)) ||
1980 hasAttr<OMPThreadPrivateDeclAttr>())
David Majnemer1b5baff2015-05-14 05:19:23 +00001981 ? TLS_Dynamic
1982 : TLS_Static;
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001983 case TSCS___thread: // Fall through.
1984 case TSCS__Thread_local:
Samuel Antaof8b50122015-07-13 22:54:53 +00001985 return TLS_Static;
Reid Kleckner7d6d2702014-05-01 03:16:47 +00001986 case TSCS_thread_local:
1987 return TLS_Dynamic;
1988 }
1989 llvm_unreachable("Unknown thread storage class specifier!");
1990}
1991
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00001992SourceRange VarDecl::getSourceRange() const {
Argyrios Kyrtzidise0d64972012-10-08 23:08:41 +00001993 if (const Expr *Init = getInit()) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001994 SourceLocation InitEnd = Init->getEndLoc();
Fangrui Song6907ce22018-07-30 19:24:48 +00001995 // If Init is implicit, ignore its source range and fallback on
Nico Weberbbe13942013-01-22 17:00:09 +00001996 // DeclaratorDecl::getSourceRange() to handle postfix elements.
1997 if (InitEnd.isValid() && InitEnd != getLocation())
Argyrios Kyrtzidise0d64972012-10-08 23:08:41 +00001998 return SourceRange(getOuterLocStart(), InitEnd);
1999 }
Abramo Bagnaraea947882011-03-08 16:41:52 +00002000 return DeclaratorDecl::getSourceRange();
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002001}
2002
Rafael Espindola88510672013-01-04 21:18:45 +00002003template<typename T>
Alp Toker84212df2014-05-31 06:11:02 +00002004static LanguageLinkage getDeclLanguageLinkage(const T &D) {
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002005 // C++ [dcl.link]p1: All function types, function names with external linkage,
2006 // and variable names with external linkage have a language linkage.
Rafael Espindola3ae00052013-05-13 00:12:11 +00002007 if (!D.hasExternalFormalLinkage())
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002008 return NoLanguageLinkage;
2009
2010 // Language linkage is a C++ concept, but saying that everything else in C has
Rafael Espindola66748e92013-01-04 20:41:40 +00002011 // C language linkage fits the implementation nicely.
Rafael Espindola576127d2012-12-28 14:21:58 +00002012 ASTContext &Context = D.getASTContext();
2013 if (!Context.getLangOpts().CPlusPlus)
Rafael Espindolaf4187652013-02-14 01:18:37 +00002014 return CLanguageLinkage;
2015
Rafael Espindola5bda63f2013-02-14 01:47:04 +00002016 // C++ [dcl.link]p4: A C language linkage is ignored in determining the
2017 // language linkage of the names of class members and the function type of
2018 // class member functions.
Rafael Espindola576127d2012-12-28 14:21:58 +00002019 const DeclContext *DC = D.getDeclContext();
2020 if (DC->isRecord())
Rafael Espindolaf4187652013-02-14 01:18:37 +00002021 return CXXLanguageLinkage;
Rafael Espindola576127d2012-12-28 14:21:58 +00002022
2023 // If the first decl is in an extern "C" context, any other redeclaration
2024 // will have C language linkage. If the first one is not in an extern "C"
2025 // context, we would have reported an error for any other decl being in one.
Rafael Espindola593537a2013-05-05 20:15:21 +00002026 if (isFirstInExternCContext(&D))
Rafael Espindolaf4187652013-02-14 01:18:37 +00002027 return CLanguageLinkage;
2028 return CXXLanguageLinkage;
Rafael Espindola576127d2012-12-28 14:21:58 +00002029}
2030
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002031template<typename T>
Alp Toker84212df2014-05-31 06:11:02 +00002032static bool isDeclExternC(const T &D) {
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002033 // Since the context is ignored for class members, they can only have C++
2034 // language linkage or no language linkage.
2035 const DeclContext *DC = D.getDeclContext();
2036 if (DC->isRecord()) {
2037 assert(D.getASTContext().getLangOpts().CPlusPlus);
2038 return false;
2039 }
2040
2041 return D.getLanguageLinkage() == CLanguageLinkage;
2042}
2043
Rafael Espindolaf4187652013-02-14 01:18:37 +00002044LanguageLinkage VarDecl::getLanguageLinkage() const {
Alp Toker84212df2014-05-31 06:11:02 +00002045 return getDeclLanguageLinkage(*this);
Rafael Espindola576127d2012-12-28 14:21:58 +00002046}
2047
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002048bool VarDecl::isExternC() const {
Alp Toker84212df2014-05-31 06:11:02 +00002049 return isDeclExternC(*this);
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002050}
2051
Rafael Espindola593537a2013-05-05 20:15:21 +00002052bool VarDecl::isInExternCContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00002053 return getLexicalDeclContext()->isExternCContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002054}
2055
2056bool VarDecl::isInExternCXXContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00002057 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002058}
2059
Rafael Espindola8db352d2013-10-17 15:37:26 +00002060VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl833ef452010-01-26 22:01:41 +00002061
Nico Weber7f5015a2015-04-15 21:53:00 +00002062VarDecl::DefinitionKind
2063VarDecl::isThisDeclarationADefinition(ASTContext &C) const {
Richard Smitha22d9a52017-12-02 00:55:48 +00002064 if (isThisDeclarationADemotedDefinition())
2065 return DeclarationOnly;
2066
Sebastian Redl35351a92010-01-31 22:27:38 +00002067 // C++ [basic.def]p2:
2068 // A declaration is a definition unless [...] it contains the 'extern'
2069 // specifier or a linkage-specification and neither an initializer [...],
Richard Smith62f19e72016-06-25 00:15:56 +00002070 // it declares a non-inline static data member in a class declaration [...],
2071 // it declares a static data member outside a class definition and the variable
2072 // was defined within the class with the constexpr specifier [...],
Richard Smith8809a0c2013-09-27 20:14:12 +00002073 // C++1y [temp.expl.spec]p15:
2074 // An explicit specialization of a static data member or an explicit
2075 // specialization of a static data member template is a definition if the
2076 // declaration includes an initializer; otherwise, it is a declaration.
2077 //
2078 // FIXME: How do you declare (but not define) a partial specialization of
2079 // a static data member template outside the containing class?
Sebastian Redl35351a92010-01-31 22:27:38 +00002080 if (isStaticDataMember()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00002081 if (isOutOfLine() &&
Richard Smith62f19e72016-06-25 00:15:56 +00002082 !(getCanonicalDecl()->isInline() &&
2083 getCanonicalDecl()->isConstexpr()) &&
Richard Smith8809a0c2013-09-27 20:14:12 +00002084 (hasInit() ||
2085 // If the first declaration is out-of-line, this may be an
2086 // instantiation of an out-of-line partial specialization of a variable
2087 // template for which we have not yet instantiated the initializer.
Rafael Espindola8db352d2013-10-17 15:37:26 +00002088 (getFirstDecl()->isOutOfLine()
Richard Smith8809a0c2013-09-27 20:14:12 +00002089 ? getTemplateSpecializationKind() == TSK_Undeclared
2090 : getTemplateSpecializationKind() !=
2091 TSK_ExplicitSpecialization) ||
2092 isa<VarTemplatePartialSpecializationDecl>(this)))
Sebastian Redl35351a92010-01-31 22:27:38 +00002093 return Definition;
Richard Smith62f19e72016-06-25 00:15:56 +00002094 else if (!isOutOfLine() && isInline())
2095 return Definition;
Sebastian Redl35351a92010-01-31 22:27:38 +00002096 else
2097 return DeclarationOnly;
2098 }
2099 // C99 6.7p5:
2100 // A definition of an identifier is a declaration for that identifier that
2101 // [...] causes storage to be reserved for that object.
2102 // Note: that applies for all non-file-scope objects.
2103 // C99 6.9.2p1:
2104 // If the declaration of an identifier for an object has file scope and an
2105 // initializer, the declaration is an external definition for the identifier
2106 if (hasInit())
2107 return Definition;
Rafael Espindolabff59562013-04-25 12:11:36 +00002108
Dmitry Polukhin85eda122016-04-11 07:48:59 +00002109 if (hasDefiningAttr())
Rafael Espindolad53ffa02013-10-22 21:39:03 +00002110 return Definition;
2111
David Majnemerdd0bed12015-05-14 05:19:20 +00002112 if (const auto *SAA = getAttr<SelectAnyAttr>())
2113 if (!SAA->isInherited())
2114 return Definition;
2115
Richard Smith8809a0c2013-09-27 20:14:12 +00002116 // A variable template specialization (other than a static data member
2117 // template or an explicit specialization) is a declaration until we
2118 // instantiate its initializer.
Richard Smith435e6472017-12-02 02:48:42 +00002119 if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(this)) {
2120 if (VTSD->getTemplateSpecializationKind() != TSK_ExplicitSpecialization &&
2121 !isa<VarTemplatePartialSpecializationDecl>(VTSD) &&
2122 !VTSD->IsCompleteDefinition)
2123 return DeclarationOnly;
2124 }
Richard Smith8809a0c2013-09-27 20:14:12 +00002125
Nico Weber608e7682015-04-15 23:04:24 +00002126 if (hasExternalStorage())
Sebastian Redl35351a92010-01-31 22:27:38 +00002127 return DeclarationOnly;
Rafael Espindola8f326a52013-03-07 01:42:44 +00002128
Rafael Espindolabff59562013-04-25 12:11:36 +00002129 // [dcl.link] p7:
2130 // A declaration directly contained in a linkage-specification is treated
2131 // as if it contains the extern specifier for the purpose of determining
2132 // the linkage of the declared name and whether it is a definition.
Nico Weber608e7682015-04-15 23:04:24 +00002133 if (isSingleLineLanguageLinkage(*this))
Rafael Espindola327be3c2013-04-26 01:30:23 +00002134 return DeclarationOnly;
Rafael Espindolabff59562013-04-25 12:11:36 +00002135
Sebastian Redl35351a92010-01-31 22:27:38 +00002136 // C99 6.9.2p2:
2137 // A declaration of an object that has file scope without an initializer,
2138 // and without a storage class specifier or the scs 'static', constitutes
2139 // a tentative definition.
2140 // No such thing in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002141 if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
Sebastian Redl35351a92010-01-31 22:27:38 +00002142 return TentativeDefinition;
2143
2144 // What's left is (in C, block-scope) declarations without initializers or
2145 // external storage. These are definitions.
2146 return Definition;
2147}
2148
Sebastian Redl35351a92010-01-31 22:27:38 +00002149VarDecl *VarDecl::getActingDefinition() {
2150 DefinitionKind Kind = isThisDeclarationADefinition();
2151 if (Kind != TentativeDefinition)
Craig Topper36250ad2014-05-12 05:36:57 +00002152 return nullptr;
Sebastian Redl35351a92010-01-31 22:27:38 +00002153
Craig Topper36250ad2014-05-12 05:36:57 +00002154 VarDecl *LastTentative = nullptr;
Rafael Espindola8db352d2013-10-17 15:37:26 +00002155 VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002156 for (auto I : First->redecls()) {
2157 Kind = I->isThisDeclarationADefinition();
Sebastian Redl35351a92010-01-31 22:27:38 +00002158 if (Kind == Definition)
Craig Topper36250ad2014-05-12 05:36:57 +00002159 return nullptr;
Sebastian Redl35351a92010-01-31 22:27:38 +00002160 else if (Kind == TentativeDefinition)
Aaron Ballman86c93902014-03-06 23:45:36 +00002161 LastTentative = I;
Sebastian Redl35351a92010-01-31 22:27:38 +00002162 }
2163 return LastTentative;
2164}
2165
Daniel Dunbar9d355812012-03-09 01:51:51 +00002166VarDecl *VarDecl::getDefinition(ASTContext &C) {
Rafael Espindola8db352d2013-10-17 15:37:26 +00002167 VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002168 for (auto I : First->redecls()) {
2169 if (I->isThisDeclarationADefinition(C) == Definition)
2170 return I;
Sebastian Redl5ca79842010-02-01 20:16:42 +00002171 }
Craig Topper36250ad2014-05-12 05:36:57 +00002172 return nullptr;
Sebastian Redl5ca79842010-02-01 20:16:42 +00002173}
2174
Daniel Dunbar9d355812012-03-09 01:51:51 +00002175VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
John McCall37bb6c92010-10-29 22:22:43 +00002176 DefinitionKind Kind = DeclarationOnly;
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002177
Rafael Espindola8db352d2013-10-17 15:37:26 +00002178 const VarDecl *First = getFirstDecl();
Aaron Ballman86c93902014-03-06 23:45:36 +00002179 for (auto I : First->redecls()) {
2180 Kind = std::max(Kind, I->isThisDeclarationADefinition(C));
Daniel Dunbar082c62d2012-03-06 23:52:46 +00002181 if (Kind == Definition)
2182 break;
2183 }
John McCall37bb6c92010-10-29 22:22:43 +00002184
2185 return Kind;
2186}
2187
Sebastian Redl5ca79842010-02-01 20:16:42 +00002188const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002189 for (auto I : redecls()) {
2190 if (auto Expr = I->getInit()) {
2191 D = I;
2192 return Expr;
2193 }
Sebastian Redl833ef452010-01-26 22:01:41 +00002194 }
Craig Topper36250ad2014-05-12 05:36:57 +00002195 return nullptr;
Sebastian Redl833ef452010-01-26 22:01:41 +00002196}
2197
Chandler Carruth813faed2015-12-30 02:51:00 +00002198bool VarDecl::hasInit() const {
2199 if (auto *P = dyn_cast<ParmVarDecl>(this))
2200 if (P->hasUnparsedDefaultArg() || P->hasUninstantiatedDefaultArg())
2201 return false;
2202
2203 return !Init.isNull();
2204}
2205
2206Expr *VarDecl::getInit() {
2207 if (!hasInit())
2208 return nullptr;
2209
2210 if (auto *S = Init.dyn_cast<Stmt *>())
2211 return cast<Expr>(S);
2212
2213 return cast_or_null<Expr>(Init.get<EvaluatedStmt *>()->Value);
2214}
2215
2216Stmt **VarDecl::getInitAddress() {
2217 if (auto *ES = Init.dyn_cast<EvaluatedStmt *>())
2218 return &ES->Value;
2219
2220 return Init.getAddrOfPtr1();
2221}
2222
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002223bool VarDecl::isOutOfLine() const {
Douglas Gregorb11aad82011-02-19 18:51:44 +00002224 if (Decl::isOutOfLine())
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002225 return true;
Chandler Carruthf50ef6e2010-02-21 07:08:09 +00002226
2227 if (!isStaticDataMember())
2228 return false;
2229
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002230 // If this static data member was instantiated from a static data member of
Fangrui Song6907ce22018-07-30 19:24:48 +00002231 // a class template, check whether that static data member was defined
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002232 // out-of-line.
2233 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
2234 return VD->isOutOfLine();
Fangrui Song6907ce22018-07-30 19:24:48 +00002235
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002236 return false;
2237}
2238
Douglas Gregord5058122010-02-11 01:19:42 +00002239void VarDecl::setInit(Expr *I) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002240 if (auto *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
Sebastian Redl833ef452010-01-26 22:01:41 +00002241 Eval->~EvaluatedStmt();
Douglas Gregord5058122010-02-11 01:19:42 +00002242 getASTContext().Deallocate(Eval);
Sebastian Redl833ef452010-01-26 22:01:41 +00002243 }
2244
2245 Init = I;
2246}
2247
Richard Smith715f7a12019-06-11 17:50:32 +00002248bool VarDecl::mightBeUsableInConstantExpressions(ASTContext &C) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002249 const LangOptions &Lang = C.getLangOpts();
Richard Smith242ad892011-12-21 02:55:12 +00002250
Richard Smith35ecb362012-03-02 04:14:40 +00002251 if (!Lang.CPlusPlus)
2252 return false;
2253
Richard Smith715f7a12019-06-11 17:50:32 +00002254 // Function parameters are never usable in constant expressions.
2255 if (isa<ParmVarDecl>(this))
2256 return false;
2257
Richard Smith35ecb362012-03-02 04:14:40 +00002258 // In C++11, any variable of reference type can be used in a constant
2259 // expression if it is initialized by a constant expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002260 if (Lang.CPlusPlus11 && getType()->isReferenceType())
Richard Smith35ecb362012-03-02 04:14:40 +00002261 return true;
2262
2263 // Only const objects can be used in constant expressions in C++. C++98 does
Richard Smith242ad892011-12-21 02:55:12 +00002264 // not require the variable to be non-volatile, but we consider this to be a
2265 // defect.
Richard Smith35ecb362012-03-02 04:14:40 +00002266 if (!getType().isConstQualified() || getType().isVolatileQualified())
Richard Smith242ad892011-12-21 02:55:12 +00002267 return false;
2268
2269 // In C++, const, non-volatile variables of integral or enumeration types
2270 // can be used in constant expressions.
2271 if (getType()->isIntegralOrEnumerationType())
2272 return true;
2273
Richard Smith35ecb362012-03-02 04:14:40 +00002274 // Additionally, in C++11, non-volatile constexpr variables can be used in
2275 // constant expressions.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002276 return Lang.CPlusPlus11 && isConstexpr();
Richard Smith242ad892011-12-21 02:55:12 +00002277}
2278
Richard Smith715f7a12019-06-11 17:50:32 +00002279bool VarDecl::isUsableInConstantExpressions(ASTContext &Context) const {
2280 // C++2a [expr.const]p3:
2281 // A variable is usable in constant expressions after its initializing
2282 // declaration is encountered...
2283 const VarDecl *DefVD = nullptr;
2284 const Expr *Init = getAnyInitializer(DefVD);
2285 if (!Init || Init->isValueDependent())
2286 return false;
2287 // ... if it is a constexpr variable, or it is of reference type or of
2288 // const-qualified integral or enumeration type, ...
2289 if (!DefVD->mightBeUsableInConstantExpressions(Context))
2290 return false;
2291 // ... and its initializer is a constant initializer.
2292 return DefVD->checkInitIsICE();
2293}
2294
Richard Smithd0b4dd62011-12-19 06:19:21 +00002295/// Convert the initializer for this declaration to the elaborated EvaluatedStmt
2296/// form, which contains extra information on the evaluated value of the
2297/// initializer.
2298EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002299 auto *Eval = Init.dyn_cast<EvaluatedStmt *>();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002300 if (!Eval) {
Manuel Klimeka7328992013-06-03 13:51:33 +00002301 // Note: EvaluatedStmt contains an APValue, which usually holds
2302 // resources not allocated from the ASTContext. We need to do some
2303 // work to avoid leaking those, but we do so in VarDecl::evaluateValue
2304 // where we can detect whether there's anything to clean up or not.
Richard Smithd0b4dd62011-12-19 06:19:21 +00002305 Eval = new (getASTContext()) EvaluatedStmt;
Chandler Carruth813faed2015-12-30 02:51:00 +00002306 Eval->Value = Init.get<Stmt *>();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002307 Init = Eval;
2308 }
2309 return Eval;
2310}
2311
Richard Smithdafff942012-01-14 04:30:29 +00002312APValue *VarDecl::evaluateValue() const {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002313 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smithdafff942012-01-14 04:30:29 +00002314 return evaluateValue(Notes);
2315}
2316
2317APValue *VarDecl::evaluateValue(
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002318 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smithd0b4dd62011-12-19 06:19:21 +00002319 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2320
2321 // We only produce notes indicating why an initializer is non-constant the
2322 // first time it is evaluated. FIXME: The notes won't always be emitted the
2323 // first time we try evaluation, so might not be produced at all.
2324 if (Eval->WasEvaluated)
Richard Smithe637cbe2019-05-21 23:15:18 +00002325 return Eval->Evaluated.isAbsent() ? nullptr : &Eval->Evaluated;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002326
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002327 const auto *Init = cast<Expr>(Eval->Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002328 assert(!Init->isValueDependent());
2329
2330 if (Eval->IsEvaluating) {
2331 // FIXME: Produce a diagnostic for self-initialization.
2332 Eval->CheckedICE = true;
2333 Eval->IsICE = false;
Craig Topper36250ad2014-05-12 05:36:57 +00002334 return nullptr;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002335 }
2336
2337 Eval->IsEvaluating = true;
2338
2339 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
2340 this, Notes);
2341
Manuel Klimeka7328992013-06-03 13:51:33 +00002342 // Ensure the computed APValue is cleaned up later if evaluation succeeded,
2343 // or that it's empty (so that there's nothing to clean up) if evaluation
2344 // failed.
Richard Smithd0b4dd62011-12-19 06:19:21 +00002345 if (!Result)
2346 Eval->Evaluated = APValue();
Manuel Klimeka7328992013-06-03 13:51:33 +00002347 else if (Eval->Evaluated.needsCleanup())
George Burgess IVb61bfbd2017-02-14 05:37:36 +00002348 getASTContext().addDestruction(&Eval->Evaluated);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002349
2350 Eval->IsEvaluating = false;
2351 Eval->WasEvaluated = true;
2352
2353 // In C++11, we have determined whether the initializer was a constant
2354 // expression as a side-effect.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002355 if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) {
Richard Smithd0b4dd62011-12-19 06:19:21 +00002356 Eval->CheckedICE = true;
Eli Friedman8f66cdf2012-02-06 21:50:18 +00002357 Eval->IsICE = Result && Notes.empty();
Richard Smithd0b4dd62011-12-19 06:19:21 +00002358 }
2359
Craig Topper36250ad2014-05-12 05:36:57 +00002360 return Result ? &Eval->Evaluated : nullptr;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002361}
2362
Chandler Carruth813faed2015-12-30 02:51:00 +00002363APValue *VarDecl::getEvaluatedValue() const {
2364 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>())
2365 if (Eval->WasEvaluated)
2366 return &Eval->Evaluated;
2367
2368 return nullptr;
2369}
2370
2371bool VarDecl::isInitKnownICE() const {
2372 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>())
2373 return Eval->CheckedICE;
2374
2375 return false;
2376}
2377
2378bool VarDecl::isInitICE() const {
2379 assert(isInitKnownICE() &&
2380 "Check whether we already know that the initializer is an ICE");
2381 return Init.get<EvaluatedStmt *>()->IsICE;
2382}
2383
Richard Smithd0b4dd62011-12-19 06:19:21 +00002384bool VarDecl::checkInitIsICE() const {
John McCalla59dc2f2012-01-05 00:13:19 +00002385 // Initializers of weak variables are never ICEs.
2386 if (isWeak())
2387 return false;
2388
Richard Smithd0b4dd62011-12-19 06:19:21 +00002389 EvaluatedStmt *Eval = ensureEvaluatedStmt();
2390 if (Eval->CheckedICE)
2391 // We have already checked whether this subexpression is an
2392 // integral constant expression.
2393 return Eval->IsICE;
2394
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002395 const auto *Init = cast<Expr>(Eval->Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002396 assert(!Init->isValueDependent());
2397
2398 // In C++11, evaluate the initializer to check whether it's a constant
2399 // expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002400 if (getASTContext().getLangOpts().CPlusPlus11) {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002401 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002402 evaluateValue(Notes);
2403 return Eval->IsICE;
2404 }
2405
2406 // It's an ICE whether or not the definition we found is
2407 // out-of-line. See DR 721 and the discussion in Clang PR
2408 // 6206 for details.
2409
2410 if (Eval->CheckingICE)
2411 return false;
2412 Eval->CheckingICE = true;
2413
2414 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext());
2415 Eval->CheckingICE = false;
2416 Eval->CheckedICE = true;
2417 return Eval->IsICE;
2418}
2419
Richard Smithb2997f52019-05-21 20:10:50 +00002420bool VarDecl::isParameterPack() const {
2421 return isa<PackExpansionType>(getType());
2422}
2423
Richard Smith2195ec92017-04-21 01:15:13 +00002424template<typename DeclT>
2425static DeclT *getDefinitionOrSelf(DeclT *D) {
2426 assert(D);
2427 if (auto *Def = D->getDefinition())
2428 return Def;
2429 return D;
2430}
2431
Akira Hatanaka8e57b072018-10-01 21:51:28 +00002432bool VarDecl::isEscapingByref() const {
2433 return hasAttr<BlocksAttr>() && NonParmVarDeclBits.EscapingByref;
2434}
2435
2436bool VarDecl::isNonEscapingByref() const {
2437 return hasAttr<BlocksAttr>() && !NonParmVarDeclBits.EscapingByref;
2438}
2439
Richard Smithedbc6e92016-10-14 21:41:24 +00002440VarDecl *VarDecl::getTemplateInstantiationPattern() const {
Richard Smitha6b41d72019-05-03 23:51:38 +00002441 const VarDecl *VD = this;
Richard Smithedbc6e92016-10-14 21:41:24 +00002442
Richard Smitha6b41d72019-05-03 23:51:38 +00002443 // If this is an instantiated member, walk back to the template from which
2444 // it was instantiated.
2445 if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo()) {
Richard Smithedbc6e92016-10-14 21:41:24 +00002446 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
Richard Smitha6b41d72019-05-03 23:51:38 +00002447 VD = VD->getInstantiatedFromStaticDataMember();
Richard Smithedbc6e92016-10-14 21:41:24 +00002448 while (auto *NewVD = VD->getInstantiatedFromStaticDataMember())
2449 VD = NewVD;
Richard Smithedbc6e92016-10-14 21:41:24 +00002450 }
2451 }
2452
Richard Smitha6b41d72019-05-03 23:51:38 +00002453 // If it's an instantiated variable template specialization, find the
2454 // template or partial specialization from which it was instantiated.
2455 if (auto *VDTemplSpec = dyn_cast<VarTemplateSpecializationDecl>(VD)) {
2456 if (isTemplateInstantiation(VDTemplSpec->getTemplateSpecializationKind())) {
2457 auto From = VDTemplSpec->getInstantiatedFrom();
2458 if (auto *VTD = From.dyn_cast<VarTemplateDecl *>()) {
2459 while (!VTD->isMemberSpecialization()) {
2460 auto *NewVTD = VTD->getInstantiatedFromMemberTemplate();
2461 if (!NewVTD)
2462 break;
2463 VTD = NewVTD;
2464 }
2465 return getDefinitionOrSelf(VTD->getTemplatedDecl());
2466 }
2467 if (auto *VTPSD =
2468 From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
2469 while (!VTPSD->isMemberSpecialization()) {
2470 auto *NewVTPSD = VTPSD->getInstantiatedFromMember();
2471 if (!NewVTPSD)
2472 break;
2473 VTPSD = NewVTPSD;
2474 }
2475 return getDefinitionOrSelf<VarDecl>(VTPSD);
2476 }
2477 }
2478 }
2479
2480 // If this is the pattern of a variable template, find where it was
2481 // instantiated from. FIXME: Is this necessary?
2482 if (VarTemplateDecl *VarTemplate = VD->getDescribedVarTemplate()) {
2483 while (!VarTemplate->isMemberSpecialization()) {
2484 auto *NewVT = VarTemplate->getInstantiatedFromMemberTemplate();
2485 if (!NewVT)
Richard Smithedbc6e92016-10-14 21:41:24 +00002486 break;
Richard Smitha6b41d72019-05-03 23:51:38 +00002487 VarTemplate = NewVT;
Richard Smithedbc6e92016-10-14 21:41:24 +00002488 }
2489
Richard Smith2195ec92017-04-21 01:15:13 +00002490 return getDefinitionOrSelf(VarTemplate->getTemplatedDecl());
Richard Smithedbc6e92016-10-14 21:41:24 +00002491 }
Richard Smitha6b41d72019-05-03 23:51:38 +00002492
2493 if (VD == this)
2494 return nullptr;
2495 return getDefinitionOrSelf(const_cast<VarDecl*>(VD));
Richard Smithedbc6e92016-10-14 21:41:24 +00002496}
2497
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002498VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
Douglas Gregor06db9f52009-10-12 20:18:28 +00002499 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor86d142a2009-10-08 07:24:58 +00002500 return cast<VarDecl>(MSI->getInstantiatedFrom());
Craig Topper36250ad2014-05-12 05:36:57 +00002501
2502 return nullptr;
Douglas Gregor86d142a2009-10-08 07:24:58 +00002503}
2504
Douglas Gregor3c74d412009-10-14 20:14:33 +00002505TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002506 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002507 return Spec->getSpecializationKind();
2508
Sebastian Redl35351a92010-01-31 22:27:38 +00002509 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
Douglas Gregor86d142a2009-10-08 07:24:58 +00002510 return MSI->getTemplateSpecializationKind();
Richard Smith8809a0c2013-09-27 20:14:12 +00002511
Douglas Gregor86d142a2009-10-08 07:24:58 +00002512 return TSK_Undeclared;
2513}
2514
Richard Smitha6b41d72019-05-03 23:51:38 +00002515TemplateSpecializationKind
2516VarDecl::getTemplateSpecializationKindForInstantiation() const {
2517 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2518 return MSI->getTemplateSpecializationKind();
2519
2520 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
2521 return Spec->getSpecializationKind();
2522
2523 return TSK_Undeclared;
2524}
2525
Richard Smith8809a0c2013-09-27 20:14:12 +00002526SourceLocation VarDecl::getPointOfInstantiation() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002527 if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
Richard Smith8809a0c2013-09-27 20:14:12 +00002528 return Spec->getPointOfInstantiation();
2529
2530 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
2531 return MSI->getPointOfInstantiation();
2532
2533 return SourceLocation();
2534}
2535
Larisse Voufo39a1e502013-08-06 01:03:05 +00002536VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
2537 return getASTContext().getTemplateOrSpecializationInfo(this)
2538 .dyn_cast<VarTemplateDecl *>();
2539}
2540
2541void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
2542 getASTContext().setTemplateOrSpecializationInfo(this, Template);
2543}
2544
Justin Lebar5489f852018-05-17 16:15:07 +00002545bool VarDecl::isKnownToBeDefined() const {
2546 const auto &LangOpts = getASTContext().getLangOpts();
2547 // In CUDA mode without relocatable device code, variables of form 'extern
2548 // __shared__ Foo foo[]' are pointers to the base of the GPU core's shared
2549 // memory pool. These are never undefined variables, even if they appear
2550 // inside of an anon namespace or static function.
2551 //
2552 // With CUDA relocatable device code enabled, these variables don't get
2553 // special handling; they're treated like regular extern variables.
Yaxun Liu97670892018-10-02 17:48:54 +00002554 if (LangOpts.CUDA && !LangOpts.GPURelocatableDeviceCode &&
Justin Lebar5489f852018-05-17 16:15:07 +00002555 hasExternalStorage() && hasAttr<CUDASharedAttr>() &&
2556 isa<IncompleteArrayType>(getType()))
2557 return true;
2558
2559 return hasDefinition();
2560}
2561
Erik Pilkington5a559e62018-08-21 17:24:06 +00002562bool VarDecl::isNoDestroy(const ASTContext &Ctx) const {
2563 return hasGlobalStorage() && (hasAttr<NoDestroyAttr>() ||
2564 (!Ctx.getLangOpts().RegisterStaticDestructors &&
2565 !hasAttr<AlwaysDestroyAttr>()));
2566}
2567
Douglas Gregor3cc3cde2009-10-14 21:29:40 +00002568MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
Richard Smithb71782b2013-08-01 04:12:04 +00002569 if (isStaticDataMember())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002570 // FIXME: Remove ?
2571 // return getASTContext().getInstantiatedFromStaticDataMember(this);
2572 return getASTContext().getTemplateOrSpecializationInfo(this)
2573 .dyn_cast<MemberSpecializationInfo *>();
Craig Topper36250ad2014-05-12 05:36:57 +00002574 return nullptr;
Douglas Gregor06db9f52009-10-12 20:18:28 +00002575}
2576
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00002577void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
2578 SourceLocation PointOfInstantiation) {
Richard Smith8809a0c2013-09-27 20:14:12 +00002579 assert((isa<VarTemplateSpecializationDecl>(this) ||
2580 getMemberSpecializationInfo()) &&
2581 "not a variable or static data member template specialization");
2582
Larisse Voufo39a1e502013-08-06 01:03:05 +00002583 if (VarTemplateSpecializationDecl *Spec =
2584 dyn_cast<VarTemplateSpecializationDecl>(this)) {
2585 Spec->setSpecializationKind(TSK);
Richard Smitha6b41d72019-05-03 23:51:38 +00002586 if (TSK != TSK_ExplicitSpecialization &&
2587 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00002588 Spec->getPointOfInstantiation().isInvalid()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002589 Spec->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00002590 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
2591 L->InstantiationRequested(this);
2592 }
Richard Smitha6b41d72019-05-03 23:51:38 +00002593 } else if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002594 MSI->setTemplateSpecializationKind(TSK);
2595 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00002596 MSI->getPointOfInstantiation().isInvalid()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002597 MSI->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00002598 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
2599 L->InstantiationRequested(this);
2600 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002601 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002602}
2603
2604void
2605VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
2606 TemplateSpecializationKind TSK) {
2607 assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
2608 "Previous template or instantiation?");
2609 getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002610}
2611
Sebastian Redl833ef452010-01-26 22:01:41 +00002612//===----------------------------------------------------------------------===//
2613// ParmVarDecl Implementation
2614//===----------------------------------------------------------------------===//
Douglas Gregor0760fa12009-03-10 23:43:53 +00002615
Sebastian Redl833ef452010-01-26 22:01:41 +00002616ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00002617 SourceLocation StartLoc,
2618 SourceLocation IdLoc, IdentifierInfo *Id,
Sebastian Redl833ef452010-01-26 22:01:41 +00002619 QualType T, TypeSourceInfo *TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00002620 StorageClass S, Expr *DefArg) {
Richard Smith053f6c62014-05-16 23:01:30 +00002621 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
Richard Smithf7981722013-11-22 09:01:48 +00002622 S, DefArg);
Douglas Gregor0760fa12009-03-10 23:43:53 +00002623}
2624
Reid Kleckner8a365022013-06-24 17:51:48 +00002625QualType ParmVarDecl::getOriginalType() const {
2626 TypeSourceInfo *TSI = getTypeSourceInfo();
2627 QualType T = TSI ? TSI->getType() : getType();
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002628 if (const auto *DT = dyn_cast<DecayedType>(T))
Reid Kleckner8a365022013-06-24 17:51:48 +00002629 return DT->getOriginalType();
2630 return T;
2631}
2632
Douglas Gregor72172e92012-01-05 21:55:30 +00002633ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00002634 return new (C, ID)
2635 ParmVarDecl(ParmVar, C, nullptr, SourceLocation(), SourceLocation(),
2636 nullptr, QualType(), nullptr, SC_None, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00002637}
2638
Argyrios Kyrtzidis4c6efa622011-07-30 17:23:26 +00002639SourceRange ParmVarDecl::getSourceRange() const {
2640 if (!hasInheritedDefaultArg()) {
2641 SourceRange ArgRange = getDefaultArgRange();
2642 if (ArgRange.isValid())
2643 return SourceRange(getOuterLocStart(), ArgRange.getEnd());
2644 }
2645
Argyrios Kyrtzidisa0772792013-04-17 01:56:48 +00002646 // DeclaratorDecl considers the range of postfix types as overlapping with the
2647 // declaration name, but this is not the case with parameters in ObjC methods.
2648 if (isa<ObjCMethodDecl>(getDeclContext()))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002649 return SourceRange(DeclaratorDecl::getBeginLoc(), getLocation());
Argyrios Kyrtzidisa0772792013-04-17 01:56:48 +00002650
Argyrios Kyrtzidis4c6efa622011-07-30 17:23:26 +00002651 return DeclaratorDecl::getSourceRange();
2652}
2653
Sebastian Redl833ef452010-01-26 22:01:41 +00002654Expr *ParmVarDecl::getDefaultArg() {
2655 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
2656 assert(!hasUninstantiatedDefaultArg() &&
2657 "Default argument is not yet instantiated!");
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002658
Sebastian Redl833ef452010-01-26 22:01:41 +00002659 Expr *Arg = getInit();
Bill Wendling7c44da22018-10-31 03:48:47 +00002660 if (auto *E = dyn_cast_or_null<FullExpr>(Arg))
Sebastian Redl833ef452010-01-26 22:01:41 +00002661 return E->getSubExpr();
Douglas Gregor0760fa12009-03-10 23:43:53 +00002662
Sebastian Redl833ef452010-01-26 22:01:41 +00002663 return Arg;
2664}
2665
Chandler Carruth813faed2015-12-30 02:51:00 +00002666void ParmVarDecl::setDefaultArg(Expr *defarg) {
2667 ParmVarDeclBits.DefaultArgKind = DAK_Normal;
2668 Init = defarg;
2669}
Sebastian Redl833ef452010-01-26 22:01:41 +00002670
Chandler Carruth813faed2015-12-30 02:51:00 +00002671SourceRange ParmVarDecl::getDefaultArgRange() const {
2672 switch (ParmVarDeclBits.DefaultArgKind) {
2673 case DAK_None:
2674 case DAK_Unparsed:
2675 // Nothing we can do here.
2676 return SourceRange();
2677
2678 case DAK_Uninstantiated:
Sebastian Redl833ef452010-01-26 22:01:41 +00002679 return getUninstantiatedDefaultArg()->getSourceRange();
2680
Chandler Carruth813faed2015-12-30 02:51:00 +00002681 case DAK_Normal:
2682 if (const Expr *E = getInit())
2683 return E->getSourceRange();
2684
2685 // Missing an actual expression, may be invalid.
2686 return SourceRange();
2687 }
2688 llvm_unreachable("Invalid default argument kind.");
2689}
2690
2691void ParmVarDecl::setUninstantiatedDefaultArg(Expr *arg) {
2692 ParmVarDeclBits.DefaultArgKind = DAK_Uninstantiated;
2693 Init = arg;
2694}
2695
2696Expr *ParmVarDecl::getUninstantiatedDefaultArg() {
2697 assert(hasUninstantiatedDefaultArg() &&
2698 "Wrong kind of initialization expression!");
2699 return cast_or_null<Expr>(Init.get<Stmt *>());
2700}
2701
2702bool ParmVarDecl::hasDefaultArg() const {
2703 // FIXME: We should just return false for DAK_None here once callers are
2704 // prepared for the case that we encountered an invalid default argument and
2705 // were unable to even build an invalid expression.
2706 return hasUnparsedDefaultArg() || hasUninstantiatedDefaultArg() ||
2707 !Init.isNull();
Argyrios Kyrtzidis02dd4f92009-07-05 22:21:56 +00002708}
2709
Ted Kremenek540017e2011-10-06 05:00:56 +00002710void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
2711 getASTContext().setParameterIndex(this, parameterIndex);
2712 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
2713}
2714
2715unsigned ParmVarDecl::getParameterIndexLarge() const {
2716 return getASTContext().getParameterIndex(this);
2717}
2718
Nuno Lopes394ec982008-12-17 23:39:55 +00002719//===----------------------------------------------------------------------===//
Chris Lattner59a25942008-03-31 00:36:02 +00002720// FunctionDecl Implementation
2721//===----------------------------------------------------------------------===//
2722
Erich Keane9c665062018-08-01 21:02:40 +00002723FunctionDecl::FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC,
2724 SourceLocation StartLoc,
2725 const DeclarationNameInfo &NameInfo, QualType T,
2726 TypeSourceInfo *TInfo, StorageClass S,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00002727 bool isInlineSpecified,
2728 ConstexprSpecKind ConstexprKind)
Erich Keane9c665062018-08-01 21:02:40 +00002729 : DeclaratorDecl(DK, DC, NameInfo.getLoc(), NameInfo.getName(), T, TInfo,
2730 StartLoc),
2731 DeclContext(DK), redeclarable_base(C), ODRHash(0),
2732 EndRangeLoc(NameInfo.getEndLoc()), DNLoc(NameInfo.getInfo()) {
Jonas Devlieghere64a26302018-11-11 00:56:15 +00002733 assert(T.isNull() || T->isFunctionType());
Bruno Ricci0b639da2018-12-03 13:04:10 +00002734 FunctionDeclBits.SClass = S;
2735 FunctionDeclBits.IsInline = isInlineSpecified;
2736 FunctionDeclBits.IsInlineSpecified = isInlineSpecified;
Bruno Ricci0b639da2018-12-03 13:04:10 +00002737 FunctionDeclBits.IsVirtualAsWritten = false;
2738 FunctionDeclBits.IsPure = false;
2739 FunctionDeclBits.HasInheritedPrototype = false;
2740 FunctionDeclBits.HasWrittenPrototype = true;
2741 FunctionDeclBits.IsDeleted = false;
2742 FunctionDeclBits.IsTrivial = false;
2743 FunctionDeclBits.IsTrivialForCall = false;
2744 FunctionDeclBits.IsDefaulted = false;
2745 FunctionDeclBits.IsExplicitlyDefaulted = false;
2746 FunctionDeclBits.HasImplicitReturnZero = false;
2747 FunctionDeclBits.IsLateTemplateParsed = false;
Gauthier Harnisch796ed032019-06-14 08:56:20 +00002748 FunctionDeclBits.ConstexprKind = ConstexprKind;
Bruno Ricci0b639da2018-12-03 13:04:10 +00002749 FunctionDeclBits.InstantiationIsPending = false;
2750 FunctionDeclBits.UsesSEHTry = false;
2751 FunctionDeclBits.HasSkippedBody = false;
2752 FunctionDeclBits.WillHaveBody = false;
2753 FunctionDeclBits.IsMultiVersion = false;
2754 FunctionDeclBits.IsCopyDeductionCandidate = false;
2755 FunctionDeclBits.HasODRHash = false;
Erich Keane9c665062018-08-01 21:02:40 +00002756}
2757
Benjamin Kramer9170e912013-02-22 15:46:01 +00002758void FunctionDecl::getNameForDiagnostic(
2759 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
2760 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
Douglas Gregorb11aad82011-02-19 18:51:44 +00002761 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
2762 if (TemplateArgs)
Serge Pavlov03e672c2017-11-28 16:14:14 +00002763 printTemplateArgumentList(OS, TemplateArgs->asArray(), Policy);
Douglas Gregorb11aad82011-02-19 18:51:44 +00002764}
2765
Ted Kremenek186a0742010-04-29 16:49:01 +00002766bool FunctionDecl::isVariadic() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002767 if (const auto *FT = getType()->getAs<FunctionProtoType>())
Ted Kremenek186a0742010-04-29 16:49:01 +00002768 return FT->isVariadic();
2769 return false;
2770}
2771
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00002772bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002773 for (auto I : redecls()) {
Serge Pavlov9a618e12017-02-15 12:30:35 +00002774 if (I->doesThisDeclarationHaveABody()) {
Aaron Ballman86c93902014-03-06 23:45:36 +00002775 Definition = I;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00002776 return true;
2777 }
2778 }
2779
2780 return false;
2781}
2782
Anders Carlsson9bd7d162011-05-14 23:26:09 +00002783bool FunctionDecl::hasTrivialBody() const
2784{
2785 Stmt *S = getBody();
2786 if (!S) {
2787 // Since we don't have a body for this function, we don't know if it's
2788 // trivial or not.
2789 return false;
2790 }
2791
2792 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
2793 return true;
2794 return false;
2795}
2796
Alexis Hunt4a8ea102011-05-06 20:44:56 +00002797bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const {
Aaron Ballman86c93902014-03-06 23:45:36 +00002798 for (auto I : redecls()) {
Serge Pavlov10673c92017-06-04 12:53:12 +00002799 if (I->isThisDeclarationADefinition()) {
2800 Definition = I;
Alexis Hunt4a8ea102011-05-06 20:44:56 +00002801 return true;
2802 }
2803 }
2804
2805 return false;
2806}
2807
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +00002808Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
Rafael Espindola44503012013-10-19 01:37:17 +00002809 if (!hasBody(Definition))
Craig Topper36250ad2014-05-12 05:36:57 +00002810 return nullptr;
Rafael Espindola44503012013-10-19 01:37:17 +00002811
2812 if (Definition->Body)
2813 return Definition->Body.get(getASTContext().getExternalSource());
Douglas Gregor89f238c2008-04-21 02:02:58 +00002814
Craig Topper36250ad2014-05-12 05:36:57 +00002815 return nullptr;
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002816}
2817
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002818void FunctionDecl::setBody(Stmt *B) {
2819 Body = B;
Douglas Gregor027ba502010-12-06 17:49:01 +00002820 if (B)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002821 EndRangeLoc = B->getEndLoc();
Argyrios Kyrtzidisa3aeb5a2009-06-20 08:09:14 +00002822}
2823
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002824void FunctionDecl::setPure(bool P) {
Erich Keane9c665062018-08-01 21:02:40 +00002825 FunctionDeclBits.IsPure = P;
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002826 if (P)
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002827 if (auto *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
Douglas Gregor7d9120c2010-09-28 21:55:22 +00002828 Parent->markedVirtualFunctionPure();
2829}
2830
Richard Smith8d0dc312013-07-21 23:12:18 +00002831template<std::size_t Len>
2832static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
2833 IdentifierInfo *II = ND->getIdentifier();
2834 return II && II->isStr(Str);
2835}
2836
Douglas Gregor16618f22009-09-12 00:17:51 +00002837bool FunctionDecl::isMain() const {
John McCall53ffd372011-05-15 17:49:20 +00002838 const TranslationUnitDecl *tunit =
2839 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2840 return tunit &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00002841 !tunit->getASTContext().getLangOpts().Freestanding &&
Richard Smith8d0dc312013-07-21 23:12:18 +00002842 isNamed(this, "main");
John McCall53ffd372011-05-15 17:49:20 +00002843}
2844
David Majnemerc729b0b2013-09-16 22:44:20 +00002845bool FunctionDecl::isMSVCRTEntryPoint() const {
2846 const TranslationUnitDecl *TUnit =
2847 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
2848 if (!TUnit)
2849 return false;
2850
2851 // Even though we aren't really targeting MSVCRT if we are freestanding,
2852 // semantic analysis for these functions remains the same.
2853
2854 // MSVCRT entry points only exist on MSVCRT targets.
2855 if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT())
2856 return false;
2857
2858 // Nameless functions like constructors cannot be entry points.
2859 if (!getIdentifier())
2860 return false;
2861
2862 return llvm::StringSwitch<bool>(getName())
2863 .Cases("main", // an ANSI console app
2864 "wmain", // a Unicode console App
2865 "WinMain", // an ANSI GUI app
2866 "wWinMain", // a Unicode GUI app
2867 "DllMain", // a DLL
2868 true)
2869 .Default(false);
2870}
2871
John McCall53ffd372011-05-15 17:49:20 +00002872bool FunctionDecl::isReservedGlobalPlacementOperator() const {
2873 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
2874 assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
2875 getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2876 getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
2877 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
2878
Richard Smithf6004412014-01-19 23:25:37 +00002879 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2880 return false;
John McCall53ffd372011-05-15 17:49:20 +00002881
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002882 const auto *proto = getType()->castAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00002883 if (proto->getNumParams() != 2 || proto->isVariadic())
2884 return false;
John McCall53ffd372011-05-15 17:49:20 +00002885
2886 ASTContext &Context =
2887 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
2888 ->getASTContext();
2889
2890 // The result type and first argument type are constant across all
2891 // these operators. The second argument must be exactly void*.
Alp Toker9cacbab2014-01-20 20:26:09 +00002892 return (proto->getParamType(1).getCanonicalType() == Context.VoidPtrTy);
Douglas Gregore62c0a42009-02-24 01:23:02 +00002893}
2894
Akira Hatanakacae83f72017-06-29 18:48:40 +00002895bool FunctionDecl::isReplaceableGlobalAllocationFunction(bool *IsAligned) const {
Richard Smith8d0dc312013-07-21 23:12:18 +00002896 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
2897 return false;
2898 if (getDeclName().getCXXOverloadedOperator() != OO_New &&
2899 getDeclName().getCXXOverloadedOperator() != OO_Delete &&
2900 getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
2901 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
2902 return false;
2903
2904 if (isa<CXXRecordDecl>(getDeclContext()))
2905 return false;
Richard Smithf6004412014-01-19 23:25:37 +00002906
2907 // This can only fail for an invalid 'operator new' declaration.
2908 if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
2909 return false;
Richard Smith8d0dc312013-07-21 23:12:18 +00002910
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002911 const auto *FPT = getType()->castAs<FunctionProtoType>();
Richard Smithb2f0f052016-10-10 18:54:32 +00002912 if (FPT->getNumParams() == 0 || FPT->getNumParams() > 3 || FPT->isVariadic())
Richard Smith8d0dc312013-07-21 23:12:18 +00002913 return false;
2914
2915 // If this is a single-parameter function, it must be a replaceable global
2916 // allocation or deallocation function.
Alp Toker9cacbab2014-01-20 20:26:09 +00002917 if (FPT->getNumParams() == 1)
Richard Smith8d0dc312013-07-21 23:12:18 +00002918 return true;
2919
Richard Smithb2f0f052016-10-10 18:54:32 +00002920 unsigned Params = 1;
2921 QualType Ty = FPT->getParamType(Params);
Richard Smith1cdec012013-09-29 04:40:38 +00002922 ASTContext &Ctx = getASTContext();
Richard Smithb2f0f052016-10-10 18:54:32 +00002923
2924 auto Consume = [&] {
2925 ++Params;
2926 Ty = Params < FPT->getNumParams() ? FPT->getParamType(Params) : QualType();
2927 };
2928
2929 // In C++14, the next parameter can be a 'std::size_t' for sized delete.
2930 bool IsSizedDelete = false;
Richard Smithb47c36f2013-11-05 09:12:18 +00002931 if (Ctx.getLangOpts().SizedDeallocation &&
Richard Smithb2f0f052016-10-10 18:54:32 +00002932 (getDeclName().getCXXOverloadedOperator() == OO_Delete ||
2933 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete) &&
2934 Ctx.hasSameType(Ty, Ctx.getSizeType())) {
2935 IsSizedDelete = true;
2936 Consume();
2937 }
2938
2939 // In C++17, the next parameter can be a 'std::align_val_t' for aligned
2940 // new/delete.
Akira Hatanakacae83f72017-06-29 18:48:40 +00002941 if (Ctx.getLangOpts().AlignedAllocation && !Ty.isNull() && Ty->isAlignValT()) {
2942 if (IsAligned)
2943 *IsAligned = true;
Richard Smithb2f0f052016-10-10 18:54:32 +00002944 Consume();
Akira Hatanakacae83f72017-06-29 18:48:40 +00002945 }
Richard Smithb2f0f052016-10-10 18:54:32 +00002946
2947 // Finally, if this is not a sized delete, the final parameter can
2948 // be a 'const std::nothrow_t&'.
2949 if (!IsSizedDelete && !Ty.isNull() && Ty->isReferenceType()) {
2950 Ty = Ty->getPointeeType();
2951 if (Ty.getCVRQualifiers() != Qualifiers::Const)
2952 return false;
2953 const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
2954 if (RD && isNamed(RD, "nothrow_t") && RD->isInStdNamespace())
2955 Consume();
2956 }
2957
2958 return Params == FPT->getNumParams();
Richard Smith8d0dc312013-07-21 23:12:18 +00002959}
2960
Richard Smith5b349582017-10-13 01:55:36 +00002961bool FunctionDecl::isDestroyingOperatorDelete() const {
2962 // C++ P0722:
2963 // Within a class C, a single object deallocation function with signature
2964 // (T, std::destroying_delete_t, <more params>)
2965 // is a destroying operator delete.
2966 if (!isa<CXXMethodDecl>(this) || getOverloadedOperator() != OO_Delete ||
2967 getNumParams() < 2)
2968 return false;
2969
2970 auto *RD = getParamDecl(1)->getType()->getAsCXXRecordDecl();
2971 return RD && RD->isInStdNamespace() && RD->getIdentifier() &&
2972 RD->getIdentifier()->isStr("destroying_delete_t");
2973}
2974
Rafael Espindolaf4187652013-02-14 01:18:37 +00002975LanguageLinkage FunctionDecl::getLanguageLinkage() const {
Alp Toker84212df2014-05-31 06:11:02 +00002976 return getDeclLanguageLinkage(*this);
Rafael Espindola576127d2012-12-28 14:21:58 +00002977}
2978
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002979bool FunctionDecl::isExternC() const {
Alp Toker84212df2014-05-31 06:11:02 +00002980 return isDeclExternC(*this);
Rafael Espindola0e0d0092013-03-14 03:07:35 +00002981}
2982
Rafael Espindola593537a2013-05-05 20:15:21 +00002983bool FunctionDecl::isInExternCContext() const {
Anastasia Stulovad6865b72019-05-07 14:22:34 +00002984 if (hasAttr<OpenCLKernelAttr>())
2985 return true;
Serge Pavlov3cb80222013-11-14 02:13:03 +00002986 return getLexicalDeclContext()->isExternCContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002987}
2988
2989bool FunctionDecl::isInExternCXXContext() const {
Serge Pavlov3cb80222013-11-14 02:13:03 +00002990 return getLexicalDeclContext()->isExternCXXContext();
Rafael Espindola593537a2013-05-05 20:15:21 +00002991}
2992
Douglas Gregorf1b876d2009-03-31 16:35:03 +00002993bool FunctionDecl::isGlobal() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00002994 if (const auto *Method = dyn_cast<CXXMethodDecl>(this))
Douglas Gregorf1b876d2009-03-31 16:35:03 +00002995 return Method->isStatic();
2996
Rafael Espindola6ae7e502013-04-03 19:27:57 +00002997 if (getCanonicalDecl()->getStorageClass() == SC_Static)
Douglas Gregorf1b876d2009-03-31 16:35:03 +00002998 return false;
2999
Mike Stump11289f42009-09-09 15:08:12 +00003000 for (const DeclContext *DC = getDeclContext();
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003001 DC->isNamespace();
3002 DC = DC->getParent()) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003003 if (const auto *Namespace = cast<NamespaceDecl>(DC)) {
Douglas Gregorf1b876d2009-03-31 16:35:03 +00003004 if (!Namespace->getDeclName())
3005 return false;
3006 break;
3007 }
3008 }
3009
3010 return true;
3011}
3012
Richard Smith10876ef2013-01-17 01:30:42 +00003013bool FunctionDecl::isNoReturn() const {
Adrian Prantl721c7cb2016-08-17 16:42:15 +00003014 if (hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
3015 hasAttr<C11NoReturnAttr>())
3016 return true;
3017
3018 if (auto *FnTy = getType()->getAs<FunctionType>())
3019 return FnTy->getNoReturnAttr();
3020
3021 return false;
Richard Smith10876ef2013-01-17 01:30:42 +00003022}
3023
Erich Keane5c0d1922018-11-28 18:34:14 +00003024
3025MultiVersionKind FunctionDecl::getMultiVersionKind() const {
3026 if (hasAttr<TargetAttr>())
3027 return MultiVersionKind::Target;
3028 if (hasAttr<CPUDispatchAttr>())
3029 return MultiVersionKind::CPUDispatch;
3030 if (hasAttr<CPUSpecificAttr>())
3031 return MultiVersionKind::CPUSpecific;
3032 return MultiVersionKind::None;
3033}
3034
Erich Keane3efe0022018-07-20 14:13:28 +00003035bool FunctionDecl::isCPUDispatchMultiVersion() const {
3036 return isMultiVersion() && hasAttr<CPUDispatchAttr>();
3037}
3038
3039bool FunctionDecl::isCPUSpecificMultiVersion() const {
3040 return isMultiVersion() && hasAttr<CPUSpecificAttr>();
3041}
3042
Erich Keane19a8adc2018-10-25 18:57:19 +00003043bool FunctionDecl::isTargetMultiVersion() const {
3044 return isMultiVersion() && hasAttr<TargetAttr>();
3045}
3046
Sebastian Redl833ef452010-01-26 22:01:41 +00003047void
3048FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
Rafael Espindola8db352d2013-10-17 15:37:26 +00003049 redeclarable_base::setPreviousDecl(PrevDecl);
Sebastian Redl833ef452010-01-26 22:01:41 +00003050
3051 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
3052 FunctionTemplateDecl *PrevFunTmpl
Craig Topper36250ad2014-05-12 05:36:57 +00003053 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr;
Sebastian Redl833ef452010-01-26 22:01:41 +00003054 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
Rafael Espindola8db352d2013-10-17 15:37:26 +00003055 FunTmpl->setPreviousDecl(PrevFunTmpl);
Sebastian Redl833ef452010-01-26 22:01:41 +00003056 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003057
Erich Keane9c665062018-08-01 21:02:40 +00003058 if (PrevDecl && PrevDecl->isInlined())
3059 setImplicitlyInline(true);
Sebastian Redl833ef452010-01-26 22:01:41 +00003060}
3061
Rafael Espindola8db352d2013-10-17 15:37:26 +00003062FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl(); }
Sebastian Redl833ef452010-01-26 22:01:41 +00003063
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003064/// Returns a value indicating whether this function corresponds to a builtin
3065/// function.
Douglas Gregorb9063fc2009-02-13 23:20:09 +00003066///
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003067/// The function corresponds to a built-in function if it is declared at
3068/// translation scope or within an extern "C" block and its name matches with
3069/// the name of a builtin. The returned value will be 0 for functions that do
3070/// not correspond to a builtin, a value of type \c Builtin::ID if in the
3071/// target-independent range \c [1,Builtin::First), or a target-specific builtin
3072/// value.
3073///
3074/// \param ConsiderWrapperFunctions If true, we should consider wrapper
3075/// functions as their wrapped builtins. This shouldn't be done in general, but
3076/// it's useful in Sema to diagnose calls to wrappers based on their semantics.
3077unsigned FunctionDecl::getBuiltinID(bool ConsiderWrapperFunctions) const {
Daniel Dunbar304314d2012-03-06 23:52:37 +00003078 if (!getIdentifier())
Douglas Gregore711f702009-02-14 18:57:46 +00003079 return 0;
3080
3081 unsigned BuiltinID = getIdentifier()->getBuiltinID();
Daniel Dunbar304314d2012-03-06 23:52:37 +00003082 if (!BuiltinID)
3083 return 0;
3084
3085 ASTContext &Context = getASTContext();
Warren Hunt445d83e2013-11-01 23:46:51 +00003086 if (Context.getLangOpts().CPlusPlus) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003087 const auto *LinkageDecl =
3088 dyn_cast<LinkageSpecDecl>(getFirstDecl()->getDeclContext());
Warren Hunt445d83e2013-11-01 23:46:51 +00003089 // In C++, the first declaration of a builtin is always inside an implicit
3090 // extern "C".
3091 // FIXME: A recognised library function may not be directly in an extern "C"
3092 // declaration, for instance "extern "C" { namespace std { decl } }".
David Majnemerba3e5ec2015-03-13 18:26:17 +00003093 if (!LinkageDecl) {
3094 if (BuiltinID == Builtin::BI__GetExceptionInfo &&
David Majnemer145abde2016-01-26 01:12:17 +00003095 Context.getTargetInfo().getCXXABI().isMicrosoft())
David Majnemerba3e5ec2015-03-13 18:26:17 +00003096 return Builtin::BI__GetExceptionInfo;
3097 return 0;
3098 }
3099 if (LinkageDecl->getLanguage() != LinkageSpecDecl::lang_c)
Warren Hunt445d83e2013-11-01 23:46:51 +00003100 return 0;
3101 }
3102
3103 // If the function is marked "overloadable", it has a different mangled name
3104 // and is not the C library function.
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003105 if (!ConsiderWrapperFunctions && hasAttr<OverloadableAttr>())
Warren Hunt445d83e2013-11-01 23:46:51 +00003106 return 0;
3107
Douglas Gregore711f702009-02-14 18:57:46 +00003108 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
3109 return BuiltinID;
3110
3111 // This function has the name of a known C library
3112 // function. Determine whether it actually refers to the C library
3113 // function or whether it just has the same name.
3114
Douglas Gregora908e7f2009-02-17 03:23:10 +00003115 // If this is a static function, it's not a builtin.
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +00003116 if (!ConsiderWrapperFunctions && getStorageClass() == SC_Static)
Douglas Gregora908e7f2009-02-17 03:23:10 +00003117 return 0;
3118
Anastasia Stulova1202de32016-02-12 12:07:04 +00003119 // OpenCL v1.2 s6.9.f - The library functions defined in
3120 // the C99 standard headers are not available.
3121 if (Context.getLangOpts().OpenCL &&
3122 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
3123 return 0;
3124
Artem Belevich5ecdb942018-01-23 19:08:18 +00003125 // CUDA does not have device-side standard library. printf and malloc are the
3126 // only special cases that are supported by device-side runtime.
3127 if (Context.getLangOpts().CUDA && hasAttr<CUDADeviceAttr>() &&
3128 !hasAttr<CUDAHostAttr>() &&
3129 !(BuiltinID == Builtin::BIprintf || BuiltinID == Builtin::BImalloc))
3130 return 0;
3131
Warren Hunt445d83e2013-11-01 23:46:51 +00003132 return BuiltinID;
Douglas Gregorb9063fc2009-02-13 23:20:09 +00003133}
3134
Chris Lattner47c0d002009-04-25 06:03:53 +00003135/// getNumParams - Return the number of parameters this function must have
Bob Wilsonb39017a2011-01-10 18:23:55 +00003136/// based on its FunctionType. This is the length of the ParamInfo array
Chris Lattner47c0d002009-04-25 06:03:53 +00003137/// after it has been created.
3138unsigned FunctionDecl::getNumParams() const {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003139 const auto *FPT = getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00003140 return FPT ? FPT->getNumParams() : 0;
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00003141}
3142
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003143void FunctionDecl::setParams(ASTContext &C,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003144 ArrayRef<ParmVarDecl *> NewParamInfo) {
Craig Topper36250ad2014-05-12 05:36:57 +00003145 assert(!ParamInfo && "Already has param info!");
David Blaikie9c70e042011-09-21 18:16:56 +00003146 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
Mike Stump11289f42009-09-09 15:08:12 +00003147
Chris Lattner8f5bf2f2007-01-21 19:04:10 +00003148 // Zero params -> null pointer.
David Blaikie9c70e042011-09-21 18:16:56 +00003149 if (!NewParamInfo.empty()) {
3150 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
3151 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Chris Lattner8f5bf2f2007-01-21 19:04:10 +00003152 }
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00003153}
Chris Lattner41943152007-01-25 04:52:46 +00003154
Chris Lattner58258242008-04-10 02:22:51 +00003155/// getMinRequiredArguments - Returns the minimum number of arguments
3156/// needed to call this function. This may be fewer than the number of
3157/// function parameters, if some of the parameters have default
Richard Smith91151782014-04-01 19:18:16 +00003158/// arguments (in C++) or are parameter packs (C++11).
Chris Lattner58258242008-04-10 02:22:51 +00003159unsigned FunctionDecl::getMinRequiredArguments() const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003160 if (!getASTContext().getLangOpts().CPlusPlus)
Douglas Gregor0dd423e2011-01-11 01:52:23 +00003161 return getNumParams();
Chris Lattner58258242008-04-10 02:22:51 +00003162
Richard Smith91151782014-04-01 19:18:16 +00003163 unsigned NumRequiredArgs = 0;
David Majnemer59f77922016-06-24 04:05:48 +00003164 for (auto *Param : parameters())
Richard Smith91151782014-04-01 19:18:16 +00003165 if (!Param->isParameterPack() && !Param->hasDefaultArg())
3166 ++NumRequiredArgs;
Chris Lattner58258242008-04-10 02:22:51 +00003167 return NumRequiredArgs;
3168}
3169
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003170/// The combination of the extern and inline keywords under MSVC forces
David Majnemer54e3ba52014-04-02 23:17:29 +00003171/// the function to be required.
3172///
3173/// Note: This function assumes that we will only get called when isInlined()
3174/// would return true for this FunctionDecl.
3175bool FunctionDecl::isMSExternInline() const {
3176 assert(isInlined() && "expected to get called on an inlined function!");
3177
3178 const ASTContext &Context = getASTContext();
David Majnemer3f021502015-10-08 04:53:31 +00003179 if (!Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3180 !hasAttr<DLLExportAttr>())
David Majnemer54e3ba52014-04-02 23:17:29 +00003181 return false;
3182
David Majnemer73768702015-03-20 00:02:27 +00003183 for (const FunctionDecl *FD = getMostRecentDecl(); FD;
3184 FD = FD->getPreviousDecl())
David Majnemerc0c42f32015-07-10 20:55:38 +00003185 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
David Majnemer54e3ba52014-04-02 23:17:29 +00003186 return true;
3187
3188 return false;
3189}
3190
3191static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
3192 if (Redecl->getStorageClass() != SC_Extern)
3193 return false;
3194
3195 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
3196 FD = FD->getPreviousDecl())
David Majnemerc0c42f32015-07-10 20:55:38 +00003197 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
David Majnemer54e3ba52014-04-02 23:17:29 +00003198 return false;
3199
3200 return true;
3201}
3202
Eli Friedman1b125c32012-02-07 03:50:18 +00003203static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
3204 // Only consider file-scope declarations in this test.
3205 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
3206 return false;
3207
3208 // Only consider explicit declarations; the presence of a builtin for a
3209 // libcall shouldn't affect whether a definition is externally visible.
3210 if (Redecl->isImplicit())
3211 return false;
3212
Fangrui Song6907ce22018-07-30 19:24:48 +00003213 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003214 return true; // Not an inline definition
3215
3216 return false;
3217}
3218
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003219/// For a function declaration in C or C++, determine whether this
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003220/// declaration causes the definition to be externally visible.
3221///
David Majnemer54e3ba52014-04-02 23:17:29 +00003222/// For instance, this determines if adding the current declaration to the set
Eli Friedman1b125c32012-02-07 03:50:18 +00003223/// of redeclarations of the given functions causes
3224/// isInlineDefinitionExternallyVisible to change from false to true.
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003225bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
Justin Lebar0241c962016-10-28 16:46:39 +00003226 assert(!doesThisDeclarationHaveABody() &&
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003227 "Must have a declaration without a body.");
3228
3229 ASTContext &Context = getASTContext();
3230
David Majnemer54e3ba52014-04-02 23:17:29 +00003231 if (Context.getLangOpts().MSVCCompat) {
3232 const FunctionDecl *Definition;
3233 if (hasBody(Definition) && Definition->isInlined() &&
3234 redeclForcesDefMSVC(this))
3235 return true;
3236 }
3237
David Blaikiebbafb8a2012-03-11 07:00:24 +00003238 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003239 // With GNU inlining, a declaration with 'inline' but not 'extern', forces
3240 // an externally visible definition.
3241 //
3242 // FIXME: What happens if gnu_inline gets added on after the first
3243 // declaration?
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003244 if (!isInlineSpecified() || getStorageClass() == SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003245 return false;
3246
3247 const FunctionDecl *Prev = this;
3248 bool FoundBody = false;
3249 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7d170102013-05-15 07:37:26 +00003250 FoundBody |= Prev->Body.isValid();
Eli Friedman1b125c32012-02-07 03:50:18 +00003251
3252 if (Prev->Body) {
3253 // If it's not the case that both 'inline' and 'extern' are
3254 // specified on the definition, then it is always externally visible.
3255 if (!Prev->isInlineSpecified() ||
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003256 Prev->getStorageClass() != SC_Extern)
Eli Friedman1b125c32012-02-07 03:50:18 +00003257 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003258 } else if (Prev->isInlineSpecified() &&
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003259 Prev->getStorageClass() != SC_Extern) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003260 return false;
3261 }
3262 }
3263 return FoundBody;
3264 }
3265
David Blaikiebbafb8a2012-03-11 07:00:24 +00003266 if (Context.getLangOpts().CPlusPlus)
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003267 return false;
Eli Friedman1b125c32012-02-07 03:50:18 +00003268
3269 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003270 // [...] If all of the file scope declarations for a function in a
3271 // translation unit include the inline function specifier without extern,
Eli Friedman1b125c32012-02-07 03:50:18 +00003272 // then the definition in that translation unit is an inline definition.
3273 if (isInlineSpecified() && getStorageClass() != SC_Extern)
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003274 return false;
Eli Friedman1b125c32012-02-07 03:50:18 +00003275 const FunctionDecl *Prev = this;
3276 bool FoundBody = false;
3277 while ((Prev = Prev->getPreviousDecl())) {
David Blaikie7d170102013-05-15 07:37:26 +00003278 FoundBody |= Prev->Body.isValid();
Eli Friedman1b125c32012-02-07 03:50:18 +00003279 if (RedeclForcesDefC99(Prev))
3280 return false;
3281 }
3282 return FoundBody;
Nick Lewycky26da4dd2011-07-18 05:26:13 +00003283}
3284
Alp Tokerd0787eb2014-07-02 01:47:15 +00003285SourceRange FunctionDecl::getReturnTypeSourceRange() const {
3286 const TypeSourceInfo *TSI = getTypeSourceInfo();
3287 if (!TSI)
3288 return SourceRange();
Alp Tokerf5b10792014-07-02 12:55:58 +00003289 FunctionTypeLoc FTL =
3290 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>();
3291 if (!FTL)
Alp Tokerd0787eb2014-07-02 01:47:15 +00003292 return SourceRange();
3293
Alp Tokerf5b10792014-07-02 12:55:58 +00003294 // Skip self-referential return types.
3295 const SourceManager &SM = getASTContext().getSourceManager();
3296 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003297 SourceLocation Boundary = getNameInfo().getBeginLoc();
Alp Tokerf5b10792014-07-02 12:55:58 +00003298 if (RTRange.isInvalid() || Boundary.isInvalid() ||
3299 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
3300 return SourceRange();
Alp Tokerd0787eb2014-07-02 01:47:15 +00003301
Alp Tokerf5b10792014-07-02 12:55:58 +00003302 return RTRange;
Alp Tokerd0787eb2014-07-02 01:47:15 +00003303}
3304
Malcolm Parsonsa3220ce2017-01-12 16:11:28 +00003305SourceRange FunctionDecl::getExceptionSpecSourceRange() const {
3306 const TypeSourceInfo *TSI = getTypeSourceInfo();
3307 if (!TSI)
3308 return SourceRange();
3309 FunctionTypeLoc FTL =
3310 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>();
3311 if (!FTL)
3312 return SourceRange();
3313
3314 return FTL.getExceptionSpecRange();
3315}
3316
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003317/// For an inline function definition in C, or for a gnu_inline function
Richard Smithf3814ad2013-01-25 00:08:28 +00003318/// in C++, determine whether the definition will be externally visible.
Douglas Gregor299d76e2009-09-13 07:46:26 +00003319///
3320/// Inline function definitions are always available for inlining optimizations.
3321/// However, depending on the language dialect, declaration specifiers, and
3322/// attributes, the definition of an inline function may or may not be
3323/// "externally" visible to other translation units in the program.
3324///
3325/// In C99, inline definitions are not externally visible by default. However,
Mike Stump13c66702010-01-06 02:05:39 +00003326/// if even one of the global-scope declarations is marked "extern inline", the
Douglas Gregor299d76e2009-09-13 07:46:26 +00003327/// inline definition becomes externally visible (C99 6.7.4p6).
3328///
3329/// In GNU89 mode, or if the gnu_inline attribute is attached to the function
Fangrui Song6907ce22018-07-30 19:24:48 +00003330/// definition, we use the GNU semantics for inline, which are nearly the
3331/// opposite of C99 semantics. In particular, "inline" by itself will create
3332/// an externally visible symbol, but "extern inline" will not create an
Douglas Gregor299d76e2009-09-13 07:46:26 +00003333/// externally visible symbol.
3334bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
Manuel Klimekda7456a2016-11-01 10:30:50 +00003335 assert((doesThisDeclarationHaveABody() || willHaveBody()) &&
3336 "Must be a function definition");
Douglas Gregor583dcaf2009-10-27 21:11:48 +00003337 assert(isInlined() && "Function must be inline");
Douglas Gregorb7e5c842009-10-27 23:26:40 +00003338 ASTContext &Context = getASTContext();
Fangrui Song6907ce22018-07-30 19:24:48 +00003339
David Blaikiebbafb8a2012-03-11 07:00:24 +00003340 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
Eli Friedman1b125c32012-02-07 03:50:18 +00003341 // Note: If you change the logic here, please change
3342 // doesDeclarationForceExternallyVisibleDefinition as well.
3343 //
Douglas Gregorff76cb92010-12-09 16:59:22 +00003344 // If it's not the case that both 'inline' and 'extern' are
3345 // specified on the definition, then this inline definition is
3346 // externally visible.
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003347 if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
Douglas Gregorff76cb92010-12-09 16:59:22 +00003348 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003349
Douglas Gregorff76cb92010-12-09 16:59:22 +00003350 // If any declaration is 'inline' but not 'extern', then this definition
3351 // is externally visible.
Aaron Ballman86c93902014-03-06 23:45:36 +00003352 for (auto Redecl : redecls()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00003353 if (Redecl->isInlineSpecified() &&
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003354 Redecl->getStorageClass() != SC_Extern)
Douglas Gregor299d76e2009-09-13 07:46:26 +00003355 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003356 }
3357
Douglas Gregor76fe50c2009-04-28 06:37:30 +00003358 return false;
Douglas Gregor299d76e2009-09-13 07:46:26 +00003359 }
Eli Friedman1b125c32012-02-07 03:50:18 +00003360
Richard Smithf3814ad2013-01-25 00:08:28 +00003361 // The rest of this function is C-only.
3362 assert(!Context.getLangOpts().CPlusPlus &&
3363 "should not use C inline rules in C++");
3364
Douglas Gregor299d76e2009-09-13 07:46:26 +00003365 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003366 // [...] If all of the file scope declarations for a function in a
3367 // translation unit include the inline function specifier without extern,
Douglas Gregor299d76e2009-09-13 07:46:26 +00003368 // then the definition in that translation unit is an inline definition.
Aaron Ballman86c93902014-03-06 23:45:36 +00003369 for (auto Redecl : redecls()) {
3370 if (RedeclForcesDefC99(Redecl))
Eli Friedman1b125c32012-02-07 03:50:18 +00003371 return true;
Douglas Gregor299d76e2009-09-13 07:46:26 +00003372 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003373
Douglas Gregor299d76e2009-09-13 07:46:26 +00003374 // C99 6.7.4p6:
Fangrui Song6907ce22018-07-30 19:24:48 +00003375 // An inline definition does not provide an external definition for the
3376 // function, and does not forbid an external definition in another
Douglas Gregor299d76e2009-09-13 07:46:26 +00003377 // translation unit.
Douglas Gregor76fe50c2009-04-28 06:37:30 +00003378 return false;
3379}
3380
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00003381/// getOverloadedOperator - Which C++ overloaded operator this
3382/// function represents, if any.
3383OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregor163c5852008-11-18 14:39:36 +00003384 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
3385 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00003386 else
3387 return OO_None;
3388}
3389
Alexis Huntc88db062010-01-13 09:01:02 +00003390/// getLiteralIdentifier - The literal suffix identifier this function
3391/// represents, if any.
3392const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
3393 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
3394 return getDeclName().getCXXLiteralIdentifier();
3395 else
Craig Topper36250ad2014-05-12 05:36:57 +00003396 return nullptr;
Alexis Huntc88db062010-01-13 09:01:02 +00003397}
3398
Argyrios Kyrtzidiscb6f3462010-06-22 09:54:51 +00003399FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
3400 if (TemplateOrSpecialization.isNull())
3401 return TK_NonTemplate;
3402 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
3403 return TK_FunctionTemplate;
3404 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
3405 return TK_MemberSpecialization;
3406 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
3407 return TK_FunctionTemplateSpecialization;
3408 if (TemplateOrSpecialization.is
3409 <DependentFunctionTemplateSpecializationInfo*>())
3410 return TK_DependentFunctionTemplateSpecialization;
3411
David Blaikie83d382b2011-09-23 05:06:16 +00003412 llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
Argyrios Kyrtzidiscb6f3462010-06-22 09:54:51 +00003413}
3414
Douglas Gregord801b062009-10-07 23:56:10 +00003415FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
Douglas Gregor06db9f52009-10-12 20:18:28 +00003416 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
Douglas Gregord801b062009-10-07 23:56:10 +00003417 return cast<FunctionDecl>(Info->getInstantiatedFrom());
Craig Topper36250ad2014-05-12 05:36:57 +00003418
3419 return nullptr;
Douglas Gregord801b062009-10-07 23:56:10 +00003420}
3421
Chandler Carruth21c90602015-12-30 03:24:14 +00003422MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
Richard Smithf19a8b02019-05-02 00:49:14 +00003423 if (auto *MSI =
3424 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
3425 return MSI;
3426 if (auto *FTSI = TemplateOrSpecialization
3427 .dyn_cast<FunctionTemplateSpecializationInfo *>())
3428 return FTSI->getMemberSpecializationInfo();
3429 return nullptr;
Chandler Carruth21c90602015-12-30 03:24:14 +00003430}
3431
Fangrui Song6907ce22018-07-30 19:24:48 +00003432void
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003433FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
3434 FunctionDecl *FD,
Douglas Gregord801b062009-10-07 23:56:10 +00003435 TemplateSpecializationKind TSK) {
Fangrui Song6907ce22018-07-30 19:24:48 +00003436 assert(TemplateOrSpecialization.isNull() &&
Douglas Gregord801b062009-10-07 23:56:10 +00003437 "Member function is already a specialization");
Fangrui Song6907ce22018-07-30 19:24:48 +00003438 MemberSpecializationInfo *Info
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003439 = new (C) MemberSpecializationInfo(FD, TSK);
Douglas Gregord801b062009-10-07 23:56:10 +00003440 TemplateOrSpecialization = Info;
3441}
3442
Chandler Carruth21c90602015-12-30 03:24:14 +00003443FunctionTemplateDecl *FunctionDecl::getDescribedFunctionTemplate() const {
3444 return TemplateOrSpecialization.dyn_cast<FunctionTemplateDecl *>();
3445}
3446
3447void FunctionDecl::setDescribedFunctionTemplate(FunctionTemplateDecl *Template) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003448 assert(TemplateOrSpecialization.isNull() &&
3449 "Member function is already a specialization");
Chandler Carruth21c90602015-12-30 03:24:14 +00003450 TemplateOrSpecialization = Template;
3451}
3452
Douglas Gregorafca3b42009-10-27 20:53:28 +00003453bool FunctionDecl::isImplicitlyInstantiable() const {
Douglas Gregor69f6a362010-05-17 17:34:56 +00003454 // If the function is invalid, it can't be implicitly instantiated.
3455 if (isInvalidDecl())
Douglas Gregorafca3b42009-10-27 20:53:28 +00003456 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003457
Richard Smithf19a8b02019-05-02 00:49:14 +00003458 switch (getTemplateSpecializationKindForInstantiation()) {
Douglas Gregorafca3b42009-10-27 20:53:28 +00003459 case TSK_Undeclared:
Douglas Gregorafca3b42009-10-27 20:53:28 +00003460 case TSK_ExplicitInstantiationDefinition:
Richard Smithf19a8b02019-05-02 00:49:14 +00003461 case TSK_ExplicitSpecialization:
Douglas Gregorafca3b42009-10-27 20:53:28 +00003462 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00003463
Douglas Gregorafca3b42009-10-27 20:53:28 +00003464 case TSK_ImplicitInstantiation:
3465 return true;
3466
3467 case TSK_ExplicitInstantiationDeclaration:
3468 // Handled below.
3469 break;
3470 }
3471
3472 // Find the actual template from which we will instantiate.
3473 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003474 bool HasPattern = false;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003475 if (PatternDecl)
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003476 HasPattern = PatternDecl->hasBody(PatternDecl);
Fangrui Song6907ce22018-07-30 19:24:48 +00003477
Douglas Gregorafca3b42009-10-27 20:53:28 +00003478 // C++0x [temp.explicit]p9:
3479 // Except for inline functions, other explicit instantiation declarations
3480 // have the effect of suppressing the implicit instantiation of the entity
Fangrui Song6907ce22018-07-30 19:24:48 +00003481 // to which they refer.
3482 if (!HasPattern || !PatternDecl)
Douglas Gregorafca3b42009-10-27 20:53:28 +00003483 return true;
3484
Douglas Gregor583dcaf2009-10-27 21:11:48 +00003485 return PatternDecl->isInlined();
Ted Kremenek85825ae2011-12-01 00:59:17 +00003486}
3487
3488bool FunctionDecl::isTemplateInstantiation() const {
Richard Smithf19a8b02019-05-02 00:49:14 +00003489 // FIXME: Remove this, it's not clear what it means. (Which template
3490 // specialization kind?)
3491 return clang::isTemplateInstantiation(getTemplateSpecializationKind());
Ted Kremenek85825ae2011-12-01 00:59:17 +00003492}
Fangrui Song6907ce22018-07-30 19:24:48 +00003493
Douglas Gregorafca3b42009-10-27 20:53:28 +00003494FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const {
Fangrui Song6907ce22018-07-30 19:24:48 +00003495 // If this is a generic lambda call operator specialization, its
Faisal Valib90b2112014-04-03 16:32:21 +00003496 // instantiation pattern is always its primary template's pattern
Fangrui Song6907ce22018-07-30 19:24:48 +00003497 // even if its primary template was instantiated from another
Faisal Valib90b2112014-04-03 16:32:21 +00003498 // member template (which happens with nested generic lambdas).
Fangrui Song6907ce22018-07-30 19:24:48 +00003499 // Since a lambda's call operator's body is transformed eagerly,
3500 // we don't have to go hunting for a prototype definition template
3501 // (i.e. instantiated-from-member-template) to use as an instantiation
Faisal Valib90b2112014-04-03 16:32:21 +00003502 // pattern.
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003503
Faisal Valib90b2112014-04-03 16:32:21 +00003504 if (isGenericLambdaCallOperatorSpecialization(
3505 dyn_cast<CXXMethodDecl>(this))) {
Richard Smith2195ec92017-04-21 01:15:13 +00003506 assert(getPrimaryTemplate() && "not a generic lambda call operator?");
3507 return getDefinitionOrSelf(getPrimaryTemplate()->getTemplatedDecl());
Faisal Valib90b2112014-04-03 16:32:21 +00003508 }
Richard Smith2195ec92017-04-21 01:15:13 +00003509
Richard Smithf19a8b02019-05-02 00:49:14 +00003510 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo()) {
3511 if (!clang::isTemplateInstantiation(Info->getTemplateSpecializationKind()))
3512 return nullptr;
3513 return getDefinitionOrSelf(cast<FunctionDecl>(Info->getInstantiatedFrom()));
3514 }
3515
3516 if (!clang::isTemplateInstantiation(getTemplateSpecializationKind()))
3517 return nullptr;
3518
Douglas Gregorafca3b42009-10-27 20:53:28 +00003519 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
Richard Smitha6b41d72019-05-03 23:51:38 +00003520 // If we hit a point where the user provided a specialization of this
3521 // template, we're done looking.
3522 while (!Primary->isMemberSpecialization()) {
3523 auto *NewPrimary = Primary->getInstantiatedFromMemberTemplate();
3524 if (!NewPrimary)
Douglas Gregorafca3b42009-10-27 20:53:28 +00003525 break;
Richard Smitha6b41d72019-05-03 23:51:38 +00003526 Primary = NewPrimary;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003527 }
Richard Smith2195ec92017-04-21 01:15:13 +00003528
3529 return getDefinitionOrSelf(Primary->getTemplatedDecl());
Fangrui Song6907ce22018-07-30 19:24:48 +00003530 }
Richard Smith2195ec92017-04-21 01:15:13 +00003531
Richard Smith2195ec92017-04-21 01:15:13 +00003532 return nullptr;
Douglas Gregorafca3b42009-10-27 20:53:28 +00003533}
3534
Douglas Gregor70d83e22009-06-29 17:30:29 +00003535FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
Mike Stump11289f42009-09-09 15:08:12 +00003536 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregor70d83e22009-06-29 17:30:29 +00003537 = TemplateOrSpecialization
3538 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003539 return Info->getTemplate();
Douglas Gregor70d83e22009-06-29 17:30:29 +00003540 }
Craig Topper36250ad2014-05-12 05:36:57 +00003541 return nullptr;
Douglas Gregor70d83e22009-06-29 17:30:29 +00003542}
3543
Chandler Carruth21c90602015-12-30 03:24:14 +00003544FunctionTemplateSpecializationInfo *
3545FunctionDecl::getTemplateSpecializationInfo() const {
3546 return TemplateOrSpecialization
3547 .dyn_cast<FunctionTemplateSpecializationInfo *>();
3548}
3549
Douglas Gregor70d83e22009-06-29 17:30:29 +00003550const TemplateArgumentList *
3551FunctionDecl::getTemplateSpecializationArgs() const {
Mike Stump11289f42009-09-09 15:08:12 +00003552 if (FunctionTemplateSpecializationInfo *Info
Douglas Gregorcf915552009-10-13 16:30:37 +00003553 = TemplateOrSpecialization
3554 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
Douglas Gregor70d83e22009-06-29 17:30:29 +00003555 return Info->TemplateArguments;
3556 }
Craig Topper36250ad2014-05-12 05:36:57 +00003557 return nullptr;
Douglas Gregor70d83e22009-06-29 17:30:29 +00003558}
3559
Argyrios Kyrtzidise9a24432011-09-22 20:07:09 +00003560const ASTTemplateArgumentListInfo *
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003561FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
3562 if (FunctionTemplateSpecializationInfo *Info
3563 = TemplateOrSpecialization
3564 .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
3565 return Info->TemplateArgumentsAsWritten;
3566 }
Craig Topper36250ad2014-05-12 05:36:57 +00003567 return nullptr;
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003568}
3569
Mike Stump11289f42009-09-09 15:08:12 +00003570void
Argyrios Kyrtzidisf4bc0d82010-09-08 19:31:22 +00003571FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
3572 FunctionTemplateDecl *Template,
Douglas Gregor8f5d4422009-06-29 20:59:39 +00003573 const TemplateArgumentList *TemplateArgs,
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00003574 void *InsertPos,
Abramo Bagnara02ccd282010-05-20 15:32:11 +00003575 TemplateSpecializationKind TSK,
Argyrios Kyrtzidis927d8e02010-07-05 10:37:55 +00003576 const TemplateArgumentListInfo *TemplateArgsAsWritten,
3577 SourceLocation PointOfInstantiation) {
Richard Smithf19a8b02019-05-02 00:49:14 +00003578 assert((TemplateOrSpecialization.isNull() ||
3579 TemplateOrSpecialization.is<MemberSpecializationInfo *>()) &&
3580 "Member function is already a specialization");
Fangrui Song6907ce22018-07-30 19:24:48 +00003581 assert(TSK != TSK_Undeclared &&
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00003582 "Must specify the type of function template specialization");
Richard Smithf19a8b02019-05-02 00:49:14 +00003583 assert((TemplateOrSpecialization.isNull() ||
3584 TSK == TSK_ExplicitSpecialization) &&
3585 "Member specialization must be an explicit specialization");
3586 FunctionTemplateSpecializationInfo *Info =
3587 FunctionTemplateSpecializationInfo::Create(
3588 C, this, Template, TSK, TemplateArgs, TemplateArgsAsWritten,
3589 PointOfInstantiation,
3590 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>());
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00003591 TemplateOrSpecialization = Info;
Douglas Gregorce9978f2012-03-28 14:34:23 +00003592 Template->addSpecialization(Info, InsertPos);
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00003593}
3594
John McCallb9c78482010-04-08 09:05:18 +00003595void
3596FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
3597 const UnresolvedSetImpl &Templates,
3598 const TemplateArgumentListInfo &TemplateArgs) {
3599 assert(TemplateOrSpecialization.isNull());
John McCallb9c78482010-04-08 09:05:18 +00003600 DependentFunctionTemplateSpecializationInfo *Info =
James Y Knight7a22b242015-08-06 20:26:32 +00003601 DependentFunctionTemplateSpecializationInfo::Create(Context, Templates,
3602 TemplateArgs);
John McCallb9c78482010-04-08 09:05:18 +00003603 TemplateOrSpecialization = Info;
3604}
3605
James Y Knight7a22b242015-08-06 20:26:32 +00003606DependentFunctionTemplateSpecializationInfo *
Chandler Carruth21c90602015-12-30 03:24:14 +00003607FunctionDecl::getDependentSpecializationInfo() const {
3608 return TemplateOrSpecialization
3609 .dyn_cast<DependentFunctionTemplateSpecializationInfo *>();
3610}
3611
3612DependentFunctionTemplateSpecializationInfo *
James Y Knight7a22b242015-08-06 20:26:32 +00003613DependentFunctionTemplateSpecializationInfo::Create(
3614 ASTContext &Context, const UnresolvedSetImpl &Ts,
3615 const TemplateArgumentListInfo &TArgs) {
3616 void *Buffer = Context.Allocate(
3617 totalSizeToAlloc<TemplateArgumentLoc, FunctionTemplateDecl *>(
3618 TArgs.size(), Ts.size()));
3619 return new (Buffer) DependentFunctionTemplateSpecializationInfo(Ts, TArgs);
3620}
3621
John McCallb9c78482010-04-08 09:05:18 +00003622DependentFunctionTemplateSpecializationInfo::
3623DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
3624 const TemplateArgumentListInfo &TArgs)
Benjamin Kramer3ebba522015-04-02 12:43:31 +00003625 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
James Y Knight53c76162015-07-17 18:21:37 +00003626 NumTemplates = Ts.size();
3627 NumArgs = TArgs.size();
Benjamin Kramer3ebba522015-04-02 12:43:31 +00003628
James Y Knight7a22b242015-08-06 20:26:32 +00003629 FunctionTemplateDecl **TsArray = getTrailingObjects<FunctionTemplateDecl *>();
John McCallb9c78482010-04-08 09:05:18 +00003630 for (unsigned I = 0, E = Ts.size(); I != E; ++I)
3631 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
3632
James Y Knight7a22b242015-08-06 20:26:32 +00003633 TemplateArgumentLoc *ArgsArray = getTrailingObjects<TemplateArgumentLoc>();
John McCallb9c78482010-04-08 09:05:18 +00003634 for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
3635 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
3636}
3637
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003638TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
Mike Stump11289f42009-09-09 15:08:12 +00003639 // For a function template specialization, query the specialization
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003640 // information object.
Richard Smithf19a8b02019-05-02 00:49:14 +00003641 if (FunctionTemplateSpecializationInfo *FTSInfo =
3642 TemplateOrSpecialization
3643 .dyn_cast<FunctionTemplateSpecializationInfo *>())
Douglas Gregord801b062009-10-07 23:56:10 +00003644 return FTSInfo->getTemplateSpecializationKind();
Mike Stump11289f42009-09-09 15:08:12 +00003645
Richard Smithf19a8b02019-05-02 00:49:14 +00003646 if (MemberSpecializationInfo *MSInfo =
3647 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
3648 return MSInfo->getTemplateSpecializationKind();
3649
3650 return TSK_Undeclared;
3651}
3652
3653TemplateSpecializationKind
3654FunctionDecl::getTemplateSpecializationKindForInstantiation() const {
3655 // This is the same as getTemplateSpecializationKind(), except that for a
3656 // function that is both a function template specialization and a member
3657 // specialization, we prefer the member specialization information. Eg:
3658 //
3659 // template<typename T> struct A {
3660 // template<typename U> void f() {}
3661 // template<> void f<int>() {}
3662 // };
3663 //
3664 // For A<int>::f<int>():
3665 // * getTemplateSpecializationKind() will return TSK_ExplicitSpecialization
3666 // * getTemplateSpecializationKindForInstantiation() will return
3667 // TSK_ImplicitInstantiation
3668 //
3669 // This reflects the facts that A<int>::f<int> is an explicit specialization
3670 // of A<int>::f, and that A<int>::f<int> should be implicitly instantiated
3671 // from A::f<int> if a definition is needed.
3672 if (FunctionTemplateSpecializationInfo *FTSInfo =
3673 TemplateOrSpecialization
3674 .dyn_cast<FunctionTemplateSpecializationInfo *>()) {
3675 if (auto *MSInfo = FTSInfo->getMemberSpecializationInfo())
3676 return MSInfo->getTemplateSpecializationKind();
3677 return FTSInfo->getTemplateSpecializationKind();
3678 }
3679
3680 if (MemberSpecializationInfo *MSInfo =
3681 TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
Douglas Gregord801b062009-10-07 23:56:10 +00003682 return MSInfo->getTemplateSpecializationKind();
Fangrui Song6907ce22018-07-30 19:24:48 +00003683
Douglas Gregord801b062009-10-07 23:56:10 +00003684 return TSK_Undeclared;
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003685}
3686
Mike Stump11289f42009-09-09 15:08:12 +00003687void
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003688FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
3689 SourceLocation PointOfInstantiation) {
3690 if (FunctionTemplateSpecializationInfo *FTSInfo
3691 = TemplateOrSpecialization.dyn_cast<
3692 FunctionTemplateSpecializationInfo*>()) {
3693 FTSInfo->setTemplateSpecializationKind(TSK);
3694 if (TSK != TSK_ExplicitSpecialization &&
3695 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00003696 FTSInfo->getPointOfInstantiation().isInvalid()) {
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003697 FTSInfo->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00003698 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
3699 L->InstantiationRequested(this);
3700 }
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003701 } else if (MemberSpecializationInfo *MSInfo
3702 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
3703 MSInfo->setTemplateSpecializationKind(TSK);
3704 if (TSK != TSK_ExplicitSpecialization &&
3705 PointOfInstantiation.isValid() &&
Richard Smith891fc7f2017-12-05 01:31:47 +00003706 MSInfo->getPointOfInstantiation().isInvalid()) {
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003707 MSInfo->setPointOfInstantiation(PointOfInstantiation);
Richard Smith891fc7f2017-12-05 01:31:47 +00003708 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
3709 L->InstantiationRequested(this);
3710 }
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003711 } else
David Blaikie83d382b2011-09-23 05:06:16 +00003712 llvm_unreachable("Function cannot have a template specialization kind");
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003713}
3714
3715SourceLocation FunctionDecl::getPointOfInstantiation() const {
Douglas Gregord801b062009-10-07 23:56:10 +00003716 if (FunctionTemplateSpecializationInfo *FTSInfo
3717 = TemplateOrSpecialization.dyn_cast<
3718 FunctionTemplateSpecializationInfo*>())
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003719 return FTSInfo->getPointOfInstantiation();
Douglas Gregord801b062009-10-07 23:56:10 +00003720 else if (MemberSpecializationInfo *MSInfo
3721 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>())
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003722 return MSInfo->getPointOfInstantiation();
Fangrui Song6907ce22018-07-30 19:24:48 +00003723
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00003724 return SourceLocation();
Douglas Gregore8925db2009-06-29 22:39:32 +00003725}
3726
Douglas Gregor6411b922009-09-11 20:15:17 +00003727bool FunctionDecl::isOutOfLine() const {
Douglas Gregorb11aad82011-02-19 18:51:44 +00003728 if (Decl::isOutOfLine())
Douglas Gregor6411b922009-09-11 20:15:17 +00003729 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00003730
3731 // If this function was instantiated from a member function of a
Douglas Gregor6411b922009-09-11 20:15:17 +00003732 // class template, check whether that member function was defined out-of-line.
3733 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
3734 const FunctionDecl *Definition;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003735 if (FD->hasBody(Definition))
Douglas Gregor6411b922009-09-11 20:15:17 +00003736 return Definition->isOutOfLine();
3737 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003738
Douglas Gregor6411b922009-09-11 20:15:17 +00003739 // If this function was instantiated from a function template,
3740 // check whether that function template was defined out-of-line.
3741 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
3742 const FunctionDecl *Definition;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00003743 if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
Douglas Gregor6411b922009-09-11 20:15:17 +00003744 return Definition->isOutOfLine();
3745 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003746
Douglas Gregor6411b922009-09-11 20:15:17 +00003747 return false;
3748}
3749
Abramo Bagnaraea947882011-03-08 16:41:52 +00003750SourceRange FunctionDecl::getSourceRange() const {
3751 return SourceRange(getOuterLocStart(), EndRangeLoc);
3752}
3753
Anna Zaks28db7ce2012-01-18 02:45:01 +00003754unsigned FunctionDecl::getMemoryFunctionKind() const {
Anna Zaks201d4892012-01-13 21:52:01 +00003755 IdentifierInfo *FnInfo = getIdentifier();
3756
3757 if (!FnInfo)
Anna Zaks22122702012-01-17 00:37:07 +00003758 return 0;
Fangrui Song6907ce22018-07-30 19:24:48 +00003759
Anna Zaks201d4892012-01-13 21:52:01 +00003760 // Builtin handling.
3761 switch (getBuiltinID()) {
3762 case Builtin::BI__builtin_memset:
3763 case Builtin::BI__builtin___memset_chk:
3764 case Builtin::BImemset:
Anna Zaks22122702012-01-17 00:37:07 +00003765 return Builtin::BImemset;
Anna Zaks201d4892012-01-13 21:52:01 +00003766
3767 case Builtin::BI__builtin_memcpy:
3768 case Builtin::BI__builtin___memcpy_chk:
3769 case Builtin::BImemcpy:
Anna Zaks22122702012-01-17 00:37:07 +00003770 return Builtin::BImemcpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003771
3772 case Builtin::BI__builtin_memmove:
3773 case Builtin::BI__builtin___memmove_chk:
3774 case Builtin::BImemmove:
Anna Zaks22122702012-01-17 00:37:07 +00003775 return Builtin::BImemmove;
Anna Zaks201d4892012-01-13 21:52:01 +00003776
3777 case Builtin::BIstrlcpy:
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003778 case Builtin::BI__builtin___strlcpy_chk:
Anna Zaks22122702012-01-17 00:37:07 +00003779 return Builtin::BIstrlcpy;
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003780
Anna Zaks201d4892012-01-13 21:52:01 +00003781 case Builtin::BIstrlcat:
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00003782 case Builtin::BI__builtin___strlcat_chk:
Anna Zaks22122702012-01-17 00:37:07 +00003783 return Builtin::BIstrlcat;
Anna Zaks201d4892012-01-13 21:52:01 +00003784
3785 case Builtin::BI__builtin_memcmp:
Anna Zaks22122702012-01-17 00:37:07 +00003786 case Builtin::BImemcmp:
3787 return Builtin::BImemcmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003788
Clement Courbet8c3343d2019-02-14 12:00:34 +00003789 case Builtin::BI__builtin_bcmp:
3790 case Builtin::BIbcmp:
3791 return Builtin::BIbcmp;
3792
Anna Zaks201d4892012-01-13 21:52:01 +00003793 case Builtin::BI__builtin_strncpy:
3794 case Builtin::BI__builtin___strncpy_chk:
3795 case Builtin::BIstrncpy:
Anna Zaks22122702012-01-17 00:37:07 +00003796 return Builtin::BIstrncpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003797
3798 case Builtin::BI__builtin_strncmp:
Anna Zaks22122702012-01-17 00:37:07 +00003799 case Builtin::BIstrncmp:
3800 return Builtin::BIstrncmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003801
3802 case Builtin::BI__builtin_strncasecmp:
Anna Zaks22122702012-01-17 00:37:07 +00003803 case Builtin::BIstrncasecmp:
3804 return Builtin::BIstrncasecmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003805
3806 case Builtin::BI__builtin_strncat:
Anna Zaks314cd092012-02-01 19:08:57 +00003807 case Builtin::BI__builtin___strncat_chk:
Anna Zaks201d4892012-01-13 21:52:01 +00003808 case Builtin::BIstrncat:
Anna Zaks22122702012-01-17 00:37:07 +00003809 return Builtin::BIstrncat;
Anna Zaks201d4892012-01-13 21:52:01 +00003810
3811 case Builtin::BI__builtin_strndup:
3812 case Builtin::BIstrndup:
Anna Zaks22122702012-01-17 00:37:07 +00003813 return Builtin::BIstrndup;
Anna Zaks201d4892012-01-13 21:52:01 +00003814
Anna Zaks314cd092012-02-01 19:08:57 +00003815 case Builtin::BI__builtin_strlen:
3816 case Builtin::BIstrlen:
3817 return Builtin::BIstrlen;
3818
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00003819 case Builtin::BI__builtin_bzero:
3820 case Builtin::BIbzero:
3821 return Builtin::BIbzero;
3822
Anna Zaks201d4892012-01-13 21:52:01 +00003823 default:
Rafael Espindola5bda63f2013-02-14 01:47:04 +00003824 if (isExternC()) {
Anna Zaks201d4892012-01-13 21:52:01 +00003825 if (FnInfo->isStr("memset"))
Anna Zaks22122702012-01-17 00:37:07 +00003826 return Builtin::BImemset;
Anna Zaks201d4892012-01-13 21:52:01 +00003827 else if (FnInfo->isStr("memcpy"))
Anna Zaks22122702012-01-17 00:37:07 +00003828 return Builtin::BImemcpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003829 else if (FnInfo->isStr("memmove"))
Anna Zaks22122702012-01-17 00:37:07 +00003830 return Builtin::BImemmove;
Anna Zaks201d4892012-01-13 21:52:01 +00003831 else if (FnInfo->isStr("memcmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003832 return Builtin::BImemcmp;
Clement Courbet8c3343d2019-02-14 12:00:34 +00003833 else if (FnInfo->isStr("bcmp"))
3834 return Builtin::BIbcmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003835 else if (FnInfo->isStr("strncpy"))
Anna Zaks22122702012-01-17 00:37:07 +00003836 return Builtin::BIstrncpy;
Anna Zaks201d4892012-01-13 21:52:01 +00003837 else if (FnInfo->isStr("strncmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003838 return Builtin::BIstrncmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003839 else if (FnInfo->isStr("strncasecmp"))
Anna Zaks22122702012-01-17 00:37:07 +00003840 return Builtin::BIstrncasecmp;
Anna Zaks201d4892012-01-13 21:52:01 +00003841 else if (FnInfo->isStr("strncat"))
Anna Zaks22122702012-01-17 00:37:07 +00003842 return Builtin::BIstrncat;
Anna Zaks201d4892012-01-13 21:52:01 +00003843 else if (FnInfo->isStr("strndup"))
Anna Zaks22122702012-01-17 00:37:07 +00003844 return Builtin::BIstrndup;
Anna Zaks314cd092012-02-01 19:08:57 +00003845 else if (FnInfo->isStr("strlen"))
3846 return Builtin::BIstrlen;
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00003847 else if (FnInfo->isStr("bzero"))
3848 return Builtin::BIbzero;
Anna Zaks201d4892012-01-13 21:52:01 +00003849 }
3850 break;
3851 }
Anna Zaks22122702012-01-17 00:37:07 +00003852 return 0;
Anna Zaks201d4892012-01-13 21:52:01 +00003853}
3854
Richard Trieu27c1b1a2018-07-10 01:40:50 +00003855unsigned FunctionDecl::getODRHash() const {
Erich Keane9c665062018-08-01 21:02:40 +00003856 assert(hasODRHash());
Richard Trieu27c1b1a2018-07-10 01:40:50 +00003857 return ODRHash;
3858}
3859
Richard Trieue6caa262017-12-23 00:41:01 +00003860unsigned FunctionDecl::getODRHash() {
Erich Keane9c665062018-08-01 21:02:40 +00003861 if (hasODRHash())
Richard Trieue6caa262017-12-23 00:41:01 +00003862 return ODRHash;
3863
Richard Trieu0ac2eb72018-02-22 05:50:29 +00003864 if (auto *FT = getInstantiatedFromMemberFunction()) {
Erich Keane9c665062018-08-01 21:02:40 +00003865 setHasODRHash(true);
Richard Trieu0ac2eb72018-02-22 05:50:29 +00003866 ODRHash = FT->getODRHash();
3867 return ODRHash;
3868 }
3869
Richard Trieue6caa262017-12-23 00:41:01 +00003870 class ODRHash Hash;
3871 Hash.AddFunctionDecl(this);
Erich Keane9c665062018-08-01 21:02:40 +00003872 setHasODRHash(true);
Richard Trieue6caa262017-12-23 00:41:01 +00003873 ODRHash = Hash.CalculateHash();
3874 return ODRHash;
3875}
3876
Chris Lattner59a25942008-03-31 00:36:02 +00003877//===----------------------------------------------------------------------===//
Sebastian Redl833ef452010-01-26 22:01:41 +00003878// FieldDecl Implementation
3879//===----------------------------------------------------------------------===//
3880
Jay Foad39c79802011-01-12 09:06:06 +00003881FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00003882 SourceLocation StartLoc, SourceLocation IdLoc,
3883 IdentifierInfo *Id, QualType T,
Richard Smith938f40b2011-06-11 17:19:42 +00003884 TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
Richard Smith2b013182012-06-10 03:12:00 +00003885 InClassInitStyle InitStyle) {
Richard Smithf7981722013-11-22 09:01:48 +00003886 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3887 BW, Mutable, InitStyle);
Sebastian Redl833ef452010-01-26 22:01:41 +00003888}
3889
Douglas Gregor72172e92012-01-05 21:55:30 +00003890FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00003891 return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(),
3892 SourceLocation(), nullptr, QualType(), nullptr,
3893 nullptr, false, ICIS_NoInit);
Douglas Gregor72172e92012-01-05 21:55:30 +00003894}
3895
Sebastian Redl833ef452010-01-26 22:01:41 +00003896bool FieldDecl::isAnonymousStructOrUnion() const {
3897 if (!isImplicit() || getDeclName())
3898 return false;
3899
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003900 if (const auto *Record = getType()->getAs<RecordType>())
Sebastian Redl833ef452010-01-26 22:01:41 +00003901 return Record->getDecl()->isAnonymousStructOrUnion();
3902
3903 return false;
3904}
3905
Richard Smithcaf33902011-10-10 18:28:20 +00003906unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
3907 assert(isBitField() && "not a bitfield");
Richard Smith6b8e3c02017-08-28 00:28:14 +00003908 return getBitWidth()->EvaluateKnownConstInt(Ctx).getZExtValue();
Richard Smithcaf33902011-10-10 18:28:20 +00003909}
3910
Richard Smith866dee42018-04-02 18:29:43 +00003911bool FieldDecl::isZeroLengthBitField(const ASTContext &Ctx) const {
3912 return isUnnamedBitfield() && !getBitWidth()->isValueDependent() &&
3913 getBitWidthValue(Ctx) == 0;
3914}
3915
John McCall4e819612011-01-20 07:57:12 +00003916unsigned FieldDecl::getFieldIndex() const {
Richard Smith0b87e072013-10-07 08:02:11 +00003917 const FieldDecl *Canonical = getCanonicalDecl();
3918 if (Canonical != this)
3919 return Canonical->getFieldIndex();
3920
John McCall4e819612011-01-20 07:57:12 +00003921 if (CachedFieldIndex) return CachedFieldIndex - 1;
3922
Richard Smithd62306a2011-11-10 06:34:14 +00003923 unsigned Index = 0;
Richard Smith85567dd2017-11-15 01:33:46 +00003924 const RecordDecl *RD = getParent()->getDefinition();
3925 assert(RD && "requested index for field of struct with no definition");
Richard Smithd62306a2011-11-10 06:34:14 +00003926
Hans Wennborga302cd92014-08-21 16:06:57 +00003927 for (auto *Field : RD->fields()) {
3928 Field->getCanonicalDecl()->CachedFieldIndex = Index + 1;
3929 ++Index;
3930 }
John McCall4e819612011-01-20 07:57:12 +00003931
Richard Smithd62306a2011-11-10 06:34:14 +00003932 assert(CachedFieldIndex && "failed to find field in parent");
3933 return CachedFieldIndex - 1;
John McCall4e819612011-01-20 07:57:12 +00003934}
3935
Abramo Bagnara20c9e242011-03-08 11:07:11 +00003936SourceRange FieldDecl::getSourceRange() const {
Richard Smith6b8e3c02017-08-28 00:28:14 +00003937 const Expr *FinalExpr = getInClassInitializer();
3938 if (!FinalExpr)
3939 FinalExpr = getBitWidth();
3940 if (FinalExpr)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00003941 return SourceRange(getInnerLocStart(), FinalExpr->getEndLoc());
Richard Smith6b8e3c02017-08-28 00:28:14 +00003942 return DeclaratorDecl::getSourceRange();
Alexey Bataev39c81e22014-08-28 04:28:19 +00003943}
3944
3945void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) {
David Blaikie11ab0782014-10-31 17:18:09 +00003946 assert((getParent()->isLambda() || getParent()->isCapturedRecord()) &&
Alexey Bataev330de032014-10-29 12:21:55 +00003947 "capturing type in non-lambda or captured record.");
Richard Smith6b8e3c02017-08-28 00:28:14 +00003948 assert(InitStorage.getInt() == ISK_NoInit &&
John McCallc90c1492014-10-10 18:44:34 +00003949 InitStorage.getPointer() == nullptr &&
Alexey Bataev39c81e22014-08-28 04:28:19 +00003950 "bit width, initializer or captured type already set");
John McCallc90c1492014-10-10 18:44:34 +00003951 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType),
3952 ISK_CapturedVLAType);
Alexey Bataev39c81e22014-08-28 04:28:19 +00003953}
3954
Sebastian Redl833ef452010-01-26 22:01:41 +00003955//===----------------------------------------------------------------------===//
Douglas Gregor9ac7a072009-01-07 00:43:41 +00003956// TagDecl Implementation
Ted Kremenek21475702008-09-05 17:16:31 +00003957//===----------------------------------------------------------------------===//
3958
Erich Keanef92f31c2018-08-01 20:48:16 +00003959TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
3960 SourceLocation L, IdentifierInfo *Id, TagDecl *PrevDecl,
3961 SourceLocation StartL)
3962 : TypeDecl(DK, DC, L, Id, StartL), DeclContext(DK), redeclarable_base(C),
3963 TypedefNameDeclOrQualifier((TypedefNameDecl *)nullptr) {
3964 assert((DK != Enum || TK == TTK_Enum) &&
3965 "EnumDecl not matched with TTK_Enum");
3966 setPreviousDecl(PrevDecl);
3967 setTagKind(TK);
3968 setCompleteDefinition(false);
3969 setBeingDefined(false);
3970 setEmbeddedInDeclarator(false);
3971 setFreeStanding(false);
3972 setCompleteDefinitionRequired(false);
3973}
3974
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00003975SourceLocation TagDecl::getOuterLocStart() const {
3976 return getTemplateOrInnerLocStart(this);
3977}
3978
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00003979SourceRange TagDecl::getSourceRange() const {
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00003980 SourceLocation RBraceLoc = BraceRange.getEnd();
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00003981 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
Douglas Gregorec9c6ae2010-07-06 18:42:40 +00003982 return SourceRange(getOuterLocStart(), E);
Argyrios Kyrtzidis575fa052009-07-14 03:17:17 +00003983}
3984
Rafael Espindola8db352d2013-10-17 15:37:26 +00003985TagDecl *TagDecl::getCanonicalDecl() { return getFirstDecl(); }
Argyrios Kyrtzidis5614aef2009-07-18 00:34:07 +00003986
Rafael Espindolabf5c33b2013-03-12 21:06:00 +00003987void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
David Majnemer00350522015-08-31 18:48:39 +00003988 TypedefNameDeclOrQualifier = TDD;
Reid Klecknercae82a22014-04-23 22:03:04 +00003989 if (const Type *T = getTypeForDecl()) {
3990 (void)T;
Richard Smith5b21db82014-04-23 18:20:42 +00003991 assert(T->isLinkageValid());
Reid Klecknercae82a22014-04-23 22:03:04 +00003992 }
Rafael Espindola0e0d0092013-03-14 03:07:35 +00003993 assert(isLinkageValid());
Douglas Gregora72a4e32010-05-19 18:39:18 +00003994}
3995
Douglas Gregordee1be82009-01-17 00:42:38 +00003996void TagDecl::startDefinition() {
Erich Keanef92f31c2018-08-01 20:48:16 +00003997 setBeingDefined(true);
John McCall67da35c2010-02-04 22:26:26 +00003998
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00003999 if (auto *D = dyn_cast<CXXRecordDecl>(this)) {
Richard Smith053f6c62014-05-16 23:01:30 +00004000 struct CXXRecordDecl::DefinitionData *Data =
John McCall67da35c2010-02-04 22:26:26 +00004001 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
Aaron Ballman86c93902014-03-06 23:45:36 +00004002 for (auto I : redecls())
Richard Smith64c06302014-05-22 23:19:02 +00004003 cast<CXXRecordDecl>(I)->DefinitionData = Data;
John McCall67da35c2010-02-04 22:26:26 +00004004 }
Douglas Gregordee1be82009-01-17 00:42:38 +00004005}
4006
4007void TagDecl::completeDefinition() {
John McCallae580fe2010-02-05 01:33:36 +00004008 assert((!isa<CXXRecordDecl>(this) ||
4009 cast<CXXRecordDecl>(this)->hasDefinition()) &&
4010 "definition completed but not started");
4011
Erich Keanef92f31c2018-08-01 20:48:16 +00004012 setCompleteDefinition(true);
4013 setBeingDefined(false);
Argyrios Kyrtzidisd170d842010-10-24 17:26:50 +00004014
4015 if (ASTMutationListener *L = getASTMutationListener())
4016 L->CompletedTagDefinition(this);
Douglas Gregordee1be82009-01-17 00:42:38 +00004017}
4018
John McCallf937c022011-10-07 06:10:15 +00004019TagDecl *TagDecl::getDefinition() const {
4020 if (isCompleteDefinition())
Douglas Gregorb6b8f9e2009-07-29 23:36:44 +00004021 return const_cast<TagDecl *>(this);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004022
4023 // If it's possible for us to have an out-of-date definition, check now.
Erich Keanef92f31c2018-08-01 20:48:16 +00004024 if (mayHaveOutOfDateDef()) {
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004025 if (IdentifierInfo *II = getIdentifier()) {
4026 if (II->isOutOfDate()) {
4027 updateOutOfDate(*II);
4028 }
4029 }
4030 }
4031
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004032 if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(this))
Andrew Trickba266ee2010-10-19 21:54:32 +00004033 return CXXRD->getDefinition();
Mike Stump11289f42009-09-09 15:08:12 +00004034
Aaron Ballman86c93902014-03-06 23:45:36 +00004035 for (auto R : redecls())
John McCallf937c022011-10-07 06:10:15 +00004036 if (R->isCompleteDefinition())
Aaron Ballman86c93902014-03-06 23:45:36 +00004037 return R;
Mike Stump11289f42009-09-09 15:08:12 +00004038
Craig Topper36250ad2014-05-12 05:36:57 +00004039 return nullptr;
Ted Kremenek21475702008-09-05 17:16:31 +00004040}
4041
Douglas Gregor14454802011-02-25 02:25:35 +00004042void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
4043 if (QualifierLoc) {
John McCall3e11ebe2010-03-15 10:12:16 +00004044 // Make sure the extended qualifier info is allocated.
4045 if (!hasExtInfo())
David Majnemer00350522015-08-31 18:48:39 +00004046 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
John McCall3e11ebe2010-03-15 10:12:16 +00004047 // Set qualifier info.
Douglas Gregor14454802011-02-25 02:25:35 +00004048 getExtInfo()->QualifierLoc = QualifierLoc;
Chad Rosier6fdf38b2011-08-17 23:08:45 +00004049 } else {
John McCall3e11ebe2010-03-15 10:12:16 +00004050 // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
John McCall3e11ebe2010-03-15 10:12:16 +00004051 if (hasExtInfo()) {
Abramo Bagnara60804e12011-03-18 15:16:37 +00004052 if (getExtInfo()->NumTemplParamLists == 0) {
4053 getASTContext().Deallocate(getExtInfo());
David Majnemer00350522015-08-31 18:48:39 +00004054 TypedefNameDeclOrQualifier = (TypedefNameDecl *)nullptr;
Abramo Bagnara60804e12011-03-18 15:16:37 +00004055 }
4056 else
4057 getExtInfo()->QualifierLoc = QualifierLoc;
John McCall3e11ebe2010-03-15 10:12:16 +00004058 }
4059 }
4060}
4061
Benjamin Kramer9cc210652015-08-05 09:40:49 +00004062void TagDecl::setTemplateParameterListsInfo(
4063 ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
4064 assert(!TPLists.empty());
Abramo Bagnara60804e12011-03-18 15:16:37 +00004065 // Make sure the extended decl info is allocated.
4066 if (!hasExtInfo())
4067 // Allocate external info struct.
David Majnemer00350522015-08-31 18:48:39 +00004068 TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
Abramo Bagnara60804e12011-03-18 15:16:37 +00004069 // Set the template parameter lists info.
Benjamin Kramer9cc210652015-08-05 09:40:49 +00004070 getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
Abramo Bagnara60804e12011-03-18 15:16:37 +00004071}
4072
Ted Kremenek21475702008-09-05 17:16:31 +00004073//===----------------------------------------------------------------------===//
Sebastian Redl833ef452010-01-26 22:01:41 +00004074// EnumDecl Implementation
4075//===----------------------------------------------------------------------===//
4076
Erich Keanef92f31c2018-08-01 20:48:16 +00004077EnumDecl::EnumDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
4078 SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl,
4079 bool Scoped, bool ScopedUsingClassTag, bool Fixed)
4080 : TagDecl(Enum, TTK_Enum, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
4081 assert(Scoped || !ScopedUsingClassTag);
4082 IntegerType = nullptr;
4083 setNumPositiveBits(0);
4084 setNumNegativeBits(0);
4085 setScoped(Scoped);
4086 setScopedUsingClassTag(ScopedUsingClassTag);
4087 setFixed(Fixed);
4088 setHasODRHash(false);
4089 ODRHash = 0;
4090}
4091
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004092void EnumDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004093
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004094EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
4095 SourceLocation StartLoc, SourceLocation IdLoc,
4096 IdentifierInfo *Id,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00004097 EnumDecl *PrevDecl, bool IsScoped,
4098 bool IsScopedUsingClassTag, bool IsFixed) {
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004099 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl,
4100 IsScoped, IsScopedUsingClassTag, IsFixed);
Erich Keanef92f31c2018-08-01 20:48:16 +00004101 Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Sebastian Redl833ef452010-01-26 22:01:41 +00004102 C.getTypeDeclType(Enum, PrevDecl);
4103 return Enum;
4104}
4105
Douglas Gregor72172e92012-01-05 21:55:30 +00004106EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004107 EnumDecl *Enum =
4108 new (C, ID) EnumDecl(C, nullptr, SourceLocation(), SourceLocation(),
4109 nullptr, nullptr, false, false, false);
Erich Keanef92f31c2018-08-01 20:48:16 +00004110 Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004111 return Enum;
Argyrios Kyrtzidis39f0e302010-07-02 11:54:55 +00004112}
4113
Alp Tokerb9fa5122014-01-06 11:31:18 +00004114SourceRange EnumDecl::getIntegerTypeRange() const {
4115 if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
4116 return TI->getTypeLoc().getSourceRange();
4117 return SourceRange();
4118}
4119
Douglas Gregord5058122010-02-11 01:19:42 +00004120void EnumDecl::completeDefinition(QualType NewType,
John McCall9aa35be2010-05-06 08:49:23 +00004121 QualType NewPromotionType,
4122 unsigned NumPositiveBits,
4123 unsigned NumNegativeBits) {
John McCallf937c022011-10-07 06:10:15 +00004124 assert(!isCompleteDefinition() && "Cannot redefine enums!");
Douglas Gregor0bf31402010-10-08 23:50:27 +00004125 if (!IntegerType)
4126 IntegerType = NewType.getTypePtr();
Sebastian Redl833ef452010-01-26 22:01:41 +00004127 PromotionType = NewPromotionType;
John McCall9aa35be2010-05-06 08:49:23 +00004128 setNumPositiveBits(NumPositiveBits);
4129 setNumNegativeBits(NumNegativeBits);
Sebastian Redl833ef452010-01-26 22:01:41 +00004130 TagDecl::completeDefinition();
4131}
4132
Akira Hatanaka3c268af2017-03-21 02:23:00 +00004133bool EnumDecl::isClosed() const {
4134 if (const auto *A = getAttr<EnumExtensibilityAttr>())
4135 return A->getExtensibility() == EnumExtensibilityAttr::Closed;
4136 return true;
4137}
4138
4139bool EnumDecl::isClosedFlag() const {
4140 return isClosed() && hasAttr<FlagEnumAttr>();
4141}
4142
4143bool EnumDecl::isClosedNonFlag() const {
4144 return isClosed() && !hasAttr<FlagEnumAttr>();
4145}
4146
Richard Smith7d137e32012-03-23 03:33:32 +00004147TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
4148 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
4149 return MSI->getTemplateSpecializationKind();
4150
4151 return TSK_Undeclared;
4152}
4153
4154void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
4155 SourceLocation PointOfInstantiation) {
4156 MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
4157 assert(MSI && "Not an instantiated member enumeration?");
4158 MSI->setTemplateSpecializationKind(TSK);
4159 if (TSK != TSK_ExplicitSpecialization &&
4160 PointOfInstantiation.isValid() &&
4161 MSI->getPointOfInstantiation().isInvalid())
4162 MSI->setPointOfInstantiation(PointOfInstantiation);
4163}
4164
Richard Smith6739a102016-05-05 00:56:12 +00004165EnumDecl *EnumDecl::getTemplateInstantiationPattern() const {
4166 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
4167 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
4168 EnumDecl *ED = getInstantiatedFromMemberEnum();
4169 while (auto *NewED = ED->getInstantiatedFromMemberEnum())
4170 ED = NewED;
Richard Smith2195ec92017-04-21 01:15:13 +00004171 return getDefinitionOrSelf(ED);
Richard Smith6739a102016-05-05 00:56:12 +00004172 }
4173 }
4174
4175 assert(!isTemplateInstantiation(getTemplateSpecializationKind()) &&
4176 "couldn't find pattern for enum instantiation");
4177 return nullptr;
4178}
4179
Richard Smith4b38ded2012-03-14 23:13:10 +00004180EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
4181 if (SpecializationInfo)
4182 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
4183
Craig Topper36250ad2014-05-12 05:36:57 +00004184 return nullptr;
Richard Smith4b38ded2012-03-14 23:13:10 +00004185}
4186
4187void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
4188 TemplateSpecializationKind TSK) {
4189 assert(!SpecializationInfo && "Member enum is already a specialization");
4190 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
4191}
4192
Richard Trieuab4d7302018-07-25 22:52:05 +00004193unsigned EnumDecl::getODRHash() {
Erich Keanef92f31c2018-08-01 20:48:16 +00004194 if (hasODRHash())
Richard Trieuab4d7302018-07-25 22:52:05 +00004195 return ODRHash;
4196
4197 class ODRHash Hash;
4198 Hash.AddEnumDecl(this);
Erich Keanef92f31c2018-08-01 20:48:16 +00004199 setHasODRHash(true);
Richard Trieuab4d7302018-07-25 22:52:05 +00004200 ODRHash = Hash.CalculateHash();
4201 return ODRHash;
4202}
4203
Sebastian Redl833ef452010-01-26 22:01:41 +00004204//===----------------------------------------------------------------------===//
Chris Lattner59a25942008-03-31 00:36:02 +00004205// RecordDecl Implementation
4206//===----------------------------------------------------------------------===//
Chris Lattner41943152007-01-25 04:52:46 +00004207
Richard Smith053f6c62014-05-16 23:01:30 +00004208RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
4209 DeclContext *DC, SourceLocation StartLoc,
4210 SourceLocation IdLoc, IdentifierInfo *Id,
4211 RecordDecl *PrevDecl)
Erich Keanef92f31c2018-08-01 20:48:16 +00004212 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
4213 assert(classof(static_cast<Decl *>(this)) && "Invalid Kind!");
4214 setHasFlexibleArrayMember(false);
4215 setAnonymousStructOrUnion(false);
4216 setHasObjectMember(false);
4217 setHasVolatileMember(false);
4218 setHasLoadedFieldsFromExternalStorage(false);
4219 setNonTrivialToPrimitiveDefaultInitialize(false);
4220 setNonTrivialToPrimitiveCopy(false);
4221 setNonTrivialToPrimitiveDestroy(false);
4222 setParamDestroyedInCallee(false);
4223 setArgPassingRestrictions(APK_CanPassInRegs);
Ted Kremenek52baf502008-09-02 21:12:32 +00004224}
4225
Jay Foad39c79802011-01-12 09:06:06 +00004226RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004227 SourceLocation StartLoc, SourceLocation IdLoc,
4228 IdentifierInfo *Id, RecordDecl* PrevDecl) {
Richard Smith053f6c62014-05-16 23:01:30 +00004229 RecordDecl *R = new (C, DC) RecordDecl(Record, TK, C, DC,
4230 StartLoc, IdLoc, Id, PrevDecl);
Erich Keanef92f31c2018-08-01 20:48:16 +00004231 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004232
Ted Kremenek21475702008-09-05 17:16:31 +00004233 C.getTypeDeclType(R, PrevDecl);
4234 return R;
Ted Kremenek52baf502008-09-02 21:12:32 +00004235}
4236
Douglas Gregor72172e92012-01-05 21:55:30 +00004237RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004238 RecordDecl *R =
4239 new (C, ID) RecordDecl(Record, TTK_Struct, C, nullptr, SourceLocation(),
4240 SourceLocation(), nullptr, nullptr);
Erich Keanef92f31c2018-08-01 20:48:16 +00004241 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
Douglas Gregor7dab26b2013-02-09 01:35:03 +00004242 return R;
Argyrios Kyrtzidis39f0e302010-07-02 11:54:55 +00004243}
4244
Douglas Gregordfcad112009-03-25 15:59:44 +00004245bool RecordDecl::isInjectedClassName() const {
Mike Stump11289f42009-09-09 15:08:12 +00004246 return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
Douglas Gregordfcad112009-03-25 15:59:44 +00004247 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
4248}
4249
Alexey Bataev39c81e22014-08-28 04:28:19 +00004250bool RecordDecl::isLambda() const {
4251 if (auto RD = dyn_cast<CXXRecordDecl>(this))
4252 return RD->isLambda();
4253 return false;
4254}
4255
Alexey Bataev330de032014-10-29 12:21:55 +00004256bool RecordDecl::isCapturedRecord() const {
4257 return hasAttr<CapturedRecordAttr>();
4258}
4259
4260void RecordDecl::setCapturedRecord() {
4261 addAttr(CapturedRecordAttr::CreateImplicit(getASTContext()));
4262}
4263
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004264RecordDecl::field_iterator RecordDecl::field_begin() const {
Erich Keanef92f31c2018-08-01 20:48:16 +00004265 if (hasExternalLexicalStorage() && !hasLoadedFieldsFromExternalStorage())
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004266 LoadFieldsFromExternalStorage();
4267
4268 return field_iterator(decl_iterator(FirstDecl));
4269}
4270
Douglas Gregorb11aad82011-02-19 18:51:44 +00004271/// completeDefinition - Notes that the definition of this type is now
4272/// complete.
4273void RecordDecl::completeDefinition() {
John McCallf937c022011-10-07 06:10:15 +00004274 assert(!isCompleteDefinition() && "Cannot redefine record!");
Douglas Gregorb11aad82011-02-19 18:51:44 +00004275 TagDecl::completeDefinition();
4276}
4277
Eli Friedman9ee2d0472012-10-12 23:29:20 +00004278/// isMsStruct - Get whether or not this record uses ms_struct layout.
4279/// This which can be turned on with an attribute, pragma, or the
4280/// -mms-bitfields command-line option.
4281bool RecordDecl::isMsStruct(const ASTContext &C) const {
David Majnemer8ab003a2015-02-02 19:30:52 +00004282 return hasAttr<MSStructAttr>() || C.getLangOpts().MSBitfields == 1;
Eli Friedman9ee2d0472012-10-12 23:29:20 +00004283}
4284
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004285void RecordDecl::LoadFieldsFromExternalStorage() const {
4286 ExternalASTSource *Source = getASTContext().getExternalSource();
4287 assert(hasExternalLexicalStorage() && Source && "No external storage?");
4288
4289 // Notify that we have a RecordDecl doing some initialization.
4290 ExternalASTSource::Deserializing TheFields(Source);
4291
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004292 SmallVector<Decl*, 64> Decls;
Erich Keanef92f31c2018-08-01 20:48:16 +00004293 setHasLoadedFieldsFromExternalStorage(true);
Richard Smith3cb15722015-08-05 22:41:45 +00004294 Source->FindExternalLexicalDecls(this, [](Decl::Kind K) {
4295 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
4296 }, Decls);
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004297
4298#ifndef NDEBUG
4299 // Check that all decls we got were FieldDecls.
4300 for (unsigned i=0, e=Decls.size(); i != e; ++i)
Argyrios Kyrtzidisf89a9272012-09-10 22:04:22 +00004301 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004302#endif
4303
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004304 if (Decls.empty())
4305 return;
4306
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00004307 std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
Argyrios Kyrtzidis094da732011-10-07 21:55:43 +00004308 /*FieldsAlreadyLoaded=*/false);
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00004309}
4310
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004311bool RecordDecl::mayInsertExtraPadding(bool EmitRemark) const {
4312 ASTContext &Context = getASTContext();
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004313 const SanitizerMask EnabledAsanMask = Context.getLangOpts().Sanitize.Mask &
4314 (SanitizerKind::Address | SanitizerKind::KernelAddress);
4315 if (!EnabledAsanMask || !Context.getLangOpts().SanitizeAddressFieldPadding)
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004316 return false;
Alexey Samsonov33e00e22014-10-16 23:50:26 +00004317 const auto &Blacklist = Context.getSanitizerBlacklist();
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004318 const auto *CXXRD = dyn_cast<CXXRecordDecl>(this);
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004319 // We may be able to relax some of these requirements.
4320 int ReasonToReject = -1;
4321 if (!CXXRD || CXXRD->isExternCContext())
4322 ReasonToReject = 0; // is not C++.
4323 else if (CXXRD->hasAttr<PackedAttr>())
4324 ReasonToReject = 1; // is packed.
4325 else if (CXXRD->isUnion())
4326 ReasonToReject = 2; // is a union.
4327 else if (CXXRD->isTriviallyCopyable())
4328 ReasonToReject = 3; // is trivially copyable.
4329 else if (CXXRD->hasTrivialDestructor())
4330 ReasonToReject = 4; // has trivial destructor.
4331 else if (CXXRD->isStandardLayout())
4332 ReasonToReject = 5; // is standard layout.
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004333 else if (Blacklist.isBlacklistedLocation(EnabledAsanMask, getLocation(),
4334 "field-padding"))
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004335 ReasonToReject = 6; // is in a blacklisted file.
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +00004336 else if (Blacklist.isBlacklistedType(EnabledAsanMask,
4337 getQualifiedNameAsString(),
Kostya Serebryany293dc9b2014-10-16 20:54:52 +00004338 "field-padding"))
4339 ReasonToReject = 7; // is blacklisted.
4340
4341 if (EmitRemark) {
4342 if (ReasonToReject >= 0)
4343 Context.getDiagnostics().Report(
4344 getLocation(),
4345 diag::remark_sanitize_address_insert_extra_padding_rejected)
4346 << getQualifiedNameAsString() << ReasonToReject;
4347 else
4348 Context.getDiagnostics().Report(
4349 getLocation(),
4350 diag::remark_sanitize_address_insert_extra_padding_accepted)
4351 << getQualifiedNameAsString();
4352 }
4353 return ReasonToReject < 0;
4354}
4355
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004356const FieldDecl *RecordDecl::findFirstNamedDataMember() const {
4357 for (const auto *I : fields()) {
4358 if (I->getIdentifier())
4359 return I;
4360
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004361 if (const auto *RT = I->getType()->getAs<RecordType>())
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004362 if (const FieldDecl *NamedDataMember =
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004363 RT->getDecl()->findFirstNamedDataMember())
Evgeny Astigeevich665027d2014-12-12 16:17:46 +00004364 return NamedDataMember;
4365 }
4366
4367 // We didn't find a named data member.
4368 return nullptr;
4369}
4370
Steve Naroff415d3d52008-10-08 17:01:13 +00004371//===----------------------------------------------------------------------===//
4372// BlockDecl Implementation
4373//===----------------------------------------------------------------------===//
4374
Erich Keanec9d29902018-08-01 21:16:54 +00004375BlockDecl::BlockDecl(DeclContext *DC, SourceLocation CaretLoc)
4376 : Decl(Block, DC, CaretLoc), DeclContext(Block) {
4377 setIsVariadic(false);
4378 setCapturesCXXThis(false);
4379 setBlockMissingReturnType(true);
4380 setIsConversionFromLambda(false);
4381 setDoesNotEscape(false);
Akira Hatanakac5792aa2019-02-27 18:17:16 +00004382 setCanAvoidCopyToHeap(false);
Erich Keanec9d29902018-08-01 21:16:54 +00004383}
4384
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004385void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
Craig Topper36250ad2014-05-12 05:36:57 +00004386 assert(!ParamInfo && "Already has param info!");
Mike Stump11289f42009-09-09 15:08:12 +00004387
Steve Naroffc4b30e52009-03-13 16:56:44 +00004388 // Zero params -> null pointer.
David Blaikie9c70e042011-09-21 18:16:56 +00004389 if (!NewParamInfo.empty()) {
4390 NumParams = NewParamInfo.size();
4391 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
4392 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
Steve Naroffc4b30e52009-03-13 16:56:44 +00004393 }
4394}
4395
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004396void BlockDecl::setCaptures(ASTContext &Context, ArrayRef<Capture> Captures,
4397 bool CapturesCXXThis) {
Erich Keanec9d29902018-08-01 21:16:54 +00004398 this->setCapturesCXXThis(CapturesCXXThis);
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004399 this->NumCaptures = Captures.size();
John McCallc63de662011-02-02 13:00:07 +00004400
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004401 if (Captures.empty()) {
4402 this->Captures = nullptr;
John McCallc63de662011-02-02 13:00:07 +00004403 return;
4404 }
4405
Benjamin Kramerb40e4af2015-08-05 09:40:35 +00004406 this->Captures = Captures.copy(Context).data();
Steve Naroffc4b30e52009-03-13 16:56:44 +00004407}
Sebastian Redl833ef452010-01-26 22:01:41 +00004408
John McCallce45f882011-06-15 22:51:16 +00004409bool BlockDecl::capturesVariable(const VarDecl *variable) const {
Aaron Ballman9371dd22014-03-14 18:34:04 +00004410 for (const auto &I : captures())
John McCallce45f882011-06-15 22:51:16 +00004411 // Only auto vars can be captured, so no redeclaration worries.
Aaron Ballman9371dd22014-03-14 18:34:04 +00004412 if (I.getVariable() == variable)
John McCallce45f882011-06-15 22:51:16 +00004413 return true;
4414
4415 return false;
4416}
4417
Douglas Gregor70226da2010-12-21 16:27:07 +00004418SourceRange BlockDecl::getSourceRange() const {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004419 return SourceRange(getLocation(), Body ? Body->getEndLoc() : getLocation());
Douglas Gregor70226da2010-12-21 16:27:07 +00004420}
Sebastian Redl833ef452010-01-26 22:01:41 +00004421
4422//===----------------------------------------------------------------------===//
4423// Other Decl Allocation/Deallocation Method Implementations
4424//===----------------------------------------------------------------------===//
4425
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004426void TranslationUnitDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004427
Sebastian Redl833ef452010-01-26 22:01:41 +00004428TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
Craig Topper36250ad2014-05-12 05:36:57 +00004429 return new (C, (DeclContext *)nullptr) TranslationUnitDecl(C);
Sebastian Redl833ef452010-01-26 22:01:41 +00004430}
4431
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004432void PragmaCommentDecl::anchor() {}
Nico Weber66220292016-03-02 17:28:48 +00004433
4434PragmaCommentDecl *PragmaCommentDecl::Create(const ASTContext &C,
4435 TranslationUnitDecl *DC,
4436 SourceLocation CommentLoc,
4437 PragmaMSCommentKind CommentKind,
4438 StringRef Arg) {
4439 PragmaCommentDecl *PCD =
4440 new (C, DC, additionalSizeToAlloc<char>(Arg.size() + 1))
4441 PragmaCommentDecl(DC, CommentLoc, CommentKind);
4442 memcpy(PCD->getTrailingObjects<char>(), Arg.data(), Arg.size());
4443 PCD->getTrailingObjects<char>()[Arg.size()] = '\0';
4444 return PCD;
4445}
4446
4447PragmaCommentDecl *PragmaCommentDecl::CreateDeserialized(ASTContext &C,
4448 unsigned ID,
4449 unsigned ArgSize) {
4450 return new (C, ID, additionalSizeToAlloc<char>(ArgSize + 1))
4451 PragmaCommentDecl(nullptr, SourceLocation(), PCK_Unknown);
4452}
4453
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004454void PragmaDetectMismatchDecl::anchor() {}
Nico Webercbbaeb12016-03-02 19:28:54 +00004455
4456PragmaDetectMismatchDecl *
4457PragmaDetectMismatchDecl::Create(const ASTContext &C, TranslationUnitDecl *DC,
4458 SourceLocation Loc, StringRef Name,
4459 StringRef Value) {
4460 size_t ValueStart = Name.size() + 1;
4461 PragmaDetectMismatchDecl *PDMD =
4462 new (C, DC, additionalSizeToAlloc<char>(ValueStart + Value.size() + 1))
4463 PragmaDetectMismatchDecl(DC, Loc, ValueStart);
4464 memcpy(PDMD->getTrailingObjects<char>(), Name.data(), Name.size());
4465 PDMD->getTrailingObjects<char>()[Name.size()] = '\0';
4466 memcpy(PDMD->getTrailingObjects<char>() + ValueStart, Value.data(),
4467 Value.size());
4468 PDMD->getTrailingObjects<char>()[ValueStart + Value.size()] = '\0';
4469 return PDMD;
4470}
4471
4472PragmaDetectMismatchDecl *
4473PragmaDetectMismatchDecl::CreateDeserialized(ASTContext &C, unsigned ID,
4474 unsigned NameValueSize) {
4475 return new (C, ID, additionalSizeToAlloc<char>(NameValueSize + 1))
4476 PragmaDetectMismatchDecl(nullptr, SourceLocation(), 0);
4477}
Nico Weber66220292016-03-02 17:28:48 +00004478
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004479void ExternCContextDecl::anchor() {}
Richard Smithf19e1272015-03-07 00:04:49 +00004480
4481ExternCContextDecl *ExternCContextDecl::Create(const ASTContext &C,
4482 TranslationUnitDecl *DC) {
4483 return new (C, DC) ExternCContextDecl(DC);
4484}
4485
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004486void LabelDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004487
Chris Lattnerc8e630e2011-02-17 07:39:24 +00004488LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara1c3af962011-03-05 18:21:20 +00004489 SourceLocation IdentL, IdentifierInfo *II) {
Craig Topper36250ad2014-05-12 05:36:57 +00004490 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
Abramo Bagnara1c3af962011-03-05 18:21:20 +00004491}
4492
4493LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
4494 SourceLocation IdentL, IdentifierInfo *II,
4495 SourceLocation GnuLabelL) {
4496 assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
Craig Topper36250ad2014-05-12 05:36:57 +00004497 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, GnuLabelL);
Chris Lattnerc8e630e2011-02-17 07:39:24 +00004498}
4499
Douglas Gregor72172e92012-01-05 21:55:30 +00004500LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004501 return new (C, ID) LabelDecl(nullptr, SourceLocation(), nullptr, nullptr,
4502 SourceLocation());
Douglas Gregor417e87c2010-10-27 19:49:05 +00004503}
4504
Ehsan Akhgari31097582014-09-22 02:21:54 +00004505void LabelDecl::setMSAsmLabel(StringRef Name) {
4506 char *Buffer = new (getASTContext(), 1) char[Name.size() + 1];
4507 memcpy(Buffer, Name.data(), Name.size());
4508 Buffer[Name.size()] = '\0';
4509 MSAsmName = Buffer;
4510}
4511
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004512void ValueDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004513
Benjamin Kramerea70eb32012-12-01 15:09:41 +00004514bool ValueDecl::isWeak() const {
Aaron Ballmanb97112e2014-03-08 22:19:01 +00004515 for (const auto *I : attrs())
4516 if (isa<WeakAttr>(I) || isa<WeakRefAttr>(I))
Benjamin Kramerea70eb32012-12-01 15:09:41 +00004517 return true;
4518
4519 return isWeakImported();
4520}
4521
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004522void ImplicitParamDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004523
Sebastian Redl833ef452010-01-26 22:01:41 +00004524ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00004525 SourceLocation IdLoc,
Alexey Bataev56223232017-06-09 13:40:18 +00004526 IdentifierInfo *Id, QualType Type,
4527 ImplicitParamKind ParamKind) {
4528 return new (C, DC) ImplicitParamDecl(C, DC, IdLoc, Id, Type, ParamKind);
4529}
4530
4531ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, QualType Type,
4532 ImplicitParamKind ParamKind) {
4533 return new (C, nullptr) ImplicitParamDecl(C, Type, ParamKind);
Sebastian Redl833ef452010-01-26 22:01:41 +00004534}
4535
Richard Smithf7981722013-11-22 09:01:48 +00004536ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor72172e92012-01-05 21:55:30 +00004537 unsigned ID) {
Alexey Bataev56223232017-06-09 13:40:18 +00004538 return new (C, ID) ImplicitParamDecl(C, QualType(), ImplicitParamKind::Other);
Douglas Gregor72172e92012-01-05 21:55:30 +00004539}
4540
Sebastian Redl833ef452010-01-26 22:01:41 +00004541FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00004542 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004543 const DeclarationNameInfo &NameInfo,
4544 QualType T, TypeSourceInfo *TInfo,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004545 StorageClass SC, bool isInlineSpecified,
Richard Smitha77a0a62011-08-15 21:04:07 +00004546 bool hasWrittenPrototype,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004547 ConstexprSpecKind ConstexprKind) {
Richard Smithf7981722013-11-22 09:01:48 +00004548 FunctionDecl *New =
Richard Smith053f6c62014-05-16 23:01:30 +00004549 new (C, DC) FunctionDecl(Function, C, DC, StartLoc, NameInfo, T, TInfo,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004550 SC, isInlineSpecified, ConstexprKind);
Erich Keane9c665062018-08-01 21:02:40 +00004551 New->setHasWrittenPrototype(hasWrittenPrototype);
Sebastian Redl833ef452010-01-26 22:01:41 +00004552 return New;
4553}
4554
Douglas Gregor72172e92012-01-05 21:55:30 +00004555FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004556 return new (C, ID) FunctionDecl(Function, C, nullptr, SourceLocation(),
Craig Topper36250ad2014-05-12 05:36:57 +00004557 DeclarationNameInfo(), QualType(), nullptr,
Gauthier Harnisch796ed032019-06-14 08:56:20 +00004558 SC_None, false, CSK_unspecified);
Douglas Gregor72172e92012-01-05 21:55:30 +00004559}
4560
Sebastian Redl833ef452010-01-26 22:01:41 +00004561BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Richard Smithf7981722013-11-22 09:01:48 +00004562 return new (C, DC) BlockDecl(DC, L);
Sebastian Redl833ef452010-01-26 22:01:41 +00004563}
4564
Douglas Gregor72172e92012-01-05 21:55:30 +00004565BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004566 return new (C, ID) BlockDecl(nullptr, SourceLocation());
John McCall5e77d762013-04-16 07:28:30 +00004567}
4568
Chandler Carruth21c90602015-12-30 03:24:14 +00004569CapturedDecl::CapturedDecl(DeclContext *DC, unsigned NumParams)
4570 : Decl(Captured, DC, SourceLocation()), DeclContext(Captured),
4571 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {}
4572
Ben Langmuir37943a72013-05-03 19:00:33 +00004573CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
4574 unsigned NumParams) {
James Y Knight7a22b242015-08-06 20:26:32 +00004575 return new (C, DC, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
Richard Smithf7981722013-11-22 09:01:48 +00004576 CapturedDecl(DC, NumParams);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00004577}
4578
Ben Langmuirce914fc2013-05-03 19:20:19 +00004579CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
Richard Smithf7981722013-11-22 09:01:48 +00004580 unsigned NumParams) {
James Y Knight7a22b242015-08-06 20:26:32 +00004581 return new (C, ID, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
Craig Topper36250ad2014-05-12 05:36:57 +00004582 CapturedDecl(nullptr, NumParams);
Ben Langmuirce914fc2013-05-03 19:20:19 +00004583}
4584
Chandler Carruth21c90602015-12-30 03:24:14 +00004585Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); }
4586void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); }
4587
4588bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); }
4589void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); }
4590
Sebastian Redl833ef452010-01-26 22:01:41 +00004591EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
4592 SourceLocation L,
4593 IdentifierInfo *Id, QualType T,
4594 Expr *E, const llvm::APSInt &V) {
Richard Smithf7981722013-11-22 09:01:48 +00004595 return new (C, CD) EnumConstantDecl(CD, L, Id, T, E, V);
Sebastian Redl833ef452010-01-26 22:01:41 +00004596}
4597
Douglas Gregor72172e92012-01-05 21:55:30 +00004598EnumConstantDecl *
4599EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004600 return new (C, ID) EnumConstantDecl(nullptr, SourceLocation(), nullptr,
4601 QualType(), nullptr, llvm::APSInt());
Douglas Gregor72172e92012-01-05 21:55:30 +00004602}
4603
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004604void IndirectFieldDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004605
Richard Smith9f951822016-01-06 22:49:11 +00004606IndirectFieldDecl::IndirectFieldDecl(ASTContext &C, DeclContext *DC,
4607 SourceLocation L, DeclarationName N,
David Majnemer59f77922016-06-24 04:05:48 +00004608 QualType T,
4609 MutableArrayRef<NamedDecl *> CH)
4610 : ValueDecl(IndirectField, DC, L, N, T), Chaining(CH.data()),
4611 ChainingSize(CH.size()) {
Richard Smith9f951822016-01-06 22:49:11 +00004612 // In C++, indirect field declarations conflict with tag declarations in the
4613 // same scope, so add them to IDNS_Tag so that tag redeclaration finds them.
4614 if (C.getLangOpts().CPlusPlus)
4615 IdentifierNamespace |= IDNS_Tag;
4616}
4617
Benjamin Kramer39593702010-11-21 14:11:41 +00004618IndirectFieldDecl *
4619IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
David Majnemer59f77922016-06-24 04:05:48 +00004620 IdentifierInfo *Id, QualType T,
4621 llvm::MutableArrayRef<NamedDecl *> CH) {
4622 return new (C, DC) IndirectFieldDecl(C, DC, L, Id, T, CH);
Francois Pichet783dd6e2010-11-21 06:08:52 +00004623}
4624
Douglas Gregor72172e92012-01-05 21:55:30 +00004625IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
4626 unsigned ID) {
Richard Smith9f951822016-01-06 22:49:11 +00004627 return new (C, ID) IndirectFieldDecl(C, nullptr, SourceLocation(),
David Majnemer59f77922016-06-24 04:05:48 +00004628 DeclarationName(), QualType(), None);
Douglas Gregor72172e92012-01-05 21:55:30 +00004629}
4630
Douglas Gregorbe996932010-09-01 20:41:53 +00004631SourceRange EnumConstantDecl::getSourceRange() const {
4632 SourceLocation End = getLocation();
4633 if (Init)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004634 End = Init->getEndLoc();
Douglas Gregorbe996932010-09-01 20:41:53 +00004635 return SourceRange(getLocation(), End);
4636}
4637
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004638void TypeDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004639
Sebastian Redl833ef452010-01-26 22:01:41 +00004640TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnarab3185b02011-03-06 15:48:19 +00004641 SourceLocation StartLoc, SourceLocation IdLoc,
4642 IdentifierInfo *Id, TypeSourceInfo *TInfo) {
Richard Smith053f6c62014-05-16 23:01:30 +00004643 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Sebastian Redl833ef452010-01-26 22:01:41 +00004644}
4645
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004646void TypedefNameDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004647
Richard Smith42413142015-05-15 20:05:43 +00004648TagDecl *TypedefNameDecl::getAnonDeclWithTypedefName(bool AnyRedecl) const {
4649 if (auto *TT = getTypeSourceInfo()->getType()->getAs<TagType>()) {
4650 auto *OwningTypedef = TT->getDecl()->getTypedefNameForAnonDecl();
4651 auto *ThisTypedef = this;
4652 if (AnyRedecl && OwningTypedef) {
4653 OwningTypedef = OwningTypedef->getCanonicalDecl();
4654 ThisTypedef = ThisTypedef->getCanonicalDecl();
4655 }
4656 if (OwningTypedef == ThisTypedef)
Richard Smitha5230222015-03-27 01:37:43 +00004657 return TT->getDecl();
Richard Smith42413142015-05-15 20:05:43 +00004658 }
Richard Smitha5230222015-03-27 01:37:43 +00004659
4660 return nullptr;
4661}
4662
Argyrios Kyrtzidis3b25c912017-03-21 16:56:02 +00004663bool TypedefNameDecl::isTransparentTagSlow() const {
4664 auto determineIsTransparent = [&]() {
4665 if (auto *TT = getUnderlyingType()->getAs<TagType>()) {
4666 if (auto *TD = TT->getDecl()) {
4667 if (TD->getName() != getName())
4668 return false;
4669 SourceLocation TTLoc = getLocation();
4670 SourceLocation TDLoc = TD->getLocation();
4671 if (!TTLoc.isMacroID() || !TDLoc.isMacroID())
4672 return false;
4673 SourceManager &SM = getASTContext().getSourceManager();
4674 return SM.getSpellingLoc(TTLoc) == SM.getSpellingLoc(TDLoc);
4675 }
4676 }
4677 return false;
4678 };
4679
4680 bool isTransparent = determineIsTransparent();
Benjamin Kramerdfb730a2018-01-26 14:14:11 +00004681 MaybeModedTInfo.setInt((isTransparent << 1) | 1);
Argyrios Kyrtzidis3b25c912017-03-21 16:56:02 +00004682 return isTransparent;
4683}
4684
Douglas Gregor72172e92012-01-05 21:55:30 +00004685TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004686 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(),
Craig Topper36250ad2014-05-12 05:36:57 +00004687 nullptr, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00004688}
4689
Richard Smithdda56e42011-04-15 14:24:37 +00004690TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
4691 SourceLocation StartLoc,
4692 SourceLocation IdLoc, IdentifierInfo *Id,
4693 TypeSourceInfo *TInfo) {
Richard Smith053f6c62014-05-16 23:01:30 +00004694 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
Richard Smithdda56e42011-04-15 14:24:37 +00004695}
4696
Douglas Gregor72172e92012-01-05 21:55:30 +00004697TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Richard Smith053f6c62014-05-16 23:01:30 +00004698 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(),
4699 SourceLocation(), nullptr, nullptr);
Douglas Gregor72172e92012-01-05 21:55:30 +00004700}
4701
Abramo Bagnaraea947882011-03-08 16:41:52 +00004702SourceRange TypedefDecl::getSourceRange() const {
4703 SourceLocation RangeEnd = getLocation();
4704 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
4705 if (typeIsPostfix(TInfo->getType()))
4706 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
4707 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004708 return SourceRange(getBeginLoc(), RangeEnd);
Abramo Bagnaraea947882011-03-08 16:41:52 +00004709}
4710
Richard Smithdda56e42011-04-15 14:24:37 +00004711SourceRange TypeAliasDecl::getSourceRange() const {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004712 SourceLocation RangeEnd = getBeginLoc();
Richard Smithdda56e42011-04-15 14:24:37 +00004713 if (TypeSourceInfo *TInfo = getTypeSourceInfo())
4714 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004715 return SourceRange(getBeginLoc(), RangeEnd);
Richard Smithdda56e42011-04-15 14:24:37 +00004716}
4717
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004718void FileScopeAsmDecl::anchor() {}
David Blaikie68e081d2011-12-20 02:48:34 +00004719
Sebastian Redl833ef452010-01-26 22:01:41 +00004720FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnara348823a2011-03-03 14:20:18 +00004721 StringLiteral *Str,
4722 SourceLocation AsmLoc,
4723 SourceLocation RParenLoc) {
Richard Smithf7981722013-11-22 09:01:48 +00004724 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
Sebastian Redl833ef452010-01-26 22:01:41 +00004725}
Douglas Gregorba345522011-12-02 23:23:56 +00004726
Richard Smithf7981722013-11-22 09:01:48 +00004727FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor72172e92012-01-05 21:55:30 +00004728 unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004729 return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(),
4730 SourceLocation());
Douglas Gregor72172e92012-01-05 21:55:30 +00004731}
4732
Michael Han84324352013-02-22 17:15:32 +00004733void EmptyDecl::anchor() {}
4734
4735EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Richard Smithf7981722013-11-22 09:01:48 +00004736 return new (C, DC) EmptyDecl(DC, L);
Michael Han84324352013-02-22 17:15:32 +00004737}
4738
4739EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Craig Topper36250ad2014-05-12 05:36:57 +00004740 return new (C, ID) EmptyDecl(nullptr, SourceLocation());
Michael Han84324352013-02-22 17:15:32 +00004741}
4742
Douglas Gregorba345522011-12-02 23:23:56 +00004743//===----------------------------------------------------------------------===//
4744// ImportDecl Implementation
4745//===----------------------------------------------------------------------===//
4746
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004747/// Retrieve the number of module identifiers needed to name the given
Douglas Gregorba345522011-12-02 23:23:56 +00004748/// module.
4749static unsigned getNumModuleIdentifiers(Module *Mod) {
4750 unsigned Result = 1;
4751 while (Mod->Parent) {
4752 Mod = Mod->Parent;
4753 ++Result;
4754 }
4755 return Result;
4756}
4757
Fangrui Song6907ce22018-07-30 19:24:48 +00004758ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregorba345522011-12-02 23:23:56 +00004759 Module *Imported,
4760 ArrayRef<SourceLocation> IdentifierLocs)
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004761 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true) {
Douglas Gregorba345522011-12-02 23:23:56 +00004762 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004763 auto *StoredLocs = getTrailingObjects<SourceLocation>();
James Y Knight7a22b242015-08-06 20:26:32 +00004764 std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(),
4765 StoredLocs);
Douglas Gregorba345522011-12-02 23:23:56 +00004766}
4767
Fangrui Song6907ce22018-07-30 19:24:48 +00004768ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
Douglas Gregorba345522011-12-02 23:23:56 +00004769 Module *Imported, SourceLocation EndLoc)
Eugene Zelenkode0215c2017-11-13 23:01:27 +00004770 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false) {
James Y Knight7a22b242015-08-06 20:26:32 +00004771 *getTrailingObjects<SourceLocation>() = EndLoc;
Douglas Gregorba345522011-12-02 23:23:56 +00004772}
4773
Richard Smithf7981722013-11-22 09:01:48 +00004774ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor22d09742012-01-03 18:04:46 +00004775 SourceLocation StartLoc, Module *Imported,
Douglas Gregorba345522011-12-02 23:23:56 +00004776 ArrayRef<SourceLocation> IdentifierLocs) {
James Y Knight7a22b242015-08-06 20:26:32 +00004777 return new (C, DC,
4778 additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size()))
Richard Smithf7981722013-11-22 09:01:48 +00004779 ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
Douglas Gregorba345522011-12-02 23:23:56 +00004780}
4781
Richard Smithf7981722013-11-22 09:01:48 +00004782ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
Douglas Gregor22d09742012-01-03 18:04:46 +00004783 SourceLocation StartLoc,
Richard Smithf7981722013-11-22 09:01:48 +00004784 Module *Imported,
Douglas Gregorba345522011-12-02 23:23:56 +00004785 SourceLocation EndLoc) {
James Y Knight7a22b242015-08-06 20:26:32 +00004786 ImportDecl *Import = new (C, DC, additionalSizeToAlloc<SourceLocation>(1))
4787 ImportDecl(DC, StartLoc, Imported, EndLoc);
Douglas Gregorba345522011-12-02 23:23:56 +00004788 Import->setImplicit();
4789 return Import;
4790}
4791
Douglas Gregor72172e92012-01-05 21:55:30 +00004792ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
4793 unsigned NumLocations) {
James Y Knight7a22b242015-08-06 20:26:32 +00004794 return new (C, ID, additionalSizeToAlloc<SourceLocation>(NumLocations))
Richard Smithf7981722013-11-22 09:01:48 +00004795 ImportDecl(EmptyShell());
Douglas Gregorba345522011-12-02 23:23:56 +00004796}
4797
4798ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
4799 if (!ImportedAndComplete.getInt())
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00004800 return None;
Douglas Gregorba345522011-12-02 23:23:56 +00004801
Alexander Kornienkofd6ce042015-11-09 17:53:06 +00004802 const auto *StoredLocs = getTrailingObjects<SourceLocation>();
Craig Topper5fc8fc22014-08-27 06:28:36 +00004803 return llvm::makeArrayRef(StoredLocs,
4804 getNumModuleIdentifiers(getImportedModule()));
Douglas Gregorba345522011-12-02 23:23:56 +00004805}
4806
4807SourceRange ImportDecl::getSourceRange() const {
4808 if (!ImportedAndComplete.getInt())
James Y Knight7a22b242015-08-06 20:26:32 +00004809 return SourceRange(getLocation(), *getTrailingObjects<SourceLocation>());
4810
Douglas Gregorba345522011-12-02 23:23:56 +00004811 return SourceRange(getLocation(), getIdentifierLocs().back());
4812}
Richard Smith8df390f2016-09-08 23:14:54 +00004813
4814//===----------------------------------------------------------------------===//
4815// ExportDecl Implementation
4816//===----------------------------------------------------------------------===//
4817
4818void ExportDecl::anchor() {}
4819
4820ExportDecl *ExportDecl::Create(ASTContext &C, DeclContext *DC,
4821 SourceLocation ExportLoc) {
4822 return new (C, DC) ExportDecl(DC, ExportLoc);
4823}
4824
4825ExportDecl *ExportDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
4826 return new (C, ID) ExportDecl(nullptr, SourceLocation());
4827}