|
120 | 120 | fi])
|
121 | 121 |
|
122 | 122 | #variables mentioned in INSTALL
|
123 |
| -AC_ARG_VAR(CC, [The C compiler (must support GNU C 2.x); gcc-2.95 recommended.]) |
| 123 | +AC_ARG_VAR(CC, [The C compiler (must support GNU C 2.x).]) |
124 | 124 | AC_ARG_VAR(FORTHSIZES, [Gforth command line options for the default stack and dictionary sizes (see INSTALL).])
|
| 125 | +AC_ARG_VAR(STACK_CACHE_REGS, [number of registers in the maximum stack cache state for gforth-fast and gforth-native (default platform-dependent).]) |
125 | 126 | AC_ARG_VAR(STACK_CACHE_DEFAULT_FAST, [number of registers in the default stack cache state for gforth-fast and gforth-native (default 1).])
|
126 | 127 | AC_ARG_VAR(GCC_PR15242_WORKAROUND, [Force the enabling (1) or disabling (0) of a workaround for a gcc-3.x performance bug (default unset: use workaround for gcc-3.x)])
|
127 | 128 |
|
@@ -314,6 +315,9 @@ case "$host_cpu" in
|
314 | 315 | test x$ac_cv_sizeof_long_long = x &&
|
315 | 316 | ($CC -v 2>&1 |grep -q 'gcc version 2.95') &&
|
316 | 317 | ac_cv_sizeof_long_long=0
|
| 318 | + #The only architecture with enough callee-saved registers |
| 319 | + test x$STACK_CACHE_REGS = x && STACK_CACHE_REGS=3 |
| 320 | + #or use 2, hardly slower at run-time and starts up faster |
317 | 321 | ;;
|
318 | 322 | *)
|
319 | 323 | AC_MSG_WARN([Using a generic machine description])
|
@@ -348,6 +352,11 @@ then
|
348 | 352 | fi
|
349 | 353 | AC_SUBST(MAKEINC)
|
350 | 354 |
|
| 355 | +AC_ARG_VAR(STACK_CACHE_REGS, [number of registers in the maximum stack cache state for gforth-fast and gforth-native (default platform-dependent).]) |
| 356 | + |
| 357 | +test x$STACK_CACHE_REGS = x && STACK_CACHE_REGS=1 |
| 358 | +AC_DEFINE_UNQUOTED(STACK_CACHE_REGS, $STACK_CACHE_REGS, |
| 359 | + [number of registers in the maximum stack cache state for gforth-fast and gforth-native]) |
351 | 360 | test x$STACK_CACHE_DEFAULT_FAST = x && STACK_CACHE_DEFAULT_FAST=1
|
352 | 361 | AC_DEFINE_UNQUOTED(STACK_CACHE_DEFAULT_FAST, $STACK_CACHE_DEFAULT_FAST,
|
353 | 362 | [number of registers in the default stack cache state for gforth-fast and gforth-native])
|
|
0 commit comments