X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=funcnode.h;h=730a7b7cc22a50767d1df5d4563b90d84ec46973;hp=3d3aaa4c852cbb8d044b8750acef7316553d2bc5;hb=6b105d0bea24fa7a534d7f83e4c34dadc9d4b02d;hpb=6ded70495d74d65f8c6261b11685156b2325e709 diff --git a/funcnode.h b/funcnode.h index 3d3aaa4c..730a7b7c 100644 --- a/funcnode.h +++ b/funcnode.h @@ -1,10 +1,14 @@ +#ifndef __FUNCNODE_H__ +#define __FUNCNODE_H__ + #include "action.h" #include "funcinst.h" #include "hashtable.h" - -class ModelAction; +#include "hashset.h" +#include "predicate.h" typedef ModelList func_inst_list_mt; +typedef HashTable read_map_t; class FuncNode { public: @@ -16,29 +20,49 @@ public: void set_func_id(uint32_t id) { func_id = id; } void set_func_name(const char * name) { func_name = name; } - FuncInst * get_or_add_action(ModelAction *act); + void add_inst(ModelAction *act); + FuncInst * get_inst(ModelAction *act); - HashTable * getFuncInsts() { return &func_insts; } + 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 update_tree(action_list_t * act_list); + void update_inst_tree(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); + + /* TODO: generate EQUALITY or NULLITY predicate based on write_history in history.cc */ + void update_predicate_tree(action_list_t * act_list); + void deep_update(Predicate * pred); + bool follow_branch(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act, HashTable* loc_act_map); + void print_predicate_tree(); + + void print_last_read(uint32_t tid); + MEMALLOC private: uint32_t func_id; const char * func_name; + bool predicate_tree_initialized; + Predicate * predicate_tree_entry; // a dummy node whose children are the real entries - /* Use source line number as the key of hashtable, to check if + /* Use source line number as the key of hashtable, to check if * atomic operation with this line number has been added or not - * - * To do: cds_atomic_compare_exchange contains three atomic operations - * that are feeded with the same source line number by llvm pass */ - HashTable func_insts; + HashTable func_inst_map; - /* list of all atomic instructions in this function */ + /* list of all atomic actions in this function */ func_inst_list_mt inst_list; - /* possible entry atomic instructions 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; }; + +#endif /* __FUNCNODE_H__ */