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