blob: acf391a29060f79ebf3ab9fbb59aa49a364e8130 [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);
Mikhail Glushenkov74a0c282008-05-30 19:56:27 +0000154 // NOTE: makeUnique always *creates* a unique temporary file,
155 // which is good, since there will be no races. However, some
156 // tools do not like it when the output file already exists, so
157 // they have to be placated with -f or something like that.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000158 Out.makeUnique(true, NULL);
159 return Out;
160 }
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000161}
162
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000163// Pass input file through the chain until we bump into a Join node or
164// a node that says that it is the last.
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000165void CompilationGraph::PassThroughGraph (const sys::Path& InFile,
166 const Node* StartNode,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000167 const InputLanguagesSet& InLangs,
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000168 const sys::Path& TempDir) const {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000169 bool Last = false;
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000170 sys::Path In = InFile;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000171 const Node* CurNode = StartNode;
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000172
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000173 while(!Last) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000174 sys::Path Out;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000175 Tool* CurTool = CurNode->ToolPtr.getPtr();
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000176
177 if (CurTool->IsJoin()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000178 JoinTool& JT = dynamic_cast<JoinTool&>(*CurTool);
179 JT.AddToJoinList(In);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000180 break;
181 }
182
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000183 // Since toolchains do not have to end with a Join node, we should
184 // check if this Node is the last.
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000185 if (!CurNode->HasChildren() || CurTool->IsLast()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000186 if (!OutputFilename.empty()) {
187 Out.set(OutputFilename);
188 }
189 else {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000190 Out.set(In.getBasename());
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000191 Out.appendSuffix(CurTool->OutputSuffix());
192 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000193 Last = true;
194 }
195 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000196 Out = MakeTempFile(TempDir, In.getBasename(), CurTool->OutputSuffix());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000197 }
198
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000199 if (int ret = CurTool->GenerateAction(In, Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000200 throw error_code(ret);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000201
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000202 if (Last)
203 return;
204
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000205 CurNode = &getNode(ChooseEdge(CurNode->OutEdges,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000206 InLangs,
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000207 CurNode->Name())->ToolName());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000208 In = Out; Out.clear();
209 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000210}
211
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000212// Find the head of the toolchain corresponding to the given file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000213// Also, insert an input language into InLangs.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000214const Node* CompilationGraph::
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000215FindToolChain(const sys::Path& In, const std::string* forceLanguage,
216 InputLanguagesSet& InLangs) const {
217
218 // Determine the input language.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000219 const std::string& InLanguage =
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +0000220 forceLanguage ? *forceLanguage : GetLanguage(In);
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000221
222 // Add the current input language to the input language set.
223 InLangs.insert(InLanguage);
224
225 // Find the toolchain for the input language.
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000226 const tools_vector_type& TV = getToolsVector(InLanguage);
227 if (TV.empty())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000228 throw std::runtime_error("No toolchain corresponding to language "
229 + InLanguage + " found");
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000230 return &getNode(ChooseEdge(TV, InLangs)->ToolName());
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000231}
232
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000233// Helper function used by Build().
234// Traverses initial portions of the toolchains (up to the first Join node).
235// This function is also responsible for handling the -x option.
236void CompilationGraph::BuildInitial (InputLanguagesSet& InLangs,
237 const sys::Path& TempDir) {
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000238 // This is related to -x option handling.
239 cl::list<std::string>::const_iterator xIter = Languages.begin(),
240 xBegin = xIter, xEnd = Languages.end();
241 bool xEmpty = true;
242 const std::string* xLanguage = 0;
243 unsigned xPos = 0, xPosNext = 0, filePos = 0;
244
245 if (xIter != xEnd) {
246 xEmpty = false;
247 xPos = Languages.getPosition(xIter - xBegin);
248 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
249 xPosNext = (xNext == xEnd) ? std::numeric_limits<unsigned>::max()
250 : Languages.getPosition(xNext - xBegin);
251 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
252 }
253
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000254 // For each input file:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000255 for (cl::list<std::string>::const_iterator B = InputFilenames.begin(),
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000256 CB = B, E = InputFilenames.end(); B != E; ++B) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000257 sys::Path In = sys::Path(*B);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000258
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000259 // Code for handling the -x option.
260 // Output: std::string* xLanguage (can be NULL).
261 if (!xEmpty) {
262 filePos = InputFilenames.getPosition(B - CB);
263
264 if (xPos < filePos) {
265 if (filePos < xPosNext) {
266 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
267 }
268 else { // filePos >= xPosNext
269 // Skip xIters while filePos > xPosNext
270 while (filePos > xPosNext) {
271 ++xIter;
272 xPos = xPosNext;
273
274 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
275 if (xNext == xEnd)
276 xPosNext = std::numeric_limits<unsigned>::max();
277 else
278 xPosNext = Languages.getPosition(xNext - xBegin);
279 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
280 }
281 }
282 }
283 }
284
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000285 // Find the toolchain corresponding to this file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000286 const Node* N = FindToolChain(In, xLanguage, InLangs);
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000287 // Pass file through the chain starting at head.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000288 PassThroughGraph(In, N, InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000289 }
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000290}
291
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000292// Sort the nodes in topological order.
293void CompilationGraph::TopologicalSort(std::vector<const Node*>& Out) {
294 std::queue<const Node*> Q;
295 Q.push(&getNode("root"));
296
297 while (!Q.empty()) {
298 const Node* A = Q.front();
299 Q.pop();
300 Out.push_back(A);
301 for (Node::const_iterator EB = A->EdgesBegin(), EE = A->EdgesEnd();
302 EB != EE; ++EB) {
303 Node* B = &getNode((*EB)->ToolName());
304 B->DecrInEdges();
305 if (B->HasNoInEdges())
306 Q.push(B);
307 }
308 }
309}
310
311namespace {
312 bool NotJoinNode(const Node* N) {
313 return N->ToolPtr ? !N->ToolPtr->IsJoin() : true;
314 }
315}
316
317// Call TopologicalSort and filter the resulting list to include
318// only Join nodes.
319void CompilationGraph::
320TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out) {
321 std::vector<const Node*> TopSorted;
322 TopologicalSort(TopSorted);
323 std::remove_copy_if(TopSorted.begin(), TopSorted.end(),
324 std::back_inserter(Out), NotJoinNode);
325}
326
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000327int CompilationGraph::Build (const sys::Path& TempDir) {
328
329 InputLanguagesSet InLangs;
330
331 // Traverse initial parts of the toolchains and fill in InLangs.
332 BuildInitial(InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000333
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000334 std::vector<const Node*> JTV;
335 TopologicalSortFilterJoinNodes(JTV);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000336
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000337 // For all join nodes in topological order:
338 for (std::vector<const Node*>::iterator B = JTV.begin(), E = JTV.end();
339 B != E; ++B) {
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000340
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000341 sys::Path Out;
342 const Node* CurNode = *B;
343 JoinTool* JT = &dynamic_cast<JoinTool&>(*CurNode->ToolPtr.getPtr());
344 bool IsLast = false;
345
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000346 // Are there any files in the join list?
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000347 if (JT->JoinListEmpty())
348 continue;
349
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000350 // Is this the last tool in the toolchain?
351 // NOTE: we can process several toolchains in parallel.
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000352 if (!CurNode->HasChildren() || JT->IsLast()) {
353 if (OutputFilename.empty()) {
354 Out.set("a");
355 Out.appendSuffix(JT->OutputSuffix());
356 }
357 else
358 Out.set(OutputFilename);
359 IsLast = true;
360 }
361 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000362 Out = MakeTempFile(TempDir, "tmp", JT->OutputSuffix());
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000363 }
364
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000365 if (int ret = JT->GenerateAction(Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000366 throw error_code(ret);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000367
368 if (!IsLast) {
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000369 const Node* NextNode =
370 &getNode(ChooseEdge(CurNode->OutEdges, InLangs,
371 CurNode->Name())->ToolName());
372 PassThroughGraph(Out, NextNode, InLangs, TempDir);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000373 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000374 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000375
376 return 0;
377}
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000378
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000379// Code related to graph visualization.
380
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000381namespace llvm {
382 template <>
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000383 struct DOTGraphTraits<llvmc::CompilationGraph*>
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000384 : public DefaultDOTGraphTraits
385 {
386
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000387 template<typename GraphType>
388 static std::string getNodeLabel(const Node* N, const GraphType&)
389 {
390 if (N->ToolPtr)
391 if (N->ToolPtr->IsJoin())
392 return N->Name() + "\n (join" +
393 (N->HasChildren() ? ")"
394 : std::string(": ") + N->ToolPtr->OutputLanguage() + ')');
395 else
396 return N->Name();
397 else
398 return "root";
399 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000400
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000401 template<typename EdgeIter>
402 static std::string getEdgeSourceLabel(const Node* N, EdgeIter I) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000403 if (N->ToolPtr) {
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000404 return N->ToolPtr->OutputLanguage();
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000405 }
406 else {
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +0000407 const char** InLangs = I->ToolPtr->InputLanguages();
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000408 std::string ret;
409
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +0000410 for (; *InLangs; ++InLangs) {
411 if (*(InLangs + 1)) {
412 ret += *InLangs;
413 ret += ", ";
414 }
415 else {
416 ret += *InLangs;
417 }
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000418 }
419
420 return ret;
421 }
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000422 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000423 };
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000424
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000425}
426
427void CompilationGraph::writeGraph() {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000428 std::ofstream O("compilation-graph.dot");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000429
Mikhail Glushenkova4db8c02008-05-06 16:37:33 +0000430 if (O.good()) {
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000431 llvm::WriteGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000432 O.close();
433 }
434 else {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000435 throw std::runtime_error("Error opening file 'compilation-graph.dot'"
436 " for writing!");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000437 }
438}
439
440void CompilationGraph::viewGraph() {
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000441 llvm::ViewGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000442}