OSDN Git Service

2007-06-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
[pf3gnuchains/gcc-fork.git] / gcc / java / expr.c
1 /* Process expressions for the GNU compiler for the Java(TM) language.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.  
21
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc.  */
25
26 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "real.h"
34 #include "rtl.h"
35 #include "flags.h"
36 #include "expr.h"
37 #include "java-tree.h"
38 #include "javaop.h"
39 #include "java-opcodes.h"
40 #include "jcf.h"
41 #include "java-except.h"
42 #include "parse.h"
43 #include "toplev.h"
44 #include "except.h"
45 #include "ggc.h"
46 #include "tree-gimple.h"
47 #include "target.h"
48
49 static void flush_quick_stack (void);
50 static void push_value (tree);
51 static tree pop_value (tree);
52 static void java_stack_swap (void);
53 static void java_stack_dup (int, int);
54 static void build_java_athrow (tree);
55 static void build_java_jsr (int, int);
56 static void build_java_ret (tree);
57 static void expand_java_multianewarray (tree, int);
58 static void expand_java_arraystore (tree);
59 static void expand_java_arrayload (tree);
60 static void expand_java_array_length (void);
61 static tree build_java_monitor (tree, tree);
62 static void expand_java_pushc (int, tree);
63 static void expand_java_return (tree);
64 static void expand_load_internal (int, tree, int);
65 static void expand_java_NEW (tree);
66 static void expand_java_INSTANCEOF (tree);
67 static void expand_java_CHECKCAST (tree);
68 static void expand_iinc (unsigned int, int, int);
69 static void expand_java_binop (tree, enum tree_code);
70 static void note_label (int, int);
71 static void expand_compare (enum tree_code, tree, tree, int);
72 static void expand_test (enum tree_code, tree, int);
73 static void expand_cond (enum tree_code, tree, int);
74 static void expand_java_goto (int);
75 static tree expand_java_switch (tree, int);
76 static void expand_java_add_case (tree, int, int);
77 static tree pop_arguments (tree); 
78 static void expand_invoke (int, int, int); 
79 static void expand_java_field_op (int, int, int); 
80 static void java_push_constant_from_pool (struct JCF *, int); 
81 static void java_stack_pop (int); 
82 static tree build_java_throw_out_of_bounds_exception (tree); 
83 static tree build_java_check_indexed_type (tree, tree); 
84 static unsigned char peek_opcode_at_pc (struct JCF *, int, int);
85 static void promote_arguments (void);
86 static void cache_cpool_data_ref (void);
87
88 static GTY(()) tree operand_type[59];
89
90 static GTY(()) tree methods_ident;
91 static GTY(()) tree ncode_ident;
92 tree dtable_ident = NULL_TREE;
93
94 /* Set to nonzero value in order to emit class initialization code
95    before static field references.  */
96 int always_initialize_class_p = 0;
97
98 /* We store the stack state in two places:
99    Within a basic block, we use the quick_stack, which is a
100    pushdown list (TREE_LISTs) of expression nodes.
101    This is the top part of the stack;  below that we use find_stack_slot.
102    At the end of a basic block, the quick_stack must be flushed
103    to the stack slot array (as handled by find_stack_slot).
104    Using quick_stack generates better code (especially when
105    compiled without optimization), because we do not have to
106    explicitly store and load trees to temporary variables.
107
108    If a variable is on the quick stack, it means the value of variable
109    when the quick stack was last flushed.  Conceptually, flush_quick_stack
110    saves all the quick_stack elements in parallel.  However, that is
111    complicated, so it actually saves them (i.e. copies each stack value
112    to is home virtual register) from low indexes.  This allows a quick_stack
113    element at index i (counting from the bottom of stack the) to references
114    slot virtuals for register that are >= i, but not those that are deeper.
115    This convention makes most operations easier.  For example iadd works
116    even when the stack contains (reg[0], reg[1]):  It results in the
117    stack containing (reg[0]+reg[1]), which is OK.  However, some stack
118    operations are more complicated.  For example dup given a stack
119    containing (reg[0]) would yield (reg[0], reg[0]), which would violate
120    the convention, since stack value 1 would refer to a register with
121    lower index (reg[0]), which flush_quick_stack does not safely handle.
122    So dup cannot just add an extra element to the quick_stack, but iadd can.
123 */
124
125 static GTY(()) tree quick_stack;
126
127 /* A free-list of unused permanent TREE_LIST nodes.  */
128 static GTY((deletable)) tree tree_list_free_list;
129
130 /* The physical memory page size used in this computer.  See
131    build_field_ref().  */
132 static GTY(()) tree page_size;
133
134 /* The stack pointer of the Java virtual machine.
135    This does include the size of the quick_stack. */
136
137 int stack_pointer;
138
139 const unsigned char *linenumber_table;
140 int linenumber_count;
141
142 /* Largest pc so far in this method that has been passed to lookup_label. */
143 int highest_label_pc_this_method = -1;
144
145 /* Base value for this method to add to pc to get generated label. */
146 int start_label_pc_this_method = 0;
147
148 void
149 init_expr_processing (void)
150 {
151   operand_type[21] = operand_type[54] = int_type_node;
152   operand_type[22] = operand_type[55] = long_type_node;
153   operand_type[23] = operand_type[56] = float_type_node;
154   operand_type[24] = operand_type[57] = double_type_node;
155   operand_type[25] = operand_type[58] = ptr_type_node;
156 }
157
158 tree
159 java_truthvalue_conversion (tree expr)
160 {
161   /* It is simpler and generates better code to have only TRUTH_*_EXPR
162      or comparison expressions as truth values at this level.
163
164      This function should normally be identity for Java.  */
165
166   switch (TREE_CODE (expr))
167     {
168     case EQ_EXPR:   case NE_EXPR:   case UNEQ_EXPR: case LTGT_EXPR:
169     case LE_EXPR:   case GE_EXPR:   case LT_EXPR:   case GT_EXPR:
170     case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
171     case ORDERED_EXPR: case UNORDERED_EXPR:
172     case TRUTH_ANDIF_EXPR:
173     case TRUTH_ORIF_EXPR:
174     case TRUTH_AND_EXPR:
175     case TRUTH_OR_EXPR:
176     case TRUTH_XOR_EXPR:
177     case TRUTH_NOT_EXPR:
178     case ERROR_MARK:
179       return expr;
180
181     case INTEGER_CST:
182       return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
183
184     case REAL_CST:
185       return real_zerop (expr) ? boolean_false_node : boolean_true_node;
186
187     /* are these legal? XXX JH */
188     case NEGATE_EXPR:
189     case ABS_EXPR:
190     case FLOAT_EXPR:
191       /* These don't change whether an object is nonzero or zero.  */
192       return java_truthvalue_conversion (TREE_OPERAND (expr, 0));
193
194     case COND_EXPR:
195       /* Distribute the conversion into the arms of a COND_EXPR.  */
196       return fold_build3 (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
197                           java_truthvalue_conversion (TREE_OPERAND (expr, 1)),
198                           java_truthvalue_conversion (TREE_OPERAND (expr, 2)));
199
200     case NOP_EXPR:
201       /* If this is widening the argument, we can ignore it.  */
202       if (TYPE_PRECISION (TREE_TYPE (expr))
203           >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
204         return java_truthvalue_conversion (TREE_OPERAND (expr, 0));
205       /* fall through to default */
206
207     default:
208       return fold_build2 (NE_EXPR, boolean_type_node,
209                           expr, boolean_false_node);
210     }
211 }
212
213 /* Save any stack slots that happen to be in the quick_stack into their
214    home virtual register slots.
215
216    The copy order is from low stack index to high, to support the invariant
217    that the expression for a slot may contain decls for stack slots with
218    higher (or the same) index, but not lower. */
219
220 static void
221 flush_quick_stack (void)
222 {
223   int stack_index = stack_pointer;
224   tree prev, cur, next;
225
226   /* First reverse the quick_stack, and count the number of slots it has. */
227   for (cur = quick_stack, prev = NULL_TREE; cur != NULL_TREE; cur = next)
228     {
229       next = TREE_CHAIN (cur);
230       TREE_CHAIN (cur) = prev;
231       prev = cur;
232       stack_index -= 1 + TYPE_IS_WIDE (TREE_TYPE (TREE_VALUE (cur)));
233     }
234   quick_stack = prev;
235
236   while (quick_stack != NULL_TREE)
237     {
238       tree decl;
239       tree node = quick_stack, type;
240       quick_stack = TREE_CHAIN (node);
241       TREE_CHAIN (node) = tree_list_free_list;
242       tree_list_free_list = node;
243       node = TREE_VALUE (node);
244       type = TREE_TYPE (node);
245
246       decl = find_stack_slot (stack_index, type);
247       if (decl != node)
248         java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (node), decl, node));
249       stack_index += 1 + TYPE_IS_WIDE (type);
250     }
251 }
252
253 /* Push TYPE on the type stack.
254    Return true on success, 0 on overflow. */
255
256 int
257 push_type_0 (tree type)
258 {
259   int n_words;
260   type = promote_type (type);
261   n_words = 1 + TYPE_IS_WIDE (type);
262   if (stack_pointer + n_words > DECL_MAX_STACK (current_function_decl))
263     return 0;
264   /* Allocate decl for this variable now, so we get a temporary that
265      survives the whole method. */
266   find_stack_slot (stack_pointer, type);
267   stack_type_map[stack_pointer++] = type;
268   n_words--;
269   while (--n_words >= 0)
270     stack_type_map[stack_pointer++] = TYPE_SECOND;
271   return 1;
272 }
273
274 void
275 push_type (tree type)
276 {
277   int r = push_type_0 (type);
278   gcc_assert (r);
279 }
280
281 static void
282 push_value (tree value)
283 {
284   tree type = TREE_TYPE (value);
285   if (TYPE_PRECISION (type) < 32 && INTEGRAL_TYPE_P (type))
286     {
287       type = promote_type (type);
288       value = convert (type, value);
289     }
290   push_type (type);
291   if (tree_list_free_list == NULL_TREE)
292     quick_stack = tree_cons (NULL_TREE, value, quick_stack);
293   else
294     {
295       tree node = tree_list_free_list;
296       tree_list_free_list = TREE_CHAIN (tree_list_free_list);
297       TREE_VALUE (node) = value;
298       TREE_CHAIN (node) = quick_stack;
299       quick_stack = node;
300     }
301   /* If the value has a side effect, then we need to evaluate it
302      whether or not the result is used.  If the value ends up on the
303      quick stack and is then popped, this won't happen -- so we flush
304      the quick stack.  It is safest to simply always flush, though,
305      since TREE_SIDE_EFFECTS doesn't capture COMPONENT_REF, and for
306      the latter we may need to strip conversions.  */
307   flush_quick_stack ();
308 }
309
310 /* Pop a type from the type stack.
311    TYPE is the expected type.   Return the actual type, which must be
312    convertible to TYPE.
313    On an error, *MESSAGEP is set to a freshly malloc'd error message. */
314
315 tree
316 pop_type_0 (tree type, char **messagep)
317 {
318   int n_words;
319   tree t;
320   *messagep = NULL;
321   if (TREE_CODE (type) == RECORD_TYPE)
322     type = promote_type (type);
323   n_words = 1 + TYPE_IS_WIDE (type);
324   if (stack_pointer < n_words)
325     {
326       *messagep = xstrdup ("stack underflow");
327       return type;
328     }
329   while (--n_words > 0)
330     {
331       if (stack_type_map[--stack_pointer] != void_type_node)
332         {
333           *messagep = xstrdup ("Invalid multi-word value on type stack");
334           return type;
335         }
336     }
337   t = stack_type_map[--stack_pointer];
338   if (type == NULL_TREE || t == type)
339     return t;
340   if (TREE_CODE (t) == TREE_LIST)
341     {      
342       do
343         {
344           tree tt = TREE_PURPOSE (t);
345           if (! can_widen_reference_to (tt, type))
346             {
347               t = tt;
348               goto fail;
349             }
350           t = TREE_CHAIN (t);
351         }
352       while (t);
353       return t;
354     }
355   if (INTEGRAL_TYPE_P (type) && INTEGRAL_TYPE_P (t)
356       && TYPE_PRECISION (type) <= 32 && TYPE_PRECISION (t) <= 32)
357     return t;
358   if (TREE_CODE (type) == POINTER_TYPE && TREE_CODE (t) == POINTER_TYPE)
359     {
360       /* If the expected type we've been passed is object or ptr
361          (i.e. void*), the caller needs to know the real type.  */
362       if (type == ptr_type_node || type == object_ptr_type_node)
363         return t;
364
365       /* Since the verifier has already run, we know that any
366          types we see will be compatible.  In BC mode, this fact
367          may be checked at runtime, but if that is so then we can
368          assume its truth here as well.  So, we always succeed
369          here, with the expected type.  */
370       return type;
371     }
372
373   if (! flag_verify_invocations && flag_indirect_dispatch
374       && t == object_ptr_type_node)
375     {
376       if (type != ptr_type_node)
377         warning (0, "need to insert runtime check for %s", 
378                  xstrdup (lang_printable_name (type, 0)));
379       return type;
380     }
381
382   /* lang_printable_name uses a static buffer, so we must save the result
383      from calling it the first time.  */
384  fail:
385   {
386     char *temp = xstrdup (lang_printable_name (type, 0));
387     /* If the stack contains a multi-word type, keep popping the stack until 
388        the real type is found.  */
389     while (t == void_type_node)
390       t = stack_type_map[--stack_pointer];
391     *messagep = concat ("expected type '", temp,
392                         "' but stack contains '", lang_printable_name (t, 0),
393                         "'", NULL);
394     free (temp);
395   }
396   return type;
397 }
398
399 /* Pop a type from the type stack.
400    TYPE is the expected type.  Return the actual type, which must be
401    convertible to TYPE, otherwise call error. */
402
403 tree
404 pop_type (tree type)
405 {
406   char *message = NULL;
407   type = pop_type_0 (type, &message);
408   if (message != NULL)
409     {
410       error ("%s", message);
411       free (message);
412     }
413   return type;
414 }
415
416 \f
417 /* Return true if two type assertions are equal.  */
418
419 static int
420 type_assertion_eq (const void * k1_p, const void * k2_p)
421 {
422   type_assertion k1 = *(type_assertion *)k1_p;
423   type_assertion k2 = *(type_assertion *)k2_p;
424   return (k1.assertion_code == k2.assertion_code
425           && k1.op1 == k2.op1
426           && k1.op2 == k2.op2);
427 }
428
429 /* Hash a type assertion.  */
430
431 static hashval_t
432 type_assertion_hash (const void *p)
433 {
434   const type_assertion *k_p = p;
435   hashval_t hash = iterative_hash (&k_p->assertion_code, sizeof
436                                    k_p->assertion_code, 0);
437   hash = iterative_hash (&k_p->op1, sizeof k_p->op1, hash);
438   return iterative_hash (&k_p->op2, sizeof k_p->op2, hash);
439 }
440
441 /* Add an entry to the type assertion table for the given class.  
442    CLASS is the class for which this assertion will be evaluated by the 
443    runtime during loading/initialization.
444    ASSERTION_CODE is the 'opcode' or type of this assertion: see java-tree.h.
445    OP1 and OP2 are the operands. The tree type of these arguments may be
446    specific to each assertion_code. */
447
448 void
449 add_type_assertion (tree class, int assertion_code, tree op1, tree op2)
450 {
451   htab_t assertions_htab;
452   type_assertion as;
453   void **as_pp;
454
455   assertions_htab = TYPE_ASSERTIONS (class);
456   if (assertions_htab == NULL)
457     {
458       assertions_htab = htab_create_ggc (7, type_assertion_hash, 
459                                          type_assertion_eq, NULL);
460       TYPE_ASSERTIONS (current_class) = assertions_htab;
461     }
462
463   as.assertion_code = assertion_code;
464   as.op1 = op1;
465   as.op2 = op2;
466
467   as_pp = htab_find_slot (assertions_htab, &as, INSERT);
468
469   /* Don't add the same assertion twice.  */
470   if (*as_pp)
471     return;
472
473   *as_pp = ggc_alloc (sizeof (type_assertion));
474   **(type_assertion **)as_pp = as;
475 }
476
477 \f
478 /* Return 1 if SOURCE_TYPE can be safely widened to TARGET_TYPE.
479    Handles array types and interfaces.  */
480
481 int
482 can_widen_reference_to (tree source_type, tree target_type)
483 {
484   if (source_type == ptr_type_node || target_type == object_ptr_type_node)
485     return 1;
486
487   /* Get rid of pointers  */
488   if (TREE_CODE (source_type) == POINTER_TYPE)
489     source_type = TREE_TYPE (source_type);
490   if (TREE_CODE (target_type) == POINTER_TYPE)
491     target_type = TREE_TYPE (target_type);
492
493   if (source_type == target_type)
494     return 1;
495
496   /* FIXME: This is very pessimistic, in that it checks everything,
497      even if we already know that the types are compatible.  If we're
498      to support full Java class loader semantics, we need this.
499      However, we could do something more optimal.  */
500   if (! flag_verify_invocations)
501     {
502       add_type_assertion (current_class, JV_ASSERT_TYPES_COMPATIBLE, 
503                           source_type, target_type);
504
505       if (!quiet_flag)
506        warning (0, "assert: %s is assign compatible with %s", 
507                 xstrdup (lang_printable_name (target_type, 0)),
508                 xstrdup (lang_printable_name (source_type, 0)));
509       /* Punt everything to runtime.  */
510       return 1;
511     }
512
513   if (TYPE_DUMMY (source_type) || TYPE_DUMMY (target_type))
514     {
515       return 1;
516     }
517   else
518     {
519       if (TYPE_ARRAY_P (source_type) || TYPE_ARRAY_P (target_type))
520         {
521           HOST_WIDE_INT source_length, target_length;
522           if (TYPE_ARRAY_P (source_type) != TYPE_ARRAY_P (target_type))
523             {
524               /* An array implements Cloneable and Serializable.  */
525               tree name = DECL_NAME (TYPE_NAME (target_type));
526               return (name == java_lang_cloneable_identifier_node
527                       || name == java_io_serializable_identifier_node);
528             }
529           target_length = java_array_type_length (target_type);
530           if (target_length >= 0)
531             {
532               source_length = java_array_type_length (source_type);
533               if (source_length != target_length)
534                 return 0;
535             }
536           source_type = TYPE_ARRAY_ELEMENT (source_type);
537           target_type = TYPE_ARRAY_ELEMENT (target_type);
538           if (source_type == target_type)
539             return 1;
540           if (TREE_CODE (source_type) != POINTER_TYPE
541               || TREE_CODE (target_type) != POINTER_TYPE)
542             return 0;
543           return can_widen_reference_to (source_type, target_type);
544         }
545       else
546         {
547           int source_depth = class_depth (source_type);
548           int target_depth = class_depth (target_type);
549
550           if (TYPE_DUMMY (source_type) || TYPE_DUMMY (target_type))
551             {
552               if (! quiet_flag)
553                 warning (0, "assert: %s is assign compatible with %s", 
554                          xstrdup (lang_printable_name (target_type, 0)),
555                          xstrdup (lang_printable_name (source_type, 0)));
556               return 1;
557             }
558
559           /* class_depth can return a negative depth if an error occurred */
560           if (source_depth < 0 || target_depth < 0)
561             return 0;
562
563           if (CLASS_INTERFACE (TYPE_NAME (target_type)))
564             {
565               /* target_type is OK if source_type or source_type ancestors
566                  implement target_type. We handle multiple sub-interfaces  */
567               tree binfo, base_binfo;
568               int i;
569
570               for (binfo = TYPE_BINFO (source_type), i = 0;
571                    BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
572                 if (can_widen_reference_to
573                     (BINFO_TYPE (base_binfo), target_type))
574                   return 1;
575               
576               if (!i)
577                 return 0;
578             }
579
580           for ( ; source_depth > target_depth;  source_depth--) 
581             {
582               source_type
583                 = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (source_type), 0));
584             }
585           return source_type == target_type;
586         }
587     }
588 }
589
590 static tree
591 pop_value (tree type)
592 {
593   type = pop_type (type);
594   if (quick_stack)
595     {
596       tree node = quick_stack;
597       quick_stack = TREE_CHAIN (quick_stack);
598       TREE_CHAIN (node) = tree_list_free_list;
599       tree_list_free_list = node;
600       node = TREE_VALUE (node);
601       return node;
602     }
603   else
604     return find_stack_slot (stack_pointer, promote_type (type));
605 }
606
607
608 /* Pop and discard the top COUNT stack slots. */
609
610 static void
611 java_stack_pop (int count)
612 {
613   while (count > 0)
614     {
615       tree type, val;
616
617       gcc_assert (stack_pointer != 0);
618
619       type = stack_type_map[stack_pointer - 1];
620       if (type == TYPE_SECOND)
621         {
622           count--;
623           gcc_assert (stack_pointer != 1 && count > 0);
624
625           type = stack_type_map[stack_pointer - 2];
626         }
627       val = pop_value (type);
628       count--;
629     }
630 }
631
632 /* Implement the 'swap' operator (to swap two top stack slots). */
633
634 static void
635 java_stack_swap (void)
636 {
637   tree type1, type2;
638   tree temp;
639   tree decl1, decl2;
640
641   if (stack_pointer < 2
642       || (type1 = stack_type_map[stack_pointer - 1]) == TYPE_UNKNOWN
643       || (type2 = stack_type_map[stack_pointer - 2]) == TYPE_UNKNOWN
644       || type1 == TYPE_SECOND || type2 == TYPE_SECOND
645       || TYPE_IS_WIDE (type1) || TYPE_IS_WIDE (type2))
646     /* Bad stack swap.  */
647     abort ();
648   /* Bad stack swap.  */
649
650   flush_quick_stack ();
651   decl1 = find_stack_slot (stack_pointer - 1, type1);
652   decl2 = find_stack_slot (stack_pointer - 2, type2);
653   temp = build_decl (VAR_DECL, NULL_TREE, type1);
654   java_add_local_var (temp);
655   java_add_stmt (build2 (MODIFY_EXPR, type1, temp, decl1));
656   java_add_stmt (build2 (MODIFY_EXPR, type2, 
657                          find_stack_slot (stack_pointer - 1, type2),
658                          decl2));
659   java_add_stmt (build2 (MODIFY_EXPR, type1, 
660                          find_stack_slot (stack_pointer - 2, type1),
661                          temp));
662   stack_type_map[stack_pointer - 1] = type2;
663   stack_type_map[stack_pointer - 2] = type1;
664 }
665
666 static void
667 java_stack_dup (int size, int offset)
668 {
669   int low_index = stack_pointer - size - offset;
670   int dst_index;
671   if (low_index < 0)
672     error ("stack underflow - dup* operation");
673
674   flush_quick_stack ();
675
676   stack_pointer += size;
677   dst_index = stack_pointer;
678
679   for (dst_index = stack_pointer;  --dst_index >= low_index; )
680     {
681       tree type;
682       int src_index = dst_index - size;
683       if (src_index < low_index)
684         src_index = dst_index + size + offset;
685       type = stack_type_map [src_index];
686       if (type == TYPE_SECOND)
687         {
688           /* Dup operation splits 64-bit number.  */
689           gcc_assert (src_index > low_index);
690
691           stack_type_map[dst_index] = type;
692           src_index--;  dst_index--;
693           type = stack_type_map[src_index];
694           gcc_assert (TYPE_IS_WIDE (type));
695         }
696       else
697         gcc_assert (! TYPE_IS_WIDE (type));
698
699       if (src_index != dst_index)
700         {
701           tree src_decl = find_stack_slot (src_index, type);
702           tree dst_decl = find_stack_slot (dst_index, type);
703
704           java_add_stmt 
705             (build2 (MODIFY_EXPR, TREE_TYPE (dst_decl), dst_decl, src_decl));
706           stack_type_map[dst_index] = type;
707         }
708     }
709 }
710
711 /* Calls _Jv_Throw or _Jv_Sjlj_Throw.  Discard the contents of the
712    value stack. */
713
714 static void
715 build_java_athrow (tree node)
716 {
717   tree call;
718
719   call = build_call_nary (void_type_node,
720                           build_address_of (throw_node),
721                           1, node);
722   TREE_SIDE_EFFECTS (call) = 1;
723   java_add_stmt (call);
724   java_stack_pop (stack_pointer);
725 }
726
727 /* Implementation for jsr/ret */
728
729 static void
730 build_java_jsr (int target_pc, int return_pc)
731 {
732   tree where =  lookup_label (target_pc);
733   tree ret = lookup_label (return_pc);
734   tree ret_label = fold_build1 (ADDR_EXPR, return_address_type_node, ret);
735   push_value (ret_label);
736   flush_quick_stack ();
737   java_add_stmt (build1 (GOTO_EXPR, void_type_node, where));
738
739   /* Do not need to emit the label here.  We noted the existence of the
740      label as a jump target in note_instructions; we'll emit the label
741      for real at the beginning of the expand_byte_code loop.  */
742 }
743
744 static void
745 build_java_ret (tree location)
746 {
747   java_add_stmt (build1 (GOTO_EXPR, void_type_node, location));
748 }
749  
750 /* Implementation of operations on array: new, load, store, length */
751
752 tree
753 decode_newarray_type (int atype)
754 {
755   switch (atype)
756     {
757     case 4:  return boolean_type_node;
758     case 5:  return char_type_node;
759     case 6:  return float_type_node;
760     case 7:  return double_type_node;
761     case 8:  return byte_type_node;
762     case 9:  return short_type_node;
763     case 10: return int_type_node;
764     case 11: return long_type_node;
765     default: return NULL_TREE;
766     }
767 }
768
769 /* Map primitive type to the code used by OPCODE_newarray. */
770
771 int
772 encode_newarray_type (tree type)
773 {
774   if (type == boolean_type_node)
775     return 4;
776   else if (type == char_type_node)
777     return 5;
778   else if (type == float_type_node)
779     return 6;
780   else if (type == double_type_node)
781     return 7;
782   else if (type == byte_type_node)
783     return 8;
784   else if (type == short_type_node)
785     return 9;
786   else if (type == int_type_node)
787     return 10;
788   else if (type == long_type_node)
789     return 11;
790   else
791     gcc_unreachable ();
792 }
793
794 /* Build a call to _Jv_ThrowBadArrayIndex(), the
795    ArrayIndexOfBoundsException exception handler.  */
796
797 static tree
798 build_java_throw_out_of_bounds_exception (tree index)
799 {
800   tree node = build_call_nary (int_type_node,
801                                build_address_of (soft_badarrayindex_node),
802                                1, index);
803   TREE_SIDE_EFFECTS (node) = 1; /* Allows expansion within ANDIF */
804   return (node);
805 }
806
807 /* Return the length of an array. Doesn't perform any checking on the nature
808    or value of the array NODE. May be used to implement some bytecodes.  */
809
810 tree
811 build_java_array_length_access (tree node)
812 {
813   tree type = TREE_TYPE (node);
814   tree array_type = TREE_TYPE (type);
815   HOST_WIDE_INT length;
816
817   if (!is_array_type_p (type))
818     {
819       /* With the new verifier, we will see an ordinary pointer type
820          here.  In this case, we just use an arbitrary array type.  */
821       array_type = build_java_array_type (object_ptr_type_node, -1);
822       type = promote_type (array_type);
823     }
824
825   length = java_array_type_length (type);
826   if (length >= 0)
827     return build_int_cst (NULL_TREE, length);
828
829   node = build3 (COMPONENT_REF, int_type_node,
830                  build_java_indirect_ref (array_type, node,
831                                           flag_check_references),
832                  lookup_field (&array_type, get_identifier ("length")),
833                  NULL_TREE);
834   IS_ARRAY_LENGTH_ACCESS (node) = 1;
835   return node;
836 }
837
838 /* Optionally checks a reference against the NULL pointer.  ARG1: the
839    expr, ARG2: we should check the reference.  Don't generate extra
840    checks if we're not generating code.  */
841
842 tree 
843 java_check_reference (tree expr, int check)
844 {
845   if (!flag_syntax_only && check)
846     {
847       expr = save_expr (expr);
848       expr = build3 (COND_EXPR, TREE_TYPE (expr),
849                      build2 (EQ_EXPR, boolean_type_node,
850                              expr, null_pointer_node),
851                      build_call_nary (void_type_node, 
852                                       build_address_of (soft_nullpointer_node),
853                                       0),
854                      expr);
855     }
856
857   return expr;
858 }
859
860 /* Reference an object: just like an INDIRECT_REF, but with checking.  */
861
862 tree
863 build_java_indirect_ref (tree type, tree expr, int check)
864 {
865   tree t;
866   t = java_check_reference (expr, check);
867   t = convert (build_pointer_type (type), t);
868   return build1 (INDIRECT_REF, type, t);
869 }
870
871 /* Implement array indexing (either as l-value or r-value).
872    Returns a tree for ARRAY[INDEX], assume TYPE is the element type.
873    Optionally performs bounds checking and/or test to NULL.
874    At this point, ARRAY should have been verified as an array.  */
875
876 tree
877 build_java_arrayaccess (tree array, tree type, tree index)
878 {
879   tree node, throw = NULL_TREE;
880   tree data_field;
881   tree ref;
882   tree array_type = TREE_TYPE (TREE_TYPE (array));
883   tree size_exp = fold_convert (sizetype, size_in_bytes (type));
884
885   if (!is_array_type_p (TREE_TYPE (array)))
886     {
887       /* With the new verifier, we will see an ordinary pointer type
888          here.  In this case, we just use the correct array type.  */
889       array_type = build_java_array_type (type, -1);
890     }
891
892   if (flag_bounds_check)
893     {
894       /* Generate:
895        * (unsigned jint) INDEX >= (unsigned jint) LEN
896        *    && throw ArrayIndexOutOfBoundsException.
897        * Note this is equivalent to and more efficient than:
898        * INDEX < 0 || INDEX >= LEN && throw ... */
899       tree test;
900       tree len = convert (unsigned_int_type_node,
901                           build_java_array_length_access (array));
902       test = fold_build2 (GE_EXPR, boolean_type_node, 
903                           convert (unsigned_int_type_node, index),
904                           len);
905       if (! integer_zerop (test))
906         {
907           throw = build2 (TRUTH_ANDIF_EXPR, int_type_node, test,
908                           build_java_throw_out_of_bounds_exception (index));
909           /* allows expansion within COMPOUND */
910           TREE_SIDE_EFFECTS( throw ) = 1;
911         }
912     }
913
914   /* If checking bounds, wrap the index expr with a COMPOUND_EXPR in order
915      to have the bounds check evaluated first. */
916   if (throw != NULL_TREE)
917     index = build2 (COMPOUND_EXPR, int_type_node, throw, index);
918
919   data_field = lookup_field (&array_type, get_identifier ("data"));
920
921   ref = build3 (COMPONENT_REF, TREE_TYPE (data_field),    
922                 build_java_indirect_ref (array_type, array, 
923                                          flag_check_references),
924                 data_field, NULL_TREE);
925
926   /* Take the address of the data field and convert it to a pointer to
927      the element type.  */
928   node = build1 (NOP_EXPR, build_pointer_type (type), build_address_of (ref));
929
930   /* Multiply the index by the size of an element to obtain a byte
931      offset.  Convert the result to a pointer to the element type.  */
932   index = build2 (MULT_EXPR, sizetype, 
933                   fold_convert (sizetype, index), 
934                   size_exp);
935
936   /* Sum the byte offset and the address of the data field.  */
937   node = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (node), node, index);
938
939   /* Finally, return
940
941     *((&array->data) + index*size_exp)
942
943   */
944   return build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (node)), node);
945 }
946
947 /* Generate code to throw an ArrayStoreException if OBJECT is not assignable
948    (at runtime) to an element of ARRAY.  A NOP_EXPR is returned if it can
949    determine that no check is required. */
950
951 tree
952 build_java_arraystore_check (tree array, tree object)
953 {
954   tree check, element_type, source;
955   tree array_type_p = TREE_TYPE (array);
956   tree object_type = TYPE_NAME (TREE_TYPE (TREE_TYPE (object)));
957
958   if (! flag_verify_invocations)
959     {
960       /* With the new verifier, we don't track precise types.  FIXME:
961          performance regression here.  */
962       element_type = TYPE_NAME (object_type_node);
963     }
964   else
965     {
966       gcc_assert (is_array_type_p (array_type_p));
967
968       /* Get the TYPE_DECL for ARRAY's element type. */
969       element_type
970         = TYPE_NAME (TREE_TYPE (TREE_TYPE (TREE_TYPE (array_type_p))));
971     }
972
973   gcc_assert (TREE_CODE (element_type) == TYPE_DECL
974               && TREE_CODE (object_type) == TYPE_DECL);
975
976   if (!flag_store_check)
977     return build1 (NOP_EXPR, array_type_p, array);
978
979   /* No check is needed if the element type is final.  Also check that
980      element_type matches object_type, since in the bytecode
981      compilation case element_type may be the actual element type of
982      the array rather than its declared type.  However, if we're doing
983      indirect dispatch, we can't do the `final' optimization.  */
984   if (element_type == object_type
985       && ! flag_indirect_dispatch
986       && CLASS_FINAL (element_type))
987     return build1 (NOP_EXPR, array_type_p, array);
988   
989   /* OBJECT might be wrapped by a SAVE_EXPR. */
990   if (TREE_CODE (object) == SAVE_EXPR)
991     source = TREE_OPERAND (object, 0);
992   else
993     source = object;
994   
995   /* Avoid the check if OBJECT was just loaded from the same array. */
996   if (TREE_CODE (source) == ARRAY_REF)
997     {
998       tree target;
999       source = TREE_OPERAND (source, 0); /* COMPONENT_REF. */
1000       source = TREE_OPERAND (source, 0); /* INDIRECT_REF. */
1001       source = TREE_OPERAND (source, 0); /* Source array's DECL or SAVE_EXPR. */
1002       if (TREE_CODE (source) == SAVE_EXPR)
1003         source = TREE_OPERAND (source, 0);
1004       
1005       target = array;
1006       if (TREE_CODE (target) == SAVE_EXPR)
1007         target = TREE_OPERAND (target, 0);
1008       
1009       if (source == target)
1010         return build1 (NOP_EXPR, array_type_p, array);
1011     }
1012
1013   /* Build an invocation of _Jv_CheckArrayStore */
1014   check = build_call_nary (void_type_node,
1015                            build_address_of (soft_checkarraystore_node),
1016                            2, array, object);
1017   TREE_SIDE_EFFECTS (check) = 1;
1018
1019   return check;
1020 }
1021
1022 /* Makes sure that INDEXED_TYPE is appropriate. If not, make it from
1023    ARRAY_NODE. This function is used to retrieve something less vague than
1024    a pointer type when indexing the first dimension of something like [[<t>.
1025    May return a corrected type, if necessary, otherwise INDEXED_TYPE is
1026    return unchanged.  */
1027
1028 static tree
1029 build_java_check_indexed_type (tree array_node ATTRIBUTE_UNUSED,
1030                                tree indexed_type)
1031 {
1032   /* We used to check to see if ARRAY_NODE really had array type.
1033      However, with the new verifier, this is not necessary, as we know
1034      that the object will be an array of the appropriate type.  */
1035
1036   return indexed_type;
1037 }
1038
1039 /* newarray triggers a call to _Jv_NewPrimArray. This function should be 
1040    called with an integer code (the type of array to create), and the length
1041    of the array to create.  */
1042
1043 tree
1044 build_newarray (int atype_value, tree length)
1045 {
1046   tree type_arg;
1047
1048   tree prim_type = decode_newarray_type (atype_value);
1049   tree type
1050     = build_java_array_type (prim_type,
1051                              host_integerp (length, 0) == INTEGER_CST
1052                              ? tree_low_cst (length, 0) : -1);
1053
1054   /* Pass a reference to the primitive type class and save the runtime
1055      some work.  */
1056   type_arg = build_class_ref (prim_type);
1057
1058   return build_call_nary (promote_type (type),
1059                           build_address_of (soft_newarray_node),
1060                           2, type_arg, length);
1061 }
1062
1063 /* Generates anewarray from a given CLASS_TYPE. Gets from the stack the size
1064    of the dimension. */
1065
1066 tree
1067 build_anewarray (tree class_type, tree length)
1068 {
1069   tree type
1070     = build_java_array_type (class_type,
1071                              host_integerp (length, 0)
1072                              ? tree_low_cst (length, 0) : -1);
1073
1074   return build_call_nary (promote_type (type),
1075                           build_address_of (soft_anewarray_node),
1076                           3,
1077                           length,
1078                           build_class_ref (class_type),
1079                           null_pointer_node);
1080 }
1081
1082 /* Return a node the evaluates 'new TYPE[LENGTH]'. */
1083
1084 tree
1085 build_new_array (tree type, tree length)
1086 {
1087   if (JPRIMITIVE_TYPE_P (type))
1088     return build_newarray (encode_newarray_type (type), length);
1089   else
1090     return build_anewarray (TREE_TYPE (type), length);
1091 }
1092
1093 /* Generates a call to _Jv_NewMultiArray. multianewarray expects a
1094    class pointer, a number of dimensions and the matching number of
1095    dimensions. The argument list is NULL terminated.  */
1096
1097 static void
1098 expand_java_multianewarray (tree class_type, int ndim)
1099 {
1100   int i;
1101   tree args = build_tree_list( NULL_TREE, null_pointer_node );
1102
1103   for( i = 0; i < ndim; i++ )
1104     args = tree_cons (NULL_TREE, pop_value (int_type_node), args);
1105
1106   args = tree_cons (NULL_TREE,
1107                     build_class_ref (class_type),
1108                     tree_cons (NULL_TREE, 
1109                                build_int_cst (NULL_TREE, ndim),
1110                                args));
1111
1112   push_value (build_call_list (promote_type (class_type),
1113                                build_address_of (soft_multianewarray_node),
1114                                args));
1115 }
1116
1117 /*  ARRAY[INDEX] <- RHS. build_java_check_indexed_type makes sure that
1118     ARRAY is an array type. May expand some bound checking and NULL
1119     pointer checking. RHS_TYPE_NODE we are going to store. In the case
1120     of the CHAR/BYTE/BOOLEAN SHORT, the type popped of the stack is an
1121     INT. In those cases, we make the conversion.
1122
1123     if ARRAy is a reference type, the assignment is checked at run-time
1124     to make sure that the RHS can be assigned to the array element
1125     type. It is not necessary to generate this code if ARRAY is final.  */
1126
1127 static void
1128 expand_java_arraystore (tree rhs_type_node)
1129 {
1130   tree rhs_node    = pop_value ((INTEGRAL_TYPE_P (rhs_type_node) 
1131                                  && TYPE_PRECISION (rhs_type_node) <= 32) ? 
1132                                  int_type_node : rhs_type_node);
1133   tree index = pop_value (int_type_node);
1134   tree array_type, array, temp, access;
1135
1136   /* If we're processing an `aaload' we might as well just pick
1137      `Object'.  */
1138   if (TREE_CODE (rhs_type_node) == POINTER_TYPE)
1139     {
1140       array_type = build_java_array_type (object_ptr_type_node, -1);
1141       rhs_type_node = object_ptr_type_node;
1142     }
1143   else
1144     array_type = build_java_array_type (rhs_type_node, -1);
1145
1146   array = pop_value (array_type);
1147   array = build1 (NOP_EXPR, promote_type (array_type), array);
1148
1149   rhs_type_node    = build_java_check_indexed_type (array, rhs_type_node);
1150
1151   flush_quick_stack ();
1152
1153   index = save_expr (index);
1154   array = save_expr (array);
1155
1156   /* We want to perform the bounds check (done by
1157      build_java_arrayaccess) before the type check (done by
1158      build_java_arraystore_check).  So, we call build_java_arrayaccess
1159      -- which returns an ARRAY_REF lvalue -- and we then generate code
1160      to stash the address of that lvalue in a temp.  Then we call
1161      build_java_arraystore_check, and finally we generate a
1162      MODIFY_EXPR to set the array element.  */
1163
1164   access = build_java_arrayaccess (array, rhs_type_node, index);
1165   temp = build_decl (VAR_DECL, NULL_TREE, 
1166                      build_pointer_type (TREE_TYPE (access)));
1167   java_add_local_var (temp);
1168   java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (temp),
1169                          temp, 
1170                          build_fold_addr_expr (access)));
1171
1172   if (TREE_CODE (rhs_type_node) == POINTER_TYPE)
1173     {
1174       tree check = build_java_arraystore_check (array, rhs_node);
1175       java_add_stmt (check);
1176     }
1177   
1178   java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (access), 
1179                          build1 (INDIRECT_REF, TREE_TYPE (access), temp),
1180                          rhs_node));  
1181 }
1182
1183 /* Expand the evaluation of ARRAY[INDEX]. build_java_check_indexed_type makes 
1184    sure that LHS is an array type. May expand some bound checking and NULL
1185    pointer checking.  
1186    LHS_TYPE_NODE is the type of ARRAY[INDEX]. But in the case of CHAR/BYTE/
1187    BOOLEAN/SHORT, we push a promoted type back to the stack.
1188 */
1189
1190 static void
1191 expand_java_arrayload (tree lhs_type_node)
1192 {
1193   tree load_node;
1194   tree index_node = pop_value (int_type_node);
1195   tree array_type;
1196   tree array_node;
1197
1198   /* If we're processing an `aaload' we might as well just pick
1199      `Object'.  */
1200   if (TREE_CODE (lhs_type_node) == POINTER_TYPE)
1201     {
1202       array_type = build_java_array_type (object_ptr_type_node, -1);
1203       lhs_type_node = object_ptr_type_node;
1204     }
1205   else
1206     array_type = build_java_array_type (lhs_type_node, -1);
1207   array_node = pop_value (array_type);
1208   array_node = build1 (NOP_EXPR, promote_type (array_type), array_node);
1209
1210   index_node = save_expr (index_node);
1211   array_node = save_expr (array_node);
1212
1213   lhs_type_node = build_java_check_indexed_type (array_node,
1214                                                  lhs_type_node);
1215   load_node = build_java_arrayaccess (array_node,
1216                                       lhs_type_node,
1217                                       index_node);
1218   if (INTEGRAL_TYPE_P (lhs_type_node) && TYPE_PRECISION (lhs_type_node) <= 32)
1219     load_node = fold_build1 (NOP_EXPR, int_type_node, load_node);
1220   push_value (load_node);
1221 }
1222
1223 /* Expands .length. Makes sure that we deal with and array and may expand
1224    a NULL check on the array object.  */
1225
1226 static void
1227 expand_java_array_length (void)
1228 {
1229   tree array  = pop_value (ptr_type_node);
1230   tree length = build_java_array_length_access (array);
1231
1232   push_value (length);
1233 }
1234
1235 /* Emit code for the call to _Jv_Monitor{Enter,Exit}. CALL can be
1236    either soft_monitorenter_node or soft_monitorexit_node.  */
1237
1238 static tree
1239 build_java_monitor (tree call, tree object)
1240 {
1241   return build_call_nary (void_type_node,
1242                           build_address_of (call),
1243                           1, object);
1244 }
1245
1246 /* Emit code for one of the PUSHC instructions. */
1247
1248 static void
1249 expand_java_pushc (int ival, tree type)
1250 {
1251   tree value;
1252   if (type == ptr_type_node && ival == 0)
1253     value = null_pointer_node;
1254   else if (type == int_type_node || type == long_type_node)
1255     value = build_int_cst (type, ival);
1256   else if (type == float_type_node || type == double_type_node)
1257     {
1258       REAL_VALUE_TYPE x;
1259       REAL_VALUE_FROM_INT (x, ival, 0, TYPE_MODE (type));
1260       value = build_real (type, x);
1261     }
1262   else
1263     gcc_unreachable ();
1264
1265   push_value (value);
1266 }
1267
1268 static void
1269 expand_java_return (tree type)
1270 {
1271   if (type == void_type_node)
1272     java_add_stmt (build1 (RETURN_EXPR, void_type_node, NULL));   
1273   else
1274     {
1275       tree retval = pop_value (type);
1276       tree res = DECL_RESULT (current_function_decl);
1277       retval = build2 (MODIFY_EXPR, TREE_TYPE (res), res, retval);
1278
1279       /* Handle the situation where the native integer type is smaller
1280          than the JVM integer. It can happen for many cross compilers.
1281          The whole if expression just goes away if INT_TYPE_SIZE < 32
1282          is false. */
1283       if (INT_TYPE_SIZE < 32
1284           && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (res)))
1285               < GET_MODE_SIZE (TYPE_MODE (type))))
1286         retval = build1(NOP_EXPR, TREE_TYPE(res), retval);
1287       
1288       TREE_SIDE_EFFECTS (retval) = 1;
1289       java_add_stmt (build1 (RETURN_EXPR, TREE_TYPE (retval), retval));
1290     }
1291 }
1292
1293 static void
1294 expand_load_internal (int index, tree type, int pc)
1295 {
1296   tree copy;
1297   tree var = find_local_variable (index, type, pc);
1298
1299   /* Now VAR is the VAR_DECL (or PARM_DECL) that we are going to push
1300      on the stack.  If there is an assignment to this VAR_DECL between
1301      the stack push and the use, then the wrong code could be
1302      generated.  To avoid this we create a new local and copy our
1303      value into it.  Then we push this new local on the stack.
1304      Hopefully this all gets optimized out.  */
1305   copy = build_decl (VAR_DECL, NULL_TREE, type);
1306   if ((INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
1307       && TREE_TYPE (copy) != TREE_TYPE (var))
1308     var = convert (type, var);
1309   java_add_local_var (copy);
1310   java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (var), copy, var));
1311   
1312   push_value (copy);
1313 }
1314
1315 tree
1316 build_address_of (tree value)
1317 {
1318   return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (value)), value);
1319 }
1320
1321 bool
1322 class_has_finalize_method (tree type)
1323 {
1324   tree super = CLASSTYPE_SUPER (type);
1325
1326   if (super == NULL_TREE)
1327     return false;       /* Every class with a real finalizer inherits   */
1328                         /* from java.lang.Object.                       */
1329   else
1330     return HAS_FINALIZER_P (type) || class_has_finalize_method (super);
1331 }
1332
1333 tree
1334 java_create_object (tree type)
1335 {
1336   tree alloc_node = (class_has_finalize_method (type) 
1337                      ? alloc_object_node
1338                      : alloc_no_finalizer_node);
1339   
1340   return build_call_nary (promote_type (type),
1341                           build_address_of (alloc_node),
1342                           1, build_class_ref (type));
1343 }
1344
1345 static void
1346 expand_java_NEW (tree type)
1347 {
1348   tree alloc_node;
1349
1350   alloc_node = (class_has_finalize_method (type) ? alloc_object_node
1351                                                  : alloc_no_finalizer_node);
1352   if (! CLASS_LOADED_P (type))
1353     load_class (type, 1);
1354   safe_layout_class (type);
1355   push_value (build_call_nary (promote_type (type),
1356                                build_address_of (alloc_node),
1357                                1, build_class_ref (type)));
1358 }
1359
1360 /* This returns an expression which will extract the class of an
1361    object.  */
1362
1363 tree
1364 build_get_class (tree value)
1365 {
1366   tree class_field = lookup_field (&dtable_type, get_identifier ("class"));
1367   tree vtable_field = lookup_field (&object_type_node,
1368                                     get_identifier ("vtable"));
1369   tree tmp = build3 (COMPONENT_REF, dtable_ptr_type,
1370                      build_java_indirect_ref (object_type_node, value,
1371                                               flag_check_references),
1372                      vtable_field, NULL_TREE);
1373   return build3 (COMPONENT_REF, class_ptr_type,
1374                  build1 (INDIRECT_REF, dtable_type, tmp),
1375                  class_field, NULL_TREE);
1376 }
1377
1378 /* This builds the tree representation of the `instanceof' operator.
1379    It tries various tricks to optimize this in cases where types are
1380    known.  */
1381
1382 tree
1383 build_instanceof (tree value, tree type)
1384 {
1385   tree expr;
1386   tree itype = TREE_TYPE (TREE_TYPE (soft_instanceof_node));
1387   tree valtype = TREE_TYPE (TREE_TYPE (value));
1388   tree valclass = TYPE_NAME (valtype);
1389   tree klass;
1390
1391   /* When compiling from bytecode, we need to ensure that TYPE has
1392      been loaded.  */
1393   if (CLASS_P (type) && ! CLASS_LOADED_P (type))
1394     {
1395       load_class (type, 1);
1396       safe_layout_class (type);
1397       if (! TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) == ERROR_MARK)
1398         return error_mark_node;
1399     }
1400   klass = TYPE_NAME (type);
1401
1402   if (type == object_type_node || inherits_from_p (valtype, type))
1403     {
1404       /* Anything except `null' is an instance of Object.  Likewise,
1405          if the object is known to be an instance of the class, then
1406          we only need to check for `null'.  */
1407       expr = build2 (NE_EXPR, itype, value, null_pointer_node);
1408     }
1409   else if (flag_verify_invocations
1410            && ! TYPE_ARRAY_P (type)
1411            && ! TYPE_ARRAY_P (valtype)
1412            && DECL_P (klass) && DECL_P (valclass)
1413            && ! CLASS_INTERFACE (valclass)
1414            && ! CLASS_INTERFACE (klass)
1415            && ! inherits_from_p (type, valtype)
1416            && (CLASS_FINAL (klass)
1417                || ! inherits_from_p (valtype, type)))
1418     {
1419       /* The classes are from different branches of the derivation
1420          tree, so we immediately know the answer.  */
1421       expr = boolean_false_node;
1422     }
1423   else if (DECL_P (klass) && CLASS_FINAL (klass))
1424     {
1425       tree save = save_expr (value);
1426       expr = build3 (COND_EXPR, itype,
1427                      build2 (NE_EXPR, boolean_type_node,
1428                              save, null_pointer_node),
1429                      build2 (EQ_EXPR, itype,
1430                              build_get_class (save),
1431                              build_class_ref (type)),
1432                      boolean_false_node);
1433     }
1434   else
1435     {
1436       expr = build_call_nary (itype,
1437                               build_address_of (soft_instanceof_node),
1438                               2, value, build_class_ref (type));
1439     }
1440   TREE_SIDE_EFFECTS (expr) = TREE_SIDE_EFFECTS (value);
1441   return expr;
1442 }
1443
1444 static void
1445 expand_java_INSTANCEOF (tree type)
1446 {
1447   tree value = pop_value (object_ptr_type_node);
1448   value = build_instanceof (value, type);
1449   push_value (value);
1450 }
1451
1452 static void
1453 expand_java_CHECKCAST (tree type)
1454 {
1455   tree value = pop_value (ptr_type_node);
1456   value = build_call_nary (promote_type (type),
1457                            build_address_of (soft_checkcast_node),
1458                            2, build_class_ref (type), value);
1459   push_value (value);
1460 }
1461
1462 static void
1463 expand_iinc (unsigned int local_var_index, int ival, int pc)
1464 {
1465   tree local_var, res;
1466   tree constant_value;
1467
1468   flush_quick_stack ();
1469   local_var = find_local_variable (local_var_index, int_type_node, pc);
1470   constant_value = build_int_cst (NULL_TREE, ival);
1471   res = fold_build2 (PLUS_EXPR, int_type_node, local_var, constant_value);
1472   java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (local_var), local_var, res));
1473 }
1474
1475
1476 tree
1477 build_java_soft_divmod (enum tree_code op, tree type, tree op1, tree op2)
1478 {
1479   tree call = NULL;
1480   tree arg1 = convert (type, op1);
1481   tree arg2 = convert (type, op2);
1482
1483   if (type == int_type_node)
1484     {     
1485       switch (op)
1486         {
1487         case TRUNC_DIV_EXPR:
1488           call = soft_idiv_node;
1489           break;
1490         case TRUNC_MOD_EXPR:
1491           call = soft_irem_node;
1492           break;
1493         default:
1494           break;
1495         }
1496     }
1497   else if (type == long_type_node)
1498     {     
1499       switch (op)
1500         {
1501         case TRUNC_DIV_EXPR:
1502           call = soft_ldiv_node;
1503           break;
1504         case TRUNC_MOD_EXPR:
1505           call = soft_lrem_node;
1506           break;
1507         default:
1508           break;
1509         }
1510     }
1511
1512   gcc_assert (call);
1513   call = build_call_nary (type, build_address_of (call), 2, arg1, arg2);
1514   return call;
1515 }
1516
1517 tree
1518 build_java_binop (enum tree_code op, tree type, tree arg1, tree arg2)
1519 {
1520   tree mask;
1521   switch (op)
1522     {
1523     case URSHIFT_EXPR:
1524       {
1525         tree u_type = unsigned_type_for (type);
1526         arg1 = convert (u_type, arg1);
1527         arg1 = build_java_binop (RSHIFT_EXPR, u_type, arg1, arg2);
1528         return convert (type, arg1);
1529       }
1530     case LSHIFT_EXPR:
1531     case RSHIFT_EXPR:
1532       mask = build_int_cst (NULL_TREE,
1533                             TYPE_PRECISION (TREE_TYPE (arg1)) - 1);
1534       arg2 = fold_build2 (BIT_AND_EXPR, int_type_node, arg2, mask);
1535       break;
1536
1537     case COMPARE_L_EXPR:  /* arg1 > arg2 ?  1 : arg1 == arg2 ? 0 : -1 */
1538     case COMPARE_G_EXPR:  /* arg1 < arg2 ? -1 : arg1 == arg2 ? 0 :  1 */
1539       arg1 = save_expr (arg1);  arg2 = save_expr (arg2);
1540       {
1541         tree ifexp1 = fold_build2 (op == COMPARE_L_EXPR ? GT_EXPR : LT_EXPR,
1542                                    boolean_type_node, arg1, arg2);
1543         tree ifexp2 = fold_build2 (EQ_EXPR, boolean_type_node, arg1, arg2);
1544         tree second_compare = fold_build3 (COND_EXPR, int_type_node,
1545                                            ifexp2, integer_zero_node,
1546                                            op == COMPARE_L_EXPR
1547                                            ? integer_minus_one_node
1548                                            : integer_one_node);
1549         return fold_build3 (COND_EXPR, int_type_node, ifexp1,
1550                             op == COMPARE_L_EXPR ? integer_one_node
1551                             : integer_minus_one_node,
1552                             second_compare);
1553       }
1554     case COMPARE_EXPR:
1555       arg1 = save_expr (arg1);  arg2 = save_expr (arg2);
1556       {
1557         tree ifexp1 = fold_build2 (LT_EXPR, boolean_type_node, arg1, arg2);
1558         tree ifexp2 = fold_build2 (GT_EXPR, boolean_type_node, arg1, arg2);
1559         tree second_compare = fold_build3 (COND_EXPR, int_type_node,
1560                                            ifexp2, integer_one_node,
1561                                            integer_zero_node);
1562         return fold_build3 (COND_EXPR, int_type_node,
1563                             ifexp1, integer_minus_one_node, second_compare);
1564       }      
1565     case TRUNC_DIV_EXPR:
1566     case TRUNC_MOD_EXPR:
1567       if (TREE_CODE (type) == REAL_TYPE
1568           && op == TRUNC_MOD_EXPR)
1569         {
1570           tree call;
1571           if (type != double_type_node)
1572             {
1573               arg1 = convert (double_type_node, arg1);
1574               arg2 = convert (double_type_node, arg2);
1575             }
1576           call = build_call_nary (double_type_node,
1577                                   build_address_of (soft_fmod_node),
1578                                   2, arg1, arg2);
1579           if (type != double_type_node)
1580             call = convert (type, call);
1581           return call;
1582         }
1583       
1584       if (TREE_CODE (type) == INTEGER_TYPE
1585           && flag_use_divide_subroutine
1586           && ! flag_syntax_only)
1587         return build_java_soft_divmod (op, type, arg1, arg2);
1588       
1589       break;
1590     default:  ;
1591     }
1592   return fold_build2 (op, type, arg1, arg2);
1593 }
1594
1595 static void
1596 expand_java_binop (tree type, enum tree_code op)
1597 {
1598   tree larg, rarg;
1599   tree ltype = type;
1600   tree rtype = type;
1601   switch (op)
1602     {
1603     case LSHIFT_EXPR:
1604     case RSHIFT_EXPR:
1605     case URSHIFT_EXPR:
1606       rtype = int_type_node;
1607       rarg = pop_value (rtype);
1608       break;
1609     default:
1610       rarg = pop_value (rtype);
1611     }
1612   larg = pop_value (ltype);
1613   push_value (build_java_binop (op, type, larg, rarg));
1614 }
1615
1616 /* Lookup the field named NAME in *TYPEP or its super classes.
1617    If not found, return NULL_TREE.
1618    (If the *TYPEP is not found, or if the field reference is
1619    ambiguous, return error_mark_node.)
1620    If found, return the FIELD_DECL, and set *TYPEP to the
1621    class containing the field. */
1622
1623 tree
1624 lookup_field (tree *typep, tree name)
1625 {
1626   if (CLASS_P (*typep) && !CLASS_LOADED_P (*typep))
1627     {
1628       load_class (*typep, 1);
1629       safe_layout_class (*typep);
1630       if (!TYPE_SIZE (*typep) || TREE_CODE (TYPE_SIZE (*typep)) == ERROR_MARK)
1631         return error_mark_node;
1632     }
1633   do
1634     {
1635       tree field, binfo, base_binfo;
1636       tree save_field;
1637       int i;
1638
1639       for (field = TYPE_FIELDS (*typep); field; field = TREE_CHAIN (field))
1640         if (DECL_NAME (field) == name)
1641           return field;
1642
1643       /* Process implemented interfaces. */
1644       save_field = NULL_TREE;
1645       for (binfo = TYPE_BINFO (*typep), i = 0;
1646            BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1647         {
1648           tree t = BINFO_TYPE (base_binfo);
1649           if ((field = lookup_field (&t, name)))
1650             {
1651               if (save_field == field)
1652                 continue;
1653               if (save_field == NULL_TREE)
1654                 save_field = field;
1655               else
1656                 {
1657                   tree i1 = DECL_CONTEXT (save_field);
1658                   tree i2 = DECL_CONTEXT (field);
1659                   error ("reference %qs is ambiguous: appears in interface %qs and interface %qs",
1660                          IDENTIFIER_POINTER (name),
1661                          IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i1))),
1662                          IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i2))));
1663                   return error_mark_node;
1664                 }
1665             }
1666         }
1667
1668       if (save_field != NULL_TREE)
1669         return save_field;
1670
1671       *typep = CLASSTYPE_SUPER (*typep);
1672     } while (*typep);
1673   return NULL_TREE;
1674 }
1675
1676 /* Look up the field named NAME in object SELF_VALUE,
1677    which has class SELF_CLASS (a non-handle RECORD_TYPE).
1678    SELF_VALUE is NULL_TREE if looking for a static field. */
1679
1680 tree
1681 build_field_ref (tree self_value, tree self_class, tree name)
1682 {
1683   tree base_class = self_class;
1684   tree field_decl = lookup_field (&base_class, name);
1685   if (field_decl == NULL_TREE)
1686     {
1687       error ("field %qs not found", IDENTIFIER_POINTER (name));
1688       return error_mark_node;
1689     }
1690   if (self_value == NULL_TREE)
1691     {
1692       return build_static_field_ref (field_decl);
1693     }
1694   else
1695     {
1696       tree base_type = promote_type (base_class);
1697
1698       /* CHECK is true if self_value is not the this pointer.  */
1699       int check = (! (DECL_P (self_value)
1700                       && DECL_NAME (self_value) == this_identifier_node));
1701
1702       /* Determine whether a field offset from NULL will lie within
1703          Page 0: this is necessary on those GNU/Linux/BSD systems that
1704          trap SEGV to generate NullPointerExceptions.  
1705
1706          We assume that Page 0 will be mapped with NOPERM, and that
1707          memory may be allocated from any other page, so only field
1708          offsets < pagesize are guaranteed to trap.  We also assume
1709          the smallest page size we'll encounter is 4k bytes.  */
1710       if (! flag_syntax_only && check && ! flag_check_references 
1711           && ! flag_indirect_dispatch)
1712         {
1713           tree field_offset = byte_position (field_decl);
1714           if (! page_size)
1715             page_size = size_int (4096);              
1716           check = ! INT_CST_LT_UNSIGNED (field_offset, page_size);
1717         }
1718
1719       if (base_type != TREE_TYPE (self_value))
1720         self_value = fold_build1 (NOP_EXPR, base_type, self_value);
1721       if (! flag_syntax_only && flag_indirect_dispatch)
1722         {
1723           tree otable_index
1724             = build_int_cst (NULL_TREE, get_symbol_table_index 
1725                              (field_decl, NULL_TREE, 
1726                               &TYPE_OTABLE_METHODS (output_class)));
1727           tree field_offset
1728             = build4 (ARRAY_REF, integer_type_node,
1729                       TYPE_OTABLE_DECL (output_class), otable_index,
1730                       NULL_TREE, NULL_TREE);
1731           tree address;
1732
1733           if (DECL_CONTEXT (field_decl) != output_class)
1734             field_offset
1735               = build3 (COND_EXPR, TREE_TYPE (field_offset),
1736                         build2 (EQ_EXPR, boolean_type_node,
1737                                 field_offset, integer_zero_node),
1738                         build_call_nary (void_type_node, 
1739                                          build_address_of (soft_nosuchfield_node),
1740                                          1, otable_index),
1741                         field_offset);
1742           
1743           field_offset = fold (convert (sizetype, field_offset));
1744           self_value = java_check_reference (self_value, check);
1745           address 
1746             = fold_build2 (POINTER_PLUS_EXPR, 
1747                            build_pointer_type (TREE_TYPE (field_decl)),
1748                            self_value, field_offset);
1749           return fold_build1 (INDIRECT_REF, TREE_TYPE (field_decl), address);
1750         }
1751
1752       self_value = build_java_indirect_ref (TREE_TYPE (TREE_TYPE (self_value)),
1753                                             self_value, check);
1754       return fold_build3 (COMPONENT_REF, TREE_TYPE (field_decl),
1755                           self_value, field_decl, NULL_TREE);
1756     }
1757 }
1758
1759 tree
1760 lookup_label (int pc)
1761 {
1762   tree name;
1763   char buf[32];
1764   if (pc > highest_label_pc_this_method)
1765     highest_label_pc_this_method = pc;
1766   ASM_GENERATE_INTERNAL_LABEL(buf, "LJpc=", start_label_pc_this_method + pc);
1767   name = get_identifier (buf);
1768   if (IDENTIFIER_LOCAL_VALUE (name))
1769     return IDENTIFIER_LOCAL_VALUE (name);
1770   else
1771     {
1772       /* The type of the address of a label is return_address_type_node. */
1773       tree decl = create_label_decl (name);
1774       LABEL_PC (decl) = pc;
1775       return pushdecl (decl);
1776     }
1777 }
1778
1779 /* Generate a unique name for the purpose of loops and switches
1780    labels, and try-catch-finally blocks label or temporary variables.  */
1781
1782 tree
1783 generate_name (void)
1784 {
1785   static int l_number = 0;
1786   char buff [32];
1787   ASM_GENERATE_INTERNAL_LABEL(buff, "LJv", l_number);
1788   l_number++;
1789   return get_identifier (buff);
1790 }
1791
1792 tree
1793 create_label_decl (tree name)
1794 {
1795   tree decl;
1796   decl = build_decl (LABEL_DECL, name, 
1797                      TREE_TYPE (return_address_type_node));
1798   DECL_CONTEXT (decl) = current_function_decl;
1799   DECL_IGNORED_P (decl) = 1;
1800   return decl;
1801 }
1802
1803 /* This maps a bytecode offset (PC) to various flags. */
1804 char *instruction_bits;
1805
1806 static void
1807 note_label (int current_pc ATTRIBUTE_UNUSED, int target_pc)
1808 {
1809   lookup_label (target_pc);
1810   instruction_bits [target_pc] |= BCODE_JUMP_TARGET;
1811 }
1812
1813 /* Emit code to jump to TARGET_PC if VALUE1 CONDITION VALUE2,
1814    where CONDITION is one of one the compare operators. */
1815
1816 static void
1817 expand_compare (enum tree_code condition, tree value1, tree value2,
1818                 int target_pc)
1819 {
1820   tree target = lookup_label (target_pc);
1821   tree cond = fold_build2 (condition, boolean_type_node, value1, value2);
1822   java_add_stmt 
1823     (build3 (COND_EXPR, void_type_node, java_truthvalue_conversion (cond),
1824              build1 (GOTO_EXPR, void_type_node, target), 
1825              build_java_empty_stmt ()));
1826 }
1827
1828 /* Emit code for a TEST-type opcode. */
1829
1830 static void
1831 expand_test (enum tree_code condition, tree type, int target_pc)
1832 {
1833   tree value1, value2;
1834   flush_quick_stack ();
1835   value1 = pop_value (type);
1836   value2 = (type == ptr_type_node) ? null_pointer_node : integer_zero_node;
1837   expand_compare (condition, value1, value2, target_pc);
1838 }
1839
1840 /* Emit code for a COND-type opcode. */
1841
1842 static void
1843 expand_cond (enum tree_code condition, tree type, int target_pc)
1844 {
1845   tree value1, value2;
1846   flush_quick_stack ();
1847   /* note: pop values in opposite order */
1848   value2 = pop_value (type);
1849   value1 = pop_value (type);
1850   /* Maybe should check value1 and value2 for type compatibility ??? */
1851   expand_compare (condition, value1, value2, target_pc);
1852 }
1853
1854 static void
1855 expand_java_goto (int target_pc)
1856 {
1857   tree target_label = lookup_label (target_pc);
1858   flush_quick_stack ();
1859   java_add_stmt (build1 (GOTO_EXPR, void_type_node, target_label));
1860 }
1861
1862 static tree
1863 expand_java_switch (tree selector, int default_pc)
1864 {
1865   tree switch_expr, x;
1866
1867   flush_quick_stack ();
1868   switch_expr = build3 (SWITCH_EXPR, TREE_TYPE (selector), selector,
1869                         NULL_TREE, NULL_TREE);
1870   java_add_stmt (switch_expr);
1871
1872   x = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE, NULL_TREE,
1873               create_artificial_label ());
1874   append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1875
1876   x = build1 (GOTO_EXPR, void_type_node, lookup_label (default_pc));
1877   append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1878
1879   return switch_expr;
1880 }
1881
1882 static void
1883 expand_java_add_case (tree switch_expr, int match, int target_pc)
1884 {
1885   tree value, x;
1886
1887   value = build_int_cst (TREE_TYPE (switch_expr), match);
1888   
1889   x = build3 (CASE_LABEL_EXPR, void_type_node, value, NULL_TREE,
1890               create_artificial_label ());
1891   append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1892
1893   x = build1 (GOTO_EXPR, void_type_node, lookup_label (target_pc));
1894   append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1895 }
1896
1897 static tree
1898 pop_arguments (tree arg_types)
1899 {
1900   if (arg_types == end_params_node)
1901     return NULL_TREE;
1902   if (TREE_CODE (arg_types) == TREE_LIST)
1903     {
1904       tree tail = pop_arguments (TREE_CHAIN (arg_types));
1905       tree type = TREE_VALUE (arg_types);
1906       tree arg = pop_value (type);
1907
1908       /* We simply cast each argument to its proper type.  This is
1909          needed since we lose type information coming out of the
1910          verifier.  We also have to do this when we pop an integer
1911          type that must be promoted for the function call.  */
1912       if (TREE_CODE (type) == POINTER_TYPE)
1913         arg = build1 (NOP_EXPR, type, arg);
1914       else if (targetm.calls.promote_prototypes (type)
1915                && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
1916                && INTEGRAL_TYPE_P (type))
1917         arg = convert (integer_type_node, arg);
1918       return tree_cons (NULL_TREE, arg, tail);
1919     }
1920   gcc_unreachable ();
1921 }
1922
1923 /* Attach to PTR (a block) the declaration found in ENTRY. */
1924
1925 int
1926 attach_init_test_initialization_flags (void **entry, void *ptr)
1927 {
1928   tree block = (tree)ptr;
1929   struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
1930
1931   if (block != error_mark_node)
1932     {
1933       if (TREE_CODE (block) == BIND_EXPR)
1934         {
1935           tree body = BIND_EXPR_BODY (block);
1936           TREE_CHAIN (ite->value) = BIND_EXPR_VARS (block);
1937           BIND_EXPR_VARS (block) = ite->value;
1938           body = build2 (COMPOUND_EXPR, void_type_node,
1939                          build1 (DECL_EXPR, void_type_node, ite->value), body);
1940           BIND_EXPR_BODY (block) = body;
1941         }
1942       else
1943         {
1944           tree body = BLOCK_SUBBLOCKS (block);
1945           TREE_CHAIN (ite->value) = BLOCK_EXPR_DECLS (block);
1946           BLOCK_EXPR_DECLS (block) = ite->value;
1947           body = build2 (COMPOUND_EXPR, void_type_node,
1948                          build1 (DECL_EXPR, void_type_node, ite->value), body);
1949           BLOCK_SUBBLOCKS (block) = body;
1950         }
1951       
1952     }
1953   return true;
1954 }
1955
1956 /* Build an expression to initialize the class CLAS.
1957    if EXPR is non-NULL, returns an expression to first call the initializer
1958    (if it is needed) and then calls EXPR. */
1959
1960 tree
1961 build_class_init (tree clas, tree expr)
1962 {
1963   tree init;
1964
1965   /* An optimization: if CLAS is a superclass of the class we're
1966      compiling, we don't need to initialize it.  However, if CLAS is
1967      an interface, it won't necessarily be initialized, even if we
1968      implement it.  */
1969   if ((! CLASS_INTERFACE (TYPE_NAME (clas))
1970        && inherits_from_p (current_class, clas))
1971       || current_class == clas)
1972     return expr;
1973
1974   if (always_initialize_class_p)
1975     {
1976       init = build_call_nary (void_type_node,
1977                               build_address_of (soft_initclass_node),
1978                               1, build_class_ref (clas));
1979       TREE_SIDE_EFFECTS (init) = 1;
1980     }
1981   else
1982     {
1983       tree *init_test_decl;
1984       tree decl;
1985       init_test_decl = java_treetreehash_new
1986         (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), clas);
1987
1988       if (*init_test_decl == NULL)
1989         {
1990           /* Build a declaration and mark it as a flag used to track
1991              static class initializations. */
1992           decl = build_decl (VAR_DECL, NULL_TREE,
1993                              boolean_type_node);
1994           MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
1995           LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
1996           DECL_CONTEXT (decl) = current_function_decl;
1997           DECL_FUNCTION_INIT_TEST_CLASS (decl) = clas;
1998           /* Tell the check-init code to ignore this decl when not
1999              optimizing class initialization. */
2000           if (!STATIC_CLASS_INIT_OPT_P ())
2001             DECL_BIT_INDEX (decl) = -1;
2002           DECL_INITIAL (decl) = boolean_false_node;
2003           /* Don't emit any symbolic debugging info for this decl.  */
2004           DECL_IGNORED_P (decl) = 1;      
2005           *init_test_decl = decl;
2006         }
2007
2008       init = build_call_nary (void_type_node,
2009                               build_address_of (soft_initclass_node),
2010                               1, build_class_ref (clas));
2011       TREE_SIDE_EFFECTS (init) = 1;
2012       init = build3 (COND_EXPR, void_type_node,
2013                      build2 (EQ_EXPR, boolean_type_node, 
2014                              *init_test_decl, boolean_false_node),
2015                      init, integer_zero_node);
2016       TREE_SIDE_EFFECTS (init) = 1;
2017       init = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, 
2018                      build2 (MODIFY_EXPR, boolean_type_node,
2019                              *init_test_decl, boolean_true_node));
2020       TREE_SIDE_EFFECTS (init) = 1;
2021     }
2022
2023   if (expr != NULL_TREE)
2024     {
2025       expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
2026       TREE_SIDE_EFFECTS (expr) = 1;
2027       return expr;
2028     }
2029   return init;
2030 }
2031
2032 \f
2033
2034 /* Rewrite expensive calls that require stack unwinding at runtime to
2035    cheaper alternatives.  The logic here performs these
2036    transformations:
2037
2038    java.lang.Class.forName("foo") -> java.lang.Class.forName("foo", class$)
2039    java.lang.Class.getClassLoader() -> java.lang.Class.getClassLoader(class$)
2040
2041 */
2042
2043 typedef struct
2044 {
2045   const char *classname;
2046   const char *method;
2047   const char *signature;
2048   const char *new_signature;
2049   int flags;
2050   tree (*rewrite_arglist) (tree arglist);
2051 } rewrite_rule;
2052
2053 /* Add __builtin_return_address(0) to the end of an arglist.  */
2054
2055
2056 static tree 
2057 rewrite_arglist_getcaller (tree arglist)
2058 {
2059   tree retaddr 
2060     = build_call_expr (built_in_decls[BUILT_IN_RETURN_ADDRESS],
2061                        1, integer_zero_node);
2062   
2063   DECL_INLINE (current_function_decl) = 0;
2064
2065   return chainon (arglist, 
2066                   tree_cons (NULL_TREE, retaddr, 
2067                              NULL_TREE));
2068 }
2069
2070 /* Add this.class to the end of an arglist.  */
2071
2072 static tree 
2073 rewrite_arglist_getclass (tree arglist)
2074 {
2075   return chainon (arglist, 
2076                   tree_cons (NULL_TREE, build_class_ref (output_class),
2077                              NULL_TREE));
2078 }
2079
2080 static rewrite_rule rules[] =
2081   {{"java.lang.Class", "getClassLoader", "()Ljava/lang/ClassLoader;", 
2082     "(Ljava/lang/Class;)Ljava/lang/ClassLoader;", 
2083     ACC_FINAL|ACC_PRIVATE, rewrite_arglist_getclass},
2084    {"java.lang.Class", "forName", "(Ljava/lang/String;)Ljava/lang/Class;",
2085     "(Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Class;",
2086     ACC_FINAL|ACC_PRIVATE|ACC_STATIC, rewrite_arglist_getclass},
2087    {"gnu.classpath.VMStackWalker", "getCallingClass", "()Ljava/lang/Class;",
2088     "(Lgnu/gcj/RawData;)Ljava/lang/Class;",
2089     ACC_FINAL|ACC_PRIVATE|ACC_STATIC, rewrite_arglist_getcaller},
2090    {"gnu.classpath.VMStackWalker", "getCallingClassLoader", 
2091     "()Ljava/lang/ClassLoader;",
2092     "(Lgnu/gcj/RawData;)Ljava/lang/ClassLoader;",
2093     ACC_FINAL|ACC_PRIVATE|ACC_STATIC, rewrite_arglist_getcaller},
2094
2095    {NULL, NULL, NULL, NULL, 0, NULL}};
2096
2097 /* True if this method is special, i.e. it's a private method that
2098    should be exported from a DSO.  */
2099
2100 bool
2101 special_method_p (tree candidate_method)
2102 {
2103   tree context = DECL_NAME (TYPE_NAME (DECL_CONTEXT (candidate_method)));
2104   tree method = DECL_NAME (candidate_method);
2105   rewrite_rule *p;
2106
2107   for (p = rules; p->classname; p++)
2108     {
2109       if (get_identifier (p->classname) == context
2110           && get_identifier (p->method) == method)
2111         return true;
2112     }
2113   return false;
2114 }
2115
2116 /* Scan the rules list for replacements for *METHOD_P and replace the
2117    args accordingly.  If the rewrite results in an access to a private
2118    method, update SPECIAL.*/
2119
2120 void
2121 maybe_rewrite_invocation (tree *method_p, tree *arg_list_p, 
2122                           tree *method_signature_p, tree *special)
2123 {
2124   tree context = DECL_NAME (TYPE_NAME (DECL_CONTEXT (*method_p)));
2125   rewrite_rule *p;
2126   *special = NULL_TREE;
2127
2128   for (p = rules; p->classname; p++)
2129     {
2130       if (get_identifier (p->classname) == context)
2131         {
2132           tree method = DECL_NAME (*method_p);
2133           if (get_identifier (p->method) == method
2134               && get_identifier (p->signature) == *method_signature_p)
2135             {
2136               tree maybe_method
2137                 = lookup_java_method (DECL_CONTEXT (*method_p),
2138                                       method,
2139                                       get_identifier (p->new_signature));
2140               if (! maybe_method && ! flag_verify_invocations)
2141                 {
2142                   maybe_method
2143                     = add_method (DECL_CONTEXT (*method_p), p->flags, 
2144                                   method, get_identifier (p->new_signature));
2145                   DECL_EXTERNAL (maybe_method) = 1;
2146                 }
2147               *method_p = maybe_method;
2148               gcc_assert (*method_p);
2149               *arg_list_p = p->rewrite_arglist (*arg_list_p);
2150               *method_signature_p = get_identifier (p->new_signature);
2151               *special = integer_one_node;
2152
2153               break;
2154             }
2155         }
2156     }
2157 }
2158
2159 \f
2160
2161 tree
2162 build_known_method_ref (tree method, tree method_type ATTRIBUTE_UNUSED,
2163                         tree self_type, tree method_signature ATTRIBUTE_UNUSED,
2164                         tree arg_list ATTRIBUTE_UNUSED, tree special)
2165 {
2166   tree func;
2167   if (is_compiled_class (self_type))
2168     {
2169       /* With indirect dispatch we have to use indirect calls for all
2170          publicly visible methods or gcc will use PLT indirections
2171          to reach them.  We also have to use indirect dispatch for all
2172          external methods.  */
2173       if (! flag_indirect_dispatch 
2174           || (! DECL_EXTERNAL (method) && ! TREE_PUBLIC (method)))
2175         {
2176           func = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (method)),
2177                          method);
2178         }
2179       else
2180         {
2181           tree table_index
2182             = build_int_cst (NULL_TREE, 
2183                              (get_symbol_table_index 
2184                               (method, special,
2185                                &TYPE_ATABLE_METHODS (output_class))));
2186           func 
2187             = build4 (ARRAY_REF,  
2188                       TREE_TYPE (TREE_TYPE (TYPE_ATABLE_DECL (output_class))),
2189                       TYPE_ATABLE_DECL (output_class), table_index,
2190                       NULL_TREE, NULL_TREE);
2191         }
2192       func = convert (method_ptr_type_node, func);
2193     }
2194   else
2195     {
2196       /* We don't know whether the method has been (statically) compiled.
2197          Compile this code to get a reference to the method's code:
2198
2199          SELF_TYPE->methods[METHOD_INDEX].ncode
2200
2201       */
2202
2203       int method_index = 0;
2204       tree meth, ref;
2205
2206       /* The method might actually be declared in some superclass, so
2207          we have to use its class context, not the caller's notion of
2208          where the method is.  */
2209       self_type = DECL_CONTEXT (method);
2210       ref = build_class_ref (self_type);
2211       ref = build1 (INDIRECT_REF, class_type_node, ref);
2212       if (ncode_ident == NULL_TREE)
2213         ncode_ident = get_identifier ("ncode");
2214       if (methods_ident == NULL_TREE)
2215         methods_ident = get_identifier ("methods");
2216       ref = build3 (COMPONENT_REF, method_ptr_type_node, ref,
2217                     lookup_field (&class_type_node, methods_ident),
2218                     NULL_TREE);
2219       for (meth = TYPE_METHODS (self_type);
2220            ; meth = TREE_CHAIN (meth))
2221         {
2222           if (method == meth)
2223             break;
2224           if (meth == NULL_TREE)
2225             fatal_error ("method '%s' not found in class",
2226                          IDENTIFIER_POINTER (DECL_NAME (method)));
2227           method_index++;
2228         }
2229       method_index *= int_size_in_bytes (method_type_node);
2230       ref = fold_build2 (POINTER_PLUS_EXPR, method_ptr_type_node,
2231                          ref, size_int (method_index));
2232       ref = build1 (INDIRECT_REF, method_type_node, ref);
2233       func = build3 (COMPONENT_REF, nativecode_ptr_type_node,
2234                      ref, lookup_field (&method_type_node, ncode_ident),
2235                      NULL_TREE);
2236     }
2237   return func;
2238 }
2239
2240 tree
2241 invoke_build_dtable (int is_invoke_interface, tree arg_list)
2242 {
2243   tree dtable, objectref;
2244
2245   TREE_VALUE (arg_list) = save_expr (TREE_VALUE (arg_list));
2246
2247   /* If we're dealing with interfaces and if the objectref
2248      argument is an array then get the dispatch table of the class
2249      Object rather than the one from the objectref.  */
2250   objectref = (is_invoke_interface 
2251                && is_array_type_p (TREE_TYPE (TREE_VALUE (arg_list)))
2252                ? build_class_ref (object_type_node) : TREE_VALUE (arg_list));
2253
2254   if (dtable_ident == NULL_TREE)
2255     dtable_ident = get_identifier ("vtable");
2256   dtable = build_java_indirect_ref (object_type_node, objectref, 
2257                                     flag_check_references);
2258   dtable = build3 (COMPONENT_REF, dtable_ptr_type, dtable,
2259                    lookup_field (&object_type_node, dtable_ident), NULL_TREE);
2260
2261   return dtable;
2262 }
2263
2264 /* Determine the index in SYMBOL_TABLE for a reference to the decl
2265    T. If this decl has not been seen before, it will be added to the
2266    [oa]table_methods. If it has, the existing table slot will be
2267    reused.  */
2268
2269 int
2270 get_symbol_table_index (tree t, tree special, tree *symbol_table)
2271 {
2272   int i = 1;
2273   tree method_list;
2274
2275   if (*symbol_table == NULL_TREE)
2276     {
2277       *symbol_table = build_tree_list (special, t);
2278       return 1;
2279     }
2280   
2281   method_list = *symbol_table;
2282   
2283   while (1)
2284     {
2285       tree value = TREE_VALUE (method_list);
2286       tree purpose = TREE_PURPOSE (method_list);
2287       if (value == t && purpose == special)
2288         return i;
2289       i++;
2290       if (TREE_CHAIN (method_list) == NULL_TREE)
2291         break;
2292       else
2293         method_list = TREE_CHAIN (method_list);
2294     }
2295
2296   TREE_CHAIN (method_list) = build_tree_list (special, t);
2297   return i;
2298 }
2299
2300 tree 
2301 build_invokevirtual (tree dtable, tree method, tree special)
2302 {
2303   tree func;
2304   tree nativecode_ptr_ptr_type_node
2305     = build_pointer_type (nativecode_ptr_type_node);
2306   tree method_index;
2307   tree otable_index;
2308
2309   if (flag_indirect_dispatch)
2310     {
2311       gcc_assert (! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))));
2312
2313       otable_index 
2314         = build_int_cst (NULL_TREE, get_symbol_table_index 
2315                          (method, special,
2316                           &TYPE_OTABLE_METHODS (output_class)));
2317       method_index = build4 (ARRAY_REF, integer_type_node, 
2318                              TYPE_OTABLE_DECL (output_class), 
2319                              otable_index, NULL_TREE, NULL_TREE);
2320     }
2321   else
2322     {
2323       /* We fetch the DECL_VINDEX field directly here, rather than
2324          using get_method_index().  DECL_VINDEX is the true offset
2325          from the vtable base to a method, regrdless of any extra
2326          words inserted at the start of the vtable.  */
2327       method_index = DECL_VINDEX (method);
2328       method_index = size_binop (MULT_EXPR, method_index,
2329                                  TYPE_SIZE_UNIT (nativecode_ptr_ptr_type_node));
2330       if (TARGET_VTABLE_USES_DESCRIPTORS)
2331         method_index = size_binop (MULT_EXPR, method_index,
2332                                    size_int (TARGET_VTABLE_USES_DESCRIPTORS));
2333     }
2334
2335   func = fold_build2 (POINTER_PLUS_EXPR, nativecode_ptr_ptr_type_node, dtable,
2336                       convert (sizetype, method_index));
2337
2338   if (TARGET_VTABLE_USES_DESCRIPTORS)
2339     func = build1 (NOP_EXPR, nativecode_ptr_type_node, func);
2340   else
2341     func = build1 (INDIRECT_REF, nativecode_ptr_type_node, func);
2342
2343   return func;
2344 }
2345
2346 static GTY(()) tree class_ident;
2347 tree
2348 build_invokeinterface (tree dtable, tree method)
2349 {
2350   tree interface;
2351   tree idx;
2352
2353   /* We expand invokeinterface here.  */
2354             
2355   if (class_ident == NULL_TREE)
2356     class_ident = get_identifier ("class");
2357
2358   dtable = build_java_indirect_ref (dtable_type, dtable,
2359                                     flag_check_references);
2360   dtable = build3 (COMPONENT_REF, class_ptr_type, dtable,
2361                    lookup_field (&dtable_type, class_ident), NULL_TREE);
2362
2363   interface = DECL_CONTEXT (method);
2364   gcc_assert (CLASS_INTERFACE (TYPE_NAME (interface)));
2365   layout_class_methods (interface);
2366   
2367   if (flag_indirect_dispatch)
2368     {
2369       int itable_index 
2370         = 2 * (get_symbol_table_index 
2371                (method, NULL_TREE, &TYPE_ITABLE_METHODS (output_class)));
2372       interface 
2373         = build4 (ARRAY_REF, 
2374                  TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class))),
2375                  TYPE_ITABLE_DECL (output_class), 
2376                   build_int_cst (NULL_TREE, itable_index-1),
2377                   NULL_TREE, NULL_TREE);
2378       idx 
2379         = build4 (ARRAY_REF, 
2380                  TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class))),
2381                  TYPE_ITABLE_DECL (output_class), 
2382                   build_int_cst (NULL_TREE, itable_index),
2383                   NULL_TREE, NULL_TREE);
2384       interface = convert (class_ptr_type, interface);
2385       idx = convert (integer_type_node, idx);
2386     }
2387   else
2388     {
2389       idx = build_int_cst (NULL_TREE, 
2390                            get_interface_method_index (method, interface));
2391       interface = build_class_ref (interface);
2392     }
2393                                                           
2394   return build_call_nary (ptr_type_node, 
2395                           build_address_of (soft_lookupinterfacemethod_node),
2396                           3, dtable, interface, idx);
2397 }
2398   
2399 /* Expand one of the invoke_* opcodes.
2400    OPCODE is the specific opcode.
2401    METHOD_REF_INDEX is an index into the constant pool.
2402    NARGS is the number of arguments, or -1 if not specified. */
2403
2404 static void
2405 expand_invoke (int opcode, int method_ref_index, int nargs ATTRIBUTE_UNUSED)
2406 {
2407   tree method_signature
2408     = COMPONENT_REF_SIGNATURE(&current_jcf->cpool, method_ref_index);
2409   tree method_name = COMPONENT_REF_NAME (&current_jcf->cpool,
2410                                          method_ref_index);
2411   tree self_type
2412     = get_class_constant (current_jcf,
2413                           COMPONENT_REF_CLASS_INDEX(&current_jcf->cpool,
2414                           method_ref_index));
2415   const char *const self_name
2416     = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type)));
2417   tree call, func, method, arg_list, method_type;
2418   tree check = NULL_TREE;
2419
2420   tree special = NULL_TREE;
2421
2422   if (! CLASS_LOADED_P (self_type))
2423     {
2424       load_class (self_type, 1);
2425       safe_layout_class (self_type);
2426       if (TREE_CODE (TYPE_SIZE (self_type)) == ERROR_MARK)
2427         fatal_error ("failed to find class '%s'", self_name);
2428     }
2429   layout_class_methods (self_type);
2430
2431   if (ID_INIT_P (method_name))
2432     method = lookup_java_constructor (self_type, method_signature);
2433   else
2434     method = lookup_java_method (self_type, method_name, method_signature);
2435
2436   /* We've found a method in a class other than the one in which it
2437      was wanted.  This can happen if, for instance, we're trying to
2438      compile invokespecial super.equals().  
2439      FIXME: This is a kludge.  Rather than nullifying the result, we
2440      should change lookup_java_method() so that it doesn't search the
2441      superclass chain when we're BC-compiling.  */
2442   if (! flag_verify_invocations
2443       && method
2444       && ! TYPE_ARRAY_P (self_type)
2445       && self_type != DECL_CONTEXT (method))
2446     method = NULL_TREE;
2447
2448   /* We've found a method in an interface, but this isn't an interface
2449      call.  */
2450   if (opcode != OPCODE_invokeinterface
2451       && method
2452       && (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method)))))
2453     method = NULL_TREE;
2454
2455   /* We've found a non-interface method but we are making an
2456      interface call.  This can happen if the interface overrides a
2457      method in Object.  */
2458   if (! flag_verify_invocations
2459       && opcode == OPCODE_invokeinterface
2460       && method
2461       && ! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
2462     method = NULL_TREE;
2463
2464   if (method == NULL_TREE)
2465     {
2466       if (flag_verify_invocations || ! flag_indirect_dispatch)
2467         {
2468           error ("class '%s' has no method named '%s' matching signature '%s'",
2469                  self_name,
2470                  IDENTIFIER_POINTER (method_name),
2471                  IDENTIFIER_POINTER (method_signature));
2472         }
2473       else
2474         {
2475           int flags = ACC_PUBLIC;
2476           if (opcode == OPCODE_invokestatic)
2477             flags |= ACC_STATIC;
2478           if (opcode == OPCODE_invokeinterface)
2479             {
2480               flags |= ACC_INTERFACE | ACC_ABSTRACT;
2481               CLASS_INTERFACE (TYPE_NAME (self_type)) = 1;
2482             }
2483           method = add_method (self_type, flags, method_name,
2484                                method_signature);
2485           DECL_ARTIFICIAL (method) = 1;
2486           METHOD_DUMMY (method) = 1;
2487           layout_class_method (self_type, NULL,
2488                                method, NULL);
2489         }
2490     }
2491
2492   /* Invoke static can't invoke static/abstract method */
2493   if (method != NULL_TREE)
2494     {
2495       if (opcode == OPCODE_invokestatic)
2496         {
2497           if (!METHOD_STATIC (method))
2498             {
2499               error ("invokestatic on non static method");
2500               method = NULL_TREE;
2501             }
2502           else if (METHOD_ABSTRACT (method))
2503             {
2504               error ("invokestatic on abstract method");
2505               method = NULL_TREE;
2506             }
2507         }
2508       else
2509         {
2510           if (METHOD_STATIC (method))
2511             {
2512               error ("invoke[non-static] on static method");
2513               method = NULL_TREE;
2514             }
2515         }
2516     }
2517
2518   if (method == NULL_TREE)
2519     {
2520       /* If we got here, we emitted an error message above.  So we
2521          just pop the arguments, push a properly-typed zero, and
2522          continue.  */
2523       method_type = get_type_from_signature (method_signature);
2524       pop_arguments (TYPE_ARG_TYPES (method_type));
2525       if (opcode != OPCODE_invokestatic) 
2526         pop_type (self_type);
2527       method_type = promote_type (TREE_TYPE (method_type));
2528       push_value (convert (method_type, integer_zero_node));
2529       return;
2530     }
2531
2532   method_type = TREE_TYPE (method);
2533   arg_list = pop_arguments (TYPE_ARG_TYPES (method_type));
2534   flush_quick_stack ();
2535
2536   maybe_rewrite_invocation (&method, &arg_list, &method_signature,
2537                             &special);
2538
2539   func = NULL_TREE;
2540   if (opcode == OPCODE_invokestatic)
2541     func = build_known_method_ref (method, method_type, self_type,
2542                                    method_signature, arg_list, special);
2543   else if (opcode == OPCODE_invokespecial
2544            || (opcode == OPCODE_invokevirtual
2545                && (METHOD_PRIVATE (method)
2546                    || METHOD_FINAL (method) 
2547                    || CLASS_FINAL (TYPE_NAME (self_type)))))
2548     {
2549       /* If the object for the method call is null, we throw an
2550          exception.  We don't do this if the object is the current
2551          method's `this'.  In other cases we just rely on an
2552          optimization pass to eliminate redundant checks.  FIXME:
2553          Unfortunately there doesn't seem to be a way to determine
2554          what the current method is right now.
2555          We do omit the check if we're calling <init>.  */
2556       /* We use a SAVE_EXPR here to make sure we only evaluate
2557          the new `self' expression once.  */
2558       tree save_arg = save_expr (TREE_VALUE (arg_list));
2559       TREE_VALUE (arg_list) = save_arg;
2560       check = java_check_reference (save_arg, ! DECL_INIT_P (method));
2561       func = build_known_method_ref (method, method_type, self_type,
2562                                      method_signature, arg_list, special);
2563     }
2564   else
2565     {
2566       tree dtable = invoke_build_dtable (opcode == OPCODE_invokeinterface, 
2567                                          arg_list);
2568       if (opcode == OPCODE_invokevirtual)
2569         func = build_invokevirtual (dtable, method, special);
2570       else
2571         func = build_invokeinterface (dtable, method);
2572     }
2573       
2574   if (TREE_CODE (func) == ADDR_EXPR)
2575     TREE_TYPE (func) = build_pointer_type (method_type);
2576   else
2577     func = build1 (NOP_EXPR, build_pointer_type (method_type), func);
2578
2579   call = build_call_list (TREE_TYPE (method_type), func, arg_list);
2580   TREE_SIDE_EFFECTS (call) = 1;
2581   call = check_for_builtin (method, call);
2582
2583   if (check != NULL_TREE)
2584     {
2585       call = build2 (COMPOUND_EXPR, TREE_TYPE (call), check, call);
2586       TREE_SIDE_EFFECTS (call) = 1;
2587     }
2588
2589   if (TREE_CODE (TREE_TYPE (method_type)) == VOID_TYPE)
2590     java_add_stmt (call);
2591   else
2592     {
2593       push_value (call);
2594       flush_quick_stack ();
2595     }
2596 }
2597
2598 /* Create a stub which will be put into the vtable but which will call
2599    a JNI function.  */
2600
2601 tree
2602 build_jni_stub (tree method)
2603 {
2604   tree jnifunc, call, args, body, method_sig, arg_types;
2605   tree jniarg0, jniarg1, jniarg2, jniarg3;
2606   tree jni_func_type, tem;
2607   tree env_var, res_var = NULL_TREE, block;
2608   tree method_args, res_type;
2609   tree meth_var;
2610   tree bind;
2611
2612   int args_size = 0;
2613
2614   tree klass = DECL_CONTEXT (method);
2615   int from_class = ! CLASS_FROM_SOURCE_P (klass);
2616   klass = build_class_ref (klass);
2617
2618   gcc_assert (METHOD_NATIVE (method) && flag_jni);
2619
2620   DECL_ARTIFICIAL (method) = 1;
2621   DECL_EXTERNAL (method) = 0;
2622
2623   env_var = build_decl (VAR_DECL, get_identifier ("env"), ptr_type_node);
2624   DECL_CONTEXT (env_var) = method;
2625
2626   if (TREE_TYPE (TREE_TYPE (method)) != void_type_node)
2627     {
2628       res_var = build_decl (VAR_DECL, get_identifier ("res"),
2629                             TREE_TYPE (TREE_TYPE (method)));
2630       DECL_CONTEXT (res_var) = method;
2631       TREE_CHAIN (env_var) = res_var;
2632     }
2633
2634   meth_var = build_decl (VAR_DECL, get_identifier ("meth"), ptr_type_node);
2635   TREE_STATIC (meth_var) = 1;
2636   TREE_PUBLIC (meth_var) = 0;
2637   DECL_EXTERNAL (meth_var) = 0;
2638   DECL_CONTEXT (meth_var) = method;
2639   DECL_ARTIFICIAL (meth_var) = 1;
2640   DECL_INITIAL (meth_var) = null_pointer_node;
2641   TREE_USED (meth_var) = 1;
2642   chainon (env_var, meth_var);
2643   build_result_decl (method);
2644
2645   /* One strange way that the front ends are different is that they
2646      store arguments differently.  */
2647   if (from_class)
2648     method_args = DECL_ARGUMENTS (method);
2649   else
2650     method_args = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (method));
2651   block = build_block (env_var, NULL_TREE, method_args, NULL_TREE);
2652   TREE_SIDE_EFFECTS (block) = 1;
2653   /* When compiling from source we don't set the type of the block,
2654      because that will prevent patch_return from ever being run.  */
2655   if (from_class)
2656     TREE_TYPE (block) = TREE_TYPE (TREE_TYPE (method));
2657
2658   /* Compute the local `env' by calling _Jv_GetJNIEnvNewFrame.  */
2659   body = build2 (MODIFY_EXPR, ptr_type_node, env_var,
2660                  build_call_nary (ptr_type_node,
2661                                   build_address_of (soft_getjnienvnewframe_node),
2662                                   1, klass));
2663   CAN_COMPLETE_NORMALLY (body) = 1;
2664
2665   /* All the arguments to this method become arguments to the
2666      underlying JNI function.  If we had to wrap object arguments in a
2667      special way, we would do that here.  */
2668   args = NULL_TREE;
2669   for (tem = method_args; tem != NULL_TREE; tem = TREE_CHAIN (tem))
2670     {
2671       int arg_bits = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (tem)));
2672 #ifdef PARM_BOUNDARY
2673       arg_bits = (((arg_bits + PARM_BOUNDARY - 1) / PARM_BOUNDARY)
2674                   * PARM_BOUNDARY);
2675 #endif
2676       args_size += (arg_bits / BITS_PER_UNIT);
2677
2678       args = tree_cons (NULL_TREE, tem, args);
2679     }
2680   args = nreverse (args);
2681   arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
2682
2683   /* For a static method the second argument is the class.  For a
2684      non-static method the second argument is `this'; that is already
2685      available in the argument list.  */
2686   if (METHOD_STATIC (method))
2687     {
2688       args_size += int_size_in_bytes (TREE_TYPE (klass));
2689       args = tree_cons (NULL_TREE, klass, args);
2690       arg_types = tree_cons (NULL_TREE, object_ptr_type_node, arg_types);
2691     }
2692
2693   /* The JNIEnv structure is the first argument to the JNI function.  */
2694   args_size += int_size_in_bytes (TREE_TYPE (env_var));
2695   args = tree_cons (NULL_TREE, env_var, args);
2696   arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
2697
2698   /* We call _Jv_LookupJNIMethod to find the actual underlying
2699      function pointer.  _Jv_LookupJNIMethod will throw the appropriate
2700      exception if this function is not found at runtime.  */
2701   method_sig = build_java_signature (TREE_TYPE (method));
2702   jniarg0 = klass;
2703   jniarg1 = build_utf8_ref (DECL_NAME (method));
2704   jniarg2 = build_utf8_ref (unmangle_classname
2705                             (IDENTIFIER_POINTER (method_sig),
2706                              IDENTIFIER_LENGTH (method_sig)));
2707   jniarg3 = build_int_cst (NULL_TREE, args_size);
2708
2709   tem = build_function_type (TREE_TYPE (TREE_TYPE (method)), arg_types);
2710
2711 #ifdef MODIFY_JNI_METHOD_CALL
2712   tem = MODIFY_JNI_METHOD_CALL (tem);
2713 #endif
2714
2715   jni_func_type = build_pointer_type (tem);
2716
2717   jnifunc = build3 (COND_EXPR, ptr_type_node,
2718                     meth_var, meth_var,
2719                     build2 (MODIFY_EXPR, ptr_type_node, meth_var,
2720                             build_call_nary (ptr_type_node,
2721                                              build_address_of
2722                                                (soft_lookupjnimethod_node),
2723                                              4,
2724                                              jniarg0, jniarg1,
2725                                              jniarg2, jniarg3)));
2726
2727   /* Now we make the actual JNI call via the resulting function
2728      pointer.    */
2729   call = build_call_list (TREE_TYPE (TREE_TYPE (method)),
2730                           build1 (NOP_EXPR, jni_func_type, jnifunc),
2731                           args);
2732
2733   /* If the JNI call returned a result, capture it here.  If we had to
2734      unwrap JNI object results, we would do that here.  */
2735   if (res_var != NULL_TREE)
2736     {
2737       /* If the call returns an object, it may return a JNI weak
2738          reference, in which case we must unwrap it.  */
2739       if (! JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_TYPE (method))))
2740         call = build_call_nary (TREE_TYPE (TREE_TYPE (method)),
2741                                 build_address_of (soft_unwrapjni_node),
2742                                 1, call);
2743       call = build2 (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (method)),
2744                      res_var, call);
2745     }
2746
2747   TREE_SIDE_EFFECTS (call) = 1;
2748   CAN_COMPLETE_NORMALLY (call) = 1;
2749
2750   body = build2 (COMPOUND_EXPR, void_type_node, body, call);
2751   TREE_SIDE_EFFECTS (body) = 1;
2752
2753   /* Now free the environment we allocated.  */
2754   call = build_call_nary (ptr_type_node,
2755                           build_address_of (soft_jnipopsystemframe_node),
2756                           1, env_var);
2757   TREE_SIDE_EFFECTS (call) = 1;
2758   CAN_COMPLETE_NORMALLY (call) = 1;
2759   body = build2 (COMPOUND_EXPR, void_type_node, body, call);
2760   TREE_SIDE_EFFECTS (body) = 1;
2761
2762   /* Finally, do the return.  */
2763   res_type = void_type_node;
2764   if (res_var != NULL_TREE)
2765     {
2766       tree drt;
2767       gcc_assert (DECL_RESULT (method));
2768       /* Make sure we copy the result variable to the actual
2769          result.  We use the type of the DECL_RESULT because it
2770          might be different from the return type of the function:
2771          it might be promoted.  */
2772       drt = TREE_TYPE (DECL_RESULT (method));
2773       if (drt != TREE_TYPE (res_var))
2774         res_var = build1 (CONVERT_EXPR, drt, res_var);
2775       res_var = build2 (MODIFY_EXPR, drt, DECL_RESULT (method), res_var);
2776       TREE_SIDE_EFFECTS (res_var) = 1;
2777     }
2778
2779   body = build2 (COMPOUND_EXPR, void_type_node, body,
2780                  build1 (RETURN_EXPR, res_type, res_var));
2781   TREE_SIDE_EFFECTS (body) = 1;
2782   
2783   /* Prepend class initialization for static methods reachable from
2784      other classes.  */
2785   if (METHOD_STATIC (method)
2786       && (! METHOD_PRIVATE (method)
2787           || INNER_CLASS_P (DECL_CONTEXT (method))))
2788     {
2789       tree init = build_call_expr (soft_initclass_node, 1, 
2790                                    klass);
2791       body = build2 (COMPOUND_EXPR, void_type_node, init, body);
2792       TREE_SIDE_EFFECTS (body) = 1;
2793     }
2794
2795   bind = build3 (BIND_EXPR, void_type_node, BLOCK_VARS (block), 
2796                  body, block);
2797   return bind;
2798 }
2799
2800
2801 /* Given lvalue EXP, return a volatile expression that references the
2802    same object.  */
2803
2804 tree
2805 java_modify_addr_for_volatile (tree exp)
2806 {
2807   tree exp_type = TREE_TYPE (exp);
2808   tree v_type 
2809     = build_qualified_type (exp_type,
2810                             TYPE_QUALS (exp_type) | TYPE_QUAL_VOLATILE);
2811   tree addr = build_fold_addr_expr (exp);
2812   v_type = build_pointer_type (v_type);
2813   addr = fold_convert (v_type, addr);
2814   exp = build_fold_indirect_ref (addr);
2815   return exp;
2816 }
2817
2818
2819 /* Expand an operation to extract from or store into a field.
2820    IS_STATIC is 1 iff the field is static.
2821    IS_PUTTING is 1 for putting into a field;  0 for getting from the field.
2822    FIELD_REF_INDEX is an index into the constant pool.  */
2823
2824 static void
2825 expand_java_field_op (int is_static, int is_putting, int field_ref_index)
2826 {
2827   tree self_type
2828     = get_class_constant (current_jcf,
2829                           COMPONENT_REF_CLASS_INDEX (&current_jcf->cpool,
2830                           field_ref_index));
2831   const char *self_name
2832     = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type)));
2833   tree field_name = COMPONENT_REF_NAME (&current_jcf->cpool, field_ref_index);
2834   tree field_signature = COMPONENT_REF_SIGNATURE (&current_jcf->cpool, 
2835                                                   field_ref_index);
2836   tree field_type = get_type_from_signature (field_signature);
2837   tree new_value = is_putting ? pop_value (field_type) : NULL_TREE;
2838   tree field_ref;
2839   int is_error = 0;
2840   tree original_self_type = self_type;
2841   tree field_decl;
2842   tree modify_expr;
2843   
2844   if (! CLASS_LOADED_P (self_type))
2845     load_class (self_type, 1);  
2846   field_decl = lookup_field (&self_type, field_name);
2847   if (field_decl == error_mark_node)
2848     {
2849       is_error = 1;
2850     }
2851   else if (field_decl == NULL_TREE)
2852     {
2853       if (! flag_verify_invocations)
2854         {
2855           int flags = ACC_PUBLIC;
2856           if (is_static)
2857             flags |= ACC_STATIC;
2858           self_type = original_self_type;
2859           field_decl = add_field (original_self_type, field_name,
2860                                   field_type, flags); 
2861           DECL_ARTIFICIAL (field_decl) = 1;
2862           DECL_IGNORED_P (field_decl) = 1;
2863 #if 0
2864           /* FIXME: We should be pessimistic about volatility.  We
2865              don't know one way or another, but this is safe.
2866              However, doing this has bad effects on code quality.  We
2867              need to look at better ways to do this.  */
2868           TREE_THIS_VOLATILE (field_decl) = 1;
2869 #endif
2870         }
2871       else
2872         {      
2873           error ("missing field '%s' in '%s'",
2874                  IDENTIFIER_POINTER (field_name), self_name);
2875           is_error = 1;
2876       }
2877     }
2878   else if (build_java_signature (TREE_TYPE (field_decl)) != field_signature)
2879     {
2880       error ("mismatching signature for field '%s' in '%s'",
2881              IDENTIFIER_POINTER (field_name), self_name);
2882       is_error = 1;
2883     }
2884   field_ref = is_static ? NULL_TREE : pop_value (self_type);
2885   if (is_error)
2886     {
2887       if (! is_putting)
2888         push_value (convert (field_type, integer_zero_node));
2889       flush_quick_stack ();
2890       return;
2891     }
2892
2893   field_ref = build_field_ref (field_ref, self_type, field_name);
2894   if (is_static
2895       && ! flag_indirect_dispatch)
2896     {
2897       tree context = DECL_CONTEXT (field_ref);
2898       if (context != self_type && CLASS_INTERFACE (TYPE_NAME (context)))
2899         field_ref = build_class_init (context, field_ref);
2900       else
2901         field_ref = build_class_init (self_type, field_ref);
2902     }
2903   if (is_putting)
2904     {
2905       flush_quick_stack ();
2906       if (FIELD_FINAL (field_decl))
2907         {
2908           if (DECL_CONTEXT (field_decl) != current_class)
2909             error ("assignment to final field %q+D not in field's class",
2910                    field_decl);
2911           /* We used to check for assignments to final fields not
2912              occurring in the class initializer or in a constructor
2913              here.  However, this constraint doesn't seem to be
2914              enforced by the JVM.  */
2915         }      
2916
2917       if (TREE_THIS_VOLATILE (field_decl))
2918         field_ref = java_modify_addr_for_volatile (field_ref);
2919
2920       modify_expr = build2 (MODIFY_EXPR, TREE_TYPE (field_ref),
2921                             field_ref, new_value);
2922
2923       if (TREE_THIS_VOLATILE (field_decl))
2924         java_add_stmt
2925           (build_call_expr (built_in_decls[BUILT_IN_SYNCHRONIZE], 0));
2926           
2927       java_add_stmt (modify_expr);
2928     }
2929   else
2930     {
2931       tree temp = build_decl (VAR_DECL, NULL_TREE, TREE_TYPE (field_ref));
2932       java_add_local_var (temp);
2933
2934       if (TREE_THIS_VOLATILE (field_decl))
2935         field_ref = java_modify_addr_for_volatile (field_ref);
2936
2937       modify_expr 
2938         = build2 (MODIFY_EXPR, TREE_TYPE (field_ref), temp, field_ref);
2939       java_add_stmt (modify_expr);
2940
2941       if (TREE_THIS_VOLATILE (field_decl))
2942         java_add_stmt 
2943           (build_call_expr (built_in_decls[BUILT_IN_SYNCHRONIZE], 0));
2944
2945       push_value (temp);
2946     }      
2947   TREE_THIS_VOLATILE (field_ref) = TREE_THIS_VOLATILE (field_decl);
2948 }
2949
2950 void
2951 load_type_state (tree label)
2952 {
2953   int i;
2954   tree vec = LABEL_TYPE_STATE (label);
2955   int cur_length = TREE_VEC_LENGTH (vec);
2956   stack_pointer = cur_length - DECL_MAX_LOCALS(current_function_decl);
2957   for (i = 0; i < cur_length; i++)
2958     type_map [i] = TREE_VEC_ELT (vec, i);
2959 }
2960
2961 /* Go over METHOD's bytecode and note instruction starts in
2962    instruction_bits[].  */
2963
2964 void
2965 note_instructions (JCF *jcf, tree method)
2966 {
2967   int PC; 
2968   unsigned char* byte_ops;
2969   long length = DECL_CODE_LENGTH (method);
2970
2971   int saw_index;
2972   jint INT_temp;
2973
2974 #undef RET /* Defined by config/i386/i386.h */
2975 #undef PTR
2976 #define BCODE byte_ops
2977 #define BYTE_type_node byte_type_node
2978 #define SHORT_type_node short_type_node
2979 #define INT_type_node int_type_node
2980 #define LONG_type_node long_type_node
2981 #define CHAR_type_node char_type_node
2982 #define PTR_type_node ptr_type_node
2983 #define FLOAT_type_node float_type_node
2984 #define DOUBLE_type_node double_type_node
2985 #define VOID_type_node void_type_node
2986 #define CONST_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
2987 #define CONST_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
2988 #define VAR_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
2989 #define VAR_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
2990
2991 #define CHECK_PC_IN_RANGE(PC) ((void)1) /* Already handled by verifier. */
2992
2993   JCF_SEEK (jcf, DECL_CODE_OFFSET (method));
2994   byte_ops = jcf->read_ptr;
2995   instruction_bits = xrealloc (instruction_bits, length + 1);
2996   memset (instruction_bits, 0, length + 1);
2997
2998   /* This pass figures out which PC can be the targets of jumps. */
2999   for (PC = 0; PC < length;)
3000     {
3001       int oldpc = PC; /* PC at instruction start. */
3002       instruction_bits [PC] |=  BCODE_INSTRUCTION_START;
3003       switch (byte_ops[PC++])
3004         {
3005 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
3006         case OPCODE: \
3007           PRE_##OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
3008           break;
3009
3010 #define NOTE_LABEL(PC) note_label(oldpc, PC)
3011
3012 #define PRE_PUSHC(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3013 #define PRE_LOAD(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3014 #define PRE_STORE(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3015 #define PRE_STACK(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3016 #define PRE_UNOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3017 #define PRE_BINOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3018 #define PRE_CONVERT(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3019 #define PRE_CONVERT2(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3020
3021 #define PRE_SPECIAL(OPERAND_TYPE, INSTRUCTION) \
3022   PRE_SPECIAL_##INSTRUCTION(OPERAND_TYPE)
3023 #define PRE_SPECIAL_IINC(OPERAND_TYPE) \
3024   ((void) IMMEDIATE_u1, (void) IMMEDIATE_s1)
3025 #define PRE_SPECIAL_ENTER(IGNORE) /* nothing */
3026 #define PRE_SPECIAL_EXIT(IGNORE) /* nothing */
3027 #define PRE_SPECIAL_THROW(IGNORE) /* nothing */
3028 #define PRE_SPECIAL_BREAK(IGNORE) /* nothing */
3029
3030 /* two forms of wide instructions */
3031 #define PRE_SPECIAL_WIDE(IGNORE) \
3032   { \
3033     int modified_opcode = IMMEDIATE_u1; \
3034     if (modified_opcode == OPCODE_iinc) \
3035       { \
3036         (void) IMMEDIATE_u2;    /* indexbyte1 and indexbyte2 */ \
3037         (void) IMMEDIATE_s2;    /* constbyte1 and constbyte2 */ \
3038       } \
3039     else \
3040       { \
3041         (void) IMMEDIATE_u2;    /* indexbyte1 and indexbyte2 */ \
3042       } \
3043   }
3044
3045 #define PRE_IMPL(IGNORE1, IGNORE2) /* nothing */
3046
3047 #define PRE_MONITOR(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3048
3049 #define PRE_RETURN(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3050 #define PRE_ARRAY(OPERAND_TYPE, SUBOP) \
3051           PRE_ARRAY_##SUBOP(OPERAND_TYPE)
3052 #define PRE_ARRAY_LOAD(TYPE) /* nothing */
3053 #define PRE_ARRAY_STORE(TYPE) /* nothing */
3054 #define PRE_ARRAY_LENGTH(TYPE) /* nothing */
3055 #define PRE_ARRAY_NEW(TYPE) PRE_ARRAY_NEW_##TYPE
3056 #define PRE_ARRAY_NEW_NUM ((void) IMMEDIATE_u1)
3057 #define PRE_ARRAY_NEW_PTR ((void) IMMEDIATE_u2)
3058 #define PRE_ARRAY_NEW_MULTI ((void) IMMEDIATE_u2, (void) IMMEDIATE_u1)
3059
3060 #define PRE_TEST(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
3061 #define PRE_COND(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
3062 #define PRE_BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
3063   saw_index = 0;  INT_temp = (OPERAND_VALUE); \
3064   if (!saw_index)  NOTE_LABEL(oldpc + INT_temp);
3065 #define PRE_JSR(OPERAND_TYPE, OPERAND_VALUE) \
3066   saw_index = 0;  INT_temp = (OPERAND_VALUE); \
3067   NOTE_LABEL (PC); \
3068   if (!saw_index)  NOTE_LABEL(oldpc + INT_temp);
3069
3070 #define PRE_RET(OPERAND_TYPE, OPERAND_VALUE)  (void)(OPERAND_VALUE)
3071
3072 #define PRE_SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
3073   PC = (PC + 3) / 4 * 4; PRE_##TABLE_OR_LOOKUP##_SWITCH
3074
3075 #define PRE_LOOKUP_SWITCH                                               \
3076   { jint default_offset = IMMEDIATE_s4;  jint npairs = IMMEDIATE_s4;    \
3077     NOTE_LABEL (default_offset+oldpc);                                  \
3078     if (npairs >= 0)                                                    \
3079       while (--npairs >= 0) {                                           \
3080        jint match ATTRIBUTE_UNUSED = IMMEDIATE_s4;                      \
3081        jint offset = IMMEDIATE_s4;                                      \
3082        NOTE_LABEL (offset+oldpc); }                                     \
3083   }
3084
3085 #define PRE_TABLE_SWITCH                                \
3086   { jint default_offset = IMMEDIATE_s4;                 \
3087     jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4;  \
3088     NOTE_LABEL (default_offset+oldpc);                  \
3089     if (low <= high)                                    \
3090      while (low++ <= high) {                            \
3091        jint offset = IMMEDIATE_s4;                      \
3092        NOTE_LABEL (offset+oldpc); }                     \
3093   }
3094
3095 #define PRE_FIELD(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
3096 #define PRE_OBJECT(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
3097 #define PRE_INVOKE(MAYBE_STATIC, IS_INTERFACE) \
3098   (void)(IMMEDIATE_u2); \
3099   PC += 2 * IS_INTERFACE /* for invokeinterface */;
3100
3101 #include "javaop.def"
3102 #undef JAVAOP
3103         }
3104     } /* for */
3105 }
3106
3107 void
3108 expand_byte_code (JCF *jcf, tree method)
3109 {
3110   int PC;
3111   int i;
3112   const unsigned char *linenumber_pointer;
3113   int dead_code_index = -1;
3114   unsigned char* byte_ops;
3115   long length = DECL_CODE_LENGTH (method);
3116
3117   stack_pointer = 0;
3118   JCF_SEEK (jcf, DECL_CODE_OFFSET (method));
3119   byte_ops = jcf->read_ptr;
3120
3121   /* We make an initial pass of the line number table, to note
3122      which instructions have associated line number entries. */
3123   linenumber_pointer = linenumber_table;
3124   for (i = 0; i < linenumber_count; i++)
3125     {
3126       int pc = GET_u2 (linenumber_pointer);
3127       linenumber_pointer += 4;
3128       if (pc >= length)
3129         warning (0, "invalid PC in line number table");
3130       else
3131         {
3132           if ((instruction_bits[pc] & BCODE_HAS_LINENUMBER) != 0)
3133             instruction_bits[pc] |= BCODE_HAS_MULTI_LINENUMBERS;
3134           instruction_bits[pc] |= BCODE_HAS_LINENUMBER;
3135         }
3136     }  
3137
3138   if (! verify_jvm_instructions_new (jcf, byte_ops, length))
3139     return;
3140
3141   promote_arguments ();
3142   cache_this_class_ref (method);
3143   cache_cpool_data_ref ();
3144
3145   /* Translate bytecodes.  */
3146   linenumber_pointer = linenumber_table;
3147   for (PC = 0; PC < length;)
3148     {
3149       if ((instruction_bits [PC] & BCODE_TARGET) != 0 || PC == 0)
3150         {
3151           tree label = lookup_label (PC);
3152           flush_quick_stack ();
3153           if ((instruction_bits [PC] & BCODE_TARGET) != 0)
3154             java_add_stmt (build1 (LABEL_EXPR, void_type_node, label));
3155           if (LABEL_VERIFIED (label) || PC == 0)
3156             load_type_state (label);
3157         }
3158
3159       if (! (instruction_bits [PC] & BCODE_VERIFIED))
3160         {
3161           if (dead_code_index == -1)
3162             {
3163               /* This is the start of a region of unreachable bytecodes.
3164                  They still need to be processed in order for EH ranges
3165                  to get handled correctly.  However, we can simply
3166                  replace these bytecodes with nops.  */
3167               dead_code_index = PC;
3168             }
3169           
3170           /* Turn this bytecode into a nop.  */
3171           byte_ops[PC] = 0x0;
3172         }
3173        else
3174         {
3175           if (dead_code_index != -1)
3176             {
3177               /* We've just reached the end of a region of dead code.  */
3178               if (extra_warnings)
3179                 warning (0, "unreachable bytecode from %d to before %d",
3180                          dead_code_index, PC);
3181               dead_code_index = -1;
3182             }
3183         }
3184
3185       /* Handle possible line number entry for this PC.
3186
3187          This code handles out-of-order and multiple linenumbers per PC,
3188          but is optimized for the case of line numbers increasing
3189          monotonically with PC. */
3190       if ((instruction_bits[PC] & BCODE_HAS_LINENUMBER) != 0)
3191         {
3192           if ((instruction_bits[PC] & BCODE_HAS_MULTI_LINENUMBERS) != 0
3193               || GET_u2 (linenumber_pointer) != PC)
3194             linenumber_pointer = linenumber_table;
3195           while (linenumber_pointer < linenumber_table + linenumber_count * 4)
3196             {
3197               int pc = GET_u2 (linenumber_pointer);
3198               linenumber_pointer += 4;
3199               if (pc == PC)
3200                 {
3201                   int line = GET_u2 (linenumber_pointer - 2);
3202 #ifdef USE_MAPPED_LOCATION
3203                   input_location = linemap_line_start (&line_table, line, 1);
3204 #else
3205                   input_location.line = line;
3206 #endif
3207                   if (!(instruction_bits[PC] & BCODE_HAS_MULTI_LINENUMBERS))
3208                     break;
3209                 }
3210             }
3211         }
3212       maybe_pushlevels (PC);
3213       PC = process_jvm_instruction (PC, byte_ops, length);
3214       maybe_poplevels (PC);
3215     } /* for */
3216
3217   uncache_this_class_ref (method);
3218
3219   if (dead_code_index != -1)
3220     {
3221       /* We've just reached the end of a region of dead code.  */
3222       if (extra_warnings)
3223         warning (0, "unreachable bytecode from %d to the end of the method", 
3224                  dead_code_index);
3225     }
3226 }
3227
3228 static void
3229 java_push_constant_from_pool (JCF *jcf, int index)
3230 {
3231   tree c;
3232   if (JPOOL_TAG (jcf, index) == CONSTANT_String)
3233     {
3234       tree name;
3235       name = get_name_constant (jcf, JPOOL_USHORT1 (jcf, index));
3236       index = alloc_name_constant (CONSTANT_String, name);
3237       c = build_ref_from_constant_pool (index);
3238       c = convert (promote_type (string_type_node), c);
3239     }
3240   else if (JPOOL_TAG (jcf, index) == CONSTANT_Class
3241            || JPOOL_TAG (jcf, index) == CONSTANT_ResolvedClass)
3242     {
3243       tree record = get_class_constant (jcf, index);
3244       c = build_class_ref (record);
3245     }
3246   else
3247     c = get_constant (jcf, index);
3248   push_value (c);
3249
3250
3251 int
3252 process_jvm_instruction (int PC, const unsigned char* byte_ops,
3253                          long length ATTRIBUTE_UNUSED)
3254
3255   const char *opname; /* Temporary ??? */
3256   int oldpc = PC; /* PC at instruction start. */
3257
3258   /* If the instruction is at the beginning of an exception handler,
3259      replace the top of the stack with the thrown object reference.  */
3260   if (instruction_bits [PC] & BCODE_EXCEPTION_TARGET)
3261     {
3262       /* Note that the verifier will not emit a type map at all for
3263          dead exception handlers.  In this case we just ignore the
3264          situation.  */
3265       if ((instruction_bits[PC] & BCODE_VERIFIED) != 0)
3266         {
3267           tree type = pop_type (promote_type (throwable_type_node));
3268           push_value (build_exception_object_ref (type));
3269         }
3270     }
3271
3272   switch (byte_ops[PC++])
3273     {
3274 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
3275     case OPCODE: \
3276       opname = #OPNAME; \
3277       OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
3278       break;
3279
3280 #define RET(OPERAND_TYPE, OPERAND_VALUE)                                \
3281   {                                                                     \
3282     int saw_index = 0;                                                  \
3283     int index     = OPERAND_VALUE;                                      \
3284     build_java_ret                                                      \
3285       (find_local_variable (index, return_address_type_node, oldpc));   \
3286   }
3287
3288 #define JSR(OPERAND_TYPE, OPERAND_VALUE) \
3289   {                                                 \
3290     /* OPERAND_VALUE may have side-effects on PC */ \
3291     int opvalue = OPERAND_VALUE;                    \
3292     build_java_jsr (oldpc + opvalue, PC);           \
3293   }
3294
3295 /* Push a constant onto the stack. */
3296 #define PUSHC(OPERAND_TYPE, OPERAND_VALUE) \
3297   { int saw_index = 0;  int ival = (OPERAND_VALUE); \
3298     if (saw_index) java_push_constant_from_pool (current_jcf, ival); \
3299     else expand_java_pushc (ival, OPERAND_TYPE##_type_node); }
3300
3301 /* internal macro added for use by the WIDE case */
3302 #define LOAD_INTERNAL(OPTYPE, OPVALUE) \
3303   expand_load_internal (OPVALUE, type_map[OPVALUE], oldpc);
3304
3305 /* Push local variable onto the opcode stack. */
3306 #define LOAD(OPERAND_TYPE, OPERAND_VALUE) \
3307   { \
3308     /* have to do this since OPERAND_VALUE may have side-effects */ \
3309     int opvalue = OPERAND_VALUE; \
3310     LOAD_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3311   }
3312
3313 #define RETURN(OPERAND_TYPE, OPERAND_VALUE) \
3314   expand_java_return (OPERAND_TYPE##_type_node)
3315
3316 #define REM_EXPR TRUNC_MOD_EXPR
3317 #define BINOP(OPERAND_TYPE, OPERAND_VALUE) \
3318   expand_java_binop (OPERAND_TYPE##_type_node, OPERAND_VALUE##_EXPR)
3319
3320 #define FIELD(IS_STATIC, IS_PUT) \
3321   expand_java_field_op (IS_STATIC, IS_PUT, IMMEDIATE_u2)
3322
3323 #define TEST(OPERAND_TYPE, CONDITION) \
3324   expand_test (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3325
3326 #define COND(OPERAND_TYPE, CONDITION) \
3327   expand_cond (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3328
3329 #define BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
3330   BRANCH_##OPERAND_TYPE (OPERAND_VALUE)
3331
3332 #define BRANCH_GOTO(OPERAND_VALUE) \
3333   expand_java_goto (oldpc + OPERAND_VALUE)
3334
3335 #define BRANCH_CALL(OPERAND_VALUE) \
3336   expand_java_call (oldpc + OPERAND_VALUE, oldpc)
3337
3338 #if 0
3339 #define BRANCH_RETURN(OPERAND_VALUE) \
3340   { \
3341     tree type = OPERAND_TYPE##_type_node; \
3342     tree value = find_local_variable (OPERAND_VALUE, type, oldpc); \
3343     expand_java_ret (value); \
3344   }
3345 #endif
3346
3347 #define NOT_IMPL(OPERAND_TYPE, OPERAND_VALUE) \
3348           fprintf (stderr, "%3d: %s ", oldpc, opname); \
3349           fprintf (stderr, "(not implemented)\n")
3350 #define NOT_IMPL1(OPERAND_VALUE) \
3351           fprintf (stderr, "%3d: %s ", oldpc, opname); \
3352           fprintf (stderr, "(not implemented)\n")
3353
3354 #define BRANCH_RETURN(OPERAND_VALUE) NOT_IMPL1(OPERAND_VALUE)
3355
3356 #define STACK(SUBOP, COUNT) STACK_##SUBOP (COUNT)
3357
3358 #define STACK_POP(COUNT) java_stack_pop (COUNT)
3359
3360 #define STACK_SWAP(COUNT) java_stack_swap()
3361
3362 #define STACK_DUP(COUNT) java_stack_dup (COUNT, 0)
3363 #define STACK_DUPx1(COUNT) java_stack_dup (COUNT, 1)
3364 #define STACK_DUPx2(COUNT) java_stack_dup (COUNT, 2)
3365
3366 #define SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
3367   PC = (PC + 3) / 4 * 4; TABLE_OR_LOOKUP##_SWITCH
3368
3369 #define LOOKUP_SWITCH \
3370   { jint default_offset = IMMEDIATE_s4;  jint npairs = IMMEDIATE_s4; \
3371     tree selector = pop_value (INT_type_node); \
3372     tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3373     while (--npairs >= 0) \
3374       { \
3375         jint match = IMMEDIATE_s4; jint offset = IMMEDIATE_s4; \
3376         expand_java_add_case (switch_expr, match, oldpc + offset); \
3377       } \
3378   }
3379
3380 #define TABLE_SWITCH \
3381   { jint default_offset = IMMEDIATE_s4; \
3382     jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4; \
3383     tree selector = pop_value (INT_type_node); \
3384     tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3385     for (; low <= high; low++) \
3386       { \
3387         jint offset = IMMEDIATE_s4; \
3388         expand_java_add_case (switch_expr, low, oldpc + offset); \
3389       } \
3390   }
3391
3392 #define INVOKE(MAYBE_STATIC, IS_INTERFACE) \
3393   { int opcode = byte_ops[PC-1]; \
3394     int method_ref_index = IMMEDIATE_u2; \
3395     int nargs; \
3396     if (IS_INTERFACE) { nargs = IMMEDIATE_u1;  (void) IMMEDIATE_u1; } \
3397     else nargs = -1; \
3398     expand_invoke (opcode, method_ref_index, nargs); \
3399   }
3400
3401 /* Handle new, checkcast, instanceof */
3402 #define OBJECT(TYPE, OP) \
3403   expand_java_##OP (get_class_constant (current_jcf, IMMEDIATE_u2))
3404
3405 #define ARRAY(OPERAND_TYPE, SUBOP) ARRAY_##SUBOP(OPERAND_TYPE)
3406
3407 #define ARRAY_LOAD(OPERAND_TYPE)                        \
3408   {                                                     \
3409     expand_java_arrayload( OPERAND_TYPE##_type_node );  \
3410   }
3411
3412 #define ARRAY_STORE(OPERAND_TYPE)                       \
3413   {                                                     \
3414     expand_java_arraystore( OPERAND_TYPE##_type_node ); \
3415   }
3416
3417 #define ARRAY_LENGTH(OPERAND_TYPE) expand_java_array_length();
3418 #define ARRAY_NEW(OPERAND_TYPE) ARRAY_NEW_##OPERAND_TYPE()
3419 #define ARRAY_NEW_PTR()                                                 \
3420     push_value (build_anewarray (get_class_constant (current_jcf,       \
3421                                                      IMMEDIATE_u2),     \
3422                                  pop_value (int_type_node)));
3423 #define ARRAY_NEW_NUM()                         \
3424   {                                             \
3425     int atype = IMMEDIATE_u1;                   \
3426     push_value (build_newarray (atype, pop_value (int_type_node)));\
3427   }
3428 #define ARRAY_NEW_MULTI()                                       \
3429   {                                                             \
3430     tree class = get_class_constant (current_jcf, IMMEDIATE_u2 );       \
3431     int  ndims = IMMEDIATE_u1;                                  \
3432     expand_java_multianewarray( class, ndims );                 \
3433   }
3434
3435 #define UNOP(OPERAND_TYPE, OPERAND_VALUE) \
3436   push_value (fold_build1 (NEGATE_EXPR, OPERAND_TYPE##_type_node, \
3437                            pop_value (OPERAND_TYPE##_type_node)));
3438
3439 #define CONVERT2(FROM_TYPE, TO_TYPE)                                     \
3440   {                                                                      \
3441     push_value (build1 (NOP_EXPR, int_type_node,                         \
3442                         (convert (TO_TYPE##_type_node,                   \
3443                                   pop_value (FROM_TYPE##_type_node))))); \
3444   }
3445
3446 #define CONVERT(FROM_TYPE, TO_TYPE)                             \
3447   {                                                             \
3448     push_value (convert (TO_TYPE##_type_node,                   \
3449                          pop_value (FROM_TYPE##_type_node)));   \
3450   }
3451
3452 /* internal macro added for use by the WIDE case 
3453    Added TREE_TYPE (decl) assignment, apbianco  */
3454 #define STORE_INTERNAL(OPTYPE, OPVALUE)                         \
3455   {                                                             \
3456     tree decl, value;                                           \
3457     int index = OPVALUE;                                        \
3458     tree type = OPTYPE;                                         \
3459     value = pop_value (type);                                   \
3460     type = TREE_TYPE (value);                                   \
3461     decl = find_local_variable (index, type, oldpc);            \
3462     set_local_type (index, type);                               \
3463     java_add_stmt (build2 (MODIFY_EXPR, type, decl, value));    \
3464   }
3465
3466 #define STORE(OPERAND_TYPE, OPERAND_VALUE) \
3467   { \
3468     /* have to do this since OPERAND_VALUE may have side-effects */ \
3469     int opvalue = OPERAND_VALUE; \
3470     STORE_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3471   }
3472
3473 #define SPECIAL(OPERAND_TYPE, INSTRUCTION) \
3474   SPECIAL_##INSTRUCTION(OPERAND_TYPE)
3475
3476 #define SPECIAL_ENTER(IGNORED) MONITOR_OPERATION (soft_monitorenter_node)
3477 #define SPECIAL_EXIT(IGNORED)  MONITOR_OPERATION (soft_monitorexit_node)
3478
3479 #define MONITOR_OPERATION(call)                 \
3480   {                                             \
3481     tree o = pop_value (ptr_type_node);         \
3482     tree c;                                     \
3483     flush_quick_stack ();                       \
3484     c = build_java_monitor (call, o);           \
3485     TREE_SIDE_EFFECTS (c) = 1;                  \
3486     java_add_stmt (c);                          \
3487   }
3488
3489 #define SPECIAL_IINC(IGNORED) \
3490   { \
3491     unsigned int local_var_index = IMMEDIATE_u1; \
3492     int ival = IMMEDIATE_s1; \
3493     expand_iinc(local_var_index, ival, oldpc); \
3494   }
3495
3496 #define SPECIAL_WIDE(IGNORED) \
3497   { \
3498     int modified_opcode = IMMEDIATE_u1; \
3499     unsigned int local_var_index = IMMEDIATE_u2; \
3500     switch (modified_opcode) \
3501       { \
3502       case OPCODE_iinc: \
3503         { \
3504           int ival = IMMEDIATE_s2; \
3505           expand_iinc (local_var_index, ival, oldpc); \
3506           break; \
3507         } \
3508       case OPCODE_iload: \
3509       case OPCODE_lload: \
3510       case OPCODE_fload: \
3511       case OPCODE_dload: \
3512       case OPCODE_aload: \
3513         { \
3514           /* duplicate code from LOAD macro */ \
3515           LOAD_INTERNAL(operand_type[modified_opcode], local_var_index); \
3516           break; \
3517         } \
3518       case OPCODE_istore: \
3519       case OPCODE_lstore: \
3520       case OPCODE_fstore: \
3521       case OPCODE_dstore: \
3522       case OPCODE_astore: \
3523         { \
3524           STORE_INTERNAL(operand_type[modified_opcode], local_var_index); \
3525           break; \
3526         } \
3527       default: \
3528         error ("unrecogized wide sub-instruction"); \
3529       } \
3530   }
3531
3532 #define SPECIAL_THROW(IGNORED) \
3533   build_java_athrow (pop_value (throwable_type_node))
3534
3535 #define SPECIAL_BREAK NOT_IMPL1
3536 #define IMPL          NOT_IMPL
3537
3538 #include "javaop.def"
3539 #undef JAVAOP
3540    default:
3541     fprintf (stderr, "%3d: unknown(%3d)\n", oldpc, byte_ops[PC]);
3542   }
3543   return PC;
3544 }
3545
3546 /* Return the opcode at PC in the code section pointed to by
3547    CODE_OFFSET.  */
3548
3549 static unsigned char
3550 peek_opcode_at_pc (JCF *jcf, int code_offset, int pc)
3551 {
3552   unsigned char opcode;
3553   long absolute_offset = (long)JCF_TELL (jcf);
3554
3555   JCF_SEEK (jcf, code_offset);
3556   opcode = jcf->read_ptr [pc];
3557   JCF_SEEK (jcf, absolute_offset);
3558   return opcode;
3559 }
3560
3561 /* Some bytecode compilers are emitting accurate LocalVariableTable
3562    attributes. Here's an example:
3563    
3564      PC   <t>store_<n>
3565      PC+1 ...
3566      
3567      Attribute "LocalVariableTable"
3568      slot #<n>: ... (PC: PC+1 length: L)
3569    
3570    This is accurate because the local in slot <n> really exists after
3571    the opcode at PC is executed, hence from PC+1 to PC+1+L.
3572
3573    This procedure recognizes this situation and extends the live range
3574    of the local in SLOT to START_PC-1 or START_PC-2 (depending on the
3575    length of the store instruction.)
3576
3577    This function is used by `give_name_to_locals' so that a local's
3578    DECL features a DECL_LOCAL_START_PC such that the first related
3579    store operation will use DECL as a destination, not an unrelated
3580    temporary created for the occasion.
3581
3582    This function uses a global (instruction_bits) `note_instructions' should
3583    have allocated and filled properly.  */
3584
3585 int
3586 maybe_adjust_start_pc (struct JCF *jcf, int code_offset,
3587                        int start_pc, int slot)
3588 {
3589   int first, index, opcode;
3590   int pc, insn_pc;
3591   int wide_found = 0;
3592
3593   if (!start_pc)
3594     return start_pc;
3595
3596   first = index = -1;
3597
3598   /* Find last previous instruction and remember it */
3599   for (pc = start_pc-1; pc; pc--) 
3600     if (instruction_bits [pc] & BCODE_INSTRUCTION_START)
3601       break;
3602   insn_pc = pc;
3603
3604   /* Retrieve the instruction, handle `wide'. */  
3605   opcode = (int) peek_opcode_at_pc (jcf, code_offset, pc++);
3606   if (opcode == OPCODE_wide)
3607     {
3608       wide_found = 1;
3609       opcode = (int) peek_opcode_at_pc (jcf, code_offset, pc++);
3610     }
3611
3612   switch (opcode)
3613     {
3614     case OPCODE_astore_0:
3615     case OPCODE_astore_1:
3616     case OPCODE_astore_2:
3617     case OPCODE_astore_3:
3618       first = OPCODE_astore_0;
3619       break;
3620
3621     case OPCODE_istore_0:
3622     case OPCODE_istore_1:
3623     case OPCODE_istore_2:
3624     case OPCODE_istore_3:
3625       first = OPCODE_istore_0;
3626       break;
3627       
3628     case OPCODE_lstore_0:
3629     case OPCODE_lstore_1:
3630     case OPCODE_lstore_2:
3631     case OPCODE_lstore_3:
3632       first = OPCODE_lstore_0;
3633       break;
3634
3635     case OPCODE_fstore_0:
3636     case OPCODE_fstore_1:
3637     case OPCODE_fstore_2:
3638     case OPCODE_fstore_3:
3639       first = OPCODE_fstore_0;
3640       break;
3641
3642     case OPCODE_dstore_0:
3643     case OPCODE_dstore_1:
3644     case OPCODE_dstore_2:
3645     case OPCODE_dstore_3:
3646       first = OPCODE_dstore_0;
3647       break;
3648
3649     case OPCODE_astore:
3650     case OPCODE_istore:
3651     case OPCODE_lstore:
3652     case OPCODE_fstore:
3653     case OPCODE_dstore:
3654       index = peek_opcode_at_pc (jcf, code_offset, pc);
3655       if (wide_found)
3656         {
3657           int other = peek_opcode_at_pc (jcf, code_offset, ++pc);
3658           index = (other << 8) + index;
3659         }
3660       break;
3661     }
3662
3663   /* Now we decide: first >0 means we have a <t>store_<n>, index >0
3664      means we have a <t>store. */
3665   if ((first > 0 && opcode - first == slot) || (index > 0 && index == slot))
3666     start_pc = insn_pc;
3667
3668   return start_pc;
3669 }
3670
3671 /* Force the (direct) sub-operands of NODE to be evaluated in left-to-right
3672    order, as specified by Java Language Specification.
3673
3674    The problem is that while expand_expr will evaluate its sub-operands in
3675    left-to-right order, for variables it will just return an rtx (i.e.
3676    an lvalue) for the variable (rather than an rvalue).  So it is possible
3677    that a later sub-operand will change the register, and when the
3678    actual operation is done, it will use the new value, when it should
3679    have used the original value.
3680
3681    We fix this by using save_expr.  This forces the sub-operand to be
3682    copied into a fresh virtual register,
3683
3684    For method invocation, we modify the arguments so that a
3685    left-to-right order evaluation is performed. Saved expressions
3686    will, in CALL_EXPR order, be reused when the call will be expanded.
3687
3688    We also promote outgoing args if needed.  */
3689
3690 tree
3691 force_evaluation_order (tree node)
3692 {
3693   if (flag_syntax_only)
3694     return node;
3695   if (TREE_CODE (node) == CALL_EXPR
3696       || (TREE_CODE (node) == COMPOUND_EXPR
3697           && TREE_CODE (TREE_OPERAND (node, 0)) == CALL_EXPR
3698           && TREE_CODE (TREE_OPERAND (node, 1)) == SAVE_EXPR)) 
3699     {
3700       tree call, cmp;
3701       int i, nargs;
3702
3703       /* Account for wrapped around ctors.  */
3704       if (TREE_CODE (node) == COMPOUND_EXPR)
3705         call = TREE_OPERAND (node, 0);
3706       else
3707         call = node;
3708
3709       nargs = call_expr_nargs (call);
3710
3711       /* This reverses the evaluation order. This is a desired effect. */
3712       for (i = 0, cmp = NULL_TREE; i < nargs; i++)
3713         {
3714           tree arg = CALL_EXPR_ARG (call, i);
3715           /* Promote types smaller than integer.  This is required by
3716              some ABIs.  */
3717           tree type = TREE_TYPE (arg);
3718           tree saved;
3719           if (targetm.calls.promote_prototypes (type)
3720               && INTEGRAL_TYPE_P (type)
3721               && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
3722                                       TYPE_SIZE (integer_type_node)))
3723             arg = fold_convert (integer_type_node, arg);
3724
3725           saved = save_expr (force_evaluation_order (arg));
3726           cmp = (cmp == NULL_TREE ? saved :
3727                  build2 (COMPOUND_EXPR, void_type_node, cmp, saved));
3728
3729           CALL_EXPR_ARG (call, i) = saved;
3730         }
3731       
3732       if (cmp && TREE_CODE (cmp) == COMPOUND_EXPR)
3733         TREE_SIDE_EFFECTS (cmp) = 1;
3734
3735       if (cmp)
3736         {
3737           cmp = build2 (COMPOUND_EXPR, TREE_TYPE (node), cmp, node);
3738           if (TREE_TYPE (cmp) != void_type_node)
3739             cmp = save_expr (cmp);
3740           CAN_COMPLETE_NORMALLY (cmp) = CAN_COMPLETE_NORMALLY (node);
3741           TREE_SIDE_EFFECTS (cmp) = 1;
3742           node = cmp;
3743         }
3744     }
3745   return node;
3746 }
3747
3748 /* Build a node to represent empty statements and blocks. */
3749
3750 tree
3751 build_java_empty_stmt (void)
3752 {
3753   tree t = build_empty_stmt ();
3754   CAN_COMPLETE_NORMALLY (t) = 1;
3755   return t;
3756 }
3757
3758 /* Promote all args of integral type before generating any code.  */
3759
3760 static void
3761 promote_arguments (void)
3762 {
3763   int i;
3764   tree arg;
3765   for (arg = DECL_ARGUMENTS (current_function_decl), i = 0;
3766        arg != NULL_TREE;  arg = TREE_CHAIN (arg), i++)
3767     {
3768       tree arg_type = TREE_TYPE (arg);
3769       if (INTEGRAL_TYPE_P (arg_type)
3770           && TYPE_PRECISION (arg_type) < 32)
3771         {
3772           tree copy = find_local_variable (i, integer_type_node, -1);
3773           java_add_stmt (build2 (MODIFY_EXPR, integer_type_node,
3774                                  copy,
3775                                  fold_convert (integer_type_node, arg)));
3776         }
3777       if (TYPE_IS_WIDE (arg_type))
3778         i++;
3779     }
3780 }
3781
3782 /* Create a local variable that points to the constant pool.  */
3783
3784 static void
3785 cache_cpool_data_ref (void)
3786 {
3787   if (optimize)
3788     {
3789       tree cpool;
3790       tree d = build_constant_data_ref (flag_indirect_classes);
3791       tree cpool_ptr = build_decl (VAR_DECL, NULL_TREE, 
3792                                    build_pointer_type (TREE_TYPE (d)));
3793       java_add_local_var (cpool_ptr);
3794       TREE_INVARIANT (cpool_ptr) = 1;
3795       TREE_CONSTANT (cpool_ptr) = 1;
3796
3797       java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (cpool_ptr), 
3798                              cpool_ptr, build_address_of (d)));
3799       cpool = build1 (INDIRECT_REF, TREE_TYPE (d), cpool_ptr);
3800       TREE_THIS_NOTRAP (cpool) = 1;
3801       TYPE_CPOOL_DATA_REF (output_class) = cpool;
3802     }
3803 }
3804
3805 #include "gt-java-expr.h"