mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 02:07:56 +00:00
Clean up driver
llvm-svn: 492
This commit is contained in:
parent
faedbcfe71
commit
df5b2e934f
@ -11,55 +11,44 @@
|
||||
//
|
||||
//**************************************************************************/
|
||||
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Method.h"
|
||||
#include "llvm/Bytecode/Reader.h"
|
||||
#include "llvm/Optimizations/Normalize.h"
|
||||
#include "llvm/CodeGen/InstrSelection.h"
|
||||
#include "llvm/CodeGen/InstrScheduling.h"
|
||||
#include "llvm/CodeGen/Sparc.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Method.h"
|
||||
|
||||
cl::String InputFilename ("", "Input filename", cl::NoFlags, "-");
|
||||
cl::String OutputFilename("o", "Output filename", cl::NoFlags, "");
|
||||
|
||||
|
||||
void
|
||||
NormalizeMethod(Method* method)
|
||||
{
|
||||
static void NormalizeMethod(Method* method) {
|
||||
NormalizePhiConstantArgs(method);
|
||||
}
|
||||
|
||||
|
||||
static bool
|
||||
CompileModule(Module *M, TargetMachine &target)
|
||||
{
|
||||
bool failed = false;
|
||||
|
||||
for (Module::const_iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
|
||||
{
|
||||
Method* method = *MI;
|
||||
static bool CompileModule(Module *M, TargetMachine &Target) {
|
||||
for (Module::const_iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI) {
|
||||
Method *Meth = *MI;
|
||||
|
||||
NormalizeMethod(method);
|
||||
NormalizeMethod(Meth);
|
||||
|
||||
failed = SelectInstructionsForMethod(method, target);
|
||||
if (failed)
|
||||
{
|
||||
cerr << "Instruction selection failed for method "
|
||||
<< method->getName() << "\n\n";
|
||||
break;
|
||||
}
|
||||
|
||||
failed = ScheduleInstructionsWithSSA(method, target);
|
||||
if (failed)
|
||||
{
|
||||
cerr << "Instruction scheduling before allocation failed for method "
|
||||
<< method->getName() << "\n\n";
|
||||
break;
|
||||
}
|
||||
if (SelectInstructionsForMethod(Meth, Target)) {
|
||||
cerr << "Instruction selection failed for method "
|
||||
<< Meth->getName() << "\n\n";
|
||||
return true;
|
||||
}
|
||||
|
||||
if (ScheduleInstructionsWithSSA(Meth, Target)) {
|
||||
cerr << "Instruction scheduling before allocation failed for method "
|
||||
<< Meth->getName() << "\n\n";
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return failed;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -70,11 +59,9 @@ CompileModule(Module *M, TargetMachine &target)
|
||||
// Entry point for the llc compiler.
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
int
|
||||
main(int argc, char** argv)
|
||||
{
|
||||
int main(int argc, char** argv) {
|
||||
cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n");
|
||||
UltraSparc target;
|
||||
UltraSparc Target;
|
||||
|
||||
Module *module = ParseBytecodeFile(InputFilename);
|
||||
if (module == 0) {
|
||||
@ -82,7 +69,7 @@ main(int argc, char** argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (CompileModule(module, target)) {
|
||||
if (CompileModule(module, Target)) {
|
||||
cerr << "Error compiling " << InputFilename << "!\n";
|
||||
delete module;
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user