Searched refs:LHSBO (Results 1 – 3 of 3) sorted by relevance
278 BinaryOperator *LHSBO = isReassociableOp(LHS, Opcode); in LinearizeExprTree() local284 if (!LHSBO && LHS->hasOneUse() && BinaryOperator::isNeg(LHS)) { in LinearizeExprTree()286 LHSBO = isReassociableOp(LHS, Opcode); in LinearizeExprTree()294 if (!LHSBO) { in LinearizeExprTree()308 std::swap(LHSBO, RHSBO); in LinearizeExprTree()318 LHS = LHSBO = cast<BinaryOperator>(I->getOperand(0)); in LinearizeExprTree()329 LHSBO->moveBefore(I); in LinearizeExprTree()332 LinearizeExprTree(LHSBO, Ops); in LinearizeExprTree()
5128 const BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHS); in isImpliedCondition() local5129 if (LHSBO && RHSCmp) { in isImpliedCondition()5130 if ((LHSBO->getOpcode() == Instruction::And || in isImpliedCondition()5131 LHSBO->getOpcode() == Instruction::Or)) in isImpliedCondition()5132 return isImpliedCondAndOr(LHSBO, RHSCmp, DL, LHSIsTrue, Depth); in isImpliedCondition()
10992 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); in DiagnoseBitwisePrecedence() local10996 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); in DiagnoseBitwisePrecedence()11003 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()11011 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence()11013 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) in DiagnoseBitwisePrecedence()