* analyse_stack: allocate a dummy stack slot for ICMD_IINC to keep ISTORE
[cacao.git] / src / vm / jit / stack.c
1 /* src/vm/jit/stack.c - stack analysis
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: Andreas Krall
28
29    Changes: Edwin Steiner
30             Christian Thalinger
31                         Christian Ullrich
32
33    $Id: stack.c 3724 2005-11-21 19:59:12Z edwin $
34
35 */
36
37
38 #include <assert.h>
39 #include <stdio.h>
40 #include <string.h>
41
42 #include "vm/types.h"
43
44 #include "arch.h"
45 #include "md-abi.h"
46
47 #include "mm/memory.h"
48 #include "native/native.h"
49 #include "toolbox/logging.h"
50 #include "vm/global.h"
51 #include "vm/builtin.h"
52 #include "vm/options.h"
53 #include "vm/resolve.h"
54 #include "vm/statistics.h"
55 #include "vm/stringlocal.h"
56 #include "vm/tables.h"
57 #include "vm/jit/codegen.inc.h"
58 #include "vm/jit/disass.h"
59 #include "vm/jit/jit.h"
60 #include "vm/jit/reg.h"
61 #include "vm/jit/stack.h"
62 #include "vm/jit/lsra.h"
63
64
65 /* global variables ***********************************************************/
66
67 #if defined(USE_THREADS)
68 static java_objectheader show_icmd_lock;
69 #endif
70
71
72 /* stack_init ******************************************************************
73
74    Initialized the stack analysis subsystem (called by jit_init).
75
76 *******************************************************************************/
77
78 bool stack_init(void)
79 {
80 #if defined(USE_THREADS)
81         /* initialize the show lock */
82
83         show_icmd_lock.monitorPtr = get_dummyLR();
84 #endif
85
86         /* everything's ok */
87
88         return true;
89 }
90
91
92 /**********************************************************************/
93 /* analyse_stack                                                      */
94 /**********************************************************************/
95
96 /* analyse_stack uses the intermediate code created by parse.c to
97  * build a model of the JVM operand stack for the current method.
98  *
99  * The following checks are performed:
100  *   - check for operand stack underflow (before each instruction)
101  *   - check for operand stack overflow (after[1] each instruction)
102  *   - check for matching stack depth at merging points
103  *   - check for matching basic types[2] at merging points
104  *   - check basic types for instruction input (except for BUILTIN*
105  *         opcodes, INVOKE* opcodes and MULTIANEWARRAY)
106  *
107  * [1]) Checking this after the instruction should be ok. parse.c
108  * counts the number of required stack slots in such a way that it is
109  * only vital that we don't exceed `maxstack` at basic block
110  * boundaries.
111  *
112  * [2]) 'basic types' means the distinction between INT, LONG, FLOAT,
113  * DOUBLE and ADDRESS types. Subtypes of INT and different ADDRESS
114  * types are not discerned.
115  */
116
117 methodinfo *analyse_stack(methodinfo *m, codegendata *cd, registerdata *rd)
118 {
119         int           b_count;
120         int           b_index;
121         int           stackdepth;
122         stackptr      curstack;
123         stackptr      new;
124         stackptr      copy;
125         int           opcode, i, len, loops;
126         int           superblockend, repeat, deadcode;
127         instruction  *iptr;
128         basicblock   *bptr;
129         basicblock   *tbptr;
130         s4           *s4ptr;
131         void        **tptr;
132         s4           *argren;
133
134         builtintable_entry *bte;
135         unresolved_method  *um;
136         methoddesc         *md;
137
138 #ifdef LSRA
139         m->maxlifetimes = 0;
140 #endif
141
142         argren = DMNEW(s4, cd->maxlocals);   /* table for argument renaming       */
143         for (i = 0; i < cd->maxlocals; i++)
144                 argren[i] = i;
145         
146         new = m->stack;
147         loops = 0;
148         m->basicblocks[0].flags = BBREACHED;
149         m->basicblocks[0].instack = 0;
150         m->basicblocks[0].indepth = 0;
151
152         for (i = 0; i < cd->exceptiontablelength; i++) {
153                 bptr = &m->basicblocks[m->basicblockindex[cd->exceptiontable[i].handlerpc]];
154                 bptr->flags = BBREACHED;
155                 bptr->type = BBTYPE_EXH;
156                 bptr->instack = new;
157                 bptr->indepth = 1;
158                 bptr->pre_count = 10000;
159                 STACKRESET;
160                 NEWXSTACK;
161         }
162
163 #if CONDITIONAL_LOADCONST
164         b_count = m->basicblockcount;
165         bptr = m->basicblocks;
166         while (--b_count >= 0) {
167                 if (bptr->icount != 0) {
168                         iptr = bptr->iinstr + bptr->icount - 1;
169                         switch (iptr->opc) {
170                         case ICMD_RET:
171                         case ICMD_RETURN:
172                         case ICMD_IRETURN:
173                         case ICMD_LRETURN:
174                         case ICMD_FRETURN:
175                         case ICMD_DRETURN:
176                         case ICMD_ARETURN:
177                         case ICMD_ATHROW:
178                                 break;
179
180                         case ICMD_IFEQ:
181                         case ICMD_IFNE:
182                         case ICMD_IFLT:
183                         case ICMD_IFGE:
184                         case ICMD_IFGT:
185                         case ICMD_IFLE:
186
187                         case ICMD_IFNULL:
188                         case ICMD_IFNONNULL:
189
190                         case ICMD_IF_ICMPEQ:
191                         case ICMD_IF_ICMPNE:
192                         case ICMD_IF_ICMPLT:
193                         case ICMD_IF_ICMPGE:
194                         case ICMD_IF_ICMPGT:
195                         case ICMD_IF_ICMPLE:
196
197                         case ICMD_IF_ACMPEQ:
198                         case ICMD_IF_ACMPNE:
199                                 bptr[1].pre_count++;
200                         case ICMD_GOTO:
201                                 m->basicblocks[m->basicblockindex[iptr->op1]].pre_count++;
202                                 break;
203
204                         case ICMD_TABLESWITCH:
205                                 s4ptr = iptr->val.a;
206                                 m->basicblocks[m->basicblockindex[*s4ptr++]].pre_count++;
207                                 i = *s4ptr++;                               /* low     */
208                                 i = *s4ptr++ - i + 1;                       /* high    */
209                                 while (--i >= 0) {
210                                         m->basicblocks[m->basicblockindex[*s4ptr++]].pre_count++;
211                                 }
212                                 break;
213                                         
214                         case ICMD_LOOKUPSWITCH:
215                                 s4ptr = iptr->val.a;
216                                 m->basicblocks[m->basicblockindex[*s4ptr++]].pre_count++;
217                                 i = *s4ptr++;                               /* count   */
218                                 while (--i >= 0) {
219                                         m->basicblocks[m->basicblockindex[s4ptr[1]]].pre_count++;
220                                         s4ptr += 2;
221                                 }
222                                 break;
223                         default:
224                                 bptr[1].pre_count++;
225                                 break;
226                         }
227                 }
228                 bptr++;
229         }
230 #endif /* CONDITIONAL_LOADCONST */
231
232
233         do {
234                 loops++;
235                 b_count = m->basicblockcount;
236                 bptr = m->basicblocks;
237                 superblockend = true;
238                 repeat = false;
239                 STACKRESET;
240                 deadcode = true;
241
242                 while (--b_count >= 0) {
243                         if (bptr->flags == BBDELETED) {
244                                 /* do nothing */
245
246                         } else if (superblockend && (bptr->flags < BBREACHED)) {
247                                 repeat = true;
248
249                         } else if (bptr->flags <= BBREACHED) {
250                                 if (superblockend) {
251                                         stackdepth = bptr->indepth;
252
253                                 } else if (bptr->flags < BBREACHED) {
254                                         COPYCURSTACK(copy);
255                                         bptr->instack = copy;
256                                         bptr->indepth = stackdepth;
257
258                                 } else if (bptr->indepth != stackdepth) {
259                                         /*show_icmd_method(m, cd, rd);
260                                         printf("Block: %d, required depth: %d, current depth: %d\n",
261                                         bptr->debug_nr, bptr->indepth, stackdepth);*/
262                                         *exceptionptr = new_verifyerror(m,"Stack depth mismatch");
263                                         return NULL;
264                                 }
265
266                                 curstack = bptr->instack;
267                                 deadcode = false;
268                                 superblockend = false;
269                                 bptr->flags = BBFINISHED;
270                                 len = bptr->icount;
271                                 iptr = bptr->iinstr;
272                                 b_index = bptr - m->basicblocks;
273
274                                 while (--len >= 0)  {
275                                         opcode = iptr->opc;
276
277 #if defined(USEBUILTINTABLE)
278 # if defined(ENABLE_INTRP)
279                                         if (!opt_intrp) {
280 # endif
281                                                 bte = builtintable_get_automatic(opcode);
282
283                                                 if (bte && bte->opcode == opcode) {
284                                                         iptr->opc = ICMD_BUILTIN;
285                                                         iptr->op1 = false;   /* don't check for exception */
286                                                         iptr->val.a = bte;
287                                                         m->isleafmethod = false;
288                                                         goto builtin;
289                                                 }
290 # if defined(ENABLE_INTRP)
291                                         }
292 # endif
293 #endif /* defined(USEBUILTINTABLE) */
294                                         
295                                         switch (opcode) {
296
297                                                 /* pop 0 push 0 */
298
299                                         case ICMD_CHECKNULL:
300                                                 COUNT(count_check_null);
301                                         case ICMD_NOP:
302
303                                         case ICMD_IFEQ_ICONST:
304                                         case ICMD_IFNE_ICONST:
305                                         case ICMD_IFLT_ICONST:
306                                         case ICMD_IFGE_ICONST:
307                                         case ICMD_IFGT_ICONST:
308                                         case ICMD_IFLE_ICONST:
309                                         case ICMD_ELSE_ICONST:
310                                                 SETDST;
311                                                 break;
312
313                                         case ICMD_RET:
314 #if defined(ENABLE_INTRP)
315                                                 if (!opt_intrp)
316 #endif
317                                                         rd->locals[iptr->op1][TYPE_ADR].type = TYPE_ADR;
318                                         case ICMD_RETURN:
319                                                 COUNT(count_pcmd_return);
320                                                 SETDST;
321                                                 superblockend = true;
322                                                 break;
323
324                                                 /* pop 0 push 1 const */
325                                                 
326                                         case ICMD_ICONST:
327                                                 COUNT(count_pcmd_load);
328                                                 if (len > 0) {
329                                                         switch (iptr[1].opc) {
330                                                         case ICMD_IADD:
331                                                                 iptr[0].opc = ICMD_IADDCONST;
332                                                         icmd_iconst_tail:
333                                                                 iptr[1].opc = ICMD_NOP;
334                                                                 OP1_1(TYPE_INT, TYPE_INT);
335                                                                 COUNT(count_pcmd_op);
336                                                                 break;
337                                                         case ICMD_ISUB:
338                                                                 iptr[0].opc = ICMD_ISUBCONST;
339                                                                 goto icmd_iconst_tail;
340 #if SUPPORT_CONST_MUL
341                                                         case ICMD_IMUL:
342                                                                 iptr[0].opc = ICMD_IMULCONST;
343                                                                 goto icmd_iconst_tail;
344 #else /* SUPPORT_CONST_MUL */
345                                                         case ICMD_IMUL:
346                                                                 if (iptr[0].val.i == 0x00000002)
347                                                                         iptr[0].val.i = 1;
348                                                                 else if (iptr[0].val.i == 0x00000004)
349                                                                         iptr[0].val.i = 2;
350                                                                 else if (iptr[0].val.i == 0x00000008)
351                                                                         iptr[0].val.i = 3;
352                                                                 else if (iptr[0].val.i == 0x00000010)
353                                                                         iptr[0].val.i = 4;
354                                                                 else if (iptr[0].val.i == 0x00000020)
355                                                                         iptr[0].val.i = 5;
356                                                                 else if (iptr[0].val.i == 0x00000040)
357                                                                         iptr[0].val.i = 6;
358                                                                 else if (iptr[0].val.i == 0x00000080)
359                                                                         iptr[0].val.i = 7;
360                                                                 else if (iptr[0].val.i == 0x00000100)
361                                                                         iptr[0].val.i = 8;
362                                                                 else if (iptr[0].val.i == 0x00000200)
363                                                                         iptr[0].val.i = 9;
364                                                                 else if (iptr[0].val.i == 0x00000400)
365                                                                         iptr[0].val.i = 10;
366                                                                 else if (iptr[0].val.i == 0x00000800)
367                                                                         iptr[0].val.i = 11;
368                                                                 else if (iptr[0].val.i == 0x00001000)
369                                                                         iptr[0].val.i = 12;
370                                                                 else if (iptr[0].val.i == 0x00002000)
371                                                                         iptr[0].val.i = 13;
372                                                                 else if (iptr[0].val.i == 0x00004000)
373                                                                         iptr[0].val.i = 14;
374                                                                 else if (iptr[0].val.i == 0x00008000)
375                                                                         iptr[0].val.i = 15;
376                                                                 else if (iptr[0].val.i == 0x00010000)
377                                                                         iptr[0].val.i = 16;
378                                                                 else if (iptr[0].val.i == 0x00020000)
379                                                                         iptr[0].val.i = 17;
380                                                                 else if (iptr[0].val.i == 0x00040000)
381                                                                         iptr[0].val.i = 18;
382                                                                 else if (iptr[0].val.i == 0x00080000)
383                                                                         iptr[0].val.i = 19;
384                                                                 else if (iptr[0].val.i == 0x00100000)
385                                                                         iptr[0].val.i = 20;
386                                                                 else if (iptr[0].val.i == 0x00200000)
387                                                                         iptr[0].val.i = 21;
388                                                                 else if (iptr[0].val.i == 0x00400000)
389                                                                         iptr[0].val.i = 22;
390                                                                 else if (iptr[0].val.i == 0x00800000)
391                                                                         iptr[0].val.i = 23;
392                                                                 else if (iptr[0].val.i == 0x01000000)
393                                                                         iptr[0].val.i = 24;
394                                                                 else if (iptr[0].val.i == 0x02000000)
395                                                                         iptr[0].val.i = 25;
396                                                                 else if (iptr[0].val.i == 0x04000000)
397                                                                         iptr[0].val.i = 26;
398                                                                 else if (iptr[0].val.i == 0x08000000)
399                                                                         iptr[0].val.i = 27;
400                                                                 else if (iptr[0].val.i == 0x10000000)
401                                                                         iptr[0].val.i = 28;
402                                                                 else if (iptr[0].val.i == 0x20000000)
403                                                                         iptr[0].val.i = 29;
404                                                                 else if (iptr[0].val.i == 0x40000000)
405                                                                         iptr[0].val.i = 30;
406                                                                 else if (iptr[0].val.i == 0x80000000)
407                                                                         iptr[0].val.i = 31;
408                                                                 else {
409                                                                         PUSHCONST(TYPE_INT);
410                                                                         break;
411                                                                 }
412                                                                 iptr[0].opc = ICMD_IMULPOW2;
413                                                                 goto icmd_iconst_tail;
414 #endif /* SUPPORT_CONST_MUL */
415                                                         case ICMD_IDIV:
416                                                                 if (iptr[0].val.i == 0x00000002)
417                                                                         iptr[0].val.i = 1;
418                                                                 else if (iptr[0].val.i == 0x00000004)
419                                                                         iptr[0].val.i = 2;
420                                                                 else if (iptr[0].val.i == 0x00000008)
421                                                                         iptr[0].val.i = 3;
422                                                                 else if (iptr[0].val.i == 0x00000010)
423                                                                         iptr[0].val.i = 4;
424                                                                 else if (iptr[0].val.i == 0x00000020)
425                                                                         iptr[0].val.i = 5;
426                                                                 else if (iptr[0].val.i == 0x00000040)
427                                                                         iptr[0].val.i = 6;
428                                                                 else if (iptr[0].val.i == 0x00000080)
429                                                                         iptr[0].val.i = 7;
430                                                                 else if (iptr[0].val.i == 0x00000100)
431                                                                         iptr[0].val.i = 8;
432                                                                 else if (iptr[0].val.i == 0x00000200)
433                                                                         iptr[0].val.i = 9;
434                                                                 else if (iptr[0].val.i == 0x00000400)
435                                                                         iptr[0].val.i = 10;
436                                                                 else if (iptr[0].val.i == 0x00000800)
437                                                                         iptr[0].val.i = 11;
438                                                                 else if (iptr[0].val.i == 0x00001000)
439                                                                         iptr[0].val.i = 12;
440                                                                 else if (iptr[0].val.i == 0x00002000)
441                                                                         iptr[0].val.i = 13;
442                                                                 else if (iptr[0].val.i == 0x00004000)
443                                                                         iptr[0].val.i = 14;
444                                                                 else if (iptr[0].val.i == 0x00008000)
445                                                                         iptr[0].val.i = 15;
446                                                                 else if (iptr[0].val.i == 0x00010000)
447                                                                         iptr[0].val.i = 16;
448                                                                 else if (iptr[0].val.i == 0x00020000)
449                                                                         iptr[0].val.i = 17;
450                                                                 else if (iptr[0].val.i == 0x00040000)
451                                                                         iptr[0].val.i = 18;
452                                                                 else if (iptr[0].val.i == 0x00080000)
453                                                                         iptr[0].val.i = 19;
454                                                                 else if (iptr[0].val.i == 0x00100000)
455                                                                         iptr[0].val.i = 20;
456                                                                 else if (iptr[0].val.i == 0x00200000)
457                                                                         iptr[0].val.i = 21;
458                                                                 else if (iptr[0].val.i == 0x00400000)
459                                                                         iptr[0].val.i = 22;
460                                                                 else if (iptr[0].val.i == 0x00800000)
461                                                                         iptr[0].val.i = 23;
462                                                                 else if (iptr[0].val.i == 0x01000000)
463                                                                         iptr[0].val.i = 24;
464                                                                 else if (iptr[0].val.i == 0x02000000)
465                                                                         iptr[0].val.i = 25;
466                                                                 else if (iptr[0].val.i == 0x04000000)
467                                                                         iptr[0].val.i = 26;
468                                                                 else if (iptr[0].val.i == 0x08000000)
469                                                                         iptr[0].val.i = 27;
470                                                                 else if (iptr[0].val.i == 0x10000000)
471                                                                         iptr[0].val.i = 28;
472                                                                 else if (iptr[0].val.i == 0x20000000)
473                                                                         iptr[0].val.i = 29;
474                                                                 else if (iptr[0].val.i == 0x40000000)
475                                                                         iptr[0].val.i = 30;
476                                                                 else if (iptr[0].val.i == 0x80000000)
477                                                                         iptr[0].val.i = 31;
478                                                                 else {
479                                                                         PUSHCONST(TYPE_INT);
480                                                                         break;
481                                                                 }
482                                                                 iptr[0].opc = ICMD_IDIVPOW2;
483                                                                 goto icmd_iconst_tail;
484                                                         case ICMD_IREM:
485                                                                 /*log_text("stack.c: ICMD_ICONST/ICMD_IREM");*/
486                                                                 if ((iptr[0].val.i == 0x00000002) ||
487                                                                         (iptr[0].val.i == 0x00000004) ||
488                                                                         (iptr[0].val.i == 0x00000008) ||
489                                                                         (iptr[0].val.i == 0x00000010) ||
490                                                                         (iptr[0].val.i == 0x00000020) ||
491                                                                         (iptr[0].val.i == 0x00000040) ||
492                                                                         (iptr[0].val.i == 0x00000080) ||
493                                                                         (iptr[0].val.i == 0x00000100) ||
494                                                                         (iptr[0].val.i == 0x00000200) ||
495                                                                         (iptr[0].val.i == 0x00000400) ||
496                                                                         (iptr[0].val.i == 0x00000800) ||
497                                                                         (iptr[0].val.i == 0x00001000) ||
498                                                                         (iptr[0].val.i == 0x00002000) ||
499                                                                         (iptr[0].val.i == 0x00004000) ||
500                                                                         (iptr[0].val.i == 0x00008000) ||
501                                                                         (iptr[0].val.i == 0x00010000) ||
502                                                                         (iptr[0].val.i == 0x00020000) ||
503                                                                         (iptr[0].val.i == 0x00040000) ||
504                                                                         (iptr[0].val.i == 0x00080000) ||
505                                                                         (iptr[0].val.i == 0x00100000) ||
506                                                                         (iptr[0].val.i == 0x00200000) ||
507                                                                         (iptr[0].val.i == 0x00400000) ||
508                                                                         (iptr[0].val.i == 0x00800000) ||
509                                                                         (iptr[0].val.i == 0x01000000) ||
510                                                                         (iptr[0].val.i == 0x02000000) ||
511                                                                         (iptr[0].val.i == 0x04000000) ||
512                                                                         (iptr[0].val.i == 0x08000000) ||
513                                                                         (iptr[0].val.i == 0x10000000) ||
514                                                                         (iptr[0].val.i == 0x20000000) ||
515                                                                         (iptr[0].val.i == 0x40000000) ||
516                                                                         (iptr[0].val.i == 0x80000000)) {
517                                                                         iptr[0].opc = ICMD_IREMPOW2;
518                                                                         iptr[0].val.i -= 1;
519                                                                         goto icmd_iconst_tail;
520                                                                 }
521                                                                 PUSHCONST(TYPE_INT);
522                                                                 break;
523 #if SUPPORT_CONST_LOGICAL
524                                                         case ICMD_IAND:
525                                                                 iptr[0].opc = ICMD_IANDCONST;
526                                                                 goto icmd_iconst_tail;
527                                                         case ICMD_IOR:
528                                                                 iptr[0].opc = ICMD_IORCONST;
529                                                                 goto icmd_iconst_tail;
530                                                         case ICMD_IXOR:
531                                                                 iptr[0].opc = ICMD_IXORCONST;
532                                                                 goto icmd_iconst_tail;
533 #endif /* SUPPORT_CONST_LOGICAL */
534                                                         case ICMD_ISHL:
535                                                                 iptr[0].opc = ICMD_ISHLCONST;
536                                                                 goto icmd_iconst_tail;
537                                                         case ICMD_ISHR:
538                                                                 iptr[0].opc = ICMD_ISHRCONST;
539                                                                 goto icmd_iconst_tail;
540                                                         case ICMD_IUSHR:
541                                                                 iptr[0].opc = ICMD_IUSHRCONST;
542                                                                 goto icmd_iconst_tail;
543 #if SUPPORT_LONG_SHIFT
544                                                         case ICMD_LSHL:
545                                                                 iptr[0].opc = ICMD_LSHLCONST;
546                                                                 goto icmd_lconst_tail;
547                                                         case ICMD_LSHR:
548                                                                 iptr[0].opc = ICMD_LSHRCONST;
549                                                                 goto icmd_lconst_tail;
550                                                         case ICMD_LUSHR:
551                                                                 iptr[0].opc = ICMD_LUSHRCONST;
552                                                                 goto icmd_lconst_tail;
553 #endif /* SUPPORT_LONG_SHIFT */
554                                                         case ICMD_IF_ICMPEQ:
555                                                                 iptr[0].opc = ICMD_IFEQ;
556                                                         icmd_if_icmp_tail:
557                                                                 iptr[0].op1 = iptr[1].op1;
558                                                                 /* IF_ICMPxx is the last instruction in the   */
559                                                                 /* basic block, just remove it                */
560                                                                 /* iptr[1].opc = ICMD_NOP; */
561                                                                 bptr->icount--;
562                                                                 len--;
563
564                                                                 OP1_0(TYPE_INT);
565                                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
566
567                                                                 iptr[0].target = (void *) tbptr;
568
569                                                                 MARKREACHED(tbptr, copy);
570                                                                 COUNT(count_pcmd_bra);
571                                                                 break;
572                                                         case ICMD_IF_ICMPLT:
573                                                                 iptr[0].opc = ICMD_IFLT;
574                                                                 goto icmd_if_icmp_tail;
575                                                         case ICMD_IF_ICMPLE:
576                                                                 iptr[0].opc = ICMD_IFLE;
577                                                                 goto icmd_if_icmp_tail;
578                                                         case ICMD_IF_ICMPNE:
579                                                                 iptr[0].opc = ICMD_IFNE;
580                                                                 goto icmd_if_icmp_tail;
581                                                         case ICMD_IF_ICMPGT:
582                                                                 iptr[0].opc = ICMD_IFGT;
583                                                                 goto icmd_if_icmp_tail;
584                                                         case ICMD_IF_ICMPGE:
585                                                                 iptr[0].opc = ICMD_IFGE;
586                                                                 goto icmd_if_icmp_tail;
587
588 #if SUPPORT_CONST_STORE
589                                                         case ICMD_IASTORE:
590                                                         case ICMD_BASTORE:
591                                                         case ICMD_CASTORE:
592                                                         case ICMD_SASTORE:
593 # if defined(ENABLE_INTRP)
594                                                                 if (!opt_intrp) {
595 # endif
596 #if SUPPORT_CONST_STORE_ZERO_ONLY
597                                                                         if (iptr[0].val.i == 0) {
598 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
599                                                                                 switch (iptr[1].opc) {
600                                                                                 case ICMD_IASTORE:
601                                                                                         iptr[0].opc = ICMD_IASTORECONST;
602                                                                                         break;
603                                                                                 case ICMD_BASTORE:
604                                                                                         iptr[0].opc = ICMD_BASTORECONST;
605                                                                                         break;
606                                                                                 case ICMD_CASTORE:
607                                                                                         iptr[0].opc = ICMD_CASTORECONST;
608                                                                                         break;
609                                                                                 case ICMD_SASTORE:
610                                                                                         iptr[0].opc = ICMD_SASTORECONST;
611                                                                                         break;
612                                                                                 }
613
614                                                                                 iptr[1].opc = ICMD_NOP;
615                                                                                 OPTT2_0(TYPE_INT, TYPE_ADR);
616                                                                                 COUNT(count_pcmd_op);
617 #if SUPPORT_CONST_STORE_ZERO_ONLY
618                                                                         } else
619                                                                                 PUSHCONST(TYPE_INT);
620 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
621 # if defined(ENABLE_INTRP)
622                                                                 } else
623                                                                         PUSHCONST(TYPE_INT);
624 # endif
625                                                                 break;
626
627                                                         case ICMD_PUTSTATIC:
628                                                         case ICMD_PUTFIELD:
629 #if SUPPORT_CONST_STORE_ZERO_ONLY
630                                                                 if (iptr[0].val.i == 0) {
631 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
632                                                                         switch (iptr[1].opc) {
633                                                                         case ICMD_PUTSTATIC:
634                                                                                 iptr[0].opc = ICMD_PUTSTATICCONST;
635                                                                                 SETDST;
636                                                                                 break;
637                                                                         case ICMD_PUTFIELD:
638                                                                                 iptr[0].opc = ICMD_PUTFIELDCONST;
639                                                                                 OP1_0(TYPE_ADR);
640                                                                                 break;
641                                                                         }
642
643                                                                         iptr[1].opc = ICMD_NOP;
644                                                                         iptr[0].op1 = TYPE_INT;
645                                                                         COUNT(count_pcmd_op);
646 #if SUPPORT_CONST_STORE_ZERO_ONLY
647                                                                 } else
648                                                                         PUSHCONST(TYPE_INT);
649 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
650                                                                 break;
651 #endif /* SUPPORT_CONST_STORE */
652                                                         default:
653                                                                 PUSHCONST(TYPE_INT);
654                                                         }
655                                                 }
656                                                 else
657                                                         PUSHCONST(TYPE_INT);
658                                                 break;
659
660                                         case ICMD_LCONST:
661                                                 COUNT(count_pcmd_load);
662                                                 if (len > 0) {
663                                                         switch (iptr[1].opc) {
664 #if SUPPORT_LONG_ADD
665                                                         case ICMD_LADD:
666                                                                 iptr[0].opc = ICMD_LADDCONST;
667                                                         icmd_lconst_tail:
668                                                                 iptr[1].opc = ICMD_NOP;
669                                                                 OP1_1(TYPE_LNG,TYPE_LNG);
670                                                                 COUNT(count_pcmd_op);
671                                                                 break;
672                                                         case ICMD_LSUB:
673                                                                 iptr[0].opc = ICMD_LSUBCONST;
674                                                                 goto icmd_lconst_tail;
675 #endif /* SUPPORT_LONG_ADD */
676 #if SUPPORT_LONG_MUL && SUPPORT_CONST_MUL
677                                                         case ICMD_LMUL:
678                                                                 iptr[0].opc = ICMD_LMULCONST;
679                                                                 goto icmd_lconst_tail;
680 #else /* SUPPORT_LONG_MUL && SUPPORT_CONST_MUL */
681 # if SUPPORT_LONG_SHIFT
682                                                         case ICMD_LMUL:
683                                                                 if (iptr[0].val.l == 0x00000002)
684                                                                         iptr[0].val.i = 1;
685                                                                 else if (iptr[0].val.l == 0x00000004)
686                                                                         iptr[0].val.i = 2;
687                                                                 else if (iptr[0].val.l == 0x00000008)
688                                                                         iptr[0].val.i = 3;
689                                                                 else if (iptr[0].val.l == 0x00000010)
690                                                                         iptr[0].val.i = 4;
691                                                                 else if (iptr[0].val.l == 0x00000020)
692                                                                         iptr[0].val.i = 5;
693                                                                 else if (iptr[0].val.l == 0x00000040)
694                                                                         iptr[0].val.i = 6;
695                                                                 else if (iptr[0].val.l == 0x00000080)
696                                                                         iptr[0].val.i = 7;
697                                                                 else if (iptr[0].val.l == 0x00000100)
698                                                                         iptr[0].val.i = 8;
699                                                                 else if (iptr[0].val.l == 0x00000200)
700                                                                         iptr[0].val.i = 9;
701                                                                 else if (iptr[0].val.l == 0x00000400)
702                                                                         iptr[0].val.i = 10;
703                                                                 else if (iptr[0].val.l == 0x00000800)
704                                                                         iptr[0].val.i = 11;
705                                                                 else if (iptr[0].val.l == 0x00001000)
706                                                                         iptr[0].val.i = 12;
707                                                                 else if (iptr[0].val.l == 0x00002000)
708                                                                         iptr[0].val.i = 13;
709                                                                 else if (iptr[0].val.l == 0x00004000)
710                                                                         iptr[0].val.i = 14;
711                                                                 else if (iptr[0].val.l == 0x00008000)
712                                                                         iptr[0].val.i = 15;
713                                                                 else if (iptr[0].val.l == 0x00010000)
714                                                                         iptr[0].val.i = 16;
715                                                                 else if (iptr[0].val.l == 0x00020000)
716                                                                         iptr[0].val.i = 17;
717                                                                 else if (iptr[0].val.l == 0x00040000)
718                                                                         iptr[0].val.i = 18;
719                                                                 else if (iptr[0].val.l == 0x00080000)
720                                                                         iptr[0].val.i = 19;
721                                                                 else if (iptr[0].val.l == 0x00100000)
722                                                                         iptr[0].val.i = 20;
723                                                                 else if (iptr[0].val.l == 0x00200000)
724                                                                         iptr[0].val.i = 21;
725                                                                 else if (iptr[0].val.l == 0x00400000)
726                                                                         iptr[0].val.i = 22;
727                                                                 else if (iptr[0].val.l == 0x00800000)
728                                                                         iptr[0].val.i = 23;
729                                                                 else if (iptr[0].val.l == 0x01000000)
730                                                                         iptr[0].val.i = 24;
731                                                                 else if (iptr[0].val.l == 0x02000000)
732                                                                         iptr[0].val.i = 25;
733                                                                 else if (iptr[0].val.l == 0x04000000)
734                                                                         iptr[0].val.i = 26;
735                                                                 else if (iptr[0].val.l == 0x08000000)
736                                                                         iptr[0].val.i = 27;
737                                                                 else if (iptr[0].val.l == 0x10000000)
738                                                                         iptr[0].val.i = 28;
739                                                                 else if (iptr[0].val.l == 0x20000000)
740                                                                         iptr[0].val.i = 29;
741                                                                 else if (iptr[0].val.l == 0x40000000)
742                                                                         iptr[0].val.i = 30;
743                                                                 else if (iptr[0].val.l == 0x80000000)
744                                                                         iptr[0].val.i = 31;
745                                                                 else {
746                                                                         PUSHCONST(TYPE_LNG);
747                                                                         break;
748                                                                 }
749                                                                 iptr[0].opc = ICMD_LMULPOW2;
750                                                                 goto icmd_lconst_tail;
751 # endif /* SUPPORT_LONG_SHIFT */
752 #endif /* SUPPORT_LONG_MUL && SUPPORT_CONST_MUL */
753 #if SUPPORT_LONG_DIV
754                                                         case ICMD_LDIV:
755                                                                 if (iptr[0].val.l == 0x00000002)
756                                                                         iptr[0].val.i = 1;
757                                                                 else if (iptr[0].val.l == 0x00000004)
758                                                                         iptr[0].val.i = 2;
759                                                                 else if (iptr[0].val.l == 0x00000008)
760                                                                         iptr[0].val.i = 3;
761                                                                 else if (iptr[0].val.l == 0x00000010)
762                                                                         iptr[0].val.i = 4;
763                                                                 else if (iptr[0].val.l == 0x00000020)
764                                                                         iptr[0].val.i = 5;
765                                                                 else if (iptr[0].val.l == 0x00000040)
766                                                                         iptr[0].val.i = 6;
767                                                                 else if (iptr[0].val.l == 0x00000080)
768                                                                         iptr[0].val.i = 7;
769                                                                 else if (iptr[0].val.l == 0x00000100)
770                                                                         iptr[0].val.i = 8;
771                                                                 else if (iptr[0].val.l == 0x00000200)
772                                                                         iptr[0].val.i = 9;
773                                                                 else if (iptr[0].val.l == 0x00000400)
774                                                                         iptr[0].val.i = 10;
775                                                                 else if (iptr[0].val.l == 0x00000800)
776                                                                         iptr[0].val.i = 11;
777                                                                 else if (iptr[0].val.l == 0x00001000)
778                                                                         iptr[0].val.i = 12;
779                                                                 else if (iptr[0].val.l == 0x00002000)
780                                                                         iptr[0].val.i = 13;
781                                                                 else if (iptr[0].val.l == 0x00004000)
782                                                                         iptr[0].val.i = 14;
783                                                                 else if (iptr[0].val.l == 0x00008000)
784                                                                         iptr[0].val.i = 15;
785                                                                 else if (iptr[0].val.l == 0x00010000)
786                                                                         iptr[0].val.i = 16;
787                                                                 else if (iptr[0].val.l == 0x00020000)
788                                                                         iptr[0].val.i = 17;
789                                                                 else if (iptr[0].val.l == 0x00040000)
790                                                                         iptr[0].val.i = 18;
791                                                                 else if (iptr[0].val.l == 0x00080000)
792                                                                         iptr[0].val.i = 19;
793                                                                 else if (iptr[0].val.l == 0x00100000)
794                                                                         iptr[0].val.i = 20;
795                                                                 else if (iptr[0].val.l == 0x00200000)
796                                                                         iptr[0].val.i = 21;
797                                                                 else if (iptr[0].val.l == 0x00400000)
798                                                                         iptr[0].val.i = 22;
799                                                                 else if (iptr[0].val.l == 0x00800000)
800                                                                         iptr[0].val.i = 23;
801                                                                 else if (iptr[0].val.l == 0x01000000)
802                                                                         iptr[0].val.i = 24;
803                                                                 else if (iptr[0].val.l == 0x02000000)
804                                                                         iptr[0].val.i = 25;
805                                                                 else if (iptr[0].val.l == 0x04000000)
806                                                                         iptr[0].val.i = 26;
807                                                                 else if (iptr[0].val.l == 0x08000000)
808                                                                         iptr[0].val.i = 27;
809                                                                 else if (iptr[0].val.l == 0x10000000)
810                                                                         iptr[0].val.i = 28;
811                                                                 else if (iptr[0].val.l == 0x20000000)
812                                                                         iptr[0].val.i = 29;
813                                                                 else if (iptr[0].val.l == 0x40000000)
814                                                                         iptr[0].val.i = 30;
815                                                                 else if (iptr[0].val.l == 0x80000000)
816                                                                         iptr[0].val.i = 31;
817                                                                 else {
818                                                                         PUSHCONST(TYPE_LNG);
819                                                                         break;
820                                                                 }
821                                                                 iptr[0].opc = ICMD_LDIVPOW2;
822                                                                 goto icmd_lconst_tail;
823                                                         case ICMD_LREM:
824                                                                 if ((iptr[0].val.l == 0x00000002) ||
825                                                                         (iptr[0].val.l == 0x00000004) ||
826                                                                         (iptr[0].val.l == 0x00000008) ||
827                                                                         (iptr[0].val.l == 0x00000010) ||
828                                                                         (iptr[0].val.l == 0x00000020) ||
829                                                                         (iptr[0].val.l == 0x00000040) ||
830                                                                         (iptr[0].val.l == 0x00000080) ||
831                                                                         (iptr[0].val.l == 0x00000100) ||
832                                                                         (iptr[0].val.l == 0x00000200) ||
833                                                                         (iptr[0].val.l == 0x00000400) ||
834                                                                         (iptr[0].val.l == 0x00000800) ||
835                                                                         (iptr[0].val.l == 0x00001000) ||
836                                                                         (iptr[0].val.l == 0x00002000) ||
837                                                                         (iptr[0].val.l == 0x00004000) ||
838                                                                         (iptr[0].val.l == 0x00008000) ||
839                                                                         (iptr[0].val.l == 0x00010000) ||
840                                                                         (iptr[0].val.l == 0x00020000) ||
841                                                                         (iptr[0].val.l == 0x00040000) ||
842                                                                         (iptr[0].val.l == 0x00080000) ||
843                                                                         (iptr[0].val.l == 0x00100000) ||
844                                                                         (iptr[0].val.l == 0x00200000) ||
845                                                                         (iptr[0].val.l == 0x00400000) ||
846                                                                         (iptr[0].val.l == 0x00800000) ||
847                                                                         (iptr[0].val.l == 0x01000000) ||
848                                                                         (iptr[0].val.l == 0x02000000) ||
849                                                                         (iptr[0].val.l == 0x04000000) ||
850                                                                         (iptr[0].val.l == 0x08000000) ||
851                                                                         (iptr[0].val.l == 0x10000000) ||
852                                                                         (iptr[0].val.l == 0x20000000) ||
853                                                                         (iptr[0].val.l == 0x40000000) ||
854                                                                         (iptr[0].val.l == 0x80000000)) {
855                                                                         iptr[0].opc = ICMD_LREMPOW2;
856                                                                         iptr[0].val.l -= 1;
857                                                                         goto icmd_lconst_tail;
858                                                                 }
859                                                                 PUSHCONST(TYPE_LNG);
860                                                                 break;
861 #endif /* SUPPORT_LONG_DIV */
862 #if SUPPORT_LONG_LOGICAL && SUPPORT_CONST_LOGICAL
863
864                                                         case ICMD_LAND:
865                                                                 iptr[0].opc = ICMD_LANDCONST;
866                                                                 goto icmd_lconst_tail;
867                                                         case ICMD_LOR:
868                                                                 iptr[0].opc = ICMD_LORCONST;
869                                                                 goto icmd_lconst_tail;
870                                                         case ICMD_LXOR:
871                                                                 iptr[0].opc = ICMD_LXORCONST;
872                                                                 goto icmd_lconst_tail;
873 #endif /* SUPPORT_LONG_LOGICAL && SUPPORT_CONST_LOGICAL */
874
875 #if SUPPORT_LONG_CMP_CONST
876                                                         case ICMD_LCMP:
877                                                                 if ((len > 1) && (iptr[2].val.i == 0)) {
878                                                                         switch (iptr[2].opc) {
879                                                                         case ICMD_IFEQ:
880                                                                                 iptr[0].opc = ICMD_IF_LEQ;
881                                                                         icmd_lconst_lcmp_tail:
882                                                                                 iptr[0].op1 = iptr[2].op1;
883                                                                                 bptr->icount -= 2;
884                                                                                 len -= 2;
885                                                                                 /* iptr[1].opc = ICMD_NOP;
886                                                                                    iptr[2].opc = ICMD_NOP; */
887                                                                                 OP1_0(TYPE_LNG);
888                                                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
889
890                                                                                 iptr[0].target = (void *) tbptr;
891
892                                                                                 MARKREACHED(tbptr, copy);
893                                                                                 COUNT(count_pcmd_bra);
894                                                                                 COUNT(count_pcmd_op);
895                                                                                 break;
896                                                                         case ICMD_IFNE:
897                                                                                 iptr[0].opc = ICMD_IF_LNE;
898                                                                                 goto icmd_lconst_lcmp_tail;
899                                                                         case ICMD_IFLT:
900                                                                                 iptr[0].opc = ICMD_IF_LLT;
901                                                                                 goto icmd_lconst_lcmp_tail;
902                                                                         case ICMD_IFGT:
903                                                                                 iptr[0].opc = ICMD_IF_LGT;
904                                                                                 goto icmd_lconst_lcmp_tail;
905                                                                         case ICMD_IFLE:
906                                                                                 iptr[0].opc = ICMD_IF_LLE;
907                                                                                 goto icmd_lconst_lcmp_tail;
908                                                                         case ICMD_IFGE:
909                                                                                 iptr[0].opc = ICMD_IF_LGE;
910                                                                                 goto icmd_lconst_lcmp_tail;
911                                                                         default:
912                                                                                 PUSHCONST(TYPE_LNG);
913                                                                         } /* switch (iptr[2].opc) */
914                                                                 } /* if (iptr[2].val.i == 0) */
915                                                                 else
916                                                                         PUSHCONST(TYPE_LNG);
917                                                                 break;
918 #endif /* SUPPORT_LONG_CMP_CONST */
919
920 #if SUPPORT_CONST_STORE
921                                                         case ICMD_LASTORE:
922 # if defined(ENABLE_INTRP)
923                                                                 if (!opt_intrp) {
924 # endif
925 #if SUPPORT_CONST_STORE_ZERO_ONLY
926                                                                         if (iptr[0].val.l == 0) {
927 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
928                                                                                 iptr[0].opc = ICMD_LASTORECONST;
929                                                                                 iptr[1].opc = ICMD_NOP;
930                                                                                 OPTT2_0(TYPE_INT, TYPE_ADR);
931                                                                                 COUNT(count_pcmd_op);
932 #if SUPPORT_CONST_STORE_ZERO_ONLY
933                                                                         } else
934                                                                                 PUSHCONST(TYPE_LNG);
935 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
936 # if defined(ENABLE_INTRP)
937                                                                 } else
938                                                                         PUSHCONST(TYPE_LNG);
939 # endif
940                                                                 break;
941
942                                                         case ICMD_PUTSTATIC:
943                                                         case ICMD_PUTFIELD:
944 #if SUPPORT_CONST_STORE_ZERO_ONLY
945                                                                 if (iptr[0].val.l == 0) {
946 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
947                                                                         switch (iptr[1].opc) {
948                                                                         case ICMD_PUTSTATIC:
949                                                                                 iptr[0].opc = ICMD_PUTSTATICCONST;
950                                                                                 SETDST;
951                                                                                 break;
952                                                                         case ICMD_PUTFIELD:
953                                                                                 iptr[0].opc = ICMD_PUTFIELDCONST;
954                                                                                 OP1_0(TYPE_ADR);
955                                                                                 break;
956                                                                         }
957
958                                                                         iptr[1].opc = ICMD_NOP;
959                                                                         iptr[0].op1 = TYPE_LNG;
960                                                                         COUNT(count_pcmd_op);
961 #if SUPPORT_CONST_STORE_ZERO_ONLY
962                                                                 } else
963                                                                         PUSHCONST(TYPE_LNG);
964 #endif /* SUPPORT_CONST_STORE_ZERO_ONLY */
965                                                                 break;
966 #endif /* SUPPORT_CONST_STORE */
967                                                         default:
968                                                                 PUSHCONST(TYPE_LNG);
969                                                         }
970                                                 }
971                                                 else
972                                                         PUSHCONST(TYPE_LNG);
973                                                 break;
974
975                                         case ICMD_FCONST:
976                                                 COUNT(count_pcmd_load);
977                                                 PUSHCONST(TYPE_FLT);
978                                                 break;
979
980                                         case ICMD_DCONST:
981                                                 COUNT(count_pcmd_load);
982                                                 PUSHCONST(TYPE_DBL);
983                                                 break;
984
985                                         case ICMD_ACONST:
986                                                 COUNT(count_pcmd_load);
987 #if SUPPORT_CONST_STORE
988                                                 if (len > 0 && iptr->val.a == 0) {
989                                                         switch (iptr[1].opc) {
990 #if !defined(__POWERPC__) && !defined(__X86_64__) && !defined(__I386__) && !defined(__ALPHA__) && !defined(__MIPS__)
991                                                         case ICMD_BUILTIN:
992                                                                 if (iptr[1].val.fp != BUILTIN_aastore) {
993                                                                         PUSHCONST(TYPE_ADR);
994                                                                         break;
995                                                                 }
996                                                                 /* fall through */
997 #endif
998                                                         case ICMD_PUTSTATIC:
999                                                         case ICMD_PUTFIELD:
1000                                                                 switch (iptr[1].opc) {
1001                                                                 case ICMD_BUILTIN:
1002                                                                         iptr[0].opc = ICMD_AASTORECONST;
1003                                                                         OPTT2_0(TYPE_INT, TYPE_ADR);
1004                                                                         break;
1005                                                                 case ICMD_PUTSTATIC:
1006                                                                         iptr[0].opc = ICMD_PUTSTATICCONST;
1007                                                                         iptr[0].op1 = TYPE_ADR;
1008                                                                         SETDST;
1009                                                                         break;
1010                                                                 case ICMD_PUTFIELD:
1011                                                                         iptr[0].opc = ICMD_PUTFIELDCONST;
1012                                                                         iptr[0].op1 = TYPE_ADR;
1013                                                                         OP1_0(TYPE_ADR);
1014                                                                         break;
1015                                                                 }
1016
1017                                                                 iptr[1].opc = ICMD_NOP;
1018                                                                 COUNT(count_pcmd_op);
1019                                                                 break;
1020
1021                                                         default:
1022                                                                 PUSHCONST(TYPE_ADR);
1023                                                         }
1024                                                 } else
1025 #endif /* SUPPORT_CONST_STORE */
1026                                                         PUSHCONST(TYPE_ADR);
1027                                                 break;
1028
1029                                                 /* pop 0 push 1 load */
1030                                                 
1031                                         case ICMD_ILOAD:
1032                                         case ICMD_LLOAD:
1033                                         case ICMD_FLOAD:
1034                                         case ICMD_DLOAD:
1035                                         case ICMD_ALOAD:
1036                                                 COUNT(count_load_instruction);
1037                                                 i = opcode - ICMD_ILOAD;
1038                                                 iptr->op1 = argren[iptr->op1];
1039 #if defined(ENABLE_INTRP)
1040                                                 if (!opt_intrp)
1041 #endif
1042                                                         rd->locals[iptr->op1][i].type = i;
1043                                                 LOAD(i, LOCALVAR, iptr->op1);
1044                                                 break;
1045
1046                                                 /* pop 2 push 1 */
1047
1048                                         case ICMD_LALOAD:
1049                                         case ICMD_IALOAD:
1050                                         case ICMD_FALOAD:
1051                                         case ICMD_DALOAD:
1052                                         case ICMD_AALOAD:
1053                                                 COUNT(count_check_null);
1054                                                 COUNT(count_check_bound);
1055                                                 COUNT(count_pcmd_mem);
1056                                                 OP2IAT_1(opcode - ICMD_IALOAD);
1057                                                 break;
1058
1059                                         case ICMD_BALOAD:
1060                                         case ICMD_CALOAD:
1061                                         case ICMD_SALOAD:
1062                                                 COUNT(count_check_null);
1063                                                 COUNT(count_check_bound);
1064                                                 COUNT(count_pcmd_mem);
1065                                                 OP2IAT_1(TYPE_INT);
1066                                                 break;
1067
1068                                                 /* pop 0 push 0 iinc */
1069
1070                                         case ICMD_IINC:
1071 #if defined(STATISTICS)
1072                                                 if (opt_stat) {
1073                                                         i = stackdepth;
1074                                                         if (i >= 10)
1075                                                                 count_store_depth[10]++;
1076                                                         else
1077                                                                 count_store_depth[i]++;
1078                                                 }
1079 #endif
1080                                                 copy = curstack;
1081                                                 i = stackdepth - 1;
1082                                                 while (copy) {
1083                                                         if ((copy->varkind == LOCALVAR) &&
1084                                                                 (copy->varnum == iptr->op1)) {
1085                                                                 copy->varkind = TEMPVAR;
1086                                                                 copy->varnum = i;
1087                                                         }
1088                                                         i--;
1089                                                         copy = copy->prev;
1090                                                 }
1091
1092                                                 /* allocate a dummy stack slot to keep ISTORE from */
1093                                                 /* marking its input stack as a LOCALVAR, since we */
1094                                                 /* change the value of the local variable here.    */
1095                                                 NEWSTACK0(TYPE_INT);
1096                                                 POP(TYPE_INT);
1097                                                 
1098                                                 SETDST;
1099                                                 break;
1100
1101                                                 /* pop 1 push 0 store */
1102
1103                                         case ICMD_ISTORE:
1104                                         case ICMD_LSTORE:
1105                                         case ICMD_FSTORE:
1106                                         case ICMD_DSTORE:
1107                                         case ICMD_ASTORE:
1108                                         icmd_store:
1109                                                 REQUIRE_1;
1110
1111                                         i = opcode - ICMD_ISTORE;
1112 #if defined(ENABLE_INTRP)
1113                                                 if (!opt_intrp)
1114 #endif
1115                                                         rd->locals[iptr->op1][i].type = i;
1116 #if defined(STATISTICS)
1117                                         if (opt_stat) {
1118                                                 count_pcmd_store++;
1119                                                 i = new - curstack;
1120                                                 if (i >= 20)
1121                                                         count_store_length[20]++;
1122                                                 else
1123                                                         count_store_length[i]++;
1124                                                 i = stackdepth - 1;
1125                                                 if (i >= 10)
1126                                                         count_store_depth[10]++;
1127                                                 else
1128                                                         count_store_depth[i]++;
1129                                         }
1130 #endif
1131                                         copy = curstack->prev;
1132                                         i = stackdepth - 2;
1133                                         while (copy) {
1134                                                 if ((copy->varkind == LOCALVAR) &&
1135                                                         (copy->varnum == iptr->op1)) {
1136                                                         copy->varkind = TEMPVAR;
1137                                                         copy->varnum = i;
1138                                                 }
1139                                                 i--;
1140                                                 copy = copy->prev;
1141                                         }
1142                                         if ((new - curstack) == 1) {
1143                                                 curstack->varkind = LOCALVAR;
1144                                                 curstack->varnum = iptr->op1;
1145                                         };
1146                                         STORE(opcode - ICMD_ISTORE);
1147                                         break;
1148
1149                                         /* pop 3 push 0 */
1150
1151                                         case ICMD_AASTORE:
1152                                                 COUNT(count_check_null);
1153                                                 COUNT(count_check_bound);
1154                                                 COUNT(count_pcmd_mem);
1155
1156                                                 bte = builtintable_get_internal(BUILTIN_canstore);
1157                                                 md = bte->md;
1158
1159                                                 if (md->memuse > rd->memuse)
1160                                                         rd->memuse = md->memuse;
1161                                                 if (md->argintreguse > rd->argintreguse)
1162                                                         rd->argintreguse = md->argintreguse;
1163
1164                                                 /* make all stack variables saved */
1165
1166                                                 copy = curstack;
1167                                                 while (copy) {
1168                                                         copy->flags |= SAVEDVAR;
1169                                                         copy = copy->prev;
1170                                                 }
1171
1172                                                 OP3TIA_0(TYPE_ADR);
1173                                                 break;
1174
1175                                         case ICMD_IASTORE:
1176                                         case ICMD_LASTORE:
1177                                         case ICMD_FASTORE:
1178                                         case ICMD_DASTORE:
1179                                                 COUNT(count_check_null);
1180                                                 COUNT(count_check_bound);
1181                                                 COUNT(count_pcmd_mem);
1182                                                 OP3TIA_0(opcode - ICMD_IASTORE);
1183                                                 break;
1184
1185                                         case ICMD_BASTORE:
1186                                         case ICMD_CASTORE:
1187                                         case ICMD_SASTORE:
1188                                                 COUNT(count_check_null);
1189                                                 COUNT(count_check_bound);
1190                                                 COUNT(count_pcmd_mem);
1191                                                 OP3TIA_0(TYPE_INT);
1192                                                 break;
1193
1194                                                 /* pop 1 push 0 */
1195
1196                                         case ICMD_POP:
1197 #ifdef TYPECHECK_STACK_COMPCAT
1198                                                 if (opt_verify) {
1199                                                         REQUIRE_1;
1200                                                         if (IS_2_WORD_TYPE(curstack->type)) {
1201                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1202                                                                 return NULL;
1203                                                         }
1204                                                 }
1205 #endif
1206                                                 OP1_0ANY;
1207                                                 break;
1208
1209                                         case ICMD_IRETURN:
1210                                         case ICMD_LRETURN:
1211                                         case ICMD_FRETURN:
1212                                         case ICMD_DRETURN:
1213                                         case ICMD_ARETURN:
1214                                                 md_return_alloc(m, rd, opcode - ICMD_IRETURN, curstack);
1215                                                 COUNT(count_pcmd_return);
1216                                                 OP1_0(opcode - ICMD_IRETURN);
1217                                                 superblockend = true;
1218                                                 break;
1219
1220                                         case ICMD_ATHROW:
1221                                                 COUNT(count_check_null);
1222                                                 OP1_0(TYPE_ADR);
1223                                                 STACKRESET;
1224                                                 SETDST;
1225                                                 superblockend = true;
1226                                                 break;
1227
1228                                         case ICMD_PUTSTATIC:
1229                                                 COUNT(count_pcmd_mem);
1230                                                 OP1_0(iptr->op1);
1231                                                 break;
1232
1233                                                 /* pop 1 push 0 branch */
1234
1235                                         case ICMD_IFNULL:
1236                                         case ICMD_IFNONNULL:
1237                                                 COUNT(count_pcmd_bra);
1238                                                 OP1_0(TYPE_ADR);
1239                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1240
1241                                                 iptr[0].target = (void *) tbptr;
1242
1243                                                 MARKREACHED(tbptr, copy);
1244                                                 break;
1245
1246                                         case ICMD_IFEQ:
1247                                         case ICMD_IFNE:
1248                                         case ICMD_IFLT:
1249                                         case ICMD_IFGE:
1250                                         case ICMD_IFGT:
1251                                         case ICMD_IFLE:
1252                                                 COUNT(count_pcmd_bra);
1253 #if CONDITIONAL_LOADCONST
1254 # if defined(ENABLE_INTRP)
1255                                                 if (!opt_intrp) {
1256 # endif
1257                                                         tbptr = m->basicblocks + b_index;
1258                                                         if ((b_count >= 3) &&
1259                                                                 ((b_index + 2) == m->basicblockindex[iptr[0].op1]) &&
1260                                                                 (tbptr[1].pre_count == 1) &&
1261                                                                 (tbptr[1].iinstr[0].opc == ICMD_ICONST) &&
1262                                                                 (tbptr[1].iinstr[1].opc == ICMD_GOTO)   &&
1263                                                                 ((b_index + 3) == m->basicblockindex[tbptr[1].iinstr[1].op1]) &&
1264                                                                 (tbptr[2].pre_count == 1) &&
1265                                                                 (tbptr[2].iinstr[0].opc == ICMD_ICONST)  &&
1266                                                                 (tbptr[2].icount==1)) {
1267                                                                 /*printf("tbptr[2].icount=%d\n",tbptr[2].icount);*/
1268                                                                 OP1_1(TYPE_INT, TYPE_INT);
1269                                                                 switch (iptr[0].opc) {
1270                                                                 case ICMD_IFEQ:
1271                                                                         iptr[0].opc = ICMD_IFNE_ICONST;
1272                                                                         break;
1273                                                                 case ICMD_IFNE:
1274                                                                         iptr[0].opc = ICMD_IFEQ_ICONST;
1275                                                                         break;
1276                                                                 case ICMD_IFLT:
1277                                                                         iptr[0].opc = ICMD_IFGE_ICONST;
1278                                                                         break;
1279                                                                 case ICMD_IFGE:
1280                                                                         iptr[0].opc = ICMD_IFLT_ICONST;
1281                                                                         break;
1282                                                                 case ICMD_IFGT:
1283                                                                         iptr[0].opc = ICMD_IFLE_ICONST;
1284                                                                         break;
1285                                                                 case ICMD_IFLE:
1286                                                                         iptr[0].opc = ICMD_IFGT_ICONST;
1287                                                                         break;
1288                                                                 }
1289 #if 1
1290                                                                 iptr[0].val.i = iptr[1].val.i;
1291                                                                 iptr[1].opc = ICMD_ELSE_ICONST;
1292                                                                 iptr[1].val.i = iptr[3].val.i;
1293                                                                 iptr[2].opc = ICMD_NOP;
1294                                                                 iptr[3].opc = ICMD_NOP;
1295 #else
1296                                                                 /* HACK: save compare value in iptr[1].op1 */    
1297                                                                 iptr[1].op1 = iptr[0].val.i;     
1298                                                                 iptr[0].val.i = tbptr[1].iinstr[0].val.i;        
1299                                                                 iptr[1].opc = ICMD_ELSE_ICONST;          
1300                                                                 iptr[1].val.i = tbptr[2].iinstr[0].val.i;        
1301                                                                 tbptr[1].iinstr[0].opc = ICMD_NOP;       
1302                                                                 tbptr[1].iinstr[1].opc = ICMD_NOP;       
1303                                                                 tbptr[2].iinstr[0].opc = ICMD_NOP;       
1304 #endif
1305                                                                 tbptr[1].flags = BBDELETED;
1306                                                                 tbptr[2].flags = BBDELETED;
1307                                                                 tbptr[1].icount = 0;
1308                                                                 tbptr[2].icount = 0;
1309                                                                 if (tbptr[3].pre_count == 2) {
1310                                                                         len += tbptr[3].icount + 3;
1311                                                                         bptr->icount += tbptr[3].icount + 3;
1312                                                                         tbptr[3].flags = BBDELETED;
1313                                                                         tbptr[3].icount = 0;
1314                                                                         b_index++;
1315                                                                 }
1316                                                                 else {
1317                                                                         bptr->icount++;
1318                                                                         len ++;
1319                                                                 }
1320                                                                 b_index += 2;
1321                                                                 break;
1322                                                         }
1323 # if defined(ENABLE_INTRP)
1324                                                 }
1325 # endif
1326
1327 #endif /* CONDITIONAL_LOADCONST */
1328
1329                                                 OP1_0(TYPE_INT);
1330                                                 iptr->val.i = 0;
1331                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1332
1333                                                 iptr[0].target = (void *) tbptr;
1334
1335                                                 MARKREACHED(tbptr, copy);
1336                                                 break;
1337
1338                                                 /* pop 0 push 0 branch */
1339
1340                                         case ICMD_GOTO:
1341                                                 COUNT(count_pcmd_bra);
1342                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1343
1344                                                 iptr[0].target = (void *) tbptr;
1345
1346                                                 MARKREACHED(tbptr, copy);
1347                                                 SETDST;
1348                                                 superblockend = true;
1349                                                 break;
1350
1351                                                 /* pop 1 push 0 table branch */
1352
1353                                         case ICMD_TABLESWITCH:
1354                                                 COUNT(count_pcmd_table);
1355                                                 OP1_0(TYPE_INT);
1356                                                 s4ptr = iptr->val.a;
1357                                                 tbptr = m->basicblocks + m->basicblockindex[*s4ptr++];
1358                                                 MARKREACHED(tbptr, copy);
1359                                                 i = *s4ptr++;                          /* low     */
1360                                                 i = *s4ptr++ - i + 1;                  /* high    */
1361
1362                                                 tptr = DMNEW(void*, i+1);
1363                                                 iptr->target = (void *) tptr;
1364
1365                                                 tptr[0] = (void *) tbptr;
1366                                                 tptr++;
1367
1368                                                 while (--i >= 0) {
1369                                                         tbptr = m->basicblocks + m->basicblockindex[*s4ptr++];
1370
1371                                                         tptr[0] = (void *) tbptr;
1372                                                         tptr++;
1373
1374                                                         MARKREACHED(tbptr, copy);
1375                                                 }
1376                                                 SETDST;
1377                                                 superblockend = true;
1378                                                 break;
1379                                                         
1380                                                 /* pop 1 push 0 table branch */
1381
1382                                         case ICMD_LOOKUPSWITCH:
1383                                                 COUNT(count_pcmd_table);
1384                                                 OP1_0(TYPE_INT);
1385                                                 s4ptr = iptr->val.a;
1386                                                 tbptr = m->basicblocks + m->basicblockindex[*s4ptr++];
1387                                                 MARKREACHED(tbptr, copy);
1388                                                 i = *s4ptr++;                          /* count   */
1389
1390                                                 tptr = DMNEW(void*, i+1);
1391                                                 iptr->target = (void *) tptr;
1392
1393                                                 tptr[0] = (void *) tbptr;
1394                                                 tptr++;
1395
1396                                                 while (--i >= 0) {
1397                                                         tbptr = m->basicblocks + m->basicblockindex[s4ptr[1]];
1398
1399                                                         tptr[0] = (void *) tbptr;
1400                                                         tptr++;
1401                                                                 
1402                                                         MARKREACHED(tbptr, copy);
1403                                                         s4ptr += 2;
1404                                                 }
1405                                                 SETDST;
1406                                                 superblockend = true;
1407                                                 break;
1408
1409                                         case ICMD_MONITORENTER:
1410                                                 COUNT(count_check_null);
1411                                         case ICMD_MONITOREXIT:
1412                                                 OP1_0(TYPE_ADR);
1413                                                 break;
1414
1415                                                 /* pop 2 push 0 branch */
1416
1417                                         case ICMD_IF_ICMPEQ:
1418                                         case ICMD_IF_ICMPNE:
1419                                         case ICMD_IF_ICMPLT:
1420                                         case ICMD_IF_ICMPGE:
1421                                         case ICMD_IF_ICMPGT:
1422                                         case ICMD_IF_ICMPLE:
1423                                                 COUNT(count_pcmd_bra);
1424                                                 OP2_0(TYPE_INT);
1425                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1426                                                         
1427                                                 iptr[0].target = (void *) tbptr;
1428
1429                                                 MARKREACHED(tbptr, copy);
1430                                                 break;
1431
1432                                         case ICMD_IF_ACMPEQ:
1433                                         case ICMD_IF_ACMPNE:
1434                                                 COUNT(count_pcmd_bra);
1435                                                 OP2_0(TYPE_ADR);
1436                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1437
1438                                                 iptr[0].target = (void *) tbptr;
1439
1440                                                 MARKREACHED(tbptr, copy);
1441                                                 break;
1442
1443                                                 /* pop 2 push 0 */
1444
1445                                         case ICMD_PUTFIELD:
1446                                                 COUNT(count_check_null);
1447                                                 COUNT(count_pcmd_mem);
1448                                                 OPTT2_0(iptr->op1,TYPE_ADR);
1449                                                 break;
1450
1451                                         case ICMD_POP2:
1452                                                 REQUIRE_1;
1453                                                 if (!IS_2_WORD_TYPE(curstack->type)) {
1454                                                         /* ..., cat1 */
1455 #ifdef TYPECHECK_STACK_COMPCAT
1456                                                         if (opt_verify) {
1457                                                                 REQUIRE_2;
1458                                                                 if (IS_2_WORD_TYPE(curstack->prev->type)) {
1459                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1460                                                                         return NULL;
1461                                                                 }
1462                                                         }
1463 #endif
1464                                                         OP1_0ANY;                /* second pop */
1465                                                 }
1466                                                 else
1467                                                         iptr->opc = ICMD_POP;
1468                                                 OP1_0ANY;
1469                                                 break;
1470
1471                                                 /* pop 0 push 1 dup */
1472                                                 
1473                                         case ICMD_DUP:
1474 #ifdef TYPECHECK_STACK_COMPCAT
1475                                                 if (opt_verify) {
1476                                                         REQUIRE_1;
1477                                                         if (IS_2_WORD_TYPE(curstack->type)) {
1478                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1479                                                                 return NULL;
1480                                                         }
1481                                                 }
1482 #endif
1483                                                 COUNT(count_dup_instruction);
1484                                                 DUP;
1485                                                 break;
1486
1487                                         case ICMD_DUP2:
1488                                                 REQUIRE_1;
1489                                                 if (IS_2_WORD_TYPE(curstack->type)) {
1490                                                         /* ..., cat2 */
1491                                                         iptr->opc = ICMD_DUP;
1492                                                         DUP;
1493                                                 }
1494                                                 else {
1495                                                         REQUIRE_2;
1496                                                         /* ..., ????, cat1 */
1497 #ifdef TYPECHECK_STACK_COMPCAT
1498                                                         if (opt_verify) {
1499                                                                 if (IS_2_WORD_TYPE(curstack->prev->type)) {
1500                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1501                                                                         return NULL;
1502                                                                 }
1503                                                         }
1504 #endif
1505                                                         copy = curstack;
1506                                                         NEWSTACK(copy->prev->type, copy->prev->varkind,
1507                                                                          copy->prev->varnum);
1508                                                         NEWSTACK(copy->type, copy->varkind,
1509                                                                          copy->varnum);
1510                                                         SETDST;
1511                                                         stackdepth += 2;
1512                                                 }
1513                                                 break;
1514
1515                                                 /* pop 2 push 3 dup */
1516                                                 
1517                                         case ICMD_DUP_X1:
1518 #ifdef TYPECHECK_STACK_COMPCAT
1519                                                 if (opt_verify) {
1520                                                         REQUIRE_2;
1521                                                         if (IS_2_WORD_TYPE(curstack->type) ||
1522                                                                 IS_2_WORD_TYPE(curstack->prev->type)) {
1523                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1524                                                                         return NULL;
1525                                                         }
1526                                                 }
1527 #endif
1528                                                 DUP_X1;
1529                                                 break;
1530
1531                                         case ICMD_DUP2_X1:
1532                                                 REQUIRE_2;
1533                                                 if (IS_2_WORD_TYPE(curstack->type)) {
1534                                                         /* ..., ????, cat2 */
1535 #ifdef TYPECHECK_STACK_COMPCAT
1536                                                         if (opt_verify) {
1537                                                                 if (IS_2_WORD_TYPE(curstack->prev->type)) {
1538                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1539                                                                         return NULL;
1540                                                                 }
1541                                                         }
1542 #endif
1543                                                         iptr->opc = ICMD_DUP_X1;
1544                                                         DUP_X1;
1545                                                 }
1546                                                 else {
1547                                                         /* ..., ????, cat1 */
1548 #ifdef TYPECHECK_STACK_COMPCAT
1549                                                         if (opt_verify) {
1550                                                                 REQUIRE_3;
1551                                                                 if (IS_2_WORD_TYPE(curstack->prev->type)
1552                                                                         || IS_2_WORD_TYPE(curstack->prev->prev->type)) {
1553                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1554                                                                         return NULL;
1555                                                                 }
1556                                                         }
1557 #endif
1558                                                         DUP2_X1;
1559                                                 }
1560                                                 break;
1561
1562                                                 /* pop 3 push 4 dup */
1563                                                 
1564                                         case ICMD_DUP_X2:
1565                                                 REQUIRE_2;
1566                                                 if (IS_2_WORD_TYPE(curstack->prev->type)) {
1567                                                         /* ..., cat2, ???? */
1568 #ifdef TYPECHECK_STACK_COMPCAT
1569                                                         if (opt_verify) {
1570                                                                 if (IS_2_WORD_TYPE(curstack->type)) {
1571                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1572                                                                         return NULL;
1573                                                                 }
1574                                                         }
1575 #endif
1576                                                         iptr->opc = ICMD_DUP_X1;
1577                                                         DUP_X1;
1578                                                 }
1579                                                 else {
1580                                                         /* ..., cat1, ???? */
1581 #ifdef TYPECHECK_STACK_COMPCAT
1582                                                         if (opt_verify) {
1583                                                                 REQUIRE_3;
1584                                                                 if (IS_2_WORD_TYPE(curstack->type)
1585                                                                         || IS_2_WORD_TYPE(curstack->prev->prev->type)) {
1586                                                                         *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1587                                                                         return NULL;
1588                                                                 }
1589                                                         }
1590 #endif
1591                                                         DUP_X2;
1592                                                 }
1593                                                 break;
1594
1595                                         case ICMD_DUP2_X2:
1596                                                 REQUIRE_2;
1597                                                 if (IS_2_WORD_TYPE(curstack->type)) {
1598                                                         /* ..., ????, cat2 */
1599                                                         if (IS_2_WORD_TYPE(curstack->prev->type)) {
1600                                                                 /* ..., cat2, cat2 */
1601                                                                 iptr->opc = ICMD_DUP_X1;
1602                                                                 DUP_X1;
1603                                                         }
1604                                                         else {
1605                                                                 /* ..., cat1, cat2 */
1606 #ifdef TYPECHECK_STACK_COMPCAT
1607                                                                 if (opt_verify) {
1608                                                                         REQUIRE_3;
1609                                                                         if (IS_2_WORD_TYPE(curstack->prev->prev->type)) {
1610                                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1611                                                                                 return NULL;
1612                                                                         }
1613                                                                 }
1614 #endif
1615                                                                 iptr->opc = ICMD_DUP_X2;
1616                                                                 DUP_X2;
1617                                                         }
1618                                                 }
1619                                                 else {
1620                                                         REQUIRE_3;
1621                                                         /* ..., ????, ????, cat1 */
1622                                                         if (IS_2_WORD_TYPE(curstack->prev->prev->type)) {
1623                                                                 /* ..., cat2, ????, cat1 */
1624 #ifdef TYPECHECK_STACK_COMPCAT
1625                                                                 if (opt_verify) {
1626                                                                         if (IS_2_WORD_TYPE(curstack->prev->type)) {
1627                                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1628                                                                                 return NULL;
1629                                                                         }
1630                                                                 }
1631 #endif
1632                                                                 iptr->opc = ICMD_DUP2_X1;
1633                                                                 DUP2_X1;
1634                                                         }
1635                                                         else {
1636                                                                 /* ..., cat1, ????, cat1 */
1637 #ifdef TYPECHECK_STACK_COMPCAT
1638                                                                 if (opt_verify) {
1639                                                                         REQUIRE_4;
1640                                                                         if (IS_2_WORD_TYPE(curstack->prev->type)
1641                                                                                 || IS_2_WORD_TYPE(curstack->prev->prev->prev->type)) {
1642                                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1643                                                                                 return NULL;
1644                                                                         }
1645                                                                 }
1646 #endif
1647                                                                 DUP2_X2;
1648                                                         }
1649                                                 }
1650                                                 break;
1651
1652                                                 /* pop 2 push 2 swap */
1653                                                 
1654                                         case ICMD_SWAP:
1655 #ifdef TYPECHECK_STACK_COMPCAT
1656                                                 if (opt_verify) {
1657                                                         REQUIRE_2;
1658                                                         if (IS_2_WORD_TYPE(curstack->type)
1659                                                                 || IS_2_WORD_TYPE(curstack->prev->type)) {
1660                                                                 *exceptionptr = new_verifyerror(m, "Attempt to split long or double on the stack");
1661                                                                 return NULL;
1662                                                         }
1663                                                 }
1664 #endif
1665                                                 SWAP;
1666                                                 break;
1667
1668                                                 /* pop 2 push 1 */
1669
1670                                         case ICMD_IDIV:
1671                                         case ICMD_IREM:
1672 #if !SUPPORT_DIVISION
1673                                                 bte = (builtintable_entry *) iptr->val.a;
1674                                                 md = bte->md;
1675                                                 i = iptr->op1;
1676
1677                                                 if (md->memuse > rd->memuse)
1678                                                         rd->memuse = md->memuse;
1679                                                 if (md->argintreguse > rd->argintreguse)
1680                                                         rd->argintreguse = md->argintreguse;
1681
1682                                                 /* make all stack variables saved */
1683
1684                                                 copy = curstack;
1685                                                 while (copy) {
1686                                                         copy->flags |= SAVEDVAR;
1687                                                         copy = copy->prev;
1688                                                 }
1689
1690                                                 /* fall through */
1691 #endif /* !SUPPORT_DIVISION */
1692
1693                                         case ICMD_ISHL:
1694                                         case ICMD_ISHR:
1695                                         case ICMD_IUSHR:
1696                                         case ICMD_IADD:
1697                                         case ICMD_ISUB:
1698                                         case ICMD_IMUL:
1699                                         case ICMD_IAND:
1700                                         case ICMD_IOR:
1701                                         case ICMD_IXOR:
1702                                                 COUNT(count_pcmd_op);
1703                                                 OP2_1(TYPE_INT);
1704                                                 break;
1705
1706                                         case ICMD_LDIV:
1707                                         case ICMD_LREM:
1708 #if !(SUPPORT_DIVISION && SUPPORT_LONG && SUPPORT_LONG_DIV)
1709                                                 bte = (builtintable_entry *) iptr->val.a;
1710                                                 md = bte->md;
1711                                                 i = iptr->op1;
1712
1713                                                 if (md->memuse > rd->memuse)
1714                                                         rd->memuse = md->memuse;
1715                                                 if (md->argintreguse > rd->argintreguse)
1716                                                         rd->argintreguse = md->argintreguse;
1717
1718                                                 /* make all stack variables saved */
1719
1720                                                 copy = curstack;
1721                                                 while (copy) {
1722                                                         copy->flags |= SAVEDVAR;
1723                                                         copy = copy->prev;
1724                                                 }
1725
1726                                                 /* fall through */
1727 #endif /* !(SUPPORT_DIVISION && SUPPORT_LONG && SUPPORT_LONG_DIV) */
1728
1729                                         case ICMD_LMUL:
1730                                         case ICMD_LADD:
1731                                         case ICMD_LSUB:
1732 #if SUPPORT_LONG_LOGICAL
1733                                         case ICMD_LAND:
1734                                         case ICMD_LOR:
1735                                         case ICMD_LXOR:
1736 #endif /* SUPPORT_LONG_LOGICAL */
1737                                                 COUNT(count_pcmd_op);
1738                                                 OP2_1(TYPE_LNG);
1739                                                 break;
1740
1741                                         case ICMD_LSHL:
1742                                         case ICMD_LSHR:
1743                                         case ICMD_LUSHR:
1744                                                 COUNT(count_pcmd_op);
1745                                                 OP2IT_1(TYPE_LNG);
1746                                                 break;
1747
1748                                         case ICMD_FADD:
1749                                         case ICMD_FSUB:
1750                                         case ICMD_FMUL:
1751                                         case ICMD_FDIV:
1752                                         case ICMD_FREM:
1753                                                 COUNT(count_pcmd_op);
1754                                                 OP2_1(TYPE_FLT);
1755                                                 break;
1756
1757                                         case ICMD_DADD:
1758                                         case ICMD_DSUB:
1759                                         case ICMD_DMUL:
1760                                         case ICMD_DDIV:
1761                                         case ICMD_DREM:
1762                                                 COUNT(count_pcmd_op);
1763                                                 OP2_1(TYPE_DBL);
1764                                                 break;
1765
1766                                         case ICMD_LCMP:
1767                                                 COUNT(count_pcmd_op);
1768 #if SUPPORT_LONG_CMP_CONST
1769                                                 if ((len > 0) && (iptr[1].val.i == 0)) {
1770                                                         switch (iptr[1].opc) {
1771                                                         case ICMD_IFEQ:
1772                                                                 iptr[0].opc = ICMD_IF_LCMPEQ;
1773                                                         icmd_lcmp_if_tail:
1774                                                                 iptr[0].op1 = iptr[1].op1;
1775                                                                 len--;
1776                                                                 bptr->icount--;
1777                                                                 /* iptr[1].opc = ICMD_NOP; */
1778                                                                 OP2_0(TYPE_LNG);
1779                                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1780                         
1781                                                                 iptr[0].target = (void *) tbptr;
1782
1783                                                                 MARKREACHED(tbptr, copy);
1784                                                                 COUNT(count_pcmd_bra);
1785                                                                 break;
1786                                                         case ICMD_IFNE:
1787                                                                 iptr[0].opc = ICMD_IF_LCMPNE;
1788                                                                 goto icmd_lcmp_if_tail;
1789                                                         case ICMD_IFLT:
1790                                                                 iptr[0].opc = ICMD_IF_LCMPLT;
1791                                                                 goto icmd_lcmp_if_tail;
1792                                                         case ICMD_IFGT:
1793                                                                 iptr[0].opc = ICMD_IF_LCMPGT;
1794                                                                 goto icmd_lcmp_if_tail;
1795                                                         case ICMD_IFLE:
1796                                                                 iptr[0].opc = ICMD_IF_LCMPLE;
1797                                                                 goto icmd_lcmp_if_tail;
1798                                                         case ICMD_IFGE:
1799                                                                 iptr[0].opc = ICMD_IF_LCMPGE;
1800                                                                 goto icmd_lcmp_if_tail;
1801                                                         default:
1802                                                                 OPTT2_1(TYPE_LNG, TYPE_INT);
1803                                                         }
1804                                                 }
1805                                                 else
1806 #endif /* SUPPORT_LONG_CMP_CONST */
1807                                                         OPTT2_1(TYPE_LNG, TYPE_INT);
1808                                                 break;
1809                                         case ICMD_FCMPL:
1810                                         case ICMD_FCMPG:
1811                                                 COUNT(count_pcmd_op);
1812                                                 OPTT2_1(TYPE_FLT, TYPE_INT);
1813                                                 break;
1814                                         case ICMD_DCMPL:
1815                                         case ICMD_DCMPG:
1816                                                 COUNT(count_pcmd_op);
1817                                                 OPTT2_1(TYPE_DBL, TYPE_INT);
1818                                                 break;
1819
1820                                                 /* pop 1 push 1 */
1821                                                 
1822                                         case ICMD_INEG:
1823                                         case ICMD_INT2BYTE:
1824                                         case ICMD_INT2CHAR:
1825                                         case ICMD_INT2SHORT:
1826                                                 COUNT(count_pcmd_op);
1827                                                 OP1_1(TYPE_INT, TYPE_INT);
1828                                                 break;
1829                                         case ICMD_LNEG:
1830                                                 COUNT(count_pcmd_op);
1831                                                 OP1_1(TYPE_LNG, TYPE_LNG);
1832                                                 break;
1833                                         case ICMD_FNEG:
1834                                                 COUNT(count_pcmd_op);
1835                                                 OP1_1(TYPE_FLT, TYPE_FLT);
1836                                                 break;
1837                                         case ICMD_DNEG:
1838                                                 COUNT(count_pcmd_op);
1839                                                 OP1_1(TYPE_DBL, TYPE_DBL);
1840                                                 break;
1841
1842                                         case ICMD_I2L:
1843                                                 COUNT(count_pcmd_op);
1844                                                 OP1_1(TYPE_INT, TYPE_LNG);
1845                                                 break;
1846                                         case ICMD_I2F:
1847                                                 COUNT(count_pcmd_op);
1848                                                 OP1_1(TYPE_INT, TYPE_FLT);
1849                                                 break;
1850                                         case ICMD_I2D:
1851                                                 COUNT(count_pcmd_op);
1852                                                 OP1_1(TYPE_INT, TYPE_DBL);
1853                                                 break;
1854                                         case ICMD_L2I:
1855                                                 COUNT(count_pcmd_op);
1856                                                 OP1_1(TYPE_LNG, TYPE_INT);
1857                                                 break;
1858                                         case ICMD_L2F:
1859                                                 COUNT(count_pcmd_op);
1860                                                 OP1_1(TYPE_LNG, TYPE_FLT);
1861                                                 break;
1862                                         case ICMD_L2D:
1863                                                 COUNT(count_pcmd_op);
1864                                                 OP1_1(TYPE_LNG, TYPE_DBL);
1865                                                 break;
1866                                         case ICMD_F2I:
1867                                                 COUNT(count_pcmd_op);
1868                                                 OP1_1(TYPE_FLT, TYPE_INT);
1869                                                 break;
1870                                         case ICMD_F2L:
1871                                                 COUNT(count_pcmd_op);
1872                                                 OP1_1(TYPE_FLT, TYPE_LNG);
1873                                                 break;
1874                                         case ICMD_F2D:
1875                                                 COUNT(count_pcmd_op);
1876                                                 OP1_1(TYPE_FLT, TYPE_DBL);
1877                                                 break;
1878                                         case ICMD_D2I:
1879                                                 COUNT(count_pcmd_op);
1880                                                 OP1_1(TYPE_DBL, TYPE_INT);
1881                                                 break;
1882                                         case ICMD_D2L:
1883                                                 COUNT(count_pcmd_op);
1884                                                 OP1_1(TYPE_DBL, TYPE_LNG);
1885                                                 break;
1886                                         case ICMD_D2F:
1887                                                 COUNT(count_pcmd_op);
1888                                                 OP1_1(TYPE_DBL, TYPE_FLT);
1889                                                 break;
1890
1891                                         case ICMD_CHECKCAST:
1892                                                 if (iptr->op1 == 0) {
1893                                                         /* array type cast-check */
1894
1895                                                         bte = builtintable_get_internal(BUILTIN_arraycheckcast);
1896                                                         md = bte->md;
1897
1898                                                         if (md->memuse > rd->memuse)
1899                                                                 rd->memuse = md->memuse;
1900                                                         if (md->argintreguse > rd->argintreguse)
1901                                                                 rd->argintreguse = md->argintreguse;
1902
1903                                                         /* make all stack variables saved */
1904
1905                                                         copy = curstack;
1906                                                         while (copy) {
1907                                                                 copy->flags |= SAVEDVAR;
1908                                                                 copy = copy->prev;
1909                                                         }
1910                                                 }
1911                                                 OP1_1(TYPE_ADR, TYPE_ADR);
1912                                                 break;
1913
1914                                         case ICMD_INSTANCEOF:
1915                                         case ICMD_ARRAYLENGTH:
1916                                                 OP1_1(TYPE_ADR, TYPE_INT);
1917                                                 break;
1918
1919                                         case ICMD_NEWARRAY:
1920                                         case ICMD_ANEWARRAY:
1921                                                 OP1_1(TYPE_INT, TYPE_ADR);
1922                                                 break;
1923
1924                                         case ICMD_GETFIELD:
1925                                                 COUNT(count_check_null);
1926                                                 COUNT(count_pcmd_mem);
1927                                                 OP1_1(TYPE_ADR, iptr->op1);
1928                                                 break;
1929
1930                                                 /* pop 0 push 1 */
1931                                                 
1932                                         case ICMD_GETSTATIC:
1933                                                 COUNT(count_pcmd_mem);
1934                                                 OP0_1(iptr->op1);
1935                                                 break;
1936
1937                                         case ICMD_NEW:
1938                                                 OP0_1(TYPE_ADR);
1939                                                 break;
1940
1941                                         case ICMD_JSR:
1942                                                 OP0_1(TYPE_ADR);
1943                                                 tbptr = m->basicblocks + m->basicblockindex[iptr->op1];
1944
1945                                                 iptr[0].target = (void *) tbptr;
1946
1947                                                 /* This is a dirty hack. The typechecker
1948                                                  * needs it because the OP1_0ANY below
1949                                                  * overwrites iptr->dst.
1950                                                  */
1951                                                 iptr->val.a = (void *) iptr->dst;
1952
1953                                                 tbptr->type = BBTYPE_SBR;
1954
1955                                                 /* We need to check for overflow right here because
1956                                                  * the pushed value is poped after MARKREACHED. */
1957                                                 CHECKOVERFLOW;
1958                                                 MARKREACHED(tbptr, copy);
1959                                                 OP1_0ANY;
1960                                                 break;
1961
1962                                         /* pop many push any */
1963
1964                                         case ICMD_BUILTIN:
1965 #if defined(USEBUILTINTABLE)
1966                                         builtin:
1967 #endif
1968                                                 bte = (builtintable_entry *) iptr->val.a;
1969                                                 md = bte->md;
1970                                                 goto _callhandling;
1971
1972                                         case ICMD_INVOKESTATIC:
1973                                         case ICMD_INVOKESPECIAL:
1974                                         case ICMD_INVOKEVIRTUAL:
1975                                         case ICMD_INVOKEINTERFACE:
1976                                                 COUNT(count_pcmd_met);
1977                                                 um = iptr->target;
1978                                                 md = um->methodref->parseddesc.md;
1979 /*                          if (lm->flags & ACC_STATIC) */
1980 /*                              {COUNT(count_check_null);} */    
1981
1982                                         _callhandling:
1983                                                 i = md->paramcount;
1984
1985                                                 if (md->memuse > rd->memuse)
1986                                                         rd->memuse = md->memuse;
1987                                                 if (md->argintreguse > rd->argintreguse)
1988                                                         rd->argintreguse = md->argintreguse;
1989                                                 if (md->argfltreguse > rd->argfltreguse)
1990                                                         rd->argfltreguse = md->argfltreguse;
1991
1992                                                 REQUIRE(i);
1993
1994                                                 copy = curstack;
1995                                                 for (i-- ; i >= 0; i--) {
1996 #if defined(SUPPORT_PASS_FLOATARGS_IN_INTREGS)
1997                                                 /* If we pass float arguments in integer argument registers, we
1998                                                  * are not allowed to precolor them here. Floats have to be moved
1999                                                  * to this regs explicitly in codegen().
2000                                                  * Only arguments that are passed by stack anyway can be precolored
2001                                                  * (michi 2005/07/24) */
2002                                                         if (!(copy->flags & SAVEDVAR) &&
2003                                                            (!IS_FLT_DBL_TYPE(copy->type) || md->params[i].inmemory)) {
2004 #else
2005                                                         if (!(copy->flags & SAVEDVAR)) {
2006 #endif
2007                                                                 copy->varkind = ARGVAR;
2008                                                                 copy->varnum = i;
2009
2010 #if defined(ENABLE_INTRP)
2011                                                                 if (!opt_intrp) {
2012 #endif
2013                                                                         if (md->params[i].inmemory) {
2014                                                                                 copy->flags = INMEMORY;
2015                                                                                 copy->regoff = md->params[i].regoff;
2016                                                                         } else {
2017                                                                                 copy->flags = 0;
2018                                                                                 if (IS_FLT_DBL_TYPE(copy->type))
2019 #if defined(SUPPORT_PASS_FLOATARGS_IN_INTREGS)
2020                                                                                         assert(0); /* XXX is this assert ok? */
2021 #else
2022                                                                                 copy->regoff =
2023                                                                                         rd->argfltregs[md->params[i].regoff];
2024 #endif
2025                                                                                 else {
2026 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2027                                                                                         if (IS_2_WORD_TYPE(copy->type))
2028                                                                                                 copy->regoff = PACK_REGS(
2029                                                                                                                                                  rd->argintregs[GET_LOW_REG(md->params[i].regoff)],
2030                                                                                                                                                  rd->argintregs[GET_HIGH_REG(md->params[i].regoff)]);
2031                                                                                         else
2032 #endif
2033                                                                                                 copy->regoff =
2034                                                                                                         rd->argintregs[md->params[i].regoff];
2035                                                                                 }
2036                                                                         }
2037 #if defined(ENABLE_INTRP)
2038                                                                 }
2039 #endif
2040                                                         }
2041                                                         copy = copy->prev;
2042                                                 }
2043
2044                                                 while (copy) {
2045                                                         copy->flags |= SAVEDVAR;
2046                                                         copy = copy->prev;
2047                                                 }
2048
2049                                                 i = md->paramcount;
2050                                                 POPMANY(i);
2051                                                 if (md->returntype.type != TYPE_VOID)
2052                                                         OP0_1(md->returntype.type);
2053                                                 break;
2054
2055                                         case ICMD_INLINE_START:
2056                                         case ICMD_INLINE_END:
2057                                                 SETDST;
2058                                                 break;
2059
2060                                         case ICMD_MULTIANEWARRAY:
2061                                                 if (rd->argintreguse < 3)
2062                                                         rd->argintreguse = 3;
2063
2064                                                 i = iptr->op1;
2065
2066                                                 REQUIRE(i);
2067 #if defined(SPECIALMEMUSE)
2068 # if defined(__DARWIN__)
2069                                                 if (rd->memuse < (i + INT_ARG_CNT + LA_WORD_SIZE))
2070                                                         rd->memuse = i + LA_WORD_SIZE + INT_ARG_CNT;
2071 # else
2072                                                 if (rd->memuse < (i + LA_WORD_SIZE + 3))
2073                                                         rd->memuse = i + LA_WORD_SIZE + 3;
2074 # endif
2075 #else
2076 # if defined(__I386__)
2077                                                 if (rd->memuse < i + 3)
2078                                                         rd->memuse = i + 3; /* n integer args spilled on stack */
2079 # elif defined(__MIPS__) && SIZEOF_VOID_P == 4
2080                                                 if (rd->memuse < i + 2)
2081                                                         rd->memuse = i + 2; /* 4*4 bytes callee save space */
2082 # else
2083                                                 if (rd->memuse < i)
2084                                                         rd->memuse = i; /* n integer args spilled on stack */
2085 # endif /* defined(__I386__) */
2086 #endif
2087                                                 copy = curstack;
2088                                                 while (--i >= 0) {
2089                                                         /* check INT type here? Currently typecheck does this. */
2090                                                         if (!(copy->flags & SAVEDVAR)) {
2091                                                                 copy->varkind = ARGVAR;
2092                                                                 copy->varnum = i + INT_ARG_CNT;
2093                                                                 copy->flags |= INMEMORY;
2094 #if defined(SPECIALMEMUSE)
2095 # if defined(__DARWIN__)
2096                                                                 copy->regoff = i + LA_WORD_SIZE + INT_ARG_CNT;
2097 # else
2098                                                                 copy->regoff = i + LA_WORD_SIZE + 3;
2099 # endif
2100 #else
2101 # if defined(__I386__)
2102                                                                 copy->regoff = i + 3;
2103 # elif defined(__MIPS__) && SIZEOF_VOID_P == 4
2104                                                                 copy->regoff = i + 2;
2105 # else
2106                                                                 copy->regoff = i;
2107 # endif /* defined(__I386__) */
2108 #endif /* defined(SPECIALMEMUSE) */
2109                                                         }
2110                                                         copy = copy->prev;
2111                                                 }
2112                                                 while (copy) {
2113                                                         copy->flags |= SAVEDVAR;
2114                                                         copy = copy->prev;
2115                                                 }
2116                                                 i = iptr->op1;
2117                                                 POPMANY(i);
2118                                                 OP0_1(TYPE_ADR);
2119                                                 break;
2120
2121                                         case ICMD_CLEAR_ARGREN:
2122                                                 for (i = iptr->op1; i < cd->maxlocals; i++)
2123                                                         argren[i] = i;
2124                                                 iptr->opc = opcode = ICMD_NOP;
2125                                                 SETDST;
2126                                                 break;
2127                                                 
2128                                         case ICMD_READONLY_ARG:
2129                                         case ICMD_READONLY_ARG+1:
2130                                         case ICMD_READONLY_ARG+2:
2131                                         case ICMD_READONLY_ARG+3:
2132                                         case ICMD_READONLY_ARG+4:
2133
2134                                                 REQUIRE_1;
2135                                                 if (curstack->varkind == LOCALVAR) {
2136                                                         i = curstack->varnum;
2137                                                         argren[iptr->op1] = i;
2138                                                         iptr->op1 = i;
2139                                                 }
2140                                                 opcode = iptr->opc = opcode - ICMD_READONLY_ARG + ICMD_ISTORE;
2141                                                 goto icmd_store;
2142
2143                                                 break;
2144
2145                                         default:
2146                                                 *exceptionptr =
2147                                                         new_internalerror("Unknown ICMD %d", opcode);
2148                                                 return NULL;
2149                                         } /* switch */
2150
2151                                         CHECKOVERFLOW;
2152                                         iptr++;
2153                                 } /* while instructions */
2154
2155                                 bptr->outstack = curstack;
2156                                 bptr->outdepth = stackdepth;
2157                                 BBEND(curstack, i);
2158                         } /* if */
2159                         else
2160                                 superblockend = true;
2161                         bptr++;
2162                 } /* while blocks */
2163         } while (repeat && !deadcode);
2164
2165 #if defined(STATISTICS)
2166         if (opt_stat) {
2167                 if (m->basicblockcount > count_max_basic_blocks)
2168                         count_max_basic_blocks = m->basicblockcount;
2169                 count_basic_blocks += m->basicblockcount;
2170                 if (m->instructioncount > count_max_javainstr)                  count_max_javainstr = m->instructioncount;
2171                 count_javainstr += m->instructioncount;
2172                 if (m->stackcount > count_upper_bound_new_stack)
2173                         count_upper_bound_new_stack = m->stackcount;
2174                 if ((new - m->stack) > count_max_new_stack)
2175                         count_max_new_stack = (new - m->stack);
2176
2177                 b_count = m->basicblockcount;
2178                 bptr = m->basicblocks;
2179                 while (--b_count >= 0) {
2180                         if (bptr->flags > BBREACHED) {
2181                                 if (bptr->indepth >= 10)
2182                                         count_block_stack[10]++;
2183                                 else
2184                                         count_block_stack[bptr->indepth]++;
2185                                 len = bptr->icount;
2186                                 if (len < 10) 
2187                                         count_block_size_distribution[len]++;
2188                                 else if (len <= 12)
2189                                         count_block_size_distribution[10]++;
2190                                 else if (len <= 14)
2191                                         count_block_size_distribution[11]++;
2192                                 else if (len <= 16)
2193                                         count_block_size_distribution[12]++;
2194                                 else if (len <= 18)
2195                                         count_block_size_distribution[13]++;
2196                                 else if (len <= 20)
2197                                         count_block_size_distribution[14]++;
2198                                 else if (len <= 25)
2199                                         count_block_size_distribution[15]++;
2200                                 else if (len <= 30)
2201                                         count_block_size_distribution[16]++;
2202                                 else
2203                                         count_block_size_distribution[17]++;
2204                         }
2205                         bptr++;
2206                 }
2207
2208                 if (loops == 1)
2209                         count_analyse_iterations[0]++;
2210                 else if (loops == 2)
2211                         count_analyse_iterations[1]++;
2212                 else if (loops == 3)
2213                         count_analyse_iterations[2]++;
2214                 else if (loops == 4)
2215                         count_analyse_iterations[3]++;
2216                 else
2217                         count_analyse_iterations[4]++;
2218
2219                 if (m->basicblockcount <= 5)
2220                         count_method_bb_distribution[0]++;
2221                 else if (m->basicblockcount <= 10)
2222                         count_method_bb_distribution[1]++;
2223                 else if (m->basicblockcount <= 15)
2224                         count_method_bb_distribution[2]++;
2225                 else if (m->basicblockcount <= 20)
2226                         count_method_bb_distribution[3]++;
2227                 else if (m->basicblockcount <= 30)
2228                         count_method_bb_distribution[4]++;
2229                 else if (m->basicblockcount <= 40)
2230                         count_method_bb_distribution[5]++;
2231                 else if (m->basicblockcount <= 50)
2232                         count_method_bb_distribution[6]++;
2233                 else if (m->basicblockcount <= 75)
2234                         count_method_bb_distribution[7]++;
2235                 else
2236                         count_method_bb_distribution[8]++;
2237         }
2238 #endif
2239
2240         /* just return methodinfo* to signal everything was ok */
2241
2242         return m;
2243 }
2244
2245
2246 /**********************************************************************/
2247 /* DEBUGGING HELPERS                                                  */
2248 /**********************************************************************/
2249
2250 void icmd_print_stack(codegendata *cd, stackptr s)
2251 {
2252         int i, j;
2253         stackptr t;
2254
2255         i = cd->maxstack;
2256         t = s;
2257         
2258         while (t) {
2259                 i--;
2260                 t = t->prev;
2261         }
2262         j = cd->maxstack - i;
2263         while (--i >= 0)
2264                 printf("    ");
2265
2266         while (s) {
2267                 j--;
2268                 if (s->flags & SAVEDVAR)
2269                         switch (s->varkind) {
2270                         case TEMPVAR:
2271                                 if (s->flags & INMEMORY)
2272                                         printf(" M%02d", s->regoff);
2273 #ifdef HAS_ADDRESS_REGISTER_FILE
2274                                 else if (s->type == TYPE_ADR)
2275                                         printf(" R%02d", s->regoff);
2276 #endif
2277                                 else if (IS_FLT_DBL_TYPE(s->type))
2278                                         printf(" F%02d", s->regoff);
2279                                 else {
2280 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2281                                         if (IS_2_WORD_TYPE(s->type))
2282                                                 printf(" %3s/%3s", regs[GET_LOW_REG(s->regoff)],
2283                             regs[GET_HIGH_REG(s->regoff)]);
2284                                         else
2285 #endif
2286 #if defined(ENABLE_INTRP)
2287                                                 printf(" %3d", s->regoff);
2288 #else
2289                                                 printf(" %3s", regs[s->regoff]);
2290 #endif
2291                                 }
2292                                 break;
2293                         case STACKVAR:
2294                                 printf(" I%02d", s->varnum);
2295                                 break;
2296                         case LOCALVAR:
2297                                 printf(" L%02d", s->varnum);
2298                                 break;
2299                         case ARGVAR:
2300                                 if (s->varnum == -1) {
2301                                         /* Return Value                                  */
2302                                         /* varkind ARGVAR "misused for this special case */
2303                                         printf("  V0");
2304                                 } else /* "normal" Argvar */
2305                                         printf(" A%02d", s->varnum);
2306 #ifdef INVOKE_NEW_DEBUG
2307                                 if (s->flags & INMEMORY)
2308                                         printf("(M%i)", s->regoff);
2309                                 else
2310                                         printf("(R%i)", s->regoff);
2311 #endif
2312                                 break;
2313                         default:
2314                                 printf(" !%02d", j);
2315                         }
2316                 else
2317                         switch (s->varkind) {
2318                         case TEMPVAR:
2319                                 if (s->flags & INMEMORY)
2320                                         printf(" m%02d", s->regoff);
2321 #ifdef HAS_ADDRESS_REGISTER_FILE
2322                                 else if (s->type == TYPE_ADR)
2323                                         printf(" r%02d", s->regoff);
2324 #endif
2325                                 else if (IS_FLT_DBL_TYPE(s->type))
2326                                         printf(" f%02d", s->regoff);
2327                                 else {
2328 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2329                                         if (IS_2_WORD_TYPE(s->type))
2330                                                 printf(" %3s/%3s", regs[GET_LOW_REG(s->regoff)],
2331                             regs[GET_HIGH_REG(s->regoff)]);
2332                                         else
2333 #endif
2334 #if defined(ENABLE_INTRP)
2335                                                 printf(" %3d", s->regoff);
2336 #else
2337                                                 printf(" %3s", regs[s->regoff]);
2338 #endif
2339                                 }
2340                                 break;
2341                         case STACKVAR:
2342                                 printf(" i%02d", s->varnum);
2343                                 break;
2344                         case LOCALVAR:
2345                                 printf(" l%02d", s->varnum);
2346                                 break;
2347                         case ARGVAR:
2348                                 if (s->varnum == -1) {
2349                                         /* Return Value                                  */
2350                                         /* varkind ARGVAR "misused for this special case */
2351                                         printf("  v0");
2352                                 } else /* "normal" Argvar */
2353                                 printf(" a%02d", s->varnum);
2354 #ifdef INVOKE_NEW_DEBUG
2355                                 if (s->flags & INMEMORY)
2356                                         printf("(M%i)", s->regoff);
2357                                 else
2358                                         printf("(R%i)", s->regoff);
2359 #endif
2360                                 break;
2361                         default:
2362                                 printf(" ?%02d", j);
2363                         }
2364                 s = s->prev;
2365         }
2366 }
2367
2368
2369 #if 0
2370 static void print_reg(stackptr s) {
2371         if (s) {
2372                 if (s->flags & SAVEDVAR)
2373                         switch (s->varkind) {
2374                         case TEMPVAR:
2375                                 if (s->flags & INMEMORY)
2376                                         printf(" tm%02d", s->regoff);
2377                                 else
2378                                         printf(" tr%02d", s->regoff);
2379                                 break;
2380                         case STACKVAR:
2381                                 printf(" s %02d", s->varnum);
2382                                 break;
2383                         case LOCALVAR:
2384                                 printf(" l %02d", s->varnum);
2385                                 break;
2386                         case ARGVAR:
2387                                 printf(" a %02d", s->varnum);
2388                                 break;
2389                         default:
2390                                 printf(" ! %02d", s->varnum);
2391                         }
2392                 else
2393                         switch (s->varkind) {
2394                         case TEMPVAR:
2395                                 if (s->flags & INMEMORY)
2396                                         printf(" Tm%02d", s->regoff);
2397                                 else
2398                                         printf(" Tr%02d", s->regoff);
2399                                 break;
2400                         case STACKVAR:
2401                                 printf(" S %02d", s->varnum);
2402                                 break;
2403                         case LOCALVAR:
2404                                 printf(" L %02d", s->varnum);
2405                                 break;
2406                         case ARGVAR:
2407                                 printf(" A %02d", s->varnum);
2408                                 break;
2409                         default:
2410                                 printf(" ? %02d", s->varnum);
2411                         }
2412         }
2413         else
2414                 printf("     ");
2415                 
2416 }
2417 #endif
2418
2419
2420 static char *jit_type[] = {
2421         "int",
2422         "lng",
2423         "flt",
2424         "dbl",
2425         "adr"
2426 };
2427
2428
2429 /* show_icmd_method ************************************************************
2430
2431    XXX
2432
2433 *******************************************************************************/
2434
2435 void show_icmd_method(methodinfo *m, codegendata *cd, registerdata *rd)
2436 {
2437         basicblock     *bptr;
2438         exceptiontable *ex;
2439         s4              i, j;
2440         u1             *u1ptr;
2441
2442 #if defined(USE_THREADS)
2443         /* We need to enter a lock here, since the binutils disassembler is not   */
2444         /* reentrant-able and we could not read functions printed at the same     */
2445         /* time.                                                                  */
2446
2447         builtin_monitorenter(&show_icmd_lock);
2448 #endif
2449
2450         printf("\n");
2451         utf_fprint_classname(stdout, m->class->name);
2452         printf(".");
2453         utf_fprint(stdout, m->name);
2454         utf_fprint(stdout, m->descriptor);
2455         printf("\n\nMax locals: %d\n", (int) cd->maxlocals);
2456         printf("Max stack:  %d\n", (int) cd->maxstack);
2457         printf("Line number table length: %d\n", m->linenumbercount);
2458
2459         printf("Exceptions (Number: %d):\n", cd->exceptiontablelength);
2460         for (ex = cd->exceptiontable; ex != NULL; ex = ex->down) {
2461                 printf("    L%03d ... ", ex->start->debug_nr );
2462                 printf("L%03d  = ", ex->end->debug_nr);
2463                 printf("L%03d", ex->handler->debug_nr);
2464                 printf("  (catchtype: ");
2465                 if (ex->catchtype.any)
2466                         if (IS_CLASSREF(ex->catchtype))
2467                                 utf_display_classname(ex->catchtype.ref->name);
2468                         else
2469                                 utf_display_classname(ex->catchtype.cls->name);
2470                 else
2471                         printf("ANY");
2472                 printf(")\n");
2473         }
2474         
2475         printf("Local Table:\n");
2476         for (i = 0; i < cd->maxlocals; i++) {
2477                 printf("   %3d: ", i);
2478                 for (j = TYPE_INT; j <= TYPE_ADR; j++) {
2479 #if defined(ENABLE_INTRP)
2480                         if (!opt_intrp) {
2481 #endif
2482                                 if (rd->locals[i][j].type >= 0) {
2483                                         printf("   (%s) ", jit_type[j]);
2484                                         if (rd->locals[i][j].flags & INMEMORY)
2485                                                 printf("m%2d", rd->locals[i][j].regoff);
2486 #ifdef HAS_ADDRESS_REGISTER_FILE
2487                                         else if (j == TYPE_ADR)
2488                                                 printf("r%02d", rd->locals[i][j].regoff);
2489 #endif
2490                                         else if ((j == TYPE_FLT) || (j == TYPE_DBL))
2491                                                 printf("f%02d", rd->locals[i][j].regoff);
2492                                         else {
2493 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2494                                                 if (IS_2_WORD_TYPE(j))
2495                                                         printf(" %3s/%3s",
2496                                                                    regs[GET_LOW_REG(rd->locals[i][j].regoff)],
2497                                                                    regs[GET_HIGH_REG(rd->locals[i][j].regoff)]);
2498                                                 else
2499 #endif
2500                                                         printf("%3s", regs[rd->locals[i][j].regoff]);
2501                                         }
2502                                 }
2503 #if defined(ENABLE_INTRP)
2504                         }
2505 #endif
2506                 }
2507                 printf("\n");
2508         }
2509         printf("\n");
2510
2511 #ifdef LSRA
2512         if (!opt_lsra) {
2513 #endif
2514 #if defined(ENABLE_INTRP)
2515                 if (!opt_intrp) {
2516 #endif
2517         printf("Interface Table:\n");
2518         for (i = 0; i < cd->maxstack; i++) {
2519                 if ((rd->interfaces[i][0].type >= 0) ||
2520                         (rd->interfaces[i][1].type >= 0) ||
2521                     (rd->interfaces[i][2].type >= 0) ||
2522                         (rd->interfaces[i][3].type >= 0) ||
2523                     (rd->interfaces[i][4].type >= 0)) {
2524                         printf("   %3d: ", i);
2525                         for (j = TYPE_INT; j <= TYPE_ADR; j++)
2526                                 if (rd->interfaces[i][j].type >= 0) {
2527                                         printf("   (%s) ", jit_type[j]);
2528                                         if (rd->interfaces[i][j].flags & SAVEDVAR) {
2529                                                 if (rd->interfaces[i][j].flags & INMEMORY)
2530                                                         printf("M%2d", rd->interfaces[i][j].regoff);
2531 #ifdef HAS_ADDRESS_REGISTER_FILE
2532                                                 else if (j == TYPE_ADR)
2533                                                         printf("R%02d", rd->interfaces[i][j].regoff);
2534 #endif
2535                                                 else if ((j == TYPE_FLT) || (j == TYPE_DBL))
2536                                                         printf("F%02d", rd->interfaces[i][j].regoff);
2537                                                 else {
2538 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2539                                                         if (IS_2_WORD_TYPE(j))
2540                                                                 printf(" %3s/%3s",
2541                              regs[GET_LOW_REG(rd->interfaces[i][j].regoff)],
2542                              regs[GET_HIGH_REG(rd->interfaces[i][j].regoff)]);
2543                                                         else
2544 #endif
2545                                                                 printf("%3s",regs[rd->interfaces[i][j].regoff]);
2546                                                 }
2547                                         }
2548                                         else {
2549                                                 if (rd->interfaces[i][j].flags & INMEMORY)
2550                                                         printf("m%2d", rd->interfaces[i][j].regoff);
2551 #ifdef HAS_ADDRESS_REGISTER_FILE
2552                                                 else if (j == TYPE_ADR)
2553                                                         printf("r%02d", rd->interfaces[i][j].regoff);
2554 #endif
2555                                                 else if ((j == TYPE_FLT) || (j == TYPE_DBL))
2556                                                         printf("f%02d", rd->interfaces[i][j].regoff);
2557                                                 else {
2558 #if defined(SUPPORT_COMBINE_INTEGER_REGISTERS)
2559                                                         if (IS_2_WORD_TYPE(j))
2560                                                                 printf(" %3s/%3s",
2561                              regs[GET_LOW_REG(rd->interfaces[i][j].regoff)],
2562                                                          regs[GET_HIGH_REG(rd->interfaces[i][j].regoff)]);
2563                                                         else
2564 #endif
2565                                                                 printf("%3s",regs[rd->interfaces[i][j].regoff]);
2566                                                 }
2567                                         }
2568                                 }
2569                         printf("\n");
2570                 }
2571         }
2572         printf("\n");
2573
2574 #if defined(ENABLE_INTRP)
2575                 }
2576 #endif
2577 #ifdef LSRA
2578         }
2579 #endif
2580
2581         /* show code before first basic block */
2582
2583         if (opt_showdisassemble) {
2584                 u1ptr = (u1 *) ((ptrint) m->mcode + cd->dseglen);
2585
2586                 for (; u1ptr < (u1 *) ((ptrint) m->mcode + cd->dseglen + m->basicblocks[0].mpc);)
2587                         u1ptr = disassinstr(u1ptr);
2588
2589                 printf("\n");
2590         }
2591
2592         /* show code of all basic blocks */
2593
2594         for (bptr = m->basicblocks; bptr != NULL; bptr = bptr->next) {
2595                 show_icmd_block(m, cd, bptr);
2596         }
2597
2598         /* show stubs code */
2599
2600         if (opt_showdisassemble && opt_showexceptionstubs) {
2601                 printf("\nException stubs code:\n");
2602                 printf("Length: %d\n\n", (s4) (m->mcodelength -
2603                                                                            ((ptrint) cd->dseglen +
2604                                                                                 m->basicblocks[m->basicblockcount].mpc)));
2605
2606                 u1ptr = (u1 *) ((ptrint) m->mcode + cd->dseglen +
2607                                                 m->basicblocks[m->basicblockcount].mpc);
2608
2609                 for (; (ptrint) u1ptr < ((ptrint) m->mcode + m->mcodelength);)
2610                         u1ptr = disassinstr(u1ptr);
2611
2612                 printf("\n");
2613         }
2614
2615 #if defined(USE_THREADS)
2616         builtin_monitorexit(&show_icmd_lock);
2617 #endif
2618 }
2619
2620
2621 void show_icmd_block(methodinfo *m, codegendata *cd, basicblock *bptr)
2622 {
2623         s4           i, j;
2624         bool         deadcode;
2625         instruction *iptr;
2626         u1          *u1ptr;
2627
2628         if (bptr->flags != BBDELETED) {
2629                 deadcode = bptr->flags <= BBREACHED;
2630                 printf("[");
2631                 if (deadcode)
2632                         for (j = cd->maxstack; j > 0; j--)
2633                                 printf(" ?  ");
2634                 else
2635                         icmd_print_stack(cd, bptr->instack);
2636                 printf("] L%03d(%d - %d) flags=%d:\n", bptr->debug_nr, bptr->icount, bptr->pre_count,bptr->flags);
2637                 iptr = bptr->iinstr;
2638
2639                 for (i = 0; i < bptr->icount; i++, iptr++) {
2640                         printf("[");
2641                         if (deadcode) {
2642                                 for (j = cd->maxstack; j > 0; j--)
2643                                         printf(" ?  ");
2644                         }
2645                         else
2646                                 icmd_print_stack(cd, iptr->dst);
2647                         printf("] %5d (line: %5d)  ", i, iptr->line);
2648
2649                         show_icmd(iptr, deadcode);
2650                         printf("\n");
2651                 }
2652
2653                 if (opt_showdisassemble && (!deadcode)) {
2654                         printf("\n");
2655                         u1ptr = (u1 *) ((ptrint) m->mcode + cd->dseglen + bptr->mpc);
2656
2657                         if (bptr->next != NULL) {
2658                                 for (; u1ptr < (u1 *) ((ptrint) m->mcode + cd->dseglen + bptr->next->mpc);)
2659                                         u1ptr = disassinstr(u1ptr);
2660
2661                         } else {
2662                                 for (; u1ptr < (u1 *) ((ptrint) m->mcode + m->mcodelength);)
2663                                         u1ptr = disassinstr(u1ptr); 
2664                         }
2665                         printf("\n");
2666                 }
2667         }
2668 }
2669
2670
2671 void show_icmd(instruction *iptr, bool deadcode)
2672 {
2673         int j;
2674         s4  *s4ptr;
2675         void **tptr = NULL;
2676         
2677         printf("%s", icmd_names[iptr->opc]);
2678
2679         switch (iptr->opc) {
2680         case ICMD_IADDCONST:
2681         case ICMD_ISUBCONST:
2682         case ICMD_IMULCONST:
2683         case ICMD_IMULPOW2:
2684         case ICMD_IDIVPOW2:
2685         case ICMD_IREMPOW2:
2686         case ICMD_IANDCONST:
2687         case ICMD_IORCONST:
2688         case ICMD_IXORCONST:
2689         case ICMD_ISHLCONST:
2690         case ICMD_ISHRCONST:
2691         case ICMD_IUSHRCONST:
2692         case ICMD_LSHLCONST:
2693         case ICMD_LSHRCONST:
2694         case ICMD_LUSHRCONST:
2695         case ICMD_ICONST:
2696         case ICMD_ELSE_ICONST:
2697         case ICMD_IASTORECONST:
2698         case ICMD_BASTORECONST:
2699         case ICMD_CASTORECONST:
2700         case ICMD_SASTORECONST:
2701                 printf(" %d (0x%08x)", iptr->val.i, iptr->val.i);
2702                 break;
2703
2704         case ICMD_IFEQ_ICONST:
2705         case ICMD_IFNE_ICONST:
2706         case ICMD_IFLT_ICONST:
2707         case ICMD_IFGE_ICONST:
2708         case ICMD_IFGT_ICONST:
2709         case ICMD_IFLE_ICONST:
2710                 printf("(%d) %d", iptr[1].op1, iptr->val.i);
2711                 break;
2712
2713         case ICMD_LADDCONST:
2714         case ICMD_LSUBCONST:
2715         case ICMD_LMULCONST:
2716         case ICMD_LMULPOW2:
2717         case ICMD_LDIVPOW2:
2718         case ICMD_LREMPOW2:
2719         case ICMD_LANDCONST:
2720         case ICMD_LORCONST:
2721         case ICMD_LXORCONST:
2722         case ICMD_LCONST:
2723         case ICMD_LASTORECONST:
2724 #if SIZEOF_VOID_P == 4
2725                 printf(" %lld (0x%016llx)", iptr->val.l, iptr->val.l);
2726 #else
2727                 printf(" %ld (0x%016lx)", iptr->val.l, iptr->val.l);
2728 #endif
2729                 break;
2730
2731         case ICMD_FCONST:
2732                 printf(" %f (0x%08x)", iptr->val.f, iptr->val.i);
2733                 break;
2734
2735         case ICMD_DCONST:
2736 #if SIZEOF_VOID_P == 4
2737                 printf(" %g (0x%016llx)", iptr->val.d, iptr->val.l);
2738 #else
2739                 printf(" %g (0x%016lx)", iptr->val.d, iptr->val.l);
2740 #endif
2741                 break;
2742
2743         case ICMD_ACONST:
2744         case ICMD_AASTORECONST:
2745                 /* check if this is a constant string or a class reference */
2746
2747                 if (iptr->target) {
2748                         if (iptr->val.a)
2749                                 printf(" %p", iptr->val.a);
2750                         else
2751                                 printf(" (NOT RESOLVED)");
2752
2753                         printf(", Class = \"");
2754                         utf_display(((constant_classref *) iptr->target)->name);
2755                         printf("\"");
2756
2757                 } else {
2758                         printf(" %p", iptr->val.a);
2759                         if (iptr->val.a) {
2760                                 printf(", String = \"");
2761                                 utf_display(javastring_toutf(iptr->val.a, false));
2762                                 printf("\"");
2763                         }
2764                 }
2765                 break;
2766
2767         case ICMD_GETFIELD:
2768         case ICMD_PUTFIELD:
2769                 if (iptr->val.a)         
2770                         printf(" %d, ", ((fieldinfo *) iptr->val.a)->offset);
2771                 else     
2772                         printf(" (NOT RESOLVED), ");
2773                 utf_display_classname(((unresolved_field *) iptr->target)->fieldref->classref->name);
2774                 printf(".");
2775                 utf_display(((unresolved_field *) iptr->target)->fieldref->name);
2776                 printf(" (type ");
2777                 utf_display(((unresolved_field *) iptr->target)->fieldref->descriptor);
2778                 printf(")"); 
2779                 break;
2780
2781         case ICMD_PUTSTATIC:
2782         case ICMD_GETSTATIC:
2783                 if (iptr->val.a) {
2784                         if (!((fieldinfo *) iptr->val.a)->class->initialized)
2785                                 printf(" (NOT INITIALIZED) ");
2786                         else
2787                                 printf(" ");
2788                 } else
2789                         printf(" (NOT RESOLVED) ");
2790                 utf_display_classname(((unresolved_field *) iptr->target)->fieldref->classref->name);
2791                 printf(".");
2792                 utf_display(((unresolved_field *) iptr->target)->fieldref->name);
2793                 printf(" (type ");
2794                 utf_display(((unresolved_field *) iptr->target)->fieldref->descriptor);
2795                 printf(")");
2796                 break;
2797
2798         case ICMD_PUTSTATICCONST:
2799         case ICMD_PUTFIELDCONST:
2800                 switch (iptr[1].op1) {
2801                 case TYPE_INT:
2802                         printf(" %d (0x%08x),", iptr->val.i, iptr->val.i);
2803                         break;
2804                 case TYPE_LNG:
2805 #if SIZEOF_VOID_P == 4
2806                         printf(" %lld (0x%016llx),", iptr->val.l, iptr->val.l);
2807 #else
2808                         printf(" %ld (0x%016lx),", iptr->val.l, iptr->val.l);
2809 #endif
2810                         break;
2811                 case TYPE_ADR:
2812                         printf(" %p,", iptr->val.a);
2813                         break;
2814                 case TYPE_FLT:
2815                         printf(" %g (0x%08x),", iptr->val.f, iptr->val.i);
2816                         break;
2817                 case TYPE_DBL:
2818 #if SIZEOF_VOID_P == 4
2819                         printf(" %g (0x%016llx),", iptr->val.d, iptr->val.l);
2820 #else
2821                         printf(" %g (0x%016lx),", iptr->val.d, iptr->val.l);
2822 #endif
2823                         break;
2824                 }
2825                 if (iptr->opc == ICMD_PUTFIELDCONST) {
2826                         if (iptr[1].val.a)
2827                                 printf(" %d,", ((fieldinfo *) iptr[1].val.a)->offset);
2828                         else
2829                                 printf(" (NOT RESOLVED),");
2830                 }
2831                 printf(" ");     
2832                 utf_display_classname(((unresolved_field *) iptr[1].target)->fieldref->classref->name);          
2833                 printf(".");     
2834                 utf_display(((unresolved_field *) iptr[1].target)->fieldref->name);      
2835                 printf(" (type ");       
2836                 utf_display(((unresolved_field *) iptr[1].target)->fieldref->descriptor);        
2837                 printf(")");     
2838                 break;
2839
2840         case ICMD_IINC:
2841                 printf(" %d + %d", iptr->op1, iptr->val.i);
2842                 break;
2843
2844         case ICMD_IASTORE:
2845         case ICMD_SASTORE:
2846         case ICMD_BASTORE:
2847         case ICMD_CASTORE:
2848         case ICMD_LASTORE:
2849         case ICMD_DASTORE:
2850         case ICMD_FASTORE:
2851         case ICMD_AASTORE:
2852
2853         case ICMD_IALOAD:
2854         case ICMD_SALOAD:
2855         case ICMD_BALOAD:
2856         case ICMD_CALOAD:
2857         case ICMD_LALOAD:
2858         case ICMD_DALOAD:
2859         case ICMD_FALOAD:
2860         case ICMD_AALOAD:
2861                 if (iptr->op1 != 0)
2862                         printf("(opt.)");
2863                 break;
2864
2865         case ICMD_RET:
2866         case ICMD_ILOAD:
2867         case ICMD_LLOAD:
2868         case ICMD_FLOAD:
2869         case ICMD_DLOAD:
2870         case ICMD_ALOAD:
2871         case ICMD_ISTORE:
2872         case ICMD_LSTORE:
2873         case ICMD_FSTORE:
2874         case ICMD_DSTORE:
2875         case ICMD_ASTORE:
2876                 printf(" %d", iptr->op1);
2877                 break;
2878
2879         case ICMD_NEW:
2880                 printf(" ");
2881                 utf_display_classname(((classinfo *) iptr->val.a)->name);
2882                 break;
2883
2884         case ICMD_NEWARRAY:
2885                 switch (iptr->op1) {
2886                 case 4:
2887                         printf(" boolean");
2888                         break;
2889                 case 5:
2890                         printf(" char");
2891                         break;
2892                 case 6:
2893                         printf(" float");
2894                         break;
2895                 case 7:
2896                         printf(" double");
2897                         break;
2898                 case 8:
2899                         printf(" byte");
2900                         break;
2901                 case 9:
2902                         printf(" short");
2903                         break;
2904                 case 10:
2905                         printf(" int");
2906                         break;
2907                 case 11:
2908                         printf(" long");
2909                         break;
2910                 }
2911                 break;
2912
2913         case ICMD_ANEWARRAY:
2914                 if (iptr->op1) {
2915                         printf(" ");
2916                         utf_display_classname(((classinfo *) iptr->val.a)->name);
2917                 }
2918                 break;
2919
2920         case ICMD_MULTIANEWARRAY:
2921                 if (iptr->target) {
2922                         printf(" (NOT RESOLVED) %d ",iptr->op1);
2923                         utf_display(((constant_classref *) iptr->val.a)->name);
2924                 } else {
2925                         printf(" %d ",iptr->op1);
2926                         utf_display_classname(((vftbl_t *) iptr->val.a)->class->name);
2927                 }
2928                 break;
2929
2930         case ICMD_CHECKCAST:
2931         case ICMD_INSTANCEOF:
2932                 {
2933                         classinfo *c = iptr->val.a;
2934                         if (c) {
2935                                 if (c->flags & ACC_INTERFACE)
2936                                         printf(" (INTERFACE) ");
2937                                 else
2938                                         printf(" (CLASS,%3d) ", c->vftbl->diffval);
2939                         } else {
2940                                 printf(" (NOT RESOLVED) ");
2941                         }
2942                         utf_display_classname(((constant_classref *) iptr->target)->name);
2943                 }
2944                 break;
2945
2946         case ICMD_INLINE_START:
2947                 printf(" ");
2948                 utf_display_classname(iptr->method->class->name);
2949                 printf(".");
2950                 utf_display_classname(iptr->method->name);
2951                 utf_display_classname(iptr->method->descriptor);
2952                 printf(", depth=%i", iptr->op1);
2953                 break;
2954
2955         case ICMD_INLINE_END:
2956                 break;
2957
2958         case ICMD_BUILTIN:
2959                 printf(" %s", ((builtintable_entry *) iptr->val.a)->name);
2960                 break;
2961
2962         case ICMD_INVOKEVIRTUAL:
2963         case ICMD_INVOKESPECIAL:
2964         case ICMD_INVOKESTATIC:
2965         case ICMD_INVOKEINTERFACE:
2966                 if (!iptr->val.a)
2967                         printf(" (NOT RESOLVED) ");
2968                 else
2969                         printf(" ");
2970                 utf_display_classname(((unresolved_method *) iptr->target)->methodref->classref->name);
2971                 printf(".");
2972                 utf_display(((unresolved_method *) iptr->target)->methodref->name);
2973                 utf_display(((unresolved_method *) iptr->target)->methodref->descriptor);
2974                 break;
2975
2976         case ICMD_IFEQ:
2977         case ICMD_IFNE:
2978         case ICMD_IFLT:
2979         case ICMD_IFGE:
2980         case ICMD_IFGT:
2981         case ICMD_IFLE:
2982                 if (deadcode || !iptr->target)
2983                         printf(" %d (0x%08x) op1=%d", iptr->val.i, iptr->val.i, iptr->op1);
2984                 else
2985                         printf(" %d (0x%08x) L%03d", iptr->val.i, iptr->val.i, ((basicblock *) iptr->target)->debug_nr);
2986                 break;
2987
2988         case ICMD_IF_LEQ:
2989         case ICMD_IF_LNE:
2990         case ICMD_IF_LLT:
2991         case ICMD_IF_LGE:
2992         case ICMD_IF_LGT:
2993         case ICMD_IF_LLE:
2994                 if (deadcode || !iptr->target)
2995 #if SIZEOF_VOID_P == 4
2996                         printf("(%lld) op1=%d", iptr->val.l, iptr->op1);
2997 #else
2998                         printf("(%ld) op1=%d", iptr->val.l, iptr->op1);
2999 #endif
3000                 else
3001 #if SIZEOF_VOID_P == 4
3002                         printf("(%lld) L%03d", iptr->val.l, ((basicblock *) iptr->target)->debug_nr);
3003 #else
3004                         printf("(%ld) L%03d", iptr->val.l, ((basicblock *) iptr->target)->debug_nr);
3005 #endif
3006                 break;
3007
3008         case ICMD_JSR:
3009         case ICMD_GOTO:
3010         case ICMD_IFNULL:
3011         case ICMD_IFNONNULL:
3012         case ICMD_IF_ICMPEQ:
3013         case ICMD_IF_ICMPNE:
3014         case ICMD_IF_ICMPLT:
3015         case ICMD_IF_ICMPGE:
3016         case ICMD_IF_ICMPGT:
3017         case ICMD_IF_ICMPLE:
3018         case ICMD_IF_LCMPEQ:
3019         case ICMD_IF_LCMPNE:
3020         case ICMD_IF_LCMPLT:
3021         case ICMD_IF_LCMPGE:
3022         case ICMD_IF_LCMPGT:
3023         case ICMD_IF_LCMPLE:
3024         case ICMD_IF_ACMPEQ:
3025         case ICMD_IF_ACMPNE:
3026                 if (deadcode || !iptr->target)
3027                         printf(" op1=%d", iptr->op1);
3028                 else
3029                         printf(" L%03d", ((basicblock *) iptr->target)->debug_nr);
3030                 break;
3031
3032         case ICMD_TABLESWITCH:
3033                 s4ptr = (s4*)iptr->val.a;
3034
3035                 if (deadcode || !iptr->target) {
3036                         printf(" %d;", *s4ptr);
3037                 }
3038                 else {
3039                         tptr = (void **) iptr->target;
3040                         printf(" L%03d;", ((basicblock *) *tptr)->debug_nr); 
3041                         tptr++;
3042                 }
3043
3044                 s4ptr++;         /* skip default */
3045                 j = *s4ptr++;                               /* low     */
3046                 j = *s4ptr++ - j;                           /* high    */
3047                 while (j >= 0) {
3048                         if (deadcode || !*tptr)
3049                                 printf(" %d", *s4ptr++);
3050                         else {
3051                                 printf(" L%03d", ((basicblock *) *tptr)->debug_nr);
3052                                 tptr++;
3053                         }
3054                         j--;
3055                 }
3056                 break;
3057
3058         case ICMD_LOOKUPSWITCH:
3059                 s4ptr = (s4*)iptr->val.a;
3060
3061                 if (deadcode || !iptr->target) {
3062                         printf(" %d;", *s4ptr);
3063                 }
3064                 else {
3065                         tptr = (void **) iptr->target;
3066                         printf(" L%03d;", ((basicblock *) *tptr)->debug_nr);
3067                         tptr++;
3068                 }
3069                 s4ptr++;                                         /* default */
3070                 j = *s4ptr++;                                    /* count   */
3071
3072                 while (--j >= 0) {
3073                         if (deadcode || !*tptr) {
3074                                 s4ptr++; /* skip value */
3075                                 printf(" %d",*s4ptr++);
3076                         }
3077                         else {
3078                                 printf(" L%03d", ((basicblock *) *tptr)->debug_nr);
3079                                 tptr++;
3080                         }
3081                 }
3082                 break;
3083
3084         case ICMD_ARETURN:
3085                 if (iptr->val.a) {
3086                         printf(" (NOT RESOLVED), Class = \"");
3087                         utf_display(((unresolved_class *) iptr->val.a)->classref->name);
3088                         printf("\"");
3089                 }
3090         }
3091 }
3092
3093
3094 /*
3095  * These are local overrides for various environment variables in Emacs.
3096  * Please do not remove this and leave it at the end of the file, where
3097  * Emacs will automagically detect them.
3098  * ---------------------------------------------------------------------
3099  * Local variables:
3100  * mode: c
3101  * indent-tabs-mode: t
3102  * c-basic-offset: 4
3103  * tab-width: 4
3104  * End:
3105  */