@@ -421,9 +421,13 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
421
421
setOperationAction(ISD::SETCC , MVT::f32 , Custom);
422
422
setOperationAction(ISD::SETCC , MVT::f64 , Custom);
423
423
setOperationAction(ISD::SETCC , MVT::f80 , Custom);
424
+ setOperationAction(ISD::SETCCE , MVT::i8 , Custom);
425
+ setOperationAction(ISD::SETCCE , MVT::i16 , Custom);
426
+ setOperationAction(ISD::SETCCE , MVT::i32 , Custom);
424
427
if (Subtarget->is64Bit()) {
425
428
setOperationAction(ISD::SELECT , MVT::i64 , Custom);
426
429
setOperationAction(ISD::SETCC , MVT::i64 , Custom);
430
+ setOperationAction(ISD::SETCCE , MVT::i64 , Custom);
427
431
}
428
432
setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
429
433
// NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
@@ -3957,6 +3961,22 @@ static bool isX86CCUnsigned(unsigned X86CC) {
3957
3961
}
3958
3962
}
3959
3963
3964
+ static X86::CondCode TranslateIntegerX86CC(ISD::CondCode SetCCOpcode) {
3965
+ switch (SetCCOpcode) {
3966
+ default: llvm_unreachable("Invalid integer condition!");
3967
+ case ISD::SETEQ: return X86::COND_E;
3968
+ case ISD::SETGT: return X86::COND_G;
3969
+ case ISD::SETGE: return X86::COND_GE;
3970
+ case ISD::SETLT: return X86::COND_L;
3971
+ case ISD::SETLE: return X86::COND_LE;
3972
+ case ISD::SETNE: return X86::COND_NE;
3973
+ case ISD::SETULT: return X86::COND_B;
3974
+ case ISD::SETUGT: return X86::COND_A;
3975
+ case ISD::SETULE: return X86::COND_BE;
3976
+ case ISD::SETUGE: return X86::COND_AE;
3977
+ }
3978
+ }
3979
+
3960
3980
/// Do a one-to-one translation of a ISD::CondCode to the X86-specific
3961
3981
/// condition code, returning the condition code and the LHS/RHS of the
3962
3982
/// comparison to make.
@@ -3980,19 +4000,7 @@ static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, SDLoc DL, bool isFP,
3980
4000
}
3981
4001
}
3982
4002
3983
- switch (SetCCOpcode) {
3984
- default: llvm_unreachable("Invalid integer condition!");
3985
- case ISD::SETEQ: return X86::COND_E;
3986
- case ISD::SETGT: return X86::COND_G;
3987
- case ISD::SETGE: return X86::COND_GE;
3988
- case ISD::SETLT: return X86::COND_L;
3989
- case ISD::SETLE: return X86::COND_LE;
3990
- case ISD::SETNE: return X86::COND_NE;
3991
- case ISD::SETULT: return X86::COND_B;
3992
- case ISD::SETUGT: return X86::COND_A;
3993
- case ISD::SETULE: return X86::COND_BE;
3994
- case ISD::SETUGE: return X86::COND_AE;
3995
- }
4003
+ return TranslateIntegerX86CC(SetCCOpcode);
3996
4004
}
3997
4005
3998
4006
// First determine if it is required or is profitable to flip the operands.
@@ -14576,6 +14584,23 @@ SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
14576
14584
return SetCC;
14577
14585
}
14578
14586
14587
+ SDValue X86TargetLowering::LowerSETCCE(SDValue Op, SelectionDAG &DAG) const {
14588
+ SDValue LHS = Op.getOperand(0);
14589
+ SDValue RHS = Op.getOperand(1);
14590
+ SDValue Carry = Op.getOperand(2);
14591
+ SDValue Cond = Op.getOperand(3);
14592
+ SDLoc DL(Op);
14593
+
14594
+ assert(LHS.getSimpleValueType().isInteger() && "SETCCE is integer only.");
14595
+ X86::CondCode CC = TranslateIntegerX86CC(cast<CondCodeSDNode>(Cond)->get());
14596
+
14597
+ assert(Carry.getOpcode() != ISD::CARRY_FALSE);
14598
+ SDVTList VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
14599
+ SDValue Cmp = DAG.getNode(X86ISD::SBB, DL, VTs, LHS, RHS, Carry);
14600
+ return DAG.getNode(X86ISD::SETCC, DL, Op.getValueType(),
14601
+ DAG.getConstant(CC, DL, MVT::i8), Cmp.getValue(1));
14602
+ }
14603
+
14579
14604
// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
14580
14605
static bool isX86LogicalCmp(SDValue Op) {
14581
14606
unsigned Opc = Op.getNode()->getOpcode();
@@ -19685,6 +19710,7 @@ SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
19685
19710
case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
19686
19711
case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
19687
19712
case ISD::SETCC: return LowerSETCC(Op, DAG);
19713
+ case ISD::SETCCE: return LowerSETCCE(Op, DAG);
19688
19714
case ISD::SELECT: return LowerSELECT(Op, DAG);
19689
19715
case ISD::BRCOND: return LowerBRCOND(Op, DAG);
19690
19716
case ISD::JumpTable: return LowerJumpTable(Op, DAG);
0 commit comments