Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1168 UnaryOp(TIL_UnaryOpcode Op, SExpr *E) : SExpr(COP_UnaryOp), Expr0(E) { in UnaryOp()
1172 UnaryOp(const UnaryOp &U, SExpr *E) : SExpr(U), Expr0(E) { Flags = U.Flags; } in UnaryOp()
1180 SExpr *expr() { return Expr0; } in expr()
1181 const SExpr *expr() const { return Expr0; } in expr()
1185 auto Ne = Vs.traverse(Expr0, Vs.subExprCtx(Ctx)); in traverse()
1199 SExpr* Expr0;
1207 : SExpr(COP_BinaryOp), Expr0(E0), Expr1(E1) { in BinaryOp()
1212 : SExpr(B), Expr0(E0), Expr1(E1) { in BinaryOp()
1222 SExpr *expr0() { return Expr0; } in expr0()
1223 const SExpr *expr0() const { return Expr0; } in expr0()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2344 Value *Expr0 = in expandComparePredicate() local
2351 auto *I = Builder.CreateICmp(InvPred, Expr0, Expr1, "ident.check"); in expandComparePredicate()