blob: 1158d8df1d8e9d6d771f6a162bfa5e6c64f9d8f1 [file] [log] [blame]
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +00001//===--- 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 Glushenkov0d08db02008-05-06 16:35:25 +000020#include "llvm/ADT/GraphTraits.h"
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000021#include "llvm/ADT/IntrusiveRefCntPtr.h"
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000022#include "llvm/ADT/iterator"
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000023//#include "llvm/ADT/SmallSet.h"
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000024#include "llvm/ADT/SmallVector.h"
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000025#include "llvm/ADT/StringMap.h"
26#include "llvm/System/Path.h"
27
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000028#include <set>
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000029#include <string>
30
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +000031namespace llvmc {
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000032
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000033 typedef std::set<std::string> InputLanguagesSet;
34
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000035 // An edge of the compilation graph.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000036 class Edge : public llvm::RefCountedBaseVPTR<Edge> {
37 public:
38 Edge(const std::string& T) : ToolName_(T) {}
39 virtual ~Edge() {};
40
41 const std::string& ToolName() const { return ToolName_; }
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000042 virtual unsigned Weight(const InputLanguagesSet& InLangs) const = 0;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000043 private:
44 std::string ToolName_;
45 };
46
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000047 // Edges that have no properties are instances of this class.
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +000048 class SimpleEdge : public Edge {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000049 public:
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +000050 SimpleEdge(const std::string& T) : Edge(T) {}
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000051 unsigned Weight(const InputLanguagesSet&) const { return 1; }
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000052 };
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000053
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000054 // A node of the compilation graph.
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000055 struct Node {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000056 // A Node holds a list of the outward edges.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000057 typedef llvm::SmallVector<llvm::IntrusiveRefCntPtr<Edge>, 3> container_type;
58 typedef container_type::iterator iterator;
59 typedef container_type::const_iterator const_iterator;
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000060
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +000061 Node() : OwningGraph(0), InEdges(0) {}
62 Node(CompilationGraph* G) : OwningGraph(G), InEdges(0) {}
63 Node(CompilationGraph* G, Tool* T) :
64 OwningGraph(G), ToolPtr(T), InEdges(0) {}
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000065
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +000066 bool HasChildren() const { return !OutEdges.empty(); }
Mikhail Glushenkov02606582008-05-06 18:07:14 +000067 const std::string Name() const
68 { return ToolPtr ? ToolPtr->Name() : "root"; }
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000069
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +000070 // Iteration.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000071 iterator EdgesBegin() { return OutEdges.begin(); }
72 const_iterator EdgesBegin() const { return OutEdges.begin(); }
73 iterator EdgesEnd() { return OutEdges.end(); }
74 const_iterator EdgesEnd() const { return OutEdges.end(); }
75
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +000076 // Add an outward edge. Takes ownership of the Edge object.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000077 void AddEdge(Edge* E)
78 { OutEdges.push_back(llvm::IntrusiveRefCntPtr<Edge>(E)); }
79
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000080 // Inward edge counter. Used to implement topological sort.
81 // TOTHINK: Move the mutable counter back into Tool classes? Makes
82 // us more const-correct.
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +000083 void IncrInEdges() { ++InEdges; }
84 void DecrInEdges() { --InEdges; }
85 bool HasNoInEdges() const { return InEdges == 0; }
86
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000087 // Needed to implement NodeChildIterator/GraphTraits
88 CompilationGraph* OwningGraph;
89 // The corresponding Tool.
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000090 // WARNING: ToolPtr can be NULL (for the root node).
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000091 llvm::IntrusiveRefCntPtr<Tool> ToolPtr;
92 // Links to children.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000093 container_type OutEdges;
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +000094 // Inward edge counter. Updated in
95 // CompilationGraph::insertEdge(). Used for topological sorting.
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +000096 unsigned InEdges;
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000097 };
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000098
Mikhail Glushenkov0a174932008-05-06 16:36:06 +000099 class NodesIterator;
100
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000101 // The compilation graph itself.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000102 class CompilationGraph {
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000103 // Main data structure.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000104 typedef llvm::StringMap<Node> nodes_map_type;
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000105 // These are used to map from language names to tools. (We can
106 // have several tools associated with each language name, hence
107 // the need for a vector of Edges.)
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000108 typedef
109 llvm::SmallVector<llvm::IntrusiveRefCntPtr<Edge>, 3> tools_vector_type;
110 typedef llvm::StringMap<tools_vector_type> tools_map_type;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000111
112 // Map from file extensions to language names.
113 LanguageMap ExtsToLangs;
114 // Map from language names to lists of tool names.
115 tools_map_type ToolsMap;
116 // Map from tool names to Tool objects.
117 nodes_map_type NodesMap;
118
119 public:
120
121 CompilationGraph();
122
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000123 // insertVertex - insert a new node into the graph. Takes
124 // ownership of the object.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000125 void insertNode(Tool* T);
126
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000127 // insertEdge - Insert a new edge into the graph. Takes ownership
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +0000128 // of the Edge object.
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000129 void insertEdge(const std::string& A, Edge* E);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000130
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000131 // Build - Build target(s) from the input file set. Command-line
132 // options are passed implicitly as global variables.
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000133 int Build(llvm::sys::Path const& tempDir);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000134
135 // Return a reference to the node correponding to the given tool
136 // name. Throws std::runtime_error.
137 Node& getNode(const std::string& ToolName);
138 const Node& getNode(const std::string& ToolName) const;
139
140 // viewGraph - This function is meant for use from the debugger.
141 // You can just say 'call G->viewGraph()' and a ghostview window
142 // should pop up from the program, displaying the compilation
143 // graph. This depends on there being a 'dot' and 'gv' program
144 // in your path.
145 void viewGraph();
146
147 // Write a CompilationGraph.dot file.
148 void writeGraph();
149
150 // GraphTraits support
151 friend NodesIterator GraphBegin(CompilationGraph*);
152 friend NodesIterator GraphEnd(CompilationGraph*);
153 friend void PopulateCompilationGraph(CompilationGraph&);
154
155 private:
156 // Helper functions.
157
158 // Find out which language corresponds to the suffix of this file.
159 const std::string& getLanguage(const llvm::sys::Path& File) const;
160
161 // Return a reference to the list of tool names corresponding to
162 // the given language name. Throws std::runtime_error.
163 const tools_vector_type& getToolsVector(const std::string& LangName) const;
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000164
165 // Pass the input file through the toolchain.
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000166 void PassThroughGraph (const llvm::sys::Path& In, const Node* StartNode,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000167 const InputLanguagesSet& InLangs,
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000168 const llvm::sys::Path& TempDir) const;
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000169
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000170 // Find head of the toolchain corresponding to the given file.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000171 const Node* FindToolChain(const llvm::sys::Path& In,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000172 const std::string* forceLanguage,
173 InputLanguagesSet& InLangs) const;
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000174
175 // Sort the nodes in topological order.
176 void TopologicalSort(std::vector<const Node*>& Out);
177 // Call TopologicalSort and filter the resulting list to include
178 // only Join nodes.
179 void TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000180 };
181
182 /// GraphTraits support code.
183
184 // Auxiliary class needed to implement GraphTraits support. Can be
185 // generalised to something like value_iterator for map-like
186 // containers.
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000187 class NodesIterator : public llvm::StringMap<Node>::iterator {
188 typedef llvm::StringMap<Node>::iterator super;
189 typedef NodesIterator ThisType;
190 typedef Node* pointer;
191 typedef Node& reference;
192
193 public:
194 NodesIterator(super I) : super(I) {}
195
196 inline reference operator*() const {
197 return super::operator->()->second;
198 }
199 inline pointer operator->() const {
200 return &super::operator->()->second;
201 }
202 };
203
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000204 inline NodesIterator GraphBegin(CompilationGraph* G) {
205 return NodesIterator(G->NodesMap.begin());
206 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000207
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000208 inline NodesIterator GraphEnd(CompilationGraph* G) {
209 return NodesIterator(G->NodesMap.end());
210 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000211
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000212
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000213 // Another auxiliary class needed by GraphTraits.
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000214 class NodeChildIterator : public bidirectional_iterator<Node, ptrdiff_t> {
215 typedef NodeChildIterator ThisType;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000216 typedef Node::container_type::iterator iterator;
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000217
218 CompilationGraph* OwningGraph;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000219 iterator EdgeIter;
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000220 public:
221 typedef Node* pointer;
222 typedef Node& reference;
223
224 NodeChildIterator(Node* N, iterator I) :
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000225 OwningGraph(N->OwningGraph), EdgeIter(I) {}
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000226
227 const ThisType& operator=(const ThisType& I) {
228 assert(OwningGraph == I.OwningGraph);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000229 EdgeIter = I.EdgeIter;
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000230 return *this;
231 }
232
233 inline bool operator==(const ThisType& I) const
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000234 { return EdgeIter == I.EdgeIter; }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000235 inline bool operator!=(const ThisType& I) const
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000236 { return EdgeIter != I.EdgeIter; }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000237
238 inline pointer operator*() const {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000239 return &OwningGraph->getNode((*EdgeIter)->ToolName());
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000240 }
241 inline pointer operator->() const {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000242 return &OwningGraph->getNode((*EdgeIter)->ToolName());
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000243 }
244
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000245 ThisType& operator++() { ++EdgeIter; return *this; } // Preincrement
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000246 ThisType operator++(int) { // Postincrement
247 ThisType tmp = *this;
248 ++*this;
249 return tmp;
250 }
251
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000252 inline ThisType& operator--() { --EdgeIter; return *this; } // Predecrement
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000253 inline ThisType operator--(int) { // Postdecrement
254 ThisType tmp = *this;
255 --*this;
256 return tmp;
257 }
258
259 };
260}
261
262namespace llvm {
263 template <>
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000264 struct GraphTraits<llvmc::CompilationGraph*> {
265 typedef llvmc::CompilationGraph GraphType;
266 typedef llvmc::Node NodeType;
267 typedef llvmc::NodeChildIterator ChildIteratorType;
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000268
269 static NodeType* getEntryNode(GraphType* G) {
270 return &G->getNode("root");
271 }
272
273 static ChildIteratorType child_begin(NodeType* N) {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000274 return ChildIteratorType(N, N->OutEdges.begin());
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000275 }
276 static ChildIteratorType child_end(NodeType* N) {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000277 return ChildIteratorType(N, N->OutEdges.end());
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000278 }
279
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000280 typedef llvmc::NodesIterator nodes_iterator;
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000281 static nodes_iterator nodes_begin(GraphType *G) {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000282 return GraphBegin(G);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000283 }
284 static nodes_iterator nodes_end(GraphType *G) {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000285 return GraphEnd(G);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000286 }
287 };
288
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +0000289}
290
291#endif // LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H