aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-01-20 21:17:57 +0000
committerBill Wendling <isanbard@gmail.com>2009-01-20 21:17:57 +0000
commite9a7286087a87cc1c5fe03453ca087f7b1a30271 (patch)
tree34f7f32097d74f5427851d116fdf5c55aff1ed67 /lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
parent2be5893a0417313813739940b0347755234d2cc3 (diff)
Use "SINT_TO_FP" instead of "UINT_TO_FP" when getting the exponent. This was
causing the limited precision stuff to produce the wrong result for values in the range [0, 1). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
index ea2156b2e4..b134b23489 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp
@@ -2945,26 +2945,27 @@ void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
/// where Op is the hexidecimal representation of floating point value.
static SDValue
GetSignificand(SelectionDAG &DAG, SDValue Op) {
- SDValue t1 = DAG.getNode(ISD::AND, MVT::i32, Op,
- DAG.getConstant(0x007fffff, MVT::i32));
- SDValue t2 = DAG.getNode(ISD::OR, MVT::i32, t1,
- DAG.getConstant(0x3f800000, MVT::i32));
- return DAG.getNode(ISD::BIT_CONVERT, MVT::f32, t2);
+ SDValue t1 = DAG.getNode(ISD::AND, MVT::i32, Op,
+ DAG.getConstant(0x007fffff, MVT::i32));
+ SDValue t2 = DAG.getNode(ISD::OR, MVT::i32, t1,
+ DAG.getConstant(0x3f800000, MVT::i32));
+ return DAG.getNode(ISD::BIT_CONVERT, MVT::f32, t2);
}
/// GetExponent - Get the exponent:
///
-/// (float)((Op1 >> 23) - 127);
+/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
///
/// where Op is the hexidecimal representation of floating point value.
static SDValue
GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI) {
- SDValue t1 = DAG.getNode(ISD::SRL, MVT::i32, Op,
- DAG.getConstant(23, TLI.getShiftAmountTy()));
- SDValue t2 = DAG.getNode(ISD::SUB, MVT::i32, t1,
- DAG.getConstant(127, MVT::i32));
- // SDValue t3 = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, t2);
- return DAG.getNode(ISD::UINT_TO_FP, MVT::f32, t2);
+ SDValue t0 = DAG.getNode(ISD::AND, MVT::i32, Op,
+ DAG.getConstant(0x7f800000, MVT::i32));
+ SDValue t1 = DAG.getNode(ISD::SRL, MVT::i32, t0,
+ DAG.getConstant(23, TLI.getShiftAmountTy()));
+ SDValue t2 = DAG.getNode(ISD::SUB, MVT::i32, t1,
+ DAG.getConstant(127, MVT::i32));
+ return DAG.getNode(ISD::SINT_TO_FP, MVT::f32, t2);
}
/// getF32Constant - Get 32-bit floating point constant.