* opt-functions.awk (var_type): New function.
[official-gcc.git] / gcc / java / expr.c
blobb48847126b850bd7001cccf139d2420225ba356c
1 /* Process expressions for the GNU compiler for the Java(TM) language.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
5 This file is part of GCC.
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.
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.
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, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
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. */
26 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
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"
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 #if 0
78 static void expand_java_call (int, int);
79 static void expand_java_ret (tree);
80 #endif
81 static tree pop_arguments (tree);
82 static void expand_invoke (int, int, int);
83 static void expand_java_field_op (int, int, int);
84 static void java_push_constant_from_pool (struct JCF *, int);
85 static void java_stack_pop (int);
86 static tree build_java_throw_out_of_bounds_exception (tree);
87 static tree build_java_check_indexed_type (tree, tree);
88 static unsigned char peek_opcode_at_pc (struct JCF *, int, int);
89 static void promote_arguments (void);
91 static GTY(()) tree operand_type[59];
93 static GTY(()) tree methods_ident;
94 static GTY(()) tree ncode_ident;
95 tree dtable_ident = NULL_TREE;
97 /* Set to nonzero value in order to emit class initialization code
98 before static field references. */
99 int always_initialize_class_p = 0;
101 /* We store the stack state in two places:
102 Within a basic block, we use the quick_stack, which is a
103 pushdown list (TREE_LISTs) of expression nodes.
104 This is the top part of the stack; below that we use find_stack_slot.
105 At the end of a basic block, the quick_stack must be flushed
106 to the stack slot array (as handled by find_stack_slot).
107 Using quick_stack generates better code (especially when
108 compiled without optimization), because we do not have to
109 explicitly store and load trees to temporary variables.
111 If a variable is on the quick stack, it means the value of variable
112 when the quick stack was last flushed. Conceptually, flush_quick_stack
113 saves all the quick_stack elements in parallel. However, that is
114 complicated, so it actually saves them (i.e. copies each stack value
115 to is home virtual register) from low indexes. This allows a quick_stack
116 element at index i (counting from the bottom of stack the) to references
117 slot virtuals for register that are >= i, but not those that are deeper.
118 This convention makes most operations easier. For example iadd works
119 even when the stack contains (reg[0], reg[1]): It results in the
120 stack containing (reg[0]+reg[1]), which is OK. However, some stack
121 operations are more complicated. For example dup given a stack
122 containing (reg[0]) would yield (reg[0], reg[0]), which would violate
123 the convention, since stack value 1 would refer to a register with
124 lower index (reg[0]), which flush_quick_stack does not safely handle.
125 So dup cannot just add an extra element to the quick_stack, but iadd can.
128 static GTY(()) tree quick_stack;
130 /* A free-list of unused permanent TREE_LIST nodes. */
131 static GTY((deletable)) tree tree_list_free_list;
133 /* The stack pointer of the Java virtual machine.
134 This does include the size of the quick_stack. */
136 int stack_pointer;
138 const unsigned char *linenumber_table;
139 int linenumber_count;
141 void
142 init_expr_processing (void)
144 operand_type[21] = operand_type[54] = int_type_node;
145 operand_type[22] = operand_type[55] = long_type_node;
146 operand_type[23] = operand_type[56] = float_type_node;
147 operand_type[24] = operand_type[57] = double_type_node;
148 operand_type[25] = operand_type[58] = ptr_type_node;
151 tree
152 java_truthvalue_conversion (tree expr)
154 /* It is simpler and generates better code to have only TRUTH_*_EXPR
155 or comparison expressions as truth values at this level.
157 This function should normally be identity for Java. */
159 switch (TREE_CODE (expr))
161 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
162 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
163 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
164 case ORDERED_EXPR: case UNORDERED_EXPR:
165 case TRUTH_ANDIF_EXPR:
166 case TRUTH_ORIF_EXPR:
167 case TRUTH_AND_EXPR:
168 case TRUTH_OR_EXPR:
169 case TRUTH_XOR_EXPR:
170 case TRUTH_NOT_EXPR:
171 case ERROR_MARK:
172 return expr;
174 case INTEGER_CST:
175 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
177 case REAL_CST:
178 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
180 /* are these legal? XXX JH */
181 case NEGATE_EXPR:
182 case ABS_EXPR:
183 case FLOAT_EXPR:
184 /* These don't change whether an object is nonzero or zero. */
185 return java_truthvalue_conversion (TREE_OPERAND (expr, 0));
187 case COND_EXPR:
188 /* Distribute the conversion into the arms of a COND_EXPR. */
189 return fold
190 (build3 (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
191 java_truthvalue_conversion (TREE_OPERAND (expr, 1)),
192 java_truthvalue_conversion (TREE_OPERAND (expr, 2))));
194 case NOP_EXPR:
195 /* If this is widening the argument, we can ignore it. */
196 if (TYPE_PRECISION (TREE_TYPE (expr))
197 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
198 return java_truthvalue_conversion (TREE_OPERAND (expr, 0));
199 /* fall through to default */
201 default:
202 return fold (build2 (NE_EXPR, boolean_type_node,
203 expr, boolean_false_node));
207 /* Save any stack slots that happen to be in the quick_stack into their
208 home virtual register slots.
210 The copy order is from low stack index to high, to support the invariant
211 that the expression for a slot may contain decls for stack slots with
212 higher (or the same) index, but not lower. */
214 static void
215 flush_quick_stack (void)
217 int stack_index = stack_pointer;
218 tree prev, cur, next;
220 /* First reverse the quick_stack, and count the number of slots it has. */
221 for (cur = quick_stack, prev = NULL_TREE; cur != NULL_TREE; cur = next)
223 next = TREE_CHAIN (cur);
224 TREE_CHAIN (cur) = prev;
225 prev = cur;
226 stack_index -= 1 + TYPE_IS_WIDE (TREE_TYPE (TREE_VALUE (cur)));
228 quick_stack = prev;
230 while (quick_stack != NULL_TREE)
232 tree decl;
233 tree node = quick_stack, type;
234 quick_stack = TREE_CHAIN (node);
235 TREE_CHAIN (node) = tree_list_free_list;
236 tree_list_free_list = node;
237 node = TREE_VALUE (node);
238 type = TREE_TYPE (node);
240 decl = find_stack_slot (stack_index, type);
241 if (decl != node)
242 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (node), decl, node));
243 stack_index += 1 + TYPE_IS_WIDE (type);
247 /* Push TYPE on the type stack.
248 Return true on success, 0 on overflow. */
251 push_type_0 (tree type)
253 int n_words;
254 type = promote_type (type);
255 n_words = 1 + TYPE_IS_WIDE (type);
256 if (stack_pointer + n_words > DECL_MAX_STACK (current_function_decl))
257 return 0;
258 /* Allocate decl for this variable now, so we get a temporary that
259 survives the whole method. */
260 find_stack_slot (stack_pointer, type);
261 stack_type_map[stack_pointer++] = type;
262 n_words--;
263 while (--n_words >= 0)
264 stack_type_map[stack_pointer++] = TYPE_SECOND;
265 return 1;
268 void
269 push_type (tree type)
271 if (! push_type_0 (type))
272 abort ();
275 static void
276 push_value (tree value)
278 tree type = TREE_TYPE (value);
279 if (TYPE_PRECISION (type) < 32 && INTEGRAL_TYPE_P (type))
281 type = promote_type (type);
282 value = convert (type, value);
284 push_type (type);
285 if (tree_list_free_list == NULL_TREE)
286 quick_stack = tree_cons (NULL_TREE, value, quick_stack);
287 else
289 tree node = tree_list_free_list;
290 tree_list_free_list = TREE_CHAIN (tree_list_free_list);
291 TREE_VALUE (node) = value;
292 TREE_CHAIN (node) = quick_stack;
293 quick_stack = node;
297 /* Pop a type from the type stack.
298 TYPE is the expected type. Return the actual type, which must be
299 convertible to TYPE.
300 On an error, *MESSAGEP is set to a freshly malloc'd error message. */
302 tree
303 pop_type_0 (tree type, char **messagep)
305 int n_words;
306 tree t;
307 *messagep = NULL;
308 if (TREE_CODE (type) == RECORD_TYPE)
309 type = promote_type (type);
310 n_words = 1 + TYPE_IS_WIDE (type);
311 if (stack_pointer < n_words)
313 *messagep = xstrdup ("stack underflow");
314 return type;
316 while (--n_words > 0)
318 if (stack_type_map[--stack_pointer] != void_type_node)
320 *messagep = xstrdup ("Invalid multi-word value on type stack");
321 return type;
324 t = stack_type_map[--stack_pointer];
325 if (type == NULL_TREE || t == type)
326 return t;
327 if (TREE_CODE (t) == TREE_LIST)
331 tree tt = TREE_PURPOSE (t);
332 if (! can_widen_reference_to (tt, type))
334 t = tt;
335 goto fail;
337 t = TREE_CHAIN (t);
339 while (t);
340 return t;
342 if (INTEGRAL_TYPE_P (type) && INTEGRAL_TYPE_P (t)
343 && TYPE_PRECISION (type) <= 32 && TYPE_PRECISION (t) <= 32)
344 return t;
345 if (TREE_CODE (type) == POINTER_TYPE && TREE_CODE (t) == POINTER_TYPE)
347 if (flag_new_verifier)
349 /* Since the verifier has already run, we know that any
350 types we see will be compatible. In BC mode, this fact
351 may be checked at runtime, but if that is so then we can
352 assume its truth here as well. So, we always succeed
353 here, with the expected type. */
354 return type;
356 else
358 if (type == ptr_type_node || type == object_ptr_type_node)
359 return t;
360 else if (t == ptr_type_node) /* Special case for null reference. */
361 return type;
362 /* This is a kludge, but matches what Sun's verifier does.
363 It can be tricked, but is safe as long as type errors
364 (i.e. interface method calls) are caught at run-time. */
365 else if (CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (type))))
366 return object_ptr_type_node;
367 else if (can_widen_reference_to (t, type))
368 return t;
372 if (! flag_verify_invocations && flag_indirect_dispatch
373 && t == object_ptr_type_node)
375 if (type != ptr_type_node)
376 warning (0, "need to insert runtime check for %s",
377 xstrdup (lang_printable_name (type, 0)));
378 return type;
381 /* lang_printable_name uses a static buffer, so we must save the result
382 from calling it the first time. */
383 fail:
385 char *temp = xstrdup (lang_printable_name (type, 0));
386 /* If the stack contains a multi-word type, keep popping the stack until
387 the real type is found. */
388 while (t == void_type_node)
389 t = stack_type_map[--stack_pointer];
390 *messagep = concat ("expected type '", temp,
391 "' but stack contains '", lang_printable_name (t, 0),
392 "'", NULL);
393 free (temp);
395 return type;
398 /* Pop a type from the type stack.
399 TYPE is the expected type. Return the actual type, which must be
400 convertible to TYPE, otherwise call error. */
402 tree
403 pop_type (tree type)
405 char *message = NULL;
406 type = pop_type_0 (type, &message);
407 if (message != NULL)
409 error ("%s", message);
410 free (message);
412 return type;
416 /* Return true if two type assertions are equal. */
418 static int
419 type_assertion_eq (const void * k1_p, const void * k2_p)
421 type_assertion k1 = *(type_assertion *)k1_p;
422 type_assertion k2 = *(type_assertion *)k2_p;
423 return (k1.assertion_code == k2.assertion_code
424 && k1.op1 == k2.op1
425 && k1.op2 == k2.op2);
428 /* Hash a type assertion. */
430 static hashval_t
431 type_assertion_hash (const void *p)
433 const type_assertion *k_p = p;
434 hashval_t hash = iterative_hash (&k_p->assertion_code, sizeof
435 k_p->assertion_code, 0);
436 hash = iterative_hash (&k_p->op1, sizeof k_p->op1, hash);
437 return iterative_hash (&k_p->op2, sizeof k_p->op2, hash);
440 /* Add an entry to the type assertion table for the given class.
441 CLASS is the class for which this assertion will be evaluated by the
442 runtime during loading/initialization.
443 ASSERTION_CODE is the 'opcode' or type of this assertion: see java-tree.h.
444 OP1 and OP2 are the operands. The tree type of these arguments may be
445 specific to each assertion_code. */
447 void
448 add_type_assertion (tree class, int assertion_code, tree op1, tree op2)
450 htab_t assertions_htab;
451 type_assertion as;
452 void **as_pp;
454 assertions_htab = TYPE_ASSERTIONS (class);
455 if (assertions_htab == NULL)
457 assertions_htab = htab_create_ggc (7, type_assertion_hash,
458 type_assertion_eq, NULL);
459 TYPE_ASSERTIONS (current_class) = assertions_htab;
462 as.assertion_code = assertion_code;
463 as.op1 = op1;
464 as.op2 = op2;
466 as_pp = htab_find_slot (assertions_htab, &as, INSERT);
468 /* Don't add the same assertion twice. */
469 if (*as_pp)
470 return;
472 *as_pp = ggc_alloc (sizeof (type_assertion));
473 **(type_assertion **)as_pp = as;
477 /* Return 1 if SOURCE_TYPE can be safely widened to TARGET_TYPE.
478 Handles array types and interfaces. */
481 can_widen_reference_to (tree source_type, tree target_type)
483 if (source_type == ptr_type_node || target_type == object_ptr_type_node)
484 return 1;
486 /* Get rid of pointers */
487 if (TREE_CODE (source_type) == POINTER_TYPE)
488 source_type = TREE_TYPE (source_type);
489 if (TREE_CODE (target_type) == POINTER_TYPE)
490 target_type = TREE_TYPE (target_type);
492 if (source_type == target_type)
493 return 1;
495 /* FIXME: This is very pessimistic, in that it checks everything,
496 even if we already know that the types are compatible. If we're
497 to support full Java class loader semantics, we need this.
498 However, we could do something more optimal. */
499 if (! flag_verify_invocations)
501 add_type_assertion (current_class, JV_ASSERT_TYPES_COMPATIBLE,
502 source_type, target_type);
504 if (!quiet_flag)
505 warning (0, "assert: %s is assign compatible with %s",
506 xstrdup (lang_printable_name (target_type, 0)),
507 xstrdup (lang_printable_name (source_type, 0)));
508 /* Punt everything to runtime. */
509 return 1;
512 if (TYPE_DUMMY (source_type) || TYPE_DUMMY (target_type))
514 return 1;
516 else
518 if (TYPE_ARRAY_P (source_type) || TYPE_ARRAY_P (target_type))
520 HOST_WIDE_INT source_length, target_length;
521 if (TYPE_ARRAY_P (source_type) != TYPE_ARRAY_P (target_type))
523 /* An array implements Cloneable and Serializable. */
524 tree name = DECL_NAME (TYPE_NAME (target_type));
525 return (name == java_lang_cloneable_identifier_node
526 || name == java_io_serializable_identifier_node);
528 target_length = java_array_type_length (target_type);
529 if (target_length >= 0)
531 source_length = java_array_type_length (source_type);
532 if (source_length != target_length)
533 return 0;
535 source_type = TYPE_ARRAY_ELEMENT (source_type);
536 target_type = TYPE_ARRAY_ELEMENT (target_type);
537 if (source_type == target_type)
538 return 1;
539 if (TREE_CODE (source_type) != POINTER_TYPE
540 || TREE_CODE (target_type) != POINTER_TYPE)
541 return 0;
542 return can_widen_reference_to (source_type, target_type);
544 else
546 int source_depth = class_depth (source_type);
547 int target_depth = class_depth (target_type);
549 if (TYPE_DUMMY (source_type) || TYPE_DUMMY (target_type))
551 if (! quiet_flag)
552 warning (0, "assert: %s is assign compatible with %s",
553 xstrdup (lang_printable_name (target_type, 0)),
554 xstrdup (lang_printable_name (source_type, 0)));
555 return 1;
558 /* class_depth can return a negative depth if an error occurred */
559 if (source_depth < 0 || target_depth < 0)
560 return 0;
562 if (CLASS_INTERFACE (TYPE_NAME (target_type)))
564 /* target_type is OK if source_type or source_type ancestors
565 implement target_type. We handle multiple sub-interfaces */
566 tree binfo, base_binfo;
567 int i;
569 for (binfo = TYPE_BINFO (source_type), i = 0;
570 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
571 if (can_widen_reference_to
572 (BINFO_TYPE (base_binfo), target_type))
573 return 1;
575 if (!i)
576 return 0;
579 for ( ; source_depth > target_depth; source_depth--)
581 source_type
582 = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (source_type), 0));
584 return source_type == target_type;
589 static tree
590 pop_value (tree type)
592 type = pop_type (type);
593 if (quick_stack)
595 tree node = quick_stack;
596 quick_stack = TREE_CHAIN (quick_stack);
597 TREE_CHAIN (node) = tree_list_free_list;
598 tree_list_free_list = node;
599 node = TREE_VALUE (node);
600 return node;
602 else
603 return find_stack_slot (stack_pointer, promote_type (type));
607 /* Pop and discard the top COUNT stack slots. */
609 static void
610 java_stack_pop (int count)
612 while (count > 0)
614 tree type, val;
616 if (stack_pointer == 0)
617 abort ();
619 type = stack_type_map[stack_pointer - 1];
620 if (type == TYPE_SECOND)
622 count--;
623 if (stack_pointer == 1 || count <= 0)
624 abort ();
626 type = stack_type_map[stack_pointer - 2];
628 val = pop_value (type);
629 count--;
633 /* Implement the 'swap' operator (to swap two top stack slots). */
635 static void
636 java_stack_swap (void)
638 tree type1, type2;
639 tree temp;
640 tree decl1, decl2;
642 if (stack_pointer < 2
643 || (type1 = stack_type_map[stack_pointer - 1]) == TYPE_UNKNOWN
644 || (type2 = stack_type_map[stack_pointer - 2]) == TYPE_UNKNOWN
645 || type1 == TYPE_SECOND || type2 == TYPE_SECOND
646 || TYPE_IS_WIDE (type1) || TYPE_IS_WIDE (type2))
647 /* Bad stack swap. */
648 abort ();
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;
666 static void
667 java_stack_dup (int size, int offset)
669 int low_index = stack_pointer - size - offset;
670 int dst_index;
671 if (low_index < 0)
672 error ("stack underflow - dup* operation");
674 flush_quick_stack ();
676 stack_pointer += size;
677 dst_index = stack_pointer;
679 for (dst_index = stack_pointer; --dst_index >= low_index; )
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)
688 if (src_index <= low_index)
689 /* Dup operation splits 64-bit number. */
690 abort ();
692 stack_type_map[dst_index] = type;
693 src_index--; dst_index--;
694 type = stack_type_map[src_index];
695 if (! TYPE_IS_WIDE (type))
696 abort ();
698 else if (TYPE_IS_WIDE (type))
699 abort ();
701 if (src_index != dst_index)
703 tree src_decl = find_stack_slot (src_index, type);
704 tree dst_decl = find_stack_slot (dst_index, type);
706 java_add_stmt
707 (build2 (MODIFY_EXPR, TREE_TYPE (dst_decl), dst_decl, src_decl));
708 stack_type_map[dst_index] = type;
713 /* Calls _Jv_Throw or _Jv_Sjlj_Throw. Discard the contents of the
714 value stack. */
716 static void
717 build_java_athrow (tree node)
719 tree call;
721 call = build3 (CALL_EXPR,
722 void_type_node,
723 build_address_of (throw_node),
724 build_tree_list (NULL_TREE, node),
725 NULL_TREE);
726 TREE_SIDE_EFFECTS (call) = 1;
727 java_add_stmt (call);
728 java_stack_pop (stack_pointer);
731 /* Implementation for jsr/ret */
733 static void
734 build_java_jsr (int target_pc, int return_pc)
736 tree where = lookup_label (target_pc);
737 tree ret = lookup_label (return_pc);
738 tree ret_label = fold (build1 (ADDR_EXPR, return_address_type_node, ret));
739 push_value (ret_label);
740 flush_quick_stack ();
741 java_add_stmt (build1 (GOTO_EXPR, void_type_node, where));
743 /* Do not need to emit the label here. We noted the existence of the
744 label as a jump target in note_instructions; we'll emit the label
745 for real at the beginning of the expand_byte_code loop. */
748 static void
749 build_java_ret (tree location)
751 java_add_stmt (build1 (GOTO_EXPR, void_type_node, location));
754 /* Implementation of operations on array: new, load, store, length */
756 tree
757 decode_newarray_type (int atype)
759 switch (atype)
761 case 4: return boolean_type_node;
762 case 5: return char_type_node;
763 case 6: return float_type_node;
764 case 7: return double_type_node;
765 case 8: return byte_type_node;
766 case 9: return short_type_node;
767 case 10: return int_type_node;
768 case 11: return long_type_node;
769 default: return NULL_TREE;
773 /* Map primitive type to the code used by OPCODE_newarray. */
776 encode_newarray_type (tree type)
778 if (type == boolean_type_node)
779 return 4;
780 else if (type == char_type_node)
781 return 5;
782 else if (type == float_type_node)
783 return 6;
784 else if (type == double_type_node)
785 return 7;
786 else if (type == byte_type_node)
787 return 8;
788 else if (type == short_type_node)
789 return 9;
790 else if (type == int_type_node)
791 return 10;
792 else if (type == long_type_node)
793 return 11;
794 else
795 abort ();
798 /* Build a call to _Jv_ThrowBadArrayIndex(), the
799 ArrayIndexOfBoundsException exception handler. */
801 static tree
802 build_java_throw_out_of_bounds_exception (tree index)
804 tree node = build3 (CALL_EXPR, int_type_node,
805 build_address_of (soft_badarrayindex_node),
806 build_tree_list (NULL_TREE, index), NULL_TREE);
807 TREE_SIDE_EFFECTS (node) = 1; /* Allows expansion within ANDIF */
808 return (node);
811 /* Return the length of an array. Doesn't perform any checking on the nature
812 or value of the array NODE. May be used to implement some bytecodes. */
814 tree
815 build_java_array_length_access (tree node)
817 tree type = TREE_TYPE (node);
818 tree array_type = TREE_TYPE (type);
819 HOST_WIDE_INT length;
821 if (!is_array_type_p (type))
823 /* With the new verifier, we will see an ordinary pointer type
824 here. In this case, we just use an arbitrary array type. */
825 array_type = build_java_array_type (object_ptr_type_node, -1);
826 type = promote_type (array_type);
829 length = java_array_type_length (type);
830 if (length >= 0)
831 return build_int_cst (NULL_TREE, length);
833 node = build3 (COMPONENT_REF, int_type_node,
834 build_java_indirect_ref (array_type, node,
835 flag_check_references),
836 lookup_field (&array_type, get_identifier ("length")),
837 NULL_TREE);
838 IS_ARRAY_LENGTH_ACCESS (node) = 1;
839 return node;
842 /* Optionally checks a reference against the NULL pointer. ARG1: the
843 expr, ARG2: we should check the reference. Don't generate extra
844 checks if we're not generating code. */
846 tree
847 java_check_reference (tree expr, int check)
849 if (!flag_syntax_only && check)
851 expr = save_expr (expr);
852 expr = build3 (COND_EXPR, TREE_TYPE (expr),
853 build2 (EQ_EXPR, boolean_type_node,
854 expr, null_pointer_node),
855 build3 (CALL_EXPR, void_type_node,
856 build_address_of (soft_nullpointer_node),
857 NULL_TREE, NULL_TREE),
858 expr);
861 return expr;
864 /* Reference an object: just like an INDIRECT_REF, but with checking. */
866 tree
867 build_java_indirect_ref (tree type, tree expr, int check)
869 tree t;
870 t = java_check_reference (expr, check);
871 t = convert (build_pointer_type (type), t);
872 return build1 (INDIRECT_REF, type, t);
875 /* Implement array indexing (either as l-value or r-value).
876 Returns a tree for ARRAY[INDEX], assume TYPE is the element type.
877 Optionally performs bounds checking and/or test to NULL.
878 At this point, ARRAY should have been verified as an array. */
880 tree
881 build_java_arrayaccess (tree array, tree type, tree index)
883 tree node, throw = NULL_TREE;
884 tree data_field;
885 tree ref;
886 tree array_type = TREE_TYPE (TREE_TYPE (array));
888 if (!is_array_type_p (TREE_TYPE (array)))
890 /* With the new verifier, we will see an ordinary pointer type
891 here. In this case, we just use the correct array type. */
892 array_type = build_java_array_type (type, -1);
895 if (flag_bounds_check)
897 /* Generate:
898 * (unsigned jint) INDEX >= (unsigned jint) LEN
899 * && throw ArrayIndexOutOfBoundsException.
900 * Note this is equivalent to and more efficient than:
901 * INDEX < 0 || INDEX >= LEN && throw ... */
902 tree test;
903 tree len = convert (unsigned_int_type_node,
904 build_java_array_length_access (array));
905 test = fold (build2 (GE_EXPR, boolean_type_node,
906 convert (unsigned_int_type_node, index),
907 len));
908 if (! integer_zerop (test))
910 throw = build2 (TRUTH_ANDIF_EXPR, int_type_node, test,
911 build_java_throw_out_of_bounds_exception (index));
912 /* allows expansion within COMPOUND */
913 TREE_SIDE_EFFECTS( throw ) = 1;
917 /* If checking bounds, wrap the index expr with a COMPOUND_EXPR in order
918 to have the bounds check evaluated first. */
919 if (throw != NULL_TREE)
920 index = build2 (COMPOUND_EXPR, int_type_node, throw, index);
922 data_field = lookup_field (&array_type, get_identifier ("data"));
924 ref = build3 (COMPONENT_REF, TREE_TYPE (data_field),
925 build_java_indirect_ref (array_type, array,
926 flag_check_references),
927 data_field, NULL_TREE);
929 node = build4 (ARRAY_REF, type, ref, index, NULL_TREE, NULL_TREE);
930 return node;
933 /* Generate code to throw an ArrayStoreException if OBJECT is not assignable
934 (at runtime) to an element of ARRAY. A NOP_EXPR is returned if it can
935 determine that no check is required. */
937 tree
938 build_java_arraystore_check (tree array, tree object)
940 tree check, element_type, source;
941 tree array_type_p = TREE_TYPE (array);
942 tree object_type = TYPE_NAME (TREE_TYPE (TREE_TYPE (object)));
944 if (! flag_verify_invocations)
946 /* With the new verifier, we don't track precise types. FIXME:
947 performance regression here. */
948 element_type = TYPE_NAME (object_type_node);
950 else
952 if (! is_array_type_p (array_type_p))
953 abort ();
955 /* Get the TYPE_DECL for ARRAY's element type. */
956 element_type
957 = TYPE_NAME (TREE_TYPE (TREE_TYPE (TREE_TYPE (array_type_p))));
960 if (TREE_CODE (element_type) != TYPE_DECL
961 || TREE_CODE (object_type) != TYPE_DECL)
962 abort ();
964 if (!flag_store_check)
965 return build1 (NOP_EXPR, array_type_p, array);
967 /* No check is needed if the element type is final. Also check that
968 element_type matches object_type, since in the bytecode
969 compilation case element_type may be the actual element type of
970 the array rather than its declared type. However, if we're doing
971 indirect dispatch, we can't do the `final' optimization. */
972 if (element_type == object_type
973 && ! flag_indirect_dispatch
974 && CLASS_FINAL (element_type))
975 return build1 (NOP_EXPR, array_type_p, array);
977 /* OBJECT might be wrapped by a SAVE_EXPR. */
978 if (TREE_CODE (object) == SAVE_EXPR)
979 source = TREE_OPERAND (object, 0);
980 else
981 source = object;
983 /* Avoid the check if OBJECT was just loaded from the same array. */
984 if (TREE_CODE (source) == ARRAY_REF)
986 tree target;
987 source = TREE_OPERAND (source, 0); /* COMPONENT_REF. */
988 source = TREE_OPERAND (source, 0); /* INDIRECT_REF. */
989 source = TREE_OPERAND (source, 0); /* Source array's DECL or SAVE_EXPR. */
990 if (TREE_CODE (source) == SAVE_EXPR)
991 source = TREE_OPERAND (source, 0);
993 target = array;
994 if (TREE_CODE (target) == SAVE_EXPR)
995 target = TREE_OPERAND (target, 0);
997 if (source == target)
998 return build1 (NOP_EXPR, array_type_p, array);
1001 /* Build an invocation of _Jv_CheckArrayStore */
1002 check = build3 (CALL_EXPR, void_type_node,
1003 build_address_of (soft_checkarraystore_node),
1004 tree_cons (NULL_TREE, array,
1005 build_tree_list (NULL_TREE, object)),
1006 NULL_TREE);
1007 TREE_SIDE_EFFECTS (check) = 1;
1009 return check;
1012 /* Makes sure that INDEXED_TYPE is appropriate. If not, make it from
1013 ARRAY_NODE. This function is used to retrieve something less vague than
1014 a pointer type when indexing the first dimension of something like [[<t>.
1015 May return a corrected type, if necessary, otherwise INDEXED_TYPE is
1016 return unchanged. */
1018 static tree
1019 build_java_check_indexed_type (tree array_node, tree indexed_type)
1021 tree elt_type;
1023 /* We used to check to see if ARRAY_NODE really had array type.
1024 However, with the new verifier, this is not necessary, as we know
1025 that the object will be an array of the appropriate type. */
1027 if (flag_new_verifier)
1028 return indexed_type;
1030 if (!is_array_type_p (TREE_TYPE (array_node)))
1031 abort ();
1033 elt_type = (TYPE_ARRAY_ELEMENT (TREE_TYPE (TREE_TYPE (array_node))));
1035 if (indexed_type == ptr_type_node)
1036 return promote_type (elt_type);
1038 /* BYTE/BOOLEAN store and load are used for both type */
1039 if (indexed_type == byte_type_node && elt_type == boolean_type_node)
1040 return boolean_type_node;
1042 if (indexed_type != elt_type )
1043 abort ();
1044 else
1045 return indexed_type;
1048 /* newarray triggers a call to _Jv_NewPrimArray. This function should be
1049 called with an integer code (the type of array to create), and the length
1050 of the array to create. */
1052 tree
1053 build_newarray (int atype_value, tree length)
1055 tree type_arg;
1057 tree prim_type = decode_newarray_type (atype_value);
1058 tree type
1059 = build_java_array_type (prim_type,
1060 host_integerp (length, 0) == INTEGER_CST
1061 ? tree_low_cst (length, 0) : -1);
1063 /* If compiling to native, pass a reference to the primitive type class
1064 and save the runtime some work. However, the bytecode generator
1065 expects to find the type_code int here. */
1066 if (flag_emit_class_files)
1067 type_arg = build_int_cst (NULL_TREE, atype_value);
1068 else
1069 type_arg = build_class_ref (prim_type);
1071 return build3 (CALL_EXPR, promote_type (type),
1072 build_address_of (soft_newarray_node),
1073 tree_cons (NULL_TREE,
1074 type_arg,
1075 build_tree_list (NULL_TREE, length)),
1076 NULL_TREE);
1079 /* Generates anewarray from a given CLASS_TYPE. Gets from the stack the size
1080 of the dimension. */
1082 tree
1083 build_anewarray (tree class_type, tree length)
1085 tree type
1086 = build_java_array_type (class_type,
1087 host_integerp (length, 0)
1088 ? tree_low_cst (length, 0) : -1);
1090 return build3 (CALL_EXPR, promote_type (type),
1091 build_address_of (soft_anewarray_node),
1092 tree_cons (NULL_TREE, length,
1093 tree_cons (NULL_TREE, build_class_ref (class_type),
1094 build_tree_list (NULL_TREE,
1095 null_pointer_node))),
1096 NULL_TREE);
1099 /* Return a node the evaluates 'new TYPE[LENGTH]'. */
1101 tree
1102 build_new_array (tree type, tree length)
1104 if (JPRIMITIVE_TYPE_P (type))
1105 return build_newarray (encode_newarray_type (type), length);
1106 else
1107 return build_anewarray (TREE_TYPE (type), length);
1110 /* Generates a call to _Jv_NewMultiArray. multianewarray expects a
1111 class pointer, a number of dimensions and the matching number of
1112 dimensions. The argument list is NULL terminated. */
1114 static void
1115 expand_java_multianewarray (tree class_type, int ndim)
1117 int i;
1118 tree args = build_tree_list( NULL_TREE, null_pointer_node );
1120 for( i = 0; i < ndim; i++ )
1121 args = tree_cons (NULL_TREE, pop_value (int_type_node), args);
1123 push_value (build3 (CALL_EXPR,
1124 promote_type (class_type),
1125 build_address_of (soft_multianewarray_node),
1126 tree_cons (NULL_TREE, build_class_ref (class_type),
1127 tree_cons (NULL_TREE,
1128 build_int_cst (NULL_TREE, ndim),
1129 args)),
1130 NULL_TREE));
1133 /* ARRAY[INDEX] <- RHS. build_java_check_indexed_type makes sure that
1134 ARRAY is an array type. May expand some bound checking and NULL
1135 pointer checking. RHS_TYPE_NODE we are going to store. In the case
1136 of the CHAR/BYTE/BOOLEAN SHORT, the type popped of the stack is an
1137 INT. In those cases, we make the conversion.
1139 if ARRAy is a reference type, the assignment is checked at run-time
1140 to make sure that the RHS can be assigned to the array element
1141 type. It is not necessary to generate this code if ARRAY is final. */
1143 static void
1144 expand_java_arraystore (tree rhs_type_node)
1146 tree rhs_node = pop_value ((INTEGRAL_TYPE_P (rhs_type_node)
1147 && TYPE_PRECISION (rhs_type_node) <= 32) ?
1148 int_type_node : rhs_type_node);
1149 tree index = pop_value (int_type_node);
1150 tree array_type, array;
1152 if (flag_new_verifier)
1154 /* If we're processing an `aaload' we might as well just pick
1155 `Object'. */
1156 if (TREE_CODE (rhs_type_node) == POINTER_TYPE)
1158 array_type = build_java_array_type (object_ptr_type_node, -1);
1159 rhs_type_node = object_ptr_type_node;
1161 else
1162 array_type = build_java_array_type (rhs_type_node, -1);
1164 else
1165 array_type = ptr_type_node;
1166 array = pop_value (array_type);
1167 if (flag_new_verifier)
1168 array = build1 (NOP_EXPR, promote_type (array_type), array);
1170 rhs_type_node = build_java_check_indexed_type (array, rhs_type_node);
1172 flush_quick_stack ();
1174 index = save_expr (index);
1175 array = save_expr (array);
1177 if (TREE_CODE (rhs_type_node) == POINTER_TYPE)
1179 tree check = build_java_arraystore_check (array, rhs_node);
1180 java_add_stmt (check);
1183 array = build_java_arrayaccess (array, rhs_type_node, index);
1184 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (array), array, rhs_node));
1187 /* Expand the evaluation of ARRAY[INDEX]. build_java_check_indexed_type makes
1188 sure that LHS is an array type. May expand some bound checking and NULL
1189 pointer checking.
1190 LHS_TYPE_NODE is the type of ARRAY[INDEX]. But in the case of CHAR/BYTE/
1191 BOOLEAN/SHORT, we push a promoted type back to the stack.
1194 static void
1195 expand_java_arrayload (tree lhs_type_node)
1197 tree load_node;
1198 tree index_node = pop_value (int_type_node);
1199 tree array_type;
1200 tree array_node;
1202 if (flag_new_verifier)
1204 /* If we're processing an `aaload' we might as well just pick
1205 `Object'. */
1206 if (TREE_CODE (lhs_type_node) == POINTER_TYPE)
1208 array_type = build_java_array_type (object_ptr_type_node, -1);
1209 lhs_type_node = object_ptr_type_node;
1211 else
1212 array_type = build_java_array_type (lhs_type_node, -1);
1214 else
1215 array_type = ptr_type_node;
1216 array_node = pop_value (array_type);
1217 if (flag_new_verifier)
1218 array_node = build1 (NOP_EXPR, promote_type (array_type), array_node);
1220 index_node = save_expr (index_node);
1221 array_node = save_expr (array_node);
1223 lhs_type_node = build_java_check_indexed_type (array_node,
1224 lhs_type_node);
1225 load_node = build_java_arrayaccess (array_node,
1226 lhs_type_node,
1227 index_node);
1228 if (INTEGRAL_TYPE_P (lhs_type_node) && TYPE_PRECISION (lhs_type_node) <= 32)
1229 load_node = fold (build1 (NOP_EXPR, int_type_node, load_node));
1230 push_value (load_node);
1233 /* Expands .length. Makes sure that we deal with and array and may expand
1234 a NULL check on the array object. */
1236 static void
1237 expand_java_array_length (void)
1239 tree array = pop_value (ptr_type_node);
1240 tree length = build_java_array_length_access (array);
1242 push_value (length);
1245 /* Emit code for the call to _Jv_Monitor{Enter,Exit}. CALL can be
1246 either soft_monitorenter_node or soft_monitorexit_node. */
1248 static tree
1249 build_java_monitor (tree call, tree object)
1251 return build3 (CALL_EXPR,
1252 void_type_node,
1253 build_address_of (call),
1254 build_tree_list (NULL_TREE, object),
1255 NULL_TREE);
1258 /* Emit code for one of the PUSHC instructions. */
1260 static void
1261 expand_java_pushc (int ival, tree type)
1263 tree value;
1264 if (type == ptr_type_node && ival == 0)
1265 value = null_pointer_node;
1266 else if (type == int_type_node || type == long_type_node)
1267 value = build_int_cst (type, ival);
1268 else if (type == float_type_node || type == double_type_node)
1270 REAL_VALUE_TYPE x;
1271 REAL_VALUE_FROM_INT (x, ival, 0, TYPE_MODE (type));
1272 value = build_real (type, x);
1274 else
1275 abort ();
1277 push_value (value);
1280 static void
1281 expand_java_return (tree type)
1283 if (type == void_type_node)
1284 java_add_stmt (build1 (RETURN_EXPR, void_type_node, NULL));
1285 else
1287 tree retval = pop_value (type);
1288 tree res = DECL_RESULT (current_function_decl);
1289 retval = build2 (MODIFY_EXPR, TREE_TYPE (res), res, retval);
1291 /* Handle the situation where the native integer type is smaller
1292 than the JVM integer. It can happen for many cross compilers.
1293 The whole if expression just goes away if INT_TYPE_SIZE < 32
1294 is false. */
1295 if (INT_TYPE_SIZE < 32
1296 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (res)))
1297 < GET_MODE_SIZE (TYPE_MODE (type))))
1298 retval = build1(NOP_EXPR, TREE_TYPE(res), retval);
1300 TREE_SIDE_EFFECTS (retval) = 1;
1301 java_add_stmt (build1 (RETURN_EXPR, TREE_TYPE (retval), retval));
1305 static void
1306 expand_load_internal (int index, tree type, int pc)
1308 tree copy;
1309 tree var = find_local_variable (index, type, pc);
1311 /* Now VAR is the VAR_DECL (or PARM_DECL) that we are going to push
1312 on the stack. If there is an assignment to this VAR_DECL between
1313 the stack push and the use, then the wrong code could be
1314 generated. To avoid this we create a new local and copy our
1315 value into it. Then we push this new local on the stack.
1316 Hopefully this all gets optimized out. */
1317 copy = build_decl (VAR_DECL, NULL_TREE, type);
1318 if (INTEGRAL_TYPE_P (type)
1319 && TREE_TYPE (copy) != TREE_TYPE (var))
1320 var = convert (type, var);
1321 java_add_local_var (copy);
1322 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (var), copy, var));
1324 push_value (copy);
1327 tree
1328 build_address_of (tree value)
1330 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (value)), value);
1333 bool
1334 class_has_finalize_method (tree type)
1336 tree super = CLASSTYPE_SUPER (type);
1338 if (super == NULL_TREE)
1339 return false; /* Every class with a real finalizer inherits */
1340 /* from java.lang.Object. */
1341 else
1342 return HAS_FINALIZER_P (type) || class_has_finalize_method (super);
1345 tree
1346 java_create_object (tree type)
1348 tree alloc_node = (class_has_finalize_method (type)
1349 ? alloc_object_node
1350 : alloc_no_finalizer_node);
1352 return build (CALL_EXPR, promote_type (type),
1353 build_address_of (alloc_node),
1354 build_tree_list (NULL_TREE, build_class_ref (type)),
1355 NULL_TREE);
1358 static void
1359 expand_java_NEW (tree type)
1361 tree alloc_node;
1363 alloc_node = (class_has_finalize_method (type) ? alloc_object_node
1364 : alloc_no_finalizer_node);
1365 if (! CLASS_LOADED_P (type))
1366 load_class (type, 1);
1367 safe_layout_class (type);
1368 push_value (build3 (CALL_EXPR, promote_type (type),
1369 build_address_of (alloc_node),
1370 build_tree_list (NULL_TREE, build_class_ref (type)),
1371 NULL_TREE));
1374 /* This returns an expression which will extract the class of an
1375 object. */
1377 tree
1378 build_get_class (tree value)
1380 tree class_field = lookup_field (&dtable_type, get_identifier ("class"));
1381 tree vtable_field = lookup_field (&object_type_node,
1382 get_identifier ("vtable"));
1383 tree tmp = build3 (COMPONENT_REF, dtable_ptr_type,
1384 build_java_indirect_ref (object_type_node, value,
1385 flag_check_references),
1386 vtable_field, NULL_TREE);
1387 return build3 (COMPONENT_REF, class_ptr_type,
1388 build1 (INDIRECT_REF, dtable_type, tmp),
1389 class_field, NULL_TREE);
1392 /* This builds the tree representation of the `instanceof' operator.
1393 It tries various tricks to optimize this in cases where types are
1394 known. */
1396 tree
1397 build_instanceof (tree value, tree type)
1399 tree expr;
1400 tree itype = TREE_TYPE (TREE_TYPE (soft_instanceof_node));
1401 tree valtype = TREE_TYPE (TREE_TYPE (value));
1402 tree valclass = TYPE_NAME (valtype);
1403 tree klass;
1405 /* When compiling from bytecode, we need to ensure that TYPE has
1406 been loaded. */
1407 if (CLASS_P (type) && ! CLASS_LOADED_P (type))
1409 load_class (type, 1);
1410 safe_layout_class (type);
1411 if (! TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) == ERROR_MARK)
1412 return error_mark_node;
1414 klass = TYPE_NAME (type);
1416 if (type == object_type_node || inherits_from_p (valtype, type))
1418 /* Anything except `null' is an instance of Object. Likewise,
1419 if the object is known to be an instance of the class, then
1420 we only need to check for `null'. */
1421 expr = build2 (NE_EXPR, itype, value, null_pointer_node);
1423 else if (flag_verify_invocations
1424 && ! TYPE_ARRAY_P (type)
1425 && ! TYPE_ARRAY_P (valtype)
1426 && DECL_P (klass) && DECL_P (valclass)
1427 && ! CLASS_INTERFACE (valclass)
1428 && ! CLASS_INTERFACE (klass)
1429 && ! inherits_from_p (type, valtype)
1430 && (CLASS_FINAL (klass)
1431 || ! inherits_from_p (valtype, type)))
1433 /* The classes are from different branches of the derivation
1434 tree, so we immediately know the answer. */
1435 expr = boolean_false_node;
1437 else if (DECL_P (klass) && CLASS_FINAL (klass))
1439 tree save = save_expr (value);
1440 expr = build3 (COND_EXPR, itype,
1441 build2 (NE_EXPR, boolean_type_node,
1442 save, null_pointer_node),
1443 build2 (EQ_EXPR, itype,
1444 build_get_class (save),
1445 build_class_ref (type)),
1446 boolean_false_node);
1448 else
1450 expr = build3 (CALL_EXPR, itype,
1451 build_address_of (soft_instanceof_node),
1452 tree_cons (NULL_TREE, value,
1453 build_tree_list (NULL_TREE,
1454 build_class_ref (type))),
1455 NULL_TREE);
1457 TREE_SIDE_EFFECTS (expr) = TREE_SIDE_EFFECTS (value);
1458 return expr;
1461 static void
1462 expand_java_INSTANCEOF (tree type)
1464 tree value = pop_value (object_ptr_type_node);
1465 value = build_instanceof (value, type);
1466 push_value (value);
1469 static void
1470 expand_java_CHECKCAST (tree type)
1472 tree value = pop_value (ptr_type_node);
1473 value = build3 (CALL_EXPR, promote_type (type),
1474 build_address_of (soft_checkcast_node),
1475 tree_cons (NULL_TREE, build_class_ref (type),
1476 build_tree_list (NULL_TREE, value)),
1477 NULL_TREE);
1478 push_value (value);
1481 static void
1482 expand_iinc (unsigned int local_var_index, int ival, int pc)
1484 tree local_var, res;
1485 tree constant_value;
1487 flush_quick_stack ();
1488 local_var = find_local_variable (local_var_index, int_type_node, pc);
1489 constant_value = build_int_cst (NULL_TREE, ival);
1490 res = fold (build2 (PLUS_EXPR, int_type_node, local_var, constant_value));
1491 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (local_var), local_var, res));
1492 update_aliases (local_var, local_var_index, pc);
1496 tree
1497 build_java_soft_divmod (enum tree_code op, tree type, tree op1, tree op2)
1499 tree call = NULL;
1500 tree arg1 = convert (type, op1);
1501 tree arg2 = convert (type, op2);
1503 if (type == int_type_node)
1505 switch (op)
1507 case TRUNC_DIV_EXPR:
1508 call = soft_idiv_node;
1509 break;
1510 case TRUNC_MOD_EXPR:
1511 call = soft_irem_node;
1512 break;
1513 default:
1514 break;
1517 else if (type == long_type_node)
1519 switch (op)
1521 case TRUNC_DIV_EXPR:
1522 call = soft_ldiv_node;
1523 break;
1524 case TRUNC_MOD_EXPR:
1525 call = soft_lrem_node;
1526 break;
1527 default:
1528 break;
1532 if (! call)
1533 abort ();
1535 call = build3 (CALL_EXPR, type,
1536 build_address_of (call),
1537 tree_cons (NULL_TREE, arg1,
1538 build_tree_list (NULL_TREE, arg2)),
1539 NULL_TREE);
1541 return call;
1544 tree
1545 build_java_binop (enum tree_code op, tree type, tree arg1, tree arg2)
1547 tree mask;
1548 switch (op)
1550 case URSHIFT_EXPR:
1552 tree u_type = java_unsigned_type (type);
1553 arg1 = convert (u_type, arg1);
1554 arg1 = build_java_binop (RSHIFT_EXPR, u_type, arg1, arg2);
1555 return convert (type, arg1);
1557 case LSHIFT_EXPR:
1558 case RSHIFT_EXPR:
1559 mask = build_int_cst (NULL_TREE,
1560 TYPE_PRECISION (TREE_TYPE (arg1)) - 1);
1561 arg2 = fold (build2 (BIT_AND_EXPR, int_type_node, arg2, mask));
1562 break;
1564 case COMPARE_L_EXPR: /* arg1 > arg2 ? 1 : arg1 == arg2 ? 0 : -1 */
1565 case COMPARE_G_EXPR: /* arg1 < arg2 ? -1 : arg1 == arg2 ? 0 : 1 */
1566 arg1 = save_expr (arg1); arg2 = save_expr (arg2);
1568 tree ifexp1 = fold (build2 (op == COMPARE_L_EXPR ? GT_EXPR : LT_EXPR,
1569 boolean_type_node, arg1, arg2));
1570 tree ifexp2 = fold (build2 (EQ_EXPR, boolean_type_node, arg1, arg2));
1571 tree second_compare = fold (build3 (COND_EXPR, int_type_node,
1572 ifexp2, integer_zero_node,
1573 op == COMPARE_L_EXPR
1574 ? integer_minus_one_node
1575 : integer_one_node));
1576 return fold (build3 (COND_EXPR, int_type_node, ifexp1,
1577 op == COMPARE_L_EXPR ? integer_one_node
1578 : integer_minus_one_node,
1579 second_compare));
1581 case COMPARE_EXPR:
1582 arg1 = save_expr (arg1); arg2 = save_expr (arg2);
1584 tree ifexp1 = fold (build2 (LT_EXPR, boolean_type_node, arg1, arg2));
1585 tree ifexp2 = fold (build2 (GT_EXPR, boolean_type_node, arg1, arg2));
1586 tree second_compare = fold (build3 (COND_EXPR, int_type_node,
1587 ifexp2, integer_one_node,
1588 integer_zero_node));
1589 return fold (build3 (COND_EXPR, int_type_node,
1590 ifexp1, integer_minus_one_node, second_compare));
1592 case TRUNC_DIV_EXPR:
1593 case TRUNC_MOD_EXPR:
1594 if (TREE_CODE (type) == REAL_TYPE
1595 && op == TRUNC_MOD_EXPR)
1597 tree call;
1598 if (type != double_type_node)
1600 arg1 = convert (double_type_node, arg1);
1601 arg2 = convert (double_type_node, arg2);
1603 call = build3 (CALL_EXPR, double_type_node,
1604 build_address_of (soft_fmod_node),
1605 tree_cons (NULL_TREE, arg1,
1606 build_tree_list (NULL_TREE, arg2)),
1607 NULL_TREE);
1608 if (type != double_type_node)
1609 call = convert (type, call);
1610 return call;
1613 if (TREE_CODE (type) == INTEGER_TYPE
1614 && flag_use_divide_subroutine
1615 && ! flag_syntax_only)
1616 return build_java_soft_divmod (op, type, arg1, arg2);
1618 break;
1619 default: ;
1621 return fold (build2 (op, type, arg1, arg2));
1624 static void
1625 expand_java_binop (tree type, enum tree_code op)
1627 tree larg, rarg;
1628 tree ltype = type;
1629 tree rtype = type;
1630 switch (op)
1632 case LSHIFT_EXPR:
1633 case RSHIFT_EXPR:
1634 case URSHIFT_EXPR:
1635 rtype = int_type_node;
1636 rarg = pop_value (rtype);
1637 break;
1638 default:
1639 rarg = pop_value (rtype);
1641 larg = pop_value (ltype);
1642 push_value (build_java_binop (op, type, larg, rarg));
1645 /* Lookup the field named NAME in *TYPEP or its super classes.
1646 If not found, return NULL_TREE.
1647 (If the *TYPEP is not found, or if the field reference is
1648 ambiguous, return error_mark_node.)
1649 If found, return the FIELD_DECL, and set *TYPEP to the
1650 class containing the field. */
1652 tree
1653 lookup_field (tree *typep, tree name)
1655 if (CLASS_P (*typep) && !CLASS_LOADED_P (*typep))
1657 load_class (*typep, 1);
1658 safe_layout_class (*typep);
1659 if (!TYPE_SIZE (*typep) || TREE_CODE (TYPE_SIZE (*typep)) == ERROR_MARK)
1660 return error_mark_node;
1664 tree field, binfo, base_binfo;
1665 tree save_field;
1666 int i;
1668 for (field = TYPE_FIELDS (*typep); field; field = TREE_CHAIN (field))
1669 if (DECL_NAME (field) == name)
1670 return field;
1672 /* Process implemented interfaces. */
1673 save_field = NULL_TREE;
1674 for (binfo = TYPE_BINFO (*typep), i = 0;
1675 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1677 tree t = BINFO_TYPE (base_binfo);
1678 if ((field = lookup_field (&t, name)))
1680 if (save_field == field)
1681 continue;
1682 if (save_field == NULL_TREE)
1683 save_field = field;
1684 else
1686 tree i1 = DECL_CONTEXT (save_field);
1687 tree i2 = DECL_CONTEXT (field);
1688 error ("reference %qs is ambiguous: appears in interface %qs and interface %qs",
1689 IDENTIFIER_POINTER (name),
1690 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i1))),
1691 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i2))));
1692 return error_mark_node;
1697 if (save_field != NULL_TREE)
1698 return save_field;
1700 *typep = CLASSTYPE_SUPER (*typep);
1701 } while (*typep);
1702 return NULL_TREE;
1705 /* Look up the field named NAME in object SELF_VALUE,
1706 which has class SELF_CLASS (a non-handle RECORD_TYPE).
1707 SELF_VALUE is NULL_TREE if looking for a static field. */
1709 tree
1710 build_field_ref (tree self_value, tree self_class, tree name)
1712 tree base_class = self_class;
1713 tree field_decl = lookup_field (&base_class, name);
1714 if (field_decl == NULL_TREE)
1716 error ("field %qs not found", IDENTIFIER_POINTER (name));
1717 return error_mark_node;
1719 if (self_value == NULL_TREE)
1721 return build_static_field_ref (field_decl);
1723 else
1725 int check = (flag_check_references
1726 && ! (DECL_P (self_value)
1727 && DECL_NAME (self_value) == this_identifier_node));
1729 tree base_type = promote_type (base_class);
1730 if (base_type != TREE_TYPE (self_value))
1731 self_value = fold (build1 (NOP_EXPR, base_type, self_value));
1732 if (! flag_syntax_only
1733 && (flag_indirect_dispatch
1734 /* DECL_FIELD_OFFSET == 0 if we have no reference for
1735 the field, perhaps because we couldn't find the class
1736 in which the field is defined.
1737 FIXME: We should investigate this. */
1738 || DECL_FIELD_OFFSET (field_decl) == 0))
1740 tree otable_index
1741 = build_int_cst (NULL_TREE, get_symbol_table_index
1742 (field_decl, &TYPE_OTABLE_METHODS (output_class)));
1743 tree field_offset
1744 = build4 (ARRAY_REF, integer_type_node,
1745 TYPE_OTABLE_DECL (output_class), otable_index,
1746 NULL_TREE, NULL_TREE);
1747 tree address;
1749 field_offset = fold (convert (sizetype, field_offset));
1750 address
1751 = fold (build2 (PLUS_EXPR,
1752 build_pointer_type (TREE_TYPE (field_decl)),
1753 self_value, field_offset));
1754 return fold (build1 (INDIRECT_REF, TREE_TYPE (field_decl), address));
1757 self_value = build_java_indirect_ref (TREE_TYPE (TREE_TYPE (self_value)),
1758 self_value, check);
1759 return fold (build3 (COMPONENT_REF, TREE_TYPE (field_decl),
1760 self_value, field_decl, NULL_TREE));
1764 tree
1765 lookup_label (int pc)
1767 tree name;
1768 char buf[32];
1769 ASM_GENERATE_INTERNAL_LABEL(buf, "LJpc=", pc);
1770 name = get_identifier (buf);
1771 if (IDENTIFIER_LOCAL_VALUE (name))
1772 return IDENTIFIER_LOCAL_VALUE (name);
1773 else
1775 /* The type of the address of a label is return_address_type_node. */
1776 tree decl = create_label_decl (name);
1777 LABEL_PC (decl) = pc;
1778 return pushdecl (decl);
1782 /* Generate a unique name for the purpose of loops and switches
1783 labels, and try-catch-finally blocks label or temporary variables. */
1785 tree
1786 generate_name (void)
1788 static int l_number = 0;
1789 char buff [32];
1790 ASM_GENERATE_INTERNAL_LABEL(buff, "LJv", l_number);
1791 l_number++;
1792 return get_identifier (buff);
1795 tree
1796 create_label_decl (tree name)
1798 tree decl;
1799 decl = build_decl (LABEL_DECL, name,
1800 TREE_TYPE (return_address_type_node));
1801 DECL_CONTEXT (decl) = current_function_decl;
1802 DECL_IGNORED_P (decl) = 1;
1803 return decl;
1806 /* This maps a bytecode offset (PC) to various flags. */
1807 char *instruction_bits;
1809 static void
1810 note_label (int current_pc ATTRIBUTE_UNUSED, int target_pc)
1812 lookup_label (target_pc);
1813 instruction_bits [target_pc] |= BCODE_JUMP_TARGET;
1816 /* Emit code to jump to TARGET_PC if VALUE1 CONDITION VALUE2,
1817 where CONDITION is one of one the compare operators. */
1819 static void
1820 expand_compare (enum tree_code condition, tree value1, tree value2,
1821 int target_pc)
1823 tree target = lookup_label (target_pc);
1824 tree cond = fold (build2 (condition, boolean_type_node, value1, value2));
1825 java_add_stmt
1826 (build3 (COND_EXPR, void_type_node, java_truthvalue_conversion (cond),
1827 build1 (GOTO_EXPR, void_type_node, target),
1828 build_java_empty_stmt ()));
1831 /* Emit code for a TEST-type opcode. */
1833 static void
1834 expand_test (enum tree_code condition, tree type, int target_pc)
1836 tree value1, value2;
1837 flush_quick_stack ();
1838 value1 = pop_value (type);
1839 value2 = (type == ptr_type_node) ? null_pointer_node : integer_zero_node;
1840 expand_compare (condition, value1, value2, target_pc);
1843 /* Emit code for a COND-type opcode. */
1845 static void
1846 expand_cond (enum tree_code condition, tree type, int target_pc)
1848 tree value1, value2;
1849 flush_quick_stack ();
1850 /* note: pop values in opposite order */
1851 value2 = pop_value (type);
1852 value1 = pop_value (type);
1853 /* Maybe should check value1 and value2 for type compatibility ??? */
1854 expand_compare (condition, value1, value2, target_pc);
1857 static void
1858 expand_java_goto (int target_pc)
1860 tree target_label = lookup_label (target_pc);
1861 flush_quick_stack ();
1862 java_add_stmt (build1 (GOTO_EXPR, void_type_node, target_label));
1865 static tree
1866 expand_java_switch (tree selector, int default_pc)
1868 tree switch_expr, x;
1870 flush_quick_stack ();
1871 switch_expr = build3 (SWITCH_EXPR, TREE_TYPE (selector), selector,
1872 NULL_TREE, NULL_TREE);
1873 java_add_stmt (switch_expr);
1875 x = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE, NULL_TREE,
1876 create_artificial_label ());
1877 append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1879 x = build1 (GOTO_EXPR, void_type_node, lookup_label (default_pc));
1880 append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1882 return switch_expr;
1885 static void
1886 expand_java_add_case (tree switch_expr, int match, int target_pc)
1888 tree value, x;
1890 value = build_int_cst (TREE_TYPE (switch_expr), match);
1892 x = build3 (CASE_LABEL_EXPR, void_type_node, value, NULL_TREE,
1893 create_artificial_label ());
1894 append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1896 x = build1 (GOTO_EXPR, void_type_node, lookup_label (target_pc));
1897 append_to_statement_list (x, &SWITCH_BODY (switch_expr));
1900 static tree
1901 pop_arguments (tree arg_types)
1903 if (arg_types == end_params_node)
1904 return NULL_TREE;
1905 if (TREE_CODE (arg_types) == TREE_LIST)
1907 tree tail = pop_arguments (TREE_CHAIN (arg_types));
1908 tree type = TREE_VALUE (arg_types);
1909 tree arg = pop_value (type);
1911 /* With the new verifier we simply cast each argument to its
1912 proper type. This is needed since we lose type information
1913 coming out of the verifier. We also have to do this with the
1914 old verifier when we pop an integer type that must be
1915 promoted for the function call. */
1916 if (flag_new_verifier && TREE_CODE (type) == POINTER_TYPE)
1917 arg = build1 (NOP_EXPR, type, arg);
1918 else if (targetm.calls.promote_prototypes (type)
1919 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
1920 && INTEGRAL_TYPE_P (type))
1921 arg = convert (integer_type_node, arg);
1922 return tree_cons (NULL_TREE, arg, tail);
1924 abort ();
1927 /* Attach to PTR (a block) the declaration found in ENTRY. */
1930 attach_init_test_initialization_flags (void **entry, void *ptr)
1932 tree block = (tree)ptr;
1933 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
1935 if (block != error_mark_node)
1937 if (TREE_CODE (block) == BIND_EXPR)
1939 tree body = BIND_EXPR_BODY (block);
1940 TREE_CHAIN (ite->value) = BIND_EXPR_VARS (block);
1941 BIND_EXPR_VARS (block) = ite->value;
1942 body = build2 (COMPOUND_EXPR, void_type_node,
1943 build1 (DECL_EXPR, void_type_node, ite->value), body);
1944 BIND_EXPR_BODY (block) = body;
1946 else
1948 tree body = BLOCK_SUBBLOCKS (block);
1949 TREE_CHAIN (ite->value) = BLOCK_EXPR_DECLS (block);
1950 BLOCK_EXPR_DECLS (block) = ite->value;
1951 body = build2 (COMPOUND_EXPR, void_type_node,
1952 build1 (DECL_EXPR, void_type_node, ite->value), body);
1953 BLOCK_SUBBLOCKS (block) = body;
1957 return true;
1960 /* Build an expression to initialize the class CLAS.
1961 if EXPR is non-NULL, returns an expression to first call the initializer
1962 (if it is needed) and then calls EXPR. */
1964 tree
1965 build_class_init (tree clas, tree expr)
1967 tree init;
1969 /* An optimization: if CLAS is a superclass of the class we're
1970 compiling, we don't need to initialize it. However, if CLAS is
1971 an interface, it won't necessarily be initialized, even if we
1972 implement it. */
1973 if ((! CLASS_INTERFACE (TYPE_NAME (clas))
1974 && inherits_from_p (current_class, clas))
1975 || current_class == clas)
1976 return expr;
1978 if (always_initialize_class_p)
1980 init = build3 (CALL_EXPR, void_type_node,
1981 build_address_of (soft_initclass_node),
1982 build_tree_list (NULL_TREE, build_class_ref (clas)),
1983 NULL_TREE);
1984 TREE_SIDE_EFFECTS (init) = 1;
1986 else
1988 tree *init_test_decl;
1989 tree decl;
1990 init_test_decl = java_treetreehash_new
1991 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), clas);
1993 if (*init_test_decl == NULL)
1995 /* Build a declaration and mark it as a flag used to track
1996 static class initializations. */
1997 decl = build_decl (VAR_DECL, NULL_TREE,
1998 boolean_type_node);
1999 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
2000 LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
2001 DECL_CONTEXT (decl) = current_function_decl;
2002 DECL_FUNCTION_INIT_TEST_CLASS (decl) = clas;
2003 /* Tell the check-init code to ignore this decl when not
2004 optimizing class initialization. */
2005 if (!STATIC_CLASS_INIT_OPT_P ())
2006 DECL_BIT_INDEX (decl) = -1;
2007 DECL_INITIAL (decl) = boolean_false_node;
2008 /* Don't emit any symbolic debugging info for this decl. */
2009 DECL_IGNORED_P (decl) = 1;
2010 *init_test_decl = decl;
2013 init = build3 (CALL_EXPR, void_type_node,
2014 build_address_of (soft_initclass_node),
2015 build_tree_list (NULL_TREE, build_class_ref (clas)),
2016 NULL_TREE);
2017 TREE_SIDE_EFFECTS (init) = 1;
2018 init = build3 (COND_EXPR, void_type_node,
2019 build2 (EQ_EXPR, boolean_type_node,
2020 *init_test_decl, boolean_false_node),
2021 init, integer_zero_node);
2022 TREE_SIDE_EFFECTS (init) = 1;
2023 init = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init,
2024 build2 (MODIFY_EXPR, boolean_type_node,
2025 *init_test_decl, boolean_true_node));
2026 TREE_SIDE_EFFECTS (init) = 1;
2029 if (expr != NULL_TREE)
2031 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
2032 TREE_SIDE_EFFECTS (expr) = 1;
2033 return expr;
2035 return init;
2038 tree
2039 build_known_method_ref (tree method, tree method_type ATTRIBUTE_UNUSED,
2040 tree self_type, tree method_signature ATTRIBUTE_UNUSED,
2041 tree arg_list ATTRIBUTE_UNUSED)
2043 tree func;
2044 if (is_compiled_class (self_type))
2046 /* With indirect dispatch we have to use indirect calls for all
2047 publicly visible methods or gcc will use PLT indirections
2048 to reach them. We also have to use indirect dispatch for all
2049 external methods. */
2050 if (! flag_indirect_dispatch
2051 || (! DECL_EXTERNAL (method) && ! TREE_PUBLIC (method)))
2053 func = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (method)),
2054 method);
2056 else
2058 tree table_index
2059 = build_int_cst (NULL_TREE, get_symbol_table_index
2060 (method, &TYPE_ATABLE_METHODS (output_class)));
2061 func
2062 = build4 (ARRAY_REF,
2063 TREE_TYPE (TREE_TYPE (TYPE_ATABLE_DECL (output_class))),
2064 TYPE_ATABLE_DECL (output_class), table_index,
2065 NULL_TREE, NULL_TREE);
2067 func = convert (method_ptr_type_node, func);
2069 else
2071 /* We don't know whether the method has been (statically) compiled.
2072 Compile this code to get a reference to the method's code:
2074 SELF_TYPE->methods[METHOD_INDEX].ncode
2078 int method_index = 0;
2079 tree meth, ref;
2081 /* The method might actually be declared in some superclass, so
2082 we have to use its class context, not the caller's notion of
2083 where the method is. */
2084 self_type = DECL_CONTEXT (method);
2085 ref = build_class_ref (self_type);
2086 ref = build1 (INDIRECT_REF, class_type_node, ref);
2087 if (ncode_ident == NULL_TREE)
2088 ncode_ident = get_identifier ("ncode");
2089 if (methods_ident == NULL_TREE)
2090 methods_ident = get_identifier ("methods");
2091 ref = build3 (COMPONENT_REF, method_ptr_type_node, ref,
2092 lookup_field (&class_type_node, methods_ident),
2093 NULL_TREE);
2094 for (meth = TYPE_METHODS (self_type);
2095 ; meth = TREE_CHAIN (meth))
2097 if (method == meth)
2098 break;
2099 if (meth == NULL_TREE)
2100 fatal_error ("method '%s' not found in class",
2101 IDENTIFIER_POINTER (DECL_NAME (method)));
2102 method_index++;
2104 method_index *= int_size_in_bytes (method_type_node);
2105 ref = fold (build2 (PLUS_EXPR, method_ptr_type_node,
2106 ref, build_int_cst (NULL_TREE, method_index)));
2107 ref = build1 (INDIRECT_REF, method_type_node, ref);
2108 func = build3 (COMPONENT_REF, nativecode_ptr_type_node,
2109 ref, lookup_field (&method_type_node, ncode_ident),
2110 NULL_TREE);
2112 return func;
2115 tree
2116 invoke_build_dtable (int is_invoke_interface, tree arg_list)
2118 tree dtable, objectref;
2120 TREE_VALUE (arg_list) = save_expr (TREE_VALUE (arg_list));
2122 /* If we're dealing with interfaces and if the objectref
2123 argument is an array then get the dispatch table of the class
2124 Object rather than the one from the objectref. */
2125 objectref = (is_invoke_interface
2126 && is_array_type_p (TREE_TYPE (TREE_VALUE (arg_list)))
2127 ? build_class_ref (object_type_node) : TREE_VALUE (arg_list));
2129 if (dtable_ident == NULL_TREE)
2130 dtable_ident = get_identifier ("vtable");
2131 dtable = build_java_indirect_ref (object_type_node, objectref,
2132 flag_check_references);
2133 dtable = build3 (COMPONENT_REF, dtable_ptr_type, dtable,
2134 lookup_field (&object_type_node, dtable_ident), NULL_TREE);
2136 return dtable;
2139 /* Determine the index in SYMBOL_TABLE for a reference to the decl
2140 T. If this decl has not been seen before, it will be added to the
2141 [oa]table_methods. If it has, the existing table slot will be
2142 reused. */
2145 get_symbol_table_index (tree t, tree *symbol_table)
2147 int i = 1;
2148 tree method_list;
2150 if (*symbol_table == NULL_TREE)
2152 *symbol_table = build_tree_list (t, t);
2153 return 1;
2156 method_list = *symbol_table;
2158 while (1)
2160 tree value = TREE_VALUE (method_list);
2161 if (value == t)
2162 return i;
2163 i++;
2164 if (TREE_CHAIN (method_list) == NULL_TREE)
2165 break;
2166 else
2167 method_list = TREE_CHAIN (method_list);
2170 TREE_CHAIN (method_list) = build_tree_list (t, t);
2171 return i;
2174 tree
2175 build_invokevirtual (tree dtable, tree method)
2177 tree func;
2178 tree nativecode_ptr_ptr_type_node
2179 = build_pointer_type (nativecode_ptr_type_node);
2180 tree method_index;
2181 tree otable_index;
2183 if (flag_indirect_dispatch)
2185 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
2186 abort ();
2188 otable_index
2189 = build_int_cst (NULL_TREE, get_symbol_table_index
2190 (method, &TYPE_OTABLE_METHODS (output_class)));
2191 method_index = build4 (ARRAY_REF, integer_type_node,
2192 TYPE_OTABLE_DECL (output_class),
2193 otable_index, NULL_TREE, NULL_TREE);
2195 else
2197 /* We fetch the DECL_VINDEX field directly here, rather than
2198 using get_method_index(). DECL_VINDEX is the true offset
2199 from the vtable base to a method, regrdless of any extra
2200 words inserted at the start of the vtable. */
2201 method_index = DECL_VINDEX (method);
2202 method_index = size_binop (MULT_EXPR, method_index,
2203 TYPE_SIZE_UNIT (nativecode_ptr_ptr_type_node));
2204 if (TARGET_VTABLE_USES_DESCRIPTORS)
2205 method_index = size_binop (MULT_EXPR, method_index,
2206 size_int (TARGET_VTABLE_USES_DESCRIPTORS));
2209 func = fold (build2 (PLUS_EXPR, nativecode_ptr_ptr_type_node, dtable,
2210 convert (nativecode_ptr_ptr_type_node, method_index)));
2212 if (TARGET_VTABLE_USES_DESCRIPTORS)
2213 func = build1 (NOP_EXPR, nativecode_ptr_type_node, func);
2214 else
2215 func = build1 (INDIRECT_REF, nativecode_ptr_type_node, func);
2217 return func;
2220 static GTY(()) tree class_ident;
2221 tree
2222 build_invokeinterface (tree dtable, tree method)
2224 tree lookup_arg;
2225 tree interface;
2226 tree idx;
2228 /* We expand invokeinterface here. */
2230 if (class_ident == NULL_TREE)
2231 class_ident = get_identifier ("class");
2233 dtable = build_java_indirect_ref (dtable_type, dtable,
2234 flag_check_references);
2235 dtable = build3 (COMPONENT_REF, class_ptr_type, dtable,
2236 lookup_field (&dtable_type, class_ident), NULL_TREE);
2238 interface = DECL_CONTEXT (method);
2239 if (! CLASS_INTERFACE (TYPE_NAME (interface)))
2240 abort ();
2241 layout_class_methods (interface);
2243 if (flag_indirect_dispatch)
2245 int itable_index
2246 = 2 * (get_symbol_table_index
2247 (method, &TYPE_ITABLE_METHODS (output_class)));
2248 interface
2249 = build4 (ARRAY_REF,
2250 TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class))),
2251 TYPE_ITABLE_DECL (output_class),
2252 build_int_cst (NULL_TREE, itable_index-1),
2253 NULL_TREE, NULL_TREE);
2254 idx
2255 = build4 (ARRAY_REF,
2256 TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class))),
2257 TYPE_ITABLE_DECL (output_class),
2258 build_int_cst (NULL_TREE, itable_index),
2259 NULL_TREE, NULL_TREE);
2260 interface = convert (class_ptr_type, interface);
2261 idx = convert (integer_type_node, idx);
2263 else
2265 idx = build_int_cst (NULL_TREE,
2266 get_interface_method_index (method, interface));
2267 interface = build_class_ref (interface);
2270 lookup_arg = tree_cons (NULL_TREE, dtable,
2271 tree_cons (NULL_TREE, interface,
2272 build_tree_list (NULL_TREE, idx)));
2274 return build3 (CALL_EXPR, ptr_type_node,
2275 build_address_of (soft_lookupinterfacemethod_node),
2276 lookup_arg, NULL_TREE);
2279 /* Expand one of the invoke_* opcodes.
2280 OPCODE is the specific opcode.
2281 METHOD_REF_INDEX is an index into the constant pool.
2282 NARGS is the number of arguments, or -1 if not specified. */
2284 static void
2285 expand_invoke (int opcode, int method_ref_index, int nargs ATTRIBUTE_UNUSED)
2287 tree method_signature
2288 = COMPONENT_REF_SIGNATURE(&current_jcf->cpool, method_ref_index);
2289 tree method_name = COMPONENT_REF_NAME (&current_jcf->cpool,
2290 method_ref_index);
2291 tree self_type
2292 = get_class_constant (current_jcf,
2293 COMPONENT_REF_CLASS_INDEX(&current_jcf->cpool,
2294 method_ref_index));
2295 const char *const self_name
2296 = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type)));
2297 tree call, func, method, arg_list, method_type;
2298 tree check = NULL_TREE;
2300 if (! CLASS_LOADED_P (self_type))
2302 load_class (self_type, 1);
2303 safe_layout_class (self_type);
2304 if (TREE_CODE (TYPE_SIZE (self_type)) == ERROR_MARK)
2305 fatal_error ("failed to find class '%s'", self_name);
2307 layout_class_methods (self_type);
2309 if (ID_INIT_P (method_name))
2310 method = lookup_java_constructor (self_type, method_signature);
2311 else
2312 method = lookup_java_method (self_type, method_name, method_signature);
2314 /* We've found a method in an interface, but this isn't an interface
2315 call. */
2316 if (opcode != OPCODE_invokeinterface
2317 && method
2318 && (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method)))))
2319 method = NULL_TREE;
2321 /* We've found a non-interface method but we are making an
2322 interface call. This can happen if the interface overrides a
2323 method in Object. */
2324 if (! flag_verify_invocations
2325 && opcode == OPCODE_invokeinterface
2326 && method
2327 && ! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
2328 method = NULL_TREE;
2330 if (method == NULL_TREE)
2332 if (flag_verify_invocations || ! flag_indirect_dispatch)
2334 error ("class '%s' has no method named '%s' matching signature '%s'",
2335 self_name,
2336 IDENTIFIER_POINTER (method_name),
2337 IDENTIFIER_POINTER (method_signature));
2339 else
2341 int flags = ACC_PUBLIC;
2342 if (opcode == OPCODE_invokestatic)
2343 flags |= ACC_STATIC;
2344 if (opcode == OPCODE_invokeinterface)
2346 flags |= ACC_INTERFACE | ACC_ABSTRACT;
2347 CLASS_INTERFACE (TYPE_NAME (self_type)) = 1;
2349 method = add_method (self_type, flags, method_name,
2350 method_signature);
2351 DECL_ARTIFICIAL (method) = 1;
2352 METHOD_DUMMY (method) = 1;
2353 layout_class_method (self_type, NULL,
2354 method, NULL);
2358 /* Invoke static can't invoke static/abstract method */
2359 if (method != NULL_TREE)
2361 if (opcode == OPCODE_invokestatic)
2363 if (!METHOD_STATIC (method))
2365 error ("invokestatic on non static method");
2366 method = NULL_TREE;
2368 else if (METHOD_ABSTRACT (method))
2370 error ("invokestatic on abstract method");
2371 method = NULL_TREE;
2374 else
2376 if (METHOD_STATIC (method))
2378 error ("invoke[non-static] on static method");
2379 method = NULL_TREE;
2384 if (method == NULL_TREE)
2386 /* If we got here, we emitted an error message above. So we
2387 just pop the arguments, push a properly-typed zero, and
2388 continue. */
2389 method_type = get_type_from_signature (method_signature);
2390 pop_arguments (TYPE_ARG_TYPES (method_type));
2391 if (opcode != OPCODE_invokestatic)
2392 pop_type (self_type);
2393 method_type = promote_type (TREE_TYPE (method_type));
2394 push_value (convert (method_type, integer_zero_node));
2395 return;
2398 method_type = TREE_TYPE (method);
2399 arg_list = pop_arguments (TYPE_ARG_TYPES (method_type));
2400 flush_quick_stack ();
2402 func = NULL_TREE;
2403 if (opcode == OPCODE_invokestatic)
2404 func = build_known_method_ref (method, method_type, self_type,
2405 method_signature, arg_list);
2406 else if (opcode == OPCODE_invokespecial
2407 || (opcode == OPCODE_invokevirtual
2408 && (METHOD_PRIVATE (method)
2409 || METHOD_FINAL (method)
2410 || CLASS_FINAL (TYPE_NAME (self_type)))))
2412 /* If the object for the method call is null, we throw an
2413 exception. We don't do this if the object is the current
2414 method's `this'. In other cases we just rely on an
2415 optimization pass to eliminate redundant checks. FIXME:
2416 Unfortunately there doesn't seem to be a way to determine
2417 what the current method is right now.
2418 We do omit the check if we're calling <init>. */
2419 /* We use a SAVE_EXPR here to make sure we only evaluate
2420 the new `self' expression once. */
2421 tree save_arg = save_expr (TREE_VALUE (arg_list));
2422 TREE_VALUE (arg_list) = save_arg;
2423 check = java_check_reference (save_arg, ! DECL_INIT_P (method));
2424 func = build_known_method_ref (method, method_type, self_type,
2425 method_signature, arg_list);
2427 else
2429 tree dtable = invoke_build_dtable (opcode == OPCODE_invokeinterface,
2430 arg_list);
2431 if (opcode == OPCODE_invokevirtual)
2432 func = build_invokevirtual (dtable, method);
2433 else
2434 func = build_invokeinterface (dtable, method);
2437 if (TREE_CODE (func) == ADDR_EXPR)
2438 TREE_TYPE (func) = build_pointer_type (method_type);
2439 else
2440 func = build1 (NOP_EXPR, build_pointer_type (method_type), func);
2442 call = build3 (CALL_EXPR, TREE_TYPE (method_type),
2443 func, arg_list, NULL_TREE);
2444 TREE_SIDE_EFFECTS (call) = 1;
2445 call = check_for_builtin (method, call);
2447 if (check != NULL_TREE)
2449 call = build2 (COMPOUND_EXPR, TREE_TYPE (call), check, call);
2450 TREE_SIDE_EFFECTS (call) = 1;
2453 if (TREE_CODE (TREE_TYPE (method_type)) == VOID_TYPE)
2454 java_add_stmt (call);
2455 else
2457 push_value (call);
2458 flush_quick_stack ();
2462 /* Create a stub which will be put into the vtable but which will call
2463 a JNI function. */
2465 tree
2466 build_jni_stub (tree method)
2468 tree jnifunc, call, args, body, lookup_arg, method_sig, arg_types;
2469 tree jni_func_type, tem;
2470 tree env_var, res_var = NULL_TREE, block;
2471 tree method_args, res_type;
2472 tree meth_var;
2473 tree bind;
2475 int args_size = 0;
2477 tree klass = DECL_CONTEXT (method);
2478 int from_class = ! CLASS_FROM_SOURCE_P (klass);
2479 klass = build_class_ref (klass);
2481 if (! METHOD_NATIVE (method) || ! flag_jni)
2482 abort ();
2484 DECL_ARTIFICIAL (method) = 1;
2485 DECL_EXTERNAL (method) = 0;
2487 env_var = build_decl (VAR_DECL, get_identifier ("env"), ptr_type_node);
2488 DECL_CONTEXT (env_var) = method;
2490 if (TREE_TYPE (TREE_TYPE (method)) != void_type_node)
2492 res_var = build_decl (VAR_DECL, get_identifier ("res"),
2493 TREE_TYPE (TREE_TYPE (method)));
2494 DECL_CONTEXT (res_var) = method;
2495 TREE_CHAIN (env_var) = res_var;
2498 meth_var = build_decl (VAR_DECL, get_identifier ("meth"), ptr_type_node);
2499 TREE_STATIC (meth_var) = 1;
2500 TREE_PUBLIC (meth_var) = 0;
2501 DECL_EXTERNAL (meth_var) = 0;
2502 DECL_CONTEXT (meth_var) = method;
2503 DECL_ARTIFICIAL (meth_var) = 1;
2504 DECL_INITIAL (meth_var) = null_pointer_node;
2505 TREE_USED (meth_var) = 1;
2506 chainon (env_var, meth_var);
2507 build_result_decl (method);
2509 /* One strange way that the front ends are different is that they
2510 store arguments differently. */
2511 if (from_class)
2512 method_args = DECL_ARGUMENTS (method);
2513 else
2514 method_args = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (method));
2515 block = build_block (env_var, NULL_TREE, method_args, NULL_TREE);
2516 TREE_SIDE_EFFECTS (block) = 1;
2517 /* When compiling from source we don't set the type of the block,
2518 because that will prevent patch_return from ever being run. */
2519 if (from_class)
2520 TREE_TYPE (block) = TREE_TYPE (TREE_TYPE (method));
2522 /* Compute the local `env' by calling _Jv_GetJNIEnvNewFrame. */
2523 body = build2 (MODIFY_EXPR, ptr_type_node, env_var,
2524 build3 (CALL_EXPR, ptr_type_node,
2525 build_address_of (soft_getjnienvnewframe_node),
2526 build_tree_list (NULL_TREE, klass),
2527 NULL_TREE));
2528 CAN_COMPLETE_NORMALLY (body) = 1;
2530 /* All the arguments to this method become arguments to the
2531 underlying JNI function. If we had to wrap object arguments in a
2532 special way, we would do that here. */
2533 args = NULL_TREE;
2534 for (tem = method_args; tem != NULL_TREE; tem = TREE_CHAIN (tem))
2536 int arg_bits = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (tem)));
2537 #ifdef PARM_BOUNDARY
2538 arg_bits = (((arg_bits + PARM_BOUNDARY - 1) / PARM_BOUNDARY)
2539 * PARM_BOUNDARY);
2540 #endif
2541 args_size += (arg_bits / BITS_PER_UNIT);
2543 args = tree_cons (NULL_TREE, tem, args);
2545 args = nreverse (args);
2546 arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
2548 /* For a static method the second argument is the class. For a
2549 non-static method the second argument is `this'; that is already
2550 available in the argument list. */
2551 if (METHOD_STATIC (method))
2553 args_size += int_size_in_bytes (TREE_TYPE (klass));
2554 args = tree_cons (NULL_TREE, klass, args);
2555 arg_types = tree_cons (NULL_TREE, object_ptr_type_node, arg_types);
2558 /* The JNIEnv structure is the first argument to the JNI function. */
2559 args_size += int_size_in_bytes (TREE_TYPE (env_var));
2560 args = tree_cons (NULL_TREE, env_var, args);
2561 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
2563 /* We call _Jv_LookupJNIMethod to find the actual underlying
2564 function pointer. _Jv_LookupJNIMethod will throw the appropriate
2565 exception if this function is not found at runtime. */
2566 tem = build_tree_list (NULL_TREE, build_int_cst (NULL_TREE, args_size));
2567 method_sig = build_java_signature (TREE_TYPE (method));
2568 lookup_arg = tree_cons (NULL_TREE,
2569 build_utf8_ref (unmangle_classname
2570 (IDENTIFIER_POINTER (method_sig),
2571 IDENTIFIER_LENGTH (method_sig))),
2572 tem);
2573 tem = DECL_NAME (method);
2574 lookup_arg
2575 = tree_cons (NULL_TREE, klass,
2576 tree_cons (NULL_TREE, build_utf8_ref (tem), lookup_arg));
2578 tem = build_function_type (TREE_TYPE (TREE_TYPE (method)), arg_types);
2580 #ifdef MODIFY_JNI_METHOD_CALL
2581 tem = MODIFY_JNI_METHOD_CALL (tem);
2582 #endif
2584 jni_func_type = build_pointer_type (tem);
2586 jnifunc = build3 (COND_EXPR, ptr_type_node,
2587 meth_var, meth_var,
2588 build2 (MODIFY_EXPR, ptr_type_node, meth_var,
2589 build3 (CALL_EXPR, ptr_type_node,
2590 build_address_of
2591 (soft_lookupjnimethod_node),
2592 lookup_arg, NULL_TREE)));
2594 /* Now we make the actual JNI call via the resulting function
2595 pointer. */
2596 call = build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (method)),
2597 build1 (NOP_EXPR, jni_func_type, jnifunc),
2598 args, NULL_TREE);
2600 /* If the JNI call returned a result, capture it here. If we had to
2601 unwrap JNI object results, we would do that here. */
2602 if (res_var != NULL_TREE)
2603 call = build2 (MODIFY_EXPR, TREE_TYPE (TREE_TYPE (method)),
2604 res_var, call);
2606 TREE_SIDE_EFFECTS (call) = 1;
2607 CAN_COMPLETE_NORMALLY (call) = 1;
2609 body = build2 (COMPOUND_EXPR, void_type_node, body, call);
2610 TREE_SIDE_EFFECTS (body) = 1;
2612 /* Now free the environment we allocated. */
2613 call = build3 (CALL_EXPR, ptr_type_node,
2614 build_address_of (soft_jnipopsystemframe_node),
2615 build_tree_list (NULL_TREE, env_var),
2616 NULL_TREE);
2617 TREE_SIDE_EFFECTS (call) = 1;
2618 CAN_COMPLETE_NORMALLY (call) = 1;
2619 body = build2 (COMPOUND_EXPR, void_type_node, body, call);
2620 TREE_SIDE_EFFECTS (body) = 1;
2622 /* Finally, do the return. */
2623 res_type = void_type_node;
2624 if (res_var != NULL_TREE)
2626 tree drt;
2627 if (! DECL_RESULT (method))
2628 abort ();
2629 /* Make sure we copy the result variable to the actual
2630 result. We use the type of the DECL_RESULT because it
2631 might be different from the return type of the function:
2632 it might be promoted. */
2633 drt = TREE_TYPE (DECL_RESULT (method));
2634 if (drt != TREE_TYPE (res_var))
2635 res_var = build1 (CONVERT_EXPR, drt, res_var);
2636 res_var = build2 (MODIFY_EXPR, drt, DECL_RESULT (method), res_var);
2637 TREE_SIDE_EFFECTS (res_var) = 1;
2640 body = build2 (COMPOUND_EXPR, void_type_node, body,
2641 build1 (RETURN_EXPR, res_type, res_var));
2642 TREE_SIDE_EFFECTS (body) = 1;
2644 bind = build3 (BIND_EXPR, void_type_node, BLOCK_VARS (block),
2645 body, block);
2646 return bind;
2649 /* Expand an operation to extract from or store into a field.
2650 IS_STATIC is 1 iff the field is static.
2651 IS_PUTTING is 1 for putting into a field; 0 for getting from the field.
2652 FIELD_REF_INDEX is an index into the constant pool. */
2654 static void
2655 expand_java_field_op (int is_static, int is_putting, int field_ref_index)
2657 tree self_type
2658 = get_class_constant (current_jcf,
2659 COMPONENT_REF_CLASS_INDEX (&current_jcf->cpool,
2660 field_ref_index));
2661 const char *self_name
2662 = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type)));
2663 tree field_name = COMPONENT_REF_NAME (&current_jcf->cpool, field_ref_index);
2664 tree field_signature = COMPONENT_REF_SIGNATURE (&current_jcf->cpool,
2665 field_ref_index);
2666 tree field_type = get_type_from_signature (field_signature);
2667 tree new_value = is_putting ? pop_value (field_type) : NULL_TREE;
2668 tree field_ref;
2669 int is_error = 0;
2670 tree original_self_type = self_type;
2671 tree field_decl;
2673 if (! CLASS_LOADED_P (self_type))
2674 load_class (self_type, 1);
2675 field_decl = lookup_field (&self_type, field_name);
2676 if (field_decl == error_mark_node)
2678 is_error = 1;
2680 else if (field_decl == NULL_TREE)
2682 if (! flag_verify_invocations)
2684 int flags = ACC_PUBLIC;
2685 if (is_static)
2686 flags |= ACC_STATIC;
2687 self_type = original_self_type;
2688 field_decl = add_field (original_self_type, field_name,
2689 field_type, flags);
2690 DECL_ARTIFICIAL (field_decl) = 1;
2691 DECL_IGNORED_P (field_decl) = 1;
2693 else
2695 error ("missing field '%s' in '%s'",
2696 IDENTIFIER_POINTER (field_name), self_name);
2697 is_error = 1;
2700 else if (build_java_signature (TREE_TYPE (field_decl)) != field_signature)
2702 error ("mismatching signature for field '%s' in '%s'",
2703 IDENTIFIER_POINTER (field_name), self_name);
2704 is_error = 1;
2706 field_ref = is_static ? NULL_TREE : pop_value (self_type);
2707 if (is_error)
2709 if (! is_putting)
2710 push_value (convert (field_type, integer_zero_node));
2711 flush_quick_stack ();
2712 return;
2715 field_ref = build_field_ref (field_ref, self_type, field_name);
2716 if (is_static
2717 && ! flag_indirect_dispatch)
2718 field_ref = build_class_init (self_type, field_ref);
2719 if (is_putting)
2721 flush_quick_stack ();
2722 if (FIELD_FINAL (field_decl))
2724 if (DECL_CONTEXT (field_decl) != current_class)
2725 error ("%Jassignment to final field '%D' not in field's class",
2726 field_decl, field_decl);
2727 else if (FIELD_STATIC (field_decl))
2729 if (!DECL_CLINIT_P (current_function_decl))
2730 warning (0, "%Jassignment to final static field %qD not in "
2731 "class initializer",
2732 field_decl, field_decl);
2734 else
2736 tree cfndecl_name = DECL_NAME (current_function_decl);
2737 if (! DECL_CONSTRUCTOR_P (current_function_decl)
2738 && !ID_FINIT_P (cfndecl_name))
2739 warning (0, "%Jassignment to final field '%D' not in constructor",
2740 field_decl, field_decl);
2743 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (field_ref),
2744 field_ref, new_value));
2746 else
2747 push_value (field_ref);
2750 void
2751 load_type_state (tree label)
2753 int i;
2754 tree vec = LABEL_TYPE_STATE (label);
2755 int cur_length = TREE_VEC_LENGTH (vec);
2756 stack_pointer = cur_length - DECL_MAX_LOCALS(current_function_decl);
2757 for (i = 0; i < cur_length; i++)
2758 type_map [i] = TREE_VEC_ELT (vec, i);
2761 /* Go over METHOD's bytecode and note instruction starts in
2762 instruction_bits[]. */
2764 void
2765 note_instructions (JCF *jcf, tree method)
2767 int PC;
2768 unsigned char* byte_ops;
2769 long length = DECL_CODE_LENGTH (method);
2771 int saw_index;
2772 jint INT_temp;
2774 #undef RET /* Defined by config/i386/i386.h */
2775 #undef PTR
2776 #define BCODE byte_ops
2777 #define BYTE_type_node byte_type_node
2778 #define SHORT_type_node short_type_node
2779 #define INT_type_node int_type_node
2780 #define LONG_type_node long_type_node
2781 #define CHAR_type_node char_type_node
2782 #define PTR_type_node ptr_type_node
2783 #define FLOAT_type_node float_type_node
2784 #define DOUBLE_type_node double_type_node
2785 #define VOID_type_node void_type_node
2786 #define CONST_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
2787 #define CONST_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
2788 #define VAR_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
2789 #define VAR_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
2791 #define CHECK_PC_IN_RANGE(PC) ((void)1) /* Already handled by verifier. */
2793 JCF_SEEK (jcf, DECL_CODE_OFFSET (method));
2794 byte_ops = jcf->read_ptr;
2795 instruction_bits = xrealloc (instruction_bits, length + 1);
2796 memset (instruction_bits, 0, length + 1);
2798 /* This pass figures out which PC can be the targets of jumps. */
2799 for (PC = 0; PC < length;)
2801 int oldpc = PC; /* PC at instruction start. */
2802 instruction_bits [PC] |= BCODE_INSTRUCTION_START;
2803 switch (byte_ops[PC++])
2805 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
2806 case OPCODE: \
2807 PRE_##OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
2808 break;
2810 #define NOTE_LABEL(PC) note_label(oldpc, PC)
2812 #define PRE_PUSHC(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
2813 #define PRE_LOAD(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
2814 #define PRE_STORE(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
2815 #define PRE_STACK(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2816 #define PRE_UNOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2817 #define PRE_BINOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2818 #define PRE_CONVERT(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2819 #define PRE_CONVERT2(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2821 #define PRE_SPECIAL(OPERAND_TYPE, INSTRUCTION) \
2822 PRE_SPECIAL_##INSTRUCTION(OPERAND_TYPE)
2823 #define PRE_SPECIAL_IINC(OPERAND_TYPE) \
2824 ((void) IMMEDIATE_u1, (void) IMMEDIATE_s1)
2825 #define PRE_SPECIAL_ENTER(IGNORE) /* nothing */
2826 #define PRE_SPECIAL_EXIT(IGNORE) /* nothing */
2827 #define PRE_SPECIAL_THROW(IGNORE) /* nothing */
2828 #define PRE_SPECIAL_BREAK(IGNORE) /* nothing */
2830 /* two forms of wide instructions */
2831 #define PRE_SPECIAL_WIDE(IGNORE) \
2833 int modified_opcode = IMMEDIATE_u1; \
2834 if (modified_opcode == OPCODE_iinc) \
2836 (void) IMMEDIATE_u2; /* indexbyte1 and indexbyte2 */ \
2837 (void) IMMEDIATE_s2; /* constbyte1 and constbyte2 */ \
2839 else \
2841 (void) IMMEDIATE_u2; /* indexbyte1 and indexbyte2 */ \
2845 #define PRE_IMPL(IGNORE1, IGNORE2) /* nothing */
2847 #define PRE_MONITOR(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2849 #define PRE_RETURN(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
2850 #define PRE_ARRAY(OPERAND_TYPE, SUBOP) \
2851 PRE_ARRAY_##SUBOP(OPERAND_TYPE)
2852 #define PRE_ARRAY_LOAD(TYPE) /* nothing */
2853 #define PRE_ARRAY_STORE(TYPE) /* nothing */
2854 #define PRE_ARRAY_LENGTH(TYPE) /* nothing */
2855 #define PRE_ARRAY_NEW(TYPE) PRE_ARRAY_NEW_##TYPE
2856 #define PRE_ARRAY_NEW_NUM ((void) IMMEDIATE_u1)
2857 #define PRE_ARRAY_NEW_PTR ((void) IMMEDIATE_u2)
2858 #define PRE_ARRAY_NEW_MULTI ((void) IMMEDIATE_u2, (void) IMMEDIATE_u1)
2860 #define PRE_TEST(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
2861 #define PRE_COND(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
2862 #define PRE_BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
2863 saw_index = 0; INT_temp = (OPERAND_VALUE); \
2864 if (!saw_index) NOTE_LABEL(oldpc + INT_temp);
2865 #define PRE_JSR(OPERAND_TYPE, OPERAND_VALUE) \
2866 saw_index = 0; INT_temp = (OPERAND_VALUE); \
2867 NOTE_LABEL (PC); \
2868 if (!saw_index) NOTE_LABEL(oldpc + INT_temp);
2870 #define PRE_RET(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE)
2872 #define PRE_SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
2873 PC = (PC + 3) / 4 * 4; PRE_##TABLE_OR_LOOKUP##_SWITCH
2875 #define PRE_LOOKUP_SWITCH \
2876 { jint default_offset = IMMEDIATE_s4; jint npairs = IMMEDIATE_s4; \
2877 NOTE_LABEL (default_offset+oldpc); \
2878 if (npairs >= 0) \
2879 while (--npairs >= 0) { \
2880 jint match ATTRIBUTE_UNUSED = IMMEDIATE_s4; \
2881 jint offset = IMMEDIATE_s4; \
2882 NOTE_LABEL (offset+oldpc); } \
2885 #define PRE_TABLE_SWITCH \
2886 { jint default_offset = IMMEDIATE_s4; \
2887 jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4; \
2888 NOTE_LABEL (default_offset+oldpc); \
2889 if (low <= high) \
2890 while (low++ <= high) { \
2891 jint offset = IMMEDIATE_s4; \
2892 NOTE_LABEL (offset+oldpc); } \
2895 #define PRE_FIELD(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
2896 #define PRE_OBJECT(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
2897 #define PRE_INVOKE(MAYBE_STATIC, IS_INTERFACE) \
2898 (void)(IMMEDIATE_u2); \
2899 PC += 2 * IS_INTERFACE /* for invokeinterface */;
2901 #include "javaop.def"
2902 #undef JAVAOP
2904 } /* for */
2907 void
2908 expand_byte_code (JCF *jcf, tree method)
2910 int PC;
2911 int i;
2912 const unsigned char *linenumber_pointer;
2913 int dead_code_index = -1;
2914 unsigned char* byte_ops;
2915 long length = DECL_CODE_LENGTH (method);
2917 stack_pointer = 0;
2918 JCF_SEEK (jcf, DECL_CODE_OFFSET (method));
2919 byte_ops = jcf->read_ptr;
2921 /* We make an initial pass of the line number table, to note
2922 which instructions have associated line number entries. */
2923 linenumber_pointer = linenumber_table;
2924 for (i = 0; i < linenumber_count; i++)
2926 int pc = GET_u2 (linenumber_pointer);
2927 linenumber_pointer += 4;
2928 if (pc >= length)
2929 warning (0, "invalid PC in line number table");
2930 else
2932 if ((instruction_bits[pc] & BCODE_HAS_LINENUMBER) != 0)
2933 instruction_bits[pc] |= BCODE_HAS_MULTI_LINENUMBERS;
2934 instruction_bits[pc] |= BCODE_HAS_LINENUMBER;
2938 if (flag_new_verifier)
2940 if (! verify_jvm_instructions_new (jcf, byte_ops, length))
2941 return;
2943 else
2945 if (! verify_jvm_instructions (jcf, byte_ops, length))
2946 return;
2949 promote_arguments ();
2951 /* Translate bytecodes. */
2952 linenumber_pointer = linenumber_table;
2953 for (PC = 0; PC < length;)
2955 if ((instruction_bits [PC] & BCODE_TARGET) != 0 || PC == 0)
2957 tree label = lookup_label (PC);
2958 flush_quick_stack ();
2959 if ((instruction_bits [PC] & BCODE_TARGET) != 0)
2960 java_add_stmt (build1 (LABEL_EXPR, void_type_node, label));
2961 if (LABEL_VERIFIED (label) || PC == 0)
2962 load_type_state (label);
2965 if (! (instruction_bits [PC] & BCODE_VERIFIED))
2967 if (dead_code_index == -1)
2969 /* This is the start of a region of unreachable bytecodes.
2970 They still need to be processed in order for EH ranges
2971 to get handled correctly. However, we can simply
2972 replace these bytecodes with nops. */
2973 dead_code_index = PC;
2976 /* Turn this bytecode into a nop. */
2977 byte_ops[PC] = 0x0;
2979 else
2981 if (dead_code_index != -1)
2983 /* We've just reached the end of a region of dead code. */
2984 if (extra_warnings)
2985 warning (0, "unreachable bytecode from %d to before %d",
2986 dead_code_index, PC);
2987 dead_code_index = -1;
2991 /* Handle possible line number entry for this PC.
2993 This code handles out-of-order and multiple linenumbers per PC,
2994 but is optimized for the case of line numbers increasing
2995 monotonically with PC. */
2996 if ((instruction_bits[PC] & BCODE_HAS_LINENUMBER) != 0)
2998 if ((instruction_bits[PC] & BCODE_HAS_MULTI_LINENUMBERS) != 0
2999 || GET_u2 (linenumber_pointer) != PC)
3000 linenumber_pointer = linenumber_table;
3001 while (linenumber_pointer < linenumber_table + linenumber_count * 4)
3003 int pc = GET_u2 (linenumber_pointer);
3004 linenumber_pointer += 4;
3005 if (pc == PC)
3007 int line = GET_u2 (linenumber_pointer - 2);
3008 #ifdef USE_MAPPED_LOCATION
3009 input_location = linemap_line_start (&line_table, line, 1);
3010 #else
3011 input_location.line = line;
3012 #endif
3013 if (!(instruction_bits[PC] & BCODE_HAS_MULTI_LINENUMBERS))
3014 break;
3018 maybe_pushlevels (PC);
3019 PC = process_jvm_instruction (PC, byte_ops, length);
3020 maybe_poplevels (PC);
3021 } /* for */
3023 if (dead_code_index != -1)
3025 /* We've just reached the end of a region of dead code. */
3026 if (extra_warnings)
3027 warning (0, "unreachable bytecode from %d to the end of the method",
3028 dead_code_index);
3032 static void
3033 java_push_constant_from_pool (JCF *jcf, int index)
3035 tree c;
3036 if (JPOOL_TAG (jcf, index) == CONSTANT_String)
3038 tree name;
3039 name = get_name_constant (jcf, JPOOL_USHORT1 (jcf, index));
3040 index = alloc_name_constant (CONSTANT_String, name);
3041 c = build_ref_from_constant_pool (index);
3042 c = convert (promote_type (string_type_node), c);
3044 else
3045 c = get_constant (jcf, index);
3046 push_value (c);
3050 process_jvm_instruction (int PC, const unsigned char* byte_ops,
3051 long length ATTRIBUTE_UNUSED)
3053 const char *opname; /* Temporary ??? */
3054 int oldpc = PC; /* PC at instruction start. */
3056 /* If the instruction is at the beginning of a exception handler,
3057 replace the top of the stack with the thrown object reference */
3058 if (instruction_bits [PC] & BCODE_EXCEPTION_TARGET)
3060 /* Note that the new verifier will not emit a type map at all
3061 for dead exception handlers. In this case we just ignore
3062 the situation. */
3063 if (! flag_new_verifier || (instruction_bits[PC] & BCODE_VERIFIED) != 0)
3065 tree type = pop_type (promote_type (throwable_type_node));
3066 push_value (build_exception_object_ref (type));
3070 switch (byte_ops[PC++])
3072 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
3073 case OPCODE: \
3074 opname = #OPNAME; \
3075 OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
3076 break;
3078 #define RET(OPERAND_TYPE, OPERAND_VALUE) \
3080 int saw_index = 0; \
3081 int index = OPERAND_VALUE; \
3082 build_java_ret \
3083 (find_local_variable (index, return_address_type_node, oldpc)); \
3086 #define JSR(OPERAND_TYPE, OPERAND_VALUE) \
3088 /* OPERAND_VALUE may have side-effects on PC */ \
3089 int opvalue = OPERAND_VALUE; \
3090 build_java_jsr (oldpc + opvalue, PC); \
3093 /* Push a constant onto the stack. */
3094 #define PUSHC(OPERAND_TYPE, OPERAND_VALUE) \
3095 { int saw_index = 0; int ival = (OPERAND_VALUE); \
3096 if (saw_index) java_push_constant_from_pool (current_jcf, ival); \
3097 else expand_java_pushc (ival, OPERAND_TYPE##_type_node); }
3099 /* internal macro added for use by the WIDE case */
3100 #define LOAD_INTERNAL(OPTYPE, OPVALUE) \
3101 expand_load_internal (OPVALUE, type_map[OPVALUE], oldpc);
3103 /* Push local variable onto the opcode stack. */
3104 #define LOAD(OPERAND_TYPE, OPERAND_VALUE) \
3106 /* have to do this since OPERAND_VALUE may have side-effects */ \
3107 int opvalue = OPERAND_VALUE; \
3108 LOAD_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3111 #define RETURN(OPERAND_TYPE, OPERAND_VALUE) \
3112 expand_java_return (OPERAND_TYPE##_type_node)
3114 #define REM_EXPR TRUNC_MOD_EXPR
3115 #define BINOP(OPERAND_TYPE, OPERAND_VALUE) \
3116 expand_java_binop (OPERAND_TYPE##_type_node, OPERAND_VALUE##_EXPR)
3118 #define FIELD(IS_STATIC, IS_PUT) \
3119 expand_java_field_op (IS_STATIC, IS_PUT, IMMEDIATE_u2)
3121 #define TEST(OPERAND_TYPE, CONDITION) \
3122 expand_test (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3124 #define COND(OPERAND_TYPE, CONDITION) \
3125 expand_cond (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3127 #define BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
3128 BRANCH_##OPERAND_TYPE (OPERAND_VALUE)
3130 #define BRANCH_GOTO(OPERAND_VALUE) \
3131 expand_java_goto (oldpc + OPERAND_VALUE)
3133 #define BRANCH_CALL(OPERAND_VALUE) \
3134 expand_java_call (oldpc + OPERAND_VALUE, oldpc)
3136 #if 0
3137 #define BRANCH_RETURN(OPERAND_VALUE) \
3139 tree type = OPERAND_TYPE##_type_node; \
3140 tree value = find_local_variable (OPERAND_VALUE, type, oldpc); \
3141 expand_java_ret (value); \
3143 #endif
3145 #define NOT_IMPL(OPERAND_TYPE, OPERAND_VALUE) \
3146 fprintf (stderr, "%3d: %s ", oldpc, opname); \
3147 fprintf (stderr, "(not implemented)\n")
3148 #define NOT_IMPL1(OPERAND_VALUE) \
3149 fprintf (stderr, "%3d: %s ", oldpc, opname); \
3150 fprintf (stderr, "(not implemented)\n")
3152 #define BRANCH_RETURN(OPERAND_VALUE) NOT_IMPL1(OPERAND_VALUE)
3154 #define STACK(SUBOP, COUNT) STACK_##SUBOP (COUNT)
3156 #define STACK_POP(COUNT) java_stack_pop (COUNT)
3158 #define STACK_SWAP(COUNT) java_stack_swap()
3160 #define STACK_DUP(COUNT) java_stack_dup (COUNT, 0)
3161 #define STACK_DUPx1(COUNT) java_stack_dup (COUNT, 1)
3162 #define STACK_DUPx2(COUNT) java_stack_dup (COUNT, 2)
3164 #define SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
3165 PC = (PC + 3) / 4 * 4; TABLE_OR_LOOKUP##_SWITCH
3167 #define LOOKUP_SWITCH \
3168 { jint default_offset = IMMEDIATE_s4; jint npairs = IMMEDIATE_s4; \
3169 tree selector = pop_value (INT_type_node); \
3170 tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3171 while (--npairs >= 0) \
3173 jint match = IMMEDIATE_s4; jint offset = IMMEDIATE_s4; \
3174 expand_java_add_case (switch_expr, match, oldpc + offset); \
3178 #define TABLE_SWITCH \
3179 { jint default_offset = IMMEDIATE_s4; \
3180 jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4; \
3181 tree selector = pop_value (INT_type_node); \
3182 tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3183 for (; low <= high; low++) \
3185 jint offset = IMMEDIATE_s4; \
3186 expand_java_add_case (switch_expr, low, oldpc + offset); \
3190 #define INVOKE(MAYBE_STATIC, IS_INTERFACE) \
3191 { int opcode = byte_ops[PC-1]; \
3192 int method_ref_index = IMMEDIATE_u2; \
3193 int nargs; \
3194 if (IS_INTERFACE) { nargs = IMMEDIATE_u1; (void) IMMEDIATE_u1; } \
3195 else nargs = -1; \
3196 expand_invoke (opcode, method_ref_index, nargs); \
3199 /* Handle new, checkcast, instanceof */
3200 #define OBJECT(TYPE, OP) \
3201 expand_java_##OP (get_class_constant (current_jcf, IMMEDIATE_u2))
3203 #define ARRAY(OPERAND_TYPE, SUBOP) ARRAY_##SUBOP(OPERAND_TYPE)
3205 #define ARRAY_LOAD(OPERAND_TYPE) \
3207 expand_java_arrayload( OPERAND_TYPE##_type_node ); \
3210 #define ARRAY_STORE(OPERAND_TYPE) \
3212 expand_java_arraystore( OPERAND_TYPE##_type_node ); \
3215 #define ARRAY_LENGTH(OPERAND_TYPE) expand_java_array_length();
3216 #define ARRAY_NEW(OPERAND_TYPE) ARRAY_NEW_##OPERAND_TYPE()
3217 #define ARRAY_NEW_PTR() \
3218 push_value (build_anewarray (get_class_constant (current_jcf, \
3219 IMMEDIATE_u2), \
3220 pop_value (int_type_node)));
3221 #define ARRAY_NEW_NUM() \
3223 int atype = IMMEDIATE_u1; \
3224 push_value (build_newarray (atype, pop_value (int_type_node)));\
3226 #define ARRAY_NEW_MULTI() \
3228 tree class = get_class_constant (current_jcf, IMMEDIATE_u2 ); \
3229 int ndims = IMMEDIATE_u1; \
3230 expand_java_multianewarray( class, ndims ); \
3233 #define UNOP(OPERAND_TYPE, OPERAND_VALUE) \
3234 push_value (fold (build1 (NEGATE_EXPR, OPERAND_TYPE##_type_node, \
3235 pop_value (OPERAND_TYPE##_type_node))));
3237 #define CONVERT2(FROM_TYPE, TO_TYPE) \
3239 push_value (build1 (NOP_EXPR, int_type_node, \
3240 (convert (TO_TYPE##_type_node, \
3241 pop_value (FROM_TYPE##_type_node))))); \
3244 #define CONVERT(FROM_TYPE, TO_TYPE) \
3246 push_value (convert (TO_TYPE##_type_node, \
3247 pop_value (FROM_TYPE##_type_node))); \
3250 /* internal macro added for use by the WIDE case
3251 Added TREE_TYPE (decl) assignment, apbianco */
3252 #define STORE_INTERNAL(OPTYPE, OPVALUE) \
3254 tree decl, value; \
3255 int index = OPVALUE; \
3256 tree type = OPTYPE; \
3257 value = pop_value (type); \
3258 type = TREE_TYPE (value); \
3259 decl = find_local_variable (index, type, oldpc); \
3260 set_local_type (index, type); \
3261 java_add_stmt (build2 (MODIFY_EXPR, type, decl, value)); \
3262 update_aliases (decl, index, PC); \
3265 #define STORE(OPERAND_TYPE, OPERAND_VALUE) \
3267 /* have to do this since OPERAND_VALUE may have side-effects */ \
3268 int opvalue = OPERAND_VALUE; \
3269 STORE_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3272 #define SPECIAL(OPERAND_TYPE, INSTRUCTION) \
3273 SPECIAL_##INSTRUCTION(OPERAND_TYPE)
3275 #define SPECIAL_ENTER(IGNORED) MONITOR_OPERATION (soft_monitorenter_node)
3276 #define SPECIAL_EXIT(IGNORED) MONITOR_OPERATION (soft_monitorexit_node)
3278 #define MONITOR_OPERATION(call) \
3280 tree o = pop_value (ptr_type_node); \
3281 tree c; \
3282 flush_quick_stack (); \
3283 c = build_java_monitor (call, o); \
3284 TREE_SIDE_EFFECTS (c) = 1; \
3285 java_add_stmt (c); \
3288 #define SPECIAL_IINC(IGNORED) \
3290 unsigned int local_var_index = IMMEDIATE_u1; \
3291 int ival = IMMEDIATE_s1; \
3292 expand_iinc(local_var_index, ival, oldpc); \
3295 #define SPECIAL_WIDE(IGNORED) \
3297 int modified_opcode = IMMEDIATE_u1; \
3298 unsigned int local_var_index = IMMEDIATE_u2; \
3299 switch (modified_opcode) \
3301 case OPCODE_iinc: \
3303 int ival = IMMEDIATE_s2; \
3304 expand_iinc (local_var_index, ival, oldpc); \
3305 break; \
3307 case OPCODE_iload: \
3308 case OPCODE_lload: \
3309 case OPCODE_fload: \
3310 case OPCODE_dload: \
3311 case OPCODE_aload: \
3313 /* duplicate code from LOAD macro */ \
3314 LOAD_INTERNAL(operand_type[modified_opcode], local_var_index); \
3315 break; \
3317 case OPCODE_istore: \
3318 case OPCODE_lstore: \
3319 case OPCODE_fstore: \
3320 case OPCODE_dstore: \
3321 case OPCODE_astore: \
3323 STORE_INTERNAL(operand_type[modified_opcode], local_var_index); \
3324 break; \
3326 default: \
3327 error ("unrecogized wide sub-instruction"); \
3331 #define SPECIAL_THROW(IGNORED) \
3332 build_java_athrow (pop_value (throwable_type_node))
3334 #define SPECIAL_BREAK NOT_IMPL1
3335 #define IMPL NOT_IMPL
3337 #include "javaop.def"
3338 #undef JAVAOP
3339 default:
3340 fprintf (stderr, "%3d: unknown(%3d)\n", oldpc, byte_ops[PC]);
3342 return PC;
3345 /* Return the opcode at PC in the code section pointed to by
3346 CODE_OFFSET. */
3348 static unsigned char
3349 peek_opcode_at_pc (JCF *jcf, int code_offset, int pc)
3351 unsigned char opcode;
3352 long absolute_offset = (long)JCF_TELL (jcf);
3354 JCF_SEEK (jcf, code_offset);
3355 opcode = jcf->read_ptr [pc];
3356 JCF_SEEK (jcf, absolute_offset);
3357 return opcode;
3360 /* Some bytecode compilers are emitting accurate LocalVariableTable
3361 attributes. Here's an example:
3363 PC <t>store_<n>
3364 PC+1 ...
3366 Attribute "LocalVariableTable"
3367 slot #<n>: ... (PC: PC+1 length: L)
3369 This is accurate because the local in slot <n> really exists after
3370 the opcode at PC is executed, hence from PC+1 to PC+1+L.
3372 This procedure recognizes this situation and extends the live range
3373 of the local in SLOT to START_PC-1 or START_PC-2 (depending on the
3374 length of the store instruction.)
3376 This function is used by `give_name_to_locals' so that a local's
3377 DECL features a DECL_LOCAL_START_PC such that the first related
3378 store operation will use DECL as a destination, not a unrelated
3379 temporary created for the occasion.
3381 This function uses a global (instruction_bits) `note_instructions' should
3382 have allocated and filled properly. */
3385 maybe_adjust_start_pc (struct JCF *jcf, int code_offset,
3386 int start_pc, int slot)
3388 int first, index, opcode;
3389 int pc, insn_pc;
3390 int wide_found = 0;
3392 if (!start_pc)
3393 return start_pc;
3395 first = index = -1;
3397 /* Find last previous instruction and remember it */
3398 for (pc = start_pc-1; pc; pc--)
3399 if (instruction_bits [pc] & BCODE_INSTRUCTION_START)
3400 break;
3401 insn_pc = pc;
3403 /* Retrieve the instruction, handle `wide'. */
3404 opcode = (int) peek_opcode_at_pc (jcf, code_offset, pc++);
3405 if (opcode == OPCODE_wide)
3407 wide_found = 1;
3408 opcode = (int) peek_opcode_at_pc (jcf, code_offset, pc++);
3411 switch (opcode)
3413 case OPCODE_astore_0:
3414 case OPCODE_astore_1:
3415 case OPCODE_astore_2:
3416 case OPCODE_astore_3:
3417 first = OPCODE_astore_0;
3418 break;
3420 case OPCODE_istore_0:
3421 case OPCODE_istore_1:
3422 case OPCODE_istore_2:
3423 case OPCODE_istore_3:
3424 first = OPCODE_istore_0;
3425 break;
3427 case OPCODE_lstore_0:
3428 case OPCODE_lstore_1:
3429 case OPCODE_lstore_2:
3430 case OPCODE_lstore_3:
3431 first = OPCODE_lstore_0;
3432 break;
3434 case OPCODE_fstore_0:
3435 case OPCODE_fstore_1:
3436 case OPCODE_fstore_2:
3437 case OPCODE_fstore_3:
3438 first = OPCODE_fstore_0;
3439 break;
3441 case OPCODE_dstore_0:
3442 case OPCODE_dstore_1:
3443 case OPCODE_dstore_2:
3444 case OPCODE_dstore_3:
3445 first = OPCODE_dstore_0;
3446 break;
3448 case OPCODE_astore:
3449 case OPCODE_istore:
3450 case OPCODE_lstore:
3451 case OPCODE_fstore:
3452 case OPCODE_dstore:
3453 index = peek_opcode_at_pc (jcf, code_offset, pc);
3454 if (wide_found)
3456 int other = peek_opcode_at_pc (jcf, code_offset, ++pc);
3457 index = (other << 8) + index;
3459 break;
3462 /* Now we decide: first >0 means we have a <t>store_<n>, index >0
3463 means we have a <t>store. */
3464 if ((first > 0 && opcode - first == slot) || (index > 0 && index == slot))
3465 start_pc = insn_pc;
3467 return start_pc;
3470 /* Force the (direct) sub-operands of NODE to be evaluated in left-to-right
3471 order, as specified by Java Language Specification.
3473 The problem is that while expand_expr will evaluate its sub-operands in
3474 left-to-right order, for variables it will just return an rtx (i.e.
3475 an lvalue) for the variable (rather than an rvalue). So it is possible
3476 that a later sub-operand will change the register, and when the
3477 actual operation is done, it will use the new value, when it should
3478 have used the original value.
3480 We fix this by using save_expr. This forces the sub-operand to be
3481 copied into a fresh virtual register,
3483 For method invocation, we modify the arguments so that a
3484 left-to-right order evaluation is performed. Saved expressions
3485 will, in CALL_EXPR order, be reused when the call will be expanded.
3487 We also promote outgoing args if needed. */
3489 tree
3490 force_evaluation_order (tree node)
3492 if (flag_syntax_only)
3493 return node;
3494 if (TREE_CODE (node) == CALL_EXPR
3495 || TREE_CODE (node) == NEW_CLASS_EXPR
3496 || (TREE_CODE (node) == COMPOUND_EXPR
3497 && TREE_CODE (TREE_OPERAND (node, 0)) == CALL_EXPR
3498 && TREE_CODE (TREE_OPERAND (node, 1)) == SAVE_EXPR))
3500 tree arg, cmp;
3502 arg = node;
3504 /* Position arg properly, account for wrapped around ctors. */
3505 if (TREE_CODE (node) == COMPOUND_EXPR)
3506 arg = TREE_OPERAND (node, 0);
3508 arg = TREE_OPERAND (arg, 1);
3510 /* An empty argument list is ok, just ignore it. */
3511 if (!arg)
3512 return node;
3514 /* Not having a list of arguments here is an error. */
3515 if (TREE_CODE (arg) != TREE_LIST)
3516 abort ();
3518 /* This reverses the evaluation order. This is a desired effect. */
3519 for (cmp = NULL_TREE; arg; arg = TREE_CHAIN (arg))
3521 /* Promote types smaller than integer. This is required by
3522 some ABIs. */
3523 tree type = TREE_TYPE (TREE_VALUE (arg));
3524 tree saved;
3525 if (targetm.calls.promote_prototypes (type)
3526 && INTEGRAL_TYPE_P (type)
3527 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
3528 TYPE_SIZE (integer_type_node)))
3529 TREE_VALUE (arg) = fold_convert (integer_type_node, TREE_VALUE (arg));
3531 saved = save_expr (force_evaluation_order (TREE_VALUE (arg)));
3532 cmp = (cmp == NULL_TREE ? saved :
3533 build2 (COMPOUND_EXPR, void_type_node, cmp, saved));
3534 TREE_VALUE (arg) = saved;
3537 if (cmp && TREE_CODE (cmp) == COMPOUND_EXPR)
3538 TREE_SIDE_EFFECTS (cmp) = 1;
3540 if (cmp)
3542 cmp = build2 (COMPOUND_EXPR, TREE_TYPE (node), cmp, node);
3543 if (TREE_TYPE (cmp) != void_type_node)
3544 cmp = save_expr (cmp);
3545 CAN_COMPLETE_NORMALLY (cmp) = CAN_COMPLETE_NORMALLY (node);
3546 TREE_SIDE_EFFECTS (cmp) = 1;
3547 node = cmp;
3550 return node;
3553 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
3554 location where an expression or an identifier were encountered. It
3555 is necessary for languages where the frontend parser will handle
3556 recursively more than one file (Java is one of them). */
3558 tree
3559 build_expr_wfl (tree node,
3560 #ifdef USE_MAPPED_LOCATION
3561 source_location location
3562 #else
3563 const char *file, int line, int col
3564 #endif
3567 tree wfl;
3569 #ifdef USE_MAPPED_LOCATION
3570 wfl = make_node (EXPR_WITH_FILE_LOCATION);
3571 SET_EXPR_LOCATION (wfl, location);
3572 #else
3573 static const char *last_file = 0;
3574 static tree last_filenode = NULL_TREE;
3576 wfl = make_node (EXPR_WITH_FILE_LOCATION);
3578 EXPR_WFL_SET_LINECOL (wfl, line, col);
3579 if (file != last_file)
3581 last_file = file;
3582 last_filenode = file ? get_identifier (file) : NULL_TREE;
3584 EXPR_WFL_FILENAME_NODE (wfl) = last_filenode;
3585 #endif
3586 EXPR_WFL_NODE (wfl) = node;
3587 if (node)
3589 if (!TYPE_P (node))
3590 TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
3591 TREE_TYPE (wfl) = TREE_TYPE (node);
3594 return wfl;
3597 #ifdef USE_MAPPED_LOCATION
3598 tree
3599 expr_add_location (tree node, source_location location, bool statement)
3601 tree wfl;
3602 #if 0
3603 /* FIXME. This optimization causes failures in code that expects an
3604 EXPR_WITH_FILE_LOCATION. E.g. in resolve_qualified_expression_name. */
3605 if (node && ! (statement && flag_emit_class_files))
3607 source_location node_loc = EXPR_LOCATION (node);
3608 if (node_loc == location || location == UNKNOWN_LOCATION)
3609 return node;
3610 if (node_loc == UNKNOWN_LOCATION
3611 && IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (node))))
3613 SET_EXPR_LOCATION (node, location);
3614 return node;
3617 #endif
3618 wfl = make_node (EXPR_WITH_FILE_LOCATION);
3619 SET_EXPR_LOCATION (wfl, location);
3620 EXPR_WFL_NODE (wfl) = node;
3621 if (statement && debug_info_level != DINFO_LEVEL_NONE)
3622 EXPR_WFL_EMIT_LINE_NOTE (wfl) = 1;
3623 if (node)
3625 if (!TYPE_P (node))
3626 TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
3627 TREE_TYPE (wfl) = TREE_TYPE (node);
3630 return wfl;
3632 #endif
3634 /* Build a node to represent empty statements and blocks. */
3636 tree
3637 build_java_empty_stmt (void)
3639 tree t = build_empty_stmt ();
3640 CAN_COMPLETE_NORMALLY (t) = 1;
3641 return t;
3644 /* Promote all args of integral type before generating any code. */
3646 static void
3647 promote_arguments (void)
3649 int i;
3650 tree arg;
3651 for (arg = DECL_ARGUMENTS (current_function_decl), i = 0;
3652 arg != NULL_TREE; arg = TREE_CHAIN (arg), i++)
3654 tree arg_type = TREE_TYPE (arg);
3655 if (INTEGRAL_TYPE_P (arg_type)
3656 && TYPE_PRECISION (arg_type) < 32)
3658 tree copy = find_local_variable (i, integer_type_node, -1);
3659 java_add_stmt (build2 (MODIFY_EXPR, integer_type_node,
3660 copy,
3661 fold_convert (integer_type_node, arg)));
3663 if (TYPE_IS_WIDE (arg_type))
3664 i++;
3668 #include "gt-java-expr.h"