Annotation of gforth/arch/m68k/machine.h, revision 1.11

1.1       anton       1: /* This is the machine-specific part for the 68000 and family
                      2: 
1.10      anton       3:   Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc.
1.1       anton       4: 
                      5:   This file is part of Gforth.
                      6: 
                      7:   Gforth is free software; you can redistribute it and/or
                      8:   modify it under the terms of the GNU General Public License
                      9:   as published by the Free Software Foundation; either version 2
                     10:   of the License, or (at your option) any later version.
                     11: 
                     12:   This program is distributed in the hope that it will be useful,
                     13:   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     14:   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     15:   GNU General Public License for more details.
                     16: 
                     17:   You should have received a copy of the GNU General Public License
                     18:   along with this program; if not, write to the Free Software
1.11    ! anton      19:   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
1.1       anton      20: */
                     21: 
1.7       anton      22: #ifndef THREADING_SCHEME
                     23: #define THREADING_SCHEME 3
                     24: #endif
                     25: 
1.2       anton      26: /* direct threading is faster at least on 68030 */
                     27: #if !defined INDIRECT_THREADED && !defined DIRECT_THREADED
                     28: #define DIRECT_THREADED
                     29: #endif
                     30: 
                     31: /* define this if the processor cannot exploit instruction-level
                     32:    parallelism (no pipelining or too few registers) */
                     33: #define CISC_NEXT
                     34: 
                     35: #if !defined USE_NO_TOS && !defined USE_TOS
                     36: #define USE_TOS
                     37: #endif
                     38: 
1.3       jwilke     39: #include "../generic/machine.h"
1.8       anton      40: #include <sys/types.h>
1.1       anton      41: 
                     42: /* Clearing the whole cache is a bit drastic, but this is the only
                     43:  *    cache control available on the apollo and NeXT
                     44:  */
                     45: #if defined(apollo)
                     46: #  define FLUSH_ICACHE(addr,size)    cache_$clear()
                     47: #elif defined(NeXT)
                     48: #  define FLUSH_ICACHE(addr,size)     asm("trap #2");
                     49: #elif defined(hpux)
                     50: #  include <sys/cache.h>
                     51: #  define FLUSH_ICACHE(addr,size) cachectl(CC_IPURGE,(addr),(size))
1.2       anton      52: #elif defined(linux)
                     53: #include <asm/cachectl.h>
                     54: extern int cacheflush(void *, int, int, size_t);
                     55: #define FLUSH_ICACHE(addr,size) \
                     56:   cacheflush(addr, FLUSH_SCOPE_LINE, FLUSH_CACHE_INSN, (size_t)(size) + 15)
1.4       anton      57: #elif defined(amigaos)
                     58: #  define FLUSH_ICACHE(addr,size) \
                     59:   asm(" move.l a6,-(sp); \
                     60:         move.l _SysBase,a6; \
                     61:         jsr -636(a6); \
                     62:         move.l (sp)+,a6; \
                     63:   ")
1.1       anton      64: #else
                     65: #  warning no FLUSH_ICACHE defined. If your machine has an I-cache (68020+),
                     66: #  warning direct threading and CODE words will not work.
                     67: #endif
                     68: 
                     69: #ifdef DIRECT_THREADED
                     70: /* PFA gives the parameter field address corresponding to a cfa */
1.2       anton      71: #define PFA(cfa)       ((Cell *)(cfa)+2)
1.1       anton      72: /* PFA1 is a special version for use just after a NEXT1 */
                     73: #define PFA1(cfa)      PFA(cfa)
                     74: /* CODE_ADDRESS is the address of the code jumped to through the code field */
1.9       anton      75: #define CODE_ADDRESS1(cfa)     (*(Label *)((char *)(cfa)+2))
                     76: #define CODE_ADDRESS(cfa)  ({ \
                     77:     short *__cfa=(short *)(cfa); \
                     78:     (*__cfa == 0x4ef9) ? CODE_ADDRESS1(__cfa): (Label)__cfa; \
                     79:   })
                     80: 
1.1       anton      81: /* MAKE_CF creates an appropriate code field at the cfa;
                     82:    ca is the code address */
1.2       anton      83: #define MAKE_CF(cfa,ca)                ({short * _cfa = (short *)(cfa); \
                     84:                                  long _ca = (long)(ca); \
1.1       anton      85:                                  _cfa[0] = 0x4ef9; /* jmp.l */ \
1.2       anton      86:                                  *(long *)(_cfa+1) = _ca;})
1.1       anton      87: 
                     88: /* this is the point where the does code for the word with the xt cfa
                     89:    starts. */
                     90: #define DOES_CODE(cfa) \
                     91:      ({ short *_cfa=(short *)(cfa); \
1.2       anton      92:        short *_ca=CODE_ADDRESS(_cfa); \
1.9       anton      93:        ((_ca[0] == 0x4ef9 && CODE_ADDRESS1(_ca) == &&dodoes) \
1.1       anton      94:         ? ((unsigned)_ca)+DOES_HANDLER_SIZE \
                     95:         : 0); })
                     96: 
                     97: /* this is a special version of DOES_CODE for use in dodoes */
1.9       anton      98: #define DOES_CODE1(cfa)        ((Xt *)(((char *)CODE_ADDRESS1(cfa))+DOES_HANDLER_SIZE))
1.1       anton      99: 
                    100: /* this stores a call dodoes at addr */
                    101: #define MAKE_DOES_HANDLER(addr) MAKE_CF(addr,symbols[DODOES])
                    102: 
                    103: #define MAKE_DOES_CF(addr,doesp)   MAKE_CF(addr,((int)(doesp)-8))
                    104: #endif
                    105: 
1.2       anton     106: #ifdef FORCE_REG /* highly recommended */
1.4       anton     107: #if defined(amigaos)
1.5       pazsan    108: #  define IPREG asm("%a6")
1.4       anton     109: #else
1.5       pazsan    110: #  define IPREG asm("%a5")
1.4       anton     111: #endif
1.2       anton     112: #define SPREG asm("%a4")
                    113: #define RPREG asm("%a3")
                    114: #define CFAREG asm("%a2")
                    115: #define TOSREG asm("%d3")
                    116: #define LPREG asm("%d2")
                    117: #endif

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