Searched refs:FalseOp (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
H A D | LanaiInstrInfo.h | 121 unsigned &FalseOp, bool &Optimizable) const override;
|
H A D | LanaiInstrInfo.cpp | 440 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 449 FalseOp = 2; in analyzeSelect()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfo.h | 148 unsigned &FalseOp, bool &Optimizable) const override;
|
H A D | RISCVInstrInfo.cpp | 1375 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 1387 FalseOp = 4; in analyzeSelect()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelDAGToDAG.cpp | 2002 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 D | SystemZISelLowering.cpp | 3480 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 D | PeepholeOptimizer.cpp | 691 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 D | ARMBaseInstrInfo.h | 310 unsigned &FalseOp, bool &Optimizable) const override;
|
H A D | ARMBaseInstrInfo.cpp | 2321 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 2332 FalseOp = 2; in analyzeSelect()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetInstrInfo.h | 984 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 47244 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 …]
|