]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/cpu-x86.32.hpp
io.streams.256color: faster by caching styles
[factor.git] / vm / cpu-x86.32.hpp
index c0afc9f683b4756e1da2efb1c214e6b0f641b4b5..6eb1ec35b28c9f653477cebe290afbd801e96cac 100644 (file)
@@ -1,12 +1,10 @@
-namespace factor
-{
+namespace factor {
 
 #define FACTOR_CPU_STRING "x86.32"
 
-/* Must match the leaf-stack-frame-size, signal-handler-stack-frame-size,
-and stack-frame-size constants in cpu/x86/32/bootstrap.factor */
-static const unsigned LEAF_FRAME_SIZE = 16;
-static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 48;
+// Must match the calculation in word jit-signal-handler-prolog in
+// basis/bootstrap/assembler/x86.factor
+static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 64;
 static const unsigned JIT_FRAME_SIZE = 32;
 
 }