Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.h120 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
H A DLanaiInstrInfo.cpp439 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
447 TrueOp = 1; in analyzeSelect()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1884 auto *TrueOp = dyn_cast<ConstantSDNode>(Node->getOperand(0)); in expandSelectBoolean() local
1886 if (!TrueOp || !FalseOp) in expandSelectBoolean()
1890 if (TrueOp->getSExtValue() != 1 && TrueOp->getSExtValue() != -1) in expandSelectBoolean()
1915 unsigned ShiftOp = TrueOp->getSExtValue() == 1 ? ISD::SRL : ISD::SRA; in expandSelectBoolean()
1922 if (TrueOp->getSExtValue() == 1) { in expandSelectBoolean()
H A DSystemZISelLowering.cpp3179 SDValue TrueOp = Op.getOperand(2); in lowerSELECT_CC() local
3194 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC()
3195 return getAbsolute(DAG, DL, TrueOp, C.CCMask & SystemZ::CCMASK_CMP_LT); in lowerSELECT_CC()
3196 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC()
3201 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC()
6199 auto *TrueOp = dyn_cast<ConstantSDNode>(N0.getOperand(0)); in combineZERO_EXTEND() local
6201 if (TrueOp && FalseOp) { in combineZERO_EXTEND()
6203 SDValue Ops[] = { DAG.getConstant(TrueOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h116 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
H A DRISCVInstrInfo.cpp1106 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
1117 TrueOp = 5; in analyzeSelect()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp647 unsigned TrueOp = 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 DARMBaseInstrInfo.h304 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
H A DARMBaseInstrInfo.cpp2334 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
2344 TrueOp = 1; in analyzeSelect()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h951 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp46980 SDValue TrueOp = N->getOperand(1); in combineCMov() local
46985 if (TrueOp == FalseOp) in combineCMov()
46986 return TrueOp; in combineCMov()
46995 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov()
47004 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
47011 std::swap(TrueOp, FalseOp); in combineCMov()
47111 std::swap(TrueOp, FalseOp); in combineCMov()
47115 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
47146 std::swap(FalseOp, TrueOp); in combineCMov()
47151 SDValue LOps[] = {FalseOp, TrueOp, in combineCMov()
[all …]