add a new data structure in execution.h, which is used by history.cc to link FuncInsts
[c11tester.git] / classlist.h
1 #ifndef CLASSLIST_H
2 #define CLASSLIST_H
3 #include <inttypes.h>
4 #include "stl-model.h"
5
6 class ClockVector;
7 class CycleGraph;
8 class CycleNode;
9 class ModelAction;
10 class ModelChecker;
11 class ModelExecution;
12 class ModelHistory;
13 class Node;
14 class NodeStack;
15 class Scheduler;
16 class Thread;
17 class TraceAnalysis;
18 class Fuzzer;
19 class FuncNode;
20 class FuncInst;
21
22 struct model_snapshot_members;
23 struct bug_message;
24 typedef SnapList<ModelAction *> action_list_t;
25 typedef SnapList<uint32_t> func_id_list_t;
26 #endif