HomeSort by: relevance | last modified time | path
    Searched refs:RBO (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionSimplify.cpp 2943 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2944 if (MaxRecurse && (LBO || RBO)) {
2959 if (RBO && RBO->getOpcode() == Instruction::Add) {
2960 C = RBO->getOperand(0);
2961 D = RBO->getOperand(1);
2965 Q.IIQ.hasNoUnsignedWrap(cast<OverflowingBinaryOperator>(RBO))) ||
2967 Q.IIQ.hasNoSignedWrap(cast<OverflowingBinaryOperator>(RBO)));
3017 if (RBO)
3019 ICmpInst::getSwappedPredicate(Pred), RBO, LHS, Q, MaxRecurse)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 511 } else if (auto *RBO = dyn_cast<CXXRewrittenBinaryOperator>(S)) {
514 TraverseStmt(const_cast<Expr *>(RBO->getLHS()));
515 TraverseStmt(const_cast<Expr *>(RBO->getRHS()));
519 for (auto *SubStmt : RBO->children()) {

Completed in 18 milliseconds