--- gforth/engine/engine.c 2003/10/16 18:48:03 1.70 +++ gforth/engine/engine.c 2003/11/03 20:13:36 1.72 @@ -19,7 +19,11 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. */ +#if defined(GFORTH_DEBUGGING) || defined(INDIRECT_THREADED) || defined(DOUBLY_INDIRECT) || defined(VM_PROFILING) #define USE_NO_TOS +#else +#define USE_TOS +#endif #define USE_NO_FTOS #include "config.h" @@ -196,7 +200,7 @@ extern int gforth_memcmp(const char * s1 because the stack loads may already cause a stack underflow. */ #endif /* !DEBUG */ #elif DEBUG -# define NAME(string) fprintf(stderr,"%08lx depth=%3ld: "string"\n",(Cell)ip,sp0+3-sp); +# define NAME(string) {Cell __depth=sp0+3-sp; int i; fprintf(stderr,"%08lx depth=%3ld: "string,(Cell)ip,sp0+3-sp); for (i=__depth-1; i>0; i--) fprintf(stderr, " $%lx",sp[i]); fprintf(stderr, " $%lx\n",spTOS); } #else # define NAME(string) #endif @@ -277,7 +281,7 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * void * prv; #endif register Address up UPREG = UP; - register Cell MAYBE_UNUSED spa TOSREG; + IF_spTOS(register Cell MAYBE_UNUSED spTOS TOSREG;) register Cell MAYBE_UNUSED spb spaREG; register Cell MAYBE_UNUSED spc spbREG; IF_fpTOS(register Float fpTOS FTOSREG;) @@ -290,14 +294,14 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * #define MAX_SYMBOLS (sizeof(symbols)/sizeof(symbols[0])) #endif /* !defined(DOUBLY_INDIRECT) */ #define INST_ADDR(name) ((Label)&&I_##name) -#include "prim_lab.i" +#include PRIM_LAB_I #undef INST_ADDR (Label)0, #define INST_ADDR(name) ((Label)&&K_##name) -#include "prim_lab.i" +#include PRIM_LAB_I #undef INST_ADDR #define INST_ADDR(name) ((Label)&&J_##name) -#include "prim_lab.i" +#include PRIM_LAB_I #undef INST_ADDR (Label)&&after_last }; @@ -350,7 +354,7 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * CPU_DEP3 #endif -#include "prim.i" +#include PRIM_I after_last: return (Label *)0; /*needed only to get the length of the last primitive */ }