]> gitweb.factorcode.org Git - factor.git/blob - vm/contexts.cpp
VM: removing factor_vm::init_contexts()
[factor.git] / vm / contexts.cpp
1 #include "master.hpp"
2
3 namespace factor {
4
5 context::context(cell ds_size, cell rs_size, cell cs_size)
6     : callstack_top(0),
7       callstack_bottom(0),
8       datastack(0),
9       retainstack(0),
10       callstack_save(0),
11       datastack_seg(new segment(ds_size, false)),
12       retainstack_seg(new segment(rs_size, false)),
13       callstack_seg(new segment(cs_size, false)) {
14   reset();
15 }
16
17 void context::reset_datastack() {
18   datastack = datastack_seg->start - sizeof(cell);
19   fill_stack_seg(datastack, datastack_seg, 0x11111111);
20 }
21
22 void context::reset_retainstack() {
23   retainstack = retainstack_seg->start - sizeof(cell);
24   fill_stack_seg(retainstack, retainstack_seg, 0x22222222);
25 }
26
27 void context::reset_callstack() {
28   callstack_top = callstack_bottom = CALLSTACK_BOTTOM(this);
29 }
30
31 void context::reset_context_objects() {
32   memset_cell(context_objects, false_object,
33               context_object_count * sizeof(cell));
34 }
35
36 void context::fill_stack_seg(cell top_ptr, segment* seg, cell pattern) {
37 #ifdef FACTOR_DEBUG
38   cell clear_start = top_ptr + sizeof(cell);
39   cell clear_size = seg->end - clear_start;
40   memset_cell((void*)clear_start, pattern, clear_size);
41 #endif
42 }
43
44 vm_error_type context::address_to_error(cell addr) {
45   if (datastack_seg->underflow_p(addr))
46     return ERROR_DATASTACK_UNDERFLOW;
47   if (datastack_seg->overflow_p(addr))
48     return ERROR_DATASTACK_OVERFLOW;
49   if (retainstack_seg->underflow_p(addr))
50     return ERROR_RETAINSTACK_UNDERFLOW;
51   if (retainstack_seg->overflow_p(addr))
52     return ERROR_RETAINSTACK_OVERFLOW;
53   // These are flipped because the callstack grows downwards.
54   if (callstack_seg->underflow_p(addr))
55     return ERROR_CALLSTACK_OVERFLOW;
56   if (callstack_seg->overflow_p(addr))
57     return ERROR_CALLSTACK_UNDERFLOW;
58   return ERROR_MEMORY;
59 }
60
61 void context::reset() {
62   reset_datastack();
63   reset_retainstack();
64   reset_callstack();
65   reset_context_objects();
66 }
67
68 void context::fix_stacks() {
69   if (datastack + sizeof(cell) < datastack_seg->start ||
70       datastack + stack_reserved >= datastack_seg->end)
71     reset_datastack();
72
73   if (retainstack + sizeof(cell) < retainstack_seg->start ||
74       retainstack + stack_reserved >= retainstack_seg->end)
75     reset_retainstack();
76 }
77
78 context::~context() {
79   delete datastack_seg;
80   delete retainstack_seg;
81   delete callstack_seg;
82 }
83
84 context* factor_vm::new_context() {
85   context* new_context;
86
87   if (unused_contexts.empty()) {
88     new_context = new context(datastack_size, retainstack_size, callstack_size);
89   } else {
90     new_context = unused_contexts.back();
91     unused_contexts.pop_back();
92   }
93
94   new_context->reset();
95
96   active_contexts.insert(new_context);
97
98   return new_context;
99 }
100
101 // Allocates memory
102 void factor_vm::init_context(context* ctx) {
103   ctx->context_objects[OBJ_CONTEXT] = allot_alien((cell)ctx);
104 }
105
106 // Allocates memory (init_context(), but not parent->new_context()
107 VM_C_API context* new_context(factor_vm* parent) {
108   context* new_context = parent->new_context();
109   parent->init_context(new_context);
110   return new_context;
111 }
112
113 void factor_vm::delete_context() {
114   unused_contexts.push_back(ctx);
115   active_contexts.erase(ctx);
116
117   while (unused_contexts.size() > 10) {
118     context* stale_context = unused_contexts.front();
119     unused_contexts.pop_front();
120     delete stale_context;
121   }
122 }
123
124 VM_C_API void delete_context(factor_vm* parent) {
125   parent->delete_context();
126 }
127
128 // Allocates memory (init_context())
129 VM_C_API void reset_context(factor_vm* parent) {
130
131   // The function is used by (start-context-and-delete) which expects
132   // the top two datastack items to be preserved after the context has
133   // been resetted.
134
135   context* ctx = parent->ctx;
136   cell arg1 = ctx->pop();
137   cell arg2 = ctx->pop();
138   ctx->reset();
139   ctx->push(arg2);
140   ctx->push(arg1);
141   parent->init_context(ctx);
142 }
143
144 // Allocates memory
145 cell factor_vm::begin_callback(cell quot_) {
146   data_root<object> quot(quot_, this);
147
148   ctx->reset();
149   spare_ctx = new_context();
150   callback_ids.push_back(callback_id++);
151
152   init_context(ctx);
153
154   return quot.value();
155 }
156
157 // Allocates memory
158 cell begin_callback(factor_vm* parent, cell quot) {
159   return parent->begin_callback(quot);
160 }
161
162 void factor_vm::end_callback() {
163   callback_ids.pop_back();
164   delete_context();
165 }
166
167 void end_callback(factor_vm* parent) { parent->end_callback(); }
168
169 void factor_vm::primitive_current_callback() {
170   ctx->push(tag_fixnum(callback_ids.back()));
171 }
172
173 void factor_vm::primitive_context_object() {
174   fixnum n = untag_fixnum(ctx->peek());
175   ctx->replace(ctx->context_objects[n]);
176 }
177
178 void factor_vm::primitive_set_context_object() {
179   fixnum n = untag_fixnum(ctx->pop());
180   cell value = ctx->pop();
181   ctx->context_objects[n] = value;
182 }
183
184 void factor_vm::primitive_context_object_for() {
185   context* other_ctx = (context*)pinned_alien_offset(ctx->pop());
186   fixnum n = untag_fixnum(ctx->peek());
187   ctx->replace(other_ctx->context_objects[n]);
188 }
189
190 // Allocates memory
191 cell factor_vm::stack_to_array(cell bottom, cell top, vm_error_type error) {
192   fixnum depth = (fixnum)(top - bottom + sizeof(cell));
193
194   if (depth < 0) {
195     general_error(error, false_object, false_object);
196   }
197   array* a = allot_uninitialized_array<array>(depth / sizeof(cell));
198   memcpy(a + 1, (void*)bottom, depth);
199   return tag<array>(a);
200 }
201
202 // Allocates memory
203 cell factor_vm::datastack_to_array(context* ctx) {
204   return stack_to_array(ctx->datastack_seg->start,
205                         ctx->datastack,
206                         ERROR_DATASTACK_UNDERFLOW);
207 }
208
209 // Allocates memory
210 void factor_vm::primitive_datastack_for() {
211   data_root<alien> alien_ctx(ctx->pop(), this);
212   context* other_ctx = (context*)pinned_alien_offset(alien_ctx.value());
213   cell array = datastack_to_array(other_ctx);
214   ctx->push(array);
215 }
216
217 // Allocates memory
218 cell factor_vm::retainstack_to_array(context* ctx) {
219   return stack_to_array(ctx->retainstack_seg->start,
220                         ctx->retainstack,
221                         ERROR_RETAINSTACK_UNDERFLOW);
222 }
223
224 // Allocates memory
225 void factor_vm::primitive_retainstack_for() {
226   context* other_ctx = (context*)pinned_alien_offset(ctx->peek());
227   ctx->replace(retainstack_to_array(other_ctx));
228 }
229
230 // returns pointer to top of stack
231 static cell array_to_stack(array* array, cell bottom) {
232   cell depth = array_capacity(array) * sizeof(cell);
233   memcpy((void*)bottom, array + 1, depth);
234   return bottom + depth - sizeof(cell);
235 }
236
237 void factor_vm::primitive_set_datastack() {
238   array* arr = untag_check<array>(ctx->pop());
239   ctx->datastack = array_to_stack(arr, ctx->datastack_seg->start);
240 }
241
242 void factor_vm::primitive_set_retainstack() {
243   array* arr = untag_check<array>(ctx->pop());
244   ctx->retainstack = array_to_stack(arr, ctx->retainstack_seg->start);
245 }
246
247 // Used to implement call(
248 void factor_vm::primitive_check_datastack() {
249   fixnum out = to_fixnum(ctx->pop());
250   fixnum in = to_fixnum(ctx->pop());
251   fixnum height = out - in;
252   array* saved_datastack = untag_check<array>(ctx->pop());
253   fixnum saved_height = array_capacity(saved_datastack);
254   fixnum current_height =
255       (ctx->datastack - ctx->datastack_seg->start + sizeof(cell)) /
256       sizeof(cell);
257   if (current_height - height != saved_height)
258     ctx->push(false_object);
259   else {
260     cell* ds_bot = (cell*)ctx->datastack_seg->start;
261     for (fixnum i = 0; i < saved_height - in; i++) {
262       if (ds_bot[i] != array_nth(saved_datastack, i)) {
263         ctx->push(false_object);
264         return;
265       }
266     }
267     ctx->push(special_objects[OBJ_CANONICAL_TRUE]);
268   }
269 }
270
271 void factor_vm::primitive_load_locals() {
272   fixnum count = untag_fixnum(ctx->pop());
273   memcpy((cell*)(ctx->retainstack + sizeof(cell)),
274          (cell*)(ctx->datastack - sizeof(cell) * (count - 1)),
275          sizeof(cell) * count);
276   ctx->datastack -= sizeof(cell) * count;
277   ctx->retainstack += sizeof(cell) * count;
278 }
279
280 }