mirror of
https://github.com/intel/llvm.git
synced 2026-01-29 12:53:33 +08:00
A PCHContainerOperations abstract interface provides operations for creating and unwrapping containers for serialized ASTs (precompiled headers and clang modules). The default implementation is RawPCHContainerOperations, which uses a flat file for the output. The main application for this interface will be an ObjectFilePCHContainerOperations implementation that uses LLVM to wrap the module in an ELF/Mach-O/COFF container to store debug info alongside the AST. rdar://problem/20091852 llvm-svn: 240225
336 lines
13 KiB
C++
336 lines
13 KiB
C++
//===--- ModuleManager.cpp - Module Manager ---------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the ModuleManager class, which manages a set of loaded
|
|
// modules for the ASTReader.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_SERIALIZATION_MODULEMANAGER_H
|
|
#define LLVM_CLANG_SERIALIZATION_MODULEMANAGER_H
|
|
|
|
#include "clang/Basic/FileManager.h"
|
|
#include "clang/Serialization/Module.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
namespace clang {
|
|
|
|
class GlobalModuleIndex;
|
|
class ModuleMap;
|
|
class PCHContainerOperations;
|
|
|
|
namespace serialization {
|
|
|
|
/// \brief Manages the set of modules loaded by an AST reader.
|
|
class ModuleManager {
|
|
/// \brief The chain of AST files. The first entry is the one named by the
|
|
/// user, the last one is the one that doesn't depend on anything further.
|
|
SmallVector<ModuleFile *, 2> Chain;
|
|
|
|
// \brief The roots of the dependency DAG of AST files. This is used
|
|
// to implement short-circuiting logic when running DFS over the dependencies.
|
|
SmallVector<ModuleFile *, 2> Roots;
|
|
|
|
/// \brief All loaded modules, indexed by name.
|
|
llvm::DenseMap<const FileEntry *, ModuleFile *> Modules;
|
|
|
|
typedef llvm::SetVector<const FileEntry *> AdditionalKnownModuleFileSet;
|
|
|
|
/// \brief Additional module files that are known but not loaded. Tracked
|
|
/// here so that we can re-export them if necessary.
|
|
AdditionalKnownModuleFileSet AdditionalKnownModuleFiles;
|
|
|
|
/// \brief FileManager that handles translating between filenames and
|
|
/// FileEntry *.
|
|
FileManager &FileMgr;
|
|
|
|
/// \brief Knows how to unwrap module containers.
|
|
const PCHContainerOperations &PCHContainerOps;
|
|
|
|
/// \brief A lookup of in-memory (virtual file) buffers
|
|
llvm::DenseMap<const FileEntry *, std::unique_ptr<llvm::MemoryBuffer>>
|
|
InMemoryBuffers;
|
|
|
|
/// \brief The visitation order.
|
|
SmallVector<ModuleFile *, 4> VisitOrder;
|
|
|
|
/// \brief The list of module files that both we and the global module index
|
|
/// know about.
|
|
///
|
|
/// Either the global index or the module manager may have modules that the
|
|
/// other does not know about, because the global index can be out-of-date
|
|
/// (in which case the module manager could have modules it does not) and
|
|
/// this particular translation unit might not have loaded all of the modules
|
|
/// known to the global index.
|
|
SmallVector<ModuleFile *, 4> ModulesInCommonWithGlobalIndex;
|
|
|
|
/// \brief The global module index, if one is attached.
|
|
///
|
|
/// The global module index will actually be owned by the ASTReader; this is
|
|
/// just an non-owning pointer.
|
|
GlobalModuleIndex *GlobalIndex;
|
|
|
|
/// \brief State used by the "visit" operation to avoid malloc traffic in
|
|
/// calls to visit().
|
|
struct VisitState {
|
|
explicit VisitState(unsigned N)
|
|
: VisitNumber(N, 0), NextVisitNumber(1), NextState(nullptr)
|
|
{
|
|
Stack.reserve(N);
|
|
}
|
|
|
|
~VisitState() {
|
|
delete NextState;
|
|
}
|
|
|
|
/// \brief The stack used when marking the imports of a particular module
|
|
/// as not-to-be-visited.
|
|
SmallVector<ModuleFile *, 4> Stack;
|
|
|
|
/// \brief The visit number of each module file, which indicates when
|
|
/// this module file was last visited.
|
|
SmallVector<unsigned, 4> VisitNumber;
|
|
|
|
/// \brief The next visit number to use to mark visited module files.
|
|
unsigned NextVisitNumber;
|
|
|
|
/// \brief The next visit state.
|
|
VisitState *NextState;
|
|
};
|
|
|
|
/// \brief The first visit() state in the chain.
|
|
VisitState *FirstVisitState;
|
|
|
|
VisitState *allocateVisitState();
|
|
void returnVisitState(VisitState *State);
|
|
|
|
public:
|
|
typedef SmallVectorImpl<ModuleFile*>::iterator ModuleIterator;
|
|
typedef SmallVectorImpl<ModuleFile*>::const_iterator ModuleConstIterator;
|
|
typedef SmallVectorImpl<ModuleFile*>::reverse_iterator ModuleReverseIterator;
|
|
typedef std::pair<uint32_t, StringRef> ModuleOffset;
|
|
|
|
explicit ModuleManager(FileManager &FileMgr,
|
|
const PCHContainerOperations &PCHContainerOps);
|
|
~ModuleManager();
|
|
|
|
/// \brief Forward iterator to traverse all loaded modules. This is reverse
|
|
/// source-order.
|
|
ModuleIterator begin() { return Chain.begin(); }
|
|
/// \brief Forward iterator end-point to traverse all loaded modules
|
|
ModuleIterator end() { return Chain.end(); }
|
|
|
|
/// \brief Const forward iterator to traverse all loaded modules. This is
|
|
/// in reverse source-order.
|
|
ModuleConstIterator begin() const { return Chain.begin(); }
|
|
/// \brief Const forward iterator end-point to traverse all loaded modules
|
|
ModuleConstIterator end() const { return Chain.end(); }
|
|
|
|
/// \brief Reverse iterator to traverse all loaded modules. This is in
|
|
/// source order.
|
|
ModuleReverseIterator rbegin() { return Chain.rbegin(); }
|
|
/// \brief Reverse iterator end-point to traverse all loaded modules.
|
|
ModuleReverseIterator rend() { return Chain.rend(); }
|
|
|
|
/// \brief Returns the primary module associated with the manager, that is,
|
|
/// the first module loaded
|
|
ModuleFile &getPrimaryModule() { return *Chain[0]; }
|
|
|
|
/// \brief Returns the primary module associated with the manager, that is,
|
|
/// the first module loaded.
|
|
ModuleFile &getPrimaryModule() const { return *Chain[0]; }
|
|
|
|
/// \brief Returns the module associated with the given index
|
|
ModuleFile &operator[](unsigned Index) const { return *Chain[Index]; }
|
|
|
|
/// \brief Returns the module associated with the given name
|
|
ModuleFile *lookup(StringRef Name);
|
|
|
|
/// \brief Returns the module associated with the given module file.
|
|
ModuleFile *lookup(const FileEntry *File);
|
|
|
|
/// \brief Returns the in-memory (virtual file) buffer with the given name
|
|
std::unique_ptr<llvm::MemoryBuffer> lookupBuffer(StringRef Name);
|
|
|
|
/// \brief Number of modules loaded
|
|
unsigned size() const { return Chain.size(); }
|
|
|
|
/// \brief The result of attempting to add a new module.
|
|
enum AddModuleResult {
|
|
/// \brief The module file had already been loaded.
|
|
AlreadyLoaded,
|
|
/// \brief The module file was just loaded in response to this call.
|
|
NewlyLoaded,
|
|
/// \brief The module file is missing.
|
|
Missing,
|
|
/// \brief The module file is out-of-date.
|
|
OutOfDate
|
|
};
|
|
|
|
typedef ASTFileSignature(*ASTFileSignatureReader)(llvm::BitstreamReader &);
|
|
|
|
/// \brief Attempts to create a new module and add it to the list of known
|
|
/// modules.
|
|
///
|
|
/// \param FileName The file name of the module to be loaded.
|
|
///
|
|
/// \param Type The kind of module being loaded.
|
|
///
|
|
/// \param ImportLoc The location at which the module is imported.
|
|
///
|
|
/// \param ImportedBy The module that is importing this module, or NULL if
|
|
/// this module is imported directly by the user.
|
|
///
|
|
/// \param Generation The generation in which this module was loaded.
|
|
///
|
|
/// \param ExpectedSize The expected size of the module file, used for
|
|
/// validation. This will be zero if unknown.
|
|
///
|
|
/// \param ExpectedModTime The expected modification time of the module
|
|
/// file, used for validation. This will be zero if unknown.
|
|
///
|
|
/// \param ExpectedSignature The expected signature of the module file, used
|
|
/// for validation. This will be zero if unknown.
|
|
///
|
|
/// \param ReadSignature Reads the signature from an AST file without actually
|
|
/// loading it.
|
|
///
|
|
/// \param Module A pointer to the module file if the module was successfully
|
|
/// loaded.
|
|
///
|
|
/// \param ErrorStr Will be set to a non-empty string if any errors occurred
|
|
/// while trying to load the module.
|
|
///
|
|
/// \return A pointer to the module that corresponds to this file name,
|
|
/// and a value indicating whether the module was loaded.
|
|
AddModuleResult addModule(StringRef FileName, ModuleKind Type,
|
|
SourceLocation ImportLoc,
|
|
ModuleFile *ImportedBy, unsigned Generation,
|
|
off_t ExpectedSize, time_t ExpectedModTime,
|
|
ASTFileSignature ExpectedSignature,
|
|
ASTFileSignatureReader ReadSignature,
|
|
ModuleFile *&Module,
|
|
std::string &ErrorStr);
|
|
|
|
/// \brief Remove the given set of modules.
|
|
void removeModules(ModuleIterator first, ModuleIterator last,
|
|
llvm::SmallPtrSetImpl<ModuleFile *> &LoadedSuccessfully,
|
|
ModuleMap *modMap);
|
|
|
|
/// \brief Add an in-memory buffer the list of known buffers
|
|
void addInMemoryBuffer(StringRef FileName,
|
|
std::unique_ptr<llvm::MemoryBuffer> Buffer);
|
|
|
|
/// \brief Set the global module index.
|
|
void setGlobalIndex(GlobalModuleIndex *Index);
|
|
|
|
/// \brief Notification from the AST reader that the given module file
|
|
/// has been "accepted", and will not (can not) be unloaded.
|
|
void moduleFileAccepted(ModuleFile *MF);
|
|
|
|
/// \brief Notification from the frontend that the given module file is
|
|
/// part of this compilation (even if not imported) and, if this compilation
|
|
/// is exported, should be made available to importers of it.
|
|
bool addKnownModuleFile(StringRef FileName);
|
|
|
|
/// \brief Get a list of additional module files that are not currently
|
|
/// loaded but are considered to be part of the current compilation.
|
|
llvm::iterator_range<AdditionalKnownModuleFileSet::const_iterator>
|
|
getAdditionalKnownModuleFiles() {
|
|
return llvm::make_range(AdditionalKnownModuleFiles.begin(),
|
|
AdditionalKnownModuleFiles.end());
|
|
}
|
|
|
|
/// \brief Visit each of the modules.
|
|
///
|
|
/// This routine visits each of the modules, starting with the
|
|
/// "root" modules that no other loaded modules depend on, and
|
|
/// proceeding to the leaf modules, visiting each module only once
|
|
/// during the traversal.
|
|
///
|
|
/// This traversal is intended to support various "lookup"
|
|
/// operations that can find data in any of the loaded modules.
|
|
///
|
|
/// \param Visitor A visitor function that will be invoked with each
|
|
/// module and the given user data pointer. The return value must be
|
|
/// convertible to bool; when false, the visitation continues to
|
|
/// modules that the current module depends on. When true, the
|
|
/// visitation skips any modules that the current module depends on.
|
|
///
|
|
/// \param UserData User data associated with the visitor object, which
|
|
/// will be passed along to the visitor.
|
|
///
|
|
/// \param ModuleFilesHit If non-NULL, contains the set of module files
|
|
/// that we know we need to visit because the global module index told us to.
|
|
/// Any module that is known to both the global module index and the module
|
|
/// manager that is *not* in this set can be skipped.
|
|
void visit(bool (*Visitor)(ModuleFile &M, void *UserData), void *UserData,
|
|
llvm::SmallPtrSetImpl<ModuleFile *> *ModuleFilesHit = nullptr);
|
|
|
|
/// \brief Control DFS behavior during preorder visitation.
|
|
enum DFSPreorderControl {
|
|
Continue, /// Continue visiting all nodes.
|
|
Abort, /// Stop the visitation immediately.
|
|
SkipImports, /// Do not visit imports of the current node.
|
|
};
|
|
|
|
/// \brief Visit each of the modules with a depth-first traversal.
|
|
///
|
|
/// This routine visits each of the modules known to the module
|
|
/// manager using a depth-first search, starting with the first
|
|
/// loaded module. The traversal invokes one callback before
|
|
/// traversing the imports (preorder traversal) and one after
|
|
/// traversing the imports (postorder traversal).
|
|
///
|
|
/// \param PreorderVisitor A visitor function that will be invoked with each
|
|
/// module before visiting its imports. The visitor can control how to
|
|
/// continue the visitation through its return value.
|
|
///
|
|
/// \param PostorderVisitor A visitor function taht will be invoked with each
|
|
/// module after visiting its imports. The visitor may return true at any time
|
|
/// to abort the depth-first visitation.
|
|
///
|
|
/// \param UserData User data ssociated with the visitor object,
|
|
/// which will be passed along to the user.
|
|
void visitDepthFirst(DFSPreorderControl (*PreorderVisitor)(ModuleFile &M,
|
|
void *UserData),
|
|
bool (*PostorderVisitor)(ModuleFile &M, void *UserData),
|
|
void *UserData);
|
|
|
|
/// \brief Attempt to resolve the given module file name to a file entry.
|
|
///
|
|
/// \param FileName The name of the module file.
|
|
///
|
|
/// \param ExpectedSize The size that the module file is expected to have.
|
|
/// If the actual size differs, the resolver should return \c true.
|
|
///
|
|
/// \param ExpectedModTime The modification time that the module file is
|
|
/// expected to have. If the actual modification time differs, the resolver
|
|
/// should return \c true.
|
|
///
|
|
/// \param File Will be set to the file if there is one, or null
|
|
/// otherwise.
|
|
///
|
|
/// \returns True if a file exists but does not meet the size/
|
|
/// modification time criteria, false if the file is either available and
|
|
/// suitable, or is missing.
|
|
bool lookupModuleFile(StringRef FileName,
|
|
off_t ExpectedSize,
|
|
time_t ExpectedModTime,
|
|
const FileEntry *&File);
|
|
|
|
/// \brief View the graphviz representation of the module graph.
|
|
void viewGraph();
|
|
};
|
|
|
|
} } // end namespace clang::serialization
|
|
|
|
#endif
|