Add "Args" optional argument to AbstractInterpreter factory methods, which

fills in a ToolArgs vector in the AbstractInterpreter if it is set. This
ToolArgs vector is used to pass additional arguments to LLI and/or LLC.
This is intended to address Bug 40.

Also, make -debug-only=toolrunner work for the LLC and CBE
AbstractInterpreters.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-05-04 21:09:01 +00:00
parent bbc130d110
commit d11577b68b
4 changed files with 182 additions and 78 deletions

View File

@ -80,14 +80,18 @@ public:
/// complexity behind a simple interface. /// complexity behind a simple interface.
/// ///
struct AbstractInterpreter { struct AbstractInterpreter {
static CBE* createCBE(const std::string &ProgramPath, std::string &Message); static CBE *createCBE(const std::string &ProgramPath, std::string &Message,
static LLC *createLLC(const std::string &ProgramPath, std::string &Message); const std::vector<std::string> *Args = 0);
static LLC *createLLC(const std::string &ProgramPath, std::string &Message,
const std::vector<std::string> *Args = 0);
static AbstractInterpreter* createLLI(const std::string &ProgramPath, static AbstractInterpreter* createLLI(const std::string &ProgramPath,
std::string &Message); std::string &Message,
const std::vector<std::string> *Args=0);
static AbstractInterpreter* createJIT(const std::string &ProgramPath, static AbstractInterpreter* createJIT(const std::string &ProgramPath,
std::string &Message); std::string &Message,
const std::vector<std::string> *Args=0);
virtual ~AbstractInterpreter() {} virtual ~AbstractInterpreter() {}
@ -114,9 +118,14 @@ struct AbstractInterpreter {
// //
class CBE : public AbstractInterpreter { class CBE : public AbstractInterpreter {
std::string LLCPath; // The path to the `llc' executable std::string LLCPath; // The path to the `llc' executable
std::vector<std::string> ToolArgs; // Extra args to pass to LLC
GCC *gcc; GCC *gcc;
public: public:
CBE(const std::string &llcPath, GCC *Gcc) : LLCPath(llcPath), gcc(Gcc) { } CBE(const std::string &llcPath, GCC *Gcc,
const std::vector<std::string> *Args) : LLCPath(llcPath), gcc(Gcc) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
~CBE() { delete gcc; } ~CBE() { delete gcc; }
/// compileProgram - Compile the specified program from bytecode to executable /// compileProgram - Compile the specified program from bytecode to executable
@ -145,13 +154,16 @@ public:
// //
class LLC : public AbstractInterpreter { class LLC : public AbstractInterpreter {
std::string LLCPath; // The path to the LLC executable std::string LLCPath; // The path to the LLC executable
std::vector<std::string> ToolArgs; // Extra args to pass to LLC
GCC *gcc; GCC *gcc;
public: public:
LLC(const std::string &llcPath, GCC *Gcc) LLC(const std::string &llcPath, GCC *Gcc,
: LLCPath(llcPath), gcc(Gcc) { } const std::vector<std::string> *Args) : LLCPath(llcPath), gcc(Gcc) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
~LLC() { delete gcc; } ~LLC() { delete gcc; }
/// compileProgram - Compile the specified program from bytecode to executable /// compileProgram - Compile the specified program from bytecode to executable
/// code. This does not produce any output, it is only used when debugging /// code. This does not produce any output, it is only used when debugging
/// the code generator. If the code generator fails, an exception should be /// the code generator. If the code generator fails, an exception should be

View File

@ -54,9 +54,13 @@ static void ProcessFailure(std::string ProgPath, const char** Args) {
namespace { namespace {
class LLI : public AbstractInterpreter { class LLI : public AbstractInterpreter {
std::string LLIPath; // The path to the LLI executable std::string LLIPath; // The path to the LLI executable
std::vector<std::string> ToolArgs; // Args to pass to LLI
public: public:
LLI(const std::string &Path) : LLIPath(Path) { } LLI(const std::string &Path, const std::vector<std::string> *Args)
: LLIPath(Path) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
virtual int ExecuteProgram(const std::string &Bytecode, virtual int ExecuteProgram(const std::string &Bytecode,
const std::vector<std::string> &Args, const std::vector<std::string> &Args,
@ -79,6 +83,11 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
std::vector<const char*> LLIArgs; std::vector<const char*> LLIArgs;
LLIArgs.push_back(LLIPath.c_str()); LLIArgs.push_back(LLIPath.c_str());
LLIArgs.push_back("-force-interpreter=true"); LLIArgs.push_back("-force-interpreter=true");
// Add any extra LLI args.
for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
LLIArgs.push_back(ToolArgs[i].c_str());
LLIArgs.push_back(Bytecode.c_str()); LLIArgs.push_back(Bytecode.c_str());
// Add optional parameters to the running program from Argv // Add optional parameters to the running program from Argv
for (unsigned i=0, e = Args.size(); i != e; ++i) for (unsigned i=0, e = Args.size(); i != e; ++i)
@ -97,11 +106,12 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
// LLI create method - Try to find the LLI executable // LLI create method - Try to find the LLI executable
AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath, AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *ToolArgs) {
std::string LLIPath = FindExecutable("lli", ProgPath); std::string LLIPath = FindExecutable("lli", ProgPath);
if (!LLIPath.empty()) { if (!LLIPath.empty()) {
Message = "Found lli: " + LLIPath + "\n"; Message = "Found lli: " + LLIPath + "\n";
return new LLI(LLIPath); return new LLI(LLIPath, ToolArgs);
} }
Message = "Cannot find `lli' in executable directory or PATH!\n"; Message = "Cannot find `lli' in executable directory or PATH!\n";
@ -113,18 +123,28 @@ AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
// //
void LLC::OutputAsm(const std::string &Bytecode, std::string &OutputAsmFile) { void LLC::OutputAsm(const std::string &Bytecode, std::string &OutputAsmFile) {
OutputAsmFile = getUniqueFilename(Bytecode+".llc.s"); OutputAsmFile = getUniqueFilename(Bytecode+".llc.s");
const char *LLCArgs[] = { std::vector<const char *> LLCArgs;
LLCPath.c_str(), LLCArgs.push_back (LLCPath.c_str());
"-o", OutputAsmFile.c_str(), // Output to the Asm file
"-f", // Overwrite as necessary... // Add any extra LLC args.
Bytecode.c_str(), // This is the input bytecode for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
0 LLCArgs.push_back(ToolArgs[i].c_str());
};
LLCArgs.push_back ("-o");
LLCArgs.push_back (OutputAsmFile.c_str()); // Output to the Asm file
LLCArgs.push_back ("-f"); // Overwrite as necessary...
LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
LLCArgs.push_back (0);
std::cout << "<llc>" << std::flush; std::cout << "<llc>" << std::flush;
if (RunProgramWithTimeout(LLCPath, LLCArgs, "/dev/null", "/dev/null", DEBUG(std::cerr << "\nAbout to run:\t";
for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
std::cerr << " " << LLCArgs[i];
std::cerr << "\n";
);
if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
"/dev/null")) "/dev/null"))
ProcessFailure(LLCPath, LLCArgs); ProcessFailure(LLCPath, &LLCArgs[0]);
} }
void LLC::compileProgram(const std::string &Bytecode) { void LLC::compileProgram(const std::string &Bytecode) {
@ -151,7 +171,8 @@ int LLC::ExecuteProgram(const std::string &Bytecode,
/// createLLC - Try to find the LLC executable /// createLLC - Try to find the LLC executable
/// ///
LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath, LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *Args) {
std::string LLCPath = FindExecutable("llc", ProgramPath); std::string LLCPath = FindExecutable("llc", ProgramPath);
if (LLCPath.empty()) { if (LLCPath.empty()) {
Message = "Cannot find `llc' in executable directory or PATH!\n"; Message = "Cannot find `llc' in executable directory or PATH!\n";
@ -164,7 +185,7 @@ LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
std::cerr << Message << "\n"; std::cerr << Message << "\n";
exit(1); exit(1);
} }
return new LLC(LLCPath, gcc); return new LLC(LLCPath, gcc, Args);
} }
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//
@ -173,9 +194,13 @@ LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
namespace { namespace {
class JIT : public AbstractInterpreter { class JIT : public AbstractInterpreter {
std::string LLIPath; // The path to the LLI executable std::string LLIPath; // The path to the LLI executable
std::vector<std::string> ToolArgs; // Args to pass to LLI
public: public:
JIT(const std::string &Path) : LLIPath(Path) { } JIT(const std::string &Path, const std::vector<std::string> *Args)
: LLIPath(Path) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
virtual int ExecuteProgram(const std::string &Bytecode, virtual int ExecuteProgram(const std::string &Bytecode,
const std::vector<std::string> &Args, const std::vector<std::string> &Args,
@ -196,6 +221,10 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
JITArgs.push_back(LLIPath.c_str()); JITArgs.push_back(LLIPath.c_str());
JITArgs.push_back("-force-interpreter=false"); JITArgs.push_back("-force-interpreter=false");
// Add any extra LLI args.
for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
JITArgs.push_back(ToolArgs[i].c_str());
for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) { for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) {
JITArgs.push_back("-load"); JITArgs.push_back("-load");
JITArgs.push_back(SharedLibs[i].c_str()); JITArgs.push_back(SharedLibs[i].c_str());
@ -220,11 +249,11 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
/// createJIT - Try to find the LLI executable /// createJIT - Try to find the LLI executable
/// ///
AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath, AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
std::string &Message) { std::string &Message, const std::vector<std::string> *Args) {
std::string LLIPath = FindExecutable("lli", ProgPath); std::string LLIPath = FindExecutable("lli", ProgPath);
if (!LLIPath.empty()) { if (!LLIPath.empty()) {
Message = "Found lli: " + LLIPath + "\n"; Message = "Found lli: " + LLIPath + "\n";
return new JIT(LLIPath); return new JIT(LLIPath, Args);
} }
Message = "Cannot find `lli' in executable directory or PATH!\n"; Message = "Cannot find `lli' in executable directory or PATH!\n";
@ -234,19 +263,29 @@ AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
void CBE::OutputC(const std::string &Bytecode, void CBE::OutputC(const std::string &Bytecode,
std::string &OutputCFile) { std::string &OutputCFile) {
OutputCFile = getUniqueFilename(Bytecode+".cbe.c"); OutputCFile = getUniqueFilename(Bytecode+".cbe.c");
const char *LLCArgs[] = { std::vector<const char *> LLCArgs;
LLCPath.c_str(), LLCArgs.push_back (LLCPath.c_str());
"-o", OutputCFile.c_str(), // Output to the C file
"-march=c", // Output to C // Add any extra LLC args.
"-f", // Overwrite as necessary... for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
Bytecode.c_str(), // This is the input bytecode LLCArgs.push_back(ToolArgs[i].c_str());
0
}; LLCArgs.push_back ("-o");
LLCArgs.push_back (OutputCFile.c_str()); // Output to the C file
LLCArgs.push_back ("-march=c"); // Output C language
LLCArgs.push_back ("-f"); // Overwrite as necessary...
LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
LLCArgs.push_back (0);
std::cout << "<cbe>" << std::flush; std::cout << "<cbe>" << std::flush;
if (RunProgramWithTimeout(LLCPath, LLCArgs, "/dev/null", "/dev/null", DEBUG(std::cerr << "\nAbout to run:\t";
for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
std::cerr << " " << LLCArgs[i];
std::cerr << "\n";
);
if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
"/dev/null")) "/dev/null"))
ProcessFailure(LLCPath, LLCArgs); ProcessFailure(LLCPath, &LLCArgs[0]);
} }
void CBE::compileProgram(const std::string &Bytecode) { void CBE::compileProgram(const std::string &Bytecode) {
@ -272,7 +311,8 @@ int CBE::ExecuteProgram(const std::string &Bytecode,
/// createCBE - Try to find the 'llc' executable /// createCBE - Try to find the 'llc' executable
/// ///
CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath, CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *Args) {
std::string LLCPath = FindExecutable("llc", ProgramPath); std::string LLCPath = FindExecutable("llc", ProgramPath);
if (LLCPath.empty()) { if (LLCPath.empty()) {
Message = Message =
@ -286,7 +326,7 @@ CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
std::cerr << Message << "\n"; std::cerr << Message << "\n";
exit(1); exit(1);
} }
return new CBE(LLCPath, gcc); return new CBE(LLCPath, gcc, Args);
} }
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//

View File

@ -54,9 +54,13 @@ static void ProcessFailure(std::string ProgPath, const char** Args) {
namespace { namespace {
class LLI : public AbstractInterpreter { class LLI : public AbstractInterpreter {
std::string LLIPath; // The path to the LLI executable std::string LLIPath; // The path to the LLI executable
std::vector<std::string> ToolArgs; // Args to pass to LLI
public: public:
LLI(const std::string &Path) : LLIPath(Path) { } LLI(const std::string &Path, const std::vector<std::string> *Args)
: LLIPath(Path) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
virtual int ExecuteProgram(const std::string &Bytecode, virtual int ExecuteProgram(const std::string &Bytecode,
const std::vector<std::string> &Args, const std::vector<std::string> &Args,
@ -79,6 +83,11 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
std::vector<const char*> LLIArgs; std::vector<const char*> LLIArgs;
LLIArgs.push_back(LLIPath.c_str()); LLIArgs.push_back(LLIPath.c_str());
LLIArgs.push_back("-force-interpreter=true"); LLIArgs.push_back("-force-interpreter=true");
// Add any extra LLI args.
for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
LLIArgs.push_back(ToolArgs[i].c_str());
LLIArgs.push_back(Bytecode.c_str()); LLIArgs.push_back(Bytecode.c_str());
// Add optional parameters to the running program from Argv // Add optional parameters to the running program from Argv
for (unsigned i=0, e = Args.size(); i != e; ++i) for (unsigned i=0, e = Args.size(); i != e; ++i)
@ -97,11 +106,12 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
// LLI create method - Try to find the LLI executable // LLI create method - Try to find the LLI executable
AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath, AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *ToolArgs) {
std::string LLIPath = FindExecutable("lli", ProgPath); std::string LLIPath = FindExecutable("lli", ProgPath);
if (!LLIPath.empty()) { if (!LLIPath.empty()) {
Message = "Found lli: " + LLIPath + "\n"; Message = "Found lli: " + LLIPath + "\n";
return new LLI(LLIPath); return new LLI(LLIPath, ToolArgs);
} }
Message = "Cannot find `lli' in executable directory or PATH!\n"; Message = "Cannot find `lli' in executable directory or PATH!\n";
@ -113,18 +123,28 @@ AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
// //
void LLC::OutputAsm(const std::string &Bytecode, std::string &OutputAsmFile) { void LLC::OutputAsm(const std::string &Bytecode, std::string &OutputAsmFile) {
OutputAsmFile = getUniqueFilename(Bytecode+".llc.s"); OutputAsmFile = getUniqueFilename(Bytecode+".llc.s");
const char *LLCArgs[] = { std::vector<const char *> LLCArgs;
LLCPath.c_str(), LLCArgs.push_back (LLCPath.c_str());
"-o", OutputAsmFile.c_str(), // Output to the Asm file
"-f", // Overwrite as necessary... // Add any extra LLC args.
Bytecode.c_str(), // This is the input bytecode for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
0 LLCArgs.push_back(ToolArgs[i].c_str());
};
LLCArgs.push_back ("-o");
LLCArgs.push_back (OutputAsmFile.c_str()); // Output to the Asm file
LLCArgs.push_back ("-f"); // Overwrite as necessary...
LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
LLCArgs.push_back (0);
std::cout << "<llc>" << std::flush; std::cout << "<llc>" << std::flush;
if (RunProgramWithTimeout(LLCPath, LLCArgs, "/dev/null", "/dev/null", DEBUG(std::cerr << "\nAbout to run:\t";
for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
std::cerr << " " << LLCArgs[i];
std::cerr << "\n";
);
if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
"/dev/null")) "/dev/null"))
ProcessFailure(LLCPath, LLCArgs); ProcessFailure(LLCPath, &LLCArgs[0]);
} }
void LLC::compileProgram(const std::string &Bytecode) { void LLC::compileProgram(const std::string &Bytecode) {
@ -151,7 +171,8 @@ int LLC::ExecuteProgram(const std::string &Bytecode,
/// createLLC - Try to find the LLC executable /// createLLC - Try to find the LLC executable
/// ///
LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath, LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *Args) {
std::string LLCPath = FindExecutable("llc", ProgramPath); std::string LLCPath = FindExecutable("llc", ProgramPath);
if (LLCPath.empty()) { if (LLCPath.empty()) {
Message = "Cannot find `llc' in executable directory or PATH!\n"; Message = "Cannot find `llc' in executable directory or PATH!\n";
@ -164,7 +185,7 @@ LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
std::cerr << Message << "\n"; std::cerr << Message << "\n";
exit(1); exit(1);
} }
return new LLC(LLCPath, gcc); return new LLC(LLCPath, gcc, Args);
} }
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//
@ -173,9 +194,13 @@ LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
namespace { namespace {
class JIT : public AbstractInterpreter { class JIT : public AbstractInterpreter {
std::string LLIPath; // The path to the LLI executable std::string LLIPath; // The path to the LLI executable
std::vector<std::string> ToolArgs; // Args to pass to LLI
public: public:
JIT(const std::string &Path) : LLIPath(Path) { } JIT(const std::string &Path, const std::vector<std::string> *Args)
: LLIPath(Path) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
virtual int ExecuteProgram(const std::string &Bytecode, virtual int ExecuteProgram(const std::string &Bytecode,
const std::vector<std::string> &Args, const std::vector<std::string> &Args,
@ -196,6 +221,10 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
JITArgs.push_back(LLIPath.c_str()); JITArgs.push_back(LLIPath.c_str());
JITArgs.push_back("-force-interpreter=false"); JITArgs.push_back("-force-interpreter=false");
// Add any extra LLI args.
for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
JITArgs.push_back(ToolArgs[i].c_str());
for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) { for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) {
JITArgs.push_back("-load"); JITArgs.push_back("-load");
JITArgs.push_back(SharedLibs[i].c_str()); JITArgs.push_back(SharedLibs[i].c_str());
@ -220,11 +249,11 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
/// createJIT - Try to find the LLI executable /// createJIT - Try to find the LLI executable
/// ///
AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath, AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
std::string &Message) { std::string &Message, const std::vector<std::string> *Args) {
std::string LLIPath = FindExecutable("lli", ProgPath); std::string LLIPath = FindExecutable("lli", ProgPath);
if (!LLIPath.empty()) { if (!LLIPath.empty()) {
Message = "Found lli: " + LLIPath + "\n"; Message = "Found lli: " + LLIPath + "\n";
return new JIT(LLIPath); return new JIT(LLIPath, Args);
} }
Message = "Cannot find `lli' in executable directory or PATH!\n"; Message = "Cannot find `lli' in executable directory or PATH!\n";
@ -234,19 +263,29 @@ AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
void CBE::OutputC(const std::string &Bytecode, void CBE::OutputC(const std::string &Bytecode,
std::string &OutputCFile) { std::string &OutputCFile) {
OutputCFile = getUniqueFilename(Bytecode+".cbe.c"); OutputCFile = getUniqueFilename(Bytecode+".cbe.c");
const char *LLCArgs[] = { std::vector<const char *> LLCArgs;
LLCPath.c_str(), LLCArgs.push_back (LLCPath.c_str());
"-o", OutputCFile.c_str(), // Output to the C file
"-march=c", // Output to C // Add any extra LLC args.
"-f", // Overwrite as necessary... for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
Bytecode.c_str(), // This is the input bytecode LLCArgs.push_back(ToolArgs[i].c_str());
0
}; LLCArgs.push_back ("-o");
LLCArgs.push_back (OutputCFile.c_str()); // Output to the C file
LLCArgs.push_back ("-march=c"); // Output C language
LLCArgs.push_back ("-f"); // Overwrite as necessary...
LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
LLCArgs.push_back (0);
std::cout << "<cbe>" << std::flush; std::cout << "<cbe>" << std::flush;
if (RunProgramWithTimeout(LLCPath, LLCArgs, "/dev/null", "/dev/null", DEBUG(std::cerr << "\nAbout to run:\t";
for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
std::cerr << " " << LLCArgs[i];
std::cerr << "\n";
);
if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
"/dev/null")) "/dev/null"))
ProcessFailure(LLCPath, LLCArgs); ProcessFailure(LLCPath, &LLCArgs[0]);
} }
void CBE::compileProgram(const std::string &Bytecode) { void CBE::compileProgram(const std::string &Bytecode) {
@ -272,7 +311,8 @@ int CBE::ExecuteProgram(const std::string &Bytecode,
/// createCBE - Try to find the 'llc' executable /// createCBE - Try to find the 'llc' executable
/// ///
CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath, CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
std::string &Message) { std::string &Message,
const std::vector<std::string> *Args) {
std::string LLCPath = FindExecutable("llc", ProgramPath); std::string LLCPath = FindExecutable("llc", ProgramPath);
if (LLCPath.empty()) { if (LLCPath.empty()) {
Message = Message =
@ -286,7 +326,7 @@ CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
std::cerr << Message << "\n"; std::cerr << Message << "\n";
exit(1); exit(1);
} }
return new CBE(LLCPath, gcc); return new CBE(LLCPath, gcc, Args);
} }
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//

View File

@ -80,14 +80,18 @@ public:
/// complexity behind a simple interface. /// complexity behind a simple interface.
/// ///
struct AbstractInterpreter { struct AbstractInterpreter {
static CBE* createCBE(const std::string &ProgramPath, std::string &Message); static CBE *createCBE(const std::string &ProgramPath, std::string &Message,
static LLC *createLLC(const std::string &ProgramPath, std::string &Message); const std::vector<std::string> *Args = 0);
static LLC *createLLC(const std::string &ProgramPath, std::string &Message,
const std::vector<std::string> *Args = 0);
static AbstractInterpreter* createLLI(const std::string &ProgramPath, static AbstractInterpreter* createLLI(const std::string &ProgramPath,
std::string &Message); std::string &Message,
const std::vector<std::string> *Args=0);
static AbstractInterpreter* createJIT(const std::string &ProgramPath, static AbstractInterpreter* createJIT(const std::string &ProgramPath,
std::string &Message); std::string &Message,
const std::vector<std::string> *Args=0);
virtual ~AbstractInterpreter() {} virtual ~AbstractInterpreter() {}
@ -114,9 +118,14 @@ struct AbstractInterpreter {
// //
class CBE : public AbstractInterpreter { class CBE : public AbstractInterpreter {
std::string LLCPath; // The path to the `llc' executable std::string LLCPath; // The path to the `llc' executable
std::vector<std::string> ToolArgs; // Extra args to pass to LLC
GCC *gcc; GCC *gcc;
public: public:
CBE(const std::string &llcPath, GCC *Gcc) : LLCPath(llcPath), gcc(Gcc) { } CBE(const std::string &llcPath, GCC *Gcc,
const std::vector<std::string> *Args) : LLCPath(llcPath), gcc(Gcc) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
~CBE() { delete gcc; } ~CBE() { delete gcc; }
/// compileProgram - Compile the specified program from bytecode to executable /// compileProgram - Compile the specified program from bytecode to executable
@ -145,13 +154,16 @@ public:
// //
class LLC : public AbstractInterpreter { class LLC : public AbstractInterpreter {
std::string LLCPath; // The path to the LLC executable std::string LLCPath; // The path to the LLC executable
std::vector<std::string> ToolArgs; // Extra args to pass to LLC
GCC *gcc; GCC *gcc;
public: public:
LLC(const std::string &llcPath, GCC *Gcc) LLC(const std::string &llcPath, GCC *Gcc,
: LLCPath(llcPath), gcc(Gcc) { } const std::vector<std::string> *Args) : LLCPath(llcPath), gcc(Gcc) {
ToolArgs.clear ();
if (Args) { ToolArgs.assign (Args->begin (), Args->end ()); }
}
~LLC() { delete gcc; } ~LLC() { delete gcc; }
/// compileProgram - Compile the specified program from bytecode to executable /// compileProgram - Compile the specified program from bytecode to executable
/// code. This does not produce any output, it is only used when debugging /// code. This does not produce any output, it is only used when debugging
/// the code generator. If the code generator fails, an exception should be /// the code generator. If the code generator fails, an exception should be