Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.h120 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
H A DLanaiInstrInfo.cpp440 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
448 TrueOp = 1; in analyzeSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1873 auto *TrueOp = dyn_cast<ConstantSDNode>(Node->getOperand(0)); in expandSelectBoolean() local
1875 if (!TrueOp || !FalseOp) in expandSelectBoolean()
1879 if (TrueOp->getSExtValue() != 1 && TrueOp->getSExtValue() != -1) in expandSelectBoolean()
1904 unsigned ShiftOp = TrueOp->getSExtValue() == 1 ? ISD::SRL : ISD::SRA; in expandSelectBoolean()
1911 if (TrueOp->getSExtValue() == 1) { in expandSelectBoolean()
H A DSystemZISelLowering.cpp2994 SDValue TrueOp = Op.getOperand(2); in lowerSELECT_CC() local
3009 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC()
3010 return getAbsolute(DAG, DL, TrueOp, C.CCMask & SystemZ::CCMASK_CMP_LT); in lowerSELECT_CC()
3011 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC()
3016 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC()
5871 auto *TrueOp = dyn_cast<ConstantSDNode>(N0.getOperand(0)); in combineZERO_EXTEND() local
5873 if (TrueOp && FalseOp) { in combineZERO_EXTEND()
5875 SDValue Ops[] = { DAG.getConstant(TrueOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp633 unsigned TrueOp = 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.h304 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
H A DARMBaseInstrInfo.cpp2309 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
2319 TrueOp = 1; 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.cpp42570 SDValue TrueOp = N->getOperand(1); in combineCMov() local
42575 if (TrueOp == FalseOp) in combineCMov()
42576 return TrueOp; in combineCMov()
42585 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov()
42594 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
42601 std::swap(TrueOp, FalseOp); in combineCMov()
42701 std::swap(TrueOp, FalseOp); in combineCMov()
42705 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
42736 std::swap(FalseOp, TrueOp); in combineCMov()
42741 SDValue LOps[] = {FalseOp, TrueOp, in combineCMov()
[all …]