clang 20.0.0git
MultiplexExternalSemaSource.h
Go to the documentation of this file.
1//===--- MultiplexExternalSemaSource.h - External Sema Interface-*- 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 ExternalSemaSource interface, dispatching to all clients
10//
11//===----------------------------------------------------------------------===//
12#ifndef LLVM_CLANG_SEMA_MULTIPLEXEXTERNALSEMASOURCE_H
13#define LLVM_CLANG_SEMA_MULTIPLEXEXTERNALSEMASOURCE_H
14
16#include "clang/Sema/Weak.h"
17#include "llvm/ADT/SmallVector.h"
18#include <utility>
19
20namespace clang {
21
22 class CXXConstructorDecl;
23 class CXXRecordDecl;
24 class DeclaratorDecl;
25 struct ExternalVTableUse;
26 class LookupResult;
27 class NamespaceDecl;
28 class Scope;
29 class Sema;
30 class TypedefNameDecl;
31 class ValueDecl;
32 class VarDecl;
33
34
35/// An abstract interface that should be implemented by
36/// external AST sources that also provide information for semantic
37/// analysis.
39 /// LLVM-style RTTI.
40 static char ID;
41
42private:
44
45public:
46 /// Constructs a new multiplexing external sema source and appends the
47 /// given element to it.
48 ///
49 ///\param[in] S1 - A non-null (old) ExternalSemaSource.
50 ///\param[in] S2 - A non-null (new) ExternalSemaSource.
51 ///
53
55
56 /// Appends new source to the source list.
57 ///
58 ///\param[in] Source - An ExternalSemaSource.
59 ///
60 void AddSource(ExternalSemaSource *Source);
61
62 //===--------------------------------------------------------------------===//
63 // ExternalASTSource.
64 //===--------------------------------------------------------------------===//
65
66 /// Resolve a declaration ID into a declaration, potentially
67 /// building a new declaration.
68 Decl *GetExternalDecl(GlobalDeclID ID) override;
69
70 /// Complete the redeclaration chain if it's been extended since the
71 /// previous generation of the AST source.
72 void CompleteRedeclChain(const Decl *D) override;
73
74 /// Resolve a selector ID into a selector.
75 Selector GetExternalSelector(uint32_t ID) override;
76
77 /// Returns the number of selectors known to the external AST
78 /// source.
79 uint32_t GetNumExternalSelectors() override;
80
81 /// Resolve the offset of a statement in the decl stream into
82 /// a statement.
83 Stmt *GetExternalDeclStmt(uint64_t Offset) override;
84
85 /// Resolve the offset of a set of C++ base specifiers in the decl
86 /// stream into an array of specifiers.
87 CXXBaseSpecifier *GetExternalCXXBaseSpecifiers(uint64_t Offset) override;
88
89 /// Resolve a handle to a list of ctor initializers into the list of
90 /// initializers themselves.
91 CXXCtorInitializer **GetExternalCXXCtorInitializers(uint64_t Offset) override;
92
93 ExtKind hasExternalDefinitions(const Decl *D) override;
94
95 /// Find all declarations with the given name in the
96 /// given context.
98 DeclarationName Name,
99 const DeclContext *OriginalDC) override;
100
101 bool LoadExternalSpecializations(const Decl *D, bool OnlyPartial) override;
102
103 bool
105 ArrayRef<TemplateArgument> TemplateArgs) override;
106
107 /// Ensures that the table of all visible declarations inside this
108 /// context is up to date.
109 void completeVisibleDeclsMap(const DeclContext *DC) override;
110
111 /// Finds all declarations lexically contained within the given
112 /// DeclContext, after applying an optional filter predicate.
113 ///
114 /// \param IsKindWeWant a predicate function that returns true if the passed
115 /// declaration kind is one we are looking for.
116 void
118 llvm::function_ref<bool(Decl::Kind)> IsKindWeWant,
120
121 /// Get the decls that are contained in a file in the Offset/Length
122 /// range. \p Length can be 0 to indicate a point at \p Offset instead of
123 /// a range.
124 void FindFileRegionDecls(FileID File, unsigned Offset,unsigned Length,
125 SmallVectorImpl<Decl *> &Decls) override;
126
127 /// Gives the external AST source an opportunity to complete
128 /// an incomplete type.
129 void CompleteType(TagDecl *Tag) override;
130
131 /// Gives the external AST source an opportunity to complete an
132 /// incomplete Objective-C class.
133 ///
134 /// This routine will only be invoked if the "externally completed" bit is
135 /// set on the ObjCInterfaceDecl via the function
136 /// \c ObjCInterfaceDecl::setExternallyCompleted().
137 void CompleteType(ObjCInterfaceDecl *Class) override;
138
139 /// Loads comment ranges.
140 void ReadComments() override;
141
142 /// Notify ExternalASTSource that we started deserialization of
143 /// a decl or type so until FinishedDeserializing is called there may be
144 /// decls that are initializing. Must be paired with FinishedDeserializing.
145 void StartedDeserializing() override;
146
147 /// Notify ExternalASTSource that we finished the deserialization of
148 /// a decl or type. Must be paired with StartedDeserializing.
149 void FinishedDeserializing() override;
150
151 /// Function that will be invoked when we begin parsing a new
152 /// translation unit involving this external AST source.
153 void StartTranslationUnit(ASTConsumer *Consumer) override;
154
155 /// Print any statistics that have been gathered regarding
156 /// the external AST source.
157 void PrintStats() override;
158
159 /// Retrieve the module that corresponds to the given module ID.
160 Module *getModule(unsigned ID) override;
161
162 /// Perform layout on the given record.
163 ///
164 /// This routine allows the external AST source to provide an specific
165 /// layout for a record, overriding the layout that would normally be
166 /// constructed. It is intended for clients who receive specific layout
167 /// details rather than source code (such as LLDB). The client is expected
168 /// to fill in the field offsets, base offsets, virtual base offsets, and
169 /// complete object size.
170 ///
171 /// \param Record The record whose layout is being requested.
172 ///
173 /// \param Size The final size of the record, in bits.
174 ///
175 /// \param Alignment The final alignment of the record, in bits.
176 ///
177 /// \param FieldOffsets The offset of each of the fields within the record,
178 /// expressed in bits. All of the fields must be provided with offsets.
179 ///
180 /// \param BaseOffsets The offset of each of the direct, non-virtual base
181 /// classes. If any bases are not given offsets, the bases will be laid
182 /// out according to the ABI.
183 ///
184 /// \param VirtualBaseOffsets The offset of each of the virtual base classes
185 /// (either direct or not). If any bases are not given offsets, the bases will
186 /// be laid out according to the ABI.
187 ///
188 /// \returns true if the record layout was provided, false otherwise.
189 bool
191 uint64_t &Size, uint64_t &Alignment,
192 llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets,
193 llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets,
194 llvm::DenseMap<const CXXRecordDecl *,
195 CharUnits> &VirtualBaseOffsets) override;
196
197 /// Return the amount of memory used by memory buffers, breaking down
198 /// by heap-backed versus mmap'ed memory.
199 void getMemoryBufferSizes(MemoryBufferSizes &sizes) const override;
200
201 //===--------------------------------------------------------------------===//
202 // ExternalSemaSource.
203 //===--------------------------------------------------------------------===//
204
205 /// Initialize the semantic source with the Sema instance
206 /// being used to perform semantic analysis on the abstract syntax
207 /// tree.
208 void InitializeSema(Sema &S) override;
209
210 /// Inform the semantic consumer that Sema is no longer available.
211 void ForgetSema() override;
212
213 /// Load the contents of the global method pool for a given
214 /// selector.
215 void ReadMethodPool(Selector Sel) override;
216
217 /// Load the contents of the global method pool for a given
218 /// selector if necessary.
219 void updateOutOfDateSelector(Selector Sel) override;
220
221 /// Load the set of namespaces that are known to the external source,
222 /// which will be used during typo correction.
223 void
225
226 /// Load the set of used but not defined functions or variables with
227 /// internal linkage, or used but not defined inline functions.
229 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) override;
230
231 void ReadMismatchingDeleteExpressions(llvm::MapVector<
232 FieldDecl *, llvm::SmallVector<std::pair<SourceLocation, bool>, 4>> &