* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / src / vm / jit / intrp / intrp.h
1 /* src/vm/jit/intrp/intrp.h - definitions for Interpreter
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28             Anton Ertl
29
30    Changes:
31
32    $Id: intrp.h 4357 2006-01-22 23:33:38Z twisti $
33
34 */
35
36
37 #ifndef _INTRP_H
38 #define _INTRP_H
39
40 /* #define VM_PROFILING */
41
42 #include "config.h"
43
44 #include <stdio.h>
45
46 #include "vm/types.h"
47 #include "arch.h"
48
49 #include "vm/class.h"
50 #include "vm/global.h"
51 #include "vm/method.h"
52 #include "vm/references.h"
53 #include "vm/resolve.h"
54
55
56 typedef void *Label;
57 typedef void *Inst;
58
59 #if SIZEOF_VOID_P == 8
60 typedef s8 Cell;
61 #else
62 typedef s4 Cell;
63 #endif
64
65 #if 1
66 #define MAYBE_UNUSED __attribute__((unused))
67 #else
68 #define MAYBE_UNUSED
69 #endif
70
71 #if SIZEOF_VOID_P == 4
72
73 typedef union {
74     struct {
75                 u4 low;
76                 s4 high;
77     } cells;
78     s8 l;
79     double d;
80 } Double_Store;
81
82 #define FETCH_DCELL_T(d_,lo,hi,t_)      ({ \
83                                      Double_Store _d; \
84                                      _d.cells.low = (lo); \
85                                      _d.cells.high = (hi); \
86                                      (d_) = _d.t_; \
87                                  })
88
89 #define STORE_DCELL_T(d_,lo,hi,t_)      ({ \
90                                      Double_Store _d; \
91                                      _d.t_ = (d_); \
92                                      (lo) = _d.cells.low; \
93                                      (hi) = _d.cells.high; \
94                                  })
95
96 #else /* SIZEOF_VOID_P == 4 */
97
98 typedef union {
99         s8 low;
100         s8 l;
101         double d;
102 } Double_Store;
103
104
105 #define FETCH_DCELL_T(d_,lo,hi,t_)      ({ (d_) = ((Double_Store)(lo)).t_; })
106 #define STORE_DCELL_T(d_,lo,hi,t_)      ({ (lo) = ((Double_Store)(d_)).low; })
107
108 #endif /* SIZEOF_VOID_P == 4 */
109
110
111 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
112
113 #define global_sp    (*(Cell **)&(THREADINFO->_global_sp))
114
115 #else /* defined(USE_THREADS) && defined(NATIVE_THREADS) */
116
117 #define MAX_STACK_SIZE 128*1024
118 static char stack[MAX_STACK_SIZE];
119
120 static Cell *_global_sp = (Cell *)(stack+MAX_STACK_SIZE);
121 #define global_sp    _global_sp
122
123 #endif /* defined(USE_THREADS) && defined(NATIVE_THREADS) */
124
125 #define CLEAR_global_sp (global_sp=NULL)
126
127
128 #define vm_twoCell2l(hi,lo,d_)  FETCH_DCELL_T(d_,lo,hi,l);
129 #define vm_twoCell2d(hi,lo,d_)  FETCH_DCELL_T(d_,lo,hi,d);
130                                                                                                  
131 #define vm_l2twoCell(d_,hi,lo)  STORE_DCELL_T(d_,lo,hi,l);
132 #define vm_d2twoCell(d_,hi,lo)  STORE_DCELL_T(d_,lo,hi,d);
133
134 #define vm_Cell2v(cell, v) ((v)=(Cell)(cell))
135 #define vm_Cell2b(cell, b) ((b)=(u1)(Cell)(cell))
136 #define vm_Cell2i(cell, i) ((i)=(s4)(Cell)(cell))
137
138 #define vm_Cell2aRef(x1,x2)       ((x2) = (java_objectheader *)(x1))
139 #define vm_Cell2aArray(x1,x2)     ((x2) = (java_arrayheader * )(x1))
140 #define vm_Cell2aaTarget(x1,x2)   ((x2) = (Inst **            )(x1))
141 #define vm_Cell2aClass(x1,x2)     ((x2) = (classinfo *        )(x1))
142 #define vm_Cell2acr(x1,x2)        ((x2) = (constant_classref *)(x1))
143 #define vm_Cell2addr(x1,x2)       ((x2) = (u1 *               )(x1))
144 #define vm_Cell2af(x1,x2)         ((x2) = (functionptr        )(x1))
145 #define vm_Cell2am(x1,x2)         ((x2) = (methodinfo *       )(x1))
146 #define vm_Cell2acell(x1,x2)      ((x2) = (Cell *             )(x1))
147 #define vm_Cell2ainst(x1,x2)      ((x2) = (Inst *             )(x1))
148 #define vm_Cell2auf(x1,x2)        ((x2) = (unresolved_field * )(x1))
149 #define vm_Cell2aum(x1,x2)        ((x2) = (unresolved_method *)(x1))
150 #define vm_Cell2avftbl(x1,x2)     ((x2) = (vftbl_t *          )(x1))
151
152 #define vm_ui2Cell(x1,x2) ((x2) = (Cell)(x1))
153 #define vm_v2Cell(x1,x2) ((x2) = (Cell)(x1))
154 #define vm_b2Cell(x1,x2) ((x2) = (Cell)(x1))
155 #define vm_s2Cell(x1,x2) ((x2) = (Cell)(x1))
156 #define vm_i2Cell(x1,x2) ((x2) = (Cell)(x1))
157 #define vm_aRef2Cell(x1,x2) ((x2) = (Cell)(x1))
158 #define vm_aArray2Cell(x1,x2) ((x2) = (Cell)(x1))
159 #define vm_aaTarget2Cell(x1,x2) ((x2) = (Cell)(x1))
160 #define vm_aClass2Cell(x1,x2) ((x2) = (Cell)(x1))
161 #define vm_acr2Cell(x1,x2) ((x2) = (Cell)(x1))
162 #define vm_addr2Cell(x1,x2) ((x2) = (Cell)(x1))
163 #define vm_af2Cell(x1,x2) ((x2) = (Cell)(x1))
164 #define vm_am2Cell(x1,x2) ((x2) = (Cell)(x1))
165 #define vm_acell2Cell(x1,x2) ((x2) = (Cell)(x1))
166 #define vm_ainst2Cell(x1,x2) ((x2) = (Cell)(x1))
167 #define vm_auf2Cell(x1,x2) ((x2) = (Cell)(x1))
168 #define vm_aum2Cell(x1,x2) ((x2) = (Cell)(x1))
169 #define vm_avftbl2Cell(x1,x2) ((x2) = (Cell)(x1))
170
171 #define vm_Cell2Cell(x1,x2) ((x2)=(Cell)(x1))
172
173 #define IMM_ARG(access,value)           (access)
174
175 /* for disassembler and tracer */
176 #define VM_IS_INST(inst, n) ((inst) == vm_prim[n])
177
178
179 #define gen_BBSTART (cd->lastmcodeptr = NULL, append_dispatch(cd))
180 #define gen_BBEND (finish_ss(cd))
181
182
183 union Cell_float {
184     Cell cell;
185     float f;
186 };
187
188
189 #define access_local_int(_offset) \
190         ( *(Cell*)(((u1 *)fp) + (_offset)) )
191
192 #define access_local_ref(_offset) \
193         ( *(void **)(((u1 *)fp) + (_offset)) )
194
195 #define access_local_cell(_offset) \
196         ( *(Cell *)(((u1 *)fp) + (_offset)) )
197
198
199 typedef struct block_count block_count;
200
201 #define vm_f2Cell(x1,x2)        ((x2) =(((union Cell_float)(x1)).cell))
202 #define vm_Cell2f(x1,x2)        ((x2) =(((union Cell_float)(x1)).f))
203
204 extern Inst *vm_prim;
205 extern Cell peeptable;
206 extern FILE *vm_out;
207
208 void init_peeptable(void);
209 ptrint peephole_opt(ptrint inst1, ptrint inst2, Cell peeptable);
210 void gen_inst(codegendata *cd, ptrint instr);
211
212 void vm_disassemble(Inst *ip, Inst *endp, Inst vm_prim[]);
213 Inst *vm_disassemble_inst(Inst *ip, Inst vm_prim[]);
214
215 java_objectheader *engine(Inst *ip0, Cell * sp, Cell * fp);
216
217
218 /* print types for disassembler and tracer */
219 void printarg_ui      (u4                 ui      );
220 void printarg_v       (Cell               v       );
221 void printarg_b       (s4                 b       );
222 void printarg_s       (s4                 s       );
223 void printarg_i       (s4                 i       );
224 void printarg_l       (s8                 l       );
225 void printarg_f       (float              f       );
226 void printarg_d       (double             d       );
227 void printarg_aRef    (java_objectheader *aRef    );
228 void printarg_aArray  (java_arrayheader * aArray  );
229 void printarg_aaTarget(Inst **            aaTarget);
230 void printarg_aClass  (classinfo *        aClass  );
231 void printarg_acr     (constant_classref *acr     );
232 void printarg_addr    (u1 *               addr    );
233 void printarg_af      (functionptr        af      );
234 void printarg_am      (methodinfo *       am      );
235 void printarg_acell   (Cell *             acell   );
236 void printarg_ainst   (Inst *             ainst   );
237 void printarg_auf     (unresolved_field * auf     );
238 void printarg_aum     (unresolved_method *aum     );
239 void printarg_avftbl  (vftbl_t *          avftbl  );
240 void printarg_Cell    (Cell               x       );
241
242 void vm_uncount_block(Inst *ip);
243 block_count *vm_block_insert(Inst *ip);
244
245 Cell *nativecall(functionptr f, methodinfo *m, Cell *sp, Inst *ra, Cell *fp, u1 *addrcif);
246 u1 *createcalljavafunction(methodinfo *m);
247
248 Inst *intrp_asm_handle_exception(Inst *ip, java_objectheader *o, Cell *fp, Cell **new_spp, Cell **new_fpp);
249
250 #endif /* _INTRP_H */
251
252
253 /*
254  * These are local overrides for various environment variables in Emacs.
255  * Please do not remove this and leave it at the end of the file, where
256  * Emacs will automagically detect them.
257  * ---------------------------------------------------------------------
258  * Local variables:
259  * mode: c
260  * indent-tabs-mode: t
261  * c-basic-offset: 4
262  * tab-width: 4
263  * End:
264  */