blob: aa3477a7d35e6421cfcac3b8cbd7ec46270e9118 [file] [log] [blame]
Guy Benyei11169dd2012-12-18 14:30:41 +00001//===--- ASTCommon.cpp - Common stuff for ASTReader/ASTWriter----*- C++ -*-===//
2//
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
Guy Benyei11169dd2012-12-18 14:30:41 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file defines common functions that both ASTReader and ASTWriter use.
10//
11//===----------------------------------------------------------------------===//
12
13#include "ASTCommon.h"
Richard Smithd08aeb62014-08-28 01:33:39 +000014#include "clang/AST/DeclCXX.h"
Douglas Gregor9f782892013-01-21 15:25:38 +000015#include "clang/AST/DeclObjC.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000016#include "clang/Basic/IdentifierTable.h"
17#include "clang/Serialization/ASTDeserializationListener.h"
Jonas Devlieghere560ce2c2018-02-26 15:16:42 +000018#include "llvm/Support/DJB.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000019
20using namespace clang;
21
22// Give ASTDeserializationListener's VTable a home.
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000023ASTDeserializationListener::~ASTDeserializationListener() { }
Guy Benyei11169dd2012-12-18 14:30:41 +000024
25serialization::TypeIdx
26serialization::TypeIdxFromBuiltin(const BuiltinType *BT) {
27 unsigned ID = 0;
28 switch (BT->getKind()) {
Alexey Baderbdf7c842015-09-15 12:18:29 +000029 case BuiltinType::Void:
30 ID = PREDEF_TYPE_VOID_ID;
31 break;
32 case BuiltinType::Bool:
33 ID = PREDEF_TYPE_BOOL_ID;
34 break;
35 case BuiltinType::Char_U:
36 ID = PREDEF_TYPE_CHAR_U_ID;
37 break;
38 case BuiltinType::UChar:
39 ID = PREDEF_TYPE_UCHAR_ID;
40 break;
41 case BuiltinType::UShort:
42 ID = PREDEF_TYPE_USHORT_ID;
43 break;
44 case BuiltinType::UInt:
45 ID = PREDEF_TYPE_UINT_ID;
46 break;
47 case BuiltinType::ULong:
48 ID = PREDEF_TYPE_ULONG_ID;
49 break;
50 case BuiltinType::ULongLong:
51 ID = PREDEF_TYPE_ULONGLONG_ID;
52 break;
53 case BuiltinType::UInt128:
54 ID = PREDEF_TYPE_UINT128_ID;
55 break;
56 case BuiltinType::Char_S:
57 ID = PREDEF_TYPE_CHAR_S_ID;
58 break;
59 case BuiltinType::SChar:
60 ID = PREDEF_TYPE_SCHAR_ID;
61 break;
Guy Benyei11169dd2012-12-18 14:30:41 +000062 case BuiltinType::WChar_S:
Alexey Baderbdf7c842015-09-15 12:18:29 +000063 case BuiltinType::WChar_U:
64 ID = PREDEF_TYPE_WCHAR_ID;
65 break;
66 case BuiltinType::Short:
67 ID = PREDEF_TYPE_SHORT_ID;
68 break;
69 case BuiltinType::Int:
70 ID = PREDEF_TYPE_INT_ID;
71 break;
72 case BuiltinType::Long:
73 ID = PREDEF_TYPE_LONG_ID;
74 break;
75 case BuiltinType::LongLong:
76 ID = PREDEF_TYPE_LONGLONG_ID;
77 break;
78 case BuiltinType::Int128:
79 ID = PREDEF_TYPE_INT128_ID;
80 break;
81 case BuiltinType::Half:
82 ID = PREDEF_TYPE_HALF_ID;
83 break;
84 case BuiltinType::Float:
85 ID = PREDEF_TYPE_FLOAT_ID;
86 break;
87 case BuiltinType::Double:
88 ID = PREDEF_TYPE_DOUBLE_ID;
89 break;
90 case BuiltinType::LongDouble:
91 ID = PREDEF_TYPE_LONGDOUBLE_ID;
92 break;
Leonard Chanf921d852018-06-04 16:07:52 +000093 case BuiltinType::ShortAccum:
94 ID = PREDEF_TYPE_SHORT_ACCUM_ID;
95 break;
96 case BuiltinType::Accum:
97 ID = PREDEF_TYPE_ACCUM_ID;
98 break;
99 case BuiltinType::LongAccum:
100 ID = PREDEF_TYPE_LONG_ACCUM_ID;
101 break;
102 case BuiltinType::UShortAccum:
103 ID = PREDEF_TYPE_USHORT_ACCUM_ID;
104 break;
105 case BuiltinType::UAccum:
106 ID = PREDEF_TYPE_UACCUM_ID;
107 break;
108 case BuiltinType::ULongAccum:
109 ID = PREDEF_TYPE_ULONG_ACCUM_ID;
110 break;
Leonard Chanab80f3c2018-06-14 14:53:51 +0000111 case BuiltinType::ShortFract:
112 ID = PREDEF_TYPE_SHORT_FRACT_ID;
113 break;
114 case BuiltinType::Fract:
115 ID = PREDEF_TYPE_FRACT_ID;
116 break;
117 case BuiltinType::LongFract:
118 ID = PREDEF_TYPE_LONG_FRACT_ID;
119 break;
120 case BuiltinType::UShortFract:
121 ID = PREDEF_TYPE_USHORT_FRACT_ID;
122 break;
123 case BuiltinType::UFract:
124 ID = PREDEF_TYPE_UFRACT_ID;
125 break;
126 case BuiltinType::ULongFract:
127 ID = PREDEF_TYPE_ULONG_FRACT_ID;
128 break;
129 case BuiltinType::SatShortAccum:
130 ID = PREDEF_TYPE_SAT_SHORT_ACCUM_ID;
131 break;
132 case BuiltinType::SatAccum:
133 ID = PREDEF_TYPE_SAT_ACCUM_ID;
134 break;
135 case BuiltinType::SatLongAccum:
136 ID = PREDEF_TYPE_SAT_LONG_ACCUM_ID;
137 break;
138 case BuiltinType::SatUShortAccum:
139 ID = PREDEF_TYPE_SAT_USHORT_ACCUM_ID;
140 break;
141 case BuiltinType::SatUAccum:
142 ID = PREDEF_TYPE_SAT_UACCUM_ID;
143 break;
144 case BuiltinType::SatULongAccum:
145 ID = PREDEF_TYPE_SAT_ULONG_ACCUM_ID;
146 break;
147 case BuiltinType::SatShortFract:
148 ID = PREDEF_TYPE_SAT_SHORT_FRACT_ID;
149 break;
150 case BuiltinType::SatFract:
151 ID = PREDEF_TYPE_SAT_FRACT_ID;
152 break;
153 case BuiltinType::SatLongFract:
154 ID = PREDEF_TYPE_SAT_LONG_FRACT_ID;
155 break;
156 case BuiltinType::SatUShortFract:
157 ID = PREDEF_TYPE_SAT_USHORT_FRACT_ID;
158 break;
159 case BuiltinType::SatUFract:
160 ID = PREDEF_TYPE_SAT_UFRACT_ID;
161 break;
162 case BuiltinType::SatULongFract:
163 ID = PREDEF_TYPE_SAT_ULONG_FRACT_ID;
164 break;
Sjoerd Meijercc623ad2017-09-08 15:15:00 +0000165 case BuiltinType::Float16:
166 ID = PREDEF_TYPE_FLOAT16_ID;
167 break;
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +0000168 case BuiltinType::Float128:
169 ID = PREDEF_TYPE_FLOAT128_ID;
170 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +0000171 case BuiltinType::NullPtr:
172 ID = PREDEF_TYPE_NULLPTR_ID;
173 break;
Richard Smith3a8244d2018-05-01 05:02:45 +0000174 case BuiltinType::Char8:
175 ID = PREDEF_TYPE_CHAR8_ID;
176 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +0000177 case BuiltinType::Char16:
178 ID = PREDEF_TYPE_CHAR16_ID;
179 break;
180 case BuiltinType::Char32:
181 ID = PREDEF_TYPE_CHAR32_ID;
182 break;
183 case BuiltinType::Overload:
184 ID = PREDEF_TYPE_OVERLOAD_ID;
185 break;
186 case BuiltinType::BoundMember:
187 ID = PREDEF_TYPE_BOUND_MEMBER;
188 break;
189 case BuiltinType::PseudoObject:
190 ID = PREDEF_TYPE_PSEUDO_OBJECT;
191 break;
192 case BuiltinType::Dependent:
193 ID = PREDEF_TYPE_DEPENDENT_ID;
194 break;
195 case BuiltinType::UnknownAny:
196 ID = PREDEF_TYPE_UNKNOWN_ANY;
197 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000198 case BuiltinType::ARCUnbridgedCast:
Alexey Baderbdf7c842015-09-15 12:18:29 +0000199 ID = PREDEF_TYPE_ARC_UNBRIDGED_CAST;
200 break;
201 case BuiltinType::ObjCId:
202 ID = PREDEF_TYPE_OBJC_ID;
203 break;
204 case BuiltinType::ObjCClass:
205 ID = PREDEF_TYPE_OBJC_CLASS;
206 break;
207 case BuiltinType::ObjCSel:
208 ID = PREDEF_TYPE_OBJC_SEL;
209 break;
Alexey Bader954ba212016-04-08 13:40:33 +0000210#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
211 case BuiltinType::Id: \
212 ID = PREDEF_TYPE_##Id##_ID; \
Alexey Baderbdf7c842015-09-15 12:18:29 +0000213 break;
Alexey Baderb62f1442016-04-13 08:33:41 +0000214#include "clang/Basic/OpenCLImageTypes.def"
Andrew Savonichev3fee3512018-11-08 11:25:41 +0000215#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
216 case BuiltinType::Id: \
217 ID = PREDEF_TYPE_##Id##_ID; \
218 break;
219#include "clang/Basic/OpenCLExtensionTypes.def"
Alexey Baderbdf7c842015-09-15 12:18:29 +0000220 case BuiltinType::OCLSampler:
221 ID = PREDEF_TYPE_SAMPLER_ID;
222 break;
223 case BuiltinType::OCLEvent:
224 ID = PREDEF_TYPE_EVENT_ID;
225 break;
Alexey Bader9c8453f2015-09-15 11:18:52 +0000226 case BuiltinType::OCLClkEvent:
227 ID = PREDEF_TYPE_CLK_EVENT_ID;
228 break;
229 case BuiltinType::OCLQueue:
230 ID = PREDEF_TYPE_QUEUE_ID;
231 break;
Alexey Bader9c8453f2015-09-15 11:18:52 +0000232 case BuiltinType::OCLReserveID:
233 ID = PREDEF_TYPE_RESERVE_ID_ID;
234 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000235 case BuiltinType::BuiltinFn:
Alexey Baderbdf7c842015-09-15 12:18:29 +0000236 ID = PREDEF_TYPE_BUILTIN_FN;
237 break;
238 case BuiltinType::OMPArraySection:
239 ID = PREDEF_TYPE_OMP_ARRAY_SECTION;
240 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000241 }
242
243 return TypeIdx(ID);
244}
245
246unsigned serialization::ComputeHash(Selector Sel) {
247 unsigned N = Sel.getNumArgs();
248 if (N == 0)
249 ++N;
250 unsigned R = 5381;
251 for (unsigned I = 0; I != N; ++I)
252 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
Jonas Devlieghere560ce2c2018-02-26 15:16:42 +0000253 R = llvm::djbHash(II->getName(), R);
Guy Benyei11169dd2012-12-18 14:30:41 +0000254 return R;
255}
Douglas Gregor9f782892013-01-21 15:25:38 +0000256
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000257const DeclContext *
258serialization::getDefinitiveDeclContext(const DeclContext *DC) {
Douglas Gregor9f782892013-01-21 15:25:38 +0000259 switch (DC->getDeclKind()) {
260 // These entities may have multiple definitions.
261 case Decl::TranslationUnit:
Richard Smithf19e1272015-03-07 00:04:49 +0000262 case Decl::ExternCContext:
Douglas Gregor9f782892013-01-21 15:25:38 +0000263 case Decl::Namespace:
264 case Decl::LinkageSpec:
Richard Smith8df390f2016-09-08 23:14:54 +0000265 case Decl::Export:
Craig Toppera13603a2014-05-22 05:54:18 +0000266 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000267
268 // C/C++ tag types can only be defined in one place.
269 case Decl::Enum:
270 case Decl::Record:
271 if (const TagDecl *Def = cast<TagDecl>(DC)->getDefinition())
272 return Def;
Craig Toppera13603a2014-05-22 05:54:18 +0000273 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000274
275 // FIXME: These can be defined in one place... except special member
276 // functions and out-of-line definitions.
277 case Decl::CXXRecord:
278 case Decl::ClassTemplateSpecialization:
279 case Decl::ClassTemplatePartialSpecialization:
Craig Toppera13603a2014-05-22 05:54:18 +0000280 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000281
282 // Each function, method, and block declaration is its own DeclContext.
283 case Decl::Function:
284 case Decl::CXXMethod:
285 case Decl::CXXConstructor:
286 case Decl::CXXDestructor:
287 case Decl::CXXConversion:
288 case Decl::ObjCMethod:
289 case Decl::Block:
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000290 case Decl::Captured:
Douglas Gregor9f782892013-01-21 15:25:38 +0000291 // Objective C categories, category implementations, and class
292 // implementations can only be defined in one place.
293 case Decl::ObjCCategory:
294 case Decl::ObjCCategoryImpl:
295 case Decl::ObjCImplementation:
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000296 return DC;
Douglas Gregor9f782892013-01-21 15:25:38 +0000297
298 case Decl::ObjCProtocol:
299 if (const ObjCProtocolDecl *Def
300 = cast<ObjCProtocolDecl>(DC)->getDefinition())
301 return Def;
Craig Toppera13603a2014-05-22 05:54:18 +0000302 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000303
304 // FIXME: These are defined in one place, but properties in class extensions
305 // end up being back-patched into the main interface. See
306 // Sema::HandlePropertyInClassExtension for the offending code.
307 case Decl::ObjCInterface:
Craig Toppera13603a2014-05-22 05:54:18 +0000308 return nullptr;
309
Douglas Gregor9f782892013-01-21 15:25:38 +0000310 default:
311 llvm_unreachable("Unhandled DeclContext in AST reader");
312 }
Jonas Devlieghere560ce2c2018-02-26 15:16:42 +0000313
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000314 llvm_unreachable("Unhandled decl kind");
Douglas Gregorfe732d52013-01-21 16:16:40 +0000315}
Douglas Gregor9f782892013-01-21 15:25:38 +0000316
Douglas Gregorfe732d52013-01-21 16:16:40 +0000317bool serialization::isRedeclarableDeclKind(unsigned Kind) {
318 switch (static_cast<Decl::Kind>(Kind)) {
Richard Smithf19e1272015-03-07 00:04:49 +0000319 case Decl::TranslationUnit:
320 case Decl::ExternCContext:
321 // Special case of a "merged" declaration.
322 return true;
323
Douglas Gregorfe732d52013-01-21 16:16:40 +0000324 case Decl::Namespace:
Richard Smithf4634362014-09-03 23:11:22 +0000325 case Decl::NamespaceAlias:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000326 case Decl::Typedef:
327 case Decl::TypeAlias:
328 case Decl::Enum:
329 case Decl::Record:
330 case Decl::CXXRecord:
331 case Decl::ClassTemplateSpecialization:
332 case Decl::ClassTemplatePartialSpecialization:
Larisse Voufo39a1e502013-08-06 01:03:05 +0000333 case Decl::VarTemplateSpecialization:
334 case Decl::VarTemplatePartialSpecialization:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000335 case Decl::Function:
Richard Smithbc491202017-02-17 20:05:37 +0000336 case Decl::CXXDeductionGuide:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000337 case Decl::CXXMethod:
338 case Decl::CXXConstructor:
339 case Decl::CXXDestructor:
340 case Decl::CXXConversion:
Richard Smithfd8634a2013-10-23 02:17:46 +0000341 case Decl::UsingShadow:
Richard Smith5179eb72016-06-28 19:03:57 +0000342 case Decl::ConstructorUsingShadow:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000343 case Decl::Var:
344 case Decl::FunctionTemplate:
345 case Decl::ClassTemplate:
Larisse Voufo39a1e502013-08-06 01:03:05 +0000346 case Decl::VarTemplate:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000347 case Decl::TypeAliasTemplate:
348 case Decl::ObjCProtocol:
349 case Decl::ObjCInterface:
Michael Han84324352013-02-22 17:15:32 +0000350 case Decl::Empty:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000351 return true;
352
353 // Never redeclarable.
354 case Decl::UsingDirective:
355 case Decl::Label:
356 case Decl::UnresolvedUsingTypename:
357 case Decl::TemplateTypeParm:
358 case Decl::EnumConstant:
359 case Decl::UnresolvedUsingValue:
360 case Decl::IndirectField:
361 case Decl::Field:
John McCall5e77d762013-04-16 07:28:30 +0000362 case Decl::MSProperty:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000363 case Decl::ObjCIvar:
364 case Decl::ObjCAtDefsField:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000365 case Decl::NonTypeTemplateParm:
366 case Decl::TemplateTemplateParm:
367 case Decl::Using:
Richard Smith151c4562016-12-20 21:35:28 +0000368 case Decl::UsingPack:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000369 case Decl::ObjCMethod:
370 case Decl::ObjCCategory:
371 case Decl::ObjCCategoryImpl:
372 case Decl::ObjCImplementation:
373 case Decl::ObjCProperty:
374 case Decl::ObjCCompatibleAlias:
375 case Decl::LinkageSpec:
Richard Smith8df390f2016-09-08 23:14:54 +0000376 case Decl::Export:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000377 case Decl::ObjCPropertyImpl:
Nico Weber66220292016-03-02 17:28:48 +0000378 case Decl::PragmaComment:
Nico Webercbbaeb12016-03-02 19:28:54 +0000379 case Decl::PragmaDetectMismatch:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000380 case Decl::FileScopeAsm:
381 case Decl::AccessSpec:
382 case Decl::Friend:
383 case Decl::FriendTemplate:
384 case Decl::StaticAssert:
385 case Decl::Block:
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000386 case Decl::Captured:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000387 case Decl::ClassScopeFunctionSpecialization:
388 case Decl::Import:
Alexey Bataeva769e072013-03-22 06:34:35 +0000389 case Decl::OMPThreadPrivate:
Alexey Bataev25ed0c02019-03-07 17:54:44 +0000390 case Decl::OMPAllocate:
Kelvin Li1408f912018-09-26 04:28:39 +0000391 case Decl::OMPRequires:
Alexey Bataev4244be22016-02-11 05:35:55 +0000392 case Decl::OMPCapturedExpr:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +0000393 case Decl::OMPDeclareReduction:
Michael Kruse251e1482019-02-01 20:25:04 +0000394 case Decl::OMPDeclareMapper:
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000395 case Decl::BuiltinTemplate:
Richard Smithbdb84f32016-07-22 23:36:59 +0000396 case Decl::Decomposition:
397 case Decl::Binding:
Saar Razd7aae332019-07-10 21:25:49 +0000398 case Decl::Concept:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000399 return false;
Richard Smithf4634362014-09-03 23:11:22 +0000400
401 // These indirectly derive from Redeclarable<T> but are not actually
402 // redeclarable.
403 case Decl::ImplicitParam:
404 case Decl::ParmVar:
Douglas Gregor85f3f952015-07-07 03:57:15 +0000405 case Decl::ObjCTypeParam:
Richard Smithf4634362014-09-03 23:11:22 +0000406 return false;
Douglas Gregorfe732d52013-01-21 16:16:40 +0000407 }
408
409 llvm_unreachable("Unhandled declaration kind");
Douglas Gregor9f782892013-01-21 15:25:38 +0000410}
Richard Smithd08aeb62014-08-28 01:33:39 +0000411
412bool serialization::needsAnonymousDeclarationNumber(const NamedDecl *D) {
Richard Smith2b560572015-02-07 03:11:11 +0000413 // Friend declarations in dependent contexts aren't anonymous in the usual
414 // sense, but they cannot be found by name lookup in their semantic context
415 // (or indeed in any context), so we treat them as anonymous.
416 //
417 // This doesn't apply to friend tag decls; Sema makes those available to name
418 // lookup in the surrounding context.
419 if (D->getFriendObjectKind() &&
420 D->getLexicalDeclContext()->isDependentContext() && !isa<TagDecl>(D)) {
421 // For function templates and class templates, the template is numbered and
422 // not its pattern.
423 if (auto *FD = dyn_cast<FunctionDecl>(D))
424 return !FD->getDescribedFunctionTemplate();
425 if (auto *RD = dyn_cast<CXXRecordDecl>(D))
426 return !RD->getDescribedClassTemplate();
427 return true;
428 }
429
Richard Smith600adef2018-07-04 02:25:38 +0000430 // At block scope, we number everything that we need to deduplicate, since we
431 // can't just use name matching to keep things lined up.
432 // FIXME: This is only necessary for an inline function or a template or
433 // similar.
434 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
435 if (auto *VD = dyn_cast<VarDecl>(D))
436 return VD->isStaticLocal();
437 // FIXME: What about CapturedDecls (and declarations nested within them)?
438 return isa<TagDecl>(D) || isa<BlockDecl>(D);
439 }
440
441 // Otherwise, we only care about anonymous class members / block-scope decls.
442 // FIXME: We need to handle lambdas and blocks within inline / templated
443 // variables too.
Daniel Jasper4a6d5b72017-10-11 07:47:54 +0000444 if (D->getDeclName() || !isa<CXXRecordDecl>(D->getLexicalDeclContext()))
Richard Smithd08aeb62014-08-28 01:33:39 +0000445 return false;
446 return isa<TagDecl>(D) || isa<FieldDecl>(D);
447}