Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1874 auto *FalseOp = dyn_cast<ConstantSDNode>(Node->getOperand(1)); in expandSelectBoolean() local
1875 if (!TrueOp || !FalseOp) in expandSelectBoolean()
1877 if (FalseOp->getZExtValue() != 0) in expandSelectBoolean()
H A DSystemZISelLowering.cpp2995 SDValue FalseOp = Op.getOperand(3); in lowerSELECT_CC() local
3009 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC()
3011 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC()
3012 return getAbsolute(DAG, DL, FalseOp, C.CCMask & SystemZ::CCMASK_CMP_GT); in lowerSELECT_CC()
3016 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC()
5872 auto *FalseOp = dyn_cast<ConstantSDNode>(N0.getOperand(1)); in combineZERO_EXTEND() local
5873 if (TrueOp && FalseOp) { in combineZERO_EXTEND()
5876 DAG.getConstant(FalseOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp634 unsigned FalseOp = 0; in optimizeSelect() local
637 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable)) in optimizeSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h305 unsigned &FalseOp, bool &Optimizable) const override;
H A DARMBaseInstrInfo.cpp2309 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
2320 FalseOp = 2; in analyzeSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h911 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp42569 SDValue FalseOp = N->getOperand(0); in combineCMov() local
42575 if (TrueOp == FalseOp) in combineCMov()
42581 if (!(FalseOp.getValueType() == MVT::f80 || in combineCMov()
42582 (FalseOp.getValueType() == MVT::f64 && !Subtarget.hasSSE2()) || in combineCMov()
42583 (FalseOp.getValueType() == MVT::f32 && !Subtarget.hasSSE1())) || in combineCMov()
42585 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov()
42595 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov()
42601 std::swap(TrueOp, FalseOp); in combineCMov()
42699 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov()
42701 std::swap(TrueOp, FalseOp); in combineCMov()
[all …]