mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Emit abs.s or abs.d only if -enable-no-nans-fp-math is supplied by user.
Invalid operation is signaled if the operand of these instructions is NaN. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -147,6 +147,11 @@ MipsTargetLowering(MipsTargetMachine &TM)
|
||||
setOperationAction(ISD::MEMBARRIER, MVT::Other, Custom);
|
||||
setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
|
||||
|
||||
if (!TM.Options.NoNaNsFPMath) {
|
||||
setOperationAction(ISD::FABS, MVT::f32, Custom);
|
||||
setOperationAction(ISD::FABS, MVT::f64, Custom);
|
||||
}
|
||||
|
||||
if (HasMips64) {
|
||||
setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
|
||||
setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
|
||||
@@ -734,6 +739,7 @@ LowerOperation(SDValue Op, SelectionDAG &DAG) const
|
||||
case ISD::SETCC: return LowerSETCC(Op, DAG);
|
||||
case ISD::VASTART: return LowerVASTART(Op, DAG);
|
||||
case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
|
||||
case ISD::FABS: return LowerFABS(Op, DAG);
|
||||
case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
|
||||
case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, DAG);
|
||||
case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG);
|
||||
@@ -1857,6 +1863,63 @@ MipsTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
|
||||
return LowerFCOPYSIGN32(Op, DAG, Subtarget->hasMips32r2());
|
||||
}
|
||||
|
||||
static SDValue LowerFABS32(SDValue Op, SelectionDAG &DAG, bool HasR2) {
|
||||
SDValue Res, Const1 = DAG.getConstant(1, MVT::i32);
|
||||
DebugLoc DL = Op.getDebugLoc();
|
||||
|
||||
// If operand is of type f64, extract the upper 32-bit. Otherwise, bitcast it
|
||||
// to i32.
|
||||
SDValue X = (Op.getValueType() == MVT::f32) ?
|
||||
DAG.getNode(ISD::BITCAST, DL, MVT::i32, Op.getOperand(0)) :
|
||||
DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32, Op.getOperand(0),
|
||||
Const1);
|
||||
|
||||
// Clear MSB.
|
||||
if (HasR2)
|
||||
Res = DAG.getNode(MipsISD::Ins, DL, MVT::i32,
|
||||
DAG.getRegister(Mips::ZERO, MVT::i32),
|
||||
DAG.getConstant(31, MVT::i32), Const1, X);
|
||||
else {
|
||||
SDValue SllX = DAG.getNode(ISD::SHL, DL, MVT::i32, X, Const1);
|
||||
Res = DAG.getNode(ISD::SRL, DL, MVT::i32, SllX, Const1);
|
||||
}
|
||||
|
||||
if (Op.getValueType() == MVT::f32)
|
||||
return DAG.getNode(ISD::BITCAST, DL, MVT::f32, Res);
|
||||
|
||||
SDValue LowX = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
|
||||
Op.getOperand(0), DAG.getConstant(0, MVT::i32));
|
||||
return DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, LowX, Res);
|
||||
}
|
||||
|
||||
static SDValue LowerFABS64(SDValue Op, SelectionDAG &DAG, bool HasR2) {
|
||||
SDValue Res, Const1 = DAG.getConstant(1, MVT::i32);
|
||||
DebugLoc DL = Op.getDebugLoc();
|
||||
|
||||
// Bitcast to integer node.
|
||||
SDValue X = DAG.getNode(ISD::BITCAST, DL, MVT::i64, Op.getOperand(0));
|
||||
|
||||
// Clear MSB.
|
||||
if (HasR2)
|
||||
Res = DAG.getNode(MipsISD::Ins, DL, MVT::i64,
|
||||
DAG.getRegister(Mips::ZERO_64, MVT::i64),
|
||||
DAG.getConstant(63, MVT::i32), Const1, X);
|
||||
else {
|
||||
SDValue SllX = DAG.getNode(ISD::SHL, DL, MVT::i64, X, Const1);
|
||||
Res = DAG.getNode(ISD::SRL, DL, MVT::i64, SllX, Const1);
|
||||
}
|
||||
|
||||
return DAG.getNode(ISD::BITCAST, DL, MVT::f64, Res);
|
||||
}
|
||||
|
||||
SDValue
|
||||
MipsTargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
|
||||
if (Subtarget->hasMips64() && (Op.getValueType() == MVT::f64))
|
||||
return LowerFABS64(Op, DAG, Subtarget->hasMips32r2());
|
||||
|
||||
return LowerFABS32(Op, DAG, Subtarget->hasMips32r2());
|
||||
}
|
||||
|
||||
SDValue MipsTargetLowering::
|
||||
LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
|
||||
// check the depth
|
||||
|
Reference in New Issue
Block a user