1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/* vm interpreter wrapper
Copyright (C) 2001,2002,2003,2007 Free Software Foundation, Inc.
This file is part of Gforth.
Gforth is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see http://www.gnu.org/licenses/.
*/
#include "mini.h"
#define USE_spTOS 1
#ifdef USE_spTOS
#define IF_spTOS(x) x
#else
#define IF_spTOS(x)
#endif
#ifdef VM_DEBUG
#define NAME(_x) if (vm_debug) {fprintf(vm_out, "%p: %-20s, ", ip-1, _x); fprintf(vm_out,"fp=%p, sp=%p", fp, sp);}
#else
#define NAME(_x)
#endif
/* different threading schemes for different architectures; the sparse
numbering is there for historical reasons */
/* here you select the threading scheme; I have only set this up for
386 and generic, because I don't know what preprocessor macros to
test for (Gforth uses config.guess instead). Anyway, it's probably
best to build them all and select the fastest instead of hardwiring
a specific scheme for an architecture. E.g., scheme 8 is fastest
for Gforth "make bench" on a 486, whereas scheme 5 is fastest for
"mini fib.mini" on an Athlon */
#ifndef THREADING_SCHEME
#define THREADING_SCHEME 5
#endif /* defined(THREADING_SCHEME) */
#ifdef __GNUC__
#if THREADING_SCHEME==1
/* direct threading scheme 1: autoinc, long latency (HPPA, Sharc) */
# define NEXT_P0 ({cfa=*ip++;})
# define IP (ip-1)
# define SET_IP(p) ({ip=(p); NEXT_P0;})
# define NEXT_INST (cfa)
# define INC_IP(const_inc) ({cfa=IP[const_inc]; ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1
# define NEXT_P2 ({goto *cfa;})
#endif
#if THREADING_SCHEME==3
/* direct threading scheme 3: autoinc, low latency (68K) */
# define NEXT_P0
# define IP (ip)
# define SET_IP(p) ({ip=(p); NEXT_P0;})
# define NEXT_INST (*ip)
# define INC_IP(const_inc) ({ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1 ({cfa=*ip++;})
# define NEXT_P2 ({goto *cfa;})
#endif
#if THREADING_SCHEME==5
/* direct threading scheme 5: early fetching (Alpha, MIPS) */
# define CFA_NEXT
# define NEXT_P0 ({cfa=*ip;})
# define IP (ip)
# define SET_IP(p) ({ip=(p); NEXT_P0;})
# define NEXT_INST (cfa)
# define INC_IP(const_inc) ({cfa=ip[const_inc]; ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1 (ip++)
# define NEXT_P2 ({goto *cfa;})
#endif
#if THREADING_SCHEME==8
/* direct threading scheme 8: i386 hack */
# define NEXT_P0
# define IP (ip)
# define SET_IP(p) ({ip=(p); NEXT_P0;})
# define NEXT_INST (*IP)
# define INC_IP(const_inc) ({ ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1 (ip++)
# define NEXT_P2 ({goto **(ip-1);})
#endif
#if THREADING_SCHEME==9
/* direct threading scheme 9: prefetching (for PowerPC) */
/* note that the "cfa=next_cfa;" occurs only in NEXT_P1, because this
works out better with the capabilities of gcc to introduce and
schedule the mtctr instruction. */
# define NEXT_P0
# define IP ip
# define SET_IP(p) ({ip=(p); next_cfa=*ip; NEXT_P0;})
# define NEXT_INST (next_cfa)
# define INC_IP(const_inc) ({next_cfa=IP[const_inc]; ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1 ({cfa=next_cfa; ip++; next_cfa=*ip;})
# define NEXT_P2 ({goto *cfa;})
# define MORE_VARS Inst next_cfa;
#endif
#if THREADING_SCHEME==10
/* direct threading scheme 10: plain (no attempt at scheduling) */
# define NEXT_P0
# define IP (ip)
# define SET_IP(p) ({ip=(p); NEXT_P0;})
# define NEXT_INST (*ip)
# define INC_IP(const_inc) ({ip+=(const_inc);})
# define DEF_CA
# define NEXT_P1
# define NEXT_P2 ({cfa=*ip++; goto *cfa;})
#endif
#define NEXT ({DEF_CA NEXT_P1; NEXT_P2;})
#define IPTOS NEXT_INST
#define INST_ADDR(name) (Label)&&I_##name
#define LABEL(name) I_##name:
#else /* !defined(__GNUC__) */
/* use switch dispatch */
#define DEF_CA
#define NEXT_P0
#define NEXT_P1
#define NEXT_P2 goto next_inst;
#define SET_IP(p) (ip=(p))
#define IP ip
#define NEXT_INST (*ip)
#define INC_IP(const_inc) (ip+=(const_inc))
#define IPTOS NEXT_INST
#define INST_ADDR(name) I_##name
#define LABEL(name) case I_##name:
#endif /* !defined(__GNUC__) */
#define LABEL2(x)
#ifdef VM_PROFILING
#define SUPER_END vm_count_block(IP)
#else
#define SUPER_END
#endif
#ifndef __GNUC__
enum {
#include "mini-labels.i"
};
#endif
#if defined(__GNUC__) && ((__GNUC__==2 && defined(__GNUC_MINOR__) && __GNUC_MINOR__>=7)||(__GNUC__>2))
#define MAYBE_UNUSED __attribute__((unused))
#else
#define MAYBE_UNUSED
#endif
/* the return type can be anything you want it to */
Cell engine(Inst *ip0, Cell *sp, char *fp)
{
/* VM registers (you may want to use gcc's "Explicit Reg Vars" here) */
Inst * ip;
Inst * cfa;
#ifdef USE_spTOS
Cell spTOS;
#else
#define spTOS (sp[0])
#endif
static Label labels[] = {
#include "mini-labels.i"
};
#ifdef MORE_VARS
MORE_VARS
#endif
if (vm_debug)
fprintf(vm_out,"entering engine(%p,%p,%p)\n",ip0,sp,fp);
if (ip0 == NULL) {
vm_prim = labels;
return 0;
}
/* I don't have a clue where these things come from,
but I've put them in macros.h for the moment */
IF_spTOS(spTOS = sp[0]);
SET_IP(ip0);
SUPER_END; /* count the BB starting at ip0 */
#ifdef __GNUC__
NEXT;
#include "mini-vm.i"
#else
next_inst:
switch(*ip++) {
#include "mini-vm.i"
default:
fprintf(stderr,"unknown instruction %d at %p\n", ip[-1], ip-1);
exit(1);
}
#endif
}
|