mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Fix double and long alignment.
Call the FPMover pass after register allocation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16573 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b27df44b62
commit
8a9acd1e31
@ -31,7 +31,7 @@ namespace {
|
|||||||
///
|
///
|
||||||
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
||||||
IntrinsicLowering *IL)
|
IntrinsicLowering *IL)
|
||||||
: TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4),
|
: TargetMachine("SparcV8", IL, false, 4, 4, 8, 4, 8),
|
||||||
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,6 +74,7 @@ bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
||||||
|
|
||||||
|
PM.add(createSparcV8FPMoverPass(*this));
|
||||||
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
||||||
|
|
||||||
// Print machine instructions after filling delay slots.
|
// Print machine instructions after filling delay slots.
|
||||||
@ -126,6 +127,7 @@ void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
||||||
|
|
||||||
|
PM.add(createSparcV8FPMoverPass(TM));
|
||||||
PM.add(createSparcV8DelaySlotFillerPass(TM));
|
PM.add(createSparcV8DelaySlotFillerPass(TM));
|
||||||
|
|
||||||
// Print machine instructions after filling delay slots.
|
// Print machine instructions after filling delay slots.
|
||||||
|
@ -31,7 +31,7 @@ namespace {
|
|||||||
///
|
///
|
||||||
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
||||||
IntrinsicLowering *IL)
|
IntrinsicLowering *IL)
|
||||||
: TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4),
|
: TargetMachine("SparcV8", IL, false, 4, 4, 8, 4, 8),
|
||||||
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,6 +74,7 @@ bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
||||||
|
|
||||||
|
PM.add(createSparcV8FPMoverPass(*this));
|
||||||
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
||||||
|
|
||||||
// Print machine instructions after filling delay slots.
|
// Print machine instructions after filling delay slots.
|
||||||
@ -126,6 +127,7 @@ void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
|||||||
if (PrintMachineCode)
|
if (PrintMachineCode)
|
||||||
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
||||||
|
|
||||||
|
PM.add(createSparcV8FPMoverPass(TM));
|
||||||
PM.add(createSparcV8DelaySlotFillerPass(TM));
|
PM.add(createSparcV8DelaySlotFillerPass(TM));
|
||||||
|
|
||||||
// Print machine instructions after filling delay slots.
|
// Print machine instructions after filling delay slots.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user