Skip to content

Commit 8a772cf

Browse files
committed
[SPARC] Switch to the Machine Scheduler.
The (mostly-deprecated) SelectionDAG-based ILPListDAGScheduler scheduler was making poor scheduling decisions, causing high register pressure and extraneous register spills. Switching to the newer machine scheduler generates better code -- even without there being a machine model defined for SPARC yet. llvm-svn: 247315
1 parent ddb4d97 commit 8a772cf

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

llvm/lib/Target/Sparc/SparcSubtarget.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,7 @@ int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
8181
}
8282
return frameSize;
8383
}
84+
85+
bool SparcSubtarget::enableMachineScheduler() const {
86+
return true;
87+
}

llvm/lib/Target/Sparc/SparcSubtarget.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ class SparcSubtarget : public SparcGenSubtargetInfo {
6060
return &TSInfo;
6161
}
6262

63+
bool enableMachineScheduler() const override;
64+
6365
bool isV9() const { return IsV9; }
6466
bool isVIS() const { return IsVIS; }
6567
bool isVIS2() const { return IsVIS2; }
@@ -85,7 +87,6 @@ class SparcSubtarget : public SparcGenSubtargetInfo {
8587
/// returns adjusted framesize which includes space for register window
8688
/// spills and arguments.
8789
int getAdjustedFrameSize(int stackSize) const;
88-
8990
};
9091

9192
} // end namespace llvm

0 commit comments

Comments
 (0)