HomeSort by relevance Sort by last modified time
    Searched refs:SETCC (Results 26 - 33 of 33) sorted by null

12

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 72 case ISD::SETCC: Res = PromoteIntRes_SETCC(N); break;
522 // Promote all the way up to the canonical SetCC type.
563 // Get the SETCC result using the canonical SETCC type.
564 SDValue SetCC = DAG.getNode(N->getOpcode(), dl, SVT, LHS, RHS,
569 return DAG.getNode(ISD::TRUNCATE, dl, NVT, SetCC);
    [all...]
SelectionDAG.cpp 264 /// 'op' is a valid SetCC operation.
284 default: llvm_unreachable("Illegal integer setcc operation!");
305 // Cannot fold a signed integer setcc with an unsigned integer setcc.
315 // Canonicalize illegal integer setcc's.
329 // Cannot fold a signed setcc with an unsigned setcc.
335 // Canonicalize illegal integer setcc's.
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 681 /// getSetCC - Helper function to make it easier to build SetCC's if you just
691 "Cannot create a setCC of an invalid node.");
692 return getNode(ISD::SETCC, DL, VT, LHS, RHS, getCondCode(Cond));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 101 setOperationAction(ISD::SETCC, VT, Custom);
453 // FIXME: Code duplication: SETCC has custom operation action, see
455 setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
521 setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
522 setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 242 // PowerPC wants to optimize integer setcc a bit
244 setOperationAction(ISD::SETCC, MVT::i32, Custom);
246 // PowerPC does not have BRCOND which requires SetCC
590 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
655 setTargetDAGCombine(ISD::SETCC);
    [all...]
PPCISelDAGToDAG.cpp 619 /// associated with the SetCC condition, and whether or not the field is
753 // We can codegen setcc op, imm very efficiently compared to a brcond.
755 // setcc op, 0
785 } else if (Imm == ~0U) { // setcc op, -1
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 125 setOperationAction(ISD::SETCC, VT, Custom);
    [all...]

Completed in 547 milliseconds

12