Home
last modified time | relevance | path

Searched refs:Expr0 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1178 UnaryOp(TIL_UnaryOpcode Op, SExpr *E) : SExpr(COP_UnaryOp), Expr0(E) { in UnaryOp()
1182 UnaryOp(const UnaryOp &U, SExpr *E) : SExpr(U), Expr0(E) { Flags = U.Flags; } in UnaryOp()
1190 SExpr *expr() { return Expr0; } in expr()
1191 const SExpr *expr() const { return Expr0; } in expr()
1195 auto Ne = Vs.traverse(Expr0, Vs.subExprCtx(Ctx)); in traverse()
1209 SExpr* Expr0;
1217 : SExpr(COP_BinaryOp), Expr0(E0), Expr1(E1) { in BinaryOp()
1222 : SExpr(B), Expr0(E0), Expr1(E1) { in BinaryOp()
1232 SExpr *expr0() { return Expr0; } in expr0()
1233 const SExpr *expr0() const { return Expr0; } in expr0()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2076 Value *Expr0 = expand(Pred->getLHS(), IP); in expandComparePredicate() local
2081 auto *I = Builder.CreateICmp(InvPred, Expr0, Expr1, "ident.check"); in expandComparePredicate()