add func_map_rev to map function ids to function names
[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 print();
25
26         MEMALLOC
27 private:
28         uint32_t func_counter;
29
30         /* map function names to integer ids */ 
31         HashTable<const char *, uint32_t, uintptr_t, 4, model_malloc, model_calloc, model_free> func_map;
32         /* map integer ids to function names */ 
33         ModelVector<const char *> func_map_rev;
34
35         ModelVector<FuncNode *> func_atomics;
36 };