blob: cf174dd56f3274a325a539cff48d139a193f093c [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 Glushenkovffcf3a12008-05-30 06:18:16 +0000126 const StrVector& InputLanguages = B.ToolPtr->InputLanguages();
127 for (StrVector::const_iterator B = InputLanguages.begin(),
128 E = InputLanguages.end(); B != E; ++B)
129 ToolsMap[*B].push_back(IntrusiveRefCntPtr<Edge>(Edg));
130 NodesMap["root"].AddEdge(Edg);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000131 }
132 else {
Mikhail Glushenkov0a174932008-05-06 16:36:06 +0000133 Node& N = getNode(A);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000134 N.AddEdge(Edg);
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000135 }
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +0000136 // Increase the inward edge counter.
137 B.IncrInEdges();
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000138}
139
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000140namespace {
141 sys::Path MakeTempFile(const sys::Path& TempDir, const std::string& BaseName,
142 const std::string& Suffix) {
143 sys::Path Out = TempDir;
144 Out.appendComponent(BaseName);
145 Out.appendSuffix(Suffix);
146 Out.makeUnique(true, NULL);
147 return Out;
148 }
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000149}
150
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000151// Pass input file through the chain until we bump into a Join node or
152// a node that says that it is the last.
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000153void CompilationGraph::PassThroughGraph (const sys::Path& InFile,
154 const Node* StartNode,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000155 const InputLanguagesSet& InLangs,
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000156 const sys::Path& TempDir) const {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000157 bool Last = false;
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000158 sys::Path In = InFile;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000159 const Node* CurNode = StartNode;
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000160
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000161 while(!Last) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000162 sys::Path Out;
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000163 Tool* CurTool = CurNode->ToolPtr.getPtr();
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000164
165 if (CurTool->IsJoin()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000166 JoinTool& JT = dynamic_cast<JoinTool&>(*CurTool);
167 JT.AddToJoinList(In);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000168 break;
169 }
170
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000171 // Since toolchains do not have to end with a Join node, we should
172 // check if this Node is the last.
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000173 if (!CurNode->HasChildren() || CurTool->IsLast()) {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000174 if (!OutputFilename.empty()) {
175 Out.set(OutputFilename);
176 }
177 else {
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000178 Out.set(In.getBasename());
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000179 Out.appendSuffix(CurTool->OutputSuffix());
180 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000181 Last = true;
182 }
183 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000184 Out = MakeTempFile(TempDir, In.getBasename(), CurTool->OutputSuffix());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000185 }
186
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000187 if (int ret = CurTool->GenerateAction(In, Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000188 throw error_code(ret);
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000189
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000190 if (Last)
191 return;
192
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000193 CurNode = &getNode(ChooseEdge(CurNode->OutEdges,
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000194 InLangs,
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000195 CurNode->Name())->ToolName());
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000196 In = Out; Out.clear();
197 }
Mikhail Glushenkov2ba4c5a2008-05-06 17:25:51 +0000198}
199
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000200// Find the head of the toolchain corresponding to the given file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000201// Also, insert an input language into InLangs.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000202const Node* CompilationGraph::
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000203FindToolChain(const sys::Path& In, const std::string* forceLanguage,
204 InputLanguagesSet& InLangs) const {
205
206 // Determine the input language.
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000207 const std::string& InLanguage =
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +0000208 forceLanguage ? *forceLanguage : GetLanguage(In);
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000209
210 // Add the current input language to the input language set.
211 InLangs.insert(InLanguage);
212
213 // Find the toolchain for the input language.
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000214 const tools_vector_type& TV = getToolsVector(InLanguage);
215 if (TV.empty())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000216 throw std::runtime_error("No toolchain corresponding to language "
217 + InLanguage + " found");
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000218 return &getNode(ChooseEdge(TV, InLangs)->ToolName());
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000219}
220
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000221// Helper function used by Build().
222// Traverses initial portions of the toolchains (up to the first Join node).
223// This function is also responsible for handling the -x option.
224void CompilationGraph::BuildInitial (InputLanguagesSet& InLangs,
225 const sys::Path& TempDir) {
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000226 // This is related to -x option handling.
227 cl::list<std::string>::const_iterator xIter = Languages.begin(),
228 xBegin = xIter, xEnd = Languages.end();
229 bool xEmpty = true;
230 const std::string* xLanguage = 0;
231 unsigned xPos = 0, xPosNext = 0, filePos = 0;
232
233 if (xIter != xEnd) {
234 xEmpty = false;
235 xPos = Languages.getPosition(xIter - xBegin);
236 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
237 xPosNext = (xNext == xEnd) ? std::numeric_limits<unsigned>::max()
238 : Languages.getPosition(xNext - xBegin);
239 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
240 }
241
Mikhail Glushenkov4f6e3a42008-05-06 17:28:03 +0000242 // For each input file:
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000243 for (cl::list<std::string>::const_iterator B = InputFilenames.begin(),
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000244 CB = B, E = InputFilenames.end(); B != E; ++B) {
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000245 sys::Path In = sys::Path(*B);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000246
Mikhail Glushenkov87416b42008-05-06 18:10:53 +0000247 // Code for handling the -x option.
248 // Output: std::string* xLanguage (can be NULL).
249 if (!xEmpty) {
250 filePos = InputFilenames.getPosition(B - CB);
251
252 if (xPos < filePos) {
253 if (filePos < xPosNext) {
254 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
255 }
256 else { // filePos >= xPosNext
257 // Skip xIters while filePos > xPosNext
258 while (filePos > xPosNext) {
259 ++xIter;
260 xPos = xPosNext;
261
262 cl::list<std::string>::const_iterator xNext = llvm::next(xIter);
263 if (xNext == xEnd)
264 xPosNext = std::numeric_limits<unsigned>::max();
265 else
266 xPosNext = Languages.getPosition(xNext - xBegin);
267 xLanguage = (*xIter == "none") ? 0 : &(*xIter);
268 }
269 }
270 }
271 }
272
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000273 // Find the toolchain corresponding to this file.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000274 const Node* N = FindToolChain(In, xLanguage, InLangs);
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000275 // Pass file through the chain starting at head.
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000276 PassThroughGraph(In, N, InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000277 }
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000278}
279
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000280// Sort the nodes in topological order.
281void CompilationGraph::TopologicalSort(std::vector<const Node*>& Out) {
282 std::queue<const Node*> Q;
283 Q.push(&getNode("root"));
284
285 while (!Q.empty()) {
286 const Node* A = Q.front();
287 Q.pop();
288 Out.push_back(A);
289 for (Node::const_iterator EB = A->EdgesBegin(), EE = A->EdgesEnd();
290 EB != EE; ++EB) {
291 Node* B = &getNode((*EB)->ToolName());
292 B->DecrInEdges();
293 if (B->HasNoInEdges())
294 Q.push(B);
295 }
296 }
297}
298
299namespace {
300 bool NotJoinNode(const Node* N) {
301 return N->ToolPtr ? !N->ToolPtr->IsJoin() : true;
302 }
303}
304
305// Call TopologicalSort and filter the resulting list to include
306// only Join nodes.
307void CompilationGraph::
308TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out) {
309 std::vector<const Node*> TopSorted;
310 TopologicalSort(TopSorted);
311 std::remove_copy_if(TopSorted.begin(), TopSorted.end(),
312 std::back_inserter(Out), NotJoinNode);
313}
314
Mikhail Glushenkov4c11a622008-05-06 18:15:35 +0000315int CompilationGraph::Build (const sys::Path& TempDir) {
316
317 InputLanguagesSet InLangs;
318
319 // Traverse initial parts of the toolchains and fill in InLangs.
320 BuildInitial(InLangs, TempDir);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000321
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000322 std::vector<const Node*> JTV;
323 TopologicalSortFilterJoinNodes(JTV);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000324
Mikhail Glushenkov02606582008-05-06 18:07:14 +0000325 // For all join nodes in topological order:
326 for (std::vector<const Node*>::iterator B = JTV.begin(), E = JTV.end();
327 B != E; ++B) {
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000328
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000329 sys::Path Out;
330 const Node* CurNode = *B;
331 JoinTool* JT = &dynamic_cast<JoinTool&>(*CurNode->ToolPtr.getPtr());
332 bool IsLast = false;
333
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000334 // Are there any files in the join list?
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000335 if (JT->JoinListEmpty())
336 continue;
337
Mikhail Glushenkovbe867122008-05-06 18:16:52 +0000338 // Is this the last tool in the toolchain?
339 // NOTE: we can process several toolchains in parallel.
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000340 if (!CurNode->HasChildren() || JT->IsLast()) {
341 if (OutputFilename.empty()) {
342 Out.set("a");
343 Out.appendSuffix(JT->OutputSuffix());
344 }
345 else
346 Out.set(OutputFilename);
347 IsLast = true;
348 }
349 else {
Mikhail Glushenkov35a85e82008-05-06 18:10:20 +0000350 Out = MakeTempFile(TempDir, "tmp", JT->OutputSuffix());
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000351 }
352
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000353 if (int ret = JT->GenerateAction(Out, InLangs).Execute())
Mikhail Glushenkova6730372008-05-12 16:31:42 +0000354 throw error_code(ret);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000355
356 if (!IsLast) {
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +0000357 const Node* NextNode =
358 &getNode(ChooseEdge(CurNode->OutEdges, InLangs,
359 CurNode->Name())->ToolName());
360 PassThroughGraph(Out, NextNode, InLangs, TempDir);
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000361 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000362 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000363
364 return 0;
365}
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000366
Mikhail Glushenkovbbbc9d42008-05-06 17:27:37 +0000367// Code related to graph visualization.
368
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000369namespace llvm {
370 template <>
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +0000371 struct DOTGraphTraits<llvmc::CompilationGraph*>
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000372 : public DefaultDOTGraphTraits
373 {
374
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000375 template<typename GraphType>
376 static std::string getNodeLabel(const Node* N, const GraphType&)
377 {
378 if (N->ToolPtr)
379 if (N->ToolPtr->IsJoin())
380 return N->Name() + "\n (join" +
381 (N->HasChildren() ? ")"
382 : std::string(": ") + N->ToolPtr->OutputLanguage() + ')');
383 else
384 return N->Name();
385 else
386 return "root";
387 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000388
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000389 template<typename EdgeIter>
390 static std::string getEdgeSourceLabel(const Node* N, EdgeIter I) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000391 if (N->ToolPtr) {
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000392 return N->ToolPtr->OutputLanguage();
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000393 }
394 else {
395 const StrVector& InputLanguages = I->ToolPtr->InputLanguages();
396 std::string ret;
397
398 for (StrVector::const_iterator B = InputLanguages.begin(),
399 E = InputLanguages.end(); B != E; ++B) {
400 if (llvm::next(B) != E)
401 ret += *B + ", ";
402 else
403 ret += *B;
404 }
405
406 return ret;
407 }
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000408 }
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000409 };
Mikhail Glushenkov97fda6d2008-05-06 17:26:14 +0000410
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000411}
412
413void CompilationGraph::writeGraph() {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000414 std::ofstream O("compilation-graph.dot");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000415
Mikhail Glushenkova4db8c02008-05-06 16:37:33 +0000416 if (O.good()) {
Mikhail Glushenkov3d688222008-05-06 18:07:48 +0000417 llvm::WriteGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000418 O.close();
419 }
420 else {
Mikhail Glushenkov35bca412008-05-30 06:16:59 +0000421 throw std::runtime_error("Error opening file 'compilation-graph.dot'"
422 " for writing!");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000423 }
424}
425
426void CompilationGraph::viewGraph() {
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +0000427 llvm::ViewGraph(this, "compilation-graph");
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +0000428}