Diff for /gforth/Attic/386.h between versions 1.7 and 1.10

version 1.7, 1994/12/12 17:10:27 version 1.10, 1995/10/26 22:48:38
Line 14 Line 14
    parallelism (no pipelining or too few registers) */     parallelism (no pipelining or too few registers) */
 #define CISC_NEXT  #define CISC_NEXT
   
   /* 386 and below have no cache, 486 has a shared cache, and the
      Pentium probably employs hardware cache consistency, so
      flush-icache is a noop */
   #define FLUSH_ICACHE(addr,size)
   
 #ifdef DIRECT_THREADED  #ifdef DIRECT_THREADED
   
   #define CALL 0xe8 /* call */
   #define JMP  0xe9 /* jmp  */
   #define GETCFA(reg)  ({ asm("popl %0" : "=r" (reg)); (int)reg -= 5;});
   
 /* PFA gives the parameter field address corresponding to a cfa */  /* PFA gives the parameter field address corresponding to a cfa */
 #define PFA(cfa)        (((Cell *)cfa)+2)  #define PFA(cfa)        (((Cell *)cfa)+2)
 /* PFA1 is a special version for use just after a NEXT1 */  /* PFA1 is a special version for use just after a NEXT1 */
Line 25 Line 35
 /* MAKE_CF creates an appropriate code field at the cfa; ca is the code address */  /* MAKE_CF creates an appropriate code field at the cfa; ca is the code address */
 #define MAKE_CF(cfa,ca) ({long _cfa = (long)(cfa); \  #define MAKE_CF(cfa,ca) ({long _cfa = (long)(cfa); \
                           long _ca  = (long)(ca); \                            long _ca  = (long)(ca); \
                           *(char *)_cfa = 0xe9; /* jmp */ \                            *(char *)_cfa = CALL; \
                           *(long *)(_cfa+1) = _ca-(_cfa+5);})                            *(long *)(_cfa+1) = _ca-(_cfa+5);})
   
 /* this is the point where the does code starts if label points to the  /* this is the point where the does code starts if label points to the
Line 37 Line 47
 #define DOES_CODE1(label)       DOES_CODE(label)  #define DOES_CODE1(label)       DOES_CODE(label)
   
 /* this stores a jump dodoes at addr */  /* this stores a jump dodoes at addr */
 #define MAKE_DOES_HANDLER(addr) MAKE_CF(addr,symbols[DODOES])  #define MAKE_DOES_CF(addr,doesp)        ({long _addr = (long)(addr); \
                             long _doesp  = (long)(doesp)-8; \
 #define MAKE_DOES_CF(addr,doesp) MAKE_CF(addr,((int)(doesp)-8))                            *(char *)_addr = CALL; \
                             *(long *)(_addr+1) = _doesp-(_addr+5);})
   
   #define MAKE_DOES_HANDLER(addr) ({long _addr = (long)(addr); \
                             long _dodo  = (long)symbols[DODOES]; \
                             *(char *)_addr = JMP; \
                             *(long *)(_addr+1) = _dodo-(_addr+5);})
 #endif  #endif
   
 #ifdef FORCE_REG  #ifdef FORCE_REG
   #if (__GNUC__==2 && defined(__GNUC_MINOR__) && __GNUC_MINOR__==5)
   /* i.e. gcc-2.5.x */
   /* this works with 2.5.7; nothing works with 2.5.8 */
 #define IPREG asm("%esi")  #define IPREG asm("%esi")
 #define SPREG asm("%edi")  #define SPREG asm("%edi")
 #ifdef USE_TOS  #ifdef USE_TOS
Line 50 Line 69
 #else  #else
 #define CFAREG asm("%edx")  #define CFAREG asm("%edx")
 #endif  #endif
   #else /* gcc-version */
   /* this works with 2.6.3 (and quite well, too) */
   /* since this is not very demanding, it's the default for other gcc versions */
   #if defined(USE_TOS) && !defined(CFA_NEXT)
   #define IPREG asm("%ebx")
   #else
   #define SPREG asm("%ebx")
   #endif /* USE_TOS && !CFA_NEXT */
   #endif /* gcc-version */
 #endif /* FORCE_REG */  #endif /* FORCE_REG */

Removed from v.1.7  
changed lines
  Added in v.1.10


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>