X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=funcnode.h;h=a0eb6233988c1d082de9e88a734ee084772209c4;hp=c70bc59c05c13e996be0e1da4d501b3c04395fce;hb=9b15b68fbaea67b36fa99bcadb60a010eb4e131f;hpb=3594ff85c07e29afe077fd9005200e0342991787 diff --git a/funcnode.h b/funcnode.h index c70bc59c..a0eb6233 100644 --- a/funcnode.h +++ b/funcnode.h @@ -1,15 +1,17 @@ #ifndef __FUNCNODE_H__ #define __FUNCNODE_H__ -#include "action.h" -#include "funcinst.h" -#include "hashtable.h" #include "hashset.h" -#include "predicate.h" -#include "history.h" +#include "hashfunction.h" +#include "classlist.h" +#include "threads-model.h" + +#define MAX_DIST 10 typedef ModelList func_inst_list_mt; -typedef HashTable inst_act_map_t; +typedef enum edge_type { + IN_EDGE, OUT_EDGE, BI_EDGE +} edge_type_t; class FuncNode { public: @@ -23,6 +25,7 @@ public: void set_new_exec_flag(); void add_inst(ModelAction *act); + FuncInst * create_new_inst(ModelAction *act); FuncInst * get_inst(ModelAction *act); HashTable * getFuncInstMap() { return &func_inst_map; } @@ -33,7 +36,7 @@ public: void update_tree(action_list_t * act_list); void update_inst_tree(func_inst_list_t * inst_list); 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); + bool follow_branch(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act, Predicate ** unset_predicate); void incr_exit_count() { exit_count++; } uint32_t get_exit_count() { return exit_count; } @@ -53,19 +56,26 @@ public: 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 add_out_edge(FuncNode * other); + ModelList * get_out_edges() { return &out_edges; } + int compute_distance(FuncNode * target, int max_step = MAX_DIST); + + void add_failed_predicate(Predicate * pred); + 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 + Predicate * predicate_tree_entry; // A dummy node whose children are the real entries + Predicate * predicate_tree_exit; // A dummy node uint32_t exit_count; + uint32_t marker; + + void incr_marker() { marker++; } /* Use source line number as the key of hashtable, to check if * atomic operation with this line number has been added or not @@ -78,27 +88,52 @@ private: /* Possible entry atomic actions in this function */ func_inst_list_mt entry_insts; - void infer_predicates(FuncInst * next_inst, ModelAction * next_act, HashTable * loc_act_map, SnapVector * half_pred_expressions); - void generate_predicates(Predicate ** curr_pred, FuncInst * next_inst, SnapVector * half_pred_expressions); - bool amend_predicate_expr(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act); + /* Map a FuncInst to the its predicate when updating predicate trees */ + HashTable inst_pred_map; + + /* Number FuncInsts to detect loops when updating predicate trees */ + HashTable inst_id_map; + + /* Delect read actions at the same locations when updating predicate trees */ + HashTable loc_act_map; + + void infer_predicates(FuncInst * next_inst, ModelAction * next_act, SnapVector * half_pred_expressions); + void generate_predicates(Predicate * curr_pred, FuncInst * next_inst, SnapVector * half_pred_expressions); + bool amend_predicate_expr(Predicate * curr_pred, FuncInst * next_inst, ModelAction * next_act); /* Store action_lists when calls to update_tree are deferred */ SnapList * 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: look up locations that may share the same value as key; - * deduced from val_loc_map; */ + /* Set of locations read by this FuncNode */ loc_set_t * read_locations; - HashTable * val_loc_map; + + /* Set of locations written to by this FuncNode */ + loc_set_t * write_locations; + + /* Keeps track of locations that have the same values written to */ + HashTable * val_loc_map; + + /* Keeps track of locations that may share the same value as key, deduced from 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; - /* A run-time map from FuncInst to ModelAction for each thread; needed by NewFuzzer */ - SnapVector * thrd_inst_act_map; + PredSet predicate_leaves; + ModelVector leaves_tmp_storage; + ModelVector weight_debug_vec; + PredSet failed_predicates; + + /* Store the relation between this FuncNode and other FuncNodes */ + HashTable edge_table; + + /* FuncNodes that follow this node */ + ModelList out_edges; + + void assign_initial_weight(); + void update_predicate_tree_weight(); }; -#endif /* __FUNCNODE_H__ */ +#endif /* __FUNCNODE_H__ */