Show argv[0] in error messages (like gcc).
[oota-llvm.git] / tools / llvmc2 / llvmc.cpp
1 //===--- llvmc.cpp - 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 //  This tool provides a single point of access to the LLVM
11 //  compilation tools.  It has many options. To discover the options
12 //  supported please refer to the tools' manual page or run the tool
13 //  with the --help option.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "CompilationGraph.h"
18 #include "Error.h"
19 #include "Tool.h"
20
21 #include "llvm/System/Path.h"
22 #include "llvm/Support/CommandLine.h"
23
24 #include <iostream>
25 #include <stdexcept>
26 #include <string>
27
28 namespace cl = llvm::cl;
29 namespace sys = llvm::sys;
30 using namespace llvmc;
31
32 // Built-in command-line options.
33 // External linkage here is intentional.
34
35 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input file>"),
36                                      cl::ZeroOrMore);
37 cl::opt<std::string> OutputFilename("o", cl::desc("Output file name"),
38                                     cl::value_desc("file"));
39 cl::list<std::string> Languages("x",
40           cl::desc("Specify the language of the following input files"),
41           cl::ZeroOrMore);
42 cl::opt<bool> VerboseMode("v",
43                           cl::desc("Enable verbose mode"));
44 cl::opt<bool> WriteGraph("write-graph",
45                          cl::desc("Write compilation-graph.dot file"),
46                          cl::Hidden);
47 cl::opt<bool> ViewGraph("view-graph",
48                          cl::desc("Show compilation graph in GhostView"),
49                          cl::Hidden);
50
51 namespace {
52   /// BuildTargets - A small wrapper for CompilationGraph::Build.
53   int BuildTargets(CompilationGraph& graph) {
54     int ret;
55     sys::Path tempDir(sys::Path::GetTemporaryDirectory());
56
57     try {
58       ret = graph.Build(tempDir);
59     }
60     catch(...) {
61       tempDir.eraseFromDisk(true);
62       throw;
63     }
64
65     tempDir.eraseFromDisk(true);
66     return ret;
67   }
68 }
69
70 int main(int argc, char** argv) {
71   try {
72     CompilationGraph graph;
73
74     cl::ParseCommandLineOptions
75       (argc, argv, "LLVM Compiler Driver (Work In Progress)", true);
76     PopulateCompilationGraph(graph);
77
78     if (WriteGraph) {
79       graph.writeGraph();
80       if (!ViewGraph)
81         return 0;
82     }
83
84     if (ViewGraph) {
85       graph.viewGraph();
86       return 0;
87     }
88
89     if (InputFilenames.empty()) {
90       throw std::runtime_error("no input files");
91     }
92
93     return BuildTargets(graph);
94   }
95   catch(llvmc::error_code& ec) {
96     return ec.code();
97   }
98   catch(const std::exception& ex) {
99     std::cerr << argv[0] << ": " << ex.what() << '\n';
100   }
101   catch(...) {
102     std::cerr << argv[0] << ": unknown error!\n";
103   }
104   return 1;
105 }