* src/vm/jit/code.h (codeinfo) [ENABLE_PROFILING]: Made frequency,
[cacao.git] / src / vm / jit / jit.c
1 /* src/vm/jit/jit.c - calls the code generation functions
2
3    Copyright (C) 1996-2005, 2006, 2007 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    $Id: jit.c 7274 2007-02-02 00:10:37Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33
34 #include "vm/types.h"
35
36 #include "mm/memory.h"
37 #include "native/native.h"
38 #include "toolbox/logging.h"
39
40 #if defined(ENABLE_THREADS)
41 # include "threads/native/lock.h"
42 #else
43 # include "threads/none/lock.h"
44 #endif
45
46 #include "vm/global.h"
47 #include "vm/initialize.h"
48
49 #include "vm/jit/asmpart.h"
50
51 # include "vm/jit/cfg.h"
52
53 #include "vm/jit/codegen-common.h"
54 #include "vm/jit/disass.h"
55 #include "vm/jit/dseg.h"
56 #include "vm/jit/jit.h"
57 #include "vm/jit/md.h"
58 #include "vm/jit/parse.h"
59 #include "vm/jit/reg.h"
60
61 #include "vm/jit/show.h"
62 #include "vm/jit/stack.h"
63
64 #include "vm/jit/allocator/simplereg.h"
65 #if defined(ENABLE_LSRA) && !defined(ENABLE_SSA)
66 # include "vm/jit/allocator/lsra.h"
67 #endif
68 #if defined(ENABLE_SSA)
69 # include "vm/jit/optimizing/lsra.h"
70 # include "vm/jit/optimizing/ssa.h"
71 #endif
72
73 #include "vm/jit/loop/analyze.h"
74 #include "vm/jit/loop/graph.h"
75 #include "vm/jit/loop/loop.h"
76
77 #if defined(ENABLE_IFCONV)
78 # include "vm/jit/optimizing/ifconv.h"
79 #endif
80
81 #include "vm/jit/optimizing/reorder.h"
82
83 #include "vm/jit/verify/typecheck.h"
84
85 #if defined(ENABLE_THREADS)
86 # include "threads/native/threads.h"
87 #endif
88
89 #include "vmcore/class.h"
90 #include "vmcore/loader.h"
91 #include "vmcore/method.h"
92 #include "vmcore/options.h"
93 #include "vmcore/rt-timing.h"
94 #include "vmcore/statistics.h"
95
96
97 /* debug macros ***************************************************************/
98
99 #if !defined(NDEBUG)
100 #define DEBUG_JIT_COMPILEVERBOSE(x) \
101     do { \
102         if (compileverbose) { \
103             log_message_method(x, m); \
104         } \
105     } while (0)
106 #else
107 #define DEBUG_JIT_COMPILEVERBOSE(x)    /* nothing */
108 #endif
109
110  
111 /* the ICMD table ************************************************************/
112
113 #if !defined(NDEBUG)
114 #define N(name)  name,
115 #else
116 #define N(name)
117 #endif
118
119 /* abbreviations for flags */
120
121 #define PEI     ICMDTABLE_PEI
122 #define CALLS   ICMDTABLE_CALLS
123
124 /* some machine dependent values */
125
126 #if SUPPORT_DIVISION
127 #define IDIV_CALLS  0
128 #else
129 #define IDIV_CALLS  ICMDTABLE_CALLS
130 #endif
131
132 #if (SUPPORT_DIVISION && SUPPORT_LONG && SUPPORT_LONG_DIV)
133 #define LDIV_CALLS  0
134 #else
135 #define LDIV_CALLS  ICMDTABLE_CALLS
136 #endif
137
138 /* include the actual table */
139
140 icmdtable_entry_t icmd_table[256] = {
141 #include <vm/jit/icmdtable.inc>
142 };
143
144 #undef N
145 #undef PEI
146 #undef CALLS
147
148 /* XXX hack until the old "PEI" definition is removed */
149 #define PEI 1
150
151
152 /* stackelement requirements of Java opcodes **********************************/
153
154 int stackreq[256] = {
155         0,    /* JAVA_NOP                         0 */
156         1,    /* JAVA_ACONST                      1 */
157         1,    /* JAVA_ICONST_M1                   2 */
158         1,    /* JAVA_ICONST_0                    3 */
159         1,    /* JAVA_ICONST_1                    4 */
160         1,    /* JAVA_ICONST_2                    5 */
161         1,    /* JAVA_ICONST_3                    6 */
162         1,    /* JAVA_ICONST_4                    7 */
163         1,    /* JAVA_ICONST_5                    8 */
164         1,    /* JAVA_LCONST_0                    9 */
165         1,    /* JAVA_LCONST_1                   10 */
166         1,    /* JAVA_FCONST_0                   11 */
167         1,    /* JAVA_FCONST_1                   12 */
168         1,    /* JAVA_FCONST_2                   13 */
169         1,    /* JAVA_DCONST_0                   14 */
170         1,    /* JAVA_DCONST_1                   15 */
171         1,    /* JAVA_BIPUSH                     16 */
172         1,    /* JAVA_SIPUSH                     17 */
173         1,    /* JAVA_LDC                        18 */
174         1,    /* JAVA_LDC_W                      19 */
175         1,    /* JAVA_LDC2_W                     20 */
176         1,    /* JAVA_ILOAD                      21 */
177         1,    /* JAVA_LLOAD                      22 */
178         1,    /* JAVA_FLOAD                      23 */
179         1,    /* JAVA_DLOAD                      24 */
180         1,    /* JAVA_ALOAD                      25 */
181         1,    /* JAVA_ILOAD_0                    26 */
182         1,    /* JAVA_ILOAD_1                    27 */
183         1,    /* JAVA_ILOAD_2                    28 */
184         1,    /* JAVA_ILOAD_3                    29 */
185         1,    /* JAVA_LLOAD_0                    30 */
186         1,    /* JAVA_LLOAD_1                    31 */
187         1,    /* JAVA_LLOAD_2                    32 */
188         1,    /* JAVA_LLOAD_3                    33 */
189         1,    /* JAVA_FLOAD_0                    34 */
190         1,    /* JAVA_FLOAD_1                    35 */
191         1,    /* JAVA_FLOAD_2                    36 */
192         1,    /* JAVA_FLOAD_3                    37 */
193         1,    /* JAVA_DLOAD_0                    38 */
194         1,    /* JAVA_DLOAD_1                    39 */
195         1,    /* JAVA_DLOAD_2                    40 */
196         1,    /* JAVA_DLOAD_3                    41 */
197         1,    /* JAVA_ALOAD_0                    42 */
198         1,    /* JAVA_ALOAD_1                    43 */
199         1,    /* JAVA_ALOAD_2                    44 */
200         1,    /* JAVA_ALOAD_3                    45 */
201         1,    /* JAVA_IALOAD                     46 */
202         1,    /* JAVA_LALOAD                     47 */
203         1,    /* JAVA_FALOAD                     48 */
204         1,    /* JAVA_DALOAD                     49 */
205         1,    /* JAVA_AALOAD                     50 */
206         1,    /* JAVA_BALOAD                     51 */
207         1,    /* JAVA_CALOAD                     52 */
208         1,    /* JAVA_SALOAD                     53 */
209         0,    /* JAVA_ISTORE                     54 */
210         0,    /* JAVA_LSTORE                     55 */
211         0,    /* JAVA_FSTORE                     56 */
212         0,    /* JAVA_DSTORE                     57 */
213         0,    /* JAVA_ASTORE                     58 */
214         0,    /* JAVA_ISTORE_0                   59 */
215         0,    /* JAVA_ISTORE_1                   60 */
216         0,    /* JAVA_ISTORE_2                   61 */
217         0,    /* JAVA_ISTORE_3                   62 */
218         0,    /* JAVA_LSTORE_0                   63 */
219         0,    /* JAVA_LSTORE_1                   64 */
220         0,    /* JAVA_LSTORE_2                   65 */
221         0,    /* JAVA_LSTORE_3                   66 */
222         0,    /* JAVA_FSTORE_0                   67 */
223         0,    /* JAVA_FSTORE_1                   68 */
224         0,    /* JAVA_FSTORE_2                   69 */
225         0,    /* JAVA_FSTORE_3                   70 */
226         0,    /* JAVA_DSTORE_0                   71 */
227         0,    /* JAVA_DSTORE_1                   72 */
228         0,    /* JAVA_DSTORE_2                   73 */
229         0,    /* JAVA_DSTORE_3                   74 */
230         0,    /* JAVA_ASTORE_0                   75 */
231         0,    /* JAVA_ASTORE_1                   76 */
232         0,    /* JAVA_ASTORE_2                   77 */
233         0,    /* JAVA_ASTORE_3                   78 */
234         0,    /* JAVA_IASTORE                    79 */
235         0,    /* JAVA_LASTORE                    80 */
236         0,    /* JAVA_FASTORE                    81 */
237         0,    /* JAVA_DASTORE                    82 */
238         0,    /* JAVA_AASTORE                    83 */
239         0,    /* JAVA_BASTORE                    84 */
240         0,    /* JAVA_CASTORE                    85 */
241         0,    /* JAVA_SASTORE                    86 */
242         0,    /* JAVA_POP                        87 */
243         0,    /* JAVA_POP2                       88 */
244         1,    /* JAVA_DUP                        89 */
245         1+3,  /* JAVA_DUP_X1                     90 */
246         2+4,  /* JAVA_DUP_X2                     91 */
247         2,    /* JAVA_DUP2                       92 */
248         2+5,  /* JAVA_DUP2_X1                    93 */
249         3+6,  /* JAVA_DUP2_X2                    94 */
250         1+2,  /* JAVA_SWAP                       95 */
251         1,    /* JAVA_IADD                       96 */
252         1,    /* JAVA_LADD                       97 */
253         1,    /* JAVA_FADD                       98 */
254         1,    /* JAVA_DADD                       99 */
255         1,    /* JAVA_ISUB                      100 */
256         1,    /* JAVA_LSUB                      101 */
257         1,    /* JAVA_FSUB                      102 */
258         1,    /* JAVA_DSUB                      103 */
259         1,    /* JAVA_IMUL                      104 */
260         1,    /* JAVA_LMUL                      105 */
261         1,    /* JAVA_FMUL                      106 */
262         1,    /* JAVA_DMUL                      107 */
263         1,    /* JAVA_IDIV                      108 */
264         1,    /* JAVA_LDIV                      109 */
265         1,    /* JAVA_FDIV                      110 */
266         1,    /* JAVA_DDIV                      111 */
267         1,    /* JAVA_IREM                      112 */
268         1,    /* JAVA_LREM                      113 */
269         1,    /* JAVA_FREM                      114 */
270         1,    /* JAVA_DREM                      115 */
271         1,    /* JAVA_INEG                      116 */
272         1,    /* JAVA_LNEG                      117 */
273         1,    /* JAVA_FNEG                      118 */
274         1,    /* JAVA_DNEG                      119 */
275         1,    /* JAVA_ISHL                      120 */
276         1,    /* JAVA_LSHL                      121 */
277         1,    /* JAVA_ISHR                      122 */
278         1,    /* JAVA_LSHR                      123 */
279         1,    /* JAVA_IUSHR                     124 */
280         1,    /* JAVA_LUSHR                     125 */
281         1,    /* JAVA_IAND                      126 */
282         1,    /* JAVA_LAND                      127 */
283         1,    /* JAVA_IOR                       128 */
284         1,    /* JAVA_LOR                       129 */
285         1,    /* JAVA_IXOR                      130 */
286         1,    /* JAVA_LXOR                      131 */
287         0,    /* JAVA_IINC                      132 */
288         1,    /* JAVA_I2L                       133 */
289         1,    /* JAVA_I2F                       134 */
290         1,    /* JAVA_I2D                       135 */
291         1,    /* JAVA_L2I                       136 */
292         1,    /* JAVA_L2F                       137 */
293         1,    /* JAVA_L2D                       138 */
294         1,    /* JAVA_F2I                       139 */
295         1,    /* JAVA_F2L                       140 */
296         1,    /* JAVA_F2D                       141 */
297         1,    /* JAVA_D2I                       142 */
298         1,    /* JAVA_D2L                       143 */
299         1,    /* JAVA_D2F                       144 */
300         1,    /* JAVA_INT2BYTE                  145 */
301         1,    /* JAVA_INT2CHAR                  146 */
302         1,    /* JAVA_INT2SHORT                 147 */
303         1,    /* JAVA_LCMP                      148 */
304         1,    /* JAVA_FCMPL                     149 */
305         1,    /* JAVA_FCMPG                     150 */
306         1,    /* JAVA_DCMPL                     151 */
307         1,    /* JAVA_DCMPG                     152 */
308         0,    /* JAVA_IFEQ                      153 */
309         0,    /* JAVA_IFNE                      154 */
310         0,    /* JAVA_IFLT                      155 */
311         0,    /* JAVA_IFGE                      156 */
312         0,    /* JAVA_IFGT                      157 */
313         0,    /* JAVA_IFLE                      158 */
314         0,    /* JAVA_IF_ICMPEQ                 159 */
315         0,    /* JAVA_IF_ICMPNE                 160 */
316         0,    /* JAVA_IF_ICMPLT                 161 */
317         0,    /* JAVA_IF_ICMPGE                 162 */
318         0,    /* JAVA_IF_ICMPGT                 163 */
319         0,    /* JAVA_IF_ICMPLE                 164 */
320         0,    /* JAVA_IF_ACMPEQ                 165 */
321         0,    /* JAVA_IF_ACMPNE                 166 */
322         0,    /* JAVA_GOTO                      167 */
323         1,    /* JAVA_JSR                       168 */
324         0,    /* JAVA_RET                       169 */
325         0,    /* JAVA_TABLESWITCH               170 */
326         0,    /* JAVA_LOOKUPSWITCH              171 */
327         0,    /* JAVA_IRETURN                   172 */
328         0,    /* JAVA_LRETURN                   173 */
329         0,    /* JAVA_FRETURN                   174 */
330         0,    /* JAVA_DRETURN                   175 */
331         0,    /* JAVA_ARETURN                   176 */
332         0,    /* JAVA_RETURN                    177 */
333         1,    /* JAVA_GETSTATIC                 178 */
334         0,    /* JAVA_PUTSTATIC                 179 */
335         1,    /* JAVA_GETFIELD                  180 */
336         0,    /* JAVA_PUTFIELD                  181 */
337         1,    /* JAVA_INVOKEVIRTUAL             182 */
338         1,    /* JAVA_INVOKESPECIAL             183 */
339         1,    /* JAVA_INVOKESTATIC              184 */
340         1,    /* JAVA_INVOKEINTERFACE           185 */
341         1,    /* JAVA_UNDEF186                  186 */
342         1,    /* JAVA_NEW                       187 */
343         1,    /* JAVA_NEWARRAY                  188 */
344         1,    /* JAVA_ANEWARRAY                 189 */
345         1,    /* JAVA_ARRAYLENGTH               190 */
346         1,    /* JAVA_ATHROW                    191 */
347         1,    /* JAVA_CHECKCAST                 192 */
348         1,    /* JAVA_INSTANCEOF                193 */
349         0,    /* JAVA_MONITORENTER              194 */
350         0,    /* JAVA_MONITOREXIT               195 */
351         0,    /* JAVA_WIDE                      196 */
352         1,    /* JAVA_MULTIANEWARRAY            197 */
353         0,    /* JAVA_IFNULL                    198 */
354         0,    /* JAVA_IFNONNULL                 199 */
355         0,    /* JAVA_GOTO_W                    200 */
356         1,    /* JAVA_JSR_W                     201 */
357         0,    /* JAVA_BREAKPOINT                202 */
358         1,    /* JAVA_UNDEF203                  203 */
359         1,    /* JAVA_UNDEF204                  204 */
360         1,    /* JAVA_UNDEF205                  205 */
361         1,    /* JAVA_UNDEF206                  206 */
362         1,    /* JAVA_UNDEF207                  207 */
363         1,    /* JAVA_UNDEF208                  208 */
364         1,    /* JAVA_UNDEF209                  209 */
365         1,    /* JAVA_UNDEF210                  210 */
366         1,    /* JAVA_UNDEF211                  211 */
367         1,    /* JAVA_UNDEF212                  212 */
368         1,    /* JAVA_UNDEF213                  213 */
369         1,    /* JAVA_UNDEF214                  214 */
370         1,    /* JAVA_UNDEF215                  215 */
371         1,    /* JAVA_UNDEF216                  216 */
372         1,    /* JAVA_UNDEF217                  217 */
373         1,    /* JAVA_UNDEF218                  218 */
374         1,    /* JAVA_UNDEF219                  219 */
375         1,    /* JAVA_UNDEF220                  220 */
376         1,    /* JAVA_UNDEF221                  221 */
377         1,    /* JAVA_UNDEF222                  222 */
378         1,    /* JAVA_UNDEF223                  223 */
379         1,    /* JAVA_UNDEF224                  224 */
380         1,    /* JAVA_UNDEF225                  225 */
381         1,    /* JAVA_UNDEF226                  226 */
382         1,    /* JAVA_UNDEF227                  227 */
383         1,    /* JAVA_UNDEF228                  228 */
384         1,    /* JAVA_UNDEF229                  229 */
385         1,    /* JAVA_UNDEF230                  230 */
386         1,    /* JAVA_UNDEF231                  231 */
387         1,    /* JAVA_UNDEF232                  232 */
388         1,    /* JAVA_UNDEF233                  233 */
389         1,    /* JAVA_UNDEF234                  234 */
390         1,    /* JAVA_UNDEF235                  235 */
391         1,    /* JAVA_UNDEF236                  236 */
392         1,    /* JAVA_UNDEF237                  237 */
393         1,    /* JAVA_UNDEF238                  238 */
394         1,    /* JAVA_UNDEF239                  239 */
395         1,    /* JAVA_UNDEF240                  240 */
396         1,    /* JAVA_UNDEF241                  241 */
397         1,    /* JAVA_UNDEF242                  242 */
398         1,    /* JAVA_UNDEF243                  243 */
399         1,    /* JAVA_UNDEF244                  244 */
400         1,    /* JAVA_UNDEF245                  245 */
401         1,    /* JAVA_UNDEF246                  246 */
402         1,    /* JAVA_UNDEF247                  247 */
403         1,    /* JAVA_UNDEF248                  248 */
404         1,    /* JAVA_UNDEF249                  249 */
405         1,    /* JAVA_UNDEF250                  250 */
406         1,    /* JAVA_UNDEF251                  251 */
407         1,    /* JAVA_UNDEF252                  252 */
408         1,    /* JAVA_UNDEF253                  253 */
409         1,    /* JAVA_UNDEF254                  254 */
410         1,    /* JAVA_UNDEF255                  255 */
411 };
412
413
414 /* size in bytes of Java opcodes **********************************************/
415                                 
416 int jcommandsize[256] = {
417
418         1,    /* JAVA_NOP                         0 */
419         1,    /* JAVA_ACONST_NULL                 1 */
420         1,    /* JAVA_ICONST_M1                   2 */
421         1,    /* JAVA_ICONST_0                    3 */
422         1,    /* JAVA_ICONST_1                    4 */
423         1,    /* JAVA_ICONST_2                    5 */
424         1,    /* JAVA_ICONST_3                    6 */
425         1,    /* JAVA_ICONST_4                    7 */
426         1,    /* JAVA_ICONST_5                    8 */
427         1,    /* JAVA_LCONST_0                    9 */
428         1,    /* JAVA_LCONST_1                   10 */
429         1,    /* JAVA_FCONST_0                   11 */
430         1,    /* JAVA_FCONST_1                   12 */
431         1,    /* JAVA_FCONST_2                   13 */
432         1,    /* JAVA_DCONST_0                   14 */
433         1,    /* JAVA_DCONST_1                   15 */
434         2,    /* JAVA_BIPUSH                     16 */
435         3,    /* JAVA_SIPUSH                     17 */
436         2,    /* JAVA_LDC1                       18 */
437         3,    /* JAVA_LDC2                       19 */
438         3,    /* JAVA_LDC2W                      20 */
439         2,    /* JAVA_ILOAD                      21 */
440         2,    /* JAVA_LLOAD                      22 */
441         2,    /* JAVA_FLOAD                      23 */
442         2,    /* JAVA_DLOAD                      24 */
443         2,    /* JAVA_ALOAD                      25 */
444         1,    /* JAVA_ILOAD_0                    26 */
445         1,    /* JAVA_ILOAD_1                    27 */
446         1,    /* JAVA_ILOAD_2                    28 */
447         1,    /* JAVA_ILOAD_3                    29 */
448         1,    /* JAVA_LLOAD_0                    30 */
449         1,    /* JAVA_LLOAD_1                    31 */
450         1,    /* JAVA_LLOAD_2                    32 */
451         1,    /* JAVA_LLOAD_3                    33 */
452         1,    /* JAVA_FLOAD_0                    34 */
453         1,    /* JAVA_FLOAD_1                    35 */
454         1,    /* JAVA_FLOAD_2                    36 */
455         1,    /* JAVA_FLOAD_3                    37 */
456         1,    /* JAVA_DLOAD_0                    38 */
457         1,    /* JAVA_DLOAD_1                    39 */
458         1,    /* JAVA_DLOAD_2                    40 */
459         1,    /* JAVA_DLOAD_3                    41 */
460         1,    /* JAVA_ALOAD_0                    42 */
461         1,    /* JAVA_ALOAD_1                    43 */
462         1,    /* JAVA_ALOAD_2                    44 */
463         1,    /* JAVA_ALOAD_3                    45 */
464         1,    /* JAVA_IALOAD                     46 */
465         1,    /* JAVA_LALOAD                     47 */
466         1,    /* JAVA_FALOAD                     48 */
467         1,    /* JAVA_DALOAD                     49 */
468         1,    /* JAVA_AALOAD                     50 */
469         1,    /* JAVA_BALOAD                     51 */
470         1,    /* JAVA_CALOAD                     52 */
471         1,    /* JAVA_SALOAD                     53 */
472         2,    /* JAVA_ISTORE                     54 */
473         2,    /* JAVA_LSTORE                     55 */
474         2,    /* JAVA_FSTORE                     56 */
475         2,    /* JAVA_DSTORE                     57 */
476         2,    /* JAVA_ASTORE                     58 */
477         1,    /* JAVA_ISTORE_0                   59 */
478         1,    /* JAVA_ISTORE_1                   60 */
479         1,    /* JAVA_ISTORE_2                   61 */
480         1,    /* JAVA_ISTORE_3                   62 */
481         1,    /* JAVA_LSTORE_0                   63 */
482         1,    /* JAVA_LSTORE_1                   64 */
483         1,    /* JAVA_LSTORE_2                   65 */
484         1,    /* JAVA_LSTORE_3                   66 */
485         1,    /* JAVA_FSTORE_0                   67 */
486         1,    /* JAVA_FSTORE_1                   68 */
487         1,    /* JAVA_FSTORE_2                   69 */
488         1,    /* JAVA_FSTORE_3                   70 */
489         1,    /* JAVA_DSTORE_0                   71 */
490         1,    /* JAVA_DSTORE_1                   72 */
491         1,    /* JAVA_DSTORE_2                   73 */
492         1,    /* JAVA_DSTORE_3                   74 */
493         1,    /* JAVA_ASTORE_0                   75 */
494         1,    /* JAVA_ASTORE_1                   76 */
495         1,    /* JAVA_ASTORE_2                   77 */
496         1,    /* JAVA_ASTORE_3                   78 */
497         1,    /* JAVA_IASTORE                    79 */
498         1,    /* JAVA_LASTORE                    80 */
499         1,    /* JAVA_FASTORE                    81 */
500         1,    /* JAVA_DASTORE                    82 */
501         1,    /* JAVA_AASTORE                    83 */
502         1,    /* JAVA_BASTORE                    84 */
503         1,    /* JAVA_CASTORE                    85 */
504         1,    /* JAVA_SASTORE                    86 */
505         1,    /* JAVA_POP                        87 */
506         1,    /* JAVA_POP2                       88 */
507         1,    /* JAVA_DUP                        89 */
508         1,    /* JAVA_DUP_X1                     90 */
509         1,    /* JAVA_DUP_X2                     91 */
510         1,    /* JAVA_DUP2                       92 */
511         1,    /* JAVA_DUP2_X1                    93 */
512         1,    /* JAVA_DUP2_X2                    94 */
513         1,    /* JAVA_SWAP                       95 */
514         1,    /* JAVA_IADD                       96 */
515         1,    /* JAVA_LADD                       97 */
516         1,    /* JAVA_FADD                       98 */
517         1,    /* JAVA_DADD                       99 */
518         1,    /* JAVA_ISUB                      100 */
519         1,    /* JAVA_LSUB                      101 */
520         1,    /* JAVA_FSUB                      102 */
521         1,    /* JAVA_DSUB                      103 */
522         1,    /* JAVA_IMUL                      104 */
523         1,    /* JAVA_LMUL                      105 */
524         1,    /* JAVA_FMUL                      106 */
525         1,    /* JAVA_DMUL                      107 */
526         1,    /* JAVA_IDIV                      108 */
527         1,    /* JAVA_LDIV                      109 */
528         1,    /* JAVA_FDIV                      110 */
529         1,    /* JAVA_DDIV                      111 */
530         1,    /* JAVA_IREM                      112 */
531         1,    /* JAVA_LREM                      113 */
532         1,    /* JAVA_FREM                      114 */
533         1,    /* JAVA_DREM                      115 */
534         1,    /* JAVA_INEG                      116 */
535         1,    /* JAVA_LNEG                      117 */
536         1,    /* JAVA_FNEG                      118 */
537         1,    /* JAVA_DNEG                      119 */
538         1,    /* JAVA_ISHL                      120 */
539         1,    /* JAVA_LSHL                      121 */
540         1,    /* JAVA_ISHR                      122 */
541         1,    /* JAVA_LSHR                      123 */
542         1,    /* JAVA_IUSHR                     124 */
543         1,    /* JAVA_LUSHR                     125 */
544         1,    /* JAVA_IAND                      126 */
545         1,    /* JAVA_LAND                      127 */
546         1,    /* JAVA_IOR                       128 */
547         1,    /* JAVA_LOR                       129 */
548         1,    /* JAVA_IXOR                      130 */
549         1,    /* JAVA_LXOR                      131 */
550         3,    /* JAVA_IINC                      132 */
551         1,    /* JAVA_I2L                       133 */
552         1,    /* JAVA_I2F                       134 */
553         1,    /* JAVA_I2D                       135 */
554         1,    /* JAVA_L2I                       136 */
555         1,    /* JAVA_L2F                       137 */
556         1,    /* JAVA_L2D                       138 */
557         1,    /* JAVA_F2I                       139 */
558         1,    /* JAVA_F2L                       140 */
559         1,    /* JAVA_F2D                       141 */
560         1,    /* JAVA_D2I                       142 */
561         1,    /* JAVA_D2L                       143 */
562         1,    /* JAVA_D2F                       144 */
563         1,    /* JAVA_INT2BYTE                  145 */
564         1,    /* JAVA_INT2CHAR                  146 */
565         1,    /* JAVA_INT2SHORT                 147 */
566         1,    /* JAVA_LCMP                      148 */
567         1,    /* JAVA_FCMPL                     149 */
568         1,    /* JAVA_FCMPG                     150 */
569         1,    /* JAVA_DCMPL                     151 */
570         1,    /* JAVA_DCMPG                     152 */
571         3,    /* JAVA_IFEQ                      153 */
572         3,    /* JAVA_IFNE                      154 */
573         3,    /* JAVA_IFLT                      155 */
574         3,    /* JAVA_IFGE                      156 */
575         3,    /* JAVA_IFGT                      157 */
576         3,    /* JAVA_IFLE                      158 */
577         3,    /* JAVA_IF_ICMPEQ                 159 */
578         3,    /* JAVA_IF_ICMPNE                 160 */
579         3,    /* JAVA_IF_ICMPLT                 161 */
580         3,    /* JAVA_IF_ICMPGE                 162 */
581         3,    /* JAVA_IF_ICMPGT                 163 */
582         3,    /* JAVA_IF_ICMPLE                 164 */
583         3,    /* JAVA_IF_ACMPEQ                 165 */
584         3,    /* JAVA_IF_ACMPNE                 166 */
585         3,    /* JAVA_GOTO                      167 */
586         3,    /* JAVA_JSR                       168 */
587         2,    /* JAVA_RET                       169 */
588         0,    /* JAVA_TABLESWITCH               170 */ /* variable length */
589         0,    /* JAVA_LOOKUPSWITCH              171 */ /* variable length */
590         1,    /* JAVA_IRETURN                   172 */
591         1,    /* JAVA_LRETURN                   173 */
592         1,    /* JAVA_FRETURN                   174 */
593         1,    /* JAVA_DRETURN                   175 */
594         1,    /* JAVA_ARETURN                   176 */
595         1,    /* JAVA_RETURN                    177 */
596         3,    /* JAVA_GETSTATIC                 178 */
597         3,    /* JAVA_PUTSTATIC                 179 */
598         3,    /* JAVA_GETFIELD                  180 */
599         3,    /* JAVA_PUTFIELD                  181 */
600         3,    /* JAVA_INVOKEVIRTUAL             182 */
601         3,    /* JAVA_INVOKESPECIAL             183 */
602         3,    /* JAVA_INVOKESTATIC              184 */
603         5,    /* JAVA_INVOKEINTERFACE           185 */
604         1,    /* UNDEF186 */
605         3,    /* JAVA_NEW                       187 */
606         2,    /* JAVA_NEWARRAY                  188 */
607         3,    /* JAVA_ANEWARRAY                 189 */
608         1,    /* JAVA_ARRAYLENGTH               190 */
609         1,    /* JAVA_ATHROW                    191 */
610         3,    /* JAVA_CHECKCAST                 192 */
611         3,    /* JAVA_INSTANCEOF                193 */
612         1,    /* JAVA_MONITORENTER              194 */
613         1,    /* JAVA_MONITOREXIT               195 */
614         0,    /* JAVA_WIDE                      196 */ /* variable length */
615         4,    /* JAVA_MULTIANEWARRAY            197 */
616         3,    /* JAVA_IFNULL                    198 */
617         3,    /* JAVA_IFNONNULL                 199 */
618         5,    /* JAVA_GOTO_W                    200 */
619         5,    /* JAVA_JSR_W                     201 */
620         1,    /* JAVA_BREAKPOINT                202 */
621
622         1,    /* UNDEF203 */
623         1,
624         1,
625         1,
626         1,
627         1,
628         1,
629         1,    /* UNDEF210 */
630         1,
631         1,
632         1,
633         1,
634         1,
635         1,
636         1,
637         1,
638         1,
639         1,    /* UNDEF220 */
640         1,
641         1,
642         1,
643         1,
644         1,
645         1,
646         1,
647         1,
648         1,
649         1,    /* UNDEF230 */
650         1,
651         1,
652         1,
653         1,
654
655         /* unused */
656                 1,1,1,1,1,1,
657         1,1,1,1,1,1,1,1,1,1,
658         1,1,1,1,1
659 };
660
661
662 /* Java opcode names *********************************************************/
663
664 char *opcode_names[256] = {
665         "NOP            ", /*               0 */
666         "ACONST         ", /*               1 */
667         "ICONST_M1      ", /* ICONST_M1     2 */
668         "ICONST_0       ", /* ICONST_0      3 */
669         "ICONST_1       ", /* ICONST_1      4 */
670         "ICONST_2       ", /* ICONST_2      5 */
671         "ICONST_3       ", /* ICONST_3      6 */
672         "ICONST_4       ", /* ICONST_4      7 */
673         "ICONST_5       ", /* ICONST_5      8 */
674         "LCONST_0       ", /* LCONST_0      9 */
675         "LCONST_1       ", /* LCONST_1     10 */
676         "FCONST_0       ", /* FCONST_0     11 */
677         "FCONST_1       ", /* FCONST_1     12 */
678         "FCONST_2       ", /* FCONST_2     13 */
679         "DCONST_0       ", /* DCONST_0     14 */
680         "DCONST_1       ", /* DCONST_1     15 */
681         "BIPUSH         ", /* BIPUSH       16 */
682         "SIPUSH         ", /* SIPUSH       17 */
683         "LDC            ", /* LDC          18 */
684         "LDC_W          ", /* LDC_W        19 */
685         "LDC2_W         ", /* LDC2_W       20 */
686         "ILOAD          ", /*              21 */
687         "LLOAD          ", /*              22 */
688         "FLOAD          ", /*              23 */
689         "DLOAD          ", /*              24 */
690         "ALOAD          ", /*              25 */
691         "ILOAD_0        ", /* ILOAD_0      26 */
692         "ILOAD_1        ", /* ILOAD_1      27 */
693         "ILOAD_2        ", /* ILOAD_2      28 */
694         "ILOAD_3        ", /* ILOAD_3      29 */
695         "LLOAD_0        ", /* LLOAD_0      30 */
696         "LLOAD_1        ", /* LLOAD_1      31 */
697         "LLOAD_2        ", /* LLOAD_2      32 */
698         "LLOAD_3        ", /* LLOAD_3      33 */
699         "FLOAD_0        ", /* FLOAD_0      34 */
700         "FLOAD_1        ", /* FLOAD_1      35 */
701         "FLOAD_2        ", /* FLOAD_2      36 */
702         "FLOAD_3        ", /* FLOAD_3      37 */
703         "DLOAD_0        ", /* DLOAD_0      38 */
704         "DLOAD_1        ", /* DLOAD_1      39 */
705         "DLOAD_2        ", /* DLOAD_2      40 */ 
706         "DLOAD_3        ", /* DLOAD_3      41 */
707         "ALOAD_0        ", /* ALOAD_0      42 */
708         "ALOAD_1        ", /* ALOAD_1      43 */
709         "ALOAD_2        ", /* ALOAD_2      44 */
710         "ALOAD_3        ", /* ALOAD_3      45 */
711         "IALOAD         ", /*              46 */
712         "LALOAD         ", /*              47 */
713         "FALOAD         ", /*              48 */
714         "DALOAD         ", /*              49 */
715         "AALOAD         ", /*              50 */
716         "BALOAD         ", /*              51 */
717         "CALOAD         ", /*              52 */
718         "SALOAD         ", /*              53 */
719         "ISTORE         ", /*              54 */
720         "LSTORE         ", /*              55 */
721         "FSTORE         ", /*              56 */
722         "DSTORE         ", /*              57 */
723         "ASTORE         ", /*              58 */
724         "ISTORE_0       ", /* ISTORE_0     59 */
725         "ISTORE_1       ", /* ISTORE_1     60 */
726         "ISTORE_2       ", /* ISTORE_2     61 */
727         "ISTORE_3       ", /* ISTORE_3     62 */
728         "LSTORE_0       ", /* LSTORE_0     63 */
729         "LSTORE_1       ", /* LSTORE_1     64 */
730         "LSTORE_2       ", /* LSTORE_2     65 */
731         "LSTORE_3       ", /* LSTORE_3     66 */
732         "FSTORE_0       ", /* FSTORE_0     67 */
733         "FSTORE_1       ", /* FSTORE_1     68 */
734         "FSTORE_2       ", /* FSTORE_2     69 */
735         "FSTORE_3       ", /* FSTORE_3     70 */
736         "DSTORE_0       ", /* DSTORE_0     71 */
737         "DSTORE_1       ", /* DSTORE_1     72 */
738         "DSTORE_2       ", /* DSTORE_2     73 */
739         "DSTORE_3       ", /* DSTORE_3     74 */
740         "ASTORE_0       ", /* ASTORE_0     75 */
741         "ASTORE_1       ", /* ASTORE_1     76 */
742         "ASTORE_2       ", /* ASTORE_2     77 */
743         "ASTORE_3       ", /* ASTORE_3     78 */
744         "IASTORE        ", /*              79 */
745         "LASTORE        ", /*              80 */
746         "FASTORE        ", /*              81 */
747         "DASTORE        ", /*              82 */
748         "AASTORE        ", /*              83 */
749         "BASTORE        ", /*              84 */
750         "CASTORE        ", /*              85 */
751         "SASTORE        ", /*              86 */
752         "POP            ", /*              87 */
753         "POP2           ", /*              88 */
754         "DUP            ", /*              89 */
755         "DUP_X1         ", /*              90 */
756         "DUP_X2         ", /*              91 */
757         "DUP2           ", /*              92 */
758         "DUP2_X1        ", /*              93 */
759         "DUP2_X2        ", /*              94 */
760         "SWAP           ", /*              95 */
761         "IADD           ", /*              96 */
762         "LADD           ", /*              97 */
763         "FADD           ", /*              98 */
764         "DADD           ", /*              99 */
765         "ISUB           ", /*             100 */
766         "LSUB           ", /*             101 */
767         "FSUB           ", /*             102 */
768         "DSUB           ", /*             103 */
769         "IMUL           ", /*             104 */
770         "LMUL           ", /*             105 */
771         "FMUL           ", /*             106 */
772         "DMUL           ", /*             107 */
773         "IDIV           ", /*             108 */
774         "LDIV           ", /*             109 */
775         "FDIV           ", /*             110 */
776         "DDIV           ", /*             111 */
777         "IREM           ", /*             112 */
778         "LREM           ", /*             113 */
779         "FREM           ", /*             114 */
780         "DREM           ", /*             115 */
781         "INEG           ", /*             116 */
782         "LNEG           ", /*             117 */
783         "FNEG           ", /*             118 */
784         "DNEG           ", /*             119 */
785         "ISHL           ", /*             120 */
786         "LSHL           ", /*             121 */
787         "ISHR           ", /*             122 */
788         "LSHR           ", /*             123 */
789         "IUSHR          ", /*             124 */
790         "LUSHR          ", /*             125 */
791         "IAND           ", /*             126 */
792         "LAND           ", /*             127 */
793         "IOR            ", /*             128 */
794         "LOR            ", /*             129 */
795         "IXOR           ", /*             130 */
796         "LXOR           ", /*             131 */
797         "IINC           ", /*             132 */
798         "I2L            ", /*             133 */
799         "I2F            ", /*             134 */
800         "I2D            ", /*             135 */
801         "L2I            ", /*             136 */
802         "L2F            ", /*             137 */
803         "L2D            ", /*             138 */
804         "F2I            ", /*             139 */
805         "F2L            ", /*             140 */
806         "F2D            ", /*             141 */
807         "D2I            ", /*             142 */
808         "D2L            ", /*             143 */
809         "D2F            ", /*             144 */
810         "INT2BYTE       ", /*             145 */
811         "INT2CHAR       ", /*             146 */
812         "INT2SHORT      ", /*             147 */
813         "LCMP           ", /*             148 */
814         "FCMPL          ", /*             149 */
815         "FCMPG          ", /*             150 */
816         "DCMPL          ", /*             151 */
817         "DCMPG          ", /*             152 */
818         "IFEQ           ", /*             153 */
819         "IFNE           ", /*             154 */
820         "IFLT           ", /*             155 */
821         "IFGE           ", /*             156 */
822         "IFGT           ", /*             157 */
823         "IFLE           ", /*             158 */
824         "IF_ICMPEQ      ", /*             159 */
825         "IF_ICMPNE      ", /*             160 */
826         "IF_ICMPLT      ", /*             161 */
827         "IF_ICMPGE      ", /*             162 */
828         "IF_ICMPGT      ", /*             163 */
829         "IF_ICMPLE      ", /*             164 */
830         "IF_ACMPEQ      ", /*             165 */
831         "IF_ACMPNE      ", /*             166 */
832         "GOTO           ", /*             167 */
833         "JSR            ", /*             168 */
834         "RET            ", /*             169 */
835         "TABLESWITCH    ", /*             170 */
836         "LOOKUPSWITCH   ", /*             171 */
837         "IRETURN        ", /*             172 */
838         "LRETURN        ", /*             173 */
839         "FRETURN        ", /*             174 */
840         "DRETURN        ", /*             175 */
841         "ARETURN        ", /*             176 */
842         "RETURN         ", /*             177 */
843         "GETSTATIC      ", /*             178 */
844         "PUTSTATIC      ", /*             179 */
845         "GETFIELD       ", /*             180 */
846         "PUTFIELD       ", /*             181 */
847         "INVOKEVIRTUAL  ", /*             182 */
848         "INVOKESPECIAL  ", /*             183 */
849         "INVOKESTATIC   ", /*             184 */
850         "INVOKEINTERFACE", /*             185 */
851         "UNDEF186       ", /*             186 */
852         "NEW            ", /*             187 */
853         "NEWARRAY       ", /*             188 */
854         "ANEWARRAY      ", /*             189 */
855         "ARRAYLENGTH    ", /*             190 */
856         "ATHROW         ", /*             191 */
857         "CHECKCAST      ", /*             192 */
858         "INSTANCEOF     ", /*             193 */
859         "MONITORENTER   ", /*             194 */
860         "MONITOREXIT    ", /*             195 */
861         "WIDE           ", /* WIDE        196 */
862         "MULTIANEWARRAY ", /*             197 */
863         "IFNULL         ", /*             198 */
864         "IFNONNULL      ", /*             199 */
865         "GOTO_W         ", /* GOTO_W      200 */
866         "JSR_W          ", /* JSR_W       201 */
867         "BREAKPOINT     ", /* BREAKPOINT  202 */
868
869                                 "UNDEF203", "UNDEF204", "UNDEF205",
870         "UNDEF206", "UNDEF207", "UNDEF208", "UNDEF209", "UNDEF210",
871         "UNDEF211", "UNDEF212", "UNDEF213", "UNDEF214", "UNDEF215",
872         "UNDEF216", "UNDEF217", "UNDEF218", "UNDEF219", "UNDEF220",
873         "UNDEF221", "UNDEF222", "UNDEF223", "UNDEF224", "UNDEF225",
874         "UNDEF226", "UNDEF227", "UNDEF228", "UNDEF229", "UNDEF230",
875         "UNDEF231", "UNDEF232", "UNDEF233", "UNDEF234", "UNDEF235",
876         "UNDEF236", "UNDEF237", "UNDEF238", "UNDEF239", "UNDEF240",
877         "UNDEF241", "UNDEF242", "UNDEF243", "UNDEF244", "UNDEF245",
878         "UNDEF246", "UNDEF247", "UNDEF248", "UNDEF249", "UNDEF250",
879         "UNDEF251", "UNDEF252", "UNDEF253", "UNDEF254", "UNDEF255"
880 };
881
882
883 /* jit_init ********************************************************************
884
885    Initializes the JIT subsystem.
886
887 *******************************************************************************/
888
889 void jit_init(void)
890 {
891 #if defined(ENABLE_JIT)
892         /* initialize stack analysis subsystem */
893
894         (void) stack_init();
895 #endif
896
897         /* initialize show subsystem */
898
899 #if !defined(NDEBUG)
900         (void) show_init();
901 #endif
902
903         /* initialize codegen subsystem */
904
905         codegen_init();
906
907         /* initialize code subsystem */
908
909         (void) code_init();
910 }
911
912
913 /* jit_close *******************************************************************
914
915    Close the JIT subsystem.
916
917 *******************************************************************************/
918
919 void jit_close(void)
920 {
921         /* do nothing */
922 }
923
924
925 /* dummy function, used when there is no JavaVM code available                */
926
927 static u1 *do_nothing_function(void)
928 {
929         return NULL;
930 }
931
932
933 /* jit_jitdata_new *************************************************************
934
935    Allocates and initalizes a new jitdata structure.
936
937 *******************************************************************************/
938
939 jitdata *jit_jitdata_new(codeinfo *code)
940 {
941         jitdata    *jd;
942         methodinfo *m;
943
944         /* get required compiler data */
945
946         m = code->m;
947
948         /* allocate jitdata structure and fill it */
949
950         jd = DNEW(jitdata);
951
952         jd->m     = code->m;
953         jd->code  = code;
954
955         jd->cd    = DNEW(codegendata);
956         jd->rd    = DNEW(registerdata);
957 #if defined(ENABLE_LOOP)
958         jd->ld    = DNEW(loopdata);
959 #endif
960
961         /* initialize variables */
962
963         jd->flags                = 0;
964         jd->exceptiontable       = NULL;
965         jd->exceptiontablelength = 0;
966         jd->returncount          = 0;
967         jd->branchtoentry        = false;
968         jd->branchtoend          = false;
969         jd->returncount          = 0;
970         jd->returnblock          = NULL;
971         jd->maxlocals            = m->maxlocals;
972
973 #if defined(ENABLE_THREADS)
974         if (checksync && (m->flags & ACC_SYNCHRONIZED))
975                 jd->isleafmethod = false;
976         else
977 #endif
978                 jd->isleafmethod = true;
979
980         return jd;
981 }
982
983
984 /* jit_compile *****************************************************************
985
986    Translates one method to machine code.
987
988 *******************************************************************************/
989
990 static u1 *jit_compile_intern(jitdata *jd);
991
992 u1 *jit_compile(methodinfo *m)
993 {
994         jitdata  *jd;
995         codeinfo *code;
996         s4        dumpsize;
997         u1       *r;
998
999         STATISTICS(count_jit_calls++);
1000
1001         /* Initialize the static function's class. */
1002
1003         /* ATTENTION: This MUST be done before the method lock is aquired,
1004            otherwise we could run into a deadlock with <clinit>'s that
1005            call static methods of it's own class. */
1006
1007         if ((m->flags & ACC_STATIC) && !(m->class->state & CLASS_INITIALIZED)) {
1008 #if !defined(NDEBUG)
1009                 if (initverbose)
1010                         log_message_class("Initialize class ", m->class);
1011 #endif
1012
1013                 if (!initialize_class(m->class))
1014                         return NULL;
1015
1016                 /* check if the method has been compiled during initialization */
1017
1018                 if ((m->code != NULL) && (m->code->entrypoint != NULL))
1019                         return m->code->entrypoint;
1020         }
1021
1022         /* We create a codeinfo here and lock on this object, as a object
1023            header in the methodinfo uses to much memory. */
1024
1025         code = code_codeinfo_new(m);
1026
1027         /* enter a monitor on the codeinfo */
1028
1029         LOCK_MONITOR_ENTER(code);
1030
1031         /* If method has been already compiled return immediately.
1032            ATTENTION: check for m->code!!! */
1033
1034         if (m->code != NULL) {
1035                 /* leave the lock and free the memory */
1036
1037                 LOCK_MONITOR_EXIT(code);
1038
1039                 code_codeinfo_free(code);
1040
1041                 assert(m->code->entrypoint);
1042
1043                 return m->code->entrypoint;
1044         }
1045
1046         STATISTICS(count_methods++);
1047
1048 #if defined(ENABLE_STATISTICS)
1049         /* measure time */
1050
1051         if (opt_getcompilingtime)
1052                 compilingtime_start();
1053 #endif
1054
1055         /* mark start of dump memory area */
1056
1057         dumpsize = dump_size();
1058
1059         /* create jitdata structure */
1060
1061         jd = jit_jitdata_new(code);
1062
1063         /* set the flags for the current JIT run */
1064
1065         jd->flags = JITDATA_FLAG_PARSE;
1066
1067 #if defined(ENABLE_VERIFIER)
1068         if (opt_verify)
1069                 jd->flags |= JITDATA_FLAG_VERIFY;
1070 #endif
1071
1072 #if defined(ENABLE_PROFILING)
1073         if (opt_prof)
1074                 jd->flags |= JITDATA_FLAG_INSTRUMENT;
1075 #endif
1076
1077 #if defined(ENABLE_IFCONV)
1078         if (opt_ifconv)
1079                 jd->flags |= JITDATA_FLAG_IFCONV;
1080 #endif
1081
1082 #if defined(ENABLE_INLINING) && defined(ENABLE_INLINING_DEBUG)
1083         if (opt_inlining && opt_inline_debug_all)
1084                 jd->flags |= JITDATA_FLAG_INLINE;
1085 #endif
1086
1087         if (opt_showintermediate)
1088                 jd->flags |= JITDATA_FLAG_SHOWINTERMEDIATE;
1089
1090         if (opt_showdisassemble)
1091                 jd->flags |= JITDATA_FLAG_SHOWDISASSEMBLE;
1092
1093         if (opt_verbosecall)
1094                 jd->flags |= JITDATA_FLAG_VERBOSECALL;
1095
1096 #if defined(ENABLE_JIT)
1097 # if defined(ENABLE_INTRP)
1098         if (!opt_intrp)
1099 # endif
1100                 /* initialize the register allocator */
1101         {
1102                 reg_setup(jd);
1103         }
1104 #endif
1105
1106         /* setup the codegendata memory */
1107
1108         codegen_setup(jd);
1109
1110         /* now call internal compile function */
1111
1112         r = jit_compile_intern(jd);
1113
1114         if (r == NULL) {
1115                 /* We had an exception! Finish stuff here if necessary. */
1116
1117 #if defined(ENABLE_PROFILING)
1118                 /* Release memory for basic block profiling information. */
1119
1120                 if (JITDATA_HAS_FLAG_INSTRUMENT(jd))
1121                         if (jd->code->bbfrequency != NULL)
1122                                 MFREE(jd->code->bbfrequency, u4, jd->code->basicblockcount);
1123 #endif
1124         }
1125         else {
1126                 DEBUG_JIT_COMPILEVERBOSE("Running: ");
1127         }
1128
1129         /* release dump area */
1130
1131         dump_release(dumpsize);
1132
1133 #if defined(ENABLE_STATISTICS)
1134         /* measure time */
1135
1136         if (opt_getcompilingtime)
1137                 compilingtime_stop();
1138 #endif
1139
1140         /* leave the monitor */
1141
1142         LOCK_MONITOR_EXIT(code);
1143
1144         /* If we had an exception, release codeinfo. */
1145
1146         if (r == NULL)
1147                 code_codeinfo_free(code);
1148
1149         /* return pointer to the methods entry point */
1150
1151         return r;
1152 }
1153
1154
1155 /* jit_recompile ***************************************************************
1156
1157    Recompiles a Java method.
1158
1159 *******************************************************************************/
1160
1161 u1 *jit_recompile(methodinfo *m)
1162 {
1163         u1      *r;
1164         jitdata  *jd;
1165         codeinfo *code;
1166         u1        optlevel;
1167         s4        dumpsize;
1168
1169         /* check for max. optimization level */
1170
1171         optlevel = (m->code) ? m->code->optlevel : 0;
1172
1173 #if 0
1174         if (optlevel == 1) {
1175 /*              log_message_method("not recompiling: ", m); */
1176                 return NULL;
1177         }
1178 #endif
1179
1180         DEBUG_JIT_COMPILEVERBOSE("Recompiling start: ");
1181
1182         STATISTICS(count_jit_calls++);
1183
1184 #if defined(ENABLE_STATISTICS)
1185         /* measure time */
1186
1187         if (opt_getcompilingtime)
1188                 compilingtime_start();
1189 #endif
1190
1191         /* create codeinfo */
1192
1193         code = code_codeinfo_new(m);
1194
1195         /* mark start of dump memory area */
1196
1197         dumpsize = dump_size();
1198
1199         /* create jitdata structure */
1200
1201         jd = jit_jitdata_new(code);
1202
1203         /* set the current optimization level to the previous one plus 1 */
1204
1205         jd->code->optlevel = optlevel + 1;
1206
1207         /* get the optimization flags for the current JIT run */
1208
1209 #if defined(ENABLE_VERIFIER)
1210         jd->flags |= JITDATA_FLAG_VERIFY;
1211 #endif
1212
1213         /* jd->flags |= JITDATA_FLAG_REORDER; */
1214         if (opt_showintermediate)
1215                 jd->flags |= JITDATA_FLAG_SHOWINTERMEDIATE;
1216         if (opt_showdisassemble)
1217                 jd->flags |= JITDATA_FLAG_SHOWDISASSEMBLE;
1218         if (opt_verbosecall)
1219                 jd->flags |= JITDATA_FLAG_VERBOSECALL;
1220
1221 #if defined(ENABLE_JIT)
1222 # if defined(ENABLE_INTRP)
1223         if (!opt_intrp)
1224 # endif
1225                 /* initialize the register allocator */
1226
1227                 reg_setup(jd);
1228 #endif
1229
1230         /* setup the codegendata memory */
1231
1232         codegen_setup(jd);
1233
1234         /* now call internal compile function */
1235
1236         r = jit_compile_intern(jd);
1237
1238         if (r == NULL) {
1239                 /* We had an exception! Finish stuff here if necessary. */
1240
1241                 /* release codeinfo */
1242
1243                 code_codeinfo_free(jd->code);
1244         }
1245
1246         /* release dump area */
1247
1248         dump_release(dumpsize);
1249
1250 #if defined(ENABLE_STATISTICS)
1251         /* measure time */
1252
1253         if (opt_getcompilingtime)
1254                 compilingtime_stop();
1255 #endif
1256
1257         DEBUG_JIT_COMPILEVERBOSE("Recompiling done: ");
1258
1259         /* return pointer to the methods entry point */
1260
1261         return r;
1262 }
1263
1264
1265 /* jit_compile_intern **********************************************************
1266
1267    Static internal function which does the actual compilation.
1268
1269 *******************************************************************************/
1270
1271 static u1 *jit_compile_intern(jitdata *jd)
1272 {
1273         methodinfo  *m;
1274         codegendata *cd;
1275         codeinfo    *code;
1276
1277 #if defined(ENABLE_RT_TIMING)
1278         struct timespec time_start,time_checks,time_parse,time_stack,
1279                                         time_typecheck,time_loop,time_ifconv,time_alloc,
1280                                         time_codegen;
1281 #endif
1282         
1283         RT_TIMING_GET_TIME(time_start);
1284
1285         /* get required compiler data */
1286
1287 #if defined(ENABLE_LSRA) || defined(ENABLE_SSA)
1288         jd->ls = NULL;
1289 #endif
1290         m    = jd->m;
1291         code = jd->code;
1292         cd   = jd->cd;
1293         
1294         /* print log message for compiled method */
1295
1296         DEBUG_JIT_COMPILEVERBOSE("Compiling: ");
1297
1298         /* handle native methods and create a native stub */
1299
1300         if (m->flags & ACC_NATIVE) {
1301                 functionptr f;
1302
1303 #if defined(WITH_STATIC_CLASSPATH)
1304                 f = native_findfunction(m->class->name, m->name, m->descriptor,
1305                                                                 (m->flags & ACC_STATIC));
1306                 if (f == NULL)
1307                         return NULL;
1308 #else
1309                 f = NULL;
1310 #endif
1311
1312                 code = codegen_createnativestub(f, m);
1313
1314                 assert(!m->code); /* native methods are never recompiled */
1315                 m->code = code;
1316                 
1317                 return code->entrypoint;
1318         }
1319
1320         /* if there is no javacode, print error message and return empty method   */
1321
1322         if (m->jcode == NULL) {
1323                 DEBUG_JIT_COMPILEVERBOSE("No code given for: ");
1324
1325                 code->entrypoint = (u1 *) (ptrint) do_nothing_function;
1326                 m->code = code;
1327
1328                 return code->entrypoint;        /* return empty method                */
1329         }
1330
1331 #if defined(ENABLE_STATISTICS)
1332         if (opt_stat) {
1333                 count_javacodesize += m->jcodelength + 18;
1334                 count_tryblocks    += jd->exceptiontablelength;
1335                 count_javaexcsize  += jd->exceptiontablelength * SIZEOF_VOID_P;
1336         }
1337 #endif
1338
1339         RT_TIMING_GET_TIME(time_checks);
1340
1341         /* call the compiler passes ***********************************************/
1342
1343         DEBUG_JIT_COMPILEVERBOSE("Parsing: ");
1344
1345         /* call parse pass */
1346
1347         if (!parse(jd)) {
1348                 DEBUG_JIT_COMPILEVERBOSE("Exception while parsing: ");
1349
1350                 return NULL;
1351         }
1352         RT_TIMING_GET_TIME(time_parse);
1353
1354         DEBUG_JIT_COMPILEVERBOSE("Parsing done: ");
1355         
1356 #if defined(ENABLE_JIT)
1357 # if defined(ENABLE_INTRP)
1358         if (!opt_intrp) {
1359 # endif
1360                 DEBUG_JIT_COMPILEVERBOSE("Analysing: ");
1361
1362                 /* call stack analysis pass */
1363
1364                 if (!stack_analyse(jd)) {
1365                         DEBUG_JIT_COMPILEVERBOSE("Exception while analysing: ");
1366
1367                         return NULL;
1368                 }
1369                 RT_TIMING_GET_TIME(time_stack);
1370
1371                 DEBUG_JIT_COMPILEVERBOSE("Analysing done: ");
1372
1373                 /* Build the CFG.  This has to be done after stack_analyse, as
1374                    there happens the JSR elimination. */
1375
1376                 if (!cfg_build(jd))
1377                         return NULL;
1378
1379 #ifdef ENABLE_VERIFIER
1380                 if (JITDATA_HAS_FLAG_VERIFY(jd)) {
1381                         DEBUG_JIT_COMPILEVERBOSE("Typechecking: ");
1382
1383                         /* call typecheck pass */
1384                         if (!typecheck(jd)) {
1385                                 DEBUG_JIT_COMPILEVERBOSE("Exception while typechecking: ");
1386
1387                                 return NULL;
1388                         }
1389
1390                         DEBUG_JIT_COMPILEVERBOSE("Typechecking done: ");
1391                 }
1392 #endif
1393                 RT_TIMING_GET_TIME(time_typecheck);
1394
1395 #if defined(ENABLE_LOOP)
1396                 if (opt_loops) {
1397                         depthFirst(jd);
1398                         analyseGraph(jd);
1399                         optimize_loops(jd);
1400                         jit_renumber_basicblocks(jd);
1401                 }
1402 #endif
1403                 RT_TIMING_GET_TIME(time_loop);
1404
1405 #if defined(ENABLE_IFCONV)
1406                 if (JITDATA_HAS_FLAG_IFCONV(jd)) {
1407                         if (!ifconv_static(jd))
1408                                 return NULL;
1409                         jit_renumber_basicblocks(jd);
1410                 }
1411 #endif
1412                 RT_TIMING_GET_TIME(time_ifconv);
1413
1414                 /* inlining */
1415
1416 #if defined(ENABLE_INLINING)
1417                 if (JITDATA_HAS_FLAG_INLINE(jd)) {
1418                         if (!inline_inline(jd))
1419                                 return NULL;
1420                 }
1421 #endif
1422
1423                 /* Basic block reordering.  I think this should be done after
1424                    if-conversion, as we could lose the ability to do the
1425                    if-conversion. */
1426
1427                 if (JITDATA_HAS_FLAG_REORDER(jd)) {
1428                         if (!reorder(jd))
1429                                 return NULL;
1430                         jit_renumber_basicblocks(jd);
1431                 }
1432
1433                 DEBUG_JIT_COMPILEVERBOSE("Allocating registers: ");
1434
1435 #if defined(ENABLE_LSRA) && !defined(ENABLE_SSA)
1436                 /* allocate registers */
1437                 if (opt_lsra) {
1438                         if (!lsra(jd))
1439                                 return NULL;
1440
1441                         STATISTICS(count_methods_allocated_by_lsra++);
1442
1443                 } else
1444 # endif /* defined(ENABLE_LSRA) && !defined(ENABLE_SSA) */
1445 #if defined(ENABLE_SSA)
1446                 /* allocate registers */
1447                 if ((opt_lsra) && (jd->exceptiontablelength == 0)) {
1448                         jd->ls = DNEW(lsradata);
1449                         lsra(jd);
1450
1451                         STATISTICS(count_methods_allocated_by_lsra++);
1452
1453                 } else
1454 # endif /* defined(ENABLE_SSA) */
1455                 {
1456                         STATISTICS(count_locals_conflicts += (jd->maxlocals - 1) * (jd->maxlocals));
1457
1458                         regalloc(jd);
1459                 }
1460
1461                 STATISTICS(simplereg_make_statistics(jd));
1462
1463                 DEBUG_JIT_COMPILEVERBOSE("Allocating registers done: ");
1464 # if defined(ENABLE_INTRP)
1465         }
1466 # endif
1467 #endif /* defined(ENABLE_JIT) */
1468         RT_TIMING_GET_TIME(time_alloc);
1469
1470 #if defined(ENABLE_PROFLING)
1471         /* Allocate memory for basic block profiling information. This
1472            _must_ be done after loop optimization and register allocation,
1473            since they can change the basic block count. */
1474
1475         if (JITDATA_HAS_FLAG_INSTRUMENT(jd))
1476                 code->bbfrequency = MNEW(u4, jd->basicblockcount);
1477 #endif
1478
1479         DEBUG_JIT_COMPILEVERBOSE("Generating code: ");
1480
1481         /* now generate the machine code */
1482
1483 #if defined(ENABLE_JIT)
1484 # if defined(ENABLE_INTRP)
1485         if (opt_intrp) {
1486 #if defined(ENABLE_VERIFIER)
1487                 if (opt_verify) {
1488                         DEBUG_JIT_COMPILEVERBOSE("Typechecking (stackbased): ");
1489
1490                         if (!typecheck_stackbased(jd)) {
1491                                 DEBUG_JIT_COMPILEVERBOSE("Exception while typechecking (stackbased): ");
1492                                 return NULL;
1493                         }
1494                 }
1495 #endif
1496                 if (!intrp_codegen(jd)) {
1497                         DEBUG_JIT_COMPILEVERBOSE("Exception while generating code: ");
1498
1499                         return NULL;
1500                 }
1501         } else
1502 # endif
1503                 {
1504                         if (!codegen(jd)) {
1505                                 DEBUG_JIT_COMPILEVERBOSE("Exception while generating code: ");
1506
1507                                 return NULL;
1508                         }
1509                 }
1510 #else
1511         if (!intrp_codegen(jd)) {
1512                 DEBUG_JIT_COMPILEVERBOSE("Exception while generating code: ");
1513
1514                 return NULL;
1515         }
1516 #endif
1517         RT_TIMING_GET_TIME(time_codegen);
1518
1519         DEBUG_JIT_COMPILEVERBOSE("Generating code done: ");
1520
1521 #if !defined(NDEBUG)
1522         /* intermediate and assembly code listings */
1523                 
1524         if (JITDATA_HAS_FLAG_SHOWINTERMEDIATE(jd)) {
1525                 show_method(jd, SHOW_CODE);
1526         }
1527         else if (JITDATA_HAS_FLAG_SHOWDISASSEMBLE(jd)) {
1528 # if defined(ENABLE_DISASSEMBLER)
1529                 DISASSEMBLE(code->entrypoint,
1530                                         code->entrypoint + (code->mcodelength - cd->dseglen));
1531 # endif
1532         }
1533
1534         if (opt_showddatasegment)
1535                 dseg_display(jd);
1536 #endif
1537
1538         DEBUG_JIT_COMPILEVERBOSE("Compiling done: ");
1539
1540         /* switch to the newly generated code */
1541
1542         assert(code);
1543         assert(code->entrypoint);
1544
1545         /* add the current compile version to the methodinfo */
1546
1547         code->prev = m->code;
1548         m->code = code;
1549
1550         RT_TIMING_TIME_DIFF(time_start,time_checks,RT_TIMING_JIT_CHECKS);
1551         RT_TIMING_TIME_DIFF(time_checks,time_parse,RT_TIMING_JIT_PARSE);
1552         RT_TIMING_TIME_DIFF(time_parse,time_stack,RT_TIMING_JIT_STACK);
1553         RT_TIMING_TIME_DIFF(time_stack,time_typecheck,RT_TIMING_JIT_TYPECHECK);
1554         RT_TIMING_TIME_DIFF(time_typecheck,time_loop,RT_TIMING_JIT_LOOP);
1555         RT_TIMING_TIME_DIFF(time_loop,time_alloc,RT_TIMING_JIT_ALLOC);
1556         RT_TIMING_TIME_DIFF(time_alloc,time_codegen,RT_TIMING_JIT_CODEGEN);
1557         RT_TIMING_TIME_DIFF(time_start,time_codegen,RT_TIMING_JIT_TOTAL);
1558
1559         /* return pointer to the methods entry point */
1560
1561         return code->entrypoint;
1562
1563
1564
1565 /* jit_invalidate_code *********************************************************
1566
1567    Mark the compiled code of the given method as invalid and take care that
1568    it is replaced if necessary.
1569
1570    XXX Not fully implemented, yet.
1571
1572 *******************************************************************************/
1573
1574 void jit_invalidate_code(methodinfo *m)
1575 {
1576         codeinfo *code;
1577
1578         code = m->code;
1579         if (code == NULL || CODE_IS_INVALID(code))
1580                 return;
1581
1582         CODE_SETFLAG_INVALID(code);
1583
1584         /* activate mappable replacement points */
1585
1586 #if defined(ENABLE_REPLACEMENT)
1587         replace_activate_replacement_points(code, true);
1588 #else
1589         vm_abort("invalidating code only works with ENABLE_REPLACEMENT");
1590 #endif
1591 }
1592
1593
1594 /* jit_request_optimization ****************************************************
1595
1596    Request optimization of the given method. If the code of the method is
1597    unoptimized, it will be invalidated, so the next jit_get_current_code(m)
1598    triggers an optimized recompilation.
1599    If the method is already optimized, this function does nothing.
1600
1601    IN:
1602        m................the method
1603
1604 *******************************************************************************/
1605
1606 void jit_request_optimization(methodinfo *m)
1607 {
1608         codeinfo *code;
1609
1610         code = m->code;
1611
1612         if (code && code->optlevel == 0)
1613                 jit_invalidate_code(m);
1614 }
1615
1616
1617 /* jit_get_current_code ********************************************************
1618
1619    Get the currently valid code for the given method. If there is no valid
1620    code, (re)compile the method.
1621
1622    IN:
1623        m................the method
1624
1625    RETURN VALUE:
1626        the codeinfo* for the current code, or
1627            NULL if an exception has been thrown during recompilation.
1628
1629 *******************************************************************************/
1630
1631 codeinfo *jit_get_current_code(methodinfo *m)
1632 {
1633         assert(m);
1634
1635         /* if we have valid code, return it */
1636
1637         if (m->code && CODE_IS_VALID(m->code))
1638                 return m->code;
1639
1640         /* otherwise: recompile */
1641
1642         if (!jit_recompile(m))
1643                 return NULL;
1644
1645         assert(m->code);
1646
1647         return m->code;
1648 }
1649
1650
1651 /* jit_asm_compile *************************************************************
1652
1653    This method is called from asm_vm_call_method and does:
1654
1655      - create stackframe info for exceptions
1656      - compile the method
1657      - patch the entrypoint of the method into the calculated address in
1658        the JIT code
1659      - flushes the instruction cache.
1660
1661 *******************************************************************************/
1662
1663 #if defined(ENABLE_JIT)
1664 u1 *jit_asm_compile(methodinfo *m, u1 *mptr, u1 *sp, u1 *ra)
1665 {
1666         stackframeinfo  sfi;
1667         u1             *entrypoint;
1668         u1             *pa;
1669         ptrint         *p;
1670
1671         /* create the stackframeinfo (subtract 1 from RA as it points to the */
1672         /* instruction after the call)                                       */
1673
1674         stacktrace_create_extern_stackframeinfo(&sfi, NULL, sp, ra, ra-1);
1675
1676         /* actually compile the method */
1677
1678         entrypoint = jit_compile(m);
1679
1680         /* remove the stackframeinfo */
1681
1682         stacktrace_remove_stackframeinfo(&sfi);
1683
1684         /* there was a problem during compilation */
1685
1686         if (entrypoint == NULL)
1687                 return NULL;
1688
1689         /* get the method patch address */
1690
1691         pa = md_get_method_patch_address(ra, &sfi, mptr);
1692
1693         /* patch the method entry point */
1694
1695         p = (ptrint *) pa;
1696
1697         *p = (ptrint) entrypoint;
1698
1699         /* flush the instruction cache */
1700
1701         md_icacheflush(pa, SIZEOF_VOID_P);
1702
1703         return entrypoint;
1704 }
1705 #endif /* defined(ENABLE_JIT) */
1706
1707
1708 /* jit_complement_condition ****************************************************
1709
1710    Returns the complement of the passed conditional instruction.
1711
1712    We use the order of the different conditions, e.g.:
1713
1714    ICMD_IFEQ         153
1715    ICMD_IFNE         154
1716
1717    If the passed opcode is odd, we simply add 1 to get the complement.
1718    If the opcode is even, we subtract 1.
1719
1720    Exception:
1721
1722    ICMD_IFNULL       198
1723    ICMD_IFNONNULL    199
1724
1725 *******************************************************************************/
1726
1727 s4 jit_complement_condition(s4 opcode)
1728 {
1729         switch (opcode) {
1730         case ICMD_IFNULL:
1731                 return ICMD_IFNONNULL;
1732
1733         case ICMD_IFNONNULL:
1734                 return ICMD_IFNULL;
1735
1736         default:
1737                 /* check if opcode is odd */
1738
1739                 if (opcode & 0x1)
1740                         return opcode + 1;
1741                 else
1742                         return opcode - 1;
1743         }
1744 }
1745
1746
1747 /* jit_renumber_basicblocks ****************************************************
1748
1749    Set the ->nr of all blocks so it increases when traversing ->next.
1750
1751    IN:
1752        jitdata..........the current jitdata
1753
1754 *******************************************************************************/
1755
1756 void jit_renumber_basicblocks(jitdata *jd)
1757 {
1758         s4          nr;
1759         basicblock *bptr;
1760
1761         nr = 0;
1762         for (bptr = jd->basicblocks; bptr != NULL; bptr = bptr->next) {
1763                 bptr->nr = nr++;
1764         }
1765
1766         /* we have one block more than jd->basicblockcount (the end marker) */
1767
1768         assert(nr == jd->basicblockcount + 1);
1769 }
1770
1771
1772 /* jit_check_basicblock_numbers ************************************************
1773
1774    Assert that the ->nr of the first block is zero and increases by 1 each
1775    time ->next is traversed.
1776    This function should be called before any analysis that relies on
1777    the basicblock numbers.
1778
1779    IN:
1780        jitdata..........the current jitdata
1781
1782    NOTE: Aborts with an assertion if the condition is not met!
1783
1784 *******************************************************************************/
1785
1786 #if !defined(NDEBUG)
1787 void jit_check_basicblock_numbers(jitdata *jd)
1788 {
1789         s4          nr;
1790         basicblock *bptr;
1791
1792         nr = 0;
1793         for (bptr = jd->basicblocks; bptr != NULL; bptr = bptr->next) {
1794                 assert(bptr->nr == nr);
1795                 nr++;
1796         }
1797
1798         /* we have one block more than jd->basicblockcount (the end marker) */
1799
1800         assert(nr == jd->basicblockcount + 1);
1801 }
1802 #endif /* !defined(NDEBUG) */
1803
1804
1805 /*
1806  * These are local overrides for various environment variables in Emacs.
1807  * Please do not remove this and leave it at the end of the file, where
1808  * Emacs will automagically detect them.
1809  * ---------------------------------------------------------------------
1810  * Local variables:
1811  * mode: c
1812  * indent-tabs-mode: t
1813  * c-basic-offset: 4
1814  * tab-width: 4
1815  * End:
1816  * vim:noexpandtab:sw=4:ts=4:
1817  */