mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 14:15:53 +00:00
remove the V8 simple isel
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2c6d99cbf8
commit
bb978c7e98
@ -22,7 +22,6 @@ namespace llvm {
|
|||||||
class FunctionPass;
|
class FunctionPass;
|
||||||
class TargetMachine;
|
class TargetMachine;
|
||||||
|
|
||||||
FunctionPass *createSparcV8SimpleInstructionSelector(TargetMachine &TM);
|
|
||||||
FunctionPass *createSparcV8ISelDag(TargetMachine &TM);
|
FunctionPass *createSparcV8ISelDag(TargetMachine &TM);
|
||||||
|
|
||||||
FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS,
|
FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS,
|
||||||
|
@ -27,10 +27,6 @@ using namespace llvm;
|
|||||||
namespace {
|
namespace {
|
||||||
// Register the target.
|
// Register the target.
|
||||||
RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
|
RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
|
||||||
|
|
||||||
cl::opt<bool> EnableV8DAGDAG("enable-v8-dag-isel", cl::Hidden,
|
|
||||||
cl::desc("Enable DAG-to-DAG isel for V8"),
|
|
||||||
cl::init(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
||||||
@ -83,18 +79,10 @@ bool SparcV8TargetMachine::addPassesToEmitFile(PassManager &PM,
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(new PrintFunctionPass());
|
PM.add(new PrintFunctionPass());
|
||||||
|
|
||||||
if (!EnableV8DAGDAG) {
|
|
||||||
// Replace malloc and free instructions with library calls.
|
|
||||||
PM.add(createLowerAllocationsPass());
|
|
||||||
PM.add(createLowerSelectPass());
|
|
||||||
// Make sure that no unreachable blocks are instruction selected.
|
|
||||||
PM.add(createUnreachableBlockEliminationPass());
|
|
||||||
PM.add(createSparcV8SimpleInstructionSelector(*this));
|
|
||||||
} else {
|
|
||||||
// Make sure that no unreachable blocks are instruction selected.
|
// Make sure that no unreachable blocks are instruction selected.
|
||||||
PM.add(createUnreachableBlockEliminationPass());
|
PM.add(createUnreachableBlockEliminationPass());
|
||||||
|
|
||||||
PM.add(createSparcV8ISelDag(*this));
|
PM.add(createSparcV8ISelDag(*this));
|
||||||
}
|
|
||||||
|
|
||||||
// Print machine instructions as they were initially generated.
|
// Print machine instructions as they were initially generated.
|
||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -22,7 +22,6 @@ namespace llvm {
|
|||||||
class FunctionPass;
|
class FunctionPass;
|
||||||
class TargetMachine;
|
class TargetMachine;
|
||||||
|
|
||||||
FunctionPass *createSparcV8SimpleInstructionSelector(TargetMachine &TM);
|
|
||||||
FunctionPass *createSparcV8ISelDag(TargetMachine &TM);
|
FunctionPass *createSparcV8ISelDag(TargetMachine &TM);
|
||||||
|
|
||||||
FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS,
|
FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS,
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -27,10 +27,6 @@ using namespace llvm;
|
|||||||
namespace {
|
namespace {
|
||||||
// Register the target.
|
// Register the target.
|
||||||
RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
|
RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
|
||||||
|
|
||||||
cl::opt<bool> EnableV8DAGDAG("enable-v8-dag-isel", cl::Hidden,
|
|
||||||
cl::desc("Enable DAG-to-DAG isel for V8"),
|
|
||||||
cl::init(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
||||||
@ -83,18 +79,10 @@ bool SparcV8TargetMachine::addPassesToEmitFile(PassManager &PM,
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(new PrintFunctionPass());
|
PM.add(new PrintFunctionPass());
|
||||||
|
|
||||||
if (!EnableV8DAGDAG) {
|
|
||||||
// Replace malloc and free instructions with library calls.
|
|
||||||
PM.add(createLowerAllocationsPass());
|
|
||||||
PM.add(createLowerSelectPass());
|
|
||||||
// Make sure that no unreachable blocks are instruction selected.
|
|
||||||
PM.add(createUnreachableBlockEliminationPass());
|
|
||||||
PM.add(createSparcV8SimpleInstructionSelector(*this));
|
|
||||||
} else {
|
|
||||||
// Make sure that no unreachable blocks are instruction selected.
|
// Make sure that no unreachable blocks are instruction selected.
|
||||||
PM.add(createUnreachableBlockEliminationPass());
|
PM.add(createUnreachableBlockEliminationPass());
|
||||||
|
|
||||||
PM.add(createSparcV8ISelDag(*this));
|
PM.add(createSparcV8ISelDag(*this));
|
||||||
}
|
|
||||||
|
|
||||||
// Print machine instructions as they were initially generated.
|
// Print machine instructions as they were initially generated.
|
||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
|
Loading…
Reference in New Issue
Block a user