mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Make the spelling of the flags for old-style if-conversion heuristics consistent between ARM and Thumb2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115341 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aa9f0a57d0
commit
00d4f48168
@ -41,7 +41,7 @@ EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
|
|||||||
cl::desc("Enable ARM 2-addr to 3-addr conv"));
|
cl::desc("Enable ARM 2-addr to 3-addr conv"));
|
||||||
|
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
OldARMIfConv("old-arm-if-conversion", cl::Hidden,
|
OldARMIfCvt("old-arm-ifcvt", cl::Hidden,
|
||||||
cl::desc("Use old-style ARM if-conversion heuristics"));
|
cl::desc("Use old-style ARM if-conversion heuristics"));
|
||||||
|
|
||||||
ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
|
ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
|
||||||
@ -1206,11 +1206,11 @@ bool ARMBaseInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB,
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Use old-style heuristics
|
// Use old-style heuristics
|
||||||
if (OldARMIfConv) {
|
if (OldARMIfCvt) {
|
||||||
if (Subtarget.getCPUString() == "generic")
|
if (Subtarget.getCPUString() == "generic")
|
||||||
// Generic (and overly aggressive) if-conversion limits for testing.
|
// Generic (and overly aggressive) if-conversion limits for testing.
|
||||||
return NumInstrs <= 10;
|
return NumInstrs <= 10;
|
||||||
else if (Subtarget.hasV7Ops())
|
if (Subtarget.hasV7Ops())
|
||||||
return NumInstrs <= 3;
|
return NumInstrs <= 3;
|
||||||
return NumInstrs <= 2;
|
return NumInstrs <= 2;
|
||||||
}
|
}
|
||||||
@ -1231,7 +1231,7 @@ isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumT,
|
|||||||
MachineBasicBlock &FMBB, unsigned NumF,
|
MachineBasicBlock &FMBB, unsigned NumF,
|
||||||
float Probability) const {
|
float Probability) const {
|
||||||
// Use old-style if-conversion heuristics
|
// Use old-style if-conversion heuristics
|
||||||
if (OldARMIfConv) {
|
if (OldARMIfCvt) {
|
||||||
return NumT && NumF && NumT <= 2 && NumF <= 2;
|
return NumT && NumF && NumT <= 2 && NumF <= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user