2013-05-11 22:05:00 -04:00
|
|
|
namespace factor {
|
2009-05-04 02:46:13 -04:00
|
|
|
|
2009-05-08 16:05:55 -04:00
|
|
|
static const cell image_magic = 0x0f0e0d0c;
|
|
|
|
static const cell image_version = 4;
|
2009-05-02 05:04:19 -04:00
|
|
|
|
2014-07-04 06:00:08 -04:00
|
|
|
const size_t STRERROR_BUFFER_SIZE = 1024;
|
|
|
|
|
2011-11-18 21:05:23 -05:00
|
|
|
struct embedded_image_footer {
|
2013-05-11 22:05:00 -04:00
|
|
|
cell magic;
|
|
|
|
cell image_offset;
|
2011-11-18 21:05:23 -05:00
|
|
|
};
|
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct image_header {
|
2013-05-11 22:05:00 -04:00
|
|
|
cell magic;
|
|
|
|
cell version;
|
2016-08-21 10:26:04 -04:00
|
|
|
// base address of data heap when image was saved
|
2013-05-11 22:05:00 -04:00
|
|
|
cell data_relocation_base;
|
2016-08-21 10:26:04 -04:00
|
|
|
// size of heap
|
2013-05-11 22:05:00 -04:00
|
|
|
cell data_size;
|
2016-08-21 10:26:04 -04:00
|
|
|
// base address of code heap when image was saved
|
2013-05-11 22:05:00 -04:00
|
|
|
cell code_relocation_base;
|
2016-08-21 10:26:04 -04:00
|
|
|
// size of code heap
|
2013-05-11 22:05:00 -04:00
|
|
|
cell code_size;
|
2015-12-10 04:07:57 -05:00
|
|
|
|
|
|
|
cell reserved_1;
|
|
|
|
cell reserved_2;
|
|
|
|
cell reserved_3;
|
|
|
|
cell reserved_4;
|
|
|
|
|
2016-08-21 10:26:04 -04:00
|
|
|
// Initial user environment
|
2013-05-11 22:05:00 -04:00
|
|
|
cell special_objects[special_object_count];
|
2009-05-02 11:17:05 -04:00
|
|
|
};
|
2009-05-02 05:04:19 -04:00
|
|
|
|
2009-05-04 05:50:24 -04:00
|
|
|
struct vm_parameters {
|
2013-05-11 22:05:00 -04:00
|
|
|
bool embedded_image;
|
|
|
|
const vm_char* image_path;
|
|
|
|
const vm_char* executable_path;
|
|
|
|
cell datastack_size, retainstack_size, callstack_size;
|
|
|
|
cell young_size, aging_size, tenured_size;
|
|
|
|
cell code_size;
|
|
|
|
bool fep;
|
|
|
|
bool console;
|
|
|
|
bool signals;
|
|
|
|
cell max_pic_size;
|
|
|
|
cell callback_size;
|
2016-05-12 22:12:57 -04:00
|
|
|
|
|
|
|
vm_parameters();
|
2016-05-13 17:12:16 -04:00
|
|
|
~vm_parameters();
|
2016-05-12 22:12:57 -04:00
|
|
|
void init_from_args(int argc, vm_char** argv);
|
2009-05-02 11:17:05 -04:00
|
|
|
};
|
2009-05-02 05:04:19 -04:00
|
|
|
|
2009-05-04 02:46:13 -04:00
|
|
|
}
|