* src/vm/jit/codegen-common.c: Use ENABLE_DISASSEMBLER.
[cacao.git] / src / vm / jit / codegen-common.h
1 /* src/vm/jit/codegen-common.h - architecture independent code generator stuff
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
29    Changes: Christian Ullrich
30             Edwin Steiner
31
32    $Id: codegen-common.h 4709 2006-03-30 10:14:22Z twisti $
33
34 */
35
36
37 #ifndef _CODEGEN_COMMON_H
38 #define _CODEGEN_COMMON_H
39
40 /* forward typedefs ***********************************************************/
41
42 typedef struct codegendata codegendata;
43 typedef struct threadcritnodetemp threadcritnodetemp;
44
45
46 #include "config.h"
47 #include "vm/types.h"
48
49 #include "vm/global.h"
50 #include "vm/references.h"
51 #include "vm/method.h"
52 #include "vm/jit/dseg.h"
53 #include "vm/jit/jit.h"
54 #include "vm/jit/reg.h"
55 #include "vm/jit/code.h"
56
57
58 #define MCODEINITSIZE (1<<15)       /* 32 Kbyte code area initialization size */
59 #define DSEGINITSIZE  (1<<12)       /*  4 Kbyte data area initialization size */
60
61 #define NCODEINITSIZE (1<<15)       /* 32 Kbyte code area initialization size */
62
63
64 /* Register Pack/Unpack Macros ************************************************/
65
66 /* ATTENTION: Don't change the order where low and high bits are
67    stored! At least mips32 relys in one case on that order. */
68
69 #define PACK_REGS(low,high) \
70     ( (((high) & 0x0000ffff) << 16) | ((low) & 0x0000ffff) )
71
72 #define GET_LOW_REG(a)      ((a) & 0x0000ffff)
73 #define GET_HIGH_REG(a)    (((a) & 0xffff0000) >> 16)
74
75
76 /************************* critical sections  *********************************/
77
78 struct threadcritnodetemp {
79         threadcritnodetemp *next;
80         s4                  mcodebegin;
81         s4                  mcodeend;
82         s4                  mcoderestart;
83 };
84
85
86 struct codegendata {
87         u1             *mcodebase;      /* base pointer of code area              */
88         s4             *mcodeend;       /* pointer to end of code area            */
89         s4              mcodesize;      /* complete size of code area (bytes)     */
90         u1             *mcodeptr;       /* code generation pointer                */
91
92 #if defined(__I386__) || defined(__MIPS__) || defined(__X86_64__) || defined(ENABLE_INTRP)
93         u1             *lastmcodeptr;   /* last patcher position of basic block   */
94 #endif
95
96 #if defined(ENABLE_INTRP)
97         u1             *ncodebase;      /* base pointer of native code area       */
98         s4              ncodesize;      /* complete size of native code area      */
99         u1             *ncodeptr;       /* native code generation pointer         */
100
101         u4              lastinstwithoutdispatch; /* ~0 if there was a dispatch    */
102
103         s4              lastpatcheroffset; /* -1 if current super has no patcher  */
104         s4              dynsuperm;      /* offsets of start of current dynamic ...*/
105         s4              dynsupern;      /* ... superinstruction starts            */
106         struct superstart *superstarts; /* list of supers without patchers        */
107 #endif
108
109         u1             *dsegtop;        /* pointer to top (end) of data area      */
110         s4              dsegsize;       /* complete size of data area (bytes)     */
111         s4              dseglen;        /* used size of data area (bytes)         */
112                                     /* data area grows from top to bottom     */
113
114         jumpref        *jumpreferences; /* list of jumptable target addresses     */
115
116 #if defined(__I386__) || defined(__X86_64__) || defined(__XDSPCORE__) || defined(ENABLE_INTRP)
117         dataref        *datareferences; /* list of data segment references        */
118 #endif
119
120         exceptionref   *exceptionrefs;  /* list of exception branches             */
121         patchref       *patchrefs;
122
123         linenumberref  *linenumberreferences; /* list of line numbers and the     */
124                                         /* program counters of their first        */
125                                         /* instruction                            */
126         s4              linenumbertablesizepos;
127         s4              linenumbertablestartpos;
128         s4              linenumbertab;
129
130         methodinfo     *method;
131         s4              exceptiontablelength; /* exceptiontable length            */
132         exceptiontable *exceptiontable; /* the exceptiontable                     */
133
134         threadcritnodetemp *threadcrit; /* List of critical code regions          */
135         threadcritnodetemp threadcritcurrent;
136         s4                 threadcritcount; /* Number of critical regions         */
137
138         s4              maxstack;
139         s4              maxlocals;
140 };
141
142
143 #if defined(__I386__) || defined(__X86_64__) || defined(ENABLE_INTRP) || defined(DISABLE_GC)
144 typedef struct _methodtree_element methodtree_element;
145
146 struct _methodtree_element {
147         u1 *startpc;
148         u1 *endpc;
149 };
150 #endif
151
152
153 /* function prototypes ********************************************************/
154
155 void codegen_init(void);
156 void codegen_setup(jitdata *jd);
157
158 void codegen_close(void);
159
160 s4 *codegen_increase(codegendata *cd, u1 *mcodeptr);
161
162 #if defined(ENABLE_INTRP)
163 u1 *codegen_ncode_increase(codegendata *cd, u1 *ncodeptr);
164 #endif
165
166 void codegen_addreference(codegendata *cd, basicblock *target, void *branchptr);
167
168 void codegen_add_arithmeticexception_ref(codegendata *cd, void *branchptr);
169 void codegen_add_arrayindexoutofboundsexception_ref(codegendata *cd,
170                                                                                                         void *branchptr, s4 reg);
171 void codegen_add_arraystoreexception_ref(codegendata *cd, void *branchptr);
172 void codegen_add_classcastexception_ref(codegendata *cd, void *branchptr);
173 void codegen_add_nullpointerexception_ref(codegendata *cd, void *branchptr);
174 void codegen_add_fillinstacktrace_ref(codegendata *cd, void *branchptr);
175
176
177 void codegen_addpatchref(codegendata *cd, voidptr branchptr,
178                                                  functionptr patcher, voidptr ref, s4 disp);
179
180 void codegen_insertmethod(u1 *startpc, u1 *endpc);
181 u1 *codegen_findmethod(u1 *pc);
182
183 void codegen_finish(jitdata *jd, s4 mcodelen);
184
185 codeinfo *codegen_createnativestub(functionptr f, methodinfo *m);
186 #if defined(ENABLE_DISASSEMBLER)
187 void codegen_disassemble_nativestub(methodinfo *m, u1 *start, u1 *end);
188 #endif
189
190 void codegen_start_native_call(u1 *datasp, u1 *pv, u1 *sp, u1 *ra);
191 void codegen_finish_native_call(u1 *datasp);
192
193 u1 *createcompilerstub(methodinfo *m);
194 u1 *createnativestub(functionptr f, jitdata *jd, methoddesc *nmd);
195
196 #if defined(ENABLE_INTRP)
197 u1 *intrp_createcompilerstub(methodinfo *m);
198 u1 *intrp_createnativestub(functionptr f, methodinfo *m, codegendata *cd,
199                                                    registerdata *rd, methoddesc *md);
200 #endif
201
202 void removecompilerstub(u1 *stub);
203 void removenativestub(u1 *stub);
204
205 s4 codegen_reg_of_var(registerdata *rd, u2 opcode, stackptr v, s4 tempregnum);
206
207 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
208 void codegen_threadcritrestart(codegendata *cd, int offset);
209 void codegen_threadcritstart(codegendata *cd, int offset);
210 void codegen_threadcritstop(codegendata *cd, int offset);
211 #endif
212
213 /* machine dependent functions */
214 u1 *md_codegen_findmethod(u1 *ra);
215
216 bool codegen(jitdata *jd);
217
218 #if defined(ENABLE_INTRP)
219 bool intrp_codegen(jitdata *jd);
220 #endif
221
222 #endif /* _CODEGEN_COMMON_H */
223
224
225 /*
226  * These are local overrides for various environment variables in Emacs.
227  * Please do not remove this and leave it at the end of the file, where
228  * Emacs will automagically detect them.
229  * ---------------------------------------------------------------------
230  * Local variables:
231  * mode: c
232  * indent-tabs-mode: t
233  * c-basic-offset: 4
234  * tab-width: 4
235  * End:
236  * vim:noexpandtab:sw=4:ts=4:
237  */