Home
last modified time | relevance | path

Searched refs:FalseOp (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.h121 unsigned &FalseOp, bool &Optimizable) const override;
H A DLanaiInstrInfo.cpp440 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
449 FalseOp = 2; in analyzeSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h148 unsigned &FalseOp, bool &Optimizable) const override;
H A DRISCVInstrInfo.cpp1375 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
1387 FalseOp = 4; in analyzeSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp2002 auto *FalseOp = dyn_cast<ConstantSDNode>(Node->getOperand(1)); in expandSelectBoolean() local
2003 if (!TrueOp || !FalseOp) in expandSelectBoolean()
2005 if (FalseOp->getZExtValue() != 0) in expandSelectBoolean()
H A DSystemZISelLowering.cpp3480 SDValue FalseOp = Op.getOperand(3); in lowerSELECT_CC() local
3494 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC()
3496 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC()
3497 return getAbsolute(DAG, DL, FalseOp, C.CCMask & SystemZ::CCMASK_CMP_GT); in lowerSELECT_CC()
3501 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC()
6676 auto *FalseOp = dyn_cast<ConstantSDNode>(N0.getOperand(1)); in combineZERO_EXTEND() local
6677 if (TrueOp && FalseOp) { in combineZERO_EXTEND()
6680 DAG.getConstant(FalseOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp691 unsigned FalseOp = 0; in optimizeSelect() local
694 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable)) in optimizeSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h310 unsigned &FalseOp, bool &Optimizable) const override;
H A DARMBaseInstrInfo.cpp2321 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
2332 FalseOp = 2; in analyzeSelect()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h984 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp47244 SDValue FalseOp = N->getOperand(0); in combineCMov() local
47250 if (TrueOp == FalseOp) in combineCMov()
47256 if (!(FalseOp.getValueType() == MVT::f80 || in combineCMov()
47257 (FalseOp.getValueType() == MVT::f64 && !Subtarget.hasSSE2()) || in combineCMov()
47258 (FalseOp.getValueType() == MVT::f32 && !Subtarget.hasSSE1())) || in combineCMov()
47260 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov()
47270 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov()
47276 std::swap(TrueOp, FalseOp); in combineCMov()
47374 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov()
47376 std::swap(TrueOp, FalseOp); in combineCMov()
[all …]