/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/include/clang/AST/DeclBase.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===- DeclBase.h - Base Classes for representing declarations --*- C++ -*-===// |
2 | | // |
3 | | // 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 |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file defines the Decl and DeclContext interfaces. |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | |
13 | | #ifndef LLVM_CLANG_AST_DECLBASE_H |
14 | | #define LLVM_CLANG_AST_DECLBASE_H |
15 | | |
16 | | #include "clang/AST/ASTDumperUtils.h" |
17 | | #include "clang/AST/AttrIterator.h" |
18 | | #include "clang/AST/DeclarationName.h" |
19 | | #include "clang/Basic/IdentifierTable.h" |
20 | | #include "clang/Basic/LLVM.h" |
21 | | #include "clang/Basic/SourceLocation.h" |
22 | | #include "clang/Basic/Specifiers.h" |
23 | | #include "llvm/ADT/ArrayRef.h" |
24 | | #include "llvm/ADT/PointerIntPair.h" |
25 | | #include "llvm/ADT/PointerUnion.h" |
26 | | #include "llvm/ADT/iterator.h" |
27 | | #include "llvm/ADT/iterator_range.h" |
28 | | #include "llvm/Support/Casting.h" |
29 | | #include "llvm/Support/Compiler.h" |
30 | | #include "llvm/Support/PrettyStackTrace.h" |
31 | | #include "llvm/Support/VersionTuple.h" |
32 | | #include <algorithm> |
33 | | #include <cassert> |
34 | | #include <cstddef> |
35 | | #include <iterator> |
36 | | #include <string> |
37 | | #include <type_traits> |
38 | | #include <utility> |
39 | | |
40 | | namespace clang { |
41 | | |
42 | | class ASTContext; |
43 | | class ASTMutationListener; |
44 | | class Attr; |
45 | | class BlockDecl; |
46 | | class DeclContext; |
47 | | class ExternalSourceSymbolAttr; |
48 | | class FunctionDecl; |
49 | | class FunctionType; |
50 | | class IdentifierInfo; |
51 | | enum Linkage : unsigned char; |
52 | | class LinkageSpecDecl; |
53 | | class Module; |
54 | | class NamedDecl; |
55 | | class ObjCCategoryDecl; |
56 | | class ObjCCategoryImplDecl; |
57 | | class ObjCContainerDecl; |
58 | | class ObjCImplDecl; |
59 | | class ObjCImplementationDecl; |
60 | | class ObjCInterfaceDecl; |
61 | | class ObjCMethodDecl; |
62 | | class ObjCProtocolDecl; |
63 | | struct PrintingPolicy; |
64 | | class RecordDecl; |
65 | | class SourceManager; |
66 | | class Stmt; |
67 | | class StoredDeclsMap; |
68 | | class TemplateDecl; |
69 | | class TemplateParameterList; |
70 | | class TranslationUnitDecl; |
71 | | class UsingDirectiveDecl; |
72 | | |
73 | | /// Captures the result of checking the availability of a |
74 | | /// declaration. |
75 | | enum AvailabilityResult { |
76 | | AR_Available = 0, |
77 | | AR_NotYetIntroduced, |
78 | | AR_Deprecated, |
79 | | AR_Unavailable |
80 | | }; |
81 | | |
82 | | /// Decl - This represents one declaration (or definition), e.g. a variable, |
83 | | /// typedef, function, struct, etc. |
84 | | /// |
85 | | /// Note: There are objects tacked on before the *beginning* of Decl |
86 | | /// (and its subclasses) in its Decl::operator new(). Proper alignment |
87 | | /// of all subclasses (not requiring more than the alignment of Decl) is |
88 | | /// asserted in DeclBase.cpp. |
89 | | class alignas(8) Decl { |
90 | | public: |
91 | | /// Lists the kind of concrete classes of Decl. |
92 | | enum Kind { |
93 | | #define DECL(DERIVED, BASE) DERIVED, |
94 | | #define ABSTRACT_DECL(DECL) |
95 | | #define DECL_RANGE(BASE, START, END) \ |
96 | | first##BASE = START, last##BASE = END, |
97 | | #define LAST_DECL_RANGE(BASE, START, END) \ |
98 | | first##BASE = START, last##BASE = END |
99 | | #include "clang/AST/DeclNodes.inc" |
100 | | }; |
101 | | |
102 | | /// A placeholder type used to construct an empty shell of a |
103 | | /// decl-derived type that will be filled in later (e.g., by some |
104 | | /// deserialization method). |
105 | | struct EmptyShell {}; |
106 | | |
107 | | /// IdentifierNamespace - The different namespaces in which |
108 | | /// declarations may appear. According to C99 6.2.3, there are |
109 | | /// four namespaces, labels, tags, members and ordinary |
110 | | /// identifiers. C++ describes lookup completely differently: |
111 | | /// certain lookups merely "ignore" certain kinds of declarations, |
112 | | /// usually based on whether the declaration is of a type, etc. |
113 | | /// |
114 | | /// These are meant as bitmasks, so that searches in |
115 | | /// C++ can look into the "tag" namespace during ordinary lookup. |
116 | | /// |
117 | | /// Decl currently provides 15 bits of IDNS bits. |
118 | | enum IdentifierNamespace { |
119 | | /// Labels, declared with 'x:' and referenced with 'goto x'. |
120 | | IDNS_Label = 0x0001, |
121 | | |
122 | | /// Tags, declared with 'struct foo;' and referenced with |
123 | | /// 'struct foo'. All tags are also types. This is what |
124 | | /// elaborated-type-specifiers look for in C. |
125 | | /// This also contains names that conflict with tags in the |
126 | | /// same scope but that are otherwise ordinary names (non-type |
127 | | /// template parameters and indirect field declarations). |
128 | | IDNS_Tag = 0x0002, |
129 | | |
130 | | /// Types, declared with 'struct foo', typedefs, etc. |
131 | | /// This is what elaborated-type-specifiers look for in C++, |
132 | | /// but note that it's ill-formed to find a non-tag. |
133 | | IDNS_Type = 0x0004, |
134 | | |
135 | | /// Members, declared with object declarations within tag |
136 | | /// definitions. In C, these can only be found by "qualified" |
137 | | /// lookup in member expressions. In C++, they're found by |
138 | | /// normal lookup. |
139 | | IDNS_Member = 0x0008, |
140 | | |
141 | | /// Namespaces, declared with 'namespace foo {}'. |
142 | | /// Lookup for nested-name-specifiers find these. |
143 | | IDNS_Namespace = 0x0010, |
144 | | |
145 | | /// Ordinary names. In C, everything that's not a label, tag, |
146 | | /// member, or function-local extern ends up here. |
147 | | IDNS_Ordinary = 0x0020, |
148 | | |
149 | | /// Objective C \@protocol. |
150 | | IDNS_ObjCProtocol = 0x0040, |
151 | | |
152 | | /// This declaration is a friend function. A friend function |
153 | | /// declaration is always in this namespace but may also be in |
154 | | /// IDNS_Ordinary if it was previously declared. |
155 | | IDNS_OrdinaryFriend = 0x0080, |
156 | | |
157 | | /// This declaration is a friend class. A friend class |
158 | | /// declaration is always in this namespace but may also be in |
159 | | /// IDNS_Tag|IDNS_Type if it was previously declared. |
160 | | IDNS_TagFriend = 0x0100, |
161 | | |
162 | | /// This declaration is a using declaration. A using declaration |
163 | | /// *introduces* a number of other declarations into the current |
164 | | /// scope, and those declarations use the IDNS of their targets, |
165 | | /// but the actual using declarations go in this namespace. |
166 | | IDNS_Using = 0x0200, |
167 | | |
168 | | /// This declaration is a C++ operator declared in a non-class |
169 | | /// context. All such operators are also in IDNS_Ordinary. |
170 | | /// C++ lexical operator lookup looks for these. |
171 | | IDNS_NonMemberOperator = 0x0400, |
172 | | |
173 | | /// This declaration is a function-local extern declaration of a |
174 | | /// variable or function. This may also be IDNS_Ordinary if it |
175 | | /// has been declared outside any function. These act mostly like |
176 | | /// invisible friend declarations, but are also visible to unqualified |
177 | | /// lookup within the scope of the declaring function. |
178 | | IDNS_LocalExtern = 0x0800, |
179 | | |
180 | | /// This declaration is an OpenMP user defined reduction construction. |
181 | | IDNS_OMPReduction = 0x1000, |
182 | | |
183 | | /// This declaration is an OpenMP user defined mapper. |
184 | | IDNS_OMPMapper = 0x2000, |
185 | | }; |
186 | | |
187 | | /// ObjCDeclQualifier - 'Qualifiers' written next to the return and |
188 | | /// parameter types in method declarations. Other than remembering |
189 | | /// them and mangling them into the method's signature string, these |
190 | | /// are ignored by the compiler; they are consumed by certain |
191 | | /// remote-messaging frameworks. |
192 | | /// |
193 | | /// in, inout, and out are mutually exclusive and apply only to |
194 | | /// method parameters. bycopy and byref are mutually exclusive and |
195 | | /// apply only to method parameters (?). oneway applies only to |
196 | | /// results. All of these expect their corresponding parameter to |
197 | | /// have a particular type. None of this is currently enforced by |
198 | | /// clang. |
199 | | /// |
200 | | /// This should be kept in sync with ObjCDeclSpec::ObjCDeclQualifier. |
201 | | enum ObjCDeclQualifier { |
202 | | OBJC_TQ_None = 0x0, |
203 | | OBJC_TQ_In = 0x1, |
204 | | OBJC_TQ_Inout = 0x2, |
205 | | OBJC_TQ_Out = 0x4, |
206 | | OBJC_TQ_Bycopy = 0x8, |
207 | | OBJC_TQ_Byref = 0x10, |
208 | | OBJC_TQ_Oneway = 0x20, |
209 | | |
210 | | /// The nullability qualifier is set when the nullability of the |
211 | | /// result or parameter was expressed via a context-sensitive |
212 | | /// keyword. |
213 | | OBJC_TQ_CSNullability = 0x40 |
214 | | }; |
215 | | |
216 | | /// The kind of ownership a declaration has, for visibility purposes. |
217 | | /// This enumeration is designed such that higher values represent higher |
218 | | /// levels of name hiding. |
219 | | enum class ModuleOwnershipKind : unsigned { |
220 | | /// This declaration is not owned by a module. |
221 | | Unowned, |
222 | | |
223 | | /// This declaration has an owning module, but is globally visible |
224 | | /// (typically because its owning module is visible and we know that |
225 | | /// modules cannot later become hidden in this compilation). |
226 | | /// After serialization and deserialization, this will be converted |
227 | | /// to VisibleWhenImported. |
228 | | Visible, |
229 | | |
230 | | /// This declaration has an owning module, and is visible when that |
231 | | /// module is imported. |
232 | | VisibleWhenImported, |
233 | | |
234 | | /// This declaration has an owning module, but is only visible to |
235 | | /// lookups that occur within that module. |
236 | | ModulePrivate |
237 | | }; |
238 | | |
239 | | protected: |
240 | | /// The next declaration within the same lexical |
241 | | /// DeclContext. These pointers form the linked list that is |
242 | | /// traversed via DeclContext's decls_begin()/decls_end(). |
243 | | /// |
244 | | /// The extra two bits are used for the ModuleOwnershipKind. |
245 | | llvm::PointerIntPair<Decl *, 2, ModuleOwnershipKind> NextInContextAndBits; |
246 | | |
247 | | private: |
248 | | friend class DeclContext; |
249 | | |
250 | | struct MultipleDC { |
251 | | DeclContext *SemanticDC; |
252 | | DeclContext *LexicalDC; |
253 | | }; |
254 | | |
255 | | /// DeclCtx - Holds either a DeclContext* or a MultipleDC*. |
256 | | /// For declarations that don't contain C++ scope specifiers, it contains |
257 | | /// the DeclContext where the Decl was declared. |
258 | | /// For declarations with C++ scope specifiers, it contains a MultipleDC* |
259 | | /// with the context where it semantically belongs (SemanticDC) and the |
260 | | /// context where it was lexically declared (LexicalDC). |
261 | | /// e.g.: |
262 | | /// |
263 | | /// namespace A { |
264 | | /// void f(); // SemanticDC == LexicalDC == 'namespace A' |
265 | | /// } |
266 | | /// void A::f(); // SemanticDC == namespace 'A' |
267 | | /// // LexicalDC == global namespace |
268 | | llvm::PointerUnion<DeclContext*, MultipleDC*> DeclCtx; |
269 | | |
270 | 5.58G | bool isInSemaDC() const { return DeclCtx.is<DeclContext*>(); } |
271 | 0 | bool isOutOfSemaDC() const { return DeclCtx.is<MultipleDC*>(); } |
272 | | |
273 | 129M | MultipleDC *getMultipleDC() const { |
274 | 129M | return DeclCtx.get<MultipleDC*>(); |
275 | 129M | } |
276 | | |
277 | 5.45G | DeclContext *getSemanticDC() const { |
278 | 5.45G | return DeclCtx.get<DeclContext*>(); |
279 | 5.45G | } |
280 | | |
281 | | /// Loc - The location of this decl. |
282 | | SourceLocation Loc; |
283 | | |
284 | | /// DeclKind - This indicates which class this is. |
285 | | unsigned DeclKind : 7; |
286 | | |
287 | | /// InvalidDecl - This indicates a semantic error occurred. |
288 | | unsigned InvalidDecl : 1; |
289 | | |
290 | | /// HasAttrs - This indicates whether the decl has attributes or not. |
291 | | unsigned HasAttrs : 1; |
292 | | |
293 | | /// Implicit - Whether this declaration was implicitly generated by |
294 | | /// the implementation rather than explicitly written by the user. |
295 | | unsigned Implicit : 1; |
296 | | |
297 | | /// Whether this declaration was "used", meaning that a definition is |
298 | | /// required. |
299 | | unsigned Used : 1; |
300 | | |
301 | | /// Whether this declaration was "referenced". |
302 | | /// The difference with 'Used' is whether the reference appears in a |
303 | | /// evaluated context or not, e.g. functions used in uninstantiated templates |
304 | | /// are regarded as "referenced" but not "used". |
305 | | unsigned Referenced : 1; |
306 | | |
307 | | /// Whether this declaration is a top-level declaration (function, |
308 | | /// global variable, etc.) that is lexically inside an objc container |
309 | | /// definition. |
310 | | unsigned TopLevelDeclInObjCContainer : 1; |
311 | | |
312 | | /// Whether statistic collection is enabled. |
313 | | static bool StatisticsEnabled; |
314 | | |
315 | | protected: |
316 | | friend class ASTDeclReader; |
317 | | friend class ASTDeclWriter; |
318 | | friend class ASTNodeImporter; |
319 | | friend class ASTReader; |
320 | | friend class CXXClassMemberWrapper; |
321 | | friend class LinkageComputer; |
322 | | template<typename decl_type> friend class Redeclarable; |
323 | | |
324 | | /// Access - Used by C++ decls for the access specifier. |
325 | | // NOTE: VC++ treats enums as signed, avoid using the AccessSpecifier enum |
326 | | unsigned Access : 2; |
327 | | |
328 | | /// Whether this declaration was loaded from an AST file. |
329 | | unsigned FromASTFile : 1; |
330 | | |
331 | | /// IdentifierNamespace - This specifies what IDNS_* namespace this lives in. |
332 | | unsigned IdentifierNamespace : 14; |
333 | | |
334 | | /// If 0, we have not computed the linkage of this declaration. |
335 | | /// Otherwise, it is the linkage + 1. |
336 | | mutable unsigned CacheValidAndLinkage : 3; |
337 | | |
338 | | /// Allocate memory for a deserialized declaration. |
339 | | /// |
340 | | /// This routine must be used to allocate memory for any declaration that is |
341 | | /// deserialized from a module file. |
342 | | /// |
343 | | /// \param Size The size of the allocated object. |
344 | | /// \param Ctx The context in which we will allocate memory. |
345 | | /// \param ID The global ID of the deserialized declaration. |
346 | | /// \param Extra The amount of extra space to allocate after the object. |
347 | | void *operator new(std::size_t Size, const ASTContext &Ctx, unsigned ID, |
348 | | std::size_t Extra = 0); |
349 | | |
350 | | /// Allocate memory for a non-deserialized declaration. |
351 | | void *operator new(std::size_t Size, const ASTContext &Ctx, |
352 | | DeclContext *Parent, std::size_t Extra = 0); |
353 | | |
354 | | private: |
355 | | bool AccessDeclContextSanity() const; |
356 | | |
357 | | /// Get the module ownership kind to use for a local lexical child of \p DC, |
358 | | /// which may be either a local or (rarely) an imported declaration. |
359 | 101M | static ModuleOwnershipKind getModuleOwnershipKindForChildOf(DeclContext *DC) { |
360 | 101M | if (DC) { |
361 | 93.7M | auto *D = cast<Decl>(DC); |
362 | 93.7M | auto MOK = D->getModuleOwnershipKind(); |
363 | 93.7M | if (MOK != ModuleOwnershipKind::Unowned && |
364 | 3.00M | (!D->isFromASTFile() || D->hasLocalOwningModuleStorage()153k )) |
365 | 2.88M | return MOK; |
366 | | // If D is not local and we have no local module storage, then we don't |
367 | | // need to track module ownership at all. |
368 | 93.7M | } |
369 | 98.7M | return ModuleOwnershipKind::Unowned; |
370 | 98.7M | } |
371 | | |
372 | | public: |
373 | | Decl() = delete; |
374 | | Decl(const Decl&) = delete; |
375 | | Decl(Decl &&) = delete; |
376 | | Decl &operator=(const Decl&) = delete; |
377 | | Decl &operator=(Decl&&) = delete; |
378 | | |
379 | | protected: |
380 | | Decl(Kind DK, DeclContext *DC, SourceLocation L) |
381 | | : NextInContextAndBits(nullptr, getModuleOwnershipKindForChildOf(DC)), |
382 | | DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), |
383 | | Implicit(false), Used(false), Referenced(false), |
384 | | TopLevelDeclInObjCContainer(false), Access(AS_none), FromASTFile(0), |
385 | | IdentifierNamespace(getIdentifierNamespaceForKind(DK)), |
386 | 101M | CacheValidAndLinkage(0) { |
387 | 101M | if (StatisticsEnabled) add(DK)61 ; |
388 | 101M | } |
389 | | |
390 | | Decl(Kind DK, EmptyShell Empty) |
391 | | : DeclKind(DK), InvalidDecl(false), HasAttrs(false), Implicit(false), |
392 | | Used(false), Referenced(false), TopLevelDeclInObjCContainer(false), |
393 | | Access(AS_none), FromASTFile(0), |
394 | | IdentifierNamespace(getIdentifierNamespaceForKind(DK)), |
395 | 70.1k | CacheValidAndLinkage(0) { |
396 | 70.1k | if (StatisticsEnabled) add(DK)0 ; |
397 | 70.1k | } |
398 | | |
399 | | virtual ~Decl(); |
400 | | |
401 | | /// Update a potentially out-of-date declaration. |
402 | | void updateOutOfDate(IdentifierInfo &II) const; |
403 | | |
404 | 71.3M | Linkage getCachedLinkage() const { |
405 | 71.3M | return Linkage(CacheValidAndLinkage - 1); |
406 | 71.3M | } |
407 | | |
408 | 23.7M | void setCachedLinkage(Linkage L) const { |
409 | 23.7M | CacheValidAndLinkage = L + 1; |
410 | 23.7M | } |
411 | | |
412 | 119M | bool hasCachedLinkage() const { |
413 | 119M | return CacheValidAndLinkage; |
414 | 119M | } |
415 | | |
416 | | public: |
417 | | /// Source range that this declaration covers. |
418 | 1.58k | virtual SourceRange getSourceRange() const LLVM_READONLY { |
419 | 1.58k | return SourceRange(getLocation(), getLocation()); |
420 | 1.58k | } |
421 | | |
422 | 2.10M | SourceLocation getBeginLoc() const LLVM_READONLY { |
423 | 2.10M | return getSourceRange().getBegin(); |
424 | 2.10M | } |
425 | | |
426 | 2.09M | SourceLocation getEndLoc() const LLVM_READONLY { |
427 | 2.09M | return getSourceRange().getEnd(); |
428 | 2.09M | } |
429 | | |
430 | 228M | SourceLocation getLocation() const { return Loc; } |
431 | 8.18M | void setLocation(SourceLocation L) { Loc = L; } |
432 | | |
433 | 14.1G | Kind getKind() const { return static_cast<Kind>(DeclKind); } |
434 | | const char *getDeclKindName() const; |
435 | | |
436 | 233M | Decl *getNextDeclInContext() { return NextInContextAndBits.getPointer(); } |
437 | 4.01k | const Decl *getNextDeclInContext() const {return NextInContextAndBits.getPointer();} |
438 | | |
439 | 5.23G | DeclContext *getDeclContext() { |
440 | 5.23G | if (isInSemaDC()) |
441 | 5.12G | return getSemanticDC(); |
442 | 111M | return getMultipleDC()->SemanticDC; |
443 | 111M | } |
444 | 1.22G | const DeclContext *getDeclContext() const { |
445 | 1.22G | return const_cast<Decl*>(this)->getDeclContext(); |
446 | 1.22G | } |
447 | | |
448 | | /// Find the innermost non-closure ancestor of this declaration, |
449 | | /// walking up through blocks, lambdas, etc. If that ancestor is |
450 | | /// not a code context (!isFunctionOrMethod()), returns null. |
451 | | /// |
452 | | /// A declaration may be its own non-closure context. |
453 | | Decl *getNonClosureContext(); |
454 | 288k | const Decl *getNonClosureContext() const { |
455 | 288k | return const_cast<Decl*>(this)->getNonClosureContext(); |
456 | 288k | } |
457 | | |
458 | | TranslationUnitDecl *getTranslationUnitDecl(); |
459 | 1.88G | const TranslationUnitDecl *getTranslationUnitDecl() const { |
460 | 1.88G | return const_cast<Decl*>(this)->getTranslationUnitDecl(); |
461 | 1.88G | } |
462 | | |
463 | | bool isInAnonymousNamespace() const; |
464 | | |
465 | | bool isInStdNamespace() const; |
466 | | |
467 | | ASTContext &getASTContext() const LLVM_READONLY; |
468 | | |
469 | | /// Helper to get the language options from the ASTContext. |
470 | | /// Defined out of line to avoid depending on ASTContext.h. |
471 | | const LangOptions &getLangOpts() const LLVM_READONLY; |
472 | | |
473 | 29.4M | void setAccess(AccessSpecifier AS) { |
474 | 29.4M | Access = AS; |
475 | 29.4M | assert(AccessDeclContextSanity()); |
476 | 29.4M | } |
477 | | |
478 | 190M | AccessSpecifier getAccess() const { |
479 | 190M | assert(AccessDeclContextSanity()); |
480 | 190M | return AccessSpecifier(Access); |
481 | 190M | } |
482 | | |
483 | | /// Retrieve the access specifier for this declaration, even though |
484 | | /// it may not yet have been properly set. |
485 | 33.3k | AccessSpecifier getAccessUnsafe() const { |
486 | 33.3k | return AccessSpecifier(Access); |
487 | 33.3k | } |
488 | | |
489 | 2.31G | bool hasAttrs() const { return HasAttrs; } |
490 | | |
491 | 19.2M | void setAttrs(const AttrVec& Attrs) { |
492 | 19.2M | return setAttrsImpl(Attrs, getASTContext()); |
493 | 19.2M | } |
494 | | |
495 | 47.3M | AttrVec &getAttrs() { |
496 | 47.3M | return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs()); |
497 | 47.3M | } |
498 | | |
499 | | const AttrVec &getAttrs() const; |
500 | | void dropAttrs(); |
501 | | void addAttr(Attr *A); |
502 | | |
503 | | using attr_iterator = AttrVec::const_iterator; |
504 | | using attr_range = llvm::iterator_range<attr_iterator>; |
505 | | |
506 | 104M | attr_range attrs() const { |
507 | 104M | return attr_range(attr_begin(), attr_end()); |
508 | 104M | } |
509 | | |
510 | 209M | attr_iterator attr_begin() const { |
511 | 167M | return hasAttrs() ? getAttrs().begin()42.5M : nullptr; |
512 | 209M | } |
513 | 209M | attr_iterator attr_end() const { |
514 | 167M | return hasAttrs() ? getAttrs().end()42.5M : nullptr; |
515 | 209M | } |
516 | | |
517 | | template <typename T> |
518 | 11.2k | void dropAttr() { |
519 | 11.2k | if (!HasAttrs) return8.58k ; |
520 | | |
521 | 2.63k | AttrVec &Vec = getAttrs(); |
522 | 2.68k | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); void clang::Decl::dropAttr<clang::DLLImportAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 1.96k | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::WeakAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 10 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::WeakRefAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 8 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::SelectAnyAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 19 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::NotTailCalledAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::ConstInitAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 12 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::InternalLinkageAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::OverloadableAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 4 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::WeakImportAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::AliasAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 5 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::SectionAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::UsedAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 4 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::IFuncAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 1 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::NoBuiltinAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 8 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::CUDADeviceAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 12 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::CodeSegAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 11 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::EnforceTCBAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::VisibilityAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
Unexecuted instantiation: void clang::Decl::dropAttr<clang::TypeVisibilityAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const void clang::Decl::dropAttr<clang::SwiftNameAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 11 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::AlwaysInlineAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 7 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::MinSizeAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::UuidAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 16 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::MSInheritanceAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::ObjCDesignatedInitializerAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::TrivialABIAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 33 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::OverrideAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 10 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::FinalAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::DLLExportAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 502 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
void clang::Decl::dropAttr<clang::AvailabilityAttr>()::'lambda'(clang::Attr*)::operator()(clang::Attr*) const Line | Count | Source | 522 | 10 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); |
|
523 | | |
524 | 2.63k | if (Vec.empty()) |
525 | 1.85k | HasAttrs = false; |
526 | 2.63k | } void clang::Decl::dropAttr<clang::DLLImportAttr>() Line | Count | Source | 518 | 6.18k | void dropAttr() { | 519 | 6.18k | if (!HasAttrs) return4.23k ; | 520 | | | 521 | 1.94k | AttrVec &Vec = getAttrs(); | 522 | 1.94k | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 1.94k | if (Vec.empty()) | 525 | 1.49k | HasAttrs = false; | 526 | 1.94k | } |
void clang::Decl::dropAttr<clang::WeakAttr>() Line | Count | Source | 518 | 10 | void dropAttr() { | 519 | 10 | if (!HasAttrs) return0 ; | 520 | | | 521 | 10 | AttrVec &Vec = getAttrs(); | 522 | 10 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 10 | if (Vec.empty()) | 525 | 10 | HasAttrs = false; | 526 | 10 | } |
void clang::Decl::dropAttr<clang::WeakRefAttr>() Line | Count | Source | 518 | 5 | void dropAttr() { | 519 | 5 | if (!HasAttrs) return0 ; | 520 | | | 521 | 5 | AttrVec &Vec = getAttrs(); | 522 | 5 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 5 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 5 | } |
void clang::Decl::dropAttr<clang::SelectAnyAttr>() Line | Count | Source | 518 | 19 | void dropAttr() { | 519 | 19 | if (!HasAttrs) return0 ; | 520 | | | 521 | 19 | AttrVec &Vec = getAttrs(); | 522 | 19 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 19 | if (Vec.empty()) | 525 | 19 | HasAttrs = false; | 526 | 19 | } |
void clang::Decl::dropAttr<clang::NotTailCalledAttr>() Line | Count | Source | 518 | 2 | void dropAttr() { | 519 | 2 | if (!HasAttrs) return0 ; | 520 | | | 521 | 2 | AttrVec &Vec = getAttrs(); | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 2 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 2 | } |
void clang::Decl::dropAttr<clang::ConstInitAttr>() Line | Count | Source | 518 | 12 | void dropAttr() { | 519 | 12 | if (!HasAttrs) return0 ; | 520 | | | 521 | 12 | AttrVec &Vec = getAttrs(); | 522 | 12 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 12 | if (Vec.empty()) | 525 | 12 | HasAttrs = false; | 526 | 12 | } |
void clang::Decl::dropAttr<clang::InternalLinkageAttr>() Line | Count | Source | 518 | 3 | void dropAttr() { | 519 | 3 | if (!HasAttrs) return0 ; | 520 | | | 521 | 3 | AttrVec &Vec = getAttrs(); | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 3 | if (Vec.empty()) | 525 | 3 | HasAttrs = false; | 526 | 3 | } |
void clang::Decl::dropAttr<clang::OverloadableAttr>() Line | Count | Source | 518 | 3 | void dropAttr() { | 519 | 3 | if (!HasAttrs) return0 ; | 520 | | | 521 | 3 | AttrVec &Vec = getAttrs(); | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 3 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 3 | } |
void clang::Decl::dropAttr<clang::WeakImportAttr>() Line | Count | Source | 518 | 2 | void dropAttr() { | 519 | 2 | if (!HasAttrs) return0 ; | 520 | | | 521 | 2 | AttrVec &Vec = getAttrs(); | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 2 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 2 | } |
void clang::Decl::dropAttr<clang::AliasAttr>() Line | Count | Source | 518 | 5 | void dropAttr() { | 519 | 5 | if (!HasAttrs) return0 ; | 520 | | | 521 | 5 | AttrVec &Vec = getAttrs(); | 522 | 5 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 5 | if (Vec.empty()) | 525 | 5 | HasAttrs = false; | 526 | 5 | } |
void clang::Decl::dropAttr<clang::SectionAttr>() Line | Count | Source | 518 | 2 | void dropAttr() { | 519 | 2 | if (!HasAttrs) return0 ; | 520 | | | 521 | 2 | AttrVec &Vec = getAttrs(); | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 2 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 2 | } |
void clang::Decl::dropAttr<clang::UsedAttr>() Line | Count | Source | 518 | 4 | void dropAttr() { | 519 | 4 | if (!HasAttrs) return0 ; | 520 | | | 521 | 4 | AttrVec &Vec = getAttrs(); | 522 | 4 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 4 | if (Vec.empty()) | 525 | 4 | HasAttrs = false; | 526 | 4 | } |
void clang::Decl::dropAttr<clang::IFuncAttr>() Line | Count | Source | 518 | 1 | void dropAttr() { | 519 | 1 | if (!HasAttrs) return0 ; | 520 | | | 521 | 1 | AttrVec &Vec = getAttrs(); | 522 | 1 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 1 | if (Vec.empty()) | 525 | 1 | HasAttrs = false; | 526 | 1 | } |
void clang::Decl::dropAttr<clang::NoBuiltinAttr>() Line | Count | Source | 518 | 8 | void dropAttr() { | 519 | 8 | if (!HasAttrs) return0 ; | 520 | | | 521 | 8 | AttrVec &Vec = getAttrs(); | 522 | 8 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 8 | if (Vec.empty()) | 525 | 8 | HasAttrs = false; | 526 | 8 | } |
void clang::Decl::dropAttr<clang::CUDADeviceAttr>() Line | Count | Source | 518 | 6 | void dropAttr() { | 519 | 6 | if (!HasAttrs) return0 ; | 520 | | | 521 | 6 | AttrVec &Vec = getAttrs(); | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 6 | if (Vec.empty()) | 525 | 0 | HasAttrs = false; | 526 | 6 | } |
void clang::Decl::dropAttr<clang::CodeSegAttr>() Line | Count | Source | 518 | 8 | void dropAttr() { | 519 | 8 | if (!HasAttrs) return0 ; | 520 | | | 521 | 8 | AttrVec &Vec = getAttrs(); | 522 | 8 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 8 | if (Vec.empty()) | 525 | 5 | HasAttrs = false; | 526 | 8 | } |
void clang::Decl::dropAttr<clang::EnforceTCBAttr>() Line | Count | Source | 518 | 5 | void dropAttr() { | 519 | 5 | if (!HasAttrs) return0 ; | 520 | | | 521 | 5 | AttrVec &Vec = getAttrs(); | 522 | 5 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 5 | if (Vec.empty()) | 525 | 3 | HasAttrs = false; | 526 | 5 | } |
void clang::Decl::dropAttr<clang::VisibilityAttr>() Line | Count | Source | 518 | 6 | void dropAttr() { | 519 | 6 | if (!HasAttrs) return0 ; | 520 | | | 521 | 6 | AttrVec &Vec = getAttrs(); | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 6 | if (Vec.empty()) | 525 | 6 | HasAttrs = false; | 526 | 6 | } |
Unexecuted instantiation: void clang::Decl::dropAttr<clang::TypeVisibilityAttr>() void clang::Decl::dropAttr<clang::SwiftNameAttr>() Line | Count | Source | 518 | 11 | void dropAttr() { | 519 | 11 | if (!HasAttrs) return0 ; | 520 | | | 521 | 11 | AttrVec &Vec = getAttrs(); | 522 | 11 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 11 | if (Vec.empty()) | 525 | 11 | HasAttrs = false; | 526 | 11 | } |
void clang::Decl::dropAttr<clang::AlwaysInlineAttr>() Line | Count | Source | 518 | 7 | void dropAttr() { | 519 | 7 | if (!HasAttrs) return0 ; | 520 | | | 521 | 7 | AttrVec &Vec = getAttrs(); | 522 | 7 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 7 | if (Vec.empty()) | 525 | 7 | HasAttrs = false; | 526 | 7 | } |
void clang::Decl::dropAttr<clang::MinSizeAttr>() Line | Count | Source | 518 | 3 | void dropAttr() { | 519 | 3 | if (!HasAttrs) return0 ; | 520 | | | 521 | 3 | AttrVec &Vec = getAttrs(); | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 3 | if (Vec.empty()) | 525 | 3 | HasAttrs = false; | 526 | 3 | } |
void clang::Decl::dropAttr<clang::UuidAttr>() Line | Count | Source | 518 | 16 | void dropAttr() { | 519 | 16 | if (!HasAttrs) return0 ; | 520 | | | 521 | 16 | AttrVec &Vec = getAttrs(); | 522 | 16 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 16 | if (Vec.empty()) | 525 | 16 | HasAttrs = false; | 526 | 16 | } |
void clang::Decl::dropAttr<clang::MSInheritanceAttr>() Line | Count | Source | 518 | 3 | void dropAttr() { | 519 | 3 | if (!HasAttrs) return0 ; | 520 | | | 521 | 3 | AttrVec &Vec = getAttrs(); | 522 | 3 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 3 | if (Vec.empty()) | 525 | 3 | HasAttrs = false; | 526 | 3 | } |
void clang::Decl::dropAttr<clang::ObjCDesignatedInitializerAttr>() Line | Count | Source | 518 | 2 | void dropAttr() { | 519 | 2 | if (!HasAttrs) return0 ; | 520 | | | 521 | 2 | AttrVec &Vec = getAttrs(); | 522 | 2 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 2 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 2 | } |
void clang::Decl::dropAttr<clang::TrivialABIAttr>() Line | Count | Source | 518 | 33 | void dropAttr() { | 519 | 33 | if (!HasAttrs) return0 ; | 520 | | | 521 | 33 | AttrVec &Vec = getAttrs(); | 522 | 33 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 33 | if (Vec.empty()) | 525 | 33 | HasAttrs = false; | 526 | 33 | } |
void clang::Decl::dropAttr<clang::OverrideAttr>() Line | Count | Source | 518 | 10 | void dropAttr() { | 519 | 10 | if (!HasAttrs) return0 ; | 520 | | | 521 | 10 | AttrVec &Vec = getAttrs(); | 522 | 10 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 10 | if (Vec.empty()) | 525 | 10 | HasAttrs = false; | 526 | 10 | } |
void clang::Decl::dropAttr<clang::FinalAttr>() Line | Count | Source | 518 | 6 | void dropAttr() { | 519 | 6 | if (!HasAttrs) return0 ; | 520 | | | 521 | 6 | AttrVec &Vec = getAttrs(); | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 6 | if (Vec.empty()) | 525 | 6 | HasAttrs = false; | 526 | 6 | } |
void clang::Decl::dropAttr<clang::DLLExportAttr>() Line | Count | Source | 518 | 4.84k | void dropAttr() { | 519 | 4.84k | if (!HasAttrs) return4.35k ; | 520 | | | 521 | 487 | AttrVec &Vec = getAttrs(); | 522 | 487 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 487 | if (Vec.empty()) | 525 | 182 | HasAttrs = false; | 526 | 487 | } |
void clang::Decl::dropAttr<clang::AvailabilityAttr>() Line | Count | Source | 518 | 6 | void dropAttr() { | 519 | 6 | if (!HasAttrs) return0 ; | 520 | | | 521 | 6 | AttrVec &Vec = getAttrs(); | 522 | 6 | llvm::erase_if(Vec, [](Attr *A) { return isa<T>(A); }); | 523 | | | 524 | 6 | if (Vec.empty()) | 525 | 2 | HasAttrs = false; | 526 | 6 | } |
|
527 | | |
528 | | template <typename T> |
529 | 105M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { |
530 | 105M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); |
531 | 105M | } llvm::iterator_range<clang::specific_attr_iterator<clang::OMPDeclareTargetDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::OMPDeclareTargetDeclAttr>() const Line | Count | Source | 529 | 134k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 134k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 134k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::AlignedAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::AlignedAttr>() const Line | Count | Source | 529 | 2.30M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 2.30M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 2.30M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::NonNullAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::NonNullAttr>() const Line | Count | Source | 529 | 3.49M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 3.49M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 3.49M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::PreferredNameAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::PreferredNameAttr>() const Line | Count | Source | 529 | 824k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 824k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 824k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::EnableIfAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::EnableIfAttr>() const Line | Count | Source | 529 | 5.13M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 5.13M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 5.13M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::FormatArgAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::FormatArgAttr>() const Line | Count | Source | 529 | 21 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 21 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 21 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::ArgumentWithTypeTagAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::ArgumentWithTypeTagAttr>() const Line | Count | Source | 529 | 3.33M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 3.33M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 3.33M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::AnnotateAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::AnnotateAttr>() const Line | Count | Source | 529 | 8.16k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 8.16k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 8.16k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::InheritableParamAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::InheritableParamAttr>() const Line | Count | Source | 529 | 6.58k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 6.58k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 6.58k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::InheritableAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::InheritableAttr>() const Line | Count | Source | 529 | 338k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 338k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 338k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::TypeTagForDatatypeAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::TypeTagForDatatypeAttr>() const Line | Count | Source | 529 | 101 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 101 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 101 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::OwnershipAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::OwnershipAttr>() const Line | Count | Source | 529 | 2.26k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 2.26k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 2.26k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::EnforceTCBLeafAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::EnforceTCBLeafAttr>() const Line | Count | Source | 529 | 71 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 71 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 71 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::EnforceTCBAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::EnforceTCBAttr>() const Line | Count | Source | 529 | 73 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 73 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 73 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::FormatAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::FormatAttr>() const Line | Count | Source | 529 | 3.64M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 3.64M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 3.64M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::OMPDeclareVariantAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::OMPDeclareVariantAttr>() const Line | Count | Source | 529 | 3.66k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 3.66k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 3.66k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::DiagnoseIfAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::DiagnoseIfAttr>() const Line | Count | Source | 529 | 85.0M | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 85.0M | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 85.0M | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::PtGuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::PtGuardedByAttr>() const Line | Count | Source | 529 | 442 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 442 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 442 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::GuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::GuardedByAttr>() const Line | Count | Source | 529 | 2.48k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 2.48k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 2.48k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::AssumptionAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::AssumptionAttr>() const Line | Count | Source | 529 | 623k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 623k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 623k | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::OMPDeclareSimdDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::OMPDeclareSimdDeclAttr>() const Line | Count | Source | 529 | 177 | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 177 | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 177 | } |
llvm::iterator_range<clang::specific_attr_iterator<clang::NoSanitizeAttr, llvm::SmallVector<clang::Attr*, 4u> > > clang::Decl::specific_attrs<clang::NoSanitizeAttr>() const Line | Count | Source | 529 | 288k | llvm::iterator_range<specific_attr_iterator<T>> specific_attrs() const { | 530 | 288k | return llvm::make_range(specific_attr_begin<T>(), specific_attr_end<T>()); | 531 | 288k | } |
|
532 | | |
533 | | template <typename T> |
534 | 105M | specific_attr_iterator<T> specific_attr_begin() const { |
535 | 105M | return specific_attr_iterator<T>(attr_begin()); |
536 | 105M | } clang::specific_attr_iterator<clang::OMPDeclareTargetDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::OMPDeclareTargetDeclAttr>() const Line | Count | Source | 534 | 134k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 134k | return specific_attr_iterator<T>(attr_begin()); | 536 | 134k | } |
clang::specific_attr_iterator<clang::AlignedAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::AlignedAttr>() const Line | Count | Source | 534 | 2.30M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 2.30M | return specific_attr_iterator<T>(attr_begin()); | 536 | 2.30M | } |
clang::specific_attr_iterator<clang::NonNullAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::NonNullAttr>() const Line | Count | Source | 534 | 3.49M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 3.49M | return specific_attr_iterator<T>(attr_begin()); | 536 | 3.49M | } |
clang::specific_attr_iterator<clang::PreferredNameAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::PreferredNameAttr>() const Line | Count | Source | 534 | 824k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 824k | return specific_attr_iterator<T>(attr_begin()); | 536 | 824k | } |
clang::specific_attr_iterator<clang::EnableIfAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::EnableIfAttr>() const Line | Count | Source | 534 | 5.65M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 5.65M | return specific_attr_iterator<T>(attr_begin()); | 536 | 5.65M | } |
clang::specific_attr_iterator<clang::FormatArgAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::FormatArgAttr>() const Line | Count | Source | 534 | 21 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 21 | return specific_attr_iterator<T>(attr_begin()); | 536 | 21 | } |
clang::specific_attr_iterator<clang::ArgumentWithTypeTagAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::ArgumentWithTypeTagAttr>() const Line | Count | Source | 534 | 3.33M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 3.33M | return specific_attr_iterator<T>(attr_begin()); | 536 | 3.33M | } |
clang::specific_attr_iterator<clang::AnnotateAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::AnnotateAttr>() const Line | Count | Source | 534 | 8.56k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 8.56k | return specific_attr_iterator<T>(attr_begin()); | 536 | 8.56k | } |
clang::specific_attr_iterator<clang::InheritableParamAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::InheritableParamAttr>() const Line | Count | Source | 534 | 6.58k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 6.58k | return specific_attr_iterator<T>(attr_begin()); | 536 | 6.58k | } |
clang::specific_attr_iterator<clang::InheritableAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::InheritableAttr>() const Line | Count | Source | 534 | 338k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 338k | return specific_attr_iterator<T>(attr_begin()); | 536 | 338k | } |
clang::specific_attr_iterator<clang::TypeTagForDatatypeAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::TypeTagForDatatypeAttr>() const Line | Count | Source | 534 | 101 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 101 | return specific_attr_iterator<T>(attr_begin()); | 536 | 101 | } |
clang::specific_attr_iterator<clang::OwnershipAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::OwnershipAttr>() const Line | Count | Source | 534 | 2.26k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 2.26k | return specific_attr_iterator<T>(attr_begin()); | 536 | 2.26k | } |
clang::specific_attr_iterator<clang::EnforceTCBLeafAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::EnforceTCBLeafAttr>() const Line | Count | Source | 534 | 71 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 71 | return specific_attr_iterator<T>(attr_begin()); | 536 | 71 | } |
clang::specific_attr_iterator<clang::EnforceTCBAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::EnforceTCBAttr>() const Line | Count | Source | 534 | 73 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 73 | return specific_attr_iterator<T>(attr_begin()); | 536 | 73 | } |
clang::specific_attr_iterator<clang::FormatAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::FormatAttr>() const Line | Count | Source | 534 | 3.64M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 3.64M | return specific_attr_iterator<T>(attr_begin()); | 536 | 3.64M | } |
clang::specific_attr_iterator<clang::OMPDeclareVariantAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::OMPDeclareVariantAttr>() const Line | Count | Source | 534 | 3.66k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 3.66k | return specific_attr_iterator<T>(attr_begin()); | 536 | 3.66k | } |
clang::specific_attr_iterator<clang::DiagnoseIfAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::DiagnoseIfAttr>() const Line | Count | Source | 534 | 85.0M | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 85.0M | return specific_attr_iterator<T>(attr_begin()); | 536 | 85.0M | } |
clang::specific_attr_iterator<clang::PtGuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::PtGuardedByAttr>() const Line | Count | Source | 534 | 442 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 442 | return specific_attr_iterator<T>(attr_begin()); | 536 | 442 | } |
clang::specific_attr_iterator<clang::GuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::GuardedByAttr>() const Line | Count | Source | 534 | 2.48k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 2.48k | return specific_attr_iterator<T>(attr_begin()); | 536 | 2.48k | } |
clang::specific_attr_iterator<clang::AssumptionAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::AssumptionAttr>() const Line | Count | Source | 534 | 623k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 623k | return specific_attr_iterator<T>(attr_begin()); | 536 | 623k | } |
clang::specific_attr_iterator<clang::OMPDeclareSimdDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::OMPDeclareSimdDeclAttr>() const Line | Count | Source | 534 | 177 | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 177 | return specific_attr_iterator<T>(attr_begin()); | 536 | 177 | } |
clang::specific_attr_iterator<clang::NoSanitizeAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_begin<clang::NoSanitizeAttr>() const Line | Count | Source | 534 | 288k | specific_attr_iterator<T> specific_attr_begin() const { | 535 | 288k | return specific_attr_iterator<T>(attr_begin()); | 536 | 288k | } |
|
537 | | |
538 | | template <typename T> |
539 | 105M | specific_attr_iterator<T> specific_attr_end() const { |
540 | 105M | return specific_attr_iterator<T>(attr_end()); |
541 | 105M | } clang::specific_attr_iterator<clang::OMPDeclareTargetDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::OMPDeclareTargetDeclAttr>() const Line | Count | Source | 539 | 134k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 134k | return specific_attr_iterator<T>(attr_end()); | 541 | 134k | } |
clang::specific_attr_iterator<clang::AlignedAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::AlignedAttr>() const Line | Count | Source | 539 | 2.30M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 2.30M | return specific_attr_iterator<T>(attr_end()); | 541 | 2.30M | } |
clang::specific_attr_iterator<clang::NonNullAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::NonNullAttr>() const Line | Count | Source | 539 | 3.49M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 3.49M | return specific_attr_iterator<T>(attr_end()); | 541 | 3.49M | } |
clang::specific_attr_iterator<clang::PreferredNameAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::PreferredNameAttr>() const Line | Count | Source | 539 | 824k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 824k | return specific_attr_iterator<T>(attr_end()); | 541 | 824k | } |
clang::specific_attr_iterator<clang::EnableIfAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::EnableIfAttr>() const Line | Count | Source | 539 | 5.65M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 5.65M | return specific_attr_iterator<T>(attr_end()); | 541 | 5.65M | } |
clang::specific_attr_iterator<clang::FormatArgAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::FormatArgAttr>() const Line | Count | Source | 539 | 21 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 21 | return specific_attr_iterator<T>(attr_end()); | 541 | 21 | } |
clang::specific_attr_iterator<clang::ArgumentWithTypeTagAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::ArgumentWithTypeTagAttr>() const Line | Count | Source | 539 | 3.33M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 3.33M | return specific_attr_iterator<T>(attr_end()); | 541 | 3.33M | } |
clang::specific_attr_iterator<clang::AnnotateAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::AnnotateAttr>() const Line | Count | Source | 539 | 8.56k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 8.56k | return specific_attr_iterator<T>(attr_end()); | 541 | 8.56k | } |
clang::specific_attr_iterator<clang::InheritableParamAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::InheritableParamAttr>() const Line | Count | Source | 539 | 6.58k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 6.58k | return specific_attr_iterator<T>(attr_end()); | 541 | 6.58k | } |
clang::specific_attr_iterator<clang::InheritableAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::InheritableAttr>() const Line | Count | Source | 539 | 338k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 338k | return specific_attr_iterator<T>(attr_end()); | 541 | 338k | } |
clang::specific_attr_iterator<clang::TypeTagForDatatypeAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::TypeTagForDatatypeAttr>() const Line | Count | Source | 539 | 101 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 101 | return specific_attr_iterator<T>(attr_end()); | 541 | 101 | } |
clang::specific_attr_iterator<clang::OwnershipAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::OwnershipAttr>() const Line | Count | Source | 539 | 2.26k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 2.26k | return specific_attr_iterator<T>(attr_end()); | 541 | 2.26k | } |
clang::specific_attr_iterator<clang::EnforceTCBLeafAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::EnforceTCBLeafAttr>() const Line | Count | Source | 539 | 71 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 71 | return specific_attr_iterator<T>(attr_end()); | 541 | 71 | } |
clang::specific_attr_iterator<clang::EnforceTCBAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::EnforceTCBAttr>() const Line | Count | Source | 539 | 73 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 73 | return specific_attr_iterator<T>(attr_end()); | 541 | 73 | } |
clang::specific_attr_iterator<clang::FormatAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::FormatAttr>() const Line | Count | Source | 539 | 3.64M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 3.64M | return specific_attr_iterator<T>(attr_end()); | 541 | 3.64M | } |
clang::specific_attr_iterator<clang::OMPDeclareVariantAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::OMPDeclareVariantAttr>() const Line | Count | Source | 539 | 3.66k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 3.66k | return specific_attr_iterator<T>(attr_end()); | 541 | 3.66k | } |
clang::specific_attr_iterator<clang::DiagnoseIfAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::DiagnoseIfAttr>() const Line | Count | Source | 539 | 85.0M | specific_attr_iterator<T> specific_attr_end() const { | 540 | 85.0M | return specific_attr_iterator<T>(attr_end()); | 541 | 85.0M | } |
clang::specific_attr_iterator<clang::PtGuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::PtGuardedByAttr>() const Line | Count | Source | 539 | 442 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 442 | return specific_attr_iterator<T>(attr_end()); | 541 | 442 | } |
clang::specific_attr_iterator<clang::GuardedByAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::GuardedByAttr>() const Line | Count | Source | 539 | 2.48k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 2.48k | return specific_attr_iterator<T>(attr_end()); | 541 | 2.48k | } |
clang::specific_attr_iterator<clang::AssumptionAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::AssumptionAttr>() const Line | Count | Source | 539 | 623k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 623k | return specific_attr_iterator<T>(attr_end()); | 541 | 623k | } |
clang::specific_attr_iterator<clang::OMPDeclareSimdDeclAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::OMPDeclareSimdDeclAttr>() const Line | Count | Source | 539 | 177 | specific_attr_iterator<T> specific_attr_end() const { | 540 | 177 | return specific_attr_iterator<T>(attr_end()); | 541 | 177 | } |
clang::specific_attr_iterator<clang::NoSanitizeAttr, llvm::SmallVector<clang::Attr*, 4u> > clang::Decl::specific_attr_end<clang::NoSanitizeAttr>() const Line | Count | Source | 539 | 288k | specific_attr_iterator<T> specific_attr_end() const { | 540 | 288k | return specific_attr_iterator<T>(attr_end()); | 541 | 288k | } |
|
542 | | |
543 | 690M | template<typename T> T *getAttr() const { |
544 | 439M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr250M ; |
545 | 690M | } clang::TargetAttr* clang::Decl::getAttr<clang::TargetAttr>() const Line | Count | Source | 543 | 16.2M | template<typename T> T *getAttr() const { | 544 | 13.3M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.94M ; | 545 | 16.2M | } |
clang::CPUSpecificAttr* clang::Decl::getAttr<clang::CPUSpecificAttr>() const Line | Count | Source | 543 | 16.1M | template<typename T> T *getAttr() const { | 544 | 13.2M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.89M ; | 545 | 16.1M | } |
clang::CUDADeviceAttr* clang::Decl::getAttr<clang::CUDADeviceAttr>() const Line | Count | Source | 543 | 15.9k | template<typename T> T *getAttr() const { | 544 | 14.0k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr1.88k ; | 545 | 15.9k | } |
clang::CUDAConstantAttr* clang::Decl::getAttr<clang::CUDAConstantAttr>() const Line | Count | Source | 543 | 823 | template<typename T> T *getAttr() const { | 544 | 486 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr337 ; | 545 | 823 | } |
clang::TypeVisibilityAttr* clang::Decl::getAttr<clang::TypeVisibilityAttr>() const Line | Count | Source | 543 | 1.34M | template<typename T> T *getAttr() const { | 544 | 853k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())491k : nullptr; | 545 | 1.34M | } |
clang::VisibilityAttr* clang::Decl::getAttr<clang::VisibilityAttr>() const Line | Count | Source | 543 | 4.49M | template<typename T> T *getAttr() const { | 544 | 3.49M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.00M : nullptr; | 545 | 4.49M | } |
clang::SelectAnyAttr* clang::Decl::getAttr<clang::SelectAnyAttr>() const Line | Count | Source | 543 | 34.2M | template<typename T> T *getAttr() const { | 544 | 17.4M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())16.7M : nullptr; | 545 | 34.2M | } |
clang::ArmBuiltinAliasAttr* clang::Decl::getAttr<clang::ArmBuiltinAliasAttr>() const Line | Count | Source | 543 | 97.7M | template<typename T> T *getAttr() const { | 544 | 85.7M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr11.9M ; | 545 | 97.7M | } |
clang::BuiltinAttr* clang::Decl::getAttr<clang::BuiltinAttr>() const Line | Count | Source | 543 | 53.6M | template<typename T> T *getAttr() const { | 544 | 41.6M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr11.9M ; | 545 | 53.6M | } |
clang::EnumExtensibilityAttr* clang::Decl::getAttr<clang::EnumExtensibilityAttr>() const Line | Count | Source | 543 | 604k | template<typename T> T *getAttr() const { | 544 | 471k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())133k : nullptr; | 545 | 604k | } |
clang::ExternalSourceSymbolAttr* clang::Decl::getAttr<clang::ExternalSourceSymbolAttr>() const Line | Count | Source | 543 | 62.0k | template<typename T> T *getAttr() const { | 544 | 61.3k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())713 : nullptr; | 545 | 62.0k | } |
clang::AliasAttr* clang::Decl::getAttr<clang::AliasAttr>() const Line | Count | Source | 543 | 4.31M | template<typename T> T *getAttr() const { | 544 | 2.89M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr1.41M ; | 545 | 4.31M | } |
clang::IFuncAttr* clang::Decl::getAttr<clang::IFuncAttr>() const Line | Count | Source | 543 | 3.41M | template<typename T> T *getAttr() const { | 544 | 2.88M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr526k ; | 545 | 3.41M | } |
Unexecuted instantiation: clang::LoaderUninitializedAttr* clang::Decl::getAttr<clang::LoaderUninitializedAttr>() const clang::UuidAttr* clang::Decl::getAttr<clang::UuidAttr>() const Line | Count | Source | 543 | 361 | template<typename T> T *getAttr() const { | 544 | 210 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr151 ; | 545 | 361 | } |
clang::ObjCMethodFamilyAttr* clang::Decl::getAttr<clang::ObjCMethodFamilyAttr>() const Line | Count | Source | 543 | 247k | template<typename T> T *getAttr() const { | 544 | 125k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr121k ; | 545 | 247k | } |
clang::ObjCRuntimeNameAttr* clang::Decl::getAttr<clang::ObjCRuntimeNameAttr>() const Line | Count | Source | 543 | 22.7k | template<typename T> T *getAttr() const { | 544 | 20.2k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2.49k : nullptr; | 545 | 22.7k | } |
clang::WarnUnusedResultAttr* clang::Decl::getAttr<clang::WarnUnusedResultAttr>() const Line | Count | Source | 543 | 443k | template<typename T> T *getAttr() const { | 544 | 239k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())204k : nullptr; | 545 | 443k | } |
clang::AllocSizeAttr* clang::Decl::getAttr<clang::AllocSizeAttr>() const Line | Count | Source | 543 | 628k | template<typename T> T *getAttr() const { | 544 | 322k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())305k : nullptr; | 545 | 628k | } |
clang::AbiTagAttr* clang::Decl::getAttr<clang::AbiTagAttr>() const Line | Count | Source | 543 | 4.77M | template<typename T> T *getAttr() const { | 544 | 2.41M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.35M ; | 545 | 4.77M | } |
clang::PassObjectSizeAttr* clang::Decl::getAttr<clang::PassObjectSizeAttr>() const Line | Count | Source | 543 | 8.61M | template<typename T> T *getAttr() const { | 544 | 8.61M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())3.54k : nullptr; | 545 | 8.61M | } |
clang::AsmLabelAttr* clang::Decl::getAttr<clang::AsmLabelAttr>() const Line | Count | Source | 543 | 1.59M | template<typename T> T *getAttr() const { | 544 | 1.09M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr497k ; | 545 | 1.59M | } |
clang::MSInheritanceAttr* clang::Decl::getAttr<clang::MSInheritanceAttr>() const Line | Count | Source | 543 | 2.14M | template<typename T> T *getAttr() const { | 544 | 1.42M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())723k : nullptr; | 545 | 2.14M | } |
clang::MSVtorDispAttr* clang::Decl::getAttr<clang::MSVtorDispAttr>() const Line | Count | Source | 543 | 1.68k | template<typename T> T *getAttr() const { | 544 | 1.51k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())168 : nullptr; | 545 | 1.68k | } |
clang::MaxFieldAlignmentAttr* clang::Decl::getAttr<clang::MaxFieldAlignmentAttr>() const Line | Count | Source | 543 | 318k | template<typename T> T *getAttr() const { | 544 | 223k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())95.0k : nullptr; | 545 | 318k | } |
clang::LayoutVersionAttr* clang::Decl::getAttr<clang::LayoutVersionAttr>() const Line | Count | Source | 543 | 3.43k | template<typename T> T *getAttr() const { | 544 | 2.58k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())848 : nullptr; | 545 | 3.43k | } |
clang::OMPThreadPrivateDeclAttr* clang::Decl::getAttr<clang::OMPThreadPrivateDeclAttr>() const Line | Count | Source | 543 | 67 | template<typename T> T *getAttr() const { | 544 | 67 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 67 | } |
clang::OMPAllocateDeclAttr* clang::Decl::getAttr<clang::OMPAllocateDeclAttr>() const Line | Count | Source | 543 | 361 | template<typename T> T *getAttr() const { | 544 | 361 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 361 | } |
Unexecuted instantiation: clang::OMPDeclareTargetDeclAttr* clang::Decl::getAttr<clang::OMPDeclareTargetDeclAttr>() const clang::SectionAttr* clang::Decl::getAttr<clang::SectionAttr>() const Line | Count | Source | 543 | 1.34M | template<typename T> T *getAttr() const { | 544 | 945k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())400k : nullptr; | 545 | 1.34M | } |
clang::DeprecatedAttr* clang::Decl::getAttr<clang::DeprecatedAttr>() const Line | Count | Source | 543 | 82.0k | template<typename T> T *getAttr() const { | 544 | 82.0k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr6 ; | 545 | 82.0k | } |
clang::UnavailableAttr* clang::Decl::getAttr<clang::UnavailableAttr>() const Line | Count | Source | 543 | 376 | template<typename T> T *getAttr() const { | 544 | 376 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 376 | } |
clang::FormatArgAttr* clang::Decl::getAttr<clang::FormatArgAttr>() const Line | Count | Source | 543 | 11 | template<typename T> T *getAttr() const { | 544 | 10 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr1 ; | 545 | 11 | } |
clang::TypeTagForDatatypeAttr* clang::Decl::getAttr<clang::TypeTagForDatatypeAttr>() const Line | Count | Source | 543 | 274 | template<typename T> T *getAttr() const { | 544 | 261 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr13 ; | 545 | 274 | } |
clang::AllocAlignAttr* clang::Decl::getAttr<clang::AllocAlignAttr>() const Line | Count | Source | 543 | 312k | template<typename T> T *getAttr() const { | 544 | 182k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr129k ; | 545 | 312k | } |
clang::ReturnsNonNullAttr* clang::Decl::getAttr<clang::ReturnsNonNullAttr>() const Line | Count | Source | 543 | 2.89k | template<typename T> T *getAttr() const { | 544 | 2.08k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr807 ; | 545 | 2.89k | } |
clang::NonNullAttr* clang::Decl::getAttr<clang::NonNullAttr>() const Line | Count | Source | 543 | 59.5k | template<typename T> T *getAttr() const { | 544 | 59.3k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())273 : nullptr; | 545 | 59.5k | } |
clang::SentinelAttr* clang::Decl::getAttr<clang::SentinelAttr>() const Line | Count | Source | 543 | 3.46M | template<typename T> T *getAttr() const { | 544 | 2.69M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr767k ; | 545 | 3.46M | } |
clang::DLLImportAttr* clang::Decl::getAttr<clang::DLLImportAttr>() const Line | Count | Source | 543 | 21.4M | template<typename T> T *getAttr() const { | 544 | 14.9M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr6.48M ; | 545 | 21.4M | } |
clang::DLLExportAttr* clang::Decl::getAttr<clang::DLLExportAttr>() const Line | Count | Source | 543 | 21.4M | template<typename T> T *getAttr() const { | 544 | 14.9M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr6.48M ; | 545 | 21.4M | } |
clang::WeakAttr* clang::Decl::getAttr<clang::WeakAttr>() const Line | Count | Source | 543 | 16.7M | template<typename T> T *getAttr() const { | 544 | 13.4M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr3.32M ; | 545 | 16.7M | } |
clang::WeakRefAttr* clang::Decl::getAttr<clang::WeakRefAttr>() const Line | Count | Source | 543 | 16.7M | template<typename T> T *getAttr() const { | 544 | 13.4M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr3.32M ; | 545 | 16.7M | } |
clang::NotTailCalledAttr* clang::Decl::getAttr<clang::NotTailCalledAttr>() const Line | Count | Source | 543 | 24.9M | template<typename T> T *getAttr() const { | 544 | 13.6M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr11.3M ; | 545 | 24.9M | } |
clang::CPUDispatchAttr* clang::Decl::getAttr<clang::CPUDispatchAttr>() const Line | Count | Source | 543 | 15.5M | template<typename T> T *getAttr() const { | 544 | 13.0M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.53M ; | 545 | 15.5M | } |
clang::UsedAttr* clang::Decl::getAttr<clang::UsedAttr>() const Line | Count | Source | 543 | 3.50M | template<typename T> T *getAttr() const { | 544 | 2.19M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.31M : nullptr; | 545 | 3.50M | } |
clang::ConstInitAttr* clang::Decl::getAttr<clang::ConstInitAttr>() const Line | Count | Source | 543 | 733k | template<typename T> T *getAttr() const { | 544 | 495k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr238k ; | 545 | 733k | } |
clang::CodeSegAttr* clang::Decl::getAttr<clang::CodeSegAttr>() const Line | Count | Source | 543 | 2.92M | template<typename T> T *getAttr() const { | 544 | 1.72M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.19M : nullptr; | 545 | 2.92M | } |
clang::CarriesDependencyAttr* clang::Decl::getAttr<clang::CarriesDependencyAttr>() const Line | Count | Source | 543 | 736k | template<typename T> T *getAttr() const { | 544 | 696k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())39.5k : nullptr; | 545 | 736k | } |
clang::OverloadableAttr* clang::Decl::getAttr<clang::OverloadableAttr>() const Line | Count | Source | 543 | 6.32M | template<typename T> T *getAttr() const { | 544 | 6.32M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr16 ; | 545 | 6.32M | } |
clang::AnyX86NoCallerSavedRegistersAttr* clang::Decl::getAttr<clang::AnyX86NoCallerSavedRegistersAttr>() const Line | Count | Source | 543 | 1 | template<typename T> T *getAttr() const { | 544 | 1 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 1 | } |
clang::CXX11NoReturnAttr* clang::Decl::getAttr<clang::CXX11NoReturnAttr>() const Line | Count | Source | 543 | 224k | template<typename T> T *getAttr() const { | 544 | 191k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())32.7k : nullptr; | 545 | 224k | } |
clang::NoBuiltinAttr* clang::Decl::getAttr<clang::NoBuiltinAttr>() const Line | Count | Source | 543 | 14.1M | template<typename T> T *getAttr() const { | 544 | 12.4M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr1.62M ; | 545 | 14.1M | } |
clang::DLLExportStaticLocalAttr* clang::Decl::getAttr<clang::DLLExportStaticLocalAttr>() const Line | Count | Source | 543 | 5 | template<typename T> T *getAttr() const { | 544 | 5 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 5 | } |
clang::DLLImportStaticLocalAttr* clang::Decl::getAttr<clang::DLLImportStaticLocalAttr>() const Line | Count | Source | 543 | 1 | template<typename T> T *getAttr() const { | 544 | 1 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 1 | } |
clang::NakedAttr* clang::Decl::getAttr<clang::NakedAttr>() const Line | Count | Source | 543 | 428 | template<typename T> T *getAttr() const { | 544 | 346 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr82 ; | 545 | 428 | } |
clang::Mips16Attr* clang::Decl::getAttr<clang::Mips16Attr>() const Line | Count | Source | 543 | 28 | template<typename T> T *getAttr() const { | 544 | 24 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())4 : nullptr; | 545 | 28 | } |
clang::RISCVInterruptAttr* clang::Decl::getAttr<clang::RISCVInterruptAttr>() const Line | Count | Source | 543 | 1.50k | template<typename T> T *getAttr() const { | 544 | 1.47k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())34 : nullptr; | 545 | 1.50k | } |
clang::MicroMipsAttr* clang::Decl::getAttr<clang::MicroMipsAttr>() const Line | Count | Source | 543 | 11 | template<typename T> T *getAttr() const { | 544 | 8 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())3 : nullptr; | 545 | 11 | } |
clang::MipsInterruptAttr* clang::Decl::getAttr<clang::MipsInterruptAttr>() const Line | Count | Source | 543 | 411 | template<typename T> T *getAttr() const { | 544 | 344 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())67 : nullptr; | 545 | 411 | } |
clang::MipsShortCallAttr* clang::Decl::getAttr<clang::MipsShortCallAttr>() const Line | Count | Source | 543 | 16 | template<typename T> T *getAttr() const { | 544 | 12 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())4 : nullptr; | 545 | 16 | } |
clang::MipsLongCallAttr* clang::Decl::getAttr<clang::MipsLongCallAttr>() const Line | Count | Source | 543 | 16 | template<typename T> T *getAttr() const { | 544 | 12 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())4 : nullptr; | 545 | 16 | } |
clang::CUDASharedAttr* clang::Decl::getAttr<clang::CUDASharedAttr>() const Line | Count | Source | 543 | 314 | template<typename T> T *getAttr() const { | 544 | 289 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())25 : nullptr; | 545 | 314 | } |
clang::HIPManagedAttr* clang::Decl::getAttr<clang::HIPManagedAttr>() const Line | Count | Source | 543 | 540 | template<typename T> T *getAttr() const { | 544 | 526 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())14 : nullptr; | 545 | 540 | } |
clang::CUDAHostAttr* clang::Decl::getAttr<clang::CUDAHostAttr>() const Line | Count | Source | 543 | 3.29k | template<typename T> T *getAttr() const { | 544 | 2.96k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr332 ; | 545 | 3.29k | } |
clang::CUDAGlobalAttr* clang::Decl::getAttr<clang::CUDAGlobalAttr>() const Line | Count | Source | 543 | 3.36k | template<typename T> T *getAttr() const { | 544 | 2.57k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())791 : nullptr; | 545 | 3.36k | } |
clang::CUDADeviceBuiltinTextureTypeAttr* clang::Decl::getAttr<clang::CUDADeviceBuiltinTextureTypeAttr>() const Line | Count | Source | 543 | 10 | template<typename T> T *getAttr() const { | 544 | 10 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())0 : nullptr; | 545 | 10 | } |
clang::CUDADeviceBuiltinSurfaceTypeAttr* clang::Decl::getAttr<clang::CUDADeviceBuiltinSurfaceTypeAttr>() const Line | Count | Source | 543 | 10 | template<typename T> T *getAttr() const { | 544 | 10 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())0 : nullptr; | 545 | 10 | } |
clang::HotAttr* clang::Decl::getAttr<clang::HotAttr>() const Line | Count | Source | 543 | 3.80k | template<typename T> T *getAttr() const { | 544 | 3.08k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())719 : nullptr; | 545 | 3.80k | } |
clang::ColdAttr* clang::Decl::getAttr<clang::ColdAttr>() const Line | Count | Source | 543 | 15 | template<typename T> T *getAttr() const { | 544 | 14 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1 : nullptr; | 545 | 15 | } |
clang::DisableTailCallsAttr* clang::Decl::getAttr<clang::DisableTailCallsAttr>() const Line | Count | Source | 543 | 31 | template<typename T> T *getAttr() const { | 544 | 30 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1 : nullptr; | 545 | 31 | } |
clang::VecReturnAttr* clang::Decl::getAttr<clang::VecReturnAttr>() const Line | Count | Source | 543 | 17 | template<typename T> T *getAttr() const { | 544 | 16 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1 : nullptr; | 545 | 17 | } |
Unexecuted instantiation: clang::CFUnknownTransferAttr* clang::Decl::getAttr<clang::CFUnknownTransferAttr>() const clang::CFAuditedTransferAttr* clang::Decl::getAttr<clang::CFAuditedTransferAttr>() const Line | Count | Source | 543 | 1 | template<typename T> T *getAttr() const { | 544 | 1 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())0 : nullptr; | 545 | 1 | } |
clang::NoSpeculativeLoadHardeningAttr* clang::Decl::getAttr<clang::NoSpeculativeLoadHardeningAttr>() const Line | Count | Source | 543 | 28 | template<typename T> T *getAttr() const { | 544 | 25 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())3 : nullptr; | 545 | 28 | } |
clang::SpeculativeLoadHardeningAttr* clang::Decl::getAttr<clang::SpeculativeLoadHardeningAttr>() const Line | Count | Source | 543 | 28 | template<typename T> T *getAttr() const { | 544 | 25 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())3 : nullptr; | 545 | 28 | } |
clang::MinVectorWidthAttr* clang::Decl::getAttr<clang::MinVectorWidthAttr>() const Line | Count | Source | 543 | 1.32M | template<typename T> T *getAttr() const { | 544 | 1.14M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr175k ; | 545 | 1.32M | } |
clang::OwnerAttr* clang::Decl::getAttr<clang::OwnerAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 35 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())8 : nullptr; | 545 | 43 | } |
clang::PointerAttr* clang::Decl::getAttr<clang::PointerAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 35 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())8 : nullptr; | 545 | 43 | } |
clang::NoDestroyAttr* clang::Decl::getAttr<clang::NoDestroyAttr>() const Line | Count | Source | 543 | 28 | template<typename T> T *getAttr() const { | 544 | 24 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())4 : nullptr; | 545 | 28 | } |
clang::AlwaysDestroyAttr* clang::Decl::getAttr<clang::AlwaysDestroyAttr>() const Line | Count | Source | 543 | 42 | template<typename T> T *getAttr() const { | 544 | 38 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())4 : nullptr; | 545 | 42 | } |
clang::OpenCLIntelReqdSubGroupSizeAttr* clang::Decl::getAttr<clang::OpenCLIntelReqdSubGroupSizeAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::VecTypeHintAttr* clang::Decl::getAttr<clang::VecTypeHintAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::OptimizeNoneAttr* clang::Decl::getAttr<clang::OptimizeNoneAttr>() const Line | Count | Source | 543 | 8.23M | template<typename T> T *getAttr() const { | 544 | 8.05M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())182k : nullptr; | 545 | 8.23M | } |
clang::InternalLinkageAttr* clang::Decl::getAttr<clang::InternalLinkageAttr>() const Line | Count | Source | 543 | 10 | template<typename T> T *getAttr() const { | 544 | 8 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2 : nullptr; | 545 | 10 | } |
clang::CommonAttr* clang::Decl::getAttr<clang::CommonAttr>() const Line | Count | Source | 543 | 1.17k | template<typename T> T *getAttr() const { | 544 | 1.13k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr33 ; | 545 | 1.17k | } |
clang::SwiftNameAttr* clang::Decl::getAttr<clang::SwiftNameAttr>() const Line | Count | Source | 543 | 13 | template<typename T> T *getAttr() const { | 544 | 13 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 13 | } |
clang::AlwaysInlineAttr* clang::Decl::getAttr<clang::AlwaysInlineAttr>() const Line | Count | Source | 543 | 777 | template<typename T> T *getAttr() const { | 544 | 686 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr91 ; | 545 | 777 | } |
clang::MinSizeAttr* clang::Decl::getAttr<clang::MinSizeAttr>() const Line | Count | Source | 543 | 109 | template<typename T> T *getAttr() const { | 544 | 90 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())19 : nullptr; | 545 | 109 | } |
clang::WebAssemblyImportModuleAttr* clang::Decl::getAttr<clang::WebAssemblyImportModuleAttr>() const Line | Count | Source | 543 | 1.37k | template<typename T> T *getAttr() const { | 544 | 1.35k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())14 : nullptr; | 545 | 1.37k | } |
clang::WebAssemblyImportNameAttr* clang::Decl::getAttr<clang::WebAssemblyImportNameAttr>() const Line | Count | Source | 543 | 1.37k | template<typename T> T *getAttr() const { | 544 | 1.35k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())14 : nullptr; | 545 | 1.37k | } |
clang::ReqdWorkGroupSizeAttr* clang::Decl::getAttr<clang::ReqdWorkGroupSizeAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::WorkGroupSizeHintAttr* clang::Decl::getAttr<clang::WorkGroupSizeHintAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::AMDGPUFlatWorkGroupSizeAttr* clang::Decl::getAttr<clang::AMDGPUFlatWorkGroupSizeAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::AMDGPUWavesPerEUAttr* clang::Decl::getAttr<clang::AMDGPUWavesPerEUAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::AMDGPUNumSGPRAttr* clang::Decl::getAttr<clang::AMDGPUNumSGPRAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::AMDGPUNumVGPRAttr* clang::Decl::getAttr<clang::AMDGPUNumVGPRAttr>() const Line | Count | Source | 543 | 17.9M | template<typename T> T *getAttr() const { | 544 | 15.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr2.45M ; | 545 | 17.9M | } |
clang::TrivialABIAttr* clang::Decl::getAttr<clang::TrivialABIAttr>() const Line | Count | Source | 543 | 56 | template<typename T> T *getAttr() const { | 544 | 56 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 56 | } |
clang::FinalAttr* clang::Decl::getAttr<clang::FinalAttr>() const Line | Count | Source | 543 | 399k | template<typename T> T *getAttr() const { | 544 | 366k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())33.5k : nullptr; | 545 | 399k | } |
clang::OverrideAttr* clang::Decl::getAttr<clang::OverrideAttr>() const Line | Count | Source | 543 | 20 | template<typename T> T *getAttr() const { | 544 | 20 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 20 | } |
clang::ObjCDirectAttr* clang::Decl::getAttr<clang::ObjCDirectAttr>() const Line | Count | Source | 543 | 173k | template<typename T> T *getAttr() const { | 544 | 104k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())68.6k : nullptr; | 545 | 173k | } |
clang::AvailabilityAttr* clang::Decl::getAttr<clang::AvailabilityAttr>() const Line | Count | Source | 543 | 14.3M | template<typename T> T *getAttr() const { | 544 | 12.5M | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr1.86M ; | 545 | 14.3M | } |
clang::UnusedAttr* clang::Decl::getAttr<clang::UnusedAttr>() const Line | Count | Source | 543 | 81.7M | template<typename T> T *getAttr() const { | 544 | 72.7M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())8.97M : nullptr; | 545 | 81.7M | } |
clang::ObjCBridgeRelatedAttr* clang::Decl::getAttr<clang::ObjCBridgeRelatedAttr>() const Line | Count | Source | 543 | 1.30k | template<typename T> T *getAttr() const { | 544 | 992 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr317 ; | 545 | 1.30k | } |
clang::ObjCBridgeAttr* clang::Decl::getAttr<clang::ObjCBridgeAttr>() const Line | Count | Source | 543 | 10.6k | template<typename T> T *getAttr() const { | 544 | 7.51k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())3.11k : nullptr; | 545 | 10.6k | } |
clang::ObjCBridgeMutableAttr* clang::Decl::getAttr<clang::ObjCBridgeMutableAttr>() const Line | Count | Source | 543 | 8.48k | template<typename T> T *getAttr() const { | 544 | 7.51k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())969 : nullptr; | 545 | 8.48k | } |
clang::WarnUnusedAttr* clang::Decl::getAttr<clang::WarnUnusedAttr>() const Line | Count | Source | 543 | 7 | template<typename T> T *getAttr() const { | 544 | 5 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2 : nullptr; | 545 | 7 | } |
clang::OpenCLAccessAttr* clang::Decl::getAttr<clang::OpenCLAccessAttr>() const Line | Count | Source | 543 | 97 | template<typename T> T *getAttr() const { | 544 | 87 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr10 ; | 545 | 97 | } |
clang::ParameterABIAttr* clang::Decl::getAttr<clang::ParameterABIAttr>() const Line | Count | Source | 543 | 35.2M | template<typename T> T *getAttr() const { | 544 | 35.1M | return hasAttrs() ? getSpecificAttr<T>(getAttrs())60.7k : nullptr; | 545 | 35.2M | } |
clang::SwiftAsyncAttr* clang::Decl::getAttr<clang::SwiftAsyncAttr>() const Line | Count | Source | 543 | 23.8k | template<typename T> T *getAttr() const { | 544 | 23.3k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())433 : nullptr; | 545 | 23.8k | } |
clang::TestTypestateAttr* clang::Decl::getAttr<clang::TestTypestateAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 43 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 43 | } |
clang::ConsumableAttr* clang::Decl::getAttr<clang::ConsumableAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 43 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 43 | } |
clang::CallableWhenAttr* clang::Decl::getAttr<clang::CallableWhenAttr>() const Line | Count | Source | 543 | 291 | template<typename T> T *getAttr() const { | 544 | 277 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr14 ; | 545 | 291 | } |
clang::ParamTypestateAttr* clang::Decl::getAttr<clang::ParamTypestateAttr>() const Line | Count | Source | 543 | 72 | template<typename T> T *getAttr() const { | 544 | 53 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())19 : nullptr; | 545 | 72 | } |
clang::ReturnTypestateAttr* clang::Decl::getAttr<clang::ReturnTypestateAttr>() const Line | Count | Source | 543 | 268 | template<typename T> T *getAttr() const { | 544 | 229 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())39 : nullptr; | 545 | 268 | } |
clang::SetTypestateAttr* clang::Decl::getAttr<clang::SetTypestateAttr>() const Line | Count | Source | 543 | 215 | template<typename T> T *getAttr() const { | 544 | 202 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr13 ; | 545 | 215 | } |
clang::CapabilityAttr* clang::Decl::getAttr<clang::CapabilityAttr>() const Line | Count | Source | 543 | 4.18k | template<typename T> T *getAttr() const { | 544 | 4.03k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr152 ; | 545 | 4.18k | } |
clang::LockReturnedAttr* clang::Decl::getAttr<clang::LockReturnedAttr>() const Line | Count | Source | 543 | 360 | template<typename T> T *getAttr() const { | 544 | 188 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())172 : nullptr; | 545 | 360 | } |
clang::PcsAttr* clang::Decl::getAttr<clang::PcsAttr>() const Line | Count | Source | 543 | 28.6k | template<typename T> T *getAttr() const { | 544 | 22.6k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())6.05k : nullptr; | 545 | 28.6k | } |
clang::AssumeAlignedAttr* clang::Decl::getAttr<clang::AssumeAlignedAttr>() const Line | Count | Source | 543 | 312k | template<typename T> T *getAttr() const { | 544 | 182k | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr129k ; | 545 | 312k | } |
clang::AlignValueAttr* clang::Decl::getAttr<clang::AlignValueAttr>() const Line | Count | Source | 543 | 711k | template<typename T> T *getAttr() const { | 544 | 688k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())22.9k : nullptr; | 545 | 711k | } |
clang::CFGuardAttr* clang::Decl::getAttr<clang::CFGuardAttr>() const Line | Count | Source | 543 | 319k | template<typename T> T *getAttr() const { | 544 | 220k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())99.3k : nullptr; | 545 | 319k | } |
clang::UninitializedAttr* clang::Decl::getAttr<clang::UninitializedAttr>() const Line | Count | Source | 543 | 197k | template<typename T> T *getAttr() const { | 544 | 191k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())6.83k : nullptr; | 545 | 197k | } |
clang::CleanupAttr* clang::Decl::getAttr<clang::CleanupAttr>() const Line | Count | Source | 543 | 216k | template<typename T> T *getAttr() const { | 544 | 192k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())24.1k : nullptr; | 545 | 216k | } |
clang::InitSegAttr* clang::Decl::getAttr<clang::InitSegAttr>() const Line | Count | Source | 543 | 5.74k | template<typename T> T *getAttr() const { | 544 | 4.61k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.12k : nullptr; | 545 | 5.74k | } |
clang::InitPriorityAttr* clang::Decl::getAttr<clang::InitPriorityAttr>() const Line | Count | Source | 543 | 5.58k | template<typename T> T *getAttr() const { | 544 | 4.48k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.10k : nullptr; | 545 | 5.58k | } |
clang::OMPCaptureKindAttr* clang::Decl::getAttr<clang::OMPCaptureKindAttr>() const Line | Count | Source | 543 | 223 | template<typename T> T *getAttr() const { | 544 | 223 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 223 | } |
clang::XRayInstrumentAttr* clang::Decl::getAttr<clang::XRayInstrumentAttr>() const Line | Count | Source | 543 | 288k | template<typename T> T *getAttr() const { | 544 | 180k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())108k : nullptr; | 545 | 288k | } |
clang::XRayLogArgsAttr* clang::Decl::getAttr<clang::XRayLogArgsAttr>() const Line | Count | Source | 543 | 82 | template<typename T> T *getAttr() const { | 544 | 82 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 82 | } |
clang::PatchableFunctionEntryAttr* clang::Decl::getAttr<clang::PatchableFunctionEntryAttr>() const Line | Count | Source | 543 | 288k | template<typename T> T *getAttr() const { | 544 | 180k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())108k : nullptr; | 545 | 288k | } |
clang::TLSModelAttr* clang::Decl::getAttr<clang::TLSModelAttr>() const Line | Count | Source | 543 | 534 | template<typename T> T *getAttr() const { | 544 | 404 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())130 : nullptr; | 545 | 534 | } |
clang::PragmaClangBSSSectionAttr* clang::Decl::getAttr<clang::PragmaClangBSSSectionAttr>() const Line | Count | Source | 543 | 34.5k | template<typename T> T *getAttr() const { | 544 | 31.6k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2.87k : nullptr; | 545 | 34.5k | } |
clang::PragmaClangDataSectionAttr* clang::Decl::getAttr<clang::PragmaClangDataSectionAttr>() const Line | Count | Source | 543 | 34.5k | template<typename T> T *getAttr() const { | 544 | 31.6k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2.87k : nullptr; | 545 | 34.5k | } |
clang::PragmaClangRodataSectionAttr* clang::Decl::getAttr<clang::PragmaClangRodataSectionAttr>() const Line | Count | Source | 543 | 34.5k | template<typename T> T *getAttr() const { | 544 | 31.6k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2.87k : nullptr; | 545 | 34.5k | } |
clang::PragmaClangRelroSectionAttr* clang::Decl::getAttr<clang::PragmaClangRelroSectionAttr>() const Line | Count | Source | 543 | 34.5k | template<typename T> T *getAttr() const { | 544 | 31.6k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2.87k : nullptr; | 545 | 34.5k | } |
clang::PragmaClangTextSectionAttr* clang::Decl::getAttr<clang::PragmaClangTextSectionAttr>() const Line | Count | Source | 543 | 281k | template<typename T> T *getAttr() const { | 544 | 174k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())106k : nullptr; | 545 | 281k | } |
clang::CallbackAttr* clang::Decl::getAttr<clang::CallbackAttr>() const Line | Count | Source | 543 | 283k | template<typename T> T *getAttr() const { | 544 | 165k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())117k : nullptr; | 545 | 283k | } |
clang::ConstructorAttr* clang::Decl::getAttr<clang::ConstructorAttr>() const Line | Count | Source | 543 | 198k | template<typename T> T *getAttr() const { | 544 | 114k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())83.9k : nullptr; | 545 | 198k | } |
clang::DestructorAttr* clang::Decl::getAttr<clang::DestructorAttr>() const Line | Count | Source | 543 | 198k | template<typename T> T *getAttr() const { | 544 | 114k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())83.9k : nullptr; | 545 | 198k | } |
clang::AVRInterruptAttr* clang::Decl::getAttr<clang::AVRInterruptAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 41 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2 : nullptr; | 545 | 43 | } |
clang::AVRSignalAttr* clang::Decl::getAttr<clang::AVRSignalAttr>() const Line | Count | Source | 543 | 43 | template<typename T> T *getAttr() const { | 544 | 41 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())2 : nullptr; | 545 | 43 | } |
clang::WebAssemblyExportNameAttr* clang::Decl::getAttr<clang::WebAssemblyExportNameAttr>() const Line | Count | Source | 543 | 1.36k | template<typename T> T *getAttr() const { | 544 | 1.35k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())7 : nullptr; | 545 | 1.36k | } |
clang::ARMInterruptAttr* clang::Decl::getAttr<clang::ARMInterruptAttr>() const Line | Count | Source | 543 | 12.2k | template<typename T> T *getAttr() const { | 544 | 10.5k | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1.75k : nullptr; | 545 | 12.2k | } |
clang::CUDALaunchBoundsAttr* clang::Decl::getAttr<clang::CUDALaunchBoundsAttr>() const Line | Count | Source | 543 | 333 | template<typename T> T *getAttr() const { | 544 | 325 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr8 ; | 545 | 333 | } |
clang::MSP430InterruptAttr* clang::Decl::getAttr<clang::MSP430InterruptAttr>() const Line | Count | Source | 543 | 21 | template<typename T> T *getAttr() const { | 544 | 20 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())1 : nullptr; | 545 | 21 | } |
clang::BlocksAttr* clang::Decl::getAttr<clang::BlocksAttr>() const Line | Count | Source | 543 | 4 | template<typename T> T *getAttr() const { | 544 | 4 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 4 | } |
clang::AcquireHandleAttr* clang::Decl::getAttr<clang::AcquireHandleAttr>() const Line | Count | Source | 543 | 151 | template<typename T> T *getAttr() const { | 544 | 151 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 151 | } |
clang::ReleaseHandleAttr* clang::Decl::getAttr<clang::ReleaseHandleAttr>() const Line | Count | Source | 543 | 165 | template<typename T> T *getAttr() const { | 544 | 165 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 165 | } |
clang::UseHandleAttr* clang::Decl::getAttr<clang::UseHandleAttr>() const Line | Count | Source | 543 | 47 | template<typename T> T *getAttr() const { | 544 | 47 | return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr0 ; | 545 | 47 | } |
clang::IBOutletCollectionAttr* clang::Decl::getAttr<clang::IBOutletCollectionAttr>() const Line | Count | Source | 543 | 33 | template<typename T> T *getAttr() const { | 544 | 26 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())7 : nullptr; | 545 | 33 | } |
clang::AnnotateAttr* clang::Decl::getAttr<clang::AnnotateAttr>() const Line | Count | Source | 543 | 65 | template<typename T> T *getAttr() const { | 544 | 54 | return hasAttrs() ? getSpecificAttr<T>(getAttrs())11 : nullptr; | 545 | 65 | } |
|
546 | | |
547 | 1.10G | template<typename T> bool hasAttr() const { |
548 | 1.10G | return hasAttrs() && hasSpecificAttr<T>(getAttrs())587M ; |
549 | 1.10G | } bool clang::Decl::hasAttr<clang::DLLImportAttr>() const Line | Count | Source | 547 | 37.2M | template<typename T> bool hasAttr() const { | 548 | 37.2M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())23.4M ; | 549 | 37.2M | } |
bool clang::Decl::hasAttr<clang::DLLExportAttr>() const Line | Count | Source | 547 | 9.35M | template<typename T> bool hasAttr() const { | 548 | 9.35M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())5.73M ; | 549 | 9.35M | } |
bool clang::Decl::hasAttr<clang::CUDAGlobalAttr>() const Line | Count | Source | 547 | 52.8M | template<typename T> bool hasAttr() const { | 548 | 52.8M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())41.8M ; | 549 | 52.8M | } |
bool clang::Decl::hasAttr<clang::GNUInlineAttr>() const Line | Count | Source | 547 | 9.15M | template<typename T> bool hasAttr() const { | 548 | 9.15M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())8.22M ; | 549 | 9.15M | } |
bool clang::Decl::hasAttr<clang::PackedAttr>() const Line | Count | Source | 547 | 1.73M | template<typename T> bool hasAttr() const { | 548 | 1.73M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())233k ; | 549 | 1.73M | } |
bool clang::Decl::hasAttr<clang::AlignedAttr>() const Line | Count | Source | 547 | 1.39M | template<typename T> bool hasAttr() const { | 548 | 1.39M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())245k ; | 549 | 1.39M | } |
bool clang::Decl::hasAttr<clang::BlocksAttr>() const Line | Count | Source | 547 | 51.6M | template<typename T> bool hasAttr() const { | 548 | 51.6M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.56M ; | 549 | 51.6M | } |
bool clang::Decl::hasAttr<clang::TransparentUnionAttr>() const Line | Count | Source | 547 | 248 | template<typename T> bool hasAttr() const { | 548 | 248 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())141 ; | 549 | 248 | } |
bool clang::Decl::hasAttr<clang::WeakRefAttr>() const Line | Count | Source | 547 | 54.5M | template<typename T> bool hasAttr() const { | 548 | 54.5M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())30.5M ; | 549 | 54.5M | } |
bool clang::Decl::hasAttr<clang::AliasAttr>() const Line | Count | Source | 547 | 46.0M | template<typename T> bool hasAttr() const { | 548 | 46.0M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())24.5M ; | 549 | 46.0M | } |
bool clang::Decl::hasAttr<clang::UsedAttr>() const Line | Count | Source | 547 | 44.8M | template<typename T> bool hasAttr() const { | 548 | 44.8M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())19.8M ; | 549 | 44.8M | } |
bool clang::Decl::hasAttr<clang::ConstructorAttr>() const Line | Count | Source | 547 | 5.61M | template<typename T> bool hasAttr() const { | 548 | 5.61M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())5.23M ; | 549 | 5.61M | } |
bool clang::Decl::hasAttr<clang::DestructorAttr>() const Line | Count | Source | 547 | 5.61M | template<typename T> bool hasAttr() const { | 548 | 5.61M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())5.23M ; | 549 | 5.61M | } |
bool clang::Decl::hasAttr<clang::UnavailableAttr>() const Line | Count | Source | 547 | 3.16M | template<typename T> bool hasAttr() const { | 548 | 3.16M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())306k ; | 549 | 3.16M | } |
bool clang::Decl::hasAttr<clang::DeprecatedAttr>() const Line | Count | Source | 547 | 101 | template<typename T> bool hasAttr() const { | 548 | 101 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())19 ; | 549 | 101 | } |
bool clang::Decl::hasAttr<clang::CUDADeviceAttr>() const Line | Count | Source | 547 | 13.0M | template<typename T> bool hasAttr() const { | 548 | 13.0M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())60.0k ; | 549 | 13.0M | } |
bool clang::Decl::hasAttr<clang::CUDAConstantAttr>() const Line | Count | Source | 547 | 13.0M | template<typename T> bool hasAttr() const { | 548 | 13.0M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())44.8k ; | 549 | 13.0M | } |
bool clang::Decl::hasAttr<clang::AvailabilityAttr>() const Line | Count | Source | 547 | 115 | template<typename T> bool hasAttr() const { | 548 | 115 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())13 ; | 549 | 115 | } |
bool clang::Decl::hasAttr<clang::VisibilityAttr>() const Line | Count | Source | 547 | 97.0k | template<typename T> bool hasAttr() const { | 548 | 97.0k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())9.50k ; | 549 | 97.0k | } |
bool clang::Decl::hasAttr<clang::TypeVisibilityAttr>() const Line | Count | Source | 547 | 41.8k | template<typename T> bool hasAttr() const { | 548 | 41.8k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())40.8k ; | 549 | 41.8k | } |
bool clang::Decl::hasAttr<clang::InternalLinkageAttr>() const Line | Count | Source | 547 | 111M | template<typename T> bool hasAttr() const { | 548 | 111M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())77.9M ; | 549 | 111M | } |
bool clang::Decl::hasAttr<clang::ThreadAttr>() const Line | Count | Source | 547 | 6.38M | template<typename T> bool hasAttr() const { | 548 | 6.38M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())135k ; | 549 | 6.38M | } |
bool clang::Decl::hasAttr<clang::OMPThreadPrivateDeclAttr>() const Line | Count | Source | 547 | 6.24M | template<typename T> bool hasAttr() const { | 548 | 6.24M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())69.4k ; | 549 | 6.24M | } |
bool clang::Decl::hasAttr<clang::CUDASharedAttr>() const Line | Count | Source | 547 | 45.2k | template<typename T> bool hasAttr() const { | 548 | 45.2k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.89k ; | 549 | 45.2k | } |
bool clang::Decl::hasAttr<clang::NoDestroyAttr>() const Line | Count | Source | 547 | 1.22M | template<typename T> bool hasAttr() const { | 548 | 1.22M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())21.8k ; | 549 | 1.22M | } |
bool clang::Decl::hasAttr<clang::AlwaysDestroyAttr>() const Line | Count | Source | 547 | 44 | template<typename T> bool hasAttr() const { | 548 | 44 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())21 ; | 549 | 44 | } |
bool clang::Decl::hasAttr<clang::NSConsumedAttr>() const Line | Count | Source | 547 | 316k | template<typename T> bool hasAttr() const { | 548 | 316k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())13.8k ; | 549 | 316k | } |
bool clang::Decl::hasAttr<clang::OpenCLKernelAttr>() const Line | Count | Source | 547 | 31.5M | template<typename T> bool hasAttr() const { | 548 | 31.5M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())23.2M ; | 549 | 31.5M | } |
bool clang::Decl::hasAttr<clang::NoReturnAttr>() const Line | Count | Source | 547 | 5.35M | template<typename T> bool hasAttr() const { | 548 | 5.35M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.69M ; | 549 | 5.35M | } |
bool clang::Decl::hasAttr<clang::CXX11NoReturnAttr>() const Line | Count | Source | 547 | 4.71M | template<typename T> bool hasAttr() const { | 548 | 4.71M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.38M ; | 549 | 4.71M | } |
bool clang::Decl::hasAttr<clang::C11NoReturnAttr>() const Line | Count | Source | 547 | 4.70M | template<typename T> bool hasAttr() const { | 548 | 4.70M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.38M ; | 549 | 4.70M | } |
bool clang::Decl::hasAttr<clang::TargetAttr>() const Line | Count | Source | 547 | 15.5M | template<typename T> bool hasAttr() const { | 548 | 15.5M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())13.0M ; | 549 | 15.5M | } |
bool clang::Decl::hasAttr<clang::CPUDispatchAttr>() const Line | Count | Source | 547 | 26.4M | template<typename T> bool hasAttr() const { | 548 | 26.4M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())22.3M ; | 549 | 26.4M | } |
bool clang::Decl::hasAttr<clang::CPUSpecificAttr>() const Line | Count | Source | 547 | 14.4M | template<typename T> bool hasAttr() const { | 548 | 14.4M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())11.9M ; | 549 | 14.4M | } |
bool clang::Decl::hasAttr<clang::OverloadableAttr>() const Line | Count | Source | 547 | 78.3M | template<typename T> bool hasAttr() const { | 548 | 78.3M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())75.1M ; | 549 | 78.3M | } |
bool clang::Decl::hasAttr<clang::ArmBuiltinAliasAttr>() const Line | Count | Source | 547 | 43.3M | template<typename T> bool hasAttr() const { | 548 | 43.3M | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 43.3M | } |
bool clang::Decl::hasAttr<clang::FlagEnumAttr>() const Line | Count | Source | 547 | 476k | template<typename T> bool hasAttr() const { | 548 | 476k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())4.96k ; | 549 | 476k | } |
bool clang::Decl::hasAttr<clang::CapturedRecordAttr>() const Line | Count | Source | 547 | 8.77k | template<typename T> bool hasAttr() const { | 548 | 8.77k | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 8.77k | } |
bool clang::Decl::hasAttr<clang::MSStructAttr>() const Line | Count | Source | 547 | 1.75M | template<typename T> bool hasAttr() const { | 548 | 1.75M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())324k ; | 549 | 1.75M | } |
bool clang::Decl::hasAttr<clang::WeakAttr>() const Line | Count | Source | 547 | 18.1M | template<typename T> bool hasAttr() const { | 548 | 18.1M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())627k ; | 549 | 18.1M | } |
bool clang::Decl::hasAttr<clang::IFuncAttr>() const Line | Count | Source | 547 | 39.3M | template<typename T> bool hasAttr() const { | 548 | 39.3M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())20.3M ; | 549 | 39.3M | } |
bool clang::Decl::hasAttr<clang::LoaderUninitializedAttr>() const Line | Count | Source | 547 | 30.9M | template<typename T> bool hasAttr() const { | 548 | 30.9M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())11.1M ; | 549 | 30.9M | } |
bool clang::Decl::hasAttr<clang::FinalAttr>() const Line | Count | Source | 547 | 6.37M | template<typename T> bool hasAttr() const { | 548 | 6.37M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.71M ; | 549 | 6.37M | } |
bool clang::Decl::hasAttr<clang::ArcWeakrefUnavailableAttr>() const Line | Count | Source | 547 | 570 | template<typename T> bool hasAttr() const { | 548 | 570 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())81 ; | 549 | 570 | } |
bool clang::Decl::hasAttr<clang::ObjCRequiresPropertyDefsAttr>() const Line | Count | Source | 547 | 18.7k | template<typename T> bool hasAttr() const { | 548 | 18.7k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.00k ; | 549 | 18.7k | } |
bool clang::Decl::hasAttr<clang::ObjCDirectAttr>() const Line | Count | Source | 547 | 3.13M | template<typename T> bool hasAttr() const { | 548 | 3.13M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.74M ; | 549 | 3.13M | } |
bool clang::Decl::hasAttr<clang::ObjCDesignatedInitializerAttr>() const Line | Count | Source | 547 | 17.9M | template<typename T> bool hasAttr() const { | 548 | 17.9M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())15.5M ; | 549 | 17.9M | } |
bool clang::Decl::hasAttr<clang::NSConsumesSelfAttr>() const Line | Count | Source | 547 | 30.8k | template<typename T> bool hasAttr() const { | 548 | 30.8k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())12.5k ; | 549 | 30.8k | } |
bool clang::Decl::hasAttr<clang::ObjCNonRuntimeProtocolAttr>() const Line | Count | Source | 547 | 245 | template<typename T> bool hasAttr() const { | 548 | 245 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())55 ; | 549 | 245 | } |
bool clang::Decl::hasAttr<clang::OMPDeclareTargetDeclAttr>() const Line | Count | Source | 547 | 12.0k | template<typename T> bool hasAttr() const { | 548 | 12.0k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())843 ; | 549 | 12.0k | } |
bool clang::Decl::hasAttr<clang::PureAttr>() const Line | Count | Source | 547 | 1.10M | template<typename T> bool hasAttr() const { | 548 | 1.10M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())519k ; | 549 | 1.10M | } |
bool clang::Decl::hasAttr<clang::ConstAttr>() const Line | Count | Source | 547 | 16.6M | template<typename T> bool hasAttr() const { | 548 | 16.6M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())16.0M ; | 549 | 16.6M | } |
bool clang::Decl::hasAttr<clang::WarnUnusedAttr>() const Line | Count | Source | 547 | 6.11k | template<typename T> bool hasAttr() const { | 548 | 6.11k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())452 ; | 549 | 6.11k | } |
bool clang::Decl::hasAttr<clang::WarnUnusedResultAttr>() const Line | Count | Source | 547 | 9.38k | template<typename T> bool hasAttr() const { | 548 | 9.38k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())618 ; | 549 | 9.38k | } |
bool clang::Decl::hasAttr<clang::AsmLabelAttr>() const Line | Count | Source | 547 | 3.88M | template<typename T> bool hasAttr() const { | 548 | 3.88M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.20M ; | 549 | 3.88M | } |
bool clang::Decl::hasAttr<clang::NonNullAttr>() const Line | Count | Source | 547 | 6.06M | template<typename T> bool hasAttr() const { | 548 | 6.06M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())265k ; | 549 | 6.06M | } |
bool clang::Decl::hasAttr<clang::EnableIfAttr>() const Line | Count | Source | 547 | 1.90M | template<typename T> bool hasAttr() const { | 548 | 1.90M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.61M ; | 549 | 1.90M | } |
bool clang::Decl::hasAttr<clang::EmptyBasesAttr>() const Line | Count | Source | 547 | 3.44k | template<typename T> bool hasAttr() const { | 548 | 3.44k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())864 ; | 549 | 3.44k | } |
bool clang::Decl::hasAttr<clang::AlignMac68kAttr>() const Line | Count | Source | 547 | 313k | template<typename T> bool hasAttr() const { | 548 | 313k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())93.9k ; | 549 | 313k | } |
bool clang::Decl::hasAttr<clang::AlignNaturalAttr>() const Line | Count | Source | 547 | 313k | template<typename T> bool hasAttr() const { | 548 | 313k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())93.9k ; | 549 | 313k | } |
bool clang::Decl::hasAttr<clang::NoUniqueAddressAttr>() const Line | Count | Source | 547 | 3.60M | template<typename T> bool hasAttr() const { | 548 | 3.60M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())10.4k ; | 549 | 3.60M | } |
bool clang::Decl::hasAttr<clang::CUDAHostAttr>() const Line | Count | Source | 547 | 7.25k | template<typename T> bool hasAttr() const { | 548 | 7.25k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.75k ; | 549 | 7.25k | } |
bool clang::Decl::hasAttr<clang::ObjCBoxableAttr>() const Line | Count | Source | 547 | 141 | template<typename T> bool hasAttr() const { | 548 | 141 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())135 ; | 549 | 141 | } |
bool clang::Decl::hasAttr<clang::MSInheritanceAttr>() const Line | Count | Source | 547 | 13.1k | template<typename T> bool hasAttr() const { | 548 | 13.1k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())10.9k ; | 549 | 13.1k | } |
bool clang::Decl::hasAttr<clang::ObjCNSObjectAttr>() const Line | Count | Source | 547 | 773k | template<typename T> bool hasAttr() const { | 548 | 773k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())49.8k ; | 549 | 773k | } |
bool clang::Decl::hasAttr<clang::ObjCIndependentClassAttr>() const Line | Count | Source | 547 | 2.84k | template<typename T> bool hasAttr() const { | 548 | 2.84k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1 ; | 549 | 2.84k | } |
bool clang::Decl::hasAttr<clang::CUDADeviceBuiltinSurfaceTypeAttr>() const Line | Count | Source | 547 | 1.75k | template<typename T> bool hasAttr() const { | 548 | 1.75k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())69 ; | 549 | 1.75k | } |
bool clang::Decl::hasAttr<clang::CUDADeviceBuiltinTextureTypeAttr>() const Line | Count | Source | 547 | 1.73k | template<typename T> bool hasAttr() const { | 548 | 1.73k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())42 ; | 549 | 1.73k | } |
bool clang::Decl::hasAttr<clang::ExcludeFromExplicitInstantiationAttr>() const Line | Count | Source | 547 | 76.1k | template<typename T> bool hasAttr() const { | 548 | 76.1k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())33.0k ; | 549 | 76.1k | } |
bool clang::Decl::hasAttr<clang::OwnerAttr>() const Line | Count | Source | 547 | 300k | template<typename T> bool hasAttr() const { | 548 | 300k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())149k ; | 549 | 300k | } |
bool clang::Decl::hasAttr<clang::PointerAttr>() const Line | Count | Source | 547 | 407k | template<typename T> bool hasAttr() const { | 548 | 407k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())177k ; | 549 | 407k | } |
bool clang::Decl::hasAttr<clang::CFAuditedTransferAttr>() const Line | Count | Source | 547 | 643k | template<typename T> bool hasAttr() const { | 548 | 643k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())439k ; | 549 | 643k | } |
bool clang::Decl::hasAttr<clang::CFUnknownTransferAttr>() const Line | Count | Source | 547 | 626k | template<typename T> bool hasAttr() const { | 548 | 626k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())425k ; | 549 | 626k | } |
bool clang::Decl::hasAttr<clang::MinSizeAttr>() const Line | Count | Source | 547 | 563k | template<typename T> bool hasAttr() const { | 548 | 563k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())213k ; | 549 | 563k | } |
bool clang::Decl::hasAttr<clang::AlwaysInlineAttr>() const Line | Count | Source | 547 | 8.89M | template<typename T> bool hasAttr() const { | 548 | 8.89M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())505k ; | 549 | 8.89M | } |
bool clang::Decl::hasAttr<clang::OptimizeNoneAttr>() const Line | Count | Source | 547 | 974k | template<typename T> bool hasAttr() const { | 548 | 974k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())439k ; | 549 | 974k | } |
bool clang::Decl::hasAttr<clang::NoInlineAttr>() const Line | Count | Source | 547 | 68.5k | template<typename T> bool hasAttr() const { | 548 | 68.5k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())31.1k ; | 549 | 68.5k | } |
bool clang::Decl::hasAttr<clang::EnforceTCBAttr>() const Line | Count | Source | 547 | 3.01M | template<typename T> bool hasAttr() const { | 548 | 3.01M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.52M ; | 549 | 3.01M | } |
bool clang::Decl::hasAttr<clang::CUDAInvalidTargetAttr>() const Line | Count | Source | 547 | 86.6k | template<typename T> bool hasAttr() const { | 548 | 86.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())73.7k ; | 549 | 86.6k | } |
bool clang::Decl::hasAttr<clang::ObjCPreciseLifetimeAttr>() const Line | Count | Source | 547 | 20.3M | template<typename T> bool hasAttr() const { | 548 | 20.3M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())714k ; | 549 | 20.3M | } |
bool clang::Decl::hasAttr<clang::UnusedAttr>() const Line | Count | Source | 547 | 35.5M | template<typename T> bool hasAttr() const { | 548 | 35.5M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())14.4M ; | 549 | 35.5M | } |
bool clang::Decl::hasAttr<clang::SectionAttr>() const Line | Count | Source | 547 | 14.7M | template<typename T> bool hasAttr() const { | 548 | 14.7M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())248k ; | 549 | 14.7M | } |
bool clang::Decl::hasAttr<clang::CodeSegAttr>() const Line | Count | Source | 547 | 14.0M | template<typename T> bool hasAttr() const { | 548 | 14.0M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())58.3k ; | 549 | 14.0M | } |
bool clang::Decl::hasAttr<clang::CarriesDependencyAttr>() const Line | Count | Source | 547 | 5 | template<typename T> bool hasAttr() const { | 548 | 5 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2 ; | 549 | 5 | } |
bool clang::Decl::hasAttr<clang::WeakImportAttr>() const Line | Count | Source | 547 | 59.5k | template<typename T> bool hasAttr() const { | 548 | 59.5k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.83k ; | 549 | 59.5k | } |
bool clang::Decl::hasAttr<clang::CleanupAttr>() const Line | Count | Source | 547 | 3.06M | template<typename T> bool hasAttr() const { | 548 | 3.06M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.06M ; | 549 | 3.06M | } |
bool clang::Decl::hasAttr<clang::SelectAnyAttr>() const Line | Count | Source | 547 | 366k | template<typename T> bool hasAttr() const { | 548 | 366k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())44.2k ; | 549 | 366k | } |
bool clang::Decl::hasAttr<clang::ConstInitAttr>() const Line | Count | Source | 547 | 26.5k | template<typename T> bool hasAttr() const { | 548 | 26.5k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.09k ; | 549 | 26.5k | } |
bool clang::Decl::hasAttr<clang::DLLExportStaticLocalAttr>() const Line | Count | Source | 547 | 10.0k | template<typename T> bool hasAttr() const { | 548 | 10.0k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.11k ; | 549 | 10.0k | } |
bool clang::Decl::hasAttr<clang::DLLImportStaticLocalAttr>() const Line | Count | Source | 547 | 10.0k | template<typename T> bool hasAttr() const { | 548 | 10.0k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.10k ; | 549 | 10.0k | } |
bool clang::Decl::hasAttr<clang::TypeTagForDatatypeAttr>() const Line | Count | Source | 547 | 2.69M | template<typename T> bool hasAttr() const { | 548 | 2.69M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.06M ; | 549 | 2.69M | } |
bool clang::Decl::hasAttr<clang::StrictFPAttr>() const Line | Count | Source | 547 | 1.44M | template<typename T> bool hasAttr() const { | 548 | 1.44M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())590k ; | 549 | 1.44M | } |
bool clang::Decl::hasAttr<clang::NakedAttr>() const Line | Count | Source | 547 | 7.80M | template<typename T> bool hasAttr() const { | 548 | 7.80M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.16M ; | 549 | 7.80M | } |
bool clang::Decl::hasAttr<clang::ReturnsNonNullAttr>() const Line | Count | Source | 547 | 629k | template<typename T> bool hasAttr() const { | 548 | 629k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())307k ; | 549 | 629k | } |
bool clang::Decl::hasAttr<clang::AllocSizeAttr>() const Line | Count | Source | 547 | 7.27k | template<typename T> bool hasAttr() const { | 548 | 7.27k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.95k ; | 549 | 7.27k | } |
bool clang::Decl::hasAttr<clang::AllocAlignAttr>() const Line | Count | Source | 547 | 3.33M | template<typename T> bool hasAttr() const { | 548 | 3.33M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.65M ; | 549 | 3.33M | } |
bool clang::Decl::hasAttr<clang::FormatAttr>() const Line | Count | Source | 547 | 5.43k | template<typename T> bool hasAttr() const { | 548 | 5.43k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())5.42k ; | 549 | 5.43k | } |
bool clang::Decl::hasAttr<clang::CallbackAttr>() const Line | Count | Source | 547 | 8.47M | template<typename T> bool hasAttr() const { | 548 | 8.47M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())8.47M ; | 549 | 8.47M | } |
bool clang::Decl::hasAttr<clang::ReturnsTwiceAttr>() const Line | Count | Source | 547 | 627k | template<typename T> bool hasAttr() const { | 548 | 627k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())303k ; | 549 | 627k | } |
bool clang::Decl::hasAttr<clang::NoThrowAttr>() const Line | Count | Source | 547 | 9.40M | template<typename T> bool hasAttr() const { | 548 | 9.40M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())8.83M ; | 549 | 9.40M | } |
bool clang::Decl::hasAttr<clang::FormatArgAttr>() const Line | Count | Source | 547 | 296 | template<typename T> bool hasAttr() const { | 548 | 296 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())295 ; | 549 | 296 | } |
bool clang::Decl::hasAttr<clang::SYCLKernelAttr>() const Line | Count | Source | 547 | 168 | template<typename T> bool hasAttr() const { | 548 | 168 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())26 ; | 549 | 168 | } |
bool clang::Decl::hasAttr<clang::NoBuiltinAttr>() const Line | Count | Source | 547 | 31 | template<typename T> bool hasAttr() const { | 548 | 31 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())8 ; | 549 | 31 | } |
bool clang::Decl::hasAttr<clang::HIPManagedAttr>() const Line | Count | Source | 547 | 23.5k | template<typename T> bool hasAttr() const { | 548 | 23.5k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.77k ; | 549 | 23.5k | } |
bool clang::Decl::hasAttr<clang::CapabilityAttr>() const Line | Count | Source | 547 | 3.18k | template<typename T> bool hasAttr() const { | 548 | 3.18k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3.00k ; | 549 | 3.18k | } |
bool clang::Decl::hasAttr<clang::ConsumableAttr>() const Line | Count | Source | 547 | 299 | template<typename T> bool hasAttr() const { | 548 | 299 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())291 ; | 549 | 299 | } |
bool clang::Decl::hasAttr<clang::SwiftBridgeAttr>() const Line | Count | Source | 547 | 5 | template<typename T> bool hasAttr() const { | 548 | 5 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())0 ; | 549 | 5 | } |
bool clang::Decl::hasAttr<clang::BPFPreserveAccessIndexAttr>() const Line | Count | Source | 547 | 2.06M | template<typename T> bool hasAttr() const { | 548 | 2.06M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())709k ; | 549 | 2.06M | } |
bool clang::Decl::hasAttr<clang::OverrideAttr>() const Line | Count | Source | 547 | 4.53M | template<typename T> bool hasAttr() const { | 548 | 4.53M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())1.81M ; | 549 | 4.53M | } |
bool clang::Decl::hasAttr<clang::TrivialABIAttr>() const Line | Count | Source | 547 | 3.05M | template<typename T> bool hasAttr() const { | 548 | 3.05M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())472k ; | 549 | 3.05M | } |
bool clang::Decl::hasAttr<clang::NoEscapeAttr>() const Line | Count | Source | 547 | 35.4M | template<typename T> bool hasAttr() const { | 548 | 35.4M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())71.8k ; | 549 | 35.4M | } |
bool clang::Decl::hasAttr<clang::ObjCExplicitProtocolImplAttr>() const Line | Count | Source | 547 | 1.41k | template<typename T> bool hasAttr() const { | 548 | 1.41k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())70 ; | 549 | 1.41k | } |
bool clang::Decl::hasAttr<clang::ObjCDirectMembersAttr>() const Line | Count | Source | 547 | 1.23M | template<typename T> bool hasAttr() const { | 548 | 1.23M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())442k ; | 549 | 1.23M | } |
bool clang::Decl::hasAttr<clang::NSReturnsRetainedAttr>() const Line | Count | Source | 547 | 390k | template<typename T> bool hasAttr() const { | 548 | 390k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())149k ; | 549 | 390k | } |
bool clang::Decl::hasAttr<clang::NSReturnsNotRetainedAttr>() const Line | Count | Source | 547 | 848k | template<typename T> bool hasAttr() const { | 548 | 848k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())259k ; | 549 | 848k | } |
bool clang::Decl::hasAttr<clang::NSReturnsAutoreleasedAttr>() const Line | Count | Source | 547 | 1.17k | template<typename T> bool hasAttr() const { | 548 | 1.17k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())79 ; | 549 | 1.17k | } |
bool clang::Decl::hasAttr<clang::ObjCRequiresSuperAttr>() const Line | Count | Source | 547 | 6.09k | template<typename T> bool hasAttr() const { | 548 | 6.09k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())839 ; | 549 | 6.09k | } |
bool clang::Decl::hasAttr<clang::ObjCRuntimeVisibleAttr>() const Line | Count | Source | 547 | 8.22k | template<typename T> bool hasAttr() const { | 548 | 8.22k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())800 ; | 549 | 8.22k | } |
bool clang::Decl::hasAttr<clang::ObjCRootClassAttr>() const Line | Count | Source | 547 | 4.80k | template<typename T> bool hasAttr() const { | 548 | 4.80k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())187 ; | 549 | 4.80k | } |
bool clang::Decl::hasAttr<clang::ObjCSubclassingRestrictedAttr>() const Line | Count | Source | 547 | 166k | template<typename T> bool hasAttr() const { | 548 | 166k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())98.9k ; | 549 | 166k | } |
bool clang::Decl::hasAttr<clang::ObjCClassStubAttr>() const Line | Count | Source | 547 | 105k | template<typename T> bool hasAttr() const { | 548 | 105k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())42.1k ; | 549 | 105k | } |
bool clang::Decl::hasAttr<clang::ObjCExternallyRetainedAttr>() const Line | Count | Source | 547 | 39 | template<typename T> bool hasAttr() const { | 548 | 39 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6 ; | 549 | 39 | } |
bool clang::Decl::hasAttr<clang::AnyX86InterruptAttr>() const Line | Count | Source | 547 | 3.55M | template<typename T> bool hasAttr() const { | 548 | 3.55M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.85M ; | 549 | 3.55M | } |
bool clang::Decl::hasAttr<clang::ARMInterruptAttr>() const Line | Count | Source | 547 | 3.02M | template<typename T> bool hasAttr() const { | 548 | 3.02M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.59M ; | 549 | 3.02M | } |
bool clang::Decl::hasAttr<clang::CFReturnsNotRetainedAttr>() const Line | Count | Source | 547 | 4.72k | template<typename T> bool hasAttr() const { | 548 | 4.72k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())191 ; | 549 | 4.72k | } |
bool clang::Decl::hasAttr<clang::CFReturnsRetainedAttr>() const Line | Count | Source | 547 | 4.74k | template<typename T> bool hasAttr() const { | 548 | 4.74k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())263 ; | 549 | 4.74k | } |
bool clang::Decl::hasAttr<clang::LifetimeBoundAttr>() const Line | Count | Source | 547 | 3.43M | template<typename T> bool hasAttr() const { | 548 | 3.43M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())187 ; | 549 | 3.43M | } |
bool clang::Decl::hasAttr<clang::IBOutletAttr>() const Line | Count | Source | 547 | 731 | template<typename T> bool hasAttr() const { | 548 | 731 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())32 ; | 549 | 731 | } |
bool clang::Decl::hasAttr<clang::ObjCReturnsInnerPointerAttr>() const Line | Count | Source | 547 | 461k | template<typename T> bool hasAttr() const { | 548 | 461k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())113k ; | 549 | 461k | } |
bool clang::Decl::hasAttr<clang::IBOutletCollectionAttr>() const Line | Count | Source | 547 | 7.75k | template<typename T> bool hasAttr() const { | 548 | 7.75k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())890 ; | 549 | 7.75k | } |
bool clang::Decl::hasAttr<clang::OMPAllocateDeclAttr>() const Line | Count | Source | 547 | 209k | template<typename T> bool hasAttr() const { | 548 | 209k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())32.2k ; | 549 | 209k | } |
bool clang::Decl::hasAttr<clang::OMPCaptureNoInitAttr>() const Line | Count | Source | 547 | 6.44k | template<typename T> bool hasAttr() const { | 548 | 6.44k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())284 ; | 549 | 6.44k | } |
bool clang::Decl::hasAttr<clang::OMPDeclareVariantAttr>() const Line | Count | Source | 547 | 136k | template<typename T> bool hasAttr() const { | 548 | 136k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())9.18k ; | 549 | 136k | } |
bool clang::Decl::hasAttr<clang::PassObjectSizeAttr>() const Line | Count | Source | 547 | 38.0M | template<typename T> bool hasAttr() const { | 548 | 38.0M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())61.4k ; | 549 | 38.0M | } |
bool clang::Decl::hasAttr<clang::CFConsumedAttr>() const Line | Count | Source | 547 | 2.07k | template<typename T> bool hasAttr() const { | 548 | 2.07k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())106 ; | 549 | 2.07k | } |
bool clang::Decl::hasAttr<clang::CmseNSEntryAttr>() const Line | Count | Source | 547 | 3.39M | template<typename T> bool hasAttr() const { | 548 | 3.39M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.75M ; | 549 | 3.39M | } |
bool clang::Decl::hasAttr<clang::OpenCLAccessAttr>() const Line | Count | Source | 547 | 8.46k | template<typename T> bool hasAttr() const { | 548 | 8.46k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())9 ; | 549 | 8.46k | } |
bool clang::Decl::hasAttr<clang::CalledOnceAttr>() const Line | Count | Source | 547 | 24.1k | template<typename T> bool hasAttr() const { | 548 | 24.1k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())231 ; | 549 | 24.1k | } |
bool clang::Decl::hasAttr<clang::ConsumableSetOnReadAttr>() const Line | Count | Source | 547 | 19 | template<typename T> bool hasAttr() const { | 548 | 19 | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 19 | } |
bool clang::Decl::hasAttr<clang::TestTypestateAttr>() const Line | Count | Source | 547 | 231 | template<typename T> bool hasAttr() const { | 548 | 231 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())218 ; | 549 | 231 | } |
bool clang::Decl::hasAttr<clang::ConsumableAutoCastAttr>() const Line | Count | Source | 547 | 4 | template<typename T> bool hasAttr() const { | 548 | 4 | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 4 | } |
bool clang::Decl::hasAttr<clang::NoThreadSafetyAnalysisAttr>() const Line | Count | Source | 547 | 8.04k | template<typename T> bool hasAttr() const { | 548 | 8.04k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())4.78k ; | 549 | 8.04k | } |
bool clang::Decl::hasAttr<clang::ScopedLockableAttr>() const Line | Count | Source | 547 | 445 | template<typename T> bool hasAttr() const { | 548 | 445 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())398 ; | 549 | 445 | } |
bool clang::Decl::hasAttr<clang::PtGuardedVarAttr>() const Line | Count | Source | 547 | 442 | template<typename T> bool hasAttr() const { | 548 | 442 | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 442 | } |
bool clang::Decl::hasAttr<clang::GuardedVarAttr>() const Line | Count | Source | 547 | 2.48k | template<typename T> bool hasAttr() const { | 548 | 2.48k | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 2.48k | } |
bool clang::Decl::hasAttr<clang::AnalyzerNoReturnAttr>() const Line | Count | Source | 547 | 104k | template<typename T> bool hasAttr() const { | 548 | 104k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.88k ; | 549 | 104k | } |
bool clang::Decl::hasAttr<clang::StdCallAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.06k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::FastCallAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::RegCallAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::ThisCallAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::VectorCallAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::PascalAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::AArch64VectorPcsAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::IntelOclBiccAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::MSABIAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::SysVABIAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::PreserveMostAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::PreserveAllAttr>() const Line | Count | Source | 547 | 28.6k | template<typename T> bool hasAttr() const { | 548 | 28.6k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())6.05k ; | 549 | 28.6k | } |
bool clang::Decl::hasAttr<clang::DisableTailCallsAttr>() const Line | Count | Source | 547 | 311k | template<typename T> bool hasAttr() const { | 548 | 311k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())118k ; | 549 | 311k | } |
bool clang::Decl::hasAttr<clang::ConvergentAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::NoMergeAttr>() const Line | Count | Source | 547 | 309k | template<typename T> bool hasAttr() const { | 548 | 309k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())182k ; | 549 | 309k | } |
bool clang::Decl::hasAttr<clang::NoAliasAttr>() const Line | Count | Source | 547 | 622k | template<typename T> bool hasAttr() const { | 548 | 622k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())299k ; | 549 | 622k | } |
bool clang::Decl::hasAttr<clang::RestrictAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::AnyX86NoCallerSavedRegistersAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::AnyX86NoCfCheckAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::LeafAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::NoSpeculativeLoadHardeningAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::SpeculativeLoadHardeningAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::NoSplitStackAttr>() const Line | Count | Source | 547 | 623k | template<typename T> bool hasAttr() const { | 548 | 623k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())301k ; | 549 | 623k | } |
bool clang::Decl::hasAttr<clang::FlattenAttr>() const Line | Count | Source | 547 | 327k | template<typename T> bool hasAttr() const { | 548 | 327k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())100k ; | 549 | 327k | } |
bool clang::Decl::hasAttr<clang::NotTailCalledAttr>() const Line | Count | Source | 547 | 284k | template<typename T> bool hasAttr() const { | 548 | 284k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())164k ; | 549 | 284k | } |
bool clang::Decl::hasAttr<clang::MSAllocatorAttr>() const Line | Count | Source | 547 | 191k | template<typename T> bool hasAttr() const { | 548 | 191k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())125k ; | 549 | 191k | } |
bool clang::Decl::hasAttr<clang::NoDebugAttr>() const Line | Count | Source | 547 | 1.13M | template<typename T> bool hasAttr() const { | 548 | 1.13M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())427k ; | 549 | 1.13M | } |
bool clang::Decl::hasAttr<clang::ArtificialAttr>() const Line | Count | Source | 547 | 88.2k | template<typename T> bool hasAttr() const { | 548 | 88.2k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())63.0k ; | 549 | 88.2k | } |
bool clang::Decl::hasAttr<clang::ObjCNonLazyClassAttr>() const Line | Count | Source | 547 | 2.25k | template<typename T> bool hasAttr() const { | 548 | 2.25k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())87 ; | 549 | 2.25k | } |
bool clang::Decl::hasAttr<clang::LTOVisibilityPublicAttr>() const Line | Count | Source | 547 | 363 | template<typename T> bool hasAttr() const { | 548 | 363 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())95 ; | 549 | 363 | } |
bool clang::Decl::hasAttr<clang::UuidAttr>() const Line | Count | Source | 547 | 342 | template<typename T> bool hasAttr() const { | 548 | 342 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())74 ; | 549 | 342 | } |
bool clang::Decl::hasAttr<clang::NoInstrumentFunctionAttr>() const Line | Count | Source | 547 | 147 | template<typename T> bool hasAttr() const { | 548 | 147 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())29 ; | 549 | 147 | } |
bool clang::Decl::hasAttr<clang::CFICanonicalJumpTableAttr>() const Line | Count | Source | 547 | 288k | template<typename T> bool hasAttr() const { | 548 | 288k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())108k ; | 549 | 288k | } |
bool clang::Decl::hasAttr<clang::NoCommonAttr>() const Line | Count | Source | 547 | 41 | template<typename T> bool hasAttr() const { | 548 | 41 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2 ; | 549 | 41 | } |
bool clang::Decl::hasAttr<clang::CommonAttr>() const Line | Count | Source | 547 | 6.97k | template<typename T> bool hasAttr() const { | 548 | 6.97k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())224 ; | 549 | 6.97k | } |
bool clang::Decl::hasAttr<clang::PragmaClangBSSSectionAttr>() const Line | Count | Source | 547 | 18 | template<typename T> bool hasAttr() const { | 548 | 18 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3 ; | 549 | 18 | } |
bool clang::Decl::hasAttr<clang::PragmaClangDataSectionAttr>() const Line | Count | Source | 547 | 18 | template<typename T> bool hasAttr() const { | 548 | 18 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3 ; | 549 | 18 | } |
bool clang::Decl::hasAttr<clang::PragmaClangRelroSectionAttr>() const Line | Count | Source | 547 | 18 | template<typename T> bool hasAttr() const { | 548 | 18 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3 ; | 549 | 18 | } |
bool clang::Decl::hasAttr<clang::PragmaClangRodataSectionAttr>() const Line | Count | Source | 547 | 18 | template<typename T> bool hasAttr() const { | 548 | 18 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())3 ; | 549 | 18 | } |
bool clang::Decl::hasAttr<clang::NoStackProtectorAttr>() const Line | Count | Source | 547 | 281k | template<typename T> bool hasAttr() const { | 548 | 281k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())107k ; | 549 | 281k | } |
bool clang::Decl::hasAttr<clang::NoDuplicateAttr>() const Line | Count | Source | 547 | 692k | template<typename T> bool hasAttr() const { | 548 | 692k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())332k ; | 549 | 692k | } |
bool clang::Decl::hasAttr<clang::ColdAttr>() const Line | Count | Source | 547 | 905k | template<typename T> bool hasAttr() const { | 548 | 905k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())408k ; | 549 | 905k | } |
bool clang::Decl::hasAttr<clang::HotAttr>() const Line | Count | Source | 547 | 905k | template<typename T> bool hasAttr() const { | 548 | 905k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())408k ; | 549 | 905k | } |
bool clang::Decl::hasAttr<clang::OMPDeclareSimdDeclAttr>() const Line | Count | Source | 547 | 35.4k | template<typename T> bool hasAttr() const { | 548 | 35.4k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())2.30k ; | 549 | 35.4k | } |
bool clang::Decl::hasAttr<clang::AnnotateAttr>() const Line | Count | Source | 547 | 1.10M | template<typename T> bool hasAttr() const { | 548 | 1.10M | return hasAttrs() && hasSpecificAttr<T>(getAttrs())113k ; | 549 | 1.10M | } |
bool clang::Decl::hasAttr<clang::MayAliasAttr>() const Line | Count | Source | 547 | 528k | template<typename T> bool hasAttr() const { | 548 | 528k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())50.3k ; | 549 | 528k | } |
bool clang::Decl::hasAttr<clang::MSNoVTableAttr>() const Line | Count | Source | 547 | 853 | template<typename T> bool hasAttr() const { | 548 | 853 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())178 ; | 549 | 853 | } |
bool clang::Decl::hasAttr<clang::MipsLongCallAttr>() const Line | Count | Source | 547 | 853 | template<typename T> bool hasAttr() const { | 548 | 853 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())145 ; | 549 | 853 | } |
bool clang::Decl::hasAttr<clang::MipsShortCallAttr>() const Line | Count | Source | 547 | 847 | template<typename T> bool hasAttr() const { | 548 | 847 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())139 ; | 549 | 847 | } |
bool clang::Decl::hasAttr<clang::Mips16Attr>() const Line | Count | Source | 547 | 401 | template<typename T> bool hasAttr() const { | 548 | 401 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())65 ; | 549 | 401 | } |
bool clang::Decl::hasAttr<clang::NoMips16Attr>() const Line | Count | Source | 547 | 400 | template<typename T> bool hasAttr() const { | 548 | 400 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())64 ; | 549 | 400 | } |
bool clang::Decl::hasAttr<clang::MicroMipsAttr>() const Line | Count | Source | 547 | 401 | template<typename T> bool hasAttr() const { | 548 | 401 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())65 ; | 549 | 401 | } |
bool clang::Decl::hasAttr<clang::NoMicroMipsAttr>() const Line | Count | Source | 547 | 400 | template<typename T> bool hasAttr() const { | 548 | 400 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())64 ; | 549 | 400 | } |
bool clang::Decl::hasAttr<clang::X86ForceAlignArgPointerAttr>() const Line | Count | Source | 547 | 175k | template<typename T> bool hasAttr() const { | 548 | 175k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())83.5k ; | 549 | 175k | } |
bool clang::Decl::hasAttr<clang::ObjCExceptionAttr>() const Line | Count | Source | 547 | 2.03k | template<typename T> bool hasAttr() const { | 548 | 2.03k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())646 ; | 549 | 2.03k | } |
bool clang::Decl::hasAttr<clang::AcquireHandleAttr>() const Line | Count | Source | 547 | 528 | template<typename T> bool hasAttr() const { | 548 | 528 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())198 ; | 549 | 528 | } |
bool clang::Decl::hasAttr<clang::ReleaseHandleAttr>() const Line | Count | Source | 547 | 450 | template<typename T> bool hasAttr() const { | 548 | 450 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())379 ; | 549 | 450 | } |
bool clang::Decl::hasAttr<clang::UseHandleAttr>() const Line | Count | Source | 547 | 169 | template<typename T> bool hasAttr() const { | 548 | 169 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())136 ; | 549 | 169 | } |
bool clang::Decl::hasAttr<clang::OwnershipAttr>() const Line | Count | Source | 547 | 8 | template<typename T> bool hasAttr() const { | 548 | 8 | return hasAttrs() && hasSpecificAttr<T>(getAttrs()); | 549 | 8 | } |
bool clang::Decl::hasAttr<clang::MIGServerRoutineAttr>() const Line | Count | Source | 547 | 135 | template<typename T> bool hasAttr() const { | 548 | 135 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())52 ; | 549 | 135 | } |
bool clang::Decl::hasAttr<clang::ReinitializesAttr>() const Line | Count | Source | 547 | 8.07k | template<typename T> bool hasAttr() const { | 548 | 8.07k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())8 ; | 549 | 8.07k | } |
bool clang::Decl::hasAttr<clang::OSReturnsRetainedAttr>() const Line | Count | Source | 547 | 436 | template<typename T> bool hasAttr() const { | 548 | 436 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())28 ; | 549 | 436 | } |
RetainSummaryManager.cpp:bool clang::Decl::hasAttr<(anonymous namespace)::GeneralizedReturnsRetainedAttr>() const Line | Count | Source | 547 | 4.34k | template<typename T> bool hasAttr() const { | 548 | 4.34k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())127 ; | 549 | 4.34k | } |
bool clang::Decl::hasAttr<clang::OSReturnsNotRetainedAttr>() const Line | Count | Source | 547 | 470 | template<typename T> bool hasAttr() const { | 548 | 470 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())14 ; | 549 | 470 | } |
RetainSummaryManager.cpp:bool clang::Decl::hasAttr<(anonymous namespace)::GeneralizedReturnsNotRetainedAttr>() const Line | Count | Source | 547 | 4.31k | template<typename T> bool hasAttr() const { | 548 | 4.31k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())99 ; | 549 | 4.31k | } |
bool clang::Decl::hasAttr<clang::OSConsumedAttr>() const Line | Count | Source | 547 | 216 | template<typename T> bool hasAttr() const { | 548 | 216 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())25 ; | 549 | 216 | } |
RetainSummaryManager.cpp:bool clang::Decl::hasAttr<(anonymous namespace)::GeneralizedConsumedAttr>() const Line | Count | Source | 547 | 1.99k | template<typename T> bool hasAttr() const { | 548 | 1.99k | return hasAttrs() && hasSpecificAttr<T>(getAttrs())50 ; | 549 | 1.99k | } |
bool clang::Decl::hasAttr<clang::OSReturnsRetainedOnZeroAttr>() const Line | Count | Source | 547 | 158 | template<typename T> bool hasAttr() const { | 548 | 158 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())17 ; | 549 | 158 | } |
bool clang::Decl::hasAttr<clang::OSReturnsRetainedOnNonZeroAttr>() const Line | Count | Source | 547 | 159 | template<typename T> bool hasAttr() const { | 548 | 159 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())18 ; | 549 | 159 | } |
bool clang::Decl::hasAttr<clang::OSConsumesThisAttr>() const Line | Count | Source | 547 | 250 | template<typename T> bool hasAttr() const { | 548 | 250 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())10 ; | 549 | 250 | } |
bool clang::Decl::hasAttr<clang::IBActionAttr>() const Line | Count | Source | 547 | 401 | template<typename T> bool hasAttr() const { | 548 | 401 | return hasAttrs() && hasSpecificAttr<T>(getAttrs())26 ; | 549 | 401 | } |
|
550 | | |
551 | | /// getMaxAlignment - return the maximum alignment specified by attributes |
552 | | /// on this decl, 0 if there are none. |
553 | | unsigned getMaxAlignment() const; |
554 | | |
555 | | /// setInvalidDecl - Indicates the Decl had a semantic error. This |
556 | | /// allows for graceful error recovery. |
557 | | void setInvalidDecl(bool Invalid = true); |
558 | 571M | bool isInvalidDecl() const { return (bool) InvalidDecl; } |
559 | | |
560 | | /// isImplicit - Indicates whether the declaration was implicitly |
561 | | /// generated by the implementation. If false, this declaration |
562 | | /// was written explicitly in the source code. |
563 | 46.3M | bool isImplicit() const { return Implicit; } |
564 | 23.0M | void setImplicit(bool I = true) { Implicit = I; } |
565 | | |
566 | | /// Whether *any* (re-)declaration of the entity was used, meaning that |
567 | | /// a definition is required. |
568 | | /// |
569 | | /// \param CheckUsedAttr When true, also consider the "used" attribute |
570 | | /// (in addition to the "used" bit set by \c setUsed()) when determining |
571 | | /// whether the function is used. |
572 | | bool isUsed(bool CheckUsedAttr = true) const; |
573 | | |
574 | | /// Set whether the declaration is used, in the sense of odr-use. |
575 | | /// |
576 | | /// This should only be used immediately after creating a declaration. |
577 | | /// It intentionally doesn't notify any listeners. |
578 | 7.97M | void setIsUsed() { getCanonicalDecl()->Used = true; } |
579 | | |
580 | | /// Mark the declaration used, in the sense of odr-use. |
581 | | /// |
582 | | /// This notifies any mutation listeners in addition to setting a bit |
583 | | /// indicating the declaration is used. |
584 | | void markUsed(ASTContext &C); |
585 | | |
586 | | /// Whether any declaration of this entity was referenced. |
587 | | bool isReferenced() const; |
588 | | |
589 | | /// Whether this declaration was referenced. This should not be relied |
590 | | /// upon for anything other than debugging. |
591 | 19.1k | bool isThisDeclarationReferenced() const { return Referenced; } |
592 | | |
593 | 85.6M | void setReferenced(bool R = true) { Referenced = R; } |
594 | | |
595 | | /// Whether this declaration is a top-level declaration (function, |
596 | | /// global variable, etc.) that is lexically inside an objc container |
597 | | /// definition. |
598 | 4.41M | bool isTopLevelDeclInObjCContainer() const { |
599 | 4.41M | return TopLevelDeclInObjCContainer; |
600 | 4.41M | } |
601 | | |
602 | 7.56M | void setTopLevelDeclInObjCContainer(bool V = true) { |
603 | 7.56M | TopLevelDeclInObjCContainer = V; |
604 | 7.56M | } |
605 | | |
606 | | /// Looks on this and related declarations for an applicable |
607 | | /// external source symbol attribute. |
608 | | ExternalSourceSymbolAttr *getExternalSourceSymbolAttr() const; |
609 | | |
610 | | /// Whether this declaration was marked as being private to the |
611 | | /// module in which it was defined. |
612 | 5.20M | bool isModulePrivate() const { |
613 | 5.20M | return getModuleOwnershipKind() == ModuleOwnershipKind::ModulePrivate; |
614 | 5.20M | } |
615 | | |
616 | | /// Return true if this declaration has an attribute which acts as |
617 | | /// definition of the entity, such as 'alias' or 'ifunc'. |
618 | | bool hasDefiningAttr() const; |
619 | | |
620 | | /// Return this declaration's defining attribute if it has one. |
621 | | const Attr *getDefiningAttr() const; |
622 | | |
623 | | protected: |
624 | | /// Specify that this declaration was marked as being private |
625 | | /// to the module in which it was defined. |
626 | 44 | void setModulePrivate() { |
627 | | // The module-private specifier has no effect on unowned declarations. |
628 | | // FIXME: We should track this in some way for source fidelity. |
629 | 44 | if (getModuleOwnershipKind() == ModuleOwnershipKind::Unowned) |
630 | 24 | return; |
631 | 20 | setModuleOwnershipKind(ModuleOwnershipKind::ModulePrivate); |
632 | 20 | } |
633 | | |
634 | | public: |
635 | | /// Set the FromASTFile flag. This indicates that this declaration |
636 | | /// was deserialized and not parsed from source code and enables |
637 | | /// features such as module ownership information. |
638 | 66.1k | void setFromASTFile() { |
639 | 66.1k | FromASTFile = true; |
640 | 66.1k | } |
641 | | |
642 | | /// Set the owning module ID. This may only be called for |
643 | | /// deserialized Decls. |
644 | 7.12M | void setOwningModuleID(unsigned ID) { |
645 | 7.12M | assert(isFromASTFile() && "Only works on a deserialized declaration"); |
646 | 7.12M | *((unsigned*)this - 2) = ID; |
647 | 7.12M | } |
648 | | |
649 | | public: |
650 | | /// Determine the availability of the given declaration. |
651 | | /// |
652 | | /// This routine will determine the most restrictive availability of |
653 | | /// the given declaration (e.g., preferring 'unavailable' to |
654 | | /// 'deprecated'). |
655 | | /// |
656 | | /// \param Message If non-NULL and the result is not \c |
657 | | /// AR_Available, will be set to a (possibly empty) message |
658 | | /// describing why the declaration has not been introduced, is |
659 | | /// deprecated, or is unavailable. |
660 | | /// |
661 | | /// \param EnclosingVersion The version to compare with. If empty, assume the |
662 | | /// deployment target version. |
663 | | /// |
664 | | /// \param RealizedPlatform If non-NULL and the availability result is found |
665 | | /// in an available attribute it will set to the platform which is written in |
666 | | /// the available attribute. |
667 | | AvailabilityResult |
668 | | getAvailability(std::string *Message = nullptr, |
669 | | VersionTuple EnclosingVersion = VersionTuple(), |
670 | | StringRef *RealizedPlatform = nullptr) const; |
671 | | |
672 | | /// Retrieve the version of the target platform in which this |
673 | | /// declaration was introduced. |
674 | | /// |
675 | | /// \returns An empty version tuple if this declaration has no 'introduced' |
676 | | /// availability attributes, or the version tuple that's specified in the |
677 | | /// attribute otherwise. |
678 | | VersionTuple getVersionIntroduced() const; |
679 | | |
680 | | /// Determine whether this declaration is marked 'deprecated'. |
681 | | /// |
682 | | /// \param Message If non-NULL and the declaration is deprecated, |
683 | | /// this will be set to the message describing why the declaration |
684 | | /// was deprecated (which may be empty). |
685 | 1.83M | bool isDeprecated(std::string *Message = nullptr) const { |
686 | 1.83M | return getAvailability(Message) == AR_Deprecated; |
687 | 1.83M | } |
688 | | |
689 | | /// Determine whether this declaration is marked 'unavailable'. |
690 | | /// |
691 | | /// \param Message If non-NULL and the declaration is unavailable, |
692 | | /// this will be set to the message describing why the declaration |
693 | | /// was made unavailable (which may be empty). |
694 | 1.49M | bool isUnavailable(std::string *Message = nullptr) const { |
695 | 1.49M | return getAvailability(Message) == AR_Unavailable; |
696 | 1.49M | } |
697 | | |
698 | | /// Determine whether this is a weak-imported symbol. |
699 | | /// |
700 | | /// Weak-imported symbols are typically marked with the |
701 | | /// 'weak_import' attribute, but may also be marked with an |
702 | | /// 'availability' attribute where we're targing a platform prior to |
703 | | /// the introduction of this feature. |
704 | | bool isWeakImported() const; |
705 | | |
706 | | /// Determines whether this symbol can be weak-imported, |
707 | | /// e.g., whether it would be well-formed to add the weak_import |
708 | | /// attribute. |
709 | | /// |
710 | | /// \param IsDefinition Set to \c true to indicate that this |
711 | | /// declaration cannot be weak-imported because it has a definition. |
712 | | bool canBeWeakImported(bool &IsDefinition) const; |
713 | | |
714 | | /// Determine whether this declaration came from an AST file (such as |
715 | | /// a precompiled header or module) rather than having been parsed. |
716 | 279M | bool isFromASTFile() const { return FromASTFile; } |
717 | | |
718 | | /// Retrieve the global declaration ID associated with this |
719 | | /// declaration, which specifies where this Decl was loaded from. |
720 | 1.29M | unsigned getGlobalID() const { |
721 | 1.29M | if (isFromASTFile()) |
722 | 1.29M | return *((const unsigned*)this - 1); |
723 | 0 | return 0; |
724 | 0 | } |
725 | | |
726 | | /// Retrieve the global ID of the module that owns this particular |
727 | | /// declaration. |
728 | 1.94M | unsigned getOwningModuleID() const { |
729 | 1.94M | if (isFromASTFile()) |
730 | 1.89M | return *((const unsigned*)this - 2); |
731 | 49.7k | return 0; |
732 | 49.7k | } |
733 | | |
734 | | private: |
735 | | Module *getOwningModuleSlow() const; |
736 | | |
737 | | protected: |
738 | | bool hasLocalOwningModuleStorage() const; |
739 | | |
740 | | public: |
741 | | /// Get the imported owning module, if this decl is from an imported |
742 | | /// (non-local) module. |
743 | 2.17M | Module *getImportedOwningModule() const { |
744 | 2.17M | if (!isFromASTFile() || !hasOwningModule()2.10M ) |
745 | 378k | return nullptr; |
746 | | |
747 | 1.79M | return getOwningModuleSlow(); |
748 | 1.79M | } |
749 | | |
750 | | /// Get the local owning module, if known. Returns nullptr if owner is |
751 | | /// not yet known or declaration is not from a module. |
752 | 53.4M | Module *getLocalOwningModule() const { |
753 | 53.4M | if (isFromASTFile()53.4M || !hasOwningModule()) |
754 | 46.0M | return nullptr; |
755 | | |
756 | 7.47M | assert(hasLocalOwningModuleStorage() && |
757 | 7.47M | "owned local decl but no local module storage"); |
758 | 7.47M | return reinterpret_cast<Module *const *>(this)[-1]; |
759 | 7.47M | } |
760 | 219k | void setLocalOwningModule(Module *M) { |
761 | 219k | assert(!isFromASTFile() && hasOwningModule() && |
762 | 219k | hasLocalOwningModuleStorage() && |
763 | 219k | "should not have a cached owning module"); |
764 | 219k | reinterpret_cast<Module **>(this)[-1] = M; |
765 | 219k | } |
766 | | |
767 | | /// Is this declaration owned by some module? |
768 | 56.3M | bool hasOwningModule() const { |
769 | 56.3M | return getModuleOwnershipKind() != ModuleOwnershipKind::Unowned; |
770 | 56.3M | } |
771 | | |
772 | | /// Get the module that owns this declaration (for visibility purposes). |
773 | 53.9M | Module *getOwningModule() const { |
774 | 53.4M | return isFromASTFile() ? getImportedOwningModule()423k : getLocalOwningModule(); |
775 | 53.9M | } |
776 | | |
777 | | /// Get the module that owns this declaration for linkage purposes. |
778 | | /// There only ever is such a module under the C++ Modules TS. |
779 | | /// |
780 | | /// \param IgnoreLinkage Ignore the linkage of the entity; assume that |
781 | | /// all declarations in a global module fragment are unowned. |
782 | | Module *getOwningModuleForLinkage(bool IgnoreLinkage = false) const; |
783 | | |
784 | | /// Determine whether this declaration is definitely visible to name lookup, |
785 | | /// independent of whether the owning module is visible. |
786 | | /// Note: The declaration may be visible even if this returns \c false if the |
787 | | /// owning module is visible within the query context. This is a low-level |
788 | | /// helper function; most code should be calling Sema::isVisible() instead. |
789 | 203M | bool isUnconditionallyVisible() const { |
790 | 203M | return (int)getModuleOwnershipKind() <= (int)ModuleOwnershipKind::Visible; |
791 | 203M | } |
792 | | |
793 | | /// Set that this declaration is globally visible, even if it came from a |
794 | | /// module that is not visible. |
795 | 7.64M | void setVisibleDespiteOwningModule() { |
796 | 7.64M | if (!isUnconditionallyVisible()) |
797 | 6.72M | setModuleOwnershipKind(ModuleOwnershipKind::Visible); |
798 | 7.64M | } |
799 | | |
800 | | /// Get the kind of module ownership for this declaration. |
801 | 374M | ModuleOwnershipKind getModuleOwnershipKind() const { |
802 | 374M | return NextInContextAndBits.getInt(); |
803 | 374M | } |
804 | | |
805 | | /// Set whether this declaration is hidden from name lookup. |
806 | 14.4M | void setModuleOwnershipKind(ModuleOwnershipKind MOK) { |
807 | 14.4M | assert(!(getModuleOwnershipKind() == ModuleOwnershipKind::Unowned && |
808 | 14.4M | MOK != ModuleOwnershipKind::Unowned && !isFromASTFile() && |
809 | 14.4M | !hasLocalOwningModuleStorage()) && |
810 | 14.4M | "no storage available for owning module for this declaration"); |
811 | 14.4M | NextInContextAndBits.setInt(MOK); |
812 | 14.4M | } |
813 | | |
814 | 225M | unsigned getIdentifierNamespace() const { |
815 | 225M | return IdentifierNamespace; |
816 | 225M | } |
817 | | |
818 | 164M | bool isInIdentifierNamespace(unsigned NS) const { |
819 | 164M | return getIdentifierNamespace() & NS; |
820 | 164M | } |
821 | | |
822 | | static unsigned getIdentifierNamespaceForKind(Kind DK); |
823 | | |
824 | 7.00M | bool hasTagIdentifierNamespace() const { |
825 | 7.00M | return isTagIdentifierNamespace(getIdentifierNamespace()); |
826 | 7.00M | } |
827 | | |
828 | 7.00M | static bool isTagIdentifierNamespace(unsigned NS) { |
829 | | // TagDecls have Tag and Type set and may also have TagFriend. |
830 | 7.00M | return (NS & ~IDNS_TagFriend) == (IDNS_Tag | IDNS_Type); |
831 | 7.00M | } |
832 | | |
833 | | /// getLexicalDeclContext - The declaration context where this Decl was |
834 | | /// lexically declared (LexicalDC). May be different from |
835 | | /// getDeclContext() (SemanticDC). |
836 | | /// e.g.: |
837 | | /// |
838 | | /// namespace A { |
839 | | /// void f(); // SemanticDC == LexicalDC == 'namespace A' |
840 | | /// } |
841 | | /// void A::f(); // SemanticDC == namespace 'A' |
842 | | /// // LexicalDC == global namespace |
843 | 349M | DeclContext *getLexicalDeclContext() { |
844 | 349M | if (isInSemaDC()) |
845 | 331M | return getSemanticDC(); |
846 | 17.6M | return getMultipleDC()->LexicalDC; |
847 | 17.6M | } |
848 | 170M | const DeclContext *getLexicalDeclContext() const { |
849 | 170M | return const_cast<Decl*>(this)->getLexicalDeclContext(); |
850 | 170M | } |
851 | | |
852 | | /// Determine whether this declaration is declared out of line (outside its |
853 | | /// semantic context). |
854 | | virtual bool isOutOfLine() const; |
855 | | |
856 | | /// setDeclContext - Set both the semantic and lexical DeclContext |
857 | | /// to DC. |
858 | | void setDeclContext(DeclContext *DC); |
859 | | |
860 | | void setLexicalDeclContext(DeclContext *DC); |
861 | | |
862 | | /// Determine whether this declaration is a templated entity (whether it is |
863 | | // within the scope of a template parameter). |
864 | | bool isTemplated() const; |
865 | | |
866 | | /// Determine the number of levels of template parameter surrounding this |
867 | | /// declaration. |
868 | | unsigned getTemplateDepth() const; |
869 | | |
870 | | /// isDefinedOutsideFunctionOrMethod - This predicate returns true if this |
871 | | /// scoped decl is defined outside the current function or method. This is |
872 | | /// roughly global variables and functions, but also handles enums (which |
873 | | /// could be defined inside or outside a function etc). |
874 | 1.65M | bool isDefinedOutsideFunctionOrMethod() const { |
875 | 1.65M | return getParentFunctionOrMethod() == nullptr; |
876 | 1.65M | } |
877 | | |
878 | | /// Determine whether a substitution into this declaration would occur as |
879 | | /// part of a substitution into a dependent local scope. Such a substitution |
880 | | /// transitively substitutes into all constructs nested within this |
881 | | /// declaration. |
882 | | /// |
883 | | /// This recognizes non-defining declarations as well as members of local |
884 | | /// classes and lambdas: |
885 | | /// \code |
886 | | /// template<typename T> void foo() { void bar(); } |
887 | | /// template<typename T> void foo2() { class ABC { void bar(); }; } |
888 | | /// template<typename T> inline int x = [](){ return 0; }(); |
889 | | /// \endcode |
890 | | bool isInLocalScopeForInstantiation() const; |
891 | | |
892 | | /// If this decl is defined inside a function/method/block it returns |
893 | | /// the corresponding DeclContext, otherwise it returns null. |
894 | | const DeclContext *getParentFunctionOrMethod() const; |
895 | 20.4k | DeclContext *getParentFunctionOrMethod() { |
896 | 20.4k | return const_cast<DeclContext*>( |
897 | 20.4k | const_cast<const Decl*>(this)->getParentFunctionOrMethod()); |
898 | 20.4k | } |
899 | | |
900 | | /// Retrieves the "canonical" declaration of the given declaration. |
901 | 14.6M | virtual Decl *getCanonicalDecl() { return this; } |
902 | 263M | const Decl *getCanonicalDecl() const { |
903 | 263M | return const_cast<Decl*>(this)->getCanonicalDecl(); |
904 | 263M | } |
905 | | |
906 | | /// Whether this particular Decl is a canonical one. |
907 | 4.36M | bool isCanonicalDecl() const { return getCanonicalDecl() == this; } |
908 | | |
909 | | protected: |
910 | | /// Returns the next redeclaration or itself if this is the only decl. |
911 | | /// |
912 | | /// Decl subclasses that can be redeclared should override this method so that |
913 | | /// Decl::redecl_iterator can iterate over them. |
914 | 4.75M | virtual Decl *getNextRedeclarationImpl() { return this; } |
915 | | |
916 | | /// Implementation of getPreviousDecl(), to be overridden by any |
917 | | /// subclass that has a redeclaration chain. |
918 | 1.64k | virtual Decl *getPreviousDeclImpl() { return nullptr; } |
919 | | |
920 | | /// Implementation of getMostRecentDecl(), to be overridden by any |
921 | | /// subclass that has a redeclaration chain. |
922 | 17.1M | virtual Decl *getMostRecentDeclImpl() { return this; } |
923 | | |
924 | | public: |
925 | | /// Iterates through all the redeclarations of the same decl. |
926 | | class redecl_iterator { |
927 | | /// Current - The current declaration. |
928 | | Decl *Current = nullptr; |
929 | | Decl *Starter; |
930 | | |
931 | | public: |
932 | | using value_type = Decl *; |
933 | | using reference = const value_type &; |
934 | | using pointer = const value_type *; |
935 | | using iterator_category = std::forward_iterator_tag; |
936 | | using difference_type = std::ptrdiff_t; |
937 | | |
938 | 30.2M | redecl_iterator() = default; |
939 | 30.2M | explicit redecl_iterator(Decl *C) : Current(C), Starter(C) {} |
940 | | |
941 | 32.8M | reference operator*() const { return Current; } |
942 | 0 | value_type operator->() const { return Current; } |
943 | | |
944 | 32.5M | redecl_iterator& operator++() { |
945 | 32.5M | assert(Current && "Advancing while iterator has reached end"); |
946 | | // Get either previous decl or latest decl. |
947 | 32.5M | Decl *Next = Current->getNextRedeclarationImpl(); |
948 | 32.5M | assert(Next && "Should return next redeclaration or itself, never null!"); |
949 | 29.9M | Current = (Next != Starter) ? Next2.66M : nullptr; |
950 | 32.5M | return *this; |
951 | 32.5M | } |
952 | | |
953 | 0 | redecl_iterator operator++(int) { |
954 | 0 | redecl_iterator tmp(*this); |
955 | 0 | ++(*this); |
956 | 0 | return tmp; |
957 | 0 | } |
958 | | |
959 | 0 | friend bool operator==(redecl_iterator x, redecl_iterator y) { |
960 | 0 | return x.Current == y.Current; |
961 | 0 | } |
962 | | |
963 | 62.8M | friend bool operator!=(redecl_iterator x, redecl_iterator y) { |
964 | 62.8M | return x.Current != y.Current; |
965 | 62.8M | } |
966 | | }; |
967 | | |
968 | | using redecl_range = llvm::iterator_range<redecl_iterator>; |
969 | | |
970 | | /// Returns an iterator range for all the redeclarations of the same |
971 | | /// decl. It will iterate at least once (when this decl is the only one). |
972 | 30.2M | redecl_range redecls() const { |
973 | 30.2M | return redecl_range(redecls_begin(), redecls_end()); |
974 | 30.2M | } |
975 | | |
976 | 30.2M | redecl_iterator redecls_begin() const { |
977 | 30.2M | return redecl_iterator(const_cast<Decl *>(this)); |
978 | 30.2M | } |
979 | | |
980 | 30.2M | redecl_iterator redecls_end() const { return redecl_iterator(); } |
981 | | |
982 | | /// Retrieve the previous declaration that declares the same entity |
983 | | /// as this declaration, or NULL if there is no previous declaration. |
984 | 5.21M | Decl *getPreviousDecl() { return getPreviousDeclImpl(); } |
985 | | |
986 | | /// Retrieve the previous declaration that declares the same entity |
987 | | /// as this declaration, or NULL if there is no previous declaration. |
988 | 364k | const Decl *getPreviousDecl() const { |
989 | 364k | return const_cast<Decl *>(this)->getPreviousDeclImpl(); |
990 | 364k | } |
991 | | |
992 | | /// True if this is the first declaration in its redeclaration chain. |
993 | 20 | bool isFirstDecl() const { |
994 | 20 | return getPreviousDecl() == nullptr; |
995 | 20 | } |
996 | | |
997 | | /// Retrieve the most recent declaration that declares the same entity |
998 | | /// as this declaration (which may be this declaration). |
999 | 42.3M | Decl *getMostRecentDecl() { return getMostRecentDeclImpl(); } |
1000 | | |
1001 | | /// Retrieve the most recent declaration that declares the same entity |
1002 | | /// as this declaration (which may be this declaration). |
1003 | 121M | const Decl *getMostRecentDecl() const { |
1004 | 121M | return const_cast<Decl *>(this)->getMostRecentDeclImpl(); |
1005 | 121M | } |
1006 | | |
1007 | | /// getBody - If this Decl represents a declaration for a body of code, |
1008 | | /// such as a function or method definition, this method returns the |
1009 | | /// top-level Stmt* of that body. Otherwise this method returns null. |
1010 | 180k | virtual Stmt* getBody() const { return nullptr; } |
1011 | | |
1012 | | /// Returns true if this \c Decl represents a declaration for a body of |
1013 | | /// code, such as a function or method definition. |
1014 | | /// Note that \c hasBody can also return true if any redeclaration of this |
1015 | | /// \c Decl represents a declaration for a body of code. |
1016 | 50.8k | virtual bool hasBody() const { return getBody() != nullptr; } |
1017 | | |
1018 | | /// getBodyRBrace - Gets the right brace of the body, if a body exists. |
1019 | | /// This works whether the body is a CompoundStmt or a CXXTryStmt. |
1020 | | SourceLocation getBodyRBrace() const; |
1021 | | |
1022 | | // global temp stats (until we have a per-module visitor) |
1023 | | static void add(Kind k); |
1024 | | static void EnableStatistics(); |
1025 | | static void PrintStats(); |
1026 | | |
1027 | | /// isTemplateParameter - Determines whether this declaration is a |
1028 | | /// template parameter. |
1029 | | bool isTemplateParameter() const; |
1030 | | |
1031 | | /// isTemplateParameter - Determines whether this declaration is a |
1032 | | /// template parameter pack. |
1033 | | bool isTemplateParameterPack() const; |
1034 | | |
1035 | | /// Whether this declaration is a parameter pack. |
1036 | | bool isParameterPack() const; |
1037 | | |
1038 | | /// returns true if this declaration is a template |
1039 | | bool isTemplateDecl() const; |
1040 | | |
1041 | | /// Whether this declaration is a function or function template. |
1042 | 549k | bool isFunctionOrFunctionTemplate() const { |
1043 | 549k | return (DeclKind >= Decl::firstFunction && |
1044 | 473k | DeclKind <= Decl::lastFunction) || |
1045 | 89.2k | DeclKind == FunctionTemplate; |
1046 | 549k | } |
1047 | | |
1048 | | /// If this is a declaration that describes some template, this |
1049 | | /// method returns that template declaration. |
1050 | | /// |
1051 | | /// Note that this returns nullptr for partial specializations, because they |
1052 | | /// are not modeled as TemplateDecls. Use getDescribedTemplateParams to handle |
1053 | | /// those cases. |
1054 | | TemplateDecl *getDescribedTemplate() const; |
1055 | | |
1056 | | /// If this is a declaration that describes some template or partial |
1057 | | /// specialization, this returns the corresponding template parameter list. |
1058 | | const TemplateParameterList *getDescribedTemplateParams() const; |
1059 | | |
1060 | | /// Returns the function itself, or the templated function if this is a |
1061 | | /// function template. |
1062 | | FunctionDecl *getAsFunction() LLVM_READONLY; |
1063 | | |
1064 | 4.51M | const FunctionDecl *getAsFunction() const { |
1065 | 4.51M | return const_cast<Decl *>(this)->getAsFunction(); |
1066 | 4.51M | } |
1067 | | |
1068 | | /// Changes the namespace of this declaration to reflect that it's |
1069 | | /// a function-local extern declaration. |
1070 | | /// |
1071 | | /// These declarations appear in the lexical context of the extern |
1072 | | /// declaration, but in the semantic context of the enclosing namespace |
1073 | | /// scope. |
1074 | 5.32k | void setLocalExternDecl() { |
1075 | 5.32k | Decl *Prev = getPreviousDecl(); |
1076 | 5.32k | IdentifierNamespace &= ~IDNS_Ordinary; |
1077 | | |
1078 | | // It's OK for the declaration to still have the "invisible friend" flag or |
1079 | | // the "conflicts with tag declarations in this scope" flag for the outer |
1080 | | // scope. |
1081 | 5.32k | assert((IdentifierNamespace & ~(IDNS_OrdinaryFriend | IDNS_Tag)) == 0 && |
1082 | 5.32k | "namespace is not ordinary"); |
1083 | | |
1084 | 5.32k | IdentifierNamespace |= IDNS_LocalExtern; |
1085 | 5.32k | if (Prev && Prev->getIdentifierNamespace() & IDNS_Ordinary9 ) |
1086 | 0 | IdentifierNamespace |= IDNS_Ordinary; |
1087 | 5.32k | } |
1088 | | |
1089 | | /// Determine whether this is a block-scope declaration with linkage. |
1090 | | /// This will either be a local variable declaration declared 'extern', or a |
1091 | | /// local function declaration. |
1092 | 49.6M | bool isLocalExternDecl() { |
1093 | 49.6M | return IdentifierNamespace & IDNS_LocalExtern; |
1094 | 49.6M | } |
1095 | | |
1096 | | /// Changes the namespace of this declaration to reflect that it's |
1097 | | /// the object of a friend declaration. |
1098 | | /// |
1099 | | /// These declarations appear in the lexical context of the friending |
1100 | | /// class, but in the semantic context of the actual entity. This property |
1101 | | /// applies only to a specific decl object; other redeclarations of the |
1102 | | /// same entity may not (and probably don't) share this property. |
1103 | 105k | void setObjectOfFriendDecl(bool PerformFriendInjection = false) { |
1104 | 105k | unsigned OldNS = IdentifierNamespace; |
1105 | 105k | assert((OldNS & (IDNS_Tag | IDNS_Ordinary | |
1106 | 105k | IDNS_TagFriend | IDNS_OrdinaryFriend | |
1107 | 105k | IDNS_LocalExtern | IDNS_NonMemberOperator)) && |
1108 | 105k | "namespace includes neither ordinary nor tag"); |
1109 | 105k | assert(!(OldNS & ~(IDNS_Tag | IDNS_Ordinary | IDNS_Type | |
1110 | 105k | IDNS_TagFriend | IDNS_OrdinaryFriend | |
1111 | 105k | IDNS_LocalExtern | IDNS_NonMemberOperator)) && |
1112 | 105k | "namespace includes other than ordinary or tag"); |
1113 | | |
1114 | 105k | Decl *Prev = getPreviousDecl(); |
1115 | 105k | IdentifierNamespace &= ~(IDNS_Ordinary | IDNS_Tag | IDNS_Type); |
1116 | | |
1117 | 105k | if (OldNS & (IDNS_Tag | IDNS_TagFriend)) { |
1118 | 15.9k | IdentifierNamespace |= IDNS_TagFriend; |
1119 | 15.9k | if (PerformFriendInjection || |
1120 | 15.9k | (Prev && Prev->getIdentifierNamespace() & IDNS_Tag7.68k )) |
1121 | 7.44k | IdentifierNamespace |= IDNS_Tag | IDNS_Type; |
1122 | 15.9k | } |
1123 | | |
1124 | 105k | if (OldNS & (IDNS_Ordinary | IDNS_OrdinaryFriend | |
1125 | 104k | IDNS_LocalExtern | IDNS_NonMemberOperator)) { |
1126 | 104k | IdentifierNamespace |= IDNS_OrdinaryFriend; |
1127 | 104k | if (PerformFriendInjection || |
1128 | 104k | (Prev && Prev->getIdentifierNamespace() & IDNS_Ordinary12.0k )) |
1129 | 11.5k | IdentifierNamespace |= IDNS_Ordinary; |
1130 | 104k | } |
1131 | 105k | } |
1132 | | |
1133 | | enum FriendObjectKind { |
1134 | | FOK_None, ///< Not a friend object. |
1135 | | FOK_Declared, ///< A friend of a previously-declared entity. |
1136 | | FOK_Undeclared ///< A friend of a previously-undeclared entity. |
1137 | | }; |
1138 | | |
1139 | | /// Determines whether this declaration is the object of a |
1140 | | /// friend declaration and, if so, what kind. |
1141 | | /// |
1142 | | /// There is currently no direct way to find the associated FriendDecl. |
1143 | 124M | FriendObjectKind getFriendObjectKind() const { |
1144 | 124M | unsigned mask = |
1145 | 124M | (IdentifierNamespace & (IDNS_TagFriend | IDNS_OrdinaryFriend)); |
1146 | 124M | if (!mask) return FOK_None123M ; |
1147 | 583k | return (IdentifierNamespace & (IDNS_Tag | IDNS_Ordinary) ? FOK_Declared114k |
1148 | 468k | : FOK_Undeclared); |
1149 | 583k | } |
1150 | | |
1151 | | /// Specifies that this declaration is a C++ overloaded non-member. |
1152 | 111k | void setNonMemberOperator() { |
1153 | 111k | assert(getKind() == Function || getKind() == FunctionTemplate); |
1154 | 111k | assert((IdentifierNamespace & IDNS_Ordinary) && |
1155 | 111k | "visible non-member operators should be in ordinary namespace"); |
1156 | 111k | IdentifierNamespace |= IDNS_NonMemberOperator; |
1157 | 111k | } |
1158 | | |
1159 | 2.28G | static bool classofKind(Kind K) { return true; } |
1160 | | static DeclContext *castToDeclContext(const Decl *); |
1161 | | static Decl *castFromDeclContext(const DeclContext *); |
1162 | | |
1163 | | void print(raw_ostream &Out, unsigned Indentation = 0, |
1164 | | bool PrintInstantiation = false) const; |
1165 | | void print(raw_ostream &Out, const PrintingPolicy &Policy, |
1166 | | unsigned Indentation = 0, bool PrintInstantiation = false) const; |
1167 | | static void printGroup(Decl** Begin, unsigned NumDecls, |
1168 | | raw_ostream &Out, const PrintingPolicy &Policy, |
1169 | | unsigned Indentation = 0); |
1170 | | |
1171 | | // Debuggers don't usually respect default arguments. |
1172 | | void dump() const; |
1173 | | |
1174 | | // Same as dump(), but forces color printing. |
1175 | | void dumpColor() const; |
1176 | | |
1177 | | void dump(raw_ostream &Out, bool Deserialize = false, |
1178 | | ASTDumpOutputFormat OutputFormat = ADOF_Default) const; |
1179 | | |
1180 | | /// \return Unique reproducible object identifier |
1181 | | int64_t getID() const; |
1182 | | |
1183 | | /// Looks through the Decl's underlying type to extract a FunctionType |
1184 | | /// when possible. Will return null if the type underlying the Decl does not |
1185 | | /// have a FunctionType. |
1186 | | const FunctionType *getFunctionType(bool BlocksToo = true) const; |
1187 | | |
1188 | | private: |
1189 | | void setAttrsImpl(const AttrVec& Attrs, ASTContext &Ctx); |
1190 | | void setDeclContextsImpl(DeclContext *SemaDC, DeclContext *LexicalDC, |
1191 | | ASTContext &Ctx); |
1192 | | |
1193 | | protected: |
1194 | | ASTMutationListener *getASTMutationListener() const; |
1195 | | }; |
1196 | | |
1197 | | /// Determine whether two declarations declare the same entity. |
1198 | 10.5M | inline bool declaresSameEntity(const Decl *D1, const Decl *D2) { |
1199 | 10.5M | if (!D1 || !D210.5M ) |
1200 | 2.37k | return false; |
1201 | | |
1202 | 10.5M | if (D1 == D2) |
1203 | 3.68M | return true; |
1204 | | |
1205 | 6.89M | return D1->getCanonicalDecl() == D2->getCanonicalDecl(); |
1206 | 6.89M | } |
1207 | | |
1208 | | /// PrettyStackTraceDecl - If a crash occurs, indicate that it happened when |
1209 | | /// doing something to a specific decl. |
1210 | | class PrettyStackTraceDecl : public llvm::PrettyStackTraceEntry { |
1211 | | const Decl *TheDecl; |
1212 | | SourceLocation Loc; |
1213 | | SourceManager &SM; |
1214 | | const char *Message; |
1215 | | |
1216 | | public: |
1217 | | PrettyStackTraceDecl(const Decl *theDecl, SourceLocation L, |
1218 | | SourceManager &sm, const char *Msg) |
1219 | 16.9M | : TheDecl(theDecl), Loc(L), SM(sm), Message(Msg) {} |
1220 | | |
1221 | | void print(raw_ostream &OS) const override; |
1222 | | }; |
1223 | | |
1224 | | /// The results of name lookup within a DeclContext. This is either a |
1225 | | /// single result (with no stable storage) or a collection of results (with |
1226 | | /// stable storage provided by the lookup table). |
1227 | | class DeclContextLookupResult { |
1228 | | using ResultTy = ArrayRef<NamedDecl *>; |
1229 | | |
1230 | | ResultTy Result; |
1231 | | |
1232 | | // If there is only one lookup result, it would be invalidated by |
1233 | | // reallocations of the name table, so store it separately. |
1234 | | NamedDecl *Single = nullptr; |
1235 | | |
1236 | | static NamedDecl *const SingleElementDummyList; |
1237 | | |
1238 | | public: |
1239 | 121M | DeclContextLookupResult() = default; |
1240 | | DeclContextLookupResult(ArrayRef<NamedDecl *> Result) |
1241 | 7.72M | : Result(Result) {} |
1242 | | DeclContextLookupResult(NamedDecl *Single) |
1243 | 38.9M | : Result(SingleElementDummyList), Single(Single) {} |
1244 | | |
1245 | | class iterator; |
1246 | | |
1247 | | using IteratorBase = |
1248 | | llvm::iterator_adaptor_base<iterator, ResultTy::iterator, |
1249 | | std::random_access_iterator_tag, NamedDecl *>; |
1250 | | |
1251 | | class iterator : public IteratorBase { |
1252 | | value_type SingleElement; |
1253 | | |
1254 | | public: |
1255 | | explicit iterator(pointer Pos, value_type Single = nullptr) |
1256 | 266M | : IteratorBase(Pos), SingleElement(Single) {} |
1257 | | |
1258 | 71.5M | reference operator*() const { |
1259 | 36.2M | return SingleElement ? SingleElement : IteratorBase::operator*()35.2M ; |
1260 | 71.5M | } |
1261 | | }; |
1262 | | |
1263 | | using const_iterator = iterator; |
1264 | | using pointer = iterator::pointer; |
1265 | | using reference = iterator::reference; |
1266 | | |
1267 | 133M | iterator begin() const { return iterator(Result.begin(), Single); } |
1268 | 133M | iterator end() const { return iterator(Result.end(), Single); } |
1269 | | |
1270 | 22.3M | bool empty() const { return Result.empty(); } |
1271 | 0 | pointer data() const { return Single ? &Single : Result.data(); } |
1272 | 1.55M | size_t size() const { return Single ? 1483k : Result.size()1.07M ; } |
1273 | 2.03M | reference front() const { return Single ? Single1.89M : Result.front()139k ; } |
1274 | 0 | reference back() const { return Single ? Single : Result.back(); } |
1275 | 8.15k | reference operator[](size_t N) const { return Single ? Single7.42k : Result[N]731 ; } |
1276 | | |
1277 | | // FIXME: Remove this from the interface |
1278 | 151 | DeclContextLookupResult slice(size_t N) const { |
1279 | 151 | DeclContextLookupResult Sliced = Result.slice(N); |
1280 | 151 | Sliced.Single = Single; |
1281 | 151 | return Sliced; |
1282 | 151 | } |
1283 | | }; |
1284 | | |
1285 | | /// DeclContext - This is used only as base class of specific decl types that |
1286 | | /// can act as declaration contexts. These decls are (only the top classes |
1287 | | /// that directly derive from DeclContext are mentioned, not their subclasses): |
1288 | | /// |
1289 | | /// TranslationUnitDecl |
1290 | | /// ExternCContext |
1291 | | /// NamespaceDecl |
1292 | | /// TagDecl |
1293 | | /// OMPDeclareReductionDecl |
1294 | | /// OMPDeclareMapperDecl |
1295 | | /// FunctionDecl |
1296 | | /// ObjCMethodDecl |
1297 | | /// ObjCContainerDecl |
1298 | | /// LinkageSpecDecl |
1299 | | /// ExportDecl |
1300 | | /// BlockDecl |
1301 | | /// CapturedDecl |
1302 | | class DeclContext { |
1303 | | /// For makeDeclVisibleInContextImpl |
1304 | | friend class ASTDeclReader; |
1305 | | /// For reconcileExternalVisibleStorage, CreateStoredDeclsMap, |
1306 | | /// hasNeedToReconcileExternalVisibleStorage |
1307 | | friend class ExternalASTSource; |
1308 | | /// For CreateStoredDeclsMap |
1309 | | friend class DependentDiagnostic; |
1310 | | /// For hasNeedToReconcileExternalVisibleStorage, |
1311 | | /// hasLazyLocalLexicalLookups, hasLazyExternalLexicalLookups |
1312 | | friend class ASTWriter; |
1313 | | |
1314 | | // We use uint64_t in the bit-fields below since some bit-fields |
1315 | | // cross the unsigned boundary and this breaks the packing. |
1316 | | |
1317 | | /// Stores the bits used by DeclContext. |
1318 | | /// If modified NumDeclContextBit, the ctor of DeclContext and the accessor |
1319 | | /// methods in DeclContext should be updated appropriately. |
1320 | | class DeclContextBitfields { |
1321 | | friend class DeclContext; |
1322 | | /// DeclKind - This indicates which class this is. |
1323 | | uint64_t DeclKind : 7; |
1324 | | |
1325 | | /// Whether this declaration context also has some external |
1326 | | /// storage that contains additional declarations that are lexically |
1327 | | /// part of this context. |
1328 | | mutable uint64_t ExternalLexicalStorage : 1; |
1329 | | |
1330 | | /// Whether this declaration context also has some external |
1331 | | /// storage that contains additional declarations that are visible |
1332 | | /// in this context. |
1333 | | mutable uint64_t ExternalVisibleStorage : 1; |
1334 | | |
1335 | | /// Whether this declaration context has had externally visible |
1336 | | /// storage added since the last lookup. In this case, \c LookupPtr's |
1337 | | /// invariant may not hold and needs to be fixed before we perform |
1338 | | /// another lookup. |
1339 | | mutable uint64_t NeedToReconcileExternalVisibleStorage : 1; |
1340 | | |
1341 | | /// If \c true, this context may have local lexical declarations |
1342 | | /// that are missing from the lookup table. |
1343 | | mutable uint64_t HasLazyLocalLexicalLookups : 1; |
1344 | | |
1345 | | /// If \c true, the external source may have lexical declarations |
1346 | | /// that are missing from the lookup table. |
1347 | | mutable uint64_t HasLazyExternalLexicalLookups : 1; |
1348 | | |
1349 | | /// If \c true, lookups should only return identifier from |
1350 | | /// DeclContext scope (for example TranslationUnit). Used in |
1351 | | /// LookupQualifiedName() |
1352 | | mutable uint64_t UseQualifiedLookup : 1; |
1353 | | }; |
1354 | | |
1355 | | /// Number of bits in DeclContextBitfields. |
1356 | | enum { NumDeclContextBits = 13 }; |
1357 | | |
1358 | | /// Stores the bits used by TagDecl. |
1359 | | /// If modified NumTagDeclBits and the accessor |
1360 | | /// methods in TagDecl should be updated appropriately. |
1361 | | class TagDeclBitfields { |
1362 | | friend class TagDecl; |
1363 | | /// For the bits in DeclContextBitfields |
1364 | | uint64_t : NumDeclContextBits; |
1365 | | |
1366 | | /// The TagKind enum. |
1367 | | uint64_t TagDeclKind : 3; |
1368 | | |
1369 | | /// True if this is a definition ("struct foo {};"), false if it is a |
1370 | | /// declaration ("struct foo;"). It is not considered a definition |
1371 | | /// until the definition has been fully processed. |
1372 | | uint64_t IsCompleteDefinition : 1; |
1373 | | |
1374 | | /// True if this is currently being defined. |
1375 | | uint64_t IsBeingDefined : 1; |
1376 | | |
1377 | | /// True if this tag declaration is "embedded" (i.e., defined or declared |
1378 | | /// for the very first time) in the syntax of a declarator. |
1379 | | uint64_t IsEmbeddedInDeclarator : 1; |
1380 | | |
1381 | | /// True if this tag is free standing, e.g. "struct foo;". |
1382 | | uint64_t IsFreeStanding : 1; |
1383 | | |
1384 | | /// Indicates whether it is possible for declarations of this kind |
1385 | | /// to have an out-of-date definition. |
1386 | | /// |
1387 | | /// This option is only enabled when modules are enabled. |
1388 | | uint64_t MayHaveOutOfDateDef : 1; |
1389 | | |
1390 | | /// Has the full definition of this type been required by a use somewhere in |
1391 | | /// the TU. |
1392 | | uint64_t IsCompleteDefinitionRequired : 1; |
1393 | | }; |
1394 | | |
1395 | | /// Number of non-inherited bits in TagDeclBitfields. |
1396 | | enum { NumTagDeclBits = 9 }; |
1397 | | |
1398 | | /// Stores the bits used by EnumDecl. |
1399 | | /// If modified NumEnumDeclBit and the accessor |
1400 | | /// methods in EnumDecl should be updated appropriately. |
1401 | | class EnumDeclBitfields { |
1402 | | friend class EnumDecl; |
1403 | | /// For the bits in DeclContextBitfields. |
1404 | | uint64_t : NumDeclContextBits; |
1405 | | /// For the bits in TagDeclBitfields. |
1406 | | uint64_t : NumTagDeclBits; |
1407 | | |
1408 | | /// Width in bits required to store all the non-negative |
1409 | | /// enumerators of this enum. |
1410 | | uint64_t NumPositiveBits : 8; |
1411 | | |
1412 | | /// Width in bits required to store all the negative |
1413 | | /// enumerators of this enum. |
1414 | | uint64_t NumNegativeBits : 8; |
1415 | | |
1416 | | /// True if this tag declaration is a scoped enumeration. Only |
1417 | | /// possible in C++11 mode. |
1418 | | uint64_t IsScoped : 1; |
1419 | | |
1420 | | /// If this tag declaration is a scoped enum, |
1421 | | /// then this is true if the scoped enum was declared using the class |
1422 | | /// tag, false if it was declared with the struct tag. No meaning is |
1423 | | /// associated if this tag declaration is not a scoped enum. |
1424 | | uint64_t IsScopedUsingClassTag : 1; |
1425 | | |
1426 | | /// True if this is an enumeration with fixed underlying type. Only |
1427 | | /// possible in C++11, Microsoft extensions, or Objective C mode. |
1428 | | uint64_t IsFixed : 1; |
1429 | | |
1430 | | /// True if a valid hash is stored in ODRHash. |
1431 | | uint64_t HasODRHash : 1; |
1432 | | }; |
1433 | | |
1434 | | /// Number of non-inherited bits in EnumDeclBitfields. |
1435 | | enum { NumEnumDeclBits = 20 }; |
1436 | | |
1437 | | /// Stores the bits used by RecordDecl. |
1438 | | /// If modified NumRecordDeclBits and the accessor |
1439 | | /// methods in RecordDecl should be updated appropriately. |
1440 | | class RecordDeclBitfields { |
1441 | | friend class RecordDecl; |
1442 | | /// For the bits in DeclContextBitfields. |
1443 | | uint64_t : NumDeclContextBits; |
1444 | | /// For the bits in TagDeclBitfields. |
1445 | | uint64_t : NumTagDeclBits; |
1446 | | |
1447 | | /// This is true if this struct ends with a flexible |
1448 | | /// array member (e.g. int X[]) or if this union contains a struct that does. |
1449 | | /// If so, this cannot be contained in arrays or other structs as a member. |
1450 | | uint64_t HasFlexibleArrayMember : 1; |
1451 | | |
1452 | | /// Whether this is the type of an anonymous struct or union. |
1453 | | uint64_t AnonymousStructOrUnion : 1; |
1454 | | |
1455 | | /// This is true if this struct has at least one member |
1456 | | /// containing an Objective-C object pointer type. |
1457 | | uint64_t HasObjectMember : 1; |
1458 | | |
1459 | | /// This is true if struct has at least one member of |
1460 | | /// 'volatile' type. |
1461 | | uint64_t HasVolatileMember : 1; |
1462 | | |
1463 | | /// Whether the field declarations of this record have been loaded |
1464 | | /// from external storage. To avoid unnecessary deserialization of |
1465 | | /// methods/nested types we allow deserialization of just the fields |
1466 | | /// when needed. |
1467 | | mutable uint64_t LoadedFieldsFromExternalStorage : 1; |
1468 | | |
1469 | | /// Basic properties of non-trivial C structs. |
1470 | | uint64_t NonTrivialToPrimitiveDefaultInitialize : 1; |
1471 | | uint64_t NonTrivialToPrimitiveCopy : 1; |
1472 | | uint64_t NonTrivialToPrimitiveDestroy : 1; |
1473 | | |
1474 | | /// The following bits indicate whether this is or contains a C union that |
1475 | | /// is non-trivial to default-initialize, destruct, or copy. These bits |
1476 | | /// imply the associated basic non-triviality predicates declared above. |
1477 | | uint64_t HasNonTrivialToPrimitiveDefaultInitializeCUnion : 1; |
1478 | | uint64_t HasNonTrivialToPrimitiveDestructCUnion : 1; |
1479 | | uint64_t HasNonTrivialToPrimitiveCopyCUnion : 1; |
1480 | | |
1481 | | /// Indicates whether this struct is destroyed in the callee. |
1482 | | uint64_t ParamDestroyedInCallee : 1; |
1483 | | |
1484 | | /// Represents the way this type is passed to a function. |
1485 | | uint64_t ArgPassingRestrictions : 2; |
1486 | | }; |
1487 | | |
1488 | | /// Number of non-inherited bits in RecordDeclBitfields. |
1489 | | enum { NumRecordDeclBits = 14 }; |
1490 | | |
1491 | | /// Stores the bits used by OMPDeclareReductionDecl. |
1492 | | /// If modified NumOMPDeclareReductionDeclBits and the accessor |
1493 | | /// methods in OMPDeclareReductionDecl should be updated appropriately. |
1494 | | class OMPDeclareReductionDeclBitfields { |
1495 | | friend class OMPDeclareReductionDecl; |
1496 | | /// For the bits in DeclContextBitfields |
1497 | | uint64_t : NumDeclContextBits; |
1498 | | |
1499 | | /// Kind of initializer, |
1500 | | /// function call or omp_priv<init_expr> initializtion. |
1501 | | uint64_t InitializerKind : 2; |
1502 | | }; |
1503 | | |
1504 | | /// Number of non-inherited bits in OMPDeclareReductionDeclBitfields. |
1505 | | enum { NumOMPDeclareReductionDeclBits = 2 }; |
1506 | | |
1507 | | /// Stores the bits used by FunctionDecl. |
1508 | | /// If modified NumFunctionDeclBits and the accessor |
1509 | | /// methods in FunctionDecl and CXXDeductionGuideDecl |
1510 | | /// (for IsCopyDeductionCandidate) should be updated appropriately. |
1511 | | class FunctionDeclBitfields { |
1512 | | friend class FunctionDecl; |
1513 | | /// For IsCopyDeductionCandidate |
1514 | | friend class CXXDeductionGuideDecl; |
1515 | | /// For the bits in DeclContextBitfields. |
1516 | | uint64_t : NumDeclContextBits; |
1517 | | |
1518 | | uint64_t SClass : 3; |
1519 | | uint64_t IsInline : 1; |
1520 | | uint64_t IsInlineSpecified : 1; |
1521 | | |
1522 | | uint64_t IsVirtualAsWritten : 1; |
1523 | | uint64_t IsPure : 1; |
1524 | | uint64_t HasInheritedPrototype : 1; |
1525 | | uint64_t HasWrittenPrototype : 1; |
1526 | | uint64_t IsDeleted : 1; |
1527 | | /// Used by CXXMethodDecl |
1528 | | uint64_t IsTrivial : 1; |
1529 | | |
1530 | | /// This flag indicates whether this function is trivial for the purpose of |
1531 | | /// calls. This is meaningful only when this function is a copy/move |
1532 | | /// constructor or a destructor. |
1533 | | uint64_t IsTrivialForCall : 1; |
1534 | | |
1535 | | uint64_t IsDefaulted : 1; |
1536 | | uint64_t IsExplicitlyDefaulted : 1; |
1537 | | uint64_t HasDefaultedFunctionInfo : 1; |
1538 | | uint64_t HasImplicitReturnZero : 1; |
1539 | | uint64_t IsLateTemplateParsed : 1; |
1540 | | |
1541 | | /// Kind of contexpr specifier as defined by ConstexprSpecKind. |
1542 | | uint64_t ConstexprKind : 2; |
1543 | | uint64_t InstantiationIsPending : 1; |
1544 | | |
1545 | | /// Indicates if the function uses __try. |
1546 | | uint64_t UsesSEHTry : 1; |
1547 | | |
1548 | | /// Indicates if the function was a definition |
1549 | | /// but its body was skipped. |
1550 | | uint64_t HasSkippedBody : 1; |
1551 | | |
1552 | | /// Indicates if the function declaration will |
1553 | | /// have a body, once we're done parsing it. |
1554 | | uint64_t WillHaveBody : 1; |
1555 | | |
1556 | | /// Indicates that this function is a multiversioned |
1557 | | /// function using attribute 'target'. |
1558 | | uint64_t IsMultiVersion : 1; |
1559 | | |
1560 | | /// [C++17] Only used by CXXDeductionGuideDecl. Indicates that |
1561 | | /// the Deduction Guide is the implicitly generated 'copy |
1562 | | /// deduction candidate' (is used during overload resolution). |
1563 | | uint64_t IsCopyDeductionCandidate : 1; |
1564 | | |
1565 | | /// Store the ODRHash after first calculation. |
1566 | | uint64_t HasODRHash : 1; |
1567 | | |
1568 | | /// Indicates if the function uses Floating Point Constrained Intrinsics |
1569 | | uint64_t UsesFPIntrin : 1; |
1570 | | }; |
1571 | | |
1572 | | /// Number of non-inherited bits in FunctionDeclBitfields. |
1573 | | enum { NumFunctionDeclBits = 27 }; |
1574 | | |
1575 | | /// Stores the bits used by CXXConstructorDecl. If modified |
1576 | | /// NumCXXConstructorDeclBits and the accessor |
1577 | | /// methods in CXXConstructorDecl should be updated appropriately. |
1578 | | class CXXConstructorDeclBitfields { |
1579 | | friend class CXXConstructorDecl; |
1580 | | /// For the bits in DeclContextBitfields. |
1581 | | uint64_t : NumDeclContextBits; |
1582 | | /// For the bits in FunctionDeclBitfields. |
1583 | | uint64_t : NumFunctionDeclBits; |
1584 | | |
1585 | | /// 24 bits to fit in the remaining available space. |
1586 | | /// Note that this makes CXXConstructorDeclBitfields take |
1587 | | /// exactly 64 bits and thus the width of NumCtorInitializers |
1588 | | /// will need to be shrunk if some bit is added to NumDeclContextBitfields, |
1589 | | /// NumFunctionDeclBitfields or CXXConstructorDeclBitfields. |
1590 | | uint64_t NumCtorInitializers : 21; |
1591 | | uint64_t IsInheritingConstructor : 1; |
1592 | | |
1593 | | /// Whether this constructor has a trail-allocated explicit specifier. |
1594 | | uint64_t HasTrailingExplicitSpecifier : 1; |
1595 | | /// If this constructor does't have a trail-allocated explicit specifier. |
1596 | | /// Whether this constructor is explicit specified. |
1597 | | uint64_t IsSimpleExplicit : 1; |
1598 | | }; |
1599 | | |
1600 | | /// Number of non-inherited bits in CXXConstructorDeclBitfields. |
1601 | | enum { |
1602 | | NumCXXConstructorDeclBits = 64 - NumDeclContextBits - NumFunctionDeclBits |
1603 | | }; |
1604 | | |
1605 | | /// Stores the bits used by ObjCMethodDecl. |
1606 | | /// If modified NumObjCMethodDeclBits and the accessor |
1607 | | /// methods in ObjCMethodDecl should be updated appropriately. |
1608 | | class ObjCMethodDeclBitfields { |
1609 | | friend class ObjCMethodDecl; |
1610 | | |
1611 | | /// For the bits in DeclContextBitfields. |
1612 | | uint64_t : NumDeclContextBits; |
1613 | | |
1614 | | /// The conventional meaning of this method; an ObjCMethodFamily. |
1615 | | /// This is not serialized; instead, it is computed on demand and |
1616 | | /// cached. |
1617 | | mutable uint64_t Family : ObjCMethodFamilyBitWidth; |
1618 | | |
1619 | | /// instance (true) or class (false) method. |
1620 | | uint64_t IsInstance : 1; |
1621 | | uint64_t IsVariadic : 1; |
1622 | | |
1623 | | /// True if this method is the getter or setter for an explicit property. |
1624 | | uint64_t IsPropertyAccessor : 1; |
1625 | | |
1626 | | /// True if this method is a synthesized property accessor stub. |
1627 | | uint64_t IsSynthesizedAccessorStub : 1; |
1628 | | |
1629 | | /// Method has a definition. |
1630 | | uint64_t IsDefined : 1; |
1631 | | |
1632 | | /// Method redeclaration in the same interface. |
1633 | | uint64_t IsRedeclaration : 1; |
1634 | | |
1635 | | /// Is redeclared in the same interface. |
1636 | | mutable uint64_t HasRedeclaration : 1; |
1637 | | |
1638 | | /// \@required/\@optional |
1639 | | uint64_t DeclImplementation : 2; |
1640 | | |
1641 | | /// in, inout, etc. |
1642 | | uint64_t objcDeclQualifier : 7; |
1643 | | |
1644 | | /// Indicates whether this method has a related result type. |
1645 | | uint64_t RelatedResultType : 1; |
1646 | | |
1647 | | /// Whether the locations of the selector identifiers are in a |
1648 | | /// "standard" position, a enum SelectorLocationsKind. |
1649 | | uint64_t SelLocsKind : 2; |
1650 | | |
1651 | | /// Whether this method overrides any other in the class hierarchy. |
1652 | | /// |
1653 | | /// A method is said to override any method in the class's |
1654 | | /// base classes, its protocols, or its categories' protocols, that has |
1655 | | /// the same selector and is of the same kind (class or instance). |
1656 | | /// A method in an implementation is not considered as overriding the same |
1657 | | /// method in the interface or its categories. |
1658 | | uint64_t IsOverriding : 1; |
1659 | | |
1660 | | /// Indicates if the method was a definition but its body was skipped. |
1661 | | uint64_t HasSkippedBody : 1; |
1662 | | }; |
1663 | | |
1664 | | /// Number of non-inherited bits in ObjCMethodDeclBitfields. |
1665 | | enum { NumObjCMethodDeclBits = 24 }; |
1666 | | |
1667 | | /// Stores the bits used by ObjCContainerDecl. |
1668 | | /// If modified NumObjCContainerDeclBits and the accessor |
1669 | | /// methods in ObjCContainerDecl should be updated appropriately. |
1670 | | class ObjCContainerDeclBitfields { |
1671 | | friend class ObjCContainerDecl; |
1672 | | /// For the bits in DeclContextBitfields |
1673 | | uint32_t : NumDeclContextBits; |
1674 | | |
1675 | | // Not a bitfield but this saves space. |
1676 | | // Note that ObjCContainerDeclBitfields is full. |
1677 | | SourceLocation AtStart; |
1678 | | }; |
1679 | | |
1680 | | /// Number of non-inherited bits in ObjCContainerDeclBitfields. |
1681 | | /// Note that here we rely on the fact that SourceLocation is 32 bits |
1682 | | /// wide. We check this with the static_assert in the ctor of DeclContext. |
1683 | | enum { NumObjCContainerDeclBits = 64 - NumDeclContextBits }; |
1684 | | |
1685 | | /// Stores the bits used by LinkageSpecDecl. |
1686 | | /// If modified NumLinkageSpecDeclBits and the accessor |
1687 | | /// methods in LinkageSpecDecl should be updated appropriately. |
1688 | | class LinkageSpecDeclBitfields { |
1689 | | friend class LinkageSpecDecl; |
1690 | | /// For the bits in DeclContextBitfields. |
1691 | | uint64_t : NumDeclContextBits; |
1692 | | |
1693 | | /// The language for this linkage specification with values |
1694 | | /// in the enum LinkageSpecDecl::LanguageIDs. |
1695 | | uint64_t Language : 3; |
1696 | | |
1697 | | /// True if this linkage spec has braces. |
1698 | | /// This is needed so that hasBraces() returns the correct result while the |
1699 | | /// linkage spec body is being parsed. Once RBraceLoc has been set this is |
1700 | | /// not used, so it doesn't need to be serialized. |
1701 | | uint64_t HasBraces : 1; |
1702 | | }; |
1703 | | |
1704 | | /// Number of non-inherited bits in LinkageSpecDeclBitfields. |
1705 | | enum { NumLinkageSpecDeclBits = 4 }; |
1706 | | |
1707 | | /// Stores the bits used by BlockDecl. |
1708 | | /// If modified NumBlockDeclBits and the accessor |
1709 | | /// methods in BlockDecl should be updated appropriately. |
1710 | | class BlockDeclBitfields { |
1711 | | friend class BlockDecl; |
1712 | | /// For the bits in DeclContextBitfields. |
1713 | | uint64_t : NumDeclContextBits; |
1714 | | |
1715 | | uint64_t IsVariadic : 1; |
1716 | | uint64_t CapturesCXXThis : 1; |
1717 | | uint64_t BlockMissingReturnType : 1; |
1718 | | uint64_t IsConversionFromLambda : 1; |
1719 | | |
1720 | | /// A bit that indicates this block is passed directly to a function as a |
1721 | | /// non-escaping parameter. |
1722 | | uint64_t DoesNotEscape : 1; |
1723 | | |
1724 | | /// A bit that indicates whether it's possible to avoid coying this block to |
1725 | | /// the heap when it initializes or is assigned to a local variable with |
1726 | | /// automatic storage. |
1727 | | uint64_t CanAvoidCopyToHeap : 1; |
1728 | | }; |
1729 | | |
1730 | | /// Number of non-inherited bits in BlockDeclBitfields. |
1731 | | enum { NumBlockDeclBits = 5 }; |
1732 | | |
1733 | | /// Pointer to the data structure used to lookup declarations |
1734 | | /// within this context (or a DependentStoredDeclsMap if this is a |
1735 | | /// dependent context). We maintain the invariant that, if the map |
1736 | | /// contains an entry for a DeclarationName (and we haven't lazily |
1737 | | /// omitted anything), then it contains all relevant entries for that |
1738 | | /// name (modulo the hasExternalDecls() flag). |
1739 | | mutable StoredDeclsMap *LookupPtr = nullptr; |
1740 | | |
1741 | | protected: |
1742 | | /// This anonymous union stores the bits belonging to DeclContext and classes |
1743 | | /// deriving from it. The goal is to use otherwise wasted |
1744 | | /// space in DeclContext to store data belonging to derived classes. |
1745 | | /// The space saved is especially significient when pointers are aligned |
1746 | | /// to 8 bytes. In this case due to alignment requirements we have a |
1747 | | /// little less than 8 bytes free in DeclContext which we can use. |
1748 | | /// We check that none of the classes in this union is larger than |
1749 | | /// 8 bytes with static_asserts in the ctor of DeclContext. |
1750 | | union { |
1751 | | DeclContextBitfields DeclContextBits; |
1752 | | TagDeclBitfields TagDeclBits; |
1753 | | EnumDeclBitfields EnumDeclBits; |
1754 | | RecordDeclBitfields RecordDeclBits; |
1755 | | OMPDeclareReductionDeclBitfields OMPDeclareReductionDeclBits; |
1756 | | FunctionDeclBitfields FunctionDeclBits; |
1757 | | CXXConstructorDeclBitfields CXXConstructorDeclBits; |
1758 | | ObjCMethodDeclBitfields ObjCMethodDeclBits; |
1759 | | ObjCContainerDeclBitfields ObjCContainerDeclBits; |
1760 | | LinkageSpecDeclBitfields LinkageSpecDeclBits; |
1761 | | BlockDeclBitfields BlockDeclBits; |
1762 | | |
1763 | | static_assert(sizeof(DeclContextBitfields) <= 8, |
1764 | | "DeclContextBitfields is larger than 8 bytes!"); |
1765 | | static_assert(sizeof(TagDeclBitfields) <= 8, |
1766 | | "TagDeclBitfields is larger than 8 bytes!"); |
1767 | | static_assert(sizeof(EnumDeclBitfields) <= 8, |
1768 | | "EnumDeclBitfields is larger than 8 bytes!"); |
1769 | | static_assert(sizeof(RecordDeclBitfields) <= 8, |
1770 | | "RecordDeclBitfields is larger than 8 bytes!"); |
1771 | | static_assert(sizeof(OMPDeclareReductionDeclBitfields) <= 8, |
1772 | | "OMPDeclareReductionDeclBitfields is larger than 8 bytes!"); |
1773 | | static_assert(sizeof(FunctionDeclBitfields) <= 8, |
1774 | | "FunctionDeclBitfields is larger than 8 bytes!"); |
1775 | | static_assert(sizeof(CXXConstructorDeclBitfields) <= 8, |
1776 | | "CXXConstructorDeclBitfields is larger than 8 bytes!"); |
1777 | | static_assert(sizeof(ObjCMethodDeclBitfields) <= 8, |
1778 | | "ObjCMethodDeclBitfields is larger than 8 bytes!"); |
1779 | | static_assert(sizeof(ObjCContainerDeclBitfields) <= 8, |
1780 | | "ObjCContainerDeclBitfields is larger than 8 bytes!"); |
1781 | | static_assert(sizeof(LinkageSpecDeclBitfields) <= 8, |
1782 | | "LinkageSpecDeclBitfields is larger than 8 bytes!"); |
1783 | | static_assert(sizeof(BlockDeclBitfields) <= 8, |
1784 | | "BlockDeclBitfields is larger than 8 bytes!"); |
1785 | | }; |
1786 | | |
1787 | | /// FirstDecl - The first declaration stored within this declaration |
1788 | | /// context. |
1789 | | mutable Decl *FirstDecl = nullptr; |
1790 | | |
1791 | | /// LastDecl - The last declaration stored within this declaration |
1792 | | /// context. FIXME: We could probably cache this value somewhere |
1793 | | /// outside of the DeclContext, to reduce the size of DeclContext by |
1794 | | /// another pointer. |
1795 | | mutable Decl *LastDecl = nullptr; |
1796 | | |
1797 | | /// Build up a chain of declarations. |
1798 | | /// |
1799 | | /// \returns the first/last pair of declarations. |
1800 | | static std::pair<Decl *, Decl *> |
1801 | | BuildDeclChain(ArrayRef<Decl*> Decls, bool FieldsAlreadyLoaded); |
1802 | | |
1803 | | DeclContext(Decl::Kind K); |
1804 | | |
1805 | | public: |
1806 | | ~DeclContext(); |
1807 | | |
1808 | 20.4G | Decl::Kind getDeclKind() const { |
1809 | 20.4G | return static_cast<Decl::Kind>(DeclContextBits.DeclKind); |
1810 | 20.4G | } |
1811 | | |
1812 | | const char *getDeclKindName() const; |
1813 | | |
1814 | | /// getParent - Returns the containing DeclContext. |
1815 | 1.70G | DeclContext *getParent() { |
1816 | 1.70G | return cast<Decl>(this)->getDeclContext(); |
1817 | 1.70G | } |
1818 | 277M | const DeclContext *getParent() const { |
1819 | 277M | return const_cast<DeclContext*>(this)->getParent(); |
1820 | 277M | } |
1821 | | |
1822 | | /// getLexicalParent - Returns the containing lexical DeclContext. May be |
1823 | | /// different from getParent, e.g.: |
1824 | | /// |
1825 | | /// namespace A { |
1826 | | /// struct S; |
1827 | | /// } |
1828 | | /// struct A::S {}; // getParent() == namespace 'A' |
1829 | | /// // getLexicalParent() == translation unit |
1830 | | /// |
1831 | 47.9M | DeclContext *getLexicalParent() { |
1832 | 47.9M | return cast<Decl>(this)->getLexicalDeclContext(); |
1833 | 47.9M | } |
1834 | 26.1M | const DeclContext *getLexicalParent() const { |
1835 | 26.1M | return const_cast<DeclContext*>(this)->getLexicalParent(); |
1836 | 26.1M | } |
1837 | | |
1838 | | DeclContext *getLookupParent(); |
1839 | | |
1840 | 121 | const DeclContext *getLookupParent() const { |
1841 | 121 | return const_cast<DeclContext*>(this)->getLookupParent(); |
1842 | 121 | } |
1843 | | |
1844 | 268M | ASTContext &getParentASTContext() const { |
1845 | 268M | return cast<Decl>(this)->getASTContext(); |
1846 | 268M | } |
1847 | | |
1848 | 2.21k | bool isClosure() const { return getDeclKind() == Decl::Block; } |
1849 | | |
1850 | | /// Return this DeclContext if it is a BlockDecl. Otherwise, return the |
1851 | | /// innermost enclosing BlockDecl or null if there are no enclosing blocks. |
1852 | | const BlockDecl *getInnermostBlockDecl() const; |
1853 | | |
1854 | 6.07M | bool isObjCContainer() const { |
1855 | 6.07M | switch (getDeclKind()) { |
1856 | 276k | case Decl::ObjCCategory: |
1857 | 276k | case Decl::ObjCCategoryImpl: |
1858 | 284k | case Decl::ObjCImplementation: |
1859 | 843k | case Decl::ObjCInterface: |
1860 | 916k | case Decl::ObjCProtocol: |
1861 | 916k | return true; |
1862 | 5.16M | default: |
1863 | 5.16M | return false; |
1864 | 6.07M | } |
1865 | 6.07M | } |
1866 | | |
1867 | 255M | bool isFunctionOrMethod() const { |
1868 | 255M | switch (getDeclKind()) { |
1869 | 85.0k | case Decl::Block: |
1870 | 6.42M | case Decl::Captured: |
1871 | 8.01M | case Decl::ObjCMethod: |
1872 | 8.01M | return true; |
1873 | 247M | default: |
1874 | 247M | return getDeclKind() >= Decl::firstFunction && |
1875 | 166M | getDeclKind() <= Decl::lastFunction; |
1876 | 255M | } |
1877 | 255M | } |
1878 | | |
1879 | | /// Test whether the context supports looking up names. |
1880 | 58.5M | bool isLookupContext() const { |
1881 | 58.5M | return !isFunctionOrMethod() && getDeclKind() != Decl::LinkageSpec47.4M && |
1882 | 45.5M | getDeclKind() != Decl::Export; |
1883 | 58.5M | } |
1884 | | |
1885 | 723M | bool isFileContext() const { |
1886 | 723M | return getDeclKind() == Decl::TranslationUnit || |
1887 | 427M | getDeclKind() == Decl::Namespace; |
1888 | 723M | } |
1889 | | |
1890 | 3.20G | bool isTranslationUnit() const { |
1891 | 3.20G | return getDeclKind() == Decl::TranslationUnit; |
1892 | 3.20G | } |
1893 | | |
1894 | 370M | bool isRecord() const { |
1895 | 370M | return getDeclKind() >= Decl::firstRecord && |
1896 | 328M | getDeclKind() <= Decl::lastRecord; |
1897 | 370M | } |
1898 | | |
1899 | 55.2M | bool isNamespace() const { return getDeclKind() == Decl::Namespace; } |
1900 | | |
1901 | | bool isStdNamespace() const; |
1902 | | |
1903 | | bool isInlineNamespace() const; |
1904 | | |
1905 | | /// Determines whether this context is dependent on a |
1906 | | /// template parameter. |
1907 | | bool isDependentContext() const; |
1908 | | |
1909 | | /// isTransparentContext - Determines whether this context is a |
1910 | | /// "transparent" context, meaning that the members declared in this |
1911 | | /// context are semantically declared in the nearest enclosing |
1912 | | /// non-transparent (opaque) context but are lexically declared in |
1913 | | /// this context. For example, consider the enumerators of an |
1914 | | /// enumeration type: |
1915 | | /// @code |
1916 | | /// enum E { |
1917 | | /// Val1 |
1918 | | /// }; |
1919 | | /// @endcode |
1920 | | /// Here, E is a transparent context, so its enumerator (Val1) will |
1921 | | /// appear (semantically) that it is in the same context of E. |
1922 | | /// Examples of transparent contexts include: enumerations (except for |
1923 | | /// C++0x scoped enums), and C++ linkage specifications. |
1924 | | bool isTransparentContext() const; |
1925 | | |
1926 | | /// Determines whether this context or some of its ancestors is a |
1927 | | /// linkage specification context that specifies C linkage. |
1928 | | bool isExternCContext() const; |
1929 | | |
1930 | | /// Retrieve the nearest enclosing C linkage specification context. |
1931 | | const LinkageSpecDecl *getExternCContext() const; |
1932 | | |
1933 | | /// Determines whether this context or some of its ancestors is a |
1934 | | /// linkage specification context that specifies C++ linkage. |
1935 | | bool isExternCXXContext() const; |
1936 | | |
1937 | | /// Determine whether this declaration context is equivalent |
1938 | | /// to the declaration context DC. |
1939 | 298M | bool Equals(const DeclContext *DC) const { |
1940 | 298M | return DC && this->getPrimaryContext() == DC->getPrimaryContext()286M ; |
1941 | 298M | } |
1942 | | |
1943 | | /// Determine whether this declaration context encloses the |
1944 | | /// declaration context DC. |
1945 | | bool Encloses(const DeclContext *DC) const; |
1946 | | |
1947 | | /// Find the nearest non-closure ancestor of this context, |
1948 | | /// i.e. the innermost semantic parent of this context which is not |
1949 | | /// a closure. A context may be its own non-closure ancestor. |
1950 | | Decl *getNonClosureAncestor(); |
1951 | 0 | const Decl *getNonClosureAncestor() const { |
1952 | 0 | return const_cast<DeclContext*>(this)->getNonClosureAncestor(); |
1953 | 0 | } |
1954 | | |
1955 | | /// getPrimaryContext - There may be many different |
1956 | | /// declarations of the same entity (including forward declarations |
1957 | | /// of classes, multiple definitions of namespaces, etc.), each with |
1958 | | /// a different set of declarations. This routine returns the |
1959 | | /// "primary" DeclContext structure, which will contain the |
1960 | | /// information needed to perform name lookup into this context. |
1961 | | DeclContext *getPrimaryContext(); |
1962 | 843M | const DeclContext *getPrimaryContext() const { |
1963 | 843M | return const_cast<DeclContext*>(this)->getPrimaryContext(); |
1964 | 843M | } |
1965 | | |
1966 | | /// getRedeclContext - Retrieve the context in which an entity conflicts with |
1967 | | /// other entities of the same name, or where it is a redeclaration if the |
1968 | | /// two entities are compatible. This skips through transparent contexts. |
1969 | | DeclContext *getRedeclContext(); |
1970 | 363M | const DeclContext *getRedeclContext() const { |
1971 | 363M | return const_cast<DeclContext *>(this)->getRedeclContext(); |
1972 | 363M | } |
1973 | | |
1974 | | /// Retrieve the nearest enclosing namespace context. |
1975 | | DeclContext *getEnclosingNamespaceContext(); |
1976 | 16.6k | const DeclContext *getEnclosingNamespaceContext() const { |
1977 | 16.6k | return const_cast<DeclContext *>(this)->getEnclosingNamespaceContext(); |
1978 | 16.6k | } |
1979 | | |
1980 | | /// Retrieve the outermost lexically enclosing record context. |
1981 | | RecordDecl *getOuterLexicalRecordContext(); |
1982 | 0 | const RecordDecl *getOuterLexicalRecordContext() const { |
1983 | 0 | return const_cast<DeclContext *>(this)->getOuterLexicalRecordContext(); |
1984 | 0 | } |
1985 | | |
1986 | | /// Test if this context is part of the enclosing namespace set of |
1987 | | /// the context NS, as defined in C++0x [namespace.def]p9. If either context |
1988 | | /// isn't a namespace, this is equivalent to Equals(). |
1989 | | /// |
1990 | | /// The enclosing namespace set of a namespace is the namespace and, if it is |
1991 | | /// inline, its enclosing namespace, recursively. |
1992 | | bool InEnclosingNamespaceSetOf(const DeclContext *NS) const; |
1993 | | |
1994 | | /// Collects all of the declaration contexts that are semantically |
1995 | | /// connected to this declaration context. |
1996 | | /// |
1997 | | /// For declaration contexts that have multiple semantically connected but |
1998 | | /// syntactically distinct contexts, such as C++ namespaces, this routine |
1999 | | /// retrieves the complete set of such declaration contexts in source order. |
2000 | | /// For example, given: |
2001 | | /// |
2002 | | /// \code |
2003 | | /// namespace N { |
2004 | | /// int x; |
2005 | | /// } |
2006 | | /// namespace N { |
2007 | | /// int y; |
2008 | | /// } |
2009 | | /// \endcode |
2010 | | /// |
2011 | | /// The \c Contexts parameter will contain both definitions of N. |
2012 | | /// |
2013 | | /// \param Contexts Will be cleared and set to the set of declaration |
2014 | | /// contexts that are semanticaly connected to this declaration context, |
2015 | | /// in source order, including this context (which may be the only result, |
2016 | | /// for non-namespace contexts). |
2017 | | void collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts); |
2018 | | |
2019 | | /// decl_iterator - Iterates through the declarations stored |
2020 | | /// within this context. |
2021 | | class decl_iterator { |
2022 | | /// Current - The current declaration. |
2023 | | Decl *Current = nullptr; |
2024 | | |
2025 | | public: |
2026 | | using value_type = Decl *; |
2027 | | using reference = const value_type &; |
2028 | | using pointer = const value_type *; |
2029 | | using iterator_category = std::forward_iterator_tag; |
2030 | | using difference_type = std::ptrdiff_t; |
2031 | | |
2032 | 23.9M | decl_iterator() = default; |
2033 | 23.4M | explicit decl_iterator(Decl *C) : Current(C) {} |
2034 | | |
2035 | 212M | reference operator*() const { return Current; } |
2036 | | |
2037 | | // This doesn't meet the iterator requirements, but it's convenient |
2038 | 33.4k | value_type operator->() const { return Current; } |
2039 | | |
2040 | 106M | decl_iterator& operator++() { |
2041 | 106M | Current = Current->getNextDeclInContext(); |
2042 | 106M | return *this; |
2043 | 106M | } |
2044 | | |
2045 | 41 | decl_iterator operator++(int) { |
2046 | 41 | decl_iterator tmp(*this); |
2047 | 41 | ++(*this); |
2048 | 41 | return tmp; |
2049 | 41 | } |
2050 | | |
2051 | 1.12M | friend bool operator==(decl_iterator x, decl_iterator y) { |
2052 | 1.12M | return x.Current == y.Current; |
2053 | 1.12M | } |
2054 | | |
2055 | 72.6M | friend bool operator!=(decl_iterator x, decl_iterator y) { |
2056 | 72.6M | return x.Current != y.Current; |
2057 | 72.6M | } |
2058 | | }; |
2059 | | |
2060 | | using decl_range = llvm::iterator_range<decl_iterator>; |
2061 | | |
2062 | | /// decls_begin/decls_end - Iterate over the declarations stored in |
2063 | | /// this context. |
2064 | 10.6M | decl_range decls() const { return decl_range(decls_begin(), decls_end()); } |
2065 | | decl_iterator decls_begin() const; |
2066 | 14.0M | decl_iterator decls_end() const { return decl_iterator(); } |
2067 | | bool decls_empty() const; |
2068 | | |
2069 | | /// noload_decls_begin/end - Iterate over the declarations stored in this |
2070 | | /// context that are currently loaded; don't attempt to retrieve anything |
2071 | | /// from an external source. |
2072 | 1.77M | decl_range noload_decls() const { |
2073 | 1.77M | return decl_range(noload_decls_begin(), noload_decls_end()); |
2074 | 1.77M | } |
2075 | 1.77M | decl_iterator noload_decls_begin() const { return decl_iterator(FirstDecl); } |
2076 | 1.77M | decl_iterator noload_decls_end() const { return decl_iterator(); } |
2077 | | |
2078 | | /// specific_decl_iterator - Iterates over a subrange of |
2079 | | /// declarations stored in a DeclContext, providing only those that |
2080 | | /// are of type SpecificDecl (or a class derived from it). This |
2081 | | /// iterator is used, for example, to provide iteration over just |
2082 | | /// the fields within a RecordDecl (with SpecificDecl = FieldDecl). |
2083 | | template<typename SpecificDecl> |
2084 | | class specific_decl_iterator { |
2085 | | /// Current - The current, underlying declaration iterator, which |
2086 | | /// will either be NULL or will point to a declaration of |
2087 | | /// type SpecificDecl. |
2088 | | DeclContext::decl_iterator Current; |
2089 | | |
2090 | | /// SkipToNextDecl - Advances the current position up to the next |
2091 | | /// declaration of type SpecificDecl that also meets the criteria |
2092 | | /// required by Acceptable. |
2093 | 36.1M | void SkipToNextDecl() { |
2094 | 91.0M | while (*Current && !isa<SpecificDecl>(*Current)69.6M ) |
2095 | 54.9M | ++Current; |
2096 | 36.1M | } clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 394k | void SkipToNextDecl() { | 2094 | 395k | while (*Current && !isa<SpecificDecl>(*Current)258k ) | 2095 | 13 | ++Current; | 2096 | 394k | } |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 25.1M | void SkipToNextDecl() { | 2094 | 65.6M | while (*Current && !isa<SpecificDecl>(*Current)50.6M ) | 2095 | 40.5M | ++Current; | 2096 | 25.1M | } |
clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 8.00M | void SkipToNextDecl() { | 2094 | 16.4M | while (*Current && !isa<SpecificDecl>(*Current)11.5M ) | 2095 | 8.46M | ++Current; | 2096 | 8.00M | } |
clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 21.9k | void SkipToNextDecl() { | 2094 | 91.1k | while (*Current && !isa<SpecificDecl>(*Current)81.6k ) | 2095 | 69.1k | ++Current; | 2096 | 21.9k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 1.32M | void SkipToNextDecl() { | 2094 | 5.14M | while (*Current && !isa<SpecificDecl>(*Current)4.46M ) | 2095 | 3.81M | ++Current; | 2096 | 1.32M | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 132k | void SkipToNextDecl() { | 2094 | 268k | while (*Current && !isa<SpecificDecl>(*Current)185k ) | 2095 | 135k | ++Current; | 2096 | 132k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 905k | void SkipToNextDecl() { | 2094 | 2.73M | while (*Current && !isa<SpecificDecl>(*Current)2.32M ) | 2095 | 1.82M | ++Current; | 2096 | 905k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 66.6k | void SkipToNextDecl() { | 2094 | 83.1k | while (*Current && !isa<SpecificDecl>(*Current)66.5k ) | 2095 | 16.4k | ++Current; | 2096 | 66.6k | } |
clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 5 | void SkipToNextDecl() { | 2094 | 6 | while (*Current && !isa<SpecificDecl>(*Current)4 ) | 2095 | 1 | ++Current; | 2096 | 5 | } |
clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 28 | void SkipToNextDecl() { | 2094 | 54 | while (*Current && !isa<SpecificDecl>(*Current)40 ) | 2095 | 26 | ++Current; | 2096 | 28 | } |
clang::DeclContext::specific_decl_iterator<clang::VarDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 161k | void SkipToNextDecl() { | 2094 | 164k | while (*Current && !isa<SpecificDecl>(*Current)82.1k ) | 2095 | 2.71k | ++Current; | 2096 | 161k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 282 | void SkipToNextDecl() { | 2094 | 2.82k | while (*Current && !isa<SpecificDecl>(*Current)2.64k ) | 2095 | 2.54k | ++Current; | 2096 | 282 | } |
clang::DeclContext::specific_decl_iterator<clang::TypeDecl>::SkipToNextDecl() Line | Count | Source | 2093 | 18.7k | void SkipToNextDecl() { | 2094 | 44.7k | while (*Current && !isa<SpecificDecl>(*Current)26.2k ) | 2095 | 26.0k | ++Current; | 2096 | 18.7k | } |
|
2097 | | |
2098 | | public: |
2099 | | using value_type = SpecificDecl *; |
2100 | | // TODO: Add reference and pointer types (with some appropriate proxy type) |
2101 | | // if we ever have a need for them. |
2102 | | using reference = void; |
2103 | | using pointer = void; |
2104 | | using difference_type = |
2105 | | std::iterator_traits<DeclContext::decl_iterator>::difference_type; |
2106 | | using iterator_category = std::forward_iterator_tag; |
2107 | | |
2108 | 614k | specific_decl_iterator() = default; clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::specific_decl_iterator() Line | Count | Source | 2108 | 343k | specific_decl_iterator() = default; |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::specific_decl_iterator() Line | Count | Source | 2108 | 270k | specific_decl_iterator() = default; |
clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::specific_decl_iterator() Line | Count | Source | 2108 | 18 | specific_decl_iterator() = default; |
|
2109 | | |
2110 | | /// specific_decl_iterator - Construct a new iterator over a |
2111 | | /// subset of the declarations the range [C, |
2112 | | /// end-of-declarations). If A is non-NULL, it is a pointer to a |
2113 | | /// member function of SpecificDecl that should return true for |
2114 | | /// all of the SpecificDecl instances that will be in the subset |
2115 | | /// of iterators. For example, if you want Objective-C instance |
2116 | | /// methods, SpecificDecl will be ObjCMethodDecl and A will be |
2117 | | /// &ObjCMethodDecl::isInstanceMethod. |
2118 | 21.6M | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { |
2119 | 21.6M | SkipToNextDecl(); |
2120 | 21.6M | } clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 845k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 845k | SkipToNextDecl(); | 2120 | 845k | } |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 14.9M | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 14.9M | SkipToNextDecl(); | 2120 | 14.9M | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 87.5k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 87.5k | SkipToNextDecl(); | 2120 | 87.5k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 407k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 407k | SkipToNextDecl(); | 2120 | 407k | } |
clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 5.01M | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 5.01M | SkipToNextDecl(); | 2120 | 5.01M | } |
clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 218k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 218k | SkipToNextDecl(); | 2120 | 218k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 16.6k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 16.6k | SkipToNextDecl(); | 2120 | 16.6k | } |
clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 11.5k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 11.5k | SkipToNextDecl(); | 2120 | 11.5k | } |
clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 2 | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 2 | SkipToNextDecl(); | 2120 | 2 | } |
clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 28 | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 28 | SkipToNextDecl(); | 2120 | 28 | } |
clang::DeclContext::specific_decl_iterator<clang::VarDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 82.0k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 82.0k | SkipToNextDecl(); | 2120 | 82.0k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 178 | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 178 | SkipToNextDecl(); | 2120 | 178 | } |
clang::DeclContext::specific_decl_iterator<clang::TypeDecl>::specific_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2118 | 18.5k | explicit specific_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2119 | 18.5k | SkipToNextDecl(); | 2120 | 18.5k | } |
|
2121 | | |
2122 | 13.2M | value_type operator*() const { return cast<SpecificDecl>(*Current); } clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::operator*() const Line | Count | Source | 2122 | 581k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::operator*() const Line | Count | Source | 2122 | 8.72M | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl>::operator*() const Line | Count | Source | 2122 | 49.5k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl>::operator*() const Line | Count | Source | 2122 | 497k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::operator*() const Line | Count | Source | 2122 | 3.04M | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::operator*() const Line | Count | Source | 2122 | 187k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl>::operator*() const Line | Count | Source | 2122 | 50.0k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl>::operator*() const Line | Count | Source | 2122 | 12.4k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl>::operator*() const Line | Count | Source | 2122 | 6 | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl>::operator*() const Line | Count | Source | 2122 | 14 | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::VarDecl>::operator*() const Line | Count | Source | 2122 | 79.3k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl>::operator*() const Line | Count | Source | 2122 | 104 | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::specific_decl_iterator<clang::TypeDecl>::operator*() const Line | Count | Source | 2122 | 205 | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
|
2123 | | |
2124 | | // This doesn't meet the iterator requirements, but it's convenient |
2125 | 2.22M | value_type operator->() const { return **this; } clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::operator->() const Line | Count | Source | 2125 | 20.7k | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::operator->() const Line | Count | Source | 2125 | 2.19M | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl>::operator->() const Line | Count | Source | 2125 | 3 | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl>::operator->() const Line | Count | Source | 2125 | 14 | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::operator->() const Line | Count | Source | 2125 | 98 | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl>::operator->() const Line | Count | Source | 2125 | 104 | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::operator->() const Line | Count | Source | 2125 | 57 | value_type operator->() const { return **this; } |
clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl>::operator->() const Line | Count | Source | 2125 | 9 | value_type operator->() const { return **this; } |
|
2126 | | |
2127 | 14.4M | specific_decl_iterator& operator++() { |
2128 | 14.4M | ++Current; |
2129 | 14.4M | SkipToNextDecl(); |
2130 | 14.4M | return *this; |
2131 | 14.4M | } clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl>::operator++() Line | Count | Source | 2127 | 482k | specific_decl_iterator& operator++() { | 2128 | 482k | ++Current; | 2129 | 482k | SkipToNextDecl(); | 2130 | 482k | return *this; | 2131 | 482k | } |
clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::operator++() Line | Count | Source | 2127 | 10.1M | specific_decl_iterator& operator++() { | 2128 | 10.1M | ++Current; | 2129 | 10.1M | SkipToNextDecl(); | 2130 | 10.1M | return *this; | 2131 | 10.1M | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl>::operator++() Line | Count | Source | 2127 | 44.8k | specific_decl_iterator& operator++() { | 2128 | 44.8k | ++Current; | 2129 | 44.8k | SkipToNextDecl(); | 2130 | 44.8k | return *this; | 2131 | 44.8k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl>::operator++() Line | Count | Source | 2127 | 497k | specific_decl_iterator& operator++() { | 2128 | 497k | ++Current; | 2129 | 497k | SkipToNextDecl(); | 2130 | 497k | return *this; | 2131 | 497k | } |
clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::operator++() Line | Count | Source | 2127 | 2.99M | specific_decl_iterator& operator++() { | 2128 | 2.99M | ++Current; | 2129 | 2.99M | SkipToNextDecl(); | 2130 | 2.99M | return *this; | 2131 | 2.99M | } |
clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl>::operator++() Line | Count | Source | 2127 | 176k | specific_decl_iterator& operator++() { | 2128 | 176k | ++Current; | 2129 | 176k | SkipToNextDecl(); | 2130 | 176k | return *this; | 2131 | 176k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl>::operator++() Line | Count | Source | 2127 | 50.0k | specific_decl_iterator& operator++() { | 2128 | 50.0k | ++Current; | 2129 | 50.0k | SkipToNextDecl(); | 2130 | 50.0k | return *this; | 2131 | 50.0k | } |
clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl>::operator++() Line | Count | Source | 2127 | 10.3k | specific_decl_iterator& operator++() { | 2128 | 10.3k | ++Current; | 2129 | 10.3k | SkipToNextDecl(); | 2130 | 10.3k | return *this; | 2131 | 10.3k | } |
clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl>::operator++() Line | Count | Source | 2127 | 3 | specific_decl_iterator& operator++() { | 2128 | 3 | ++Current; | 2129 | 3 | SkipToNextDecl(); | 2130 | 3 | return *this; | 2131 | 3 | } |
Unexecuted instantiation: clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl>::operator++() clang::DeclContext::specific_decl_iterator<clang::VarDecl>::operator++() Line | Count | Source | 2127 | 79.3k | specific_decl_iterator& operator++() { | 2128 | 79.3k | ++Current; | 2129 | 79.3k | SkipToNextDecl(); | 2130 | 79.3k | return *this; | 2131 | 79.3k | } |
clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl>::operator++() Line | Count | Source | 2127 | 104 | specific_decl_iterator& operator++() { | 2128 | 104 | ++Current; | 2129 | 104 | SkipToNextDecl(); | 2130 | 104 | return *this; | 2131 | 104 | } |
clang::DeclContext::specific_decl_iterator<clang::TypeDecl>::operator++() Line | Count | Source | 2127 | 205 | specific_decl_iterator& operator++() { | 2128 | 205 | ++Current; | 2129 | 205 | SkipToNextDecl(); | 2130 | 205 | return *this; | 2131 | 205 | } |
|
2132 | | |
2133 | 7.20k | specific_decl_iterator operator++(int) { |
2134 | 7.20k | specific_decl_iterator tmp(*this); |
2135 | 7.20k | ++(*this); |
2136 | 7.20k | return tmp; |
2137 | 7.20k | } clang::DeclContext::specific_decl_iterator<clang::FieldDecl>::operator++(int) Line | Count | Source | 2133 | 7.20k | specific_decl_iterator operator++(int) { | 2134 | 7.20k | specific_decl_iterator tmp(*this); | 2135 | 7.20k | ++(*this); | 2136 | 7.20k | return tmp; | 2137 | 7.20k | } |
Unexecuted instantiation: clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl>::operator++(int) |
2138 | | |
2139 | | friend bool operator==(const specific_decl_iterator& x, |
2140 | 1.12M | const specific_decl_iterator& y) { |
2141 | 1.12M | return x.Current == y.Current; |
2142 | 1.12M | } clang::operator==(clang::DeclContext::specific_decl_iterator<clang::FieldDecl> const&, clang::DeclContext::specific_decl_iterator<clang::FieldDecl> const&) Line | Count | Source | 2140 | 780k | const specific_decl_iterator& y) { | 2141 | 780k | return x.Current == y.Current; | 2142 | 780k | } |
clang::operator==(clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl> const&) Line | Count | Source | 2140 | 261k | const specific_decl_iterator& y) { | 2141 | 261k | return x.Current == y.Current; | 2142 | 261k | } |
clang::operator==(clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl> const&, clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl> const&) Line | Count | Source | 2140 | 86.6k | const specific_decl_iterator& y) { | 2141 | 86.6k | return x.Current == y.Current; | 2142 | 86.6k | } |
clang::operator==(clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl> const&) Line | Count | Source | 2140 | 32 | const specific_decl_iterator& y) { | 2141 | 32 | return x.Current == y.Current; | 2142 | 32 | } |
clang::operator==(clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl> const&, clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl> const&) Line | Count | Source | 2140 | 217 | const specific_decl_iterator& y) { | 2141 | 217 | return x.Current == y.Current; | 2142 | 217 | } |
|
2143 | | |
2144 | | friend bool operator!=(const specific_decl_iterator& x, |
2145 | 22.9M | const specific_decl_iterator& y) { |
2146 | 22.9M | return x.Current != y.Current; |
2147 | 22.9M | } clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCIvarDecl> const&) Line | Count | Source | 2145 | 625k | const specific_decl_iterator& y) { | 2146 | 625k | return x.Current != y.Current; | 2147 | 625k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::FieldDecl> const&, clang::DeclContext::specific_decl_iterator<clang::FieldDecl> const&) Line | Count | Source | 2145 | 15.6M | const specific_decl_iterator& y) { | 2146 | 15.6M | return x.Current != y.Current; | 2147 | 15.6M | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyImplDecl> const&) Line | Count | Source | 2145 | 88.6k | const specific_decl_iterator& y) { | 2146 | 88.6k | return x.Current != y.Current; | 2147 | 88.6k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCPropertyDecl> const&) Line | Count | Source | 2145 | 701k | const specific_decl_iterator& y) { | 2146 | 701k | return x.Current != y.Current; | 2147 | 701k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl> const&, clang::DeclContext::specific_decl_iterator<clang::CXXMethodDecl> const&) Line | Count | Source | 2145 | 5.49M | const specific_decl_iterator& y) { | 2146 | 5.49M | return x.Current != y.Current; | 2147 | 5.49M | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl> const&, clang::DeclContext::specific_decl_iterator<clang::EnumConstantDecl> const&) Line | Count | Source | 2145 | 199k | const specific_decl_iterator& y) { | 2146 | 199k | return x.Current != y.Current; | 2147 | 199k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCMethodDecl> const&) Line | Count | Source | 2145 | 58.3k | const specific_decl_iterator& y) { | 2146 | 58.3k | return x.Current != y.Current; | 2147 | 58.3k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl> const&, clang::DeclContext::specific_decl_iterator<clang::CXXConstructorDecl> const&) Line | Count | Source | 2145 | 16.1k | const specific_decl_iterator& y) { | 2146 | 16.1k | return x.Current != y.Current; | 2147 | 16.1k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl> const&, clang::DeclContext::specific_decl_iterator<clang::NamespaceDecl> const&) Line | Count | Source | 2145 | 4 | const specific_decl_iterator& y) { | 2146 | 4 | return x.Current != y.Current; | 2147 | 4 | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl> const&, clang::DeclContext::specific_decl_iterator<clang::FunctionTemplateDecl> const&) Line | Count | Source | 2145 | 14 | const specific_decl_iterator& y) { | 2146 | 14 | return x.Current != y.Current; | 2147 | 14 | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::VarDecl> const&, clang::DeclContext::specific_decl_iterator<clang::VarDecl> const&) Line | Count | Source | 2145 | 120k | const specific_decl_iterator& y) { | 2146 | 120k | return x.Current != y.Current; | 2147 | 120k | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl> const&, clang::DeclContext::specific_decl_iterator<clang::ObjCImplementationDecl> const&) Line | Count | Source | 2145 | 193 | const specific_decl_iterator& y) { | 2146 | 193 | return x.Current != y.Current; | 2147 | 193 | } |
clang::operator!=(clang::DeclContext::specific_decl_iterator<clang::TypeDecl> const&, clang::DeclContext::specific_decl_iterator<clang::TypeDecl> const&) Line | Count | Source | 2145 | 9.49k | const specific_decl_iterator& y) { | 2146 | 9.49k | return x.Current != y.Current; | 2147 | 9.49k | } |
|
2148 | | }; |
2149 | | |
2150 | | /// Iterates over a filtered subrange of declarations stored |
2151 | | /// in a DeclContext. |
2152 | | /// |
2153 | | /// This iterator visits only those declarations that are of type |
2154 | | /// SpecificDecl (or a class derived from it) and that meet some |
2155 | | /// additional run-time criteria. This iterator is used, for |
2156 | | /// example, to provide access to the instance methods within an |
2157 | | /// Objective-C interface (with SpecificDecl = ObjCMethodDecl and |
2158 | | /// Acceptable = ObjCMethodDecl::isInstanceMethod). |
2159 | | template<typename SpecificDecl, bool (SpecificDecl::*Acceptable)() const> |
2160 | | class filtered_decl_iterator { |
2161 | | /// Current - The current, underlying declaration iterator, which |
2162 | | /// will either be NULL or will point to a declaration of |
2163 | | /// type SpecificDecl. |
2164 | | DeclContext::decl_iterator Current; |
2165 | | |
2166 | | /// SkipToNextDecl - Advances the current position up to the next |
2167 | | /// declaration of type SpecificDecl that also meets the criteria |
2168 | | /// required by Acceptable. |
2169 | 275k | void SkipToNextDecl() { |
2170 | 462k | while (*Current && |
2171 | 322k | (!isa<SpecificDecl>(*Current) || |
2172 | 251k | (Acceptable && !(cast<SpecificDecl>(*Current)->*Acceptable)()))) |
2173 | 187k | ++Current; |
2174 | 275k | } clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)>::SkipToNextDecl() Line | Count | Source | 2169 | 179k | void SkipToNextDecl() { | 2170 | 228k | while (*Current && | 2171 | 155k | (!isa<SpecificDecl>(*Current) || | 2172 | 127k | (Acceptable && !(cast<SpecificDecl>(*Current)->*Acceptable)()))) | 2173 | 48.5k | ++Current; | 2174 | 179k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)>::SkipToNextDecl() Line | Count | Source | 2169 | 11.6k | void SkipToNextDecl() { | 2170 | 24.4k | while (*Current && | 2171 | 19.9k | (!isa<SpecificDecl>(*Current) || | 2172 | 7.45k | (Acceptable && !(cast<SpecificDecl>(*Current)->*Acceptable)()))) | 2173 | 12.7k | ++Current; | 2174 | 11.6k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)>::SkipToNextDecl() Line | Count | Source | 2169 | 1.45k | void SkipToNextDecl() { | 2170 | 7.81k | while (*Current && | 2171 | 7.25k | (!isa<SpecificDecl>(*Current) || | 2172 | 1.77k | (Acceptable && !(cast<SpecificDecl>(*Current)->*Acceptable)()))) | 2173 | 6.36k | ++Current; | 2174 | 1.45k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)>::SkipToNextDecl() Line | Count | Source | 2169 | 82.2k | void SkipToNextDecl() { | 2170 | 202k | while (*Current && | 2171 | 138k | (!isa<SpecificDecl>(*Current) || | 2172 | 115k | (Acceptable && !(cast<SpecificDecl>(*Current)->*Acceptable)()))) | 2173 | 120k | ++Current; | 2174 | 82.2k | } |
|
2175 | | |
2176 | | public: |
2177 | | using value_type = SpecificDecl *; |
2178 | | // TODO: Add reference and pointer types (with some appropriate proxy type) |
2179 | | // if we ever have a need for them. |
2180 | | using reference = void; |
2181 | | using pointer = void; |
2182 | | using difference_type = |
2183 | | std::iterator_traits<DeclContext::decl_iterator>::difference_type; |
2184 | | using iterator_category = std::forward_iterator_tag; |
2185 | | |
2186 | | filtered_decl_iterator() = default; |
2187 | | |
2188 | | /// filtered_decl_iterator - Construct a new iterator over a |
2189 | | /// subset of the declarations the range [C, |
2190 | | /// end-of-declarations). If A is non-NULL, it is a pointer to a |
2191 | | /// member function of SpecificDecl that should return true for |
2192 | | /// all of the SpecificDecl instances that will be in the subset |
2193 | | /// of iterators. For example, if you want Objective-C instance |
2194 | | /// methods, SpecificDecl will be ObjCMethodDecl and A will be |
2195 | | /// &ObjCMethodDecl::isInstanceMethod. |
2196 | 143k | explicit filtered_decl_iterator(DeclContext::decl_iterator C) : Current(C) { |
2197 | 143k | SkipToNextDecl(); |
2198 | 143k | } clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)>::filtered_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2196 | 72.9k | explicit filtered_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2197 | 72.9k | SkipToNextDecl(); | 2198 | 72.9k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)>::filtered_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2196 | 6.51k | explicit filtered_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2197 | 6.51k | SkipToNextDecl(); | 2198 | 6.51k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)>::filtered_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2196 | 1.11k | explicit filtered_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2197 | 1.11k | SkipToNextDecl(); | 2198 | 1.11k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)>::filtered_decl_iterator(clang::DeclContext::decl_iterator) Line | Count | Source | 2196 | 63.3k | explicit filtered_decl_iterator(DeclContext::decl_iterator C) : Current(C) { | 2197 | 63.3k | SkipToNextDecl(); | 2198 | 63.3k | } |
|
2199 | | |
2200 | 134k | value_type operator*() const { return cast<SpecificDecl>(*Current); } clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)>::operator*() const Line | Count | Source | 2200 | 7.17k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)>::operator*() const Line | Count | Source | 2200 | 893 | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)>::operator*() const Line | Count | Source | 2200 | 107k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)>::operator*() const Line | Count | Source | 2200 | 18.8k | value_type operator*() const { return cast<SpecificDecl>(*Current); } |
|
2201 | | value_type operator->() const { return cast<SpecificDecl>(*Current); } |
2202 | | |
2203 | 131k | filtered_decl_iterator& operator++() { |
2204 | 131k | ++Current; |
2205 | 131k | SkipToNextDecl(); |
2206 | 131k | return *this; |
2207 | 131k | } clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)>::operator++() Line | Count | Source | 2203 | 5.15k | filtered_decl_iterator& operator++() { | 2204 | 5.15k | ++Current; | 2205 | 5.15k | SkipToNextDecl(); | 2206 | 5.15k | return *this; | 2207 | 5.15k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)>::operator++() Line | Count | Source | 2203 | 345 | filtered_decl_iterator& operator++() { | 2204 | 345 | ++Current; | 2205 | 345 | SkipToNextDecl(); | 2206 | 345 | return *this; | 2207 | 345 | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)>::operator++() Line | Count | Source | 2203 | 106k | filtered_decl_iterator& operator++() { | 2204 | 106k | ++Current; | 2205 | 106k | SkipToNextDecl(); | 2206 | 106k | return *this; | 2207 | 106k | } |
clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)>::operator++() Line | Count | Source | 2203 | 18.8k | filtered_decl_iterator& operator++() { | 2204 | 18.8k | ++Current; | 2205 | 18.8k | SkipToNextDecl(); | 2206 | 18.8k | return *this; | 2207 | 18.8k | } |
|
2208 | | |
2209 | | filtered_decl_iterator operator++(int) { |
2210 | | filtered_decl_iterator tmp(*this); |
2211 | | ++(*this); |
2212 | | return tmp; |
2213 | | } |
2214 | | |
2215 | | friend bool operator==(const filtered_decl_iterator& x, |
2216 | 86 | const filtered_decl_iterator& y) { |
2217 | 86 | return x.Current == y.Current; |
2218 | 86 | } clang::operator==(clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)> const&) Line | Count | Source | 2216 | 82 | const filtered_decl_iterator& y) { | 2217 | 82 | return x.Current == y.Current; | 2218 | 82 | } |
clang::operator==(clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)> const&) Line | Count | Source | 2216 | 4 | const filtered_decl_iterator& y) { | 2217 | 4 | return x.Current == y.Current; | 2218 | 4 | } |
|
2219 | | |
2220 | | friend bool operator!=(const filtered_decl_iterator& x, |
2221 | 203k | const filtered_decl_iterator& y) { |
2222 | 203k | return x.Current != y.Current; |
2223 | 203k | } clang::operator!=(clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isInstanceProperty() const)> const&) Line | Count | Source | 2221 | 8.51k | const filtered_decl_iterator& y) { | 2222 | 8.51k | return x.Current != y.Current; | 2223 | 8.51k | } |
clang::operator!=(clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCPropertyDecl, &(clang::ObjCPropertyDecl::isClassProperty() const)> const&) Line | Count | Source | 2221 | 900 | const filtered_decl_iterator& y) { | 2222 | 900 | return x.Current != y.Current; | 2223 | 900 | } |
clang::operator!=(clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isInstanceMethod() const)> const&) Line | Count | Source | 2221 | 143k | const filtered_decl_iterator& y) { | 2222 | 143k | return x.Current != y.Current; | 2223 | 143k | } |
clang::operator!=(clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)> const&, clang::DeclContext::filtered_decl_iterator<clang::ObjCMethodDecl, &(clang::ObjCMethodDecl::isClassMethod() const)> const&) Line | Count | Source | 2221 | 50.6k | const filtered_decl_iterator& y) { | 2222 | 50.6k | return x.Current != y.Current; | 2223 | 50.6k | } |
|
2224 | | }; |
2225 | | |
2226 | | /// Add the declaration D into this context. |
2227 | | /// |
2228 | | /// This routine should be invoked when the declaration D has first |
2229 | | /// been declared, to place D into the context where it was |
2230 | | /// (lexically) defined. Every declaration must be added to one |
2231 | | /// (and only one!) context, where it can be visited via |
2232 | | /// [decls_begin(), decls_end()). Once a declaration has been added |
2233 | | /// to its lexical context, the corresponding DeclContext owns the |
2234 | | /// declaration. |
2235 | | /// |
2236 | | /// If D is also a NamedDecl, it will be made visible within its |
2237 | | /// semantic context via makeDeclVisibleInContext. |
2238 | | void addDecl(Decl *D); |
2239 | | |
2240 | | /// Add the declaration D into this context, but suppress |
2241 | | /// searches for external declarations with the same name. |
2242 | | /// |
2243 | | /// Although analogous in function to addDecl, this removes an |
2244 | | /// important check. This is only useful if the Decl is being |
2245 | | /// added in response to an external search; in all other cases, |
2246 | | /// addDecl() is the right function to use. |
2247 | | /// See the ASTImporter for use cases. |
2248 | | void addDeclInternal(Decl *D); |
2249 | | |
2250 | | /// Add the declaration D to this context without modifying |
2251 | | /// any lookup tables. |
2252 | | /// |
2253 | | /// This is useful for some operations in dependent contexts where |
2254 | | /// the semantic context might not be dependent; this basically |
2255 | | /// only happens with friends. |
2256 | | void addHiddenDecl(Decl *D); |
2257 | | |
2258 | | /// Removes a declaration from this context. |
2259 | | void removeDecl(Decl *D); |
2260 | | |
2261 | | /// Checks whether a declaration is in this context. |
2262 | | bool containsDecl(Decl *D) const; |
2263 | | |
2264 | | /// Checks whether a declaration is in this context. |
2265 | | /// This also loads the Decls from the external source before the check. |
2266 | | bool containsDeclAndLoad(Decl *D) const; |
2267 | | |
2268 | | using lookup_result = DeclContextLookupResult; |
2269 | | using lookup_iterator = lookup_result::iterator; |
2270 | | |
2271 | | /// lookup - Find the declarations (if any) with the given Name in |
2272 | | /// this context. Returns a range of iterators that contains all of |
2273 | | /// the declarations with this name, with object, function, member, |
2274 | | /// and enumerator names preceding any tag name. Note that this |
2275 | | /// routine will not look into parent contexts. |
2276 | | lookup_result lookup(DeclarationName Name) const; |
2277 | | |
2278 | | /// Find the declarations with the given name that are visible |
2279 | | /// within this context; don't attempt to retrieve anything from an |
2280 | | /// external source. |
2281 | | lookup_result noload_lookup(DeclarationName Name); |
2282 | | |
2283 | | /// A simplistic name lookup mechanism that performs name lookup |
2284 | | /// into this declaration context without consulting the external source. |
2285 | | /// |
2286 | | /// This function should almost never be used, because it subverts the |
2287 | | /// usual relationship between a DeclContext and the external source. |
2288 | | /// See the ASTImporter for the (few, but important) use cases. |
2289 | | /// |
2290 | | /// FIXME: This is very inefficient; replace uses of it with uses of |
2291 | | /// noload_lookup. |
2292 | | void localUncachedLookup(DeclarationName Name, |
2293 | | SmallVectorImpl<NamedDecl *> &Results); |
2294 | | |
2295 | | /// Makes a declaration visible within this context. |
2296 | | /// |
2297 | | /// This routine makes the declaration D visible to name lookup |
2298 | | /// within this context and, if this is a transparent context, |
2299 | | /// within its parent contexts up to the first enclosing |
2300 | | /// non-transparent context. Making a declaration visible within a |
2301 | | /// context does not transfer ownership of a declaration, and a |
2302 | | /// declaration can be visible in many contexts that aren't its |
2303 | | /// lexical context. |
2304 | | /// |
2305 | | /// If D is a redeclaration of an existing declaration that is |
2306 | | /// visible from this context, as determined by |
2307 | | /// NamedDecl::declarationReplaces, the previous declaration will be |
2308 | | /// replaced with D. |
2309 | | void makeDeclVisibleInContext(NamedDecl *D); |
2310 | | |
2311 | | /// all_lookups_iterator - An iterator that provides a view over the results |
2312 | | /// of looking up every possible name. |
2313 | | class all_lookups_iterator; |
2314 | | |
2315 | | using lookups_range = llvm::iterator_range<all_lookups_iterator>; |
2316 | | |
2317 | | lookups_range lookups() const; |
2318 | | // Like lookups(), but avoids loading external declarations. |
2319 | | // If PreserveInternalState, avoids building lookup data structures too. |
2320 | | lookups_range noload_lookups(bool PreserveInternalState) const; |
2321 | | |
2322 | | /// Iterators over all possible lookups within this context. |
2323 | | all_lookups_iterator lookups_begin() const; |
2324 | | all_lookups_iterator lookups_end() const; |
2325 | | |
2326 | | /// Iterators over all possible lookups within this context that are |
2327 | | /// currently loaded; don't attempt to retrieve anything from an external |
2328 | | /// source. |
2329 | | all_lookups_iterator noload_lookups_begin() const; |
2330 | | all_lookups_iterator noload_lookups_end() const; |
2331 | | |
2332 | | struct udir_iterator; |
2333 | | |
2334 | | using udir_iterator_base = |
2335 | | llvm::iterator_adaptor_base<udir_iterator, lookup_iterator, |
2336 | | std::random_access_iterator_tag, |
2337 | | UsingDirectiveDecl *>; |
2338 | | |
2339 | | struct udir_iterator : udir_iterator_base { |
2340 | 110M | udir_iterator(lookup_iterator I) : udir_iterator_base(I) {} |
2341 | | |
2342 | | UsingDirectiveDecl *operator*() const; |
2343 | | }; |
2344 | | |
2345 | | using udir_range = llvm::iterator_range<udir_iterator>; |
2346 | | |
2347 | | udir_range using_directives() const; |
2348 | | |
2349 | | // These are all defined in DependentDiagnostic.h. |
2350 | | class ddiag_iterator; |
2351 | | |
2352 | | using ddiag_range = llvm::iterator_range<DeclContext::ddiag_iterator>; |
2353 | | |
2354 | | inline ddiag_range ddiags() const; |
2355 | | |
2356 | | // Low-level accessors |
2357 | | |
2358 | | /// Mark that there are external lexical declarations that we need |
2359 | | /// to include in our lookup table (and that are not available as external |
2360 | | /// visible lookups). These extra lookup results will be found by walking |
2361 | | /// the lexical declarations of this context. This should be used only if |
2362 | | /// setHasExternalLexicalStorage() has been called on any decl context for |
2363 | | /// which this is the primary context. |
2364 | 155k | void setMustBuildLookupTable() { |
2365 | 155k | assert(this == getPrimaryContext() && |
2366 | 155k | "should only be called on primary context"); |
2367 | 155k | DeclContextBits.HasLazyExternalLexicalLookups = true; |
2368 | 155k | } |
2369 | | |
2370 | | /// Retrieve the internal representation of the lookup structure. |
2371 | | /// This may omit some names if we are lazily building the structure. |
2372 | 918k | StoredDeclsMap *getLookupPtr() const { return LookupPtr; } |
2373 | | |
2374 | | /// Ensure the lookup structure is fully-built and return it. |
2375 | | StoredDeclsMap *buildLookup(); |
2376 | | |
2377 | | /// Whether this DeclContext has external storage containing |
2378 | | /// additional declarations that are lexically in this context. |
2379 | 29.2M | bool hasExternalLexicalStorage() const { |
2380 | 29.2M | return DeclContextBits.ExternalLexicalStorage; |
2381 | 29.2M | } |
2382 | | |
2383 | | /// State whether this DeclContext has external storage for |
2384 | | /// declarations lexically in this context. |
2385 | 30.5M | void setHasExternalLexicalStorage(bool ES = true) const { |
2386 | 30.5M | DeclContextBits.ExternalLexicalStorage = ES; |
2387 | 30.5M | } |
2388 | | |
2389 | | /// Whether this DeclContext has external storage containing |
2390 | | /// additional declarations that are visible in this context. |
2391 | 191M | bool hasExternalVisibleStorage() const { |
2392 | 191M | return DeclContextBits.ExternalVisibleStorage; |
2393 | 191M | } |
2394 | | |
2395 | | /// State whether
|