clang  5.0.0
ExternalASTSource.cpp
Go to the documentation of this file.
1 //===- ExternalASTSource.cpp - Abstract External AST Interface --*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides the default implementation of the ExternalASTSource
11 // interface, which enables construction of AST nodes from some external
12 // source.
13 //
14 //===----------------------------------------------------------------------===//
15 
17 #include "clang/AST/ASTContext.h"
19 #include "clang/Basic/Module.h"
20 #include "llvm/Support/ErrorHandling.h"
21 
22 using namespace clang;
23 
25 
28  return None;
29 }
30 
33  return EK_ReplyHazy;
34 }
35 
37  : Signature(M.Signature), ClangModule(&M) {
38  if (M.Directory)
39  Path = M.Directory->getName();
40  if (auto *File = M.getASTFile())
41  ASTFile = File->getName();
42 }
43 
45  if (ClangModule)
46  return ClangModule->Name;
47  else
48  return PCHModuleName;
49 }
50 
52  unsigned Length,
53  SmallVectorImpl<Decl *> &Decls) {}
54 
56 
58 
60 
62 
64 
66 
68 
70 
72  const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment,
73  llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets,
74  llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets,
75  llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) {
76  return false;
77 }
78 
80  return nullptr;
81 }
82 
84  return Selector();
85 }
86 
88  return 0;
89 }
90 
92  return nullptr;
93 }
94 
97  return nullptr;
98 }
99 
102  return nullptr;
103 }
104 
105 bool
108  return false;
109 }
110 
112 
114  const DeclContext *DC, llvm::function_ref<bool(Decl::Kind)> IsKindWeWant,
116 
118 
120  uint32_t OldGeneration = CurrentGeneration;
121 
122  // Make sure the generation of the topmost external source for the context is
123  // incremented. That might not be us.
124  auto *P = C.getExternalSource();
125  if (P && P != this)
126  CurrentGeneration = P->incrementGeneration(C);
127  else {
128  // FIXME: Only bump the generation counter if the current generation number
129  // has been observed?
130  if (!++CurrentGeneration)
131  llvm::report_fatal_error("generation counter overflowed", false);
132  }
133 
134  return OldGeneration;
135 }
virtual void FindExternalLexicalDecls(const DeclContext *DC, llvm::function_ref< bool(Decl::Kind)> IsKindWeWant, SmallVectorImpl< Decl * > &Result)
Finds all declarations lexically contained within the given DeclContext, after applying an optional f...
Defines the clang::ASTContext interface.
Smart pointer class that efficiently represents Objective-C method names.
unsigned Length
virtual Decl * GetExternalDecl(uint32_t ID)
Resolve a declaration ID into a declaration, potentially building a new declaration.
ASTConsumer - This is an abstract interface that should be implemented by clients that read ASTs...
Definition: ASTConsumer.h:34
Stmt - This represents one statement.
Definition: Stmt.h:60
Defines the clang::Module class, which describes a module in the source code.
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:81
StringRef P
virtual uint32_t GetNumExternalSelectors()
Returns the number of selectors known to the external AST source.
virtual bool layoutRecordType(const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap< const FieldDecl *, uint64_t > &FieldOffsets, llvm::DenseMap< const CXXRecordDecl *, CharUnits > &BaseOffsets, llvm::DenseMap< const CXXRecordDecl *, CharUnits > &VirtualBaseOffsets)
Perform layout on the given record.
virtual void PrintStats()
Print any statistics that have been gathered regarding the external AST source.
const FileEntry * getASTFile() const
The serialized AST file for this module, if one was created.
Definition: Module.h:424
virtual void CompleteRedeclChain(const Decl *D)
Gives the external AST source an opportunity to complete the redeclaration chain for a declaration...
virtual Selector GetExternalSelector(uint32_t ID)
Resolve a selector ID into a selector.
virtual void StartedDeserializing()
Notify ExternalASTSource that we started deserialization of a decl or type so until FinishedDeseriali...
MemoryBufferSizes getMemoryBufferSizes() const
Return the amount of memory used by memory buffers, breaking down by heap-backed versus mmap'ed memor...
RecordDecl - Represents a struct/union/class.
Definition: Decl.h:3354
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:128
uint32_t incrementGeneration(ASTContext &C)
Increment the current generation.
virtual CXXBaseSpecifier * GetExternalCXXBaseSpecifiers(uint64_t Offset)
Resolve the offset of a set of C++ base specifiers in the decl stream into an array of specifiers...
Describes a module or submodule.
Definition: Module.h:57
virtual void FindFileRegionDecls(FileID File, unsigned Offset, unsigned Length, SmallVectorImpl< Decl * > &Decls)
Get the decls that are contained in a file in the Offset/Length range.
virtual bool FindExternalVisibleDeclsByName(const DeclContext *DC, DeclarationName Name)
Find all declarations with the given name in the given context, and add them to the context by callin...
uint32_t Offset
Definition: CacheTokens.cpp:43
virtual void FinishedDeserializing()
Notify ExternalASTSource that we finished the deserialization of a decl or type.
Represents an ObjC class declaration.
Definition: DeclObjC.h:1108
virtual void completeVisibleDeclsMap(const DeclContext *DC)
Ensures that the table of all visible declarations inside this context is up to date.
The result type of a method or function.
const DirectoryEntry * Directory
The build directory of this module.
Definition: Module.h:84
ExternalASTSource * getExternalSource() const
Retrieve a pointer to the external AST source associated with this AST context, if any...
Definition: ASTContext.h:1014
virtual Stmt * GetExternalDeclStmt(uint64_t Offset)
Resolve the offset of a statement in the decl stream into a statement.
const std::string ID
TagDecl - Represents the declaration of a struct/union/class/enum.
Definition: Decl.h:2816
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition: DeclBase.h:1215
StringRef Name
Definition: USRFinder.cpp:123
virtual void StartTranslationUnit(ASTConsumer *Consumer)
Function that will be invoked when we begin parsing a new translation unit involving this external AS...
virtual void ReadComments()
Loads comment ranges.
StringRef getName() const
Definition: FileManager.h:51
DeclarationName - The name of a declaration.
virtual CXXCtorInitializer ** GetExternalCXXCtorInitializers(uint64_t Offset)
Resolve the offset of a set of C++ constructor initializers in the decl stream into an array of initi...
virtual ExtKind hasExternalDefinitions(const Decl *D)
Represents a C++ base or member initializer.
Definition: DeclCXX.h:2105
virtual void CompleteType(TagDecl *Tag)
Gives the external AST source an opportunity to complete an incomplete type.
Represents a base class of a C++ class.
Definition: DeclCXX.h:158
virtual llvm::Optional< ASTSourceDescriptor > getSourceDescriptor(unsigned ID)
Return a descriptor for the corresponding module, if one exists.
Kind
Lists the kind of concrete classes of Decl.
Definition: DeclBase.h:84