Diff for /gforth/Attic/386.h between versions 1.5 and 1.8

version 1.5, 1994/09/28 17:02:44 version 1.8, 1995/06/03 14:24:38
Line 1 Line 1
 /*  /*
   $Id$  
   Copyright 1992 by the ANSI figForth Development Group    Copyright 1992 by the ANSI figForth Development Group
   
   This is the machine-specific part for Intel 386 compatible processors    This is the machine-specific part for Intel 386 compatible processors
 */  */
   
   #include "32bit.h"
   
 /* Cell and UCell must be the same size as a pointer */  /* indirect threading is faster on the 486, on the 386 direct
 typedef long Cell;     threading is probably faster. Therefore we leave defining
 typedef unsigned long UCell;     DIRECT_THREADED to configure */
   
 /* DCell and UDCell must be twice as large as Cell */  
 typedef long long DCell;  
 typedef unsigned long long UDCell;  
   
 /* define this if IEEE singles and doubles are available as C data types */  
 #define IEEE_FP  
   
 /* the IEEE types are used only for loading and storing */  
 /* the IEEE double precision type */  
 typedef double DFloat;  
 /* the IEEE single precision type */  
 typedef float SFloat;  
   
 /* define this if the least-significant byte is at the largets address */  
 /* #define BIG_ENDIAN */  
   
 /* define this if the processor cannot exploit instruction-level  /* define this if the processor cannot exploit instruction-level
    parallelism (no pipelining or too few registers) */     parallelism (no pipelining or too few registers) */
Line 59  typedef float SFloat; Line 43  typedef float SFloat;
 #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 66  typedef float SFloat; Line 53  typedef float SFloat;
 #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 */
   #define SPREG asm("%ebx")
   #endif /* gcc-version */
 #endif /* FORCE_REG */  #endif /* FORCE_REG */
   
 #define rint(x) floor((x)+0.5)  

Removed from v.1.5  
changed lines
  Added in v.1.8


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