X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=predicate.h;h=df46ca1052551dc04b0423e5d3a394261c669f1c;hb=5ca7bf3bd5afb9ca961fe8daaa1fae2d88c39211;hp=1600cc8a9f5f7e26d628ef17b155e775a40b657a;hpb=0a4d633bc8a0f700621ec57104267d66e5165f35;p=c11tester.git diff --git a/predicate.h b/predicate.h index 1600cc8a..df46ca10 100644 --- a/predicate.h +++ b/predicate.h @@ -1,11 +1,12 @@ #ifndef __PREDICATE_H__ #define __PREDICATE_H__ -#include "funcinst.h" #include "hashset.h" #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; @@ -13,7 +14,7 @@ typedef HSIterator * 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; } @@ -38,6 +44,19 @@ 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_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_fail_count() { failure_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(); @@ -45,17 +64,28 @@ public: private: FuncInst * func_inst; bool entry_predicate; + 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 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; ModelVector children; /* Only a single parent may exist */ Predicate * parent; + Predicate * exit; /* May have multiple back edges, e.g. nested loops */ PredSet backedges; }; -#endif /* __PREDICATE_H__ */ +#endif /* __PREDICATE_H__ */