blob: 9cdcac384574ef3e2955c8b4c9e46d8480d605fc [file] [log] [blame]
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +00001//===--- CompilationGraph.cpp - The LLVM Compiler Driver --------*- C++ -*-===//
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002//
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//
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000010// Compilation graph - implementation.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
Mikhail Glushenkova6730372008-05-12 16:31:42 +000014#include "Error.h"
Mikhail Glushenkovb90cd832008-05-06 16:34:12 +000015#include "CompilationGraph.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000016
Mikhail Glushenkov87416b42008-05-06 18:10:53 +000017#include "llvm/ADT/STLExtras.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000018#include "llvm/Support/CommandLine.h"
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000019#include "llvm/Support/DOTGraphTraits.h"
20#include "llvm/Support/GraphWriter.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000021
Mikhail Glushenkov02606582008-05-06 18:07:14 +000022#include <algorithm>
Mikhail Glushenkov02606582008-05-06 18:07:14 +000023#include <iterator>
Mikhail Glushenkov87416b42008-05-06 18:10:53 +000024#include <limits>
Mikhail Glushenkov02606582008-05-06 18:07:14 +000025#include <queue>
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000026#include <stdexcept>
27
28using namespace llvm;
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +000029using namespace llvmc;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000030
31extern cl::list<std::string> InputFilenames;
32extern cl::opt<std::string> OutputFilename;
Mikhail Glushenkov87416b42008-05-06 18:10:53 +000033extern cl::list<std::string> Languages;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000034
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +000035namespace llvmc {
36 /// ExtsToLangs - Map from file extensions to language names.
37 LanguageMap GlobalLanguageMap;
38
39 /// GetLanguage - Find the language name corresponding to the given file.
40 const std::string& GetLanguage(const sys::Path& File) {
41 LanguageMap::const_iterator Lang = GlobalLanguageMap.find(File.getSuffix());
42 if (Lang == GlobalLanguageMap.end())
43 throw std::runtime_error("Unknown suffix: " + File.getSuffix());
44 return Lang->second;
45 }
46}
47
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +000048namespace {
49
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000050 /// ChooseEdge - Return the edge with the maximum weight.
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +000051 template <class C>
52 const Edge* ChooseEdge(const C& EdgesContainer,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000053 const InputLanguagesSet& InLangs,
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +000054 const std::string& NodeName = "root") {
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +000055 const Edge* MaxEdge = 0;
56 unsigned MaxWeight = 0;
57 bool SingleMax = true;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +000058
59 for (typename C::const_iterator B = EdgesContainer.begin(),
60 E = EdgesContainer.end(); B != E; ++B) {
61 const Edge* E = B->getPtr();
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +000062 unsigned EW = E->Weight(InLangs);
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +000063 if (EW > MaxWeight) {
64 MaxEdge = E;
65 MaxWeight = EW;
66 SingleMax = true;
Mikhail Glushenkove0ff9ae2008-05-06 18:18:58 +000067 } else if (EW == MaxWeight) {
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +000068 SingleMax = false;
69 }
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +000070 }
71
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +000072 if (!SingleMax)
73 throw std::runtime_error("Node " + NodeName +
74 ": multiple maximal outward edges found!"
Mikhail Glushenkov87416b42008-05-06 18:10:53 +000075 " Most probably a specification error.");
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +000076 if (!MaxEdge)
77 throw std::runtime_error("Node " + NodeName +
78 ": no maximal outward edge found!"
79 " Most probably a specification error.");
80 return MaxEdge;
Mikhail Glushenkov6591c892008-05-06 17:23:50 +000081 }
82
Mikhail Glushenkov6591c892008-05-06 17:23:50 +000083}
84
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000085CompilationGraph::CompilationGraph() {
86 NodesMap["root"] = Node(this);
87}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000088
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000089Node& CompilationGraph::getNode(const std::string& ToolName) {
90 nodes_map_type::iterator I = NodesMap.find(ToolName);
91 if (I == NodesMap.end())
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +000092 throw std::runtime_error("Node " + ToolName + " is not in the graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +000093 return I->second;
94}
95
96const Node& CompilationGraph::getNode(const std::string& ToolName) const {
97 nodes_map_type::const_iterator I = NodesMap.find(ToolName);
98 if (I == NodesMap.end())
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +000099 throw std::runtime_error("Node " + ToolName + " is not in the graph!");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000100 return I->second;
101}
102
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000103// Find the tools list corresponding to the given language name.
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000104const CompilationGraph::tools_vector_type&
105CompilationGraph::getToolsVector(const std::string& LangName) const
106{
107 tools_map_type::const_iterator I = ToolsMap.find(LangName);
108 if (I == ToolsMap.end())
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000109 throw std::runtime_error("No tool corresponding to the language "
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000110 + LangName + " found");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000111 return I->second;
112}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000113
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000114void CompilationGraph::insertNode(Tool* V) {
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +0000115 if (NodesMap.count(V->Name()) == 0) {
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000116 Node N;
117 N.OwningGraph = this;
118 N.ToolPtr = V;
119 NodesMap[V->Name()] = N;
120 }
121}
122
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000123void CompilationGraph::insertEdge(const std::string& A, Edge* Edg) {
124 Node& B = getNode(Edg->ToolName());
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000125 if (A == "root") {
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +0000126 const char** InLangs = B.ToolPtr->InputLanguages();
127 for (;*InLangs; ++InLangs)
128 ToolsMap[*InLangs].push_back(IntrusiveRefCntPtr<Edge>(Edg));
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000129 NodesMap["root"].AddEdge(Edg);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000130 }
131 else {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000132 Node& N = getNode(A);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000133 N.AddEdge(Edg);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000134 }
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +0000135 // Increase the inward edge counter.
136 B.IncrInEdges();
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000137}
138
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000139namespace {
140 sys::Path MakeTempFile(const sys::Path& TempDir, const std::string& BaseName,
141 const std::string& Suffix) {
Mikhail Glushenkov73296102008-05-30 06:29:17 +0000142 sys::Path Out;
143
144 // Make sure we don't end up with path names like '/file.o' if the
145 // TempDir is empty.
146 if (TempDir.empty()) {
147 Out.set(BaseName);
148 }
149 else {
150 Out = TempDir;
151 Out.appendComponent(BaseName);
152 }
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000153 Out.appendSuffix(Suffix);
154 Out.makeUnique(true, NULL);
155 return Out;
156 }
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000157}
158
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000159// Pass input file through the chain until we bump into a Join node or
160// a node that says that it is the last.
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000161void CompilationGraph::PassThroughGraph (const sys::Path& InFile,
162 const Node* StartNode,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000163 const InputLanguagesSet& InLangs,
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000164 const sys::Path& TempDir) const {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000165 bool Last = false;
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000166 sys::Path In = InFile;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000167 const Node* CurNode = StartNode;
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000168
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000169 while(!Last) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000170 sys::Path Out;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000171 Tool* CurTool = CurNode->ToolPtr.getPtr();
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000172
173 if (CurTool->IsJoin()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000174 JoinTool& JT = dynamic_cast<JoinTool&>(*CurTool);
175 JT.AddToJoinList(In);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000176 break;
177 }
178
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000179 // Since toolchains do not have to end with a Join node, we should
180 // check if this Node is the last.
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000181 if (!CurNode->HasChildren() || CurTool->IsLast()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000182 if (!OutputFilename.empty()) {
183 Out.set(OutputFilename);
184 }
185 else {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000186 Out.set(In.getBasename());
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000187 Out.appendSuffix(CurTool->OutputSuffix());
188 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000189 Last = true;
190 }
191 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000192 Out = MakeTempFile(TempDir, In.getBasename(), CurTool->OutputSuffix());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000193 }
194
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000195 if (int ret = CurTool->GenerateAction(In, Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000196 throw error_code(ret);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000197
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000198 if (Last)
199 return;
200
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000201 CurNode = &getNode(ChooseEdge(CurNode->OutEdges,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000202 InLangs,
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000203 CurNode->Name())->ToolName());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000204 In = Out; Out.clear();
205 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000206}
207
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000208// Find the head of the toolchain corresponding to the given file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000209// Also, insert an input language into InLangs.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000210const Node* CompilationGraph::
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000211FindToolChain(const sys::Path& In, const std::string* forceLanguage,
212 InputLanguagesSet& InLangs) const {
213
214 // Determine the input language.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000215 const std::string& InLanguage =
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +0000216 forceLanguage ? *forceLanguage : GetLanguage(In);
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000217
218 // Add the current input language to the input language set.
219 InLangs.insert(InLanguage);
220
221 // Find the toolchain for the input language.
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000222 const tools_vector_type& TV = getToolsVector(InLanguage);
223 if (TV.empty())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000224 throw std::runtime_error("No toolchain corresponding to language "
225 + InLanguage + " found");
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000226 return &getNode(ChooseEdge(TV, InLangs)->ToolName());
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000227}
228
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000229// Helper function used by Build().
230// Traverses initial portions of the toolchains (up to the first Join node).
231// This function is also responsible for handling the -x option.
232void CompilationGraph::BuildInitial (InputLanguagesSet& InLangs,
233 const sys::Path& TempDir) {
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000234 // This is related to -x option handling.
235 cl::list<std::string>::const_iterator xIter = Languages.begin(),
236 xBegin = xIter, xEnd = Languages.end();
237 bool xEmpty = true;
238 const std::string* xLanguage = 0;
239 unsigned xPos = 0, xPosNext = 0, filePos = 0;
240
241 if (xIter != xEnd) {
242 xEmpty = false;
243 xPos = Languages.getPosition(xIter - xBegin);
244 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
245 xPosNext = (xNext == xEnd) ? std::numeric_limits<unsigned>::max()
246 : Languages.getPosition(xNext - xBegin);
247 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
248 }
249
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000250 // For each input file:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000251 for (cl::list<std::string>::const_iterator B = InputFilenames.begin(),
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000252 CB = B, E = InputFilenames.end(); B != E; ++B) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000253 sys::Path In = sys::Path(*B);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000254
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000255 // Code for handling the -x option.
256 // Output: std::string* xLanguage (can be NULL).
257 if (!xEmpty) {
258 filePos = InputFilenames.getPosition(B - CB);
259
260 if (xPos < filePos) {
261 if (filePos < xPosNext) {
262 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
263 }
264 else { // filePos >= xPosNext
265 // Skip xIters while filePos > xPosNext
266 while (filePos > xPosNext) {
267 ++xIter;
268 xPos = xPosNext;
269
270 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
271 if (xNext == xEnd)
272 xPosNext = std::numeric_limits<unsigned>::max();
273 else
274 xPosNext = Languages.getPosition(xNext - xBegin);
275 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
276 }
277 }
278 }
279 }
280
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000281 // Find the toolchain corresponding to this file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000282 const Node* N = FindToolChain(In, xLanguage, InLangs);
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000283 // Pass file through the chain starting at head.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000284 PassThroughGraph(In, N, InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000285 }
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000286}
287
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000288// Sort the nodes in topological order.
289void CompilationGraph::TopologicalSort(std::vector<const Node*>& Out) {
290 std::queue<const Node*> Q;
291 Q.push(&getNode("root"));
292
293 while (!Q.empty()) {
294 const Node* A = Q.front();
295 Q.pop();
296 Out.push_back(A);
297 for (Node::const_iterator EB = A->EdgesBegin(), EE = A->EdgesEnd();
298 EB != EE; ++EB) {
299 Node* B = &getNode((*EB)->ToolName());
300 B->DecrInEdges();
301 if (B->HasNoInEdges())
302 Q.push(B);
303 }
304 }
305}
306
307namespace {
308 bool NotJoinNode(const Node* N) {
309 return N->ToolPtr ? !N->ToolPtr->IsJoin() : true;
310 }
311}
312
313// Call TopologicalSort and filter the resulting list to include
314// only Join nodes.
315void CompilationGraph::
316TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out) {
317 std::vector<const Node*> TopSorted;
318 TopologicalSort(TopSorted);
319 std::remove_copy_if(TopSorted.begin(), TopSorted.end(),
320 std::back_inserter(Out), NotJoinNode);
321}
322
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000323int CompilationGraph::Build (const sys::Path& TempDir) {
324
325 InputLanguagesSet InLangs;
326
327 // Traverse initial parts of the toolchains and fill in InLangs.
328 BuildInitial(InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000329
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000330 std::vector<const Node*> JTV;
331 TopologicalSortFilterJoinNodes(JTV);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000332
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000333 // For all join nodes in topological order:
334 for (std::vector<const Node*>::iterator B = JTV.begin(), E = JTV.end();
335 B != E; ++B) {
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000336
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000337 sys::Path Out;
338 const Node* CurNode = *B;
339 JoinTool* JT = &dynamic_cast<JoinTool&>(*CurNode->ToolPtr.getPtr());
340 bool IsLast = false;
341
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000342 // Are there any files in the join list?
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000343 if (JT->JoinListEmpty())
344 continue;
345
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000346 // Is this the last tool in the toolchain?
347 // NOTE: we can process several toolchains in parallel.
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000348 if (!CurNode->HasChildren() || JT->IsLast()) {
349 if (OutputFilename.empty()) {
350 Out.set("a");
351 Out.appendSuffix(JT->OutputSuffix());
352 }
353 else
354 Out.set(OutputFilename);
355 IsLast = true;
356 }
357 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000358 Out = MakeTempFile(TempDir, "tmp", JT->OutputSuffix());
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000359 }
360
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000361 if (int ret = JT->GenerateAction(Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000362 throw error_code(ret);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000363
364 if (!IsLast) {
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000365 const Node* NextNode =
366 &getNode(ChooseEdge(CurNode->OutEdges, InLangs,
367 CurNode->Name())->ToolName());
368 PassThroughGraph(Out, NextNode, InLangs, TempDir);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000369 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000370 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000371
372 return 0;
373}
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000374
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000375// Code related to graph visualization.
376
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000377namespace llvm {
378 template <>
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000379 struct DOTGraphTraits<llvmc::CompilationGraph*>
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000380 : public DefaultDOTGraphTraits
381 {
382
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000383 template<typename GraphType>
384 static std::string getNodeLabel(const Node* N, const GraphType&)
385 {
386 if (N->ToolPtr)
387 if (N->ToolPtr->IsJoin())
388 return N->Name() + "\n (join" +
389 (N->HasChildren() ? ")"
390 : std::string(": ") + N->ToolPtr->OutputLanguage() + ')');
391 else
392 return N->Name();
393 else
394 return "root";
395 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000396
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000397 template<typename EdgeIter>
398 static std::string getEdgeSourceLabel(const Node* N, EdgeIter I) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000399 if (N->ToolPtr) {
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000400 return N->ToolPtr->OutputLanguage();
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000401 }
402 else {
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +0000403 const char** InLangs = I->ToolPtr->InputLanguages();
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000404 std::string ret;
405
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +0000406 for (; *InLangs; ++InLangs) {
407 if (*(InLangs + 1)) {
408 ret += *InLangs;
409 ret += ", ";
410 }
411 else {
412 ret += *InLangs;
413 }
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000414 }
415
416 return ret;
417 }
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000418 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000419 };
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000420
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000421}
422
423void CompilationGraph::writeGraph() {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000424 std::ofstream O("compilation-graph.dot");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000425
Mikhail Glushenkova4db8c02008-05-06 16:37:33 +0000426 if (O.good()) {
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000427 llvm::WriteGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000428 O.close();
429 }
430 else {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000431 throw std::runtime_error("Error opening file 'compilation-graph.dot'"
432 " for writing!");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000433 }
434}
435
436void CompilationGraph::viewGraph() {
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000437 llvm::ViewGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000438}