X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=predicate.h;h=e901d91fe3d71c357a83be46b8a098d8123f69e3;hp=e2412d186705e079e60dabe68762b085af1245b8;hb=8c52c96262bbb96bcb4d18706daf8dbd77990b1d;hpb=db26d1e3370a583f8eef79194c87ba9d2ef92530 diff --git a/predicate.h b/predicate.h index e2412d18..e901d91f 100644 --- a/predicate.h +++ b/predicate.h @@ -1,31 +1,88 @@ +#ifndef __PREDICTAE_H__ +#define __PREDICATE_H__ + #include "funcinst.h" +#include "hashset.h" + +unsigned int pred_expr_hash (struct pred_expr *); +bool pred_expr_equal(struct pred_expr *, struct pred_expr *); +typedef HashSet PredExprSet; +typedef HSIterator PredExprSetIter; typedef enum predicate_token { - EQUALITY, NULLITY + NOPREDICATE, EQUALITY, NULLITY } token_t; /* If token is EQUALITY, then the predicate asserts whether - * this load should read the same value as the last value + * this load should read the same value as the last value * read at memory location specified in predicate_expr. */ -struct predicate_expr { +struct pred_expr { + pred_expr(token_t token, FuncInst * inst, bool value) : + token(token), + func_inst(inst), + value(value) + {} + token_t token; - void * location; + FuncInst * func_inst; bool value; + + MEMALLOC }; +/* Used by predicate generator */ +struct half_pred_expr { + half_pred_expr(token_t token, FuncInst * inst) : + token(token), + func_inst(inst) + {} + + token_t token; + FuncInst * func_inst; + + SNAPSHOTALLOC +}; + + class Predicate { public: - Predicate(); + Predicate(FuncInst * func_inst, bool is_entry = false); ~Predicate(); FuncInst * get_func_inst() { return func_inst; } - ModelList * get_predicates() { return &predicates; } - void add_predicate(predicate_expr predicate); + PredExprSet * get_pred_expressions() { return &pred_expressions; } + + void add_predicate_expr(token_t token, FuncInst * func_inst, bool value); + void add_child(Predicate * child); + void set_parent(Predicate * parent_pred) { parent = parent_pred; } + void add_backedge(Predicate * back_pred) { backedges.add(back_pred); } + void copy_predicate_expr(Predicate * other); + + ModelVector * get_children() { return &children; } + Predicate * get_parent() { return parent; } + PredSet * get_backedges() { return &backedges; } + + bool is_entry_predicate() { return entry_predicate; } + void set_entry_predicate() { entry_predicate = true; } + + void print_predicate(); + void print_pred_subtree(); MEMALLOC private: FuncInst * func_inst; - /* may have multiple precicates */ - ModelList predicates; + bool entry_predicate; + + /* may have multiple predicate expressions */ + PredExprSet pred_expressions; + ModelVector children; + + /* only a single parent may exist */ + Predicate * parent; + + /* may have multiple back edges, e.g. nested loops */ + PredSet backedges; }; + +#endif /* __PREDICATE_H__ */