mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
* Move InstructionSelection pass to lib/CodeGen/InstrSelection so it is
shared by backends. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -12,7 +12,6 @@
|
|||||||
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
||||||
#include "llvm/CodeGen/MachineCodeForMethod.h"
|
#include "llvm/CodeGen/MachineCodeForMethod.h"
|
||||||
#include "llvm/CodeGen/RegisterAllocation.h"
|
#include "llvm/CodeGen/RegisterAllocation.h"
|
||||||
//#include "llvm/CodeGen/MappingInfo.h"
|
|
||||||
#include "llvm/Function.h"
|
#include "llvm/Function.h"
|
||||||
#include "llvm/BasicBlock.h"
|
#include "llvm/BasicBlock.h"
|
||||||
#include "llvm/PassManager.h"
|
#include "llvm/PassManager.h"
|
||||||
@@ -142,22 +141,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class InstructionSelection : public FunctionPass {
|
|
||||||
TargetMachine &Target;
|
|
||||||
public:
|
|
||||||
inline InstructionSelection(TargetMachine &T) : Target(T) {}
|
|
||||||
const char *getPassName() const { return "Sparc Instruction Selection"; }
|
|
||||||
|
|
||||||
bool runOnFunction(Function &F) {
|
|
||||||
if (SelectInstructionsForMethod(&F, Target)) {
|
|
||||||
cerr << "Instr selection failed for function " << F.getName() << "\n";
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
struct FreeMachineCodeForFunction : public FunctionPass {
|
struct FreeMachineCodeForFunction : public FunctionPass {
|
||||||
const char *getPassName() const { return "Sparc FreeMachineCodeForFunction"; }
|
const char *getPassName() const { return "Sparc FreeMachineCodeForFunction"; }
|
||||||
|
|
||||||
@@ -184,7 +167,7 @@ void UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) {
|
|||||||
// Construct and initialize the MachineCodeForMethod object for this fn.
|
// Construct and initialize the MachineCodeForMethod object for this fn.
|
||||||
PM.add(new ConstructMachineCodeForFunction(*this));
|
PM.add(new ConstructMachineCodeForFunction(*this));
|
||||||
|
|
||||||
PM.add(new InstructionSelection(*this));
|
PM.add(createInstructionSelectionPass(*this));
|
||||||
|
|
||||||
PM.add(createInstructionSchedulingWithSSAPass(*this));
|
PM.add(createInstructionSchedulingWithSSAPass(*this));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user