Lines Matching refs:expr
32 struct expr * const expr; member
47 struct expr { struct
60 struct expr *expr; argument
192 struct expr *expr; /* the optional conditional part of the property */ member
247 struct expr *visibility;
253 struct expr *dep;
286 struct expr *expr_alloc_symbol(struct symbol *sym);
287 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
288 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
289 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
290 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
291 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
292 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
293 bool expr_eq(struct expr *e1, struct expr *e2);
294 tristate expr_calc_value(struct expr *e);
295 struct expr *expr_eliminate_dups(struct expr *e);
296 struct expr *expr_transform(struct expr *e);
297 bool expr_contains_symbol(struct expr *dep, struct symbol *sym);
298 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
299 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
301 void expr_fprint(struct expr *e, FILE *out);
303 void expr_gstr_print(const struct expr *e, struct gstr *gs);
304 void expr_gstr_print_revdep(struct expr *e, struct gstr *gs,
307 static inline bool expr_is_yes(const struct expr *e) in expr_is_yes()