Searched refs:RHSBO (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DReassociate.cpp279 BinaryOperator *RHSBO = isReassociableOp(RHS, Opcode); local
288 if (!RHSBO && RHS->hasOneUse() && BinaryOperator::isNeg(RHS)) {
290 RHSBO = isReassociableOp(RHS, Opcode);
295 if (!RHSBO) {
308 std::swap(LHSBO, RHSBO);
314 } else if (RHSBO) {
320 RHSBO = 0;
/external/clang/lib/Sema/
H A DSemaExpr.cpp10993 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); local
10997 bool isRightComp = RHSBO && RHSBO->isComparisonOp();
11004 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
11011 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
11014 : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd());

Completed in 274 milliseconds