Lines Matching refs:stmtnp
57 static void check_cycle_lhs(struct node *stmtnp, struct node *arrow);
58 static void check_cycle_lhs_try(struct node *stmtnp, struct node *lhs,
392 check_stmt_required_properties(struct node *stmtnp)
394 struct lut *lutp = stmtnp->u.stmt.lutp;
395 struct node *np = stmtnp->u.stmt.np;
399 if (stmtnp->t == Allowednames[i].t &&
405 ptree_nodetype2str(stmtnp->t),
826 check_cycle_lhs(struct node *stmtnp, struct node *arrow)
835 check_cycle_lhs(stmtnp, arrow->u.arrow.lhs);
861 check_cycle_lhs_try(stmtnp, trylhs, tryrhs);
869 check_cycle_lhs_try(struct node *stmtnp, struct node *lhs, struct node *rhs)
872 check_cycle_lhs_try(stmtnp, lhs->u.expr.left, rhs);
873 check_cycle_lhs_try(stmtnp, lhs->u.expr.right, rhs);
879 if (tree_eventcmp(stmtnp->u.stmt.np, lhs) != 0)