Searched refs:BO1 (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3725 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1); local
3726 if (!BO0 && !BO1)
3748 if (BO1 && isa<OverflowingBinaryOperator>(BO1))
3751 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) ||
3752 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap());
3761 if (BO1 && BO1->getOpcode() == Instruction::Add) {
3762 C = BO1->getOperand(0);
3763 D = BO1
[all...]
H A DInstCombineVectorOps.cpp1467 Value *BO0 = BO->getOperand(0), *BO1 = BO->getOperand(1); local
1473 if (match(BO1, m_Constant(C))) {
1482 if (match(BO1, m_APInt(C)) && MaskedValueIsZero(BO0, *C, DL))
1483 return { Instruction::Add, BO0, BO1 };
H A DInstCombineAndOrXor.cpp1474 BinaryOperator *BO1; local
1478 !match(Op1, m_BinOp(BO1)) || BO1->getOpcode() != Opcode)
1482 Value *BO10 = BO1->getOperand(0), *BO11 = BO1->getOperand(1), *Y;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1048 BinaryOperatorKind BO1; local
1049 std::tie(DeclExpr1, BO1, NumExpr1) = tryNormalizeBinaryOperator(LHS);
1112 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2309 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2310 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2313 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2314 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)

Completed in 285 milliseconds