Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3341 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1); in visitICmpInst() local
3342 if (BO0 || BO1) { in visitICmpInst()
3349 if (BO1 && isa<OverflowingBinaryOperator>(BO1)) in visitICmpInst()
3351 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) || in visitICmpInst()
3352 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap()); in visitICmpInst()
3359 if (BO1 && BO1->getOpcode() == Instruction::Add) in visitICmpInst()
3360 C = BO1->getOperand(0), D = BO1->getOperand(1); in visitICmpInst()
3382 BO0->hasOneUse() && BO1->hasOneUse()) { in visitICmpInst()
3454 (BO0->hasOneUse() || BO1->hasOneUse()) && !I.isUnsigned()) in visitICmpInst()
3480 if (BO1 && BO1->getOpcode() == Instruction::Sub) in visitICmpInst()
[all …]
/external/deqp/framework/common/
DtcuCompressedTexture.cpp666 const deUint8 BO1 = (deUint8)getBit(src, 48); in decompressETC2Block() local
673 const deUint8 BO = extend6To8((deUint8)((BO1 << 5) | (BO2 << 3) | BO3)); in decompressETC2Block()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2042 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local
2043 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax()
2046 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local
2047 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax()
/external/clang/lib/Analysis/
DCFG.cpp772 BinaryOperatorKind BO1; in checkIncorrectLogicOperator() local
773 std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS); in checkIncorrectLogicOperator()
830 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); in checkIncorrectLogicOperator()