--- gforth/engine/engine.c 2001/03/28 16:18:51 1.30 +++ gforth/engine/engine.c 2001/12/25 16:55:10 1.35 @@ -20,6 +20,7 @@ */ #include "config.h" +#include "forth.h" #include #include #include @@ -27,7 +28,6 @@ #include #include #include -#include "forth.h" #include "io.h" #include "threaded.h" #ifndef STANDALONE @@ -196,6 +196,7 @@ DCell timeval2us(struct timeval *tvp) #ifdef HAS_FILE static char* fileattr[6]={"rb","rb","r+b","r+b","wb","wb"}; +static char* pfileattr[6]={"r","r","r+","r+","w","w"}; #ifndef O_BINARY #define O_BINARY 0 @@ -299,6 +300,7 @@ static int ufileattr[6]= { #else #define SUPER_END #endif +#define SUPER_CONTINUE #ifdef GFORTH_DEBUGGING /* define some VM registers as global variables, so they survive exceptions; @@ -322,7 +324,9 @@ Xt *primtable(Label symbols[], Cell size #endif /* !defined(DIRECT_THREADED) */ } -Label *engine(Xt *ip0, Cell *sp0, Cell *rp0, Float *fp0, Address lp0) + +define(enginerest, +`(Xt *ip0, Cell *sp0, Cell *rp0, Float *fp0, Address lp0) /* executes code at ip, if ip!=NULL returns array of machine code labels (for use in a loader), if ip==NULL */ @@ -359,10 +363,18 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * (Label)&&dofield, (Label)&&dodoes, /* the following entry is normally unused; - it's there because its index indicates a does-handler */ + it is there because its index indicates a does-handler */ CPU_DEP1, +#define INST_ADDR(name) (Label)&&I_##name #include "prim_lab.i" - (Label)0 +#undef INST_ADDR + (Label)&&after_last, + (Label)0, +#ifdef IN_ENGINE2 +#define INST_ADDR(name) (Label)&&J_##name +#include "prim_lab.i" +#undef INST_ADDR +#endif }; #ifdef CPU_DEP2 CPU_DEP2 @@ -543,5 +555,20 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * } NEXT; +#ifndef IN_ENGINE2 +#define LABEL(name) I_##name +#else +#define LABEL(name) J_##name: asm(".skip 16"); I_##name +#endif #include "prim.i" -} +#undef LABEL + after_last: return (Label *)0; + /*needed only to get the length of the last primitive */ +}' +) + +Label *engine enginerest + +#define IN_ENGINE2 +Label *engine2 enginerest +