Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 1 | //===--- CompilationGraph.cpp - The LLVM Compiler Driver --------*- C++ -*-===// |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 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 | // |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 10 | // Compilation graph - implementation. |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 14 | #include "CompilationGraph.h" |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 15 | |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 16 | #include "llvm/Support/CommandLine.h" |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 17 | #include "llvm/Support/DOTGraphTraits.h" |
| 18 | #include "llvm/Support/GraphWriter.h" |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 19 | |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 20 | #include <stdexcept> |
| 21 | |
| 22 | using namespace llvm; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 23 | using namespace llvmcc; |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 24 | |
| 25 | extern cl::list<std::string> InputFilenames; |
| 26 | extern cl::opt<std::string> OutputFilename; |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 27 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 28 | CompilationGraph::CompilationGraph() { |
| 29 | NodesMap["root"] = Node(this); |
| 30 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 31 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 32 | Node& CompilationGraph::getNode(const std::string& ToolName) { |
| 33 | nodes_map_type::iterator I = NodesMap.find(ToolName); |
| 34 | if (I == NodesMap.end()) |
| 35 | throw std::runtime_error("Node " + ToolName + " is not in graph"); |
| 36 | return I->second; |
| 37 | } |
| 38 | |
| 39 | const Node& CompilationGraph::getNode(const std::string& ToolName) const { |
| 40 | nodes_map_type::const_iterator I = NodesMap.find(ToolName); |
| 41 | if (I == NodesMap.end()) |
| 42 | throw std::runtime_error("Node " + ToolName + " is not in graph!"); |
| 43 | return I->second; |
| 44 | } |
| 45 | |
| 46 | const std::string& CompilationGraph::getLanguage(const sys::Path& File) const { |
| 47 | LanguageMap::const_iterator Lang = ExtsToLangs.find(File.getSuffix()); |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 48 | if (Lang == ExtsToLangs.end()) |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 49 | throw std::runtime_error("Unknown suffix: " + File.getSuffix() + '!'); |
| 50 | return Lang->second; |
| 51 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 52 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 53 | const CompilationGraph::tools_vector_type& |
| 54 | CompilationGraph::getToolsVector(const std::string& LangName) const |
| 55 | { |
| 56 | tools_map_type::const_iterator I = ToolsMap.find(LangName); |
| 57 | if (I == ToolsMap.end()) |
| 58 | throw std::runtime_error("No tools corresponding to " + LangName |
| 59 | + " found!"); |
| 60 | return I->second; |
| 61 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 62 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 63 | void CompilationGraph::insertVertex(const IntrusiveRefCntPtr<Tool> V) { |
| 64 | if (!NodesMap.count(V->Name())) { |
| 65 | Node N; |
| 66 | N.OwningGraph = this; |
| 67 | N.ToolPtr = V; |
| 68 | NodesMap[V->Name()] = N; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void CompilationGraph::insertEdge(const std::string& A, |
| 73 | const std::string& B) { |
| 74 | // TOTHINK: check this at compile-time? |
| 75 | if (B == "root") |
| 76 | throw std::runtime_error("Edges back to the root are not allowed!" |
| 77 | "Compilation graph should be acyclic!"); |
| 78 | |
| 79 | if (A == "root") { |
| 80 | const Node& N = getNode(B); |
| 81 | const std::string& InputLanguage = N.ToolPtr->InputLanguage(); |
| 82 | ToolsMap[InputLanguage].push_back(B); |
| 83 | |
| 84 | // Needed to support iteration via GraphTraits. |
| 85 | NodesMap["root"].Children.push_back(B); |
| 86 | } |
| 87 | else { |
| 88 | Node& NA = getNode(A); |
| 89 | // Check that there is a node at B. |
| 90 | getNode(B); |
| 91 | NA.Children.push_back(B); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | // TOFIX: extend, add an ability to choose between different |
| 96 | // toolchains, support more interesting graph topologies. |
| 97 | int CompilationGraph::Build (const sys::Path& tempDir) const { |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 98 | PathVector JoinList; |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 99 | const Tool* JoinTool = 0; |
| 100 | sys::Path In, Out; |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 101 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 102 | // For each input file |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 103 | for (cl::list<std::string>::const_iterator B = InputFilenames.begin(), |
| 104 | E = InputFilenames.end(); B != E; ++B) { |
| 105 | In = sys::Path(*B); |
| 106 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 107 | // Get to the head of the toolchain. |
| 108 | const tools_vector_type& TV = getToolsVector(getLanguage(In)); |
| 109 | if(TV.empty()) |
| 110 | throw std::runtime_error("Tool names vector is empty!"); |
| 111 | const Node* N = &getNode(*TV.begin()); |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 112 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 113 | // Pass it through the chain until we bump into a Join node or a |
| 114 | // node that says that it is the last. |
| 115 | bool Last = false; |
| 116 | while(!Last) { |
| 117 | const Tool* CurTool = N->ToolPtr.getPtr(); |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 118 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 119 | if(CurTool->IsJoin()) { |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 120 | JoinList.push_back(In); |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 121 | JoinTool = CurTool; |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 122 | break; |
| 123 | } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 124 | |
| 125 | // Is this the last tool? |
| 126 | if (N->Children.empty() || CurTool->IsLast()) { |
| 127 | Out.appendComponent(In.getBasename()); |
| 128 | Out.appendSuffix(CurTool->OutputSuffix()); |
| 129 | Last = true; |
| 130 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 131 | else { |
| 132 | Out = tempDir; |
| 133 | Out.appendComponent(In.getBasename()); |
| 134 | Out.appendSuffix(CurTool->OutputSuffix()); |
| 135 | Out.makeUnique(true, NULL); |
| 136 | Out.eraseFromDisk(); |
| 137 | } |
| 138 | |
| 139 | if (CurTool->GenerateAction(In, Out).Execute() != 0) |
| 140 | throw std::runtime_error("Tool returned error code!"); |
| 141 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 142 | N = &getNode(*N->Children.begin()); |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 143 | In = Out; Out.clear(); |
| 144 | } |
| 145 | } |
| 146 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 147 | if(JoinTool) { |
| 148 | // If the final output name is empty, set it to "a.out" |
| 149 | if (!OutputFilename.empty()) { |
| 150 | Out = sys::Path(OutputFilename); |
| 151 | } |
| 152 | else { |
| 153 | Out = sys::Path("a"); |
| 154 | Out.appendSuffix(JoinTool->OutputSuffix()); |
| 155 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 156 | |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 157 | if (JoinTool->GenerateAction(JoinList, Out).Execute() != 0) |
| 158 | throw std::runtime_error("Tool returned error code!"); |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 159 | } |
Anton Korobeynikov | ac67b7e | 2008-03-23 08:57:20 +0000 | [diff] [blame] | 160 | |
| 161 | return 0; |
| 162 | } |
Mikhail Glushenkov | 0d08db0 | 2008-05-06 16:35:25 +0000 | [diff] [blame^] | 163 | |
| 164 | namespace llvm { |
| 165 | template <> |
| 166 | struct DOTGraphTraits<llvmcc::CompilationGraph*> |
| 167 | : public DefaultDOTGraphTraits |
| 168 | { |
| 169 | |
| 170 | template<typename GraphType> |
| 171 | static std::string getNodeLabel(const Node* N, const GraphType&) { |
| 172 | if (N->ToolPtr) |
| 173 | return N->ToolPtr->Name(); |
| 174 | else |
| 175 | return "root"; |
| 176 | } |
| 177 | |
| 178 | }; |
| 179 | } |
| 180 | |
| 181 | void CompilationGraph::writeGraph() { |
| 182 | std::ofstream O("CompilationGraph.dot"); |
| 183 | |
| 184 | if(O.good()) { |
| 185 | llvm::WriteGraph(this, "CompilationGraph"); |
| 186 | O.close(); |
| 187 | } |
| 188 | else { |
| 189 | throw std::runtime_error(""); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | void CompilationGraph::viewGraph() { |
| 194 | llvm::ViewGraph(this, "CompilationGraph"); |
| 195 | } |