Searched refs:RBO (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | Transfer.cpp | 624 void VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *RBO) { in VisitCXXRewrittenBinaryOperator() argument 625 propagateValue(*RBO->getSemanticForm(), *RBO, Env); in VisitCXXRewrittenBinaryOperator()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InstructionSimplify.cpp | 3256 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS); in simplifyICmpWithBinOp() local 3257 if (MaxRecurse && (LBO || RBO)) { in simplifyICmpWithBinOp() 3272 if (RBO && RBO->getOpcode() == Instruction::Add) { in simplifyICmpWithBinOp() 3273 C = RBO->getOperand(0); in simplifyICmpWithBinOp() 3274 D = RBO->getOperand(1); in simplifyICmpWithBinOp() 3278 Q.IIQ.hasNoUnsignedWrap(cast<OverflowingBinaryOperator>(RBO))) || in simplifyICmpWithBinOp() 3280 Q.IIQ.hasNoSignedWrap(cast<OverflowingBinaryOperator>(RBO))); in simplifyICmpWithBinOp() 3330 if (RBO) in simplifyICmpWithBinOp() 3332 ICmpInst::getSwappedPredicate(Pred), RBO, LHS, Q, MaxRecurse)) in simplifyICmpWithBinOp() 3388 if (!MaxRecurse || !LBO || !RBO || LBO->getOpcode() != RBO->getOpcode()) in simplifyICmpWithBinOp() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchFinder.cpp | 530 } else if (auto *RBO = dyn_cast<CXXRewrittenBinaryOperator>(S)) { in dataTraverseNode() local 533 TraverseStmt(const_cast<Expr *>(RBO->getLHS())); in dataTraverseNode() 534 TraverseStmt(const_cast<Expr *>(RBO->getRHS())); in dataTraverseNode() 538 for (auto *SubStmt : RBO->children()) { in dataTraverseNode()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 8292 if (auto *RBO = dyn_cast<CXXRewrittenBinaryOperator>(S)) { in checkAndSetCond() local 8293 CXXRewrittenBinaryOperator::DecomposedForm DF = RBO->getDecomposedForm(); in checkAndSetCond() 8294 Res = CheckAndSetCond(DF.Opcode, DF.LHS, DF.RHS, RBO->getSourceRange(), in checkAndSetCond() 8295 RBO->getOperatorLoc()); in checkAndSetCond()
|