]> gitweb.factorcode.org Git - factor.git/blob - vm/cpu-x86.32.hpp
VM: Refactor cpu-* to Factor style
[factor.git] / vm / cpu-x86.32.hpp
1 namespace factor {
2
3 #define FACTOR_CPU_STRING "x86.32"
4
5 /* Must match the leaf-stack-frame-size, signal-handler-stack-frame-size,
6 and stack-frame-size constants in cpu/x86/32/bootstrap.factor */
7 static const unsigned LEAF_FRAME_SIZE = 16;
8 static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 48;
9 static const unsigned JIT_FRAME_SIZE = 32;
10
11 }