aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-10-05 06:00:33 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-10-05 06:00:33 +0000
commit2bbb76909126db5bed6bde84b16d94ab5de4d372 (patch)
tree96a37c6be85c9fb9cd5d479fe0b9f113c15a29d8
parent434c7cb8a19c57f25791b9789b630934ba53c621 (diff)
Cleanup Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115593 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMBaseInstrInfo.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/Target/ARM/ARMBaseInstrInfo.cpp b/lib/Target/ARM/ARMBaseInstrInfo.cpp
index 6034b4a114..2d729bfdca 100644
--- a/lib/Target/ARM/ARMBaseInstrInfo.cpp
+++ b/lib/Target/ARM/ARMBaseInstrInfo.cpp
@@ -230,7 +230,7 @@ ARMBaseInstrInfo::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
MBB.addLiveIn(Reg);
// Insert the spill to the stack frame. The register is killed at the spill
- //
+ //
const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
storeRegToStackSlot(MBB, MI, Reg, isKill,
CSI[i].getFrameIdx(), RC, TRI);
@@ -1205,7 +1205,7 @@ bool ARMBaseInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB,
float Confidence) const {
if (!NumInstrs)
return false;
-
+
// Use old-style heuristics
if (OldARMIfCvt) {
if (Subtarget.getCPUString() == "generic")
@@ -1215,18 +1215,18 @@ bool ARMBaseInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB,
return NumInstrs <= 3;
return NumInstrs <= 2;
}
-
+
// Attempt to estimate the relative costs of predication versus branching.
float UnpredCost = Probability * NumInstrs;
UnpredCost += 1.0; // The branch itself
UnpredCost += (1.0 - Confidence) * Subtarget.getMispredictionPenalty();
-
+
float PredCost = NumInstrs;
-
+
return PredCost < UnpredCost;
-
+
}
-
+
bool ARMBaseInstrInfo::
isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumT,
MachineBasicBlock &FMBB, unsigned NumF,
@@ -1238,14 +1238,14 @@ isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumT,
if (!NumT || !NumF)
return false;
-
+
// Attempt to estimate the relative costs of predication versus branching.
float UnpredCost = Probability * NumT + (1.0 - Probability) * NumF;
UnpredCost += 1.0; // The branch itself
UnpredCost += (1.0 - Confidence) * Subtarget.getMispredictionPenalty();
-
+
float PredCost = NumT + NumF;
-
+
return PredCost < UnpredCost;
}
@@ -1637,7 +1637,7 @@ ARMBaseInstrInfo::getNumMicroOps(const MachineInstr *MI,
} else {
// Assume the worst.
return NumRegs;
- }
+ }
}
}
}