/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/include/clang/AST/ASTUnresolvedSet.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===- ASTUnresolvedSet.h - Unresolved sets of 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 provides an UnresolvedSet-like class, whose contents are |
10 | | // allocated using the allocator associated with an ASTContext. |
11 | | // |
12 | | //===----------------------------------------------------------------------===// |
13 | | |
14 | | #ifndef LLVM_CLANG_AST_ASTUNRESOLVEDSET_H |
15 | | #define LLVM_CLANG_AST_ASTUNRESOLVEDSET_H |
16 | | |
17 | | #include "clang/AST/ASTVector.h" |
18 | | #include "clang/AST/DeclAccessPair.h" |
19 | | #include "clang/AST/UnresolvedSet.h" |
20 | | #include "clang/Basic/Specifiers.h" |
21 | | #include <cassert> |
22 | | #include <cstdint> |
23 | | |
24 | | namespace clang { |
25 | | |
26 | | class NamedDecl; |
27 | | |
28 | | /// An UnresolvedSet-like class which uses the ASTContext's allocator. |
29 | | class ASTUnresolvedSet { |
30 | | friend class LazyASTUnresolvedSet; |
31 | | |
32 | | struct DeclsTy : ASTVector<DeclAccessPair> { |
33 | 7.85M | DeclsTy() = default; |
34 | 0 | DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {} |
35 | | |
36 | 12.7M | bool isLazy() const { return getTag(); } |
37 | 37.3k | void setLazy(bool Lazy) { setTag(Lazy); } |
38 | | }; |
39 | | |
40 | | DeclsTy Decls; |
41 | | |
42 | | public: |
43 | 7.85M | ASTUnresolvedSet() = default; |
44 | 0 | ASTUnresolvedSet(ASTContext &C, unsigned N) : Decls(C, N) {} |
45 | | |
46 | | using iterator = UnresolvedSetIterator; |
47 | | using const_iterator = UnresolvedSetIterator; |
48 | | |
49 | 8.27M | iterator begin() { return iterator(Decls.begin()); } |
50 | 8.27M | iterator end() { return iterator(Decls.end()); } |
51 | | |
52 | 122k | const_iterator begin() const { return const_iterator(Decls.begin()); } |
53 | 122k | const_iterator end() const { return const_iterator(Decls.end()); } |
54 | | |
55 | 75.4k | void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) { |
56 | 75.4k | Decls.push_back(DeclAccessPair::make(D, AS), C); |
57 | 75.4k | } |
58 | | |
59 | | /// Replaces the given declaration with the new one, once. |
60 | | /// |
61 | | /// \return true if the set changed |
62 | 0 | bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { |
63 | 0 | for (DeclsTy::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) { |
64 | 0 | if (I->getDecl() == Old) { |
65 | 0 | I->set(New, AS); |
66 | 0 | return true; |
67 | 0 | } |
68 | 0 | } |
69 | 0 | return false; |
70 | 0 | } |
71 | | |
72 | 0 | void erase(unsigned I) { Decls[I] = Decls.pop_back_val(); } |
73 | | |
74 | 0 | void clear() { Decls.clear(); } |
75 | | |
76 | 37.1k | bool empty() const { return Decls.empty(); } |
77 | 122k | unsigned size() const { return Decls.size(); } |
78 | | |
79 | 1.33M | void reserve(ASTContext &C, unsigned N) { |
80 | 1.33M | Decls.reserve(C, N); |
81 | 1.33M | } |
82 | | |
83 | 5.71k | void append(ASTContext &C, iterator I, iterator E) { |
84 | 5.71k | Decls.append(C, I.I, E.I); |
85 | 5.71k | } |
86 | | |
87 | 0 | DeclAccessPair &operator[](unsigned I) { return Decls[I]; } |
88 | 0 | const DeclAccessPair &operator[](unsigned I) const { return Decls[I]; } |
89 | | }; |
90 | | |
91 | | /// An UnresolvedSet-like class that might not have been loaded from the |
92 | | /// external AST source yet. |
93 | | class LazyASTUnresolvedSet { |
94 | | mutable ASTUnresolvedSet Impl; |
95 | | |
96 | | void getFromExternalSource(ASTContext &C) const; |
97 | | |
98 | | public: |
99 | 12.7M | ASTUnresolvedSet &get(ASTContext &C) const { |
100 | 12.7M | if (Impl.Decls.isLazy()) |
101 | 189 | getFromExternalSource(C); |
102 | 12.7M | return Impl; |
103 | 12.7M | } |
104 | | |
105 | 1.33M | void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } |
106 | | |
107 | 37.1k | void addLazyDecl(ASTContext &C, uintptr_t ID, AccessSpecifier AS) { |
108 | 37.1k | assert(Impl.empty() || Impl.Decls.isLazy()); |
109 | 0 | Impl.Decls.setLazy(true); |
110 | 37.1k | Impl.addDecl(C, reinterpret_cast<NamedDecl *>(ID << 2), AS); |
111 | 37.1k | } |
112 | | }; |
113 | | |
114 | | } // namespace clang |
115 | | |
116 | | #endif // LLVM_CLANG_AST_ASTUNRESOLVEDSET_H |