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