get rid of an unused function
[c11tester.git] / history.h
1 #ifndef __HISTORY_H__
2 #define __HISTORY_H__
3
4 #include "stl-model.h"
5 #include "common.h"
6 #include "hashtable.h"
7 #include "hashset.h"
8 #include "threads-model.h"
9
10 class ModelHistory {
11 public:
12         ModelHistory();
13         ~ModelHistory();
14
15         void enter_function(const uint32_t func_id, thread_id_t tid);
16         void exit_function(const uint32_t func_id, thread_id_t tid);
17
18         uint32_t get_func_counter() { return func_counter; }
19         void incr_func_counter() { func_counter++; }
20
21         void resize_func_nodes(uint32_t max_func_id);
22         void process_action(ModelAction *act, thread_id_t tid);
23
24         HashTable<const char *, uint32_t, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncMap() { return &func_map; }
25         ModelVector<const char *> * getFuncMapRev() { return &func_map_rev; }
26
27         ModelVector<FuncNode *> * getFuncNodes() { return &func_nodes; }
28         FuncNode * get_func_node(uint32_t func_id);
29 //      uint64_t query_last_read(void * location, thread_id_t tid);
30
31         void add_to_write_history(void * location, uint64_t write_val);
32         HashTable<void *, value_set_t *, uintptr_t, 4> * getWriteHistory() { return &write_history; }
33         void add_to_loc_func_nodes_map(void * location, FuncNode * node);
34
35         void set_new_exec_flag();
36         void print_write();
37         void print_func_node();
38
39         MEMALLOC
40 private:
41         uint32_t func_counter;
42
43         /* Map function names to integer ids */
44         HashTable<const char *, uint32_t, uintptr_t, 4, model_malloc, model_calloc, model_free> func_map;
45
46         /* Map integer ids to function names */
47         ModelVector<const char *> func_map_rev;
48
49         ModelVector<FuncNode *> func_nodes;
50
51         HashTable<void *, value_set_t *, uintptr_t, 4> write_history;
52
53         /* Map a location to FuncNodes that may read from it */
54         HashTable<void *, SnapList<FuncNode *> *, uintptr_t, 4> loc_func_nodes_map;
55 };
56
57 #endif  /* __HISTORY_H__ */