]> gitweb.factorcode.org Git - factor.git/blob - vm/cpu-x86.32.hpp
VM: LEAF_FRAME_SIZE is 16 bytes on all platforms so we can simplify it
[factor.git] / vm / cpu-x86.32.hpp
1 namespace factor {
2
3 #define FACTOR_CPU_STRING "x86.32"
4
5 /* Must match the signal-handler-stack-frame-size and stack-frame-size
6    constants in bootstrap/assembler/x86.32.factor */
7 static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 48;
8 static const unsigned JIT_FRAME_SIZE = 32;
9
10 }