HomeSort by: relevance | last modified time | path
    Searched defs:OtherOp (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
PredicateInfo.h 71 /// Constraint for a predicate of the form "cmp Pred Op, OtherOp", where Op
75 Value *OtherOp;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineNegator.cpp 419 Value *NegatedOp, *OtherOp;
424 OtherOp = Ops[0];
427 OtherOp = Ops[1];
431 return Builder.CreateMul(NegatedOp, OtherOp, I->getName() + ".neg");
InstCombineMulDivRem.cpp 105 Value *Cond, *OtherOp;
107 // mul (select Cond, 1, -1), OtherOp --> select Cond, OtherOp, -OtherOp
108 // mul OtherOp, (select Cond, 1, -1) --> select Cond, OtherOp, -OtherOp
110 m_Value(OtherOp))))
111 return Builder.CreateSelect(Cond, OtherOp, Builder.CreateNeg(OtherOp));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIOptimizeExecMasking.cpp 431 MachineOperand *OtherOp = nullptr;
434 OtherOp = &Src1;
439 OtherOp = &Src0;
450 .addReg(OtherOp->getReg());
AMDGPUPromoteAlloca.cpp 578 Value *OtherOp = Inst->getOperand(OpIdx0);
579 if (Val == OtherOp)
580 OtherOp = Inst->getOperand(OpIdx1);
582 if (isa<ConstantPointerNull>(OtherOp))
585 Value *OtherObj = getUnderlyingObject(OtherOp);
SIFoldOperands.cpp 423 MachineOperand &OtherOp = MI->getOperand(OtherIdx);
424 if (!OtherOp.isReg() ||
425 !TII->getRegisterInfo().isVGPR(MRI, OtherOp.getReg()))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SCCPSolver.cpp 1238 Value *OtherOp = Constraint->OtherOp;
1240 // Wait until OtherOp is resolved.
1241 if (getValueState(OtherOp).isUnknown()) {
1242 addAdditionalUser(OtherOp, &CB);
1257 ValueLatticeElement CondVal = getValueState(OtherOp);
1281 addAdditionalUser(OtherOp, &CB);
1288 addAdditionalUser(OtherOp, &CB);
1294 addAdditionalUser(OtherOp, &CB);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 586 SDValue OtherOp;
589 OtherOp = N1;
592 OtherOp = N0;
598 if (OtherOp.getOpcode() == ISD::MUL) {
600 if (requireIntermediatesHaveOneUse && !OtherOp.hasOneUse())
602 Mul0 = OtherOp.getOperand(0);
603 Mul1 = OtherOp.getOperand(1);
615 Addend1 = OtherOp;
625 Addend1 = OtherOp;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 383 SDValue OtherOp = User->getOperand(0);
384 if (OtherOp.getNode() == N)
385 OtherOp = User->getOperand(1);
389 if (OtherOp->getOpcode() == ISD::CopyFromReg &&
391 OtherOp->getOperand(1).getNode())))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 3470 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
3471 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 16656 SDNode *OtherOp;
16659 // OtherOp is what we're multiplying against the constant.
16661 OtherOp = Use->getOperand(1).getNode();
16663 OtherOp = Use->getOperand(0).getNode();
16668 // Use = ConstNode * A <-- visiting Use. OtherOp is A.
16675 if (OtherOp == MulVar)
16685 // OtherOp = (A + c2)
16686 // Use = OtherOp * ConstNode <-- visiting Use.
16691 if (OtherOp->getOpcode() == ISD::ADD &&
16692 DAG.isConstantIntBuildVectorOrConstantInt(OtherOp->getOperand(1)) &
    [all...]

Completed in 81 milliseconds