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

1.1       anton       1: /* This is the machine-specific part for the 68000 and family
                      2: 
1.6       anton       3:   Copyright (C) 1995,1996,1997,1998 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
                     19:   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
                     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.1       anton      40: 
                     41: /* Clearing the whole cache is a bit drastic, but this is the only
                     42:  *    cache control available on the apollo and NeXT
                     43:  */
                     44: #if defined(apollo)
                     45: #  define FLUSH_ICACHE(addr,size)    cache_$clear()
                     46: #elif defined(NeXT)
                     47: #  define FLUSH_ICACHE(addr,size)     asm("trap #2");
                     48: #elif defined(hpux)
                     49: #  include <sys/cache.h>
                     50: #  define FLUSH_ICACHE(addr,size) cachectl(CC_IPURGE,(addr),(size))
1.2       anton      51: #elif defined(linux)
                     52: #include <asm/cachectl.h>
                     53: extern int cacheflush(void *, int, int, size_t);
                     54: #define FLUSH_ICACHE(addr,size) \
                     55:   cacheflush(addr, FLUSH_SCOPE_LINE, FLUSH_CACHE_INSN, (size_t)(size) + 15)
1.4       anton      56: #elif defined(amigaos)
                     57: #  define FLUSH_ICACHE(addr,size) \
                     58:   asm(" move.l a6,-(sp); \
                     59:         move.l _SysBase,a6; \
                     60:         jsr -636(a6); \
                     61:         move.l (sp)+,a6; \
                     62:   ")
1.1       anton      63: #else
                     64: #  warning no FLUSH_ICACHE defined. If your machine has an I-cache (68020+),
                     65: #  warning direct threading and CODE words will not work.
                     66: #endif
                     67: 
                     68: #ifdef DIRECT_THREADED
                     69: /* PFA gives the parameter field address corresponding to a cfa */
1.2       anton      70: #define PFA(cfa)       ((Cell *)(cfa)+2)
1.1       anton      71: /* PFA1 is a special version for use just after a NEXT1 */
                     72: #define PFA1(cfa)      PFA(cfa)
                     73: /* CODE_ADDRESS is the address of the code jumped to through the code field */
1.2       anton      74: #define CODE_ADDRESS(cfa)      (*(Label *)((char *)(cfa)+2))
1.1       anton      75: /* MAKE_CF creates an appropriate code field at the cfa;
                     76:    ca is the code address */
1.2       anton      77: #define MAKE_CF(cfa,ca)                ({short * _cfa = (short *)(cfa); \
                     78:                                  long _ca = (long)(ca); \
1.1       anton      79:                                  _cfa[0] = 0x4ef9; /* jmp.l */ \
1.2       anton      80:                                  *(long *)(_cfa+1) = _ca;})
1.1       anton      81: 
                     82: /* this is the point where the does code for the word with the xt cfa
                     83:    starts. */
                     84: #define DOES_CODE(cfa) \
                     85:      ({ short *_cfa=(short *)(cfa); \
1.2       anton      86:        short *_ca=CODE_ADDRESS(_cfa); \
1.1       anton      87:        ((_cfa[0] == 0x4ef9 \
1.2       anton      88:          && _ca[0] == 0x4ef9 && CODE_ADDRESS(_ca) == &&dodoes) \
1.1       anton      89:         ? ((unsigned)_ca)+DOES_HANDLER_SIZE \
                     90:         : 0); })
                     91: 
                     92: /* this is a special version of DOES_CODE for use in dodoes */
                     93: #define DOES_CODE1(cfa)        ((Xt *)(((char *)CODE_ADDRESS(cfa))+DOES_HANDLER_SIZE))
                     94: 
                     95: /* this stores a call dodoes at addr */
                     96: #define MAKE_DOES_HANDLER(addr) MAKE_CF(addr,symbols[DODOES])
                     97: 
                     98: #define MAKE_DOES_CF(addr,doesp)   MAKE_CF(addr,((int)(doesp)-8))
                     99: #endif
                    100: 
1.2       anton     101: #ifdef FORCE_REG /* highly recommended */
1.4       anton     102: #if defined(amigaos)
1.5       pazsan    103: #  define IPREG asm("%a6")
1.4       anton     104: #else
1.5       pazsan    105: #  define IPREG asm("%a5")
1.4       anton     106: #endif
1.2       anton     107: #define SPREG asm("%a4")
                    108: #define RPREG asm("%a3")
                    109: #define CFAREG asm("%a2")
                    110: #define TOSREG asm("%d3")
                    111: #define LPREG asm("%d2")
                    112: #endif

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