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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 3775 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1);
3776 if (!BO0 && !BO1)
3801 if (BO1 && isa<OverflowingBinaryOperator>(BO1))
3804 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) ||
3805 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap());
3814 if (BO1 && BO1->getOpcode() == Instruction::Add) {
3815 C = BO1->getOperand(0);
3816 D = BO1->getOperand(1)
    [all...]
InstCombineVectorOps.cpp 1766 Value *BO0 = BO->getOperand(0), *BO1 = BO->getOperand(1);
1772 if (match(BO1, m_Constant(C))) {
1781 if (match(BO1, m_APInt(C)) && MaskedValueIsZero(BO0, *C, DL))
1782 return { Instruction::Add, BO0, BO1 };
InstCombineAndOrXor.cpp 1499 BinaryOperator *BO1;
1503 !match(Op1, m_BinOp(BO1)) || BO1->getOpcode() != Opcode)
1507 Value *BO10 = BO1->getOperand(0), *BO11 = BO1->getOperand(1), *Y;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 1048 BinaryOperatorKind BO1;
1049 std::tie(DeclExpr1, BO1, NumExpr1) = tryNormalizeBinaryOperator(LHS);
1112 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 2320 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2321 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2324 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2325 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 2603 BinaryOperator *BO1 = nullptr;
2608 !matchSimpleRecurrence(PN1, BO1, Start1, Step1) ||
2612 auto Values = getInvertibleOperands(cast<Operator>(BO1),

Completed in 71 milliseconds