Searched refs:Expr1 (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | IdenticalExprChecker.cpp | 318 const Expr *Expr1 = dyn_cast<Expr>(Stmt1); in isIdenticalStmt() local 321 if (Expr1 && Expr2) { in isIdenticalStmt() 324 if (!IgnoreSideEffects && Expr1->HasSideEffects(Ctx)) in isIdenticalStmt() 328 if ((Expr1->getExprLoc().isMacroID()) || (Expr2->getExprLoc().isMacroID())) in isIdenticalStmt() 332 Expr::const_child_iterator I1 = Expr1->child_begin(); in isIdenticalStmt() 334 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalStmt() 342 if (I1 != Expr1->child_end()) in isIdenticalStmt()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyTIL.h | 1207 : SExpr(COP_BinaryOp), Expr0(E0), Expr1(E1) { in BinaryOp() 1212 : SExpr(B), Expr0(E0), Expr1(E1) { in BinaryOp() 1225 SExpr *expr1() { return Expr1; } in expr1() 1226 const SExpr *expr1() const { return Expr1; } in expr1() 1231 auto Ne1 = Vs.traverse(Expr1, Vs.subExprCtx(Ctx)); in traverse() 1249 SExpr* Expr1; variable
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
H A D | ParseExpr.cpp | 2591 ExprResult Expr1(ParseAssignmentExpression()); in ParseBuiltinPrimaryExpression() local 2592 if (Expr1.isInvalid()) { in ParseBuiltinPrimaryExpression() 2594 return Expr1; in ParseBuiltinPrimaryExpression() 2610 Res = Actions.ActOnChooseExpr(StartLoc, Cond.get(), Expr1.get(), in ParseBuiltinPrimaryExpression()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.cpp | 2474 Value *Expr1 = in expandEqualPredicate() local 2478 auto *I = Builder.CreateICmpNE(Expr0, Expr1, "ident.check"); in expandEqualPredicate()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 5040 auto areExprsEqual = [&](const SCEV *Expr1, const SCEV *Expr2) -> bool { in areAddRecsEqualWithPreds() argument 5041 if (Expr1 != Expr2 && !Preds.implies(SE.getEqualPredicate(Expr1, Expr2)) && in areAddRecsEqualWithPreds() 5042 !Preds.implies(SE.getEqualPredicate(Expr2, Expr1))) in areAddRecsEqualWithPreds()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 8009 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; in checkPointerIntegerMismatch() local 8013 << Expr1->getType() << Expr2->getType() in checkPointerIntegerMismatch() 8014 << Expr1->getSourceRange() << Expr2->getSourceRange(); in checkPointerIntegerMismatch()
|