X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=funcnode.h;h=f5b51021e51041bbbeaa1b926425932717f1b289;hb=1501c3cf268534e96d8011dbf4ecd829526f2a7a;hp=d2d3c427331632574dd70a648cce47c356aeab4c;hpb=cae6e82ba84ee7f3067f1279930452ae1fb66914;p=c11tester.git diff --git a/funcnode.h b/funcnode.h index d2d3c427..f5b51021 100644 --- a/funcnode.h +++ b/funcnode.h @@ -5,56 +5,102 @@ #include "funcinst.h" #include "hashtable.h" #include "hashset.h" +#include "predicate.h" +#include "history.h" typedef ModelList func_inst_list_mt; -typedef HashTable read_map_t; +typedef HashTable read_map_t; +typedef HashTable inst_act_map_t; class FuncNode { public: - FuncNode(); + FuncNode(ModelHistory * history); ~FuncNode(); uint32_t get_func_id() { return func_id; } const char * get_func_name() { return func_name; } void set_func_id(uint32_t id) { func_id = id; } void set_func_name(const char * name) { func_name = name; } + void set_new_exec_flag(); - FuncInst * get_or_add_action(ModelAction *act); + void add_inst(ModelAction *act); + FuncInst * get_inst(ModelAction *act); HashTable * getFuncInstMap() { return &func_inst_map; } func_inst_list_mt * get_inst_list() { return &inst_list; } func_inst_list_mt * get_entry_insts() { return &entry_insts; } void add_entry_inst(FuncInst * inst); - void link_insts(func_inst_list_t * inst_list); - void store_read(ModelAction * act, uint32_t tid); - uint64_t query_last_read(void * location, uint32_t tid); - void clear_read_map(uint32_t tid); + void update_tree(action_list_t * act_list); + void update_inst_tree(func_inst_list_t * inst_list); - /* TODO: generate EQUALITY or NULLITY predicate based on write_history in history.cc */ - void generate_predicate(FuncInst * func_inst); + void update_predicate_tree(action_list_t * act_list); + bool follow_branch(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act, HashTable* inst_act_map, SnapVector * unset_predicates); + void generate_predicate(Predicate ** curr_pred, FuncInst * next_inst, SnapVector * half_pred_expressions); + bool amend_predicate_expr(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act); - void print_last_read(uint32_t tid); + void incr_exit_count() { exit_count++; } + uint32_t get_exit_count() { return exit_count; } + + ModelList * get_action_list_buffer() { return &action_list_buffer; } + + void add_to_val_loc_map(uint64_t val, void * loc); + void add_to_val_loc_map(value_set_t * values, void * loc); + void update_loc_may_equal_map(void * new_loc, loc_set_t * old_locations); + + void init_predicate_tree_position(thread_id_t tid); + void set_predicate_tree_position(thread_id_t tid, Predicate * pred); + Predicate * get_predicate_tree_position(thread_id_t tid); + + void init_inst_act_map(thread_id_t tid); + void reset_inst_act_map(thread_id_t tid); + void update_inst_act_map(thread_id_t tid, ModelAction * read_act); + inst_act_map_t * get_inst_act_map(thread_id_t tid); + + void print_predicate_tree(); + void print_val_loc_map(); + void print_last_read(thread_id_t tid); MEMALLOC private: uint32_t func_id; const char * func_name; + ModelHistory * history; + bool predicate_tree_initialized; + Predicate * predicate_tree_entry; // a dummy node whose children are the real entries + + uint32_t exit_count; /* Use source line number as the key of hashtable, to check if * atomic operation with this line number has been added or not */ HashTable func_inst_map; - /* list of all atomic actions in this function */ + /* List of all atomic actions in this function */ func_inst_list_mt inst_list; - /* possible entry atomic actions in this function */ + /* Possible entry atomic actions in this function */ func_inst_list_mt entry_insts; /* Store the values read by atomic read actions per memory location for each thread */ - ModelVector thrd_read_map; - HashSet read_locations; + //ModelVector thrd_read_map; + + /* Store action_lists when calls to update_tree are deferred */ + ModelList action_list_buffer; + + /* read_locations: set of locations read by this FuncNode + * val_loc_map: keep track of locations that have the same values written to; + * loc_may_equal_map: deduced from val_loc_map; + */ + loc_set_t * read_locations; + HashTable * val_loc_map; + HashTable * loc_may_equal_map; + // value_set_t * values_may_read_from; + + /* run-time position in the predicate tree for each thread */ + ModelVector predicate_tree_position; + + SnapVector * thrd_inst_act_map; }; #endif /* __FUNCNODE_H__ */