HomeSort by: relevance | last modified time | path
    Searched refs:BOp1 (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 2995 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
3002 if (match(BOp1, m_APInt(BOC)) && BOC->sgt(1) && BOC->isPowerOf2()) {
3003 Value *NewRem = Builder.CreateURem(BOp0, BOp1, BO->getName());
3011 if (Constant *BOC = dyn_cast<Constant>(BOp1)) {
3017 if (Value *NegVal = dyn_castNegVal(BOp1))
3020 return new ICmpInst(Pred, NegVal, BOp1);
3022 Value *Neg = Builder.CreateNeg(BOp1);
3031 if (Constant *BOC = dyn_cast<Constant>(BOp1)) {
3037 return new ICmpInst(Pred, BOp0, BOp1);
3047 return new ICmpInst(Pred, BOp1, ConstantExpr::getSub(BOC, RHS))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 604 const Value *BOp0, *BOp1;
605 if (match(CondI, m_LogicalAnd(m_Value(BOp0), m_Value(BOp1))))
607 else if (match(CondI, m_LogicalOr(m_Value(BOp0), m_Value(BOp1))))
611 match(BOp1, m_ExtractElt(m_Specific(Vec), m_Value())))) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 2384 const Value *BOp0, *BOp1;
2386 if (match(BOp, m_LogicalAnd(m_Value(BOp0), m_Value(BOp1))))
2388 else if (match(BOp, m_LogicalOr(m_Value(BOp0), m_Value(BOp1))))
2392 match(BOp1, m_ExtractElt(m_Specific(Vec), m_Value())))) {

Completed in 30 milliseconds