]> gitweb.factorcode.org Git - factor.git/blob - vm/vm.hpp
vm: a stack underflow inside a primitive could leave a data root in an uninitialized...
[factor.git] / vm / vm.hpp
1 namespace factor
2 {
3
4 struct growable_array;
5 struct code_root;
6
7 struct factor_vm
8 {
9         // First 5 fields accessed directly by compiler. See basis/vm/vm.factor
10
11         /* Current context */
12         context *ctx;
13
14         /* Spare context -- for callbacks */
15         context *spare_ctx;
16
17         /* New objects are allocated here */
18         nursery_space nursery;
19
20         /* Add this to a shifted address to compute write barrier offsets */
21         cell cards_offset;
22         cell decks_offset;
23
24         /* Various special objects, accessed by special-object and
25         set-special-object primitives */
26         cell special_objects[special_object_count];
27
28         /* Data stack and retain stack sizes */
29         cell datastack_size, retainstack_size, callstack_size;
30
31         /* Stack of callback IDs */
32         std::vector<int> callback_ids;
33
34         /* Next callback ID */
35         int callback_id;
36
37         /* Pooling unused contexts to make context allocation cheaper */
38         std::vector<context *> unused_contexts;
39
40         /* Active contexts, for tracing by the GC */
41         std::set<context *> active_contexts;
42
43         /* Canonical truth value. In Factor, 't' */
44         cell true_object;
45
46         /* External entry points */
47         c_to_factor_func_type c_to_factor_func;
48
49         /* Is call counting enabled? */
50         bool profiling_p;
51
52         /* Global variables used to pass fault handler state from signal handler
53         to VM */
54         cell signal_number;
55         cell signal_fault_addr;
56         unsigned int signal_fpu_status;
57
58         /* GC is off during heap walking */
59         bool gc_off;
60
61         /* Data heap */
62         data_heap *data;
63
64         /* Code heap */
65         code_heap *code;
66
67         /* Pinned callback stubs */
68         callback_heap *callbacks;
69
70         /* Only set if we're performing a GC */
71         gc_state *current_gc;
72
73         /* Mark stack */
74         std::vector<cell> mark_stack;
75
76         /* If not NULL, we push GC events here */
77         std::vector<gc_event> *gc_events;
78
79         /* If a runtime function needs to call another function which potentially
80            allocates memory, it must wrap any references to the data and code
81            heaps with data_root and code_root smart pointers, which register
82            themselves here. See data_roots.hpp and code_roots.hpp */
83         std::vector<data_root_range> data_roots;
84         std::vector<cell> bignum_roots;
85         std::vector<code_root *> code_roots;
86
87         /* Debugger */
88         bool fep_disabled;
89         bool full_output;
90
91         /* Canonical bignums */
92         cell bignum_zero;
93         cell bignum_pos_one;
94         cell bignum_neg_one;
95
96         /* Method dispatch statistics */
97         dispatch_statistics dispatch_stats;
98
99         /* Number of entries in a polymorphic inline cache */
100         cell max_pic_size;
101
102         /* Incrementing object counter for identity hashing */
103         cell object_counter;
104
105         /* Sanity check to ensure that monotonic counter doesn't
106         decrease */
107         u64 last_nano_count;
108
109         /* Stack for signal handlers, only used on Unix */
110         segment *signal_callstack_seg;
111
112         // contexts
113         context *new_context();
114         void init_context(context *ctx);
115         void delete_context(context *old_context);
116         void init_contexts(cell datastack_size_, cell retainstack_size_, cell callstack_size_);
117         void delete_contexts();
118         cell begin_callback(cell quot);
119         void end_callback();
120         void primitive_current_callback();
121         void primitive_context_object();
122         void primitive_context_object_for();
123         void primitive_set_context_object();
124         cell stack_to_array(cell bottom, cell top);
125         cell datastack_to_array(context *ctx);
126         void primitive_datastack();
127         void primitive_datastack_for();
128         cell retainstack_to_array(context *ctx);
129         void primitive_retainstack();
130         void primitive_retainstack_for();
131         cell array_to_stack(array *array, cell bottom);
132         void set_datastack(context *ctx, array *array);
133         void primitive_set_datastack();
134         void set_retainstack(context *ctx, array *array);
135         void primitive_set_retainstack();
136         void primitive_check_datastack();
137         void primitive_load_locals();
138
139         template<typename Iterator> void iterate_active_callstacks(Iterator &iter)
140         {
141                 std::set<context *>::const_iterator begin = active_contexts.begin();
142                 std::set<context *>::const_iterator end = active_contexts.end();
143                 while(begin != end) iterate_callstack(*begin++,iter);
144         }
145
146         // run
147         void primitive_exit();
148         void primitive_nano_count();
149         void primitive_sleep();
150         void primitive_set_slot();
151
152         // objects
153         void primitive_special_object();
154         void primitive_set_special_object();
155         void primitive_identity_hashcode();
156         void compute_identity_hashcode(object *obj);
157         void primitive_compute_identity_hashcode();
158         cell object_size(cell tagged);
159         cell clone_object(cell obj_);
160         void primitive_clone();
161         void primitive_become();
162
163         // profiler
164         void init_profiler();
165         code_block *compile_profiling_stub(cell word_);
166         void set_profiling(bool profiling);
167         void primitive_profiling();
168
169         // errors
170         void general_error(vm_error_type error, cell arg1, cell arg2);
171         void type_error(cell type, cell tagged);
172         void not_implemented_error();
173         void memory_protection_error(cell addr);
174         void signal_error(cell signal);
175         void divide_by_zero_error();
176         void fp_trap_error(unsigned int fpu_status);
177         void primitive_unimplemented();
178         void memory_signal_handler_impl();
179         void misc_signal_handler_impl();
180         void fp_signal_handler_impl();
181
182         // bignum
183         int bignum_equal_p(bignum * x, bignum * y);
184         enum bignum_comparison bignum_compare(bignum * x, bignum * y);
185         bignum *bignum_add(bignum * x, bignum * y);
186         bignum *bignum_subtract(bignum * x, bignum * y);
187         bignum *bignum_multiply(bignum * x, bignum * y);
188         void bignum_divide(bignum * numerator, bignum * denominator, bignum * * quotient, bignum * * remainder);
189         bignum *bignum_quotient(bignum * numerator, bignum * denominator);
190         bignum *bignum_remainder(bignum * numerator, bignum * denominator);
191         cell bignum_to_cell(bignum * bignum);
192         fixnum bignum_to_fixnum(bignum * bignum);
193         s64 bignum_to_long_long(bignum * bignum);
194         u64 bignum_to_ulong_long(bignum * bignum);
195         double bignum_to_double(bignum * bignum);
196         bignum *double_to_bignum(double x);
197         int bignum_equal_p_unsigned(bignum * x, bignum * y);
198         enum bignum_comparison bignum_compare_unsigned(bignum * x, bignum * y);
199         bignum *bignum_add_unsigned(bignum * x, bignum * y, int negative_p);
200         bignum *bignum_subtract_unsigned(bignum * x, bignum * y);
201         bignum *bignum_multiply_unsigned(bignum * x, bignum * y, int negative_p);
202         bignum *bignum_multiply_unsigned_small_factor(bignum * x, bignum_digit_type y,int negative_p);
203         void bignum_destructive_add(bignum * bignum, bignum_digit_type n);
204         void bignum_destructive_scale_up(bignum * bignum, bignum_digit_type factor);
205         void bignum_divide_unsigned_large_denominator(bignum * numerator, bignum * denominator,
206                                                         bignum * * quotient, bignum * * remainder, int q_negative_p, int r_negative_p);
207         void bignum_divide_unsigned_normalized(bignum * u, bignum * v, bignum * q);
208         bignum_digit_type bignum_divide_subtract(bignum_digit_type * v_start, bignum_digit_type * v_end,
209                                                         bignum_digit_type guess, bignum_digit_type * u_start);
210         void bignum_divide_unsigned_medium_denominator(bignum * numerator,bignum_digit_type denominator,
211                                                         bignum * * quotient, bignum * * remainder,int q_negative_p, int r_negative_p);
212         void bignum_destructive_normalization(bignum * source, bignum * target, int shift_left);
213         void bignum_destructive_unnormalization(bignum * bignum, int shift_right);
214         bignum_digit_type bignum_digit_divide(bignum_digit_type uh, bignum_digit_type ul,
215                                                         bignum_digit_type v, bignum_digit_type * q) /* return value */;
216         bignum_digit_type bignum_digit_divide_subtract(bignum_digit_type v1, bignum_digit_type v2,
217                                                         bignum_digit_type guess, bignum_digit_type * u);
218         void bignum_divide_unsigned_small_denominator(bignum * numerator, bignum_digit_type denominator,
219                                                         bignum * * quotient, bignum * * remainder,int q_negative_p, int r_negative_p);
220         bignum_digit_type bignum_destructive_scale_down(bignum * bignum, bignum_digit_type denominator);
221         bignum * bignum_remainder_unsigned_small_denominator(bignum * n, bignum_digit_type d, int negative_p);
222         bignum *bignum_digit_to_bignum(bignum_digit_type digit, int negative_p);
223         bignum *allot_bignum(bignum_length_type length, int negative_p);
224         bignum * allot_bignum_zeroed(bignum_length_type length, int negative_p);
225         bignum *bignum_shorten_length(bignum * bignum, bignum_length_type length);
226         bignum *bignum_trim(bignum * bignum);
227         bignum *bignum_new_sign(bignum * x, int negative_p);
228         bignum *bignum_maybe_new_sign(bignum * x, int negative_p);
229         void bignum_destructive_copy(bignum * source, bignum * target);
230         bignum *bignum_bitwise_not(bignum * x);
231         bignum *bignum_arithmetic_shift(bignum * arg1, fixnum n);
232         bignum *bignum_bitwise_and(bignum * arg1, bignum * arg2);
233         bignum *bignum_bitwise_ior(bignum * arg1, bignum * arg2);
234         bignum *bignum_bitwise_xor(bignum * arg1, bignum * arg2);
235         bignum *bignum_magnitude_ash(bignum * arg1, fixnum n);
236         bignum *bignum_pospos_bitwise_op(int op, bignum * arg1, bignum * arg2);
237         bignum *bignum_posneg_bitwise_op(int op, bignum * arg1, bignum * arg2);
238         bignum *bignum_negneg_bitwise_op(int op, bignum * arg1, bignum * arg2);
239         void bignum_negate_magnitude(bignum * arg);
240         bignum *bignum_integer_length(bignum * x);
241         int bignum_logbitp(int shift, bignum * arg);
242         int bignum_unsigned_logbitp(int shift, bignum * bignum);
243         bignum *digit_stream_to_bignum(unsigned int n_digits, unsigned int (*producer)(unsigned int, factor_vm *), unsigned int radix, int negative_p);
244
245         //data heap
246         void init_card_decks();
247         void set_data_heap(data_heap *data_);
248         void init_data_heap(cell young_size, cell aging_size, cell tenured_size);
249         void primitive_size();
250         data_heap_room data_room();
251         void primitive_data_room();
252         void begin_scan();
253         void end_scan();
254         cell instances(cell type);
255         void primitive_all_instances();
256
257         template<typename Generation, typename Iterator>
258         inline void each_object(Generation *gen, Iterator &iterator)
259         {
260                 cell obj = gen->first_object();
261                 while(obj)
262                 {
263                         iterator((object *)obj);
264                         obj = gen->next_object_after(obj);
265                 }
266         }
267
268         template<typename Iterator> inline void each_object(Iterator &iterator)
269         {
270                 gc_off = true;
271
272                 each_object(data->tenured,iterator);
273                 each_object(data->aging,iterator);
274                 each_object(data->nursery,iterator);
275
276                 gc_off = false;
277         }
278
279         /* the write barrier must be called any time we are potentially storing a
280            pointer from an older generation to a younger one */
281         inline void write_barrier(cell *slot_ptr)
282         {
283                 *(char *)(cards_offset + ((cell)slot_ptr >> card_bits)) = card_mark_mask;
284                 *(char *)(decks_offset + ((cell)slot_ptr >> deck_bits)) = card_mark_mask;
285         }
286
287         inline void write_barrier(object *obj, cell size)
288         {
289                 cell start = (cell)obj & (~card_size + 1);
290                 cell end = ((cell)obj + size + card_size - 1) & (~card_size + 1);
291
292                 for(cell offset = start; offset < end; offset += card_size)
293                         write_barrier((cell *)offset);
294         }
295
296         // data heap checker
297         void check_data_heap();
298
299         // gc
300         void end_gc();
301         void set_current_gc_op(gc_op op);
302         void start_gc_again();
303         void update_code_heap_for_minor_gc(std::set<code_block *> *remembered_set);
304         void collect_nursery();
305         void collect_aging();
306         void collect_to_tenured();
307         void update_code_roots_for_sweep();
308         void update_code_roots_for_compaction();
309         void collect_mark_impl(bool trace_contexts_p);
310         void collect_sweep_impl();
311         void collect_full(bool trace_contexts_p);
312         void collect_compact_impl(bool trace_contexts_p);
313         void collect_compact_code_impl(bool trace_contexts_p);
314         void collect_compact(bool trace_contexts_p);
315         void collect_growing_heap(cell requested_bytes, bool trace_contexts_p);
316         void gc(gc_op op, cell requested_bytes, bool trace_contexts_p);
317         void scrub_context(context *ctx);
318         void scrub_contexts();
319         void primitive_minor_gc();
320         void primitive_full_gc();
321         void primitive_compact_gc();
322         void primitive_enable_gc_events();
323         void primitive_disable_gc_events();
324         object *allot_object(cell type, cell size);
325         object *allot_large_object(cell type, cell size);
326
327         template<typename Type> Type *allot(cell size)
328         {
329                 return (Type *)allot_object(Type::type_number,size);
330         }
331
332         inline void check_data_pointer(object *pointer)
333         {
334         #ifdef FACTOR_DEBUG
335                 if(!(current_gc && current_gc->op == collect_growing_heap_op))
336                 {
337                         assert((cell)pointer >= data->seg->start
338                                 && (cell)pointer < data->seg->end);
339                 }
340         #endif
341         }
342
343         // generic arrays
344         template<typename Array> Array *allot_uninitialized_array(cell capacity);
345         template<typename Array> bool reallot_array_in_place_p(Array *array, cell capacity);
346         template<typename Array> Array *reallot_array(Array *array_, cell capacity);
347
348         // debug
349         void print_chars(string* str);
350         void print_word(word* word, cell nesting);
351         void print_factor_string(string* str);
352         void print_array(array* array, cell nesting);
353         void print_tuple(tuple *tuple, cell nesting);
354         void print_nested_obj(cell obj, fixnum nesting);
355         void print_obj(cell obj);
356         void print_objects(cell *start, cell *end);
357         void print_datastack();
358         void print_retainstack();
359         void print_callstack();
360         void dump_cell(cell x);
361         void dump_memory(cell from, cell to);
362         template<typename Generation> void dump_generation(const char *name, Generation *gen);
363         void dump_generations();
364         void dump_objects(cell type);
365         void find_data_references_step(cell *scan);
366         void find_data_references(cell look_for_);
367         void dump_code_heap();
368         void factorbug();
369         void primitive_die();
370
371         // arrays
372         inline void set_array_nth(array *array, cell slot, cell value);
373         array *allot_array(cell capacity, cell fill_);
374         void primitive_array();
375         cell allot_array_1(cell obj_);
376         cell allot_array_2(cell v1_, cell v2_);
377         cell allot_array_4(cell v1_, cell v2_, cell v3_, cell v4_);
378         void primitive_resize_array();
379         cell std_vector_to_array(std::vector<cell> &elements);
380
381         // strings
382         string *allot_string_internal(cell capacity);
383         void fill_string(string *str_, cell start, cell capacity, cell fill);
384         string *allot_string(cell capacity, cell fill);
385         void primitive_string();
386         bool reallot_string_in_place_p(string *str, cell capacity);
387         string* reallot_string(string *str_, cell capacity);
388         void primitive_resize_string();
389         void primitive_set_string_nth_fast();
390
391         // booleans
392         cell tag_boolean(cell untagged)
393         {
394                 return (untagged ? true_object : false_object);
395         }
396
397         // byte arrays
398         byte_array *allot_byte_array(cell size);
399         void primitive_byte_array();
400         void primitive_uninitialized_byte_array();
401         void primitive_resize_byte_array();
402
403         template<typename Type> byte_array *byte_array_from_value(Type *value);
404
405         // tuples
406         void primitive_tuple();
407         void primitive_tuple_boa();
408
409         // words
410         word *allot_word(cell name_, cell vocab_, cell hashcode_);
411         void primitive_word();
412         void primitive_word_code();
413         void update_word_entry_point(word *w_);
414         void primitive_optimized_p();
415         void primitive_wrapper();
416         void jit_compile_word(cell word_, cell def_, bool relocating);
417         cell find_all_words();
418         void compile_all_words();
419
420         // math
421         void primitive_bignum_to_fixnum();
422         void primitive_float_to_fixnum();
423         void primitive_fixnum_divint();
424         void primitive_fixnum_divmod();
425         bignum *fixnum_to_bignum(fixnum);
426         bignum *cell_to_bignum(cell);
427         bignum *long_long_to_bignum(s64 n);
428         bignum *ulong_long_to_bignum(u64 n);
429         inline fixnum sign_mask(fixnum x);
430         inline fixnum branchless_max(fixnum x, fixnum y);
431         inline fixnum branchless_abs(fixnum x);
432         void primitive_fixnum_shift();
433         void primitive_fixnum_to_bignum();
434         void primitive_float_to_bignum();
435         void primitive_bignum_eq();
436         void primitive_bignum_add();
437         void primitive_bignum_subtract();
438         void primitive_bignum_multiply();
439         void primitive_bignum_divint();
440         void primitive_bignum_divmod();
441         void primitive_bignum_mod();
442         void primitive_bignum_and();
443         void primitive_bignum_or();
444         void primitive_bignum_xor();
445         void primitive_bignum_shift();
446         void primitive_bignum_less();
447         void primitive_bignum_lesseq();
448         void primitive_bignum_greater();
449         void primitive_bignum_greatereq();
450         void primitive_bignum_not();
451         void primitive_bignum_bitp();
452         void primitive_bignum_log2();
453         unsigned int bignum_producer(unsigned int digit);
454         void primitive_byte_array_to_bignum();
455         inline cell unbox_array_size();
456         cell unbox_array_size_slow();
457         void primitive_fixnum_to_float();
458         void primitive_bignum_to_float();
459         void primitive_format_float();
460         void primitive_float_eq();
461         void primitive_float_add();
462         void primitive_float_subtract();
463         void primitive_float_multiply();
464         void primitive_float_divfloat();
465         void primitive_float_less();
466         void primitive_float_lesseq();
467         void primitive_float_greater();
468         void primitive_float_greatereq();
469         void primitive_float_bits();
470         void primitive_bits_float();
471         void primitive_double_bits();
472         void primitive_bits_double();
473         fixnum to_fixnum(cell tagged);
474         cell to_cell(cell tagged);
475         cell from_signed_8(s64 n);
476         s64 to_signed_8(cell obj);
477         cell from_unsigned_8(u64 n);
478         u64 to_unsigned_8(cell obj);
479         float to_float(cell value);
480         double to_double(cell value);
481         inline void overflow_fixnum_add(fixnum x, fixnum y);
482         inline void overflow_fixnum_subtract(fixnum x, fixnum y);
483         inline void overflow_fixnum_multiply(fixnum x, fixnum y);
484         inline cell from_signed_cell(fixnum x);
485         inline cell from_unsigned_cell(cell x);
486         inline cell allot_float(double n);
487         inline bignum *float_to_bignum(cell tagged);
488         inline double bignum_to_float(cell tagged);
489         inline double untag_float(cell tagged);
490         inline double untag_float_check(cell tagged);
491         inline fixnum float_to_fixnum(cell tagged);
492         inline double fixnum_to_float(cell tagged);
493
494         // tagged
495         template<typename Type> Type *untag_check(cell value);
496
497         // io
498         void init_c_io();
499         void io_error();
500         FILE* safe_fopen(char *filename, char *mode);
501         int safe_fgetc(FILE *stream);
502         size_t safe_fread(void *ptr, size_t size, size_t nitems, FILE *stream);
503         void safe_fputc(int c, FILE* stream);
504         size_t safe_fwrite(void *ptr, size_t size, size_t nitems, FILE *stream);
505         int safe_ftell(FILE *stream);
506         void safe_fseek(FILE *stream, off_t offset, int whence);
507         void safe_fflush(FILE *stream);
508         void safe_fclose(FILE *stream);
509         void primitive_fopen();
510         FILE *pop_file_handle();
511         void primitive_fgetc();
512         void primitive_fread();
513         void primitive_fputc();
514         void primitive_fwrite();
515         void primitive_ftell();
516         void primitive_fseek();
517         void primitive_fflush();
518         void primitive_fclose();
519
520         // code_block
521         cell compute_entry_point_address(cell obj);
522         cell compute_entry_point_pic_address(word *w, cell tagged_quot);
523         cell compute_entry_point_pic_address(cell w_);
524         cell compute_entry_point_pic_tail_address(cell w_);
525         cell code_block_owner(code_block *compiled);
526         void update_word_references(code_block *compiled, bool reset_inline_caches);
527         void undefined_symbol();
528         cell compute_dlsym_address(array *literals, cell index);
529         cell compute_vm_address(cell arg);
530         void store_external_address(instruction_operand op);
531         cell compute_here_address(cell arg, cell offset, code_block *compiled);
532         void initialize_code_block(code_block *compiled, cell literals);
533         void initialize_code_block(code_block *compiled);
534         void fixup_labels(array *labels, code_block *compiled);
535         code_block *allot_code_block(cell size, code_block_type type);
536         code_block *add_code_block(code_block_type type, cell code_, cell labels_, cell owner_, cell relocation_, cell parameters_, cell literals_);
537
538         //code heap
539         inline void check_code_pointer(cell ptr) { }
540
541         template<typename Iterator> void each_code_block(Iterator &iter)
542         {
543                 code->allocator->iterate(iter);
544         }
545
546         void init_code_heap(cell size);
547         bool in_code_heap_p(cell ptr);
548         void update_code_heap_words(bool reset_inline_caches);
549         void initialize_code_blocks();
550         void primitive_modify_code_heap();
551         code_heap_room code_room();
552         void primitive_code_room();
553         void primitive_strip_stack_traces();
554         cell code_blocks();
555         void primitive_code_blocks();
556
557         // callbacks
558         void init_callbacks(cell size);
559         void primitive_callback();
560
561         // image
562         void init_objects(image_header *h);
563         void load_data_heap(FILE *file, image_header *h, vm_parameters *p);
564         void load_code_heap(FILE *file, image_header *h, vm_parameters *p);
565         bool save_image(const vm_char *saving_filename, const vm_char *filename);
566         void primitive_save_image();
567         void primitive_save_image_and_exit();
568         void fixup_data(cell data_offset, cell code_offset);
569         void fixup_code(cell data_offset, cell code_offset);
570         void load_image(vm_parameters *p);
571
572         // callstack
573         template<typename Iterator> void iterate_callstack_object(callstack *stack_, Iterator &iterator);
574         void check_frame(stack_frame *frame);
575         callstack *allot_callstack(cell size);
576         stack_frame *fix_callstack_top(stack_frame *top);
577         stack_frame *second_from_top_stack_frame(context *ctx);
578         cell capture_callstack(context *ctx);
579         void primitive_callstack();
580         void primitive_callstack_for();
581         code_block *frame_code(stack_frame *frame);
582         code_block_type frame_type(stack_frame *frame);
583         cell frame_executing(stack_frame *frame);
584         cell frame_executing_quot(stack_frame *frame);
585         stack_frame *frame_successor(stack_frame *frame);
586         cell frame_scan(stack_frame *frame);
587         cell frame_offset(stack_frame *frame);
588         void set_frame_offset(stack_frame *frame, cell offset);
589         void scrub_return_address();
590         void primitive_callstack_to_array();
591         stack_frame *innermost_stack_frame(callstack *stack);
592         void primitive_innermost_stack_frame_executing();
593         void primitive_innermost_stack_frame_scan();
594         void primitive_set_innermost_stack_frame_quot();
595         void primitive_callstack_bounds();
596         template<typename Iterator> void iterate_callstack(context *ctx, Iterator &iterator);
597
598         // alien
599         char *pinned_alien_offset(cell obj);
600         cell allot_alien(cell delegate_, cell displacement);
601         cell allot_alien(void *address);
602         void primitive_displaced_alien();
603         void primitive_alien_address();
604         void *alien_pointer();
605         void primitive_dlopen();
606         void primitive_dlsym();
607         void primitive_dlclose();
608         void primitive_dll_validp();
609         char *alien_offset(cell obj);
610
611         // quotations
612         void primitive_jit_compile();
613         code_block *lazy_jit_compile_block();
614         void primitive_array_to_quotation();
615         void primitive_quotation_code();
616         void set_quot_entry_point(quotation *quot, code_block *code);
617         code_block *jit_compile_quot(cell owner_, cell quot_, bool relocating);
618         void jit_compile_quot(cell quot_, bool relocating);
619         fixnum quot_code_offset_to_scan(cell quot_, cell offset);
620         cell lazy_jit_compile(cell quot);
621         bool quot_compiled_p(quotation *quot);
622         void primitive_quot_compiled_p();
623         cell find_all_quotations();
624         void initialize_all_quotations();
625
626         // dispatch
627         cell search_lookup_alist(cell table, cell klass);
628         cell search_lookup_hash(cell table, cell klass, cell hashcode);
629         cell nth_superclass(tuple_layout *layout, fixnum echelon);
630         cell nth_hashcode(tuple_layout *layout, fixnum echelon);
631         cell lookup_tuple_method(cell obj, cell methods);
632         cell lookup_method(cell obj, cell methods);
633         void primitive_lookup_method();
634         cell object_class(cell obj);
635         cell method_cache_hashcode(cell klass, array *array);
636         void update_method_cache(cell cache, cell klass, cell method);
637         void primitive_mega_cache_miss();
638         void primitive_reset_dispatch_stats();
639         void primitive_dispatch_stats();
640
641         // inline cache
642         void init_inline_caching(int max_size);
643         void deallocate_inline_cache(cell return_address);
644         cell determine_inline_cache_type(array *cache_entries);
645         void update_pic_count(cell type);
646         code_block *compile_inline_cache(fixnum index,cell generic_word_,cell methods_,cell cache_entries_,bool tail_call_p);
647         void *megamorphic_call_stub(cell generic_word);
648         cell inline_cache_size(cell cache_entries);
649         cell add_inline_cache_entry(cell cache_entries_, cell klass_, cell method_);
650         void update_pic_transitions(cell pic_size);
651         void *inline_cache_miss(cell return_address);
652
653         // entry points
654         void c_to_factor(cell quot);
655         template<typename Func> Func get_entry_point(cell n);
656         void unwind_native_frames(cell quot, stack_frame *to);
657         cell get_fpu_state();
658         void set_fpu_state(cell state);
659
660         // factor
661         void default_parameters(vm_parameters *p);
662         bool factor_arg(const vm_char *str, const vm_char *arg, cell *value);
663         void init_parameters_from_args(vm_parameters *p, int argc, vm_char **argv);
664         void prepare_boot_image();
665         void init_factor(vm_parameters *p);
666         void pass_args_to_factor(int argc, vm_char **argv);
667         void start_factor(vm_parameters *p);
668         void stop_factor();
669         void start_embedded_factor(vm_parameters *p);
670         void start_standalone_factor(int argc, vm_char **argv);
671         char *factor_eval_string(char *string);
672         void factor_eval_free(char *result);
673         void factor_yield();
674         void factor_sleep(long us);
675
676         // os-*
677         void primitive_existsp();
678         void move_file(const vm_char *path1, const vm_char *path2);
679         void init_ffi();
680         void ffi_dlopen(dll *dll);
681         void *ffi_dlsym(dll *dll, symbol_char *symbol);
682         void ffi_dlclose(dll *dll);
683         void c_to_factor_toplevel(cell quot);
684         void init_signals();
685
686         // os-windows
687   #if defined(WINDOWS)
688         const vm_char *vm_executable_path();
689         const vm_char *default_image_path();
690         void windows_image_path(vm_char *full_path, vm_char *temp_path, unsigned int length);
691         BOOL windows_stat(vm_char *path);
692
693   #if defined(WINNT)
694         void open_console();
695         LONG exception_handler(PEXCEPTION_RECORD e, void *frame, PCONTEXT c, void *dispatch);
696   #endif
697
698   #else  // UNIX
699         void dispatch_signal(void *uap, void (handler)());
700         void unix_init_signals();
701   #endif
702
703   #ifdef __APPLE__
704         void call_fault_handler(exception_type_t exception, exception_data_type_t code, MACH_EXC_STATE_TYPE *exc_state, MACH_THREAD_STATE_TYPE *thread_state, MACH_FLOAT_STATE_TYPE *float_state);
705   #endif
706
707         factor_vm();
708         ~factor_vm();
709 };
710
711 }