augment hashtable with keyset
[c11tester.git] / history.h
1 #include "stl-model.h"
2 #include "common.h"
3 #include "hashtable.h"
4 #include "threads-model.h"
5
6 class ModelHistory {
7 public:
8         ModelHistory();
9         ~ModelHistory();
10
11         void enter_function(const uint32_t func_id, thread_id_t tid);
12         void exit_function(const uint32_t func_id, thread_id_t tid);
13
14         uint32_t get_func_counter() { return func_counter; }
15         void incr_func_counter() { func_counter++; }
16
17         void add_func_atomic(ModelAction *act, thread_id_t tid);
18
19         HashTable<const char *, uint32_t, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncMap() { return &func_map; }
20         ModelVector<const char *> * getFuncMapRev() { return &func_map_rev; }
21
22         ModelVector<FuncNode *> * getFuncAtomics() { return &func_atomics; }
23
24         void link_insts(func_inst_list_t * inst_list);
25         void print();
26
27         MEMALLOC
28 private:
29         uint32_t func_counter;
30
31         /* map function names to integer ids */ 
32         HashTable<const char *, uint32_t, uintptr_t, 4, model_malloc, model_calloc, model_free> func_map;
33         /* map integer ids to function names */ 
34         ModelVector<const char *> func_map_rev;
35
36         ModelVector<FuncNode *> func_atomics;
37 };