blob: dd06e0582ac566d39f9b269ca091975ca902d4b4 [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;
Richard Sandifordeb485fb2019-08-09 08:52:54 +0000235#define SVE_TYPE(Name, Id, SingletonId) \
236 case BuiltinType::Id: \
237 ID = PREDEF_TYPE_##Id##_ID; \
238 break;
239#include "clang/Basic/AArch64SVEACLETypes.def"
Guy Benyei11169dd2012-12-18 14:30:41 +0000240 case BuiltinType::BuiltinFn:
Alexey Baderbdf7c842015-09-15 12:18:29 +0000241 ID = PREDEF_TYPE_BUILTIN_FN;
242 break;
243 case BuiltinType::OMPArraySection:
244 ID = PREDEF_TYPE_OMP_ARRAY_SECTION;
245 break;
Guy Benyei11169dd2012-12-18 14:30:41 +0000246 }
247
248 return TypeIdx(ID);
249}
250
251unsigned serialization::ComputeHash(Selector Sel) {
252 unsigned N = Sel.getNumArgs();
253 if (N == 0)
254 ++N;
255 unsigned R = 5381;
256 for (unsigned I = 0; I != N; ++I)
257 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
Jonas Devlieghere560ce2c2018-02-26 15:16:42 +0000258 R = llvm::djbHash(II->getName(), R);
Guy Benyei11169dd2012-12-18 14:30:41 +0000259 return R;
260}
Douglas Gregor9f782892013-01-21 15:25:38 +0000261
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000262const DeclContext *
263serialization::getDefinitiveDeclContext(const DeclContext *DC) {
Douglas Gregor9f782892013-01-21 15:25:38 +0000264 switch (DC->getDeclKind()) {
265 // These entities may have multiple definitions.
266 case Decl::TranslationUnit:
Richard Smithf19e1272015-03-07 00:04:49 +0000267 case Decl::ExternCContext:
Douglas Gregor9f782892013-01-21 15:25:38 +0000268 case Decl::Namespace:
269 case Decl::LinkageSpec:
Richard Smith8df390f2016-09-08 23:14:54 +0000270 case Decl::Export:
Craig Toppera13603a2014-05-22 05:54:18 +0000271 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000272
273 // C/C++ tag types can only be defined in one place.
274 case Decl::Enum:
275 case Decl::Record:
276 if (const TagDecl *Def = cast<TagDecl>(DC)->getDefinition())
277 return Def;
Craig Toppera13603a2014-05-22 05:54:18 +0000278 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000279
280 // FIXME: These can be defined in one place... except special member
281 // functions and out-of-line definitions.
282 case Decl::CXXRecord:
283 case Decl::ClassTemplateSpecialization:
284 case Decl::ClassTemplatePartialSpecialization:
Craig Toppera13603a2014-05-22 05:54:18 +0000285 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000286
287 // Each function, method, and block declaration is its own DeclContext.
288 case Decl::Function:
289 case Decl::CXXMethod:
290 case Decl::CXXConstructor:
291 case Decl::CXXDestructor:
292 case Decl::CXXConversion:
293 case Decl::ObjCMethod:
294 case Decl::Block:
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000295 case Decl::Captured:
Douglas Gregor9f782892013-01-21 15:25:38 +0000296 // Objective C categories, category implementations, and class
297 // implementations can only be defined in one place.
298 case Decl::ObjCCategory:
299 case Decl::ObjCCategoryImpl:
300 case Decl::ObjCImplementation:
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000301 return DC;
Douglas Gregor9f782892013-01-21 15:25:38 +0000302
303 case Decl::ObjCProtocol:
304 if (const ObjCProtocolDecl *Def
305 = cast<ObjCProtocolDecl>(DC)->getDefinition())
306 return Def;
Craig Toppera13603a2014-05-22 05:54:18 +0000307 return nullptr;
Douglas Gregor9f782892013-01-21 15:25:38 +0000308
309 // FIXME: These are defined in one place, but properties in class extensions
310 // end up being back-patched into the main interface. See
311 // Sema::HandlePropertyInClassExtension for the offending code.
312 case Decl::ObjCInterface:
Craig Toppera13603a2014-05-22 05:54:18 +0000313 return nullptr;
314
Douglas Gregor9f782892013-01-21 15:25:38 +0000315 default:
316 llvm_unreachable("Unhandled DeclContext in AST reader");
317 }
Jonas Devlieghere560ce2c2018-02-26 15:16:42 +0000318
Douglas Gregor7a6e2002013-01-22 17:08:30 +0000319 llvm_unreachable("Unhandled decl kind");
Douglas Gregorfe732d52013-01-21 16:16:40 +0000320}
Douglas Gregor9f782892013-01-21 15:25:38 +0000321
Douglas Gregorfe732d52013-01-21 16:16:40 +0000322bool serialization::isRedeclarableDeclKind(unsigned Kind) {
323 switch (static_cast<Decl::Kind>(Kind)) {
Richard Smithf19e1272015-03-07 00:04:49 +0000324 case Decl::TranslationUnit:
325 case Decl::ExternCContext:
326 // Special case of a "merged" declaration.
327 return true;
328
Douglas Gregorfe732d52013-01-21 16:16:40 +0000329 case Decl::Namespace:
Richard Smithf4634362014-09-03 23:11:22 +0000330 case Decl::NamespaceAlias:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000331 case Decl::Typedef:
332 case Decl::TypeAlias:
333 case Decl::Enum:
334 case Decl::Record:
335 case Decl::CXXRecord:
336 case Decl::ClassTemplateSpecialization:
337 case Decl::ClassTemplatePartialSpecialization:
Larisse Voufo39a1e502013-08-06 01:03:05 +0000338 case Decl::VarTemplateSpecialization:
339 case Decl::VarTemplatePartialSpecialization:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000340 case Decl::Function:
Richard Smithbc491202017-02-17 20:05:37 +0000341 case Decl::CXXDeductionGuide:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000342 case Decl::CXXMethod:
343 case Decl::CXXConstructor:
344 case Decl::CXXDestructor:
345 case Decl::CXXConversion:
Richard Smithfd8634a2013-10-23 02:17:46 +0000346 case Decl::UsingShadow:
Richard Smith5179eb72016-06-28 19:03:57 +0000347 case Decl::ConstructorUsingShadow:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000348 case Decl::Var:
349 case Decl::FunctionTemplate:
350 case Decl::ClassTemplate:
Larisse Voufo39a1e502013-08-06 01:03:05 +0000351 case Decl::VarTemplate:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000352 case Decl::TypeAliasTemplate:
353 case Decl::ObjCProtocol:
354 case Decl::ObjCInterface:
Michael Han84324352013-02-22 17:15:32 +0000355 case Decl::Empty:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000356 return true;
357
358 // Never redeclarable.
359 case Decl::UsingDirective:
360 case Decl::Label:
361 case Decl::UnresolvedUsingTypename:
362 case Decl::TemplateTypeParm:
363 case Decl::EnumConstant:
364 case Decl::UnresolvedUsingValue:
365 case Decl::IndirectField:
366 case Decl::Field:
John McCall5e77d762013-04-16 07:28:30 +0000367 case Decl::MSProperty:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000368 case Decl::ObjCIvar:
369 case Decl::ObjCAtDefsField:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000370 case Decl::NonTypeTemplateParm:
371 case Decl::TemplateTemplateParm:
372 case Decl::Using:
Richard Smith151c4562016-12-20 21:35:28 +0000373 case Decl::UsingPack:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000374 case Decl::ObjCMethod:
375 case Decl::ObjCCategory:
376 case Decl::ObjCCategoryImpl:
377 case Decl::ObjCImplementation:
378 case Decl::ObjCProperty:
379 case Decl::ObjCCompatibleAlias:
380 case Decl::LinkageSpec:
Richard Smith8df390f2016-09-08 23:14:54 +0000381 case Decl::Export:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000382 case Decl::ObjCPropertyImpl:
Nico Weber66220292016-03-02 17:28:48 +0000383 case Decl::PragmaComment:
Nico Webercbbaeb12016-03-02 19:28:54 +0000384 case Decl::PragmaDetectMismatch:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000385 case Decl::FileScopeAsm:
386 case Decl::AccessSpec:
387 case Decl::Friend:
388 case Decl::FriendTemplate:
389 case Decl::StaticAssert:
390 case Decl::Block:
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +0000391 case Decl::Captured:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000392 case Decl::ClassScopeFunctionSpecialization:
393 case Decl::Import:
Alexey Bataeva769e072013-03-22 06:34:35 +0000394 case Decl::OMPThreadPrivate:
Alexey Bataev25ed0c02019-03-07 17:54:44 +0000395 case Decl::OMPAllocate:
Kelvin Li1408f912018-09-26 04:28:39 +0000396 case Decl::OMPRequires:
Alexey Bataev4244be22016-02-11 05:35:55 +0000397 case Decl::OMPCapturedExpr:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +0000398 case Decl::OMPDeclareReduction:
Michael Kruse251e1482019-02-01 20:25:04 +0000399 case Decl::OMPDeclareMapper:
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000400 case Decl::BuiltinTemplate:
Richard Smithbdb84f32016-07-22 23:36:59 +0000401 case Decl::Decomposition:
402 case Decl::Binding:
Saar Razd7aae332019-07-10 21:25:49 +0000403 case Decl::Concept:
Douglas Gregorfe732d52013-01-21 16:16:40 +0000404 return false;
Richard Smithf4634362014-09-03 23:11:22 +0000405
406 // These indirectly derive from Redeclarable<T> but are not actually
407 // redeclarable.
408 case Decl::ImplicitParam:
409 case Decl::ParmVar:
Douglas Gregor85f3f952015-07-07 03:57:15 +0000410 case Decl::ObjCTypeParam:
Richard Smithf4634362014-09-03 23:11:22 +0000411 return false;
Douglas Gregorfe732d52013-01-21 16:16:40 +0000412 }
413
414 llvm_unreachable("Unhandled declaration kind");
Douglas Gregor9f782892013-01-21 15:25:38 +0000415}
Richard Smithd08aeb62014-08-28 01:33:39 +0000416
417bool serialization::needsAnonymousDeclarationNumber(const NamedDecl *D) {
Richard Smith2b560572015-02-07 03:11:11 +0000418 // Friend declarations in dependent contexts aren't anonymous in the usual
419 // sense, but they cannot be found by name lookup in their semantic context
420 // (or indeed in any context), so we treat them as anonymous.
421 //
422 // This doesn't apply to friend tag decls; Sema makes those available to name
423 // lookup in the surrounding context.
424 if (D->getFriendObjectKind() &&
425 D->getLexicalDeclContext()->isDependentContext() && !isa<TagDecl>(D)) {
426 // For function templates and class templates, the template is numbered and
427 // not its pattern.
428 if (auto *FD = dyn_cast<FunctionDecl>(D))
429 return !FD->getDescribedFunctionTemplate();
430 if (auto *RD = dyn_cast<CXXRecordDecl>(D))
431 return !RD->getDescribedClassTemplate();
432 return true;
433 }
434
Richard Smith600adef2018-07-04 02:25:38 +0000435 // At block scope, we number everything that we need to deduplicate, since we
436 // can't just use name matching to keep things lined up.
437 // FIXME: This is only necessary for an inline function or a template or
438 // similar.
439 if (D->getLexicalDeclContext()->isFunctionOrMethod()) {
440 if (auto *VD = dyn_cast<VarDecl>(D))
441 return VD->isStaticLocal();
442 // FIXME: What about CapturedDecls (and declarations nested within them)?
443 return isa<TagDecl>(D) || isa<BlockDecl>(D);
444 }
445
446 // Otherwise, we only care about anonymous class members / block-scope decls.
447 // FIXME: We need to handle lambdas and blocks within inline / templated
448 // variables too.
Daniel Jasper4a6d5b72017-10-11 07:47:54 +0000449 if (D->getDeclName() || !isa<CXXRecordDecl>(D->getLexicalDeclContext()))
Richard Smithd08aeb62014-08-28 01:33:39 +0000450 return false;
451 return isa<TagDecl>(D) || isa<FieldDecl>(D);
452}