Searched refs:SetCC (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Mips/
H A DMipsISelLowering.cpp650 SDValue SetCC = N->getOperand(0);
652 if ((SetCC.getOpcode() != ISD::SETCC) ||
653 !SetCC.getOperand(0).getValueType().isInteger())
668 ISD::CondCode CC = cast<CondCodeSDNode>(SetCC.getOperand(2))->get();
671 SetCC = DAG.getSetCC(DL, SetCC.getValueType(), SetCC.getOperand(0),
672 SetCC.getOperand(1), ISD::getSetCCInverse(CC, true));
674 return DAG.getNode(ISD::SELECT, DL, FalseTy, SetCC, False, True);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86ISelLowering.cpp8787 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
9867 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, local
9869 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10056 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test); local
10057 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10213 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, local
10216 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11078 SDValue SetCC = local
11083 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
11091 SDValue SetCC local
14360 SDValue SetCC; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp563 // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
3368 llvm_unreachable("Unhandled SetCC Equivalent!");
4228 // Extend SetCC uses if necessary.
4230 SDNode *SetCC = SetCCs[i]; local
4234 SDValue SOp = SetCC->getOperand(j);
4241 Ops.push_back(SetCC->getOperand(2));
4242 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
6587 SDValue SetCC = local
6594 MVT::Other, Chain, SetCC, N
6654 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(), local
[all...]
H A DLegalizeIntegerTypes.cpp494 // Promote all the way up to the canonical SetCC type.
525 SDValue SetCC = DAG.getNode(N->getOpcode(), dl, SVT, N->getOperand(0), local
530 return DAG.getNode(ISD::TRUNCATE, dl, NVT, SetCC);
882 // Promote all the way up to the canonical SetCC type.
985 // Promote all the way up to the canonical SetCC type.

Completed in 401 milliseconds