ModuleManager.h revision cfa88f893915ceb8ae4ce2f17c46c24a4d67502f
1//===--- ModuleManager.cpp - Module Manager ---------------------*- 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 defines the ModuleManager class, which manages a set of loaded
11//  modules for the ASTReader.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_SERIALIZATION_MODULE_MANAGER_H
16#define LLVM_CLANG_SERIALIZATION_MODULE_MANAGER_H
17
18#include "clang/Basic/FileManager.h"
19#include "clang/Serialization/Module.h"
20#include "llvm/ADT/DenseMap.h"
21
22namespace clang {
23
24namespace serialization {
25
26/// \brief Manages the set of modules loaded by an AST reader.
27class ModuleManager {
28  /// \brief The chain of AST files. The first entry is the one named by the
29  /// user, the last one is the one that doesn't depend on anything further.
30  SmallVector<ModuleFile *, 2> Chain;
31
32  /// \brief All loaded modules, indexed by name.
33  llvm::DenseMap<const FileEntry *, ModuleFile *> Modules;
34
35  /// \brief FileManager that handles translating between filenames and
36  /// FileEntry *.
37  FileManager &FileMgr;
38
39  /// \brief A lookup of in-memory (virtual file) buffers
40  llvm::DenseMap<const FileEntry *, llvm::MemoryBuffer *> InMemoryBuffers;
41
42public:
43  typedef SmallVector<ModuleFile*, 2>::iterator ModuleIterator;
44  typedef SmallVector<ModuleFile*, 2>::const_iterator ModuleConstIterator;
45  typedef SmallVector<ModuleFile*, 2>::reverse_iterator ModuleReverseIterator;
46  typedef std::pair<uint32_t, StringRef> ModuleOffset;
47
48  explicit ModuleManager(FileManager &FileMgr);
49  ~ModuleManager();
50
51  /// \brief Forward iterator to traverse all loaded modules.  This is reverse
52  /// source-order.
53  ModuleIterator begin() { return Chain.begin(); }
54  /// \brief Forward iterator end-point to traverse all loaded modules
55  ModuleIterator end() { return Chain.end(); }
56
57  /// \brief Const forward iterator to traverse all loaded modules.  This is
58  /// in reverse source-order.
59  ModuleConstIterator begin() const { return Chain.begin(); }
60  /// \brief Const forward iterator end-point to traverse all loaded modules
61  ModuleConstIterator end() const { return Chain.end(); }
62
63  /// \brief Reverse iterator to traverse all loaded modules.  This is in
64  /// source order.
65  ModuleReverseIterator rbegin() { return Chain.rbegin(); }
66  /// \brief Reverse iterator end-point to traverse all loaded modules.
67  ModuleReverseIterator rend() { return Chain.rend(); }
68
69  /// \brief Returns the primary module associated with the manager, that is,
70  /// the first module loaded
71  ModuleFile &getPrimaryModule() { return *Chain[0]; }
72
73  /// \brief Returns the primary module associated with the manager, that is,
74  /// the first module loaded.
75  ModuleFile &getPrimaryModule() const { return *Chain[0]; }
76
77  /// \brief Returns the module associated with the given index
78  ModuleFile &operator[](unsigned Index) const { return *Chain[Index]; }
79
80  /// \brief Returns the module associated with the given name
81  ModuleFile *lookup(StringRef Name);
82
83  /// \brief Returns the in-memory (virtual file) buffer with the given name
84  llvm::MemoryBuffer *lookupBuffer(StringRef Name);
85
86  /// \brief Number of modules loaded
87  unsigned size() const { return Chain.size(); }
88  /// \brief Attempts to create a new module and add it to the list of known
89  /// modules.
90  ///
91  /// \param FileName The file name of the module to be loaded.
92  ///
93  /// \param Type The kind of module being loaded.
94  ///
95  /// \param ImportLoc The location at which the module is imported.
96  ///
97  /// \param ImportedBy The module that is importing this module, or NULL if
98  /// this module is imported directly by the user.
99  ///
100  /// \param Generation The generation in which this module was loaded.
101  ///
102  /// \param ErrorStr Will be set to a non-empty string if any errors occurred
103  /// while trying to load the module.
104  ///
105  /// \return A pointer to the module that corresponds to this file name,
106  /// and a boolean indicating whether the module was newly added.
107  std::pair<ModuleFile *, bool>
108  addModule(StringRef FileName, ModuleKind Type, SourceLocation ImportLoc,
109            ModuleFile *ImportedBy, unsigned Generation,
110            std::string &ErrorStr);
111
112  /// \brief Remove the given set of modules.
113  void removeModules(ModuleIterator first, ModuleIterator last);
114
115  /// \brief Add an in-memory buffer the list of known buffers
116  void addInMemoryBuffer(StringRef FileName, llvm::MemoryBuffer *Buffer);
117
118  /// \brief Visit each of the modules.
119  ///
120  /// This routine visits each of the modules, starting with the
121  /// "root" modules that no other loaded modules depend on, and
122  /// proceeding to the leaf modules, visiting each module only once
123  /// during the traversal.
124  ///
125  /// This traversal is intended to support various "lookup"
126  /// operations that can find data in any of the loaded modules.
127  ///
128  /// \param Visitor A visitor function that will be invoked with each
129  /// module and the given user data pointer. The return value must be
130  /// convertible to bool; when false, the visitation continues to
131  /// modules that the current module depends on. When true, the
132  /// visitation skips any modules that the current module depends on.
133  ///
134  /// \param UserData User data associated with the visitor object, which
135  /// will be passed along to the visitor.
136  void visit(bool (*Visitor)(ModuleFile &M, void *UserData), void *UserData);
137
138  /// \brief Visit each of the modules with a depth-first traversal.
139  ///
140  /// This routine visits each of the modules known to the module
141  /// manager using a depth-first search, starting with the first
142  /// loaded module. The traversal invokes the callback both before
143  /// traversing the children (preorder traversal) and after
144  /// traversing the children (postorder traversal).
145  ///
146  /// \param Visitor A visitor function that will be invoked with each
147  /// module and given a \c Preorder flag that indicates whether we're
148  /// visiting the module before or after visiting its children.  The
149  /// visitor may return true at any time to abort the depth-first
150  /// visitation.
151  ///
152  /// \param UserData User data ssociated with the visitor object,
153  /// which will be passed along to the user.
154  void visitDepthFirst(bool (*Visitor)(ModuleFile &M, bool Preorder,
155                                       void *UserData),
156                       void *UserData);
157
158  /// \brief View the graphviz representation of the module graph.
159  void viewGraph();
160};
161
162} } // end namespace clang::serialization
163
164#endif
165