X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=predicate.h;h=8afc24be0839ff5da5c11e05a1b0c910a7fa1133;hb=5d3037f7280786b48caa804d92aa360a6dea846d;hp=413b2cd88ec90ff0ac2c9e64dc89c0ec8892aa72;hpb=064db08aed92a31adbf00497f4dc4608f5b99857;p=c11tester.git diff --git a/predicate.h b/predicate.h index 413b2cd8..8afc24be 100644 --- a/predicate.h +++ b/predicate.h @@ -5,6 +5,8 @@ #include "predicatetypes.h" #include "classlist.h" +#define MAX_DEPTH 0x7fffffff + unsigned int pred_expr_hash (struct pred_expr *); bool pred_expr_equal(struct pred_expr *, struct pred_expr *); typedef HashSet PredExprSet; @@ -20,15 +22,18 @@ public: 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 set_exit(Predicate * exit_pred) { exit = exit_pred; } + void set_parent(Predicate * parent_pred); + void set_exit(Predicate * exit_pred); void add_backedge(Predicate * back_pred) { backedges.add(back_pred); } + void set_weight(double weight_) { weight = weight_; } void copy_predicate_expr(Predicate * other); + Predicate * follow_write_child(FuncInst * inst); ModelVector * get_children() { return &children; } Predicate * get_parent() { return parent; } Predicate * get_exit() { return exit; } PredSet * get_backedges() { return &backedges; } + double get_weight() { return weight; } bool is_entry_predicate() { return entry_predicate; } void set_entry_predicate() { entry_predicate = true; } @@ -40,12 +45,15 @@ public: ConcretePredicate * evaluate(inst_act_map_t * inst_act_map, thread_id_t tid); uint32_t get_expl_count() { return exploration_count; } - uint32_t get_fail_count() { return failure_count; } - uint32_t get_scleep_score() { return sleep_score; } - void incr_expl_count(); - void incr_fail_count(); - void incr_sleep_score(uint32_t amount); - void decr_sleep_score(uint32_t amount); + uint32_t get_store_visible_count() { return store_visible_count; } + uint32_t get_total_checking_count() { return total_checking_count; } + + void incr_expl_count() { exploration_count++; } + void incr_store_visible_count() { store_visible_count++; } + void incr_total_checking_count() { total_checking_count++; } + + uint32_t get_depth() { return depth; } + void set_depth(uint32_t depth_) { depth = depth_; } void print_predicate(); void print_pred_subtree(); @@ -57,9 +65,13 @@ private: bool exit_predicate; bool does_write; + /* Height of this predicate node in the predicate tree */ + uint32_t depth; + double weight; + uint32_t exploration_count; - uint32_t failure_count; - uint32_t sleep_score; /* 0 <= sleep_score <= 100 */ + uint32_t store_visible_count; + uint32_t total_checking_count; /* The number of times the store visibility is checked */ /* May have multiple predicate expressions */ PredExprSet pred_expressions; @@ -73,4 +85,4 @@ private: PredSet backedges; }; -#endif /* __PREDICATE_H__ */ +#endif /* __PREDICATE_H__ */