X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=funcnode.h;h=04665c5cff2886e782b965f243e56bf969d85c05;hp=51f19f0cce65812a9771c60e796093357e024911;hb=dc255d1dd25f734bc6b1aae2f39418381c0823b5;hpb=080c029c02600d44ad7d797c8e373d4df899f9b0 diff --git a/funcnode.h b/funcnode.h index 51f19f0c..04665c5c 100644 --- a/funcnode.h +++ b/funcnode.h @@ -1,49 +1,116 @@ -#include "action.h" -#include "funcinst.h" -#include "hashtable.h" +#ifndef __FUNCNODE_H__ +#define __FUNCNODE_H__ -class ModelAction; +#include "hashset.h" +#include "classlist.h" +#include "threads-model.h" +#define MAX_DIST 10 typedef ModelList func_inst_list_mt; +typedef enum edge_type { + IN_EDGE, OUT_EDGE, BI_EDGE +} edge_type_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 group_reads_by_loc(FuncInst * inst); + 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); + + void incr_exit_count() { exit_count++; } + uint32_t get_exit_count() { return exit_count; } + + SnapList * 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 add_out_edge(FuncNode * other); + ModelList * get_out_edges() { return &out_edges; } + int compute_distance(FuncNode * target, int max_step = MAX_DIST); + + 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; + 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 + 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 - * - * To do: cds_atomic_compare_exchange contains three atomic operations - * that are feeded with the same source line number by llvm pass */ 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; - /* group atomic read actions by memory location */ - HashTable reads_by_loc; + 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); + + /* Store action_lists when calls to update_tree are deferred */ + SnapList * action_list_buffer; + + /* Set of locations read by this FuncNode */ + loc_set_t * read_locations; + + /* 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; + + /* Store the relation between this FuncNode and other FuncNodes */ + HashTable edge_table; + + /* FuncNodes that follow this node */ + ModelList out_edges; }; + +#endif /* __FUNCNODE_H__ */