Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiInstrInfo.h119 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
DLanaiInstrInfo.cpp440 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
448 TrueOp = 1; in analyzeSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp1828 auto *TrueOp = dyn_cast<ConstantSDNode>(Node->getOperand(0)); in expandSelectBoolean() local
1830 if (!TrueOp || !FalseOp) in expandSelectBoolean()
1834 if (TrueOp->getSExtValue() != 1 && TrueOp->getSExtValue() != -1) in expandSelectBoolean()
1859 unsigned ShiftOp = TrueOp->getSExtValue() == 1 ? ISD::SRL : ISD::SRA; in expandSelectBoolean()
1866 if (TrueOp->getSExtValue() == 1) { in expandSelectBoolean()
DSystemZISelLowering.cpp2937 SDValue TrueOp = Op.getOperand(2); in lowerSELECT_CC() local
2952 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC()
2953 return getAbsolute(DAG, DL, TrueOp, C.CCMask & SystemZ::CCMASK_CMP_LT); in lowerSELECT_CC()
2954 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC()
2959 SDValue Ops[] = {TrueOp, FalseOp, in lowerSELECT_CC()
5593 auto *TrueOp = dyn_cast<ConstantSDNode>(N0.getOperand(0)); in combineZERO_EXTEND() local
5595 if (TrueOp && FalseOp) { in combineZERO_EXTEND()
5597 SDValue Ops[] = { DAG.getConstant(TrueOp->getZExtValue(), DL, VT), in combineZERO_EXTEND()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.cpp923 Operand *TrueOp = getTrueOperand(); in dump() local
927 Str << ", " << TrueOp->getType() << " "; in dump()
928 TrueOp->dump(Func); in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DPeepholeOptimizer.cpp629 unsigned TrueOp = 0; in optimizeSelect() local
633 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable)) in optimizeSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMBaseInstrInfo.h302 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
DARMBaseInstrInfo.cpp2211 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
2221 TrueOp = 1; in analyzeSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetInstrInfo.h895 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp38672 SDValue TrueOp = N->getOperand(1); in combineCMov() local
38677 if (TrueOp == FalseOp) in combineCMov()
38678 return TrueOp; in combineCMov()
38684 SDValue Ops[] = {FalseOp, TrueOp, DAG.getTargetConstant(CC, DL, MVT::i8), in combineCMov()
38693 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
38700 std::swap(TrueOp, FalseOp); in combineCMov()
38800 std::swap(TrueOp, FalseOp); in combineCMov()
38804 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) { in combineCMov()
38835 std::swap(FalseOp, TrueOp); in combineCMov()
38840 SDValue LOps[] = {FalseOp, TrueOp, in combineCMov()
[all …]