Home
last modified time | relevance | path

Searched refs:OtherOp (Results 1 – 7 of 7) sorted by relevance

/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td43 class SDTCisSameAs<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
44 int OtherOperandNum = OtherOp;
49 class SDTCisVTSmallerThanOp<int OpNum, int OtherOp> : SDTypeConstraint<OpNum> {
50 int OtherOperandNum = OtherOp;
58 /// type as the element type of OtherOp, which is a vector type.
59 class SDTCisEltOfVec<int ThisOp, int OtherOp>
61 int OtherOpNum = OtherOp;
65 /// with length less that of OtherOp, which is a vector type.
66 class SDTCisSubVecOfVec<int ThisOp, int OtherOp>
68 int OtherOpNum = OtherOp;
[all …]
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp616 SDValue OtherOp; in isADDADDMUL() local
619 OtherOp = N1; in isADDADDMUL()
622 OtherOp = N0; in isADDADDMUL()
628 if (OtherOp.getOpcode() == ISD::MUL) { in isADDADDMUL()
630 if (requireIntermediatesHaveOneUse && !OtherOp.hasOneUse()) in isADDADDMUL()
632 Mul0 = OtherOp.getOperand(0); in isADDADDMUL()
633 Mul1 = OtherOp.getOperand(1); in isADDADDMUL()
645 Addend1 = OtherOp; in isADDADDMUL()
655 Addend1 = OtherOp; in isADDADDMUL()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp365 Value *BoolCast = nullptr, *OtherOp = nullptr; in visitMul() local
367 BoolCast = Op0, OtherOp = Op1; in visitMul()
369 BoolCast = Op1, OtherOp = Op0; in visitMul()
374 return BinaryOperator::CreateAnd(V, OtherOp); in visitMul()
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1216 Value *OtherOp = nullptr; in optimizeSqrt() local
1232 OtherOp = Op1; in optimizeSqrt()
1250 if (OtherOp) { in optimizeSqrt()
1255 Value *SqrtCall = B.CreateCall(Sqrt, OtherOp, "sqrt"); in optimizeSqrt()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp7639 SDValue &OtherOp, in isConditionalZeroOrAllOnes() argument
7649 OtherOp = N2; in isConditionalZeroOrAllOnes()
7654 OtherOp = N1; in isConditionalZeroOrAllOnes()
7673 OtherOp = DAG.getConstant(0, VT); in isConditionalZeroOrAllOnes()
7676 OtherOp = DAG.getConstant(1, VT); in isConditionalZeroOrAllOnes()
7678 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT); in isConditionalZeroOrAllOnes()
7709 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, in combineSelectAndUse() argument
7722 SDValue TrueVal = OtherOp; in combineSelectAndUse()
7724 OtherOp, NonConstantVal); in combineSelectAndUse()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp3172 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx)); in CollectLoopInvariantFixupsAndFormulae() local
3173 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L)) in CollectLoopInvariantFixupsAndFormulae()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp7770 SDValue OtherOp; in visitFDIV() local
7773 OtherOp = N1.getOperand(1); in visitFDIV()
7776 OtherOp = N1.getOperand(0); in visitFDIV()
7782 RV = DAG.getNode(ISD::FDIV, SDLoc(N1), VT, RV, OtherOp); in visitFDIV()