]> gitweb.factorcode.org Git - factor.git/blob - vm/master.hpp
Merge branch 'simd-cleanup' of git://factorcode.org/git/factor into simd-cleanup
[factor.git] / vm / master.hpp
1 #ifndef __FACTOR_MASTER_H__
2 #define __FACTOR_MASTER_H__
3
4 #define _THREAD_SAFE
5 #define _REENTRANT
6
7 #ifndef WINCE
8 #include <errno.h>
9 #endif
10
11 #ifdef FACTOR_DEBUG
12 #include <assert.h>
13 #endif
14
15 /* C headers */
16 #include <fcntl.h>
17 #include <limits.h>
18 #include <math.h>
19 #include <stdbool.h>
20 #include <setjmp.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <time.h>
25
26 /* C++ headers */
27 #include <algorithm>
28 #include <map>
29 #include <set>
30 #include <vector>
31 #include <iostream>
32
33 /* Forward-declare this since it comes up in function prototypes */
34 namespace factor
35 {
36         struct factor_vm;
37 }
38
39 /* Factor headers */
40 #include "layouts.hpp"
41 #include "platform.hpp"
42 #include "primitives.hpp"
43 #include "stacks.hpp"
44 #include "segments.hpp"
45 #include "contexts.hpp"
46 #include "run.hpp"
47 #include "objects.hpp"
48 #include "profiler.hpp"
49 #include "errors.hpp"
50 #include "bignumint.hpp"
51 #include "bignum.hpp"
52 #include "booleans.hpp"
53 #include "instruction_operands.hpp"
54 #include "code_blocks.hpp"
55 #include "bump_allocator.hpp"
56 #include "bitwise_hacks.hpp"
57 #include "mark_bits.hpp"
58 #include "free_list.hpp"
59 #include "free_list_allocator.hpp"
60 #include "write_barrier.hpp"
61 #include "object_start_map.hpp"
62 #include "nursery_space.hpp"
63 #include "aging_space.hpp"
64 #include "tenured_space.hpp"
65 #include "data_heap.hpp"
66 #include "code_heap.hpp"
67 #include "gc.hpp"
68 #include "debug.hpp"
69 #include "strings.hpp"
70 #include "tuples.hpp"
71 #include "words.hpp"
72 #include "float_bits.hpp"
73 #include "io.hpp"
74 #include "image.hpp"
75 #include "alien.hpp"
76 #include "callbacks.hpp"
77 #include "dispatch.hpp"
78 #include "vm.hpp"
79 #include "allot.hpp"
80 #include "tagged.hpp"
81 #include "data_roots.hpp"
82 #include "code_roots.hpp"
83 #include "generic_arrays.hpp"
84 #include "slot_visitor.hpp"
85 #include "collector.hpp"
86 #include "copying_collector.hpp"
87 #include "nursery_collector.hpp"
88 #include "aging_collector.hpp"
89 #include "to_tenured_collector.hpp"
90 #include "code_block_visitor.hpp"
91 #include "compaction.hpp"
92 #include "full_collector.hpp"
93 #include "callstack.hpp"
94 #include "arrays.hpp"
95 #include "math.hpp"
96 #include "byte_arrays.hpp"
97 #include "jit.hpp"
98 #include "quotations.hpp"
99 #include "inline_cache.hpp"
100 #include "factor.hpp"
101 #include "utilities.hpp"
102
103 #endif /* __FACTOR_MASTER_H__ */