Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 1 | //===--- CompilationGraph.h - The LLVM Compiler Driver ----------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open |
| 6 | // Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Compilation graph - definition. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H |
| 15 | #define LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H |
| 16 | |
| 17 | #include "AutoGenerated.h" |
| 18 | #include "Tool.h" |
| 19 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/GraphTraits.h" |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/IntrusiveRefCntPtr.h" |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/iterator" |
| 23 | #include "llvm/ADT/SmallVector.h" |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/StringMap.h" |
| 25 | #include "llvm/System/Path.h" |
| 26 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 27 | #include <string> |
| 28 | |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 29 | namespace llvmcc { |
| 30 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 31 | // An edge in the graph. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 32 | class Edge : public llvm::RefCountedBaseVPTR<Edge> { |
| 33 | public: |
| 34 | Edge(const std::string& T) : ToolName_(T) {} |
| 35 | virtual ~Edge() {}; |
| 36 | |
| 37 | const std::string& ToolName() const { return ToolName_; } |
| 38 | virtual bool isEnabled() const = 0; |
| 39 | virtual bool isDefault() const = 0; |
| 40 | private: |
| 41 | std::string ToolName_; |
| 42 | }; |
| 43 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 44 | // Edges with no properties are instances of this class. |
| 45 | class SimpleEdge : public Edge { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 46 | public: |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 47 | SimpleEdge(const std::string& T) : Edge(T) {} |
Mikhail Glushenkov | 6591c89 | 2008-05-06 17:23:50 +0000 | [diff] [blame] | 48 | bool isEnabled() const { return false;} |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 49 | bool isDefault() const { return true;} |
| 50 | }; |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 51 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 52 | // A node in the graph. |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 53 | struct Node { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 54 | typedef llvm::SmallVector<llvm::IntrusiveRefCntPtr<Edge>, 3> container_type; |
| 55 | typedef container_type::iterator iterator; |
| 56 | typedef container_type::const_iterator const_iterator; |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 57 | |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 58 | Node() : OwningGraph(0), InEdges(0) {} |
| 59 | Node(CompilationGraph* G) : OwningGraph(G), InEdges(0) {} |
| 60 | Node(CompilationGraph* G, Tool* T) : |
| 61 | OwningGraph(G), ToolPtr(T), InEdges(0) {} |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 62 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 63 | bool HasChildren() const { return !OutEdges.empty(); } |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 64 | const std::string Name() const |
| 65 | { return ToolPtr ? ToolPtr->Name() : "root"; } |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 66 | |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 67 | // Iteration. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 68 | iterator EdgesBegin() { return OutEdges.begin(); } |
| 69 | const_iterator EdgesBegin() const { return OutEdges.begin(); } |
| 70 | iterator EdgesEnd() { return OutEdges.end(); } |
| 71 | const_iterator EdgesEnd() const { return OutEdges.end(); } |
| 72 | |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 73 | // Add an outward edge. Takes ownership of the Edge object. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 74 | void AddEdge(Edge* E) |
| 75 | { OutEdges.push_back(llvm::IntrusiveRefCntPtr<Edge>(E)); } |
| 76 | |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 77 | // Inward edge counter. Used by Build() to implement topological |
| 78 | // sort. |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 79 | // TOTHINK: Move the counter back into Tool classes? Makes us more |
| 80 | // const-correct. |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 81 | void IncrInEdges() { ++InEdges; } |
| 82 | void DecrInEdges() { --InEdges; } |
| 83 | bool HasNoInEdges() const { return InEdges == 0; } |
| 84 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 85 | // Needed to implement NodeChildIterator/GraphTraits |
| 86 | CompilationGraph* OwningGraph; |
| 87 | // The corresponding Tool. |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 88 | // WARNING: For the root node, ToolPtr is NULL. |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 89 | llvm::IntrusiveRefCntPtr<Tool> ToolPtr; |
| 90 | // Links to children. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 91 | container_type OutEdges; |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 92 | // Number of parents. Used for topological sorting. |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 93 | unsigned InEdges; |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 94 | }; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 95 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 96 | class NodesIterator; |
| 97 | |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 98 | // The compilation graph itself. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 99 | class CompilationGraph { |
Mikhail Glushenkov | 4f6e3a4 | 2008-05-06 17:28:03 +0000 | [diff] [blame] | 100 | // Main data structure. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 101 | typedef llvm::StringMap<Node> nodes_map_type; |
Mikhail Glushenkov | 4f6e3a4 | 2008-05-06 17:28:03 +0000 | [diff] [blame] | 102 | // These are used to map from language names-> tools. (We can have |
| 103 | // several tools associated with each language name.) |
| 104 | typedef |
| 105 | llvm::SmallVector<llvm::IntrusiveRefCntPtr<Edge>, 3> tools_vector_type; |
| 106 | typedef llvm::StringMap<tools_vector_type> tools_map_type; |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 107 | |
| 108 | // Map from file extensions to language names. |
| 109 | LanguageMap ExtsToLangs; |
| 110 | // Map from language names to lists of tool names. |
| 111 | tools_map_type ToolsMap; |
| 112 | // Map from tool names to Tool objects. |
| 113 | nodes_map_type NodesMap; |
| 114 | |
| 115 | public: |
| 116 | |
| 117 | CompilationGraph(); |
| 118 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 119 | // insertVertex - insert a new node into the graph. Takes |
| 120 | // ownership of the object. |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 121 | void insertNode(Tool* T); |
| 122 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 123 | // insertEdge - Insert a new edge into the graph. Takes ownership |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 124 | // of the Edge object. |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 125 | void insertEdge(const std::string& A, Edge* E); |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 126 | |
Mikhail Glushenkov | d752c3f | 2008-05-06 16:36:50 +0000 | [diff] [blame] | 127 | // Build - Build target(s) from the input file set. Command-line |
| 128 | // options are passed implicitly as global variables. |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 129 | int Build(llvm::sys::Path const& tempDir); |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 130 | |
| 131 | // Return a reference to the node correponding to the given tool |
| 132 | // name. Throws std::runtime_error. |
| 133 | Node& getNode(const std::string& ToolName); |
| 134 | const Node& getNode(const std::string& ToolName) const; |
| 135 | |
| 136 | // viewGraph - This function is meant for use from the debugger. |
| 137 | // You can just say 'call G->viewGraph()' and a ghostview window |
| 138 | // should pop up from the program, displaying the compilation |
| 139 | // graph. This depends on there being a 'dot' and 'gv' program |
| 140 | // in your path. |
| 141 | void viewGraph(); |
| 142 | |
| 143 | // Write a CompilationGraph.dot file. |
| 144 | void writeGraph(); |
| 145 | |
| 146 | // GraphTraits support |
| 147 | friend NodesIterator GraphBegin(CompilationGraph*); |
| 148 | friend NodesIterator GraphEnd(CompilationGraph*); |
| 149 | friend void PopulateCompilationGraph(CompilationGraph&); |
| 150 | |
| 151 | private: |
| 152 | // Helper functions. |
| 153 | |
| 154 | // Find out which language corresponds to the suffix of this file. |
| 155 | const std::string& getLanguage(const llvm::sys::Path& File) const; |
| 156 | |
| 157 | // Return a reference to the list of tool names corresponding to |
| 158 | // the given language name. Throws std::runtime_error. |
| 159 | const tools_vector_type& getToolsVector(const std::string& LangName) const; |
Mikhail Glushenkov | 2ba4c5a | 2008-05-06 17:25:51 +0000 | [diff] [blame] | 160 | |
| 161 | // Pass the input file through the toolchain. |
Mikhail Glushenkov | bbbc9d4 | 2008-05-06 17:27:37 +0000 | [diff] [blame] | 162 | const JoinTool* PassThroughGraph (llvm::sys::Path& In, |
Mikhail Glushenkov | 4f6e3a4 | 2008-05-06 17:28:03 +0000 | [diff] [blame] | 163 | const Node* StartNode, |
Mikhail Glushenkov | c74bfc9 | 2008-05-06 17:26:53 +0000 | [diff] [blame] | 164 | const llvm::sys::Path& TempDir) const; |
Mikhail Glushenkov | 2ba4c5a | 2008-05-06 17:25:51 +0000 | [diff] [blame] | 165 | |
Mikhail Glushenkov | 0260658 | 2008-05-06 18:07:14 +0000 | [diff] [blame] | 166 | // Find head of the toolchain corresponding to the given file. |
| 167 | const Node* FindToolChain(const llvm::sys::Path& In) const; |
| 168 | |
| 169 | // Sort the nodes in topological order. |
| 170 | void TopologicalSort(std::vector<const Node*>& Out); |
| 171 | // Call TopologicalSort and filter the resulting list to include |
| 172 | // only Join nodes. |
| 173 | void TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out); |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 174 | }; |
| 175 | |
| 176 | /// GraphTraits support code. |
| 177 | |
| 178 | // Auxiliary class needed to implement GraphTraits support. Can be |
| 179 | // generalised to something like value_iterator for map-like |
| 180 | // containers. |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 181 | class NodesIterator : public llvm::StringMap<Node>::iterator { |
| 182 | typedef llvm::StringMap<Node>::iterator super; |
| 183 | typedef NodesIterator ThisType; |
| 184 | typedef Node* pointer; |
| 185 | typedef Node& reference; |
| 186 | |
| 187 | public: |
| 188 | NodesIterator(super I) : super(I) {} |
| 189 | |
| 190 | inline reference operator*() const { |
| 191 | return super::operator->()->second; |
| 192 | } |
| 193 | inline pointer operator->() const { |
| 194 | return &super::operator->()->second; |
| 195 | } |
| 196 | }; |
| 197 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 198 | inline NodesIterator GraphBegin(CompilationGraph* G) { |
| 199 | return NodesIterator(G->NodesMap.begin()); |
| 200 | } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 201 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 202 | inline NodesIterator GraphEnd(CompilationGraph* G) { |
| 203 | return NodesIterator(G->NodesMap.end()); |
| 204 | } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 205 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 206 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 207 | // Another auxiliary class needed by GraphTraits. |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 208 | class NodeChildIterator : public bidirectional_iterator<Node, ptrdiff_t> { |
| 209 | typedef NodeChildIterator ThisType; |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 210 | typedef Node::container_type::iterator iterator; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 211 | |
| 212 | CompilationGraph* OwningGraph; |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 213 | iterator EdgeIter; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 214 | public: |
| 215 | typedef Node* pointer; |
| 216 | typedef Node& reference; |
| 217 | |
| 218 | NodeChildIterator(Node* N, iterator I) : |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 219 | OwningGraph(N->OwningGraph), EdgeIter(I) {} |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 220 | |
| 221 | const ThisType& operator=(const ThisType& I) { |
| 222 | assert(OwningGraph == I.OwningGraph); |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 223 | EdgeIter = I.EdgeIter; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 224 | return *this; |
| 225 | } |
| 226 | |
| 227 | inline bool operator==(const ThisType& I) const |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 228 | { return EdgeIter == I.EdgeIter; } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 229 | inline bool operator!=(const ThisType& I) const |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 230 | { return EdgeIter != I.EdgeIter; } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 231 | |
| 232 | inline pointer operator*() const { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 233 | return &OwningGraph->getNode((*EdgeIter)->ToolName()); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 234 | } |
| 235 | inline pointer operator->() const { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 236 | return &OwningGraph->getNode((*EdgeIter)->ToolName()); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 239 | ThisType& operator++() { ++EdgeIter; return *this; } // Preincrement |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 240 | ThisType operator++(int) { // Postincrement |
| 241 | ThisType tmp = *this; |
| 242 | ++*this; |
| 243 | return tmp; |
| 244 | } |
| 245 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 246 | inline ThisType& operator--() { --EdgeIter; return *this; } // Predecrement |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 247 | inline ThisType operator--(int) { // Postdecrement |
| 248 | ThisType tmp = *this; |
| 249 | --*this; |
| 250 | return tmp; |
| 251 | } |
| 252 | |
| 253 | }; |
| 254 | } |
| 255 | |
| 256 | namespace llvm { |
| 257 | template <> |
| 258 | struct GraphTraits<llvmcc::CompilationGraph*> { |
| 259 | typedef llvmcc::CompilationGraph GraphType; |
| 260 | typedef llvmcc::Node NodeType; |
| 261 | typedef llvmcc::NodeChildIterator ChildIteratorType; |
| 262 | |
| 263 | static NodeType* getEntryNode(GraphType* G) { |
| 264 | return &G->getNode("root"); |
| 265 | } |
| 266 | |
| 267 | static ChildIteratorType child_begin(NodeType* N) { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 268 | return ChildIteratorType(N, N->OutEdges.begin()); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 269 | } |
| 270 | static ChildIteratorType child_end(NodeType* N) { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 271 | return ChildIteratorType(N, N->OutEdges.end()); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 274 | typedef llvmcc::NodesIterator nodes_iterator; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 275 | static nodes_iterator nodes_begin(GraphType *G) { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 276 | return GraphBegin(G); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 277 | } |
| 278 | static nodes_iterator nodes_end(GraphType *G) { |
Mikhail Glushenkov | 0a17493 | 2008-05-06 16:36:06 +0000 | [diff] [blame] | 279 | return GraphEnd(G); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame] | 280 | } |
| 281 | }; |
| 282 | |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | #endif // LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H |