Home
last modified time | relevance | path

Searched refs:BO1 (Results 1 – 3 of 3) sorted by relevance

/minix/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3167 if (BO0 || BO1) { in visitICmpInst()
3174 if (BO1 && isa<OverflowingBinaryOperator>(BO1)) in visitICmpInst()
3184 if (BO1 && BO1->getOpcode() == Instruction::Add) in visitICmpInst()
3185 C = BO1->getOperand(0), D = BO1->getOperand(1); in visitICmpInst()
3285 if (BO1 && BO1->getOpcode() == Instruction::Sub) in visitICmpInst()
3286 C = BO1->getOperand(0), D = BO1->getOperand(1); in visitICmpInst()
3299 BO0->hasOneUse() && BO1->hasOneUse()) in visitICmpInst()
3324 else if (BO1 && BO1->getOpcode() == Instruction::SRem && in visitICmpInst()
3325 Op0 == BO1->getOperand(1)) in visitICmpInst()
3326 SRem = BO1; in visitICmpInst()
[all …]
/minix/external/bsd/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp698 BinaryOperatorKind BO1 = LHS->getOpcode(); in checkIncorrectLogicOperator() local
704 if (BO1 == BO_GT) in checkIncorrectLogicOperator()
705 BO1 = BO_LT; in checkIncorrectLogicOperator()
706 else if (BO1 == BO_GE) in checkIncorrectLogicOperator()
707 BO1 = BO_LE; in checkIncorrectLogicOperator()
708 else if (BO1 == BO_LT) in checkIncorrectLogicOperator()
709 BO1 = BO_GT; in checkIncorrectLogicOperator()
710 else if (BO1 == BO_LE) in checkIncorrectLogicOperator()
711 BO1 = BO_GE; in checkIncorrectLogicOperator()
782 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); in checkIncorrectLogicOperator()
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2061 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local
2062 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax()
2065 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local
2066 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax()