2009-05-04 02:46:13 -04:00
|
|
|
namespace factor
|
|
|
|
{
|
|
|
|
|
2009-05-02 05:04:19 -04:00
|
|
|
#define FACTOR_CPU_STRING "x86.32"
|
2009-12-18 16:59:56 -05:00
|
|
|
|
2011-11-30 15:39:21 -05:00
|
|
|
/* Must match the leaf-stack-frame-size, signal-handler-stack-frame-size,
|
|
|
|
and stack-frame-size constants in cpu/x86/32/bootstrap.factor */
|
2011-11-25 21:58:21 -05:00
|
|
|
static const unsigned LEAF_FRAME_SIZE = 16;
|
2011-11-30 15:39:21 -05:00
|
|
|
static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 48;
|
2011-11-25 21:58:21 -05:00
|
|
|
static const unsigned JIT_FRAME_SIZE = 32;
|
|
|
|
|
2009-05-04 02:46:13 -04:00
|
|
|
}
|