Searched refs:OtherOp (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp1296 // * OtherOp is set to the alternative value of N.
1299 // * X = 0, Invert = False and OtherOp = Y
1300 // * Y = 0, Invert = True and OtherOp = X
1302 bool &Invert, SDValue &OtherOp,
1313 OtherOp = N2;
1318 OtherOp = N1;
1332 OtherOp = DAG.getConstant(1, dl, VT);
1346 OtherOp = DAG.getConstant(0, dl, VT);
1348 OtherOp =
1372 static SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, argument
1301 isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, SDValue &CC, bool &Invert, SDValue &OtherOp, SelectionDAG &DAG) argument
[all...]
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp511 Value *OtherOp = Inst->getOperand(OpIdx0); local
512 if (Val == OtherOp)
513 OtherOp = Inst->getOperand(OpIdx1);
515 if (isa<ConstantPointerNull>(OtherOp))
518 Value *OtherObj = GetUnderlyingObject(OtherOp, *DL);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp239 Value *BoolCast = 0, *OtherOp = 0; local
241 BoolCast = Op0, OtherOp = Op1;
243 BoolCast = Op1, OtherOp = Op0;
248 return BinaryOperator::CreateAnd(V, OtherOp);
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp612 SDValue OtherOp; local
615 OtherOp = N1;
618 OtherOp = N0;
624 if (OtherOp.getOpcode() == ISD::MUL) {
626 if (requireIntermediatesHaveOneUse && !OtherOp.hasOneUse())
628 Mul0 = OtherOp.getOperand(0);
629 Mul1 = OtherOp.getOperand(1);
641 Addend1 = OtherOp;
651 Addend1 = OtherOp;
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreISelLowering.cpp599 SDValue OtherOp; local
602 OtherOp = N1;
605 OtherOp = N0;
611 if (OtherOp.getOpcode() == ISD::MUL) {
613 if (requireIntermediatesHaveOneUse && !OtherOp.hasOneUse())
615 Mul0 = OtherOp.getOperand(0);
616 Mul1 = OtherOp.getOperand(1);
628 Addend1 = OtherOp;
638 Addend1 = OtherOp;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp376 Value *BoolCast = nullptr, *OtherOp = nullptr; local
379 OtherOp = Op1;
382 OtherOp = Op0;
388 return BinaryOperator::CreateAnd(V, OtherOp);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1270 Value *OtherOp = nullptr;
1287 OtherOp = Op1;
1305 if (OtherOp) {
1310 Value *SqrtCall = B.CreateCall(Sqrt, OtherOp, "sqrt");
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp340 SDValue OtherOp = User->getOperand(0); local
341 if (OtherOp.getNode() == N)
342 OtherOp = User->getOperand(1);
346 if (OtherOp->getOpcode() == ISD::CopyFromReg &&
348 OtherOp->getOperand(1).getNode())))
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8603 // OtherOp is set to the alternative value of N.
8606 SDValue &OtherOp,
8616 OtherOp = N2;
8621 OtherOp = N1;
8641 OtherOp = DAG.getConstant(0, dl, VT);
8644 OtherOp = DAG.getConstant(1, dl, VT);
8646 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
8673 // @param OtherOp The other N operand (x above).
8678 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, argument
8691 SDValue TrueVal = OtherOp;
8604 isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, SDValue &CC, bool &Invert, SDValue &OtherOp, SelectionDAG &DAG) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8841 SDValue OtherOp; local
8844 OtherOp = N1.getOperand(1);
8847 OtherOp = N1.getOperand(0);
8853 RV = DAG.getNode(ISD::FDIV, SDLoc(N1), VT, RV, OtherOp, Flags);
11168 SDNode *OtherOp; local
11171 // OtherOp is what we're multiplying against the constant.
11173 OtherOp = Use->getOperand(1).getNode();
11175 OtherOp = Use->getOperand(0).getNode();
11180 // Use = ConstNode * A <-- visiting Use. OtherOp is A.
11187 if (OtherOp
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2274 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx)); local
2275 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3128 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx)); local
3129 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp6376 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, argument
6421 SDValue Result = DAG.getNode(Opc, RHS.getDebugLoc(), VT, OtherOp, RHS);
6423 return DAG.getSelectCC(N->getDebugLoc(), OtherOp, Result,
6430 CCOp, OtherOp, Result);
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp4831 const SCEV *OtherOp = getSCEV(I->getOperand(OtherOpIndex));
4832 if (!isLoopInvariant(OtherOp, AddRec->getLoop())) {

Completed in 462 milliseconds