]> gitweb.factorcode.org Git - factor.git/blob - vm/objects.hpp
d082c18ba250290bb8de10e846b85c91bcd5918a
[factor.git] / vm / objects.hpp
1 namespace factor {
2
3 // Special object count and identifiers must be kept in sync with:
4 //   core/kernel/kernel.factor
5 //   core/bootstrap/image/image.factor
6
7 static const cell special_object_count = 80;
8
9 enum special_object {
10   OBJ_WALKER_HOOK = 3, /* non-local exit hook, used by library only */
11   OBJ_CALLCC_1,        /* used to pass the value in callcc1 */
12
13   ERROR_HANDLER_QUOT = 5, /* quotation called when VM throws an error */
14   OBJ_ERROR,              /* a marker consed onto kernel errors */
15
16   OBJ_CELL_SIZE = 7, /* sizeof(cell) */
17   OBJ_CPU,           /* CPU architecture */
18   OBJ_OS,            /* operating system name */
19
20   OBJ_ARGS = 10, /* command line arguments */
21   OBJ_STDIN,     /* stdin FILE* handle */
22   OBJ_STDOUT,    /* stdout FILE* handle */
23
24   OBJ_IMAGE = 13, /* image path name */
25   OBJ_EXECUTABLE, /* runtime executable path name */
26
27   OBJ_EMBEDDED = 15,  /* are we embedded in another app? */
28   OBJ_EVAL_CALLBACK,  /* used when Factor is embedded in a C app */
29   OBJ_YIELD_CALLBACK, /* used when Factor is embedded in a C app */
30   OBJ_SLEEP_CALLBACK, /* used when Factor is embedded in a C app */
31
32   OBJ_STARTUP_QUOT = 20, /* startup quotation */
33   OBJ_GLOBAL,            /* global namespace */
34   OBJ_SHUTDOWN_QUOT,     /* shutdown quotation */
35
36   /* Quotation compilation in quotations.c */
37   JIT_PROLOG = 23,
38   JIT_PRIMITIVE_WORD,
39   JIT_PRIMITIVE,
40   JIT_WORD_JUMP,
41   JIT_WORD_CALL,
42   JIT_IF_WORD,
43   JIT_IF,
44   JIT_SAFEPOINT,
45   JIT_EPILOG,
46   JIT_RETURN,
47   JIT_PROFILING,
48   JIT_PUSH_IMMEDIATE,
49   JIT_DIP_WORD,
50   JIT_DIP,
51   JIT_2DIP_WORD,
52   JIT_2DIP,
53   JIT_3DIP_WORD,
54   JIT_3DIP,
55   JIT_EXECUTE,
56   JIT_DECLARE_WORD,
57
58   /* External entry points */
59   C_TO_FACTOR_WORD = 43,
60   LAZY_JIT_COMPILE_WORD,
61   UNWIND_NATIVE_FRAMES_WORD,
62   GET_FPU_STATE_WORD,
63   SET_FPU_STATE_WORD,
64   SIGNAL_HANDLER_WORD,
65   LEAF_SIGNAL_HANDLER_WORD,
66   FFI_SIGNAL_HANDLER_WORD,
67   FFI_LEAF_SIGNAL_HANDLER_WORD,
68
69   /* Incremented on every modify-code-heap call; invalidates call( inline
70      caching */
71   REDEFINITION_COUNTER = 52,
72
73   /* Callback stub generation in callbacks.c */
74   CALLBACK_STUB = 53,
75
76   /* Polymorphic inline cache generation in inline_cache.c */
77   PIC_LOAD = 54,
78   PIC_TAG,
79   PIC_TUPLE,
80   PIC_CHECK_TAG,
81   PIC_CHECK_TUPLE,
82   PIC_HIT,
83   PIC_MISS_WORD,
84   PIC_MISS_TAIL_WORD,
85
86   /* Megamorphic cache generation in dispatch.c */
87   MEGA_LOOKUP = 62,
88   MEGA_LOOKUP_WORD,
89   MEGA_MISS_WORD,
90
91   OBJ_UNDEFINED = 65, /* default quotation for undefined words */
92
93   OBJ_STDERR = 66, /* stderr FILE* handle */
94
95   OBJ_STAGE2 = 67, /* have we bootstrapped? */
96
97   OBJ_CURRENT_THREAD = 68,
98
99   OBJ_THREADS = 69,
100   OBJ_RUN_QUEUE = 70,
101   OBJ_SLEEP_QUEUE = 71,
102
103   OBJ_VM_COMPILER = 72, /* version string of the compiler we were built with */
104
105   OBJ_WAITING_CALLBACKS = 73,
106
107   OBJ_SIGNAL_PIPE = 74, /* file descriptor for pipe used to communicate signals
108                            only used on unix */
109 };
110
111 /* save-image-and-exit discards special objects that are filled in on startup
112    anyway, to reduce image size */
113 #define OBJ_FIRST_SAVE OBJ_STARTUP_QUOT
114 #define OBJ_LAST_SAVE OBJ_STAGE2
115
116 inline static bool save_special_p(cell i) {
117   return (i >= OBJ_FIRST_SAVE && i <= OBJ_LAST_SAVE);
118 }
119
120 template <typename Iterator> void object::each_slot(Iterator& iter) {
121   cell scan = (cell)this;
122   cell payload_start = binary_payload_start();
123   cell end = scan + payload_start;
124
125   scan += sizeof(cell);
126
127   while (scan < end) {
128     iter((cell*)scan);
129     scan += sizeof(cell);
130   }
131 }
132
133 }