]> gitweb.factorcode.org Git - factor.git/blob - vm/cpu-x86.32.hpp
c0afc9f683b4756e1da2efb1c214e6b0f641b4b5
[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, signal-handler-stack-frame-size,
7 and stack-frame-size constants in cpu/x86/32/bootstrap.factor */
8 static const unsigned LEAF_FRAME_SIZE = 16;
9 static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 48;
10 static const unsigned JIT_FRAME_SIZE = 32;
11
12 }