Home
last modified time | relevance | path

Searched refs:LHSBO (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDValueTracking.cpp5554 const BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHS); in isImpliedCondition() local
5555 if (LHSBO && RHSCmp) { in isImpliedCondition()
5556 if ((LHSBO->getOpcode() == Instruction::And || in isImpliedCondition()
5557 LHSBO->getOpcode() == Instruction::Or)) in isImpliedCondition()
5558 return isImpliedCondAndOr(LHSBO, RHSCmp, DL, LHSIsTrue, Depth); in isImpliedCondition()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExpr.cpp13206 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); in DiagnoseBitwisePrecedence() local
13210 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); in DiagnoseBitwisePrecedence()
13217 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
13225 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence()
13228 ? SourceRange(LHSBO->getRHS()->getBeginLoc(), RHSExpr->getEndLoc()) in DiagnoseBitwisePrecedence()