Searched refs:FalseOp (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Target/Lanai/ |
| H A D | LanaiInstrInfo.h | 121 unsigned &FalseOp, bool &Optimizable) const override;
|
| H A D | LanaiInstrInfo.cpp | 439 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 448 FalseOp = 2; in analyzeSelect()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfo.h | 117 unsigned &FalseOp, bool &Optimizable) const override;
|
| H A D | RISCVInstrInfo.cpp | 1106 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 1118 FalseOp = 4; in analyzeSelect()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 1885 auto *FalseOp = dyn_cast<ConstantSDNode>(Node->getOperand(1)); in expandSelectBoolean() local 1886 if (!TrueOp || !FalseOp) in expandSelectBoolean() 1888 if (FalseOp->getZExtValue() != 0) in expandSelectBoolean()
|
| H A D | SystemZISelLowering.cpp | 3180 SDValue FalseOp = Op.getOperand(3); in lowerSELECT_CC() local 3194 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC() 3196 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC() 3197 return getAbsolute(DAG, DL, FalseOp, C.CCMask & SystemZ::CCMASK_CMP_GT); in lowerSELECT_CC() 3201 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC() 6200 auto *FalseOp = dyn_cast<ConstantSDNode>(N0.getOperand(1)); in combineZERO_EXTEND() local 6201 if (TrueOp && FalseOp) { in combineZERO_EXTEND() 6204 DAG.getConstant(FalseOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | PeepholeOptimizer.cpp | 648 unsigned FalseOp = 0; in optimizeSelect() local 651 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable)) in optimizeSelect()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.h | 305 unsigned &FalseOp, bool &Optimizable) const override;
|
| H A D | ARMBaseInstrInfo.cpp | 2334 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 2345 FalseOp = 2; in analyzeSelect()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | TargetInstrInfo.h | 951 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 46979 SDValue FalseOp = N->getOperand(0); in combineCMov() local 46985 if (TrueOp == FalseOp) in combineCMov() 46991 if (!(FalseOp.getValueType() == MVT::f80 || in combineCMov() 46992 (FalseOp.getValueType() == MVT::f64 && !Subtarget.hasSSE2()) || in combineCMov() 46993 (FalseOp.getValueType() == MVT::f32 && !Subtarget.hasSSE1())) || in combineCMov() 46995 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov() 47005 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov() 47011 std::swap(TrueOp, FalseOp); in combineCMov() 47109 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov() 47111 std::swap(TrueOp, FalseOp); in combineCMov() [all …]
|