2008-05-30 06:17:29 +00:00
|
|
|
//===--- Action.cpp - The LLVM Compiler Driver ------------------*- C++ -*-===//
|
2008-05-06 16:34:12 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open
|
|
|
|
// Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Action class - implementation and auxiliary functions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-09-22 20:50:40 +00:00
|
|
|
#include "llvm/CompilerDriver/Action.h"
|
2009-06-25 18:20:10 +00:00
|
|
|
#include "llvm/CompilerDriver/BuiltinOptions.h"
|
2009-06-30 04:07:12 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-05-06 16:34:12 +00:00
|
|
|
#include "llvm/System/Program.h"
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
using namespace llvm;
|
2008-05-06 18:08:59 +00:00
|
|
|
using namespace llvmc;
|
2008-05-06 16:34:12 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
int ExecuteProgram(const std::string& name,
|
2008-05-30 06:17:29 +00:00
|
|
|
const StrVector& args) {
|
2008-05-06 16:34:12 +00:00
|
|
|
sys::Path prog = sys::Program::FindProgramByName(name);
|
|
|
|
|
|
|
|
if (prog.isEmpty())
|
|
|
|
throw std::runtime_error("Can't find program '" + name + "'");
|
|
|
|
if (!prog.canExecute())
|
|
|
|
throw std::runtime_error("Program '" + name + "' is not executable.");
|
|
|
|
|
2008-05-06 18:10:53 +00:00
|
|
|
// Build the command line vector and the redirects array.
|
2008-05-06 18:08:59 +00:00
|
|
|
const sys::Path* redirects[3] = {0,0,0};
|
|
|
|
sys::Path stdout_redirect;
|
2008-05-06 16:34:12 +00:00
|
|
|
|
2008-05-06 18:08:59 +00:00
|
|
|
std::vector<const char*> argv;
|
|
|
|
argv.reserve((args.size()+2));
|
|
|
|
argv.push_back(name.c_str());
|
|
|
|
|
2008-05-30 06:17:29 +00:00
|
|
|
for (StrVector::const_iterator B = args.begin(), E = args.end();
|
2008-05-06 18:08:59 +00:00
|
|
|
B!=E; ++B) {
|
|
|
|
if (*B == ">") {
|
|
|
|
++B;
|
|
|
|
stdout_redirect.set(*B);
|
|
|
|
redirects[1] = &stdout_redirect;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
argv.push_back((*B).c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argv.push_back(0); // null terminate list.
|
|
|
|
|
2008-05-06 18:10:20 +00:00
|
|
|
// Invoke the program.
|
2008-05-06 18:08:59 +00:00
|
|
|
return sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]);
|
2008-05-06 16:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void print_string (const std::string& str) {
|
2009-06-30 04:07:12 +00:00
|
|
|
errs() << str << ' ';
|
2008-05-06 16:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-06 18:08:59 +00:00
|
|
|
int llvmc::Action::Execute() const {
|
2008-05-30 18:48:52 +00:00
|
|
|
if (DryRun || VerboseMode) {
|
2009-06-30 04:07:12 +00:00
|
|
|
errs() << Command_ << " ";
|
2008-05-06 16:34:12 +00:00
|
|
|
std::for_each(Args_.begin(), Args_.end(), print_string);
|
2009-06-30 04:07:12 +00:00
|
|
|
errs() << '\n';
|
2008-05-06 16:34:12 +00:00
|
|
|
}
|
2008-05-30 18:48:52 +00:00
|
|
|
if (DryRun)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return ExecuteProgram(Command_, Args_);
|
2008-05-06 16:34:12 +00:00
|
|
|
}
|