Lines Matching refs:expr
38 struct expr *expr; member
42 struct expr { struct
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
55 struct expr *expr; member
197 struct expr *expr; /* the optional conditional part of the property */ member
247 struct expr *visibility;
253 struct expr *dep;
294 struct expr *expr_alloc_symbol(struct symbol *sym);
295 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
296 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
297 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
298 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
299 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
300 struct expr *expr_copy(const struct expr *org);
301 void expr_free(struct expr *e);
302 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
303 int expr_eq(struct expr *e1, struct expr *e2);
304 tristate expr_calc_value(struct expr *e);
305 struct expr *expr_trans_bool(struct expr *e);
306 struct expr *expr_eliminate_dups(struct expr *e);
307 struct expr *expr_transform(struct expr *e);
308 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
309 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
310 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
312 void expr_fprint(struct expr *e, FILE *out);
314 void expr_gstr_print(struct expr *e, struct gstr *gs);
315 void expr_gstr_print_revdep(struct expr *e, struct gstr *gs,
318 static inline int expr_is_yes(struct expr *e) in expr_is_yes()
323 static inline int expr_is_no(struct expr *e) in expr_is_no()