2008-03-23 08:57:20 +00:00
|
|
|
//===--- llvmcc.cpp - The LLVM Compiler Driver ------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open
|
|
|
|
// Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tool provides a single point of access to the LLVM
|
|
|
|
// compilation tools. It has many options. To discover the options
|
|
|
|
// supported please refer to the tools' manual page or run the tool
|
|
|
|
// with the --help option.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-05-06 16:34:12 +00:00
|
|
|
#include "CompilationGraph.h"
|
|
|
|
#include "Tool.h"
|
2008-03-23 08:57:20 +00:00
|
|
|
|
|
|
|
#include "llvm/System/Path.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
|
2008-05-06 16:34:12 +00:00
|
|
|
namespace cl = llvm::cl;
|
|
|
|
namespace sys = llvm::sys;
|
2008-03-23 08:57:20 +00:00
|
|
|
using namespace llvmcc;
|
|
|
|
|
2008-05-06 16:35:25 +00:00
|
|
|
// Built-in command-line options.
|
2008-05-06 16:34:12 +00:00
|
|
|
// External linkage here is intentional.
|
2008-05-06 16:35:25 +00:00
|
|
|
|
|
|
|
cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input file>"),
|
|
|
|
cl::OneOrMore);
|
2008-03-23 08:57:20 +00:00
|
|
|
cl::opt<std::string> OutputFilename("o", cl::desc("Output file name"),
|
|
|
|
cl::value_desc("file"));
|
2008-05-06 16:35:25 +00:00
|
|
|
cl::opt<bool> VerboseMode("v",
|
|
|
|
cl::desc("Enable verbose mode"));
|
|
|
|
cl::opt<bool> WriteGraph("write-graph",
|
|
|
|
cl::desc("Write CompilationGraph.dot file"),
|
|
|
|
cl::Hidden);
|
|
|
|
cl::opt<bool> ViewGraph("view-graph",
|
|
|
|
cl::desc("Show compilation graph in GhostView"),
|
|
|
|
cl::Hidden);
|
2008-03-23 08:57:20 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
int BuildTargets(const CompilationGraph& graph) {
|
|
|
|
int ret;
|
|
|
|
sys::Path tempDir(sys::Path::GetTemporaryDirectory());
|
|
|
|
|
|
|
|
try {
|
|
|
|
ret = graph.Build(tempDir);
|
|
|
|
}
|
|
|
|
catch(...) {
|
|
|
|
tempDir.eraseFromDisk(true);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
tempDir.eraseFromDisk(true);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
try {
|
|
|
|
CompilationGraph graph;
|
|
|
|
|
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
|
|
|
"LLVM Compiler Driver(Work In Progress)");
|
|
|
|
PopulateCompilationGraph(graph);
|
2008-05-06 16:35:25 +00:00
|
|
|
|
|
|
|
if(WriteGraph)
|
|
|
|
graph.writeGraph();
|
|
|
|
if(ViewGraph)
|
|
|
|
graph.viewGraph();
|
|
|
|
|
2008-03-23 08:57:20 +00:00
|
|
|
return BuildTargets(graph);
|
|
|
|
}
|
|
|
|
catch(const std::exception& ex) {
|
|
|
|
std::cerr << ex.what() << '\n';
|
|
|
|
}
|
|
|
|
catch(...) {
|
|
|
|
std::cerr << "Unknown error!\n";
|
|
|
|
}
|
|
|
|
}
|