1 /* Process expressions for the GNU compiler for the Java(TM) language.
2 Copyright (C) 1996-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>.
20 Java and all Java-based marks are trademarks or registered trademarks
21 of Sun Microsystems, Inc. in the United States and other countries.
22 The Free Software Foundation is independent of Sun Microsystems, Inc. */
24 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
28 #include "coretypes.h"
29 #include "tm.h" /* For INT_TYPE_SIZE,
30 TARGET_VTABLE_USES_DESCRIPTORS,
32 MODIFY_JNI_METHOD_CALL and
38 #include "double-int.h"
46 #include "fold-const.h"
47 #include "stringpool.h"
48 #include "stor-layout.h"
50 #include "java-tree.h"
52 #include "java-opcodes.h"
54 #include "java-except.h"
56 #include "diagnostic-core.h"
58 #include "tree-iterator.h"
61 static void flush_quick_stack (void);
62 static void push_value (tree
);
63 static tree
pop_value (tree
);
64 static void java_stack_swap (void);
65 static void java_stack_dup (int, int);
66 static void build_java_athrow (tree
);
67 static void build_java_jsr (int, int);
68 static void build_java_ret (tree
);
69 static void expand_java_multianewarray (tree
, int);
70 static void expand_java_arraystore (tree
);
71 static void expand_java_arrayload (tree
);
72 static void expand_java_array_length (void);
73 static tree
build_java_monitor (tree
, tree
);
74 static void expand_java_pushc (int, tree
);
75 static void expand_java_return (tree
);
76 static void expand_load_internal (int, tree
, int);
77 static void expand_java_NEW (tree
);
78 static void expand_java_INSTANCEOF (tree
);
79 static void expand_java_CHECKCAST (tree
);
80 static void expand_iinc (unsigned int, int, int);
81 static void expand_java_binop (tree
, enum tree_code
);
82 static void note_label (int, int);
83 static void expand_compare (enum tree_code
, tree
, tree
, int);
84 static void expand_test (enum tree_code
, tree
, int);
85 static void expand_cond (enum tree_code
, tree
, int);
86 static void expand_java_goto (int);
87 static tree
expand_java_switch (tree
, int);
88 static void expand_java_add_case (tree
, int, int);
89 static vec
<tree
, va_gc
> *pop_arguments (tree
);
90 static void expand_invoke (int, int, int);
91 static void expand_java_field_op (int, int, int);
92 static void java_push_constant_from_pool (struct JCF
*, int);
93 static void java_stack_pop (int);
94 static tree
build_java_throw_out_of_bounds_exception (tree
);
95 static tree
build_java_check_indexed_type (tree
, tree
);
96 static unsigned char peek_opcode_at_pc (struct JCF
*, int, int);
97 static void promote_arguments (void);
98 static void cache_cpool_data_ref (void);
100 static GTY(()) tree operand_type
[59];
102 static GTY(()) tree methods_ident
;
103 static GTY(()) tree ncode_ident
;
104 tree dtable_ident
= NULL_TREE
;
106 /* Set to nonzero value in order to emit class initialization code
107 before static field references. */
108 int always_initialize_class_p
= 0;
110 /* We store the stack state in two places:
111 Within a basic block, we use the quick_stack, which is a vec of expression
113 This is the top part of the stack; below that we use find_stack_slot.
114 At the end of a basic block, the quick_stack must be flushed
115 to the stack slot array (as handled by find_stack_slot).
116 Using quick_stack generates better code (especially when
117 compiled without optimization), because we do not have to
118 explicitly store and load trees to temporary variables.
120 If a variable is on the quick stack, it means the value of variable
121 when the quick stack was last flushed. Conceptually, flush_quick_stack
122 saves all the quick_stack elements in parallel. However, that is
123 complicated, so it actually saves them (i.e. copies each stack value
124 to is home virtual register) from low indexes. This allows a quick_stack
125 element at index i (counting from the bottom of stack the) to references
126 slot virtuals for register that are >= i, but not those that are deeper.
127 This convention makes most operations easier. For example iadd works
128 even when the stack contains (reg[0], reg[1]): It results in the
129 stack containing (reg[0]+reg[1]), which is OK. However, some stack
130 operations are more complicated. For example dup given a stack
131 containing (reg[0]) would yield (reg[0], reg[0]), which would violate
132 the convention, since stack value 1 would refer to a register with
133 lower index (reg[0]), which flush_quick_stack does not safely handle.
134 So dup cannot just add an extra element to the quick_stack, but iadd can.
137 static GTY(()) vec
<tree
, va_gc
> *quick_stack
;
139 /* The physical memory page size used in this computer. See
140 build_field_ref(). */
141 static GTY(()) tree page_size
;
143 /* The stack pointer of the Java virtual machine.
144 This does include the size of the quick_stack. */
148 const unsigned char *linenumber_table
;
149 int linenumber_count
;
151 /* Largest pc so far in this method that has been passed to lookup_label. */
152 int highest_label_pc_this_method
= -1;
154 /* Base value for this method to add to pc to get generated label. */
155 int start_label_pc_this_method
= 0;
158 init_expr_processing (void)
160 operand_type
[21] = operand_type
[54] = int_type_node
;
161 operand_type
[22] = operand_type
[55] = long_type_node
;
162 operand_type
[23] = operand_type
[56] = float_type_node
;
163 operand_type
[24] = operand_type
[57] = double_type_node
;
164 operand_type
[25] = operand_type
[58] = ptr_type_node
;
168 java_truthvalue_conversion (tree expr
)
170 /* It is simpler and generates better code to have only TRUTH_*_EXPR
171 or comparison expressions as truth values at this level.
173 This function should normally be identity for Java. */
175 switch (TREE_CODE (expr
))
177 case EQ_EXPR
: case NE_EXPR
: case UNEQ_EXPR
: case LTGT_EXPR
:
178 case LE_EXPR
: case GE_EXPR
: case LT_EXPR
: case GT_EXPR
:
179 case UNLE_EXPR
: case UNGE_EXPR
: case UNLT_EXPR
: case UNGT_EXPR
:
180 case ORDERED_EXPR
: case UNORDERED_EXPR
:
181 case TRUTH_ANDIF_EXPR
:
182 case TRUTH_ORIF_EXPR
:
191 return integer_zerop (expr
) ? boolean_false_node
: boolean_true_node
;
194 return real_zerop (expr
) ? boolean_false_node
: boolean_true_node
;
196 /* are these legal? XXX JH */
200 /* These don't change whether an object is nonzero or zero. */
201 return java_truthvalue_conversion (TREE_OPERAND (expr
, 0));
204 /* Distribute the conversion into the arms of a COND_EXPR. */
205 return fold_build3 (COND_EXPR
, boolean_type_node
, TREE_OPERAND (expr
, 0),
206 java_truthvalue_conversion (TREE_OPERAND (expr
, 1)),
207 java_truthvalue_conversion (TREE_OPERAND (expr
, 2)));
210 /* If this is widening the argument, we can ignore it. */
211 if (TYPE_PRECISION (TREE_TYPE (expr
))
212 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
213 return java_truthvalue_conversion (TREE_OPERAND (expr
, 0));
214 /* fall through to default */
217 return fold_build2 (NE_EXPR
, boolean_type_node
,
218 expr
, boolean_false_node
);
222 /* Save any stack slots that happen to be in the quick_stack into their
223 home virtual register slots.
225 The copy order is from low stack index to high, to support the invariant
226 that the expression for a slot may contain decls for stack slots with
227 higher (or the same) index, but not lower. */
230 flush_quick_stack (void)
232 int stack_index
= stack_pointer
;
236 /* Count the number of slots the quick stack is holding. */
237 for (ix
= 0; vec_safe_iterate (quick_stack
, ix
, &t
); ix
++)
238 stack_index
-= 1 + TYPE_IS_WIDE (TREE_TYPE (t
));
240 for (ix
= 0; vec_safe_iterate (quick_stack
, ix
, &t
); ix
++)
242 tree decl
, type
= TREE_TYPE (t
);
244 decl
= find_stack_slot (stack_index
, type
);
246 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (t
), decl
, t
));
247 stack_index
+= 1 + TYPE_IS_WIDE (type
);
250 vec_safe_truncate (quick_stack
, 0);
253 /* Push TYPE on the type stack.
254 Return true on success, 0 on overflow. */
257 push_type_0 (tree type
)
260 type
= promote_type (type
);
261 n_words
= 1 + TYPE_IS_WIDE (type
);
262 if (stack_pointer
+ n_words
> DECL_MAX_STACK (current_function_decl
))
264 /* Allocate decl for this variable now, so we get a temporary that
265 survives the whole method. */
266 find_stack_slot (stack_pointer
, type
);
267 stack_type_map
[stack_pointer
++] = type
;
269 while (--n_words
>= 0)
270 stack_type_map
[stack_pointer
++] = TYPE_SECOND
;
275 push_type (tree type
)
277 int r
= push_type_0 (type
);
282 push_value (tree value
)
284 tree type
= TREE_TYPE (value
);
285 if (TYPE_PRECISION (type
) < 32 && INTEGRAL_TYPE_P (type
))
287 type
= promote_type (type
);
288 value
= convert (type
, value
);
291 vec_safe_push (quick_stack
, value
);
293 /* If the value has a side effect, then we need to evaluate it
294 whether or not the result is used. If the value ends up on the
295 quick stack and is then popped, this won't happen -- so we flush
296 the quick stack. It is safest to simply always flush, though,
297 since TREE_SIDE_EFFECTS doesn't capture COMPONENT_REF, and for
298 the latter we may need to strip conversions. */
299 flush_quick_stack ();
302 /* Pop a type from the type stack.
303 TYPE is the expected type. Return the actual type, which must be
305 On an error, *MESSAGEP is set to a freshly malloc'd error message. */
308 pop_type_0 (tree type
, char **messagep
)
313 if (TREE_CODE (type
) == RECORD_TYPE
)
314 type
= promote_type (type
);
315 n_words
= 1 + TYPE_IS_WIDE (type
);
316 if (stack_pointer
< n_words
)
318 *messagep
= xstrdup ("stack underflow");
321 while (--n_words
> 0)
323 if (stack_type_map
[--stack_pointer
] != void_type_node
)
325 *messagep
= xstrdup ("Invalid multi-word value on type stack");
329 t
= stack_type_map
[--stack_pointer
];
330 if (type
== NULL_TREE
|| t
== type
)
332 if (TREE_CODE (t
) == TREE_LIST
)
336 tree tt
= TREE_PURPOSE (t
);
337 if (! can_widen_reference_to (tt
, type
))
347 if (INTEGRAL_TYPE_P (type
) && INTEGRAL_TYPE_P (t
)
348 && TYPE_PRECISION (type
) <= 32 && TYPE_PRECISION (t
) <= 32)
350 if (TREE_CODE (type
) == POINTER_TYPE
&& TREE_CODE (t
) == POINTER_TYPE
)
352 /* If the expected type we've been passed is object or ptr
353 (i.e. void*), the caller needs to know the real type. */
354 if (type
== ptr_type_node
|| type
== object_ptr_type_node
)
357 /* Since the verifier has already run, we know that any
358 types we see will be compatible. In BC mode, this fact
359 may be checked at runtime, but if that is so then we can
360 assume its truth here as well. So, we always succeed
361 here, with the expected type. */
365 if (! flag_verify_invocations
&& flag_indirect_dispatch
366 && t
== object_ptr_type_node
)
368 if (type
!= ptr_type_node
)
369 warning (0, "need to insert runtime check for %s",
370 xstrdup (lang_printable_name (type
, 0)));
374 /* lang_printable_name uses a static buffer, so we must save the result
375 from calling it the first time. */
378 char *temp
= xstrdup (lang_printable_name (type
, 0));
379 /* If the stack contains a multi-word type, keep popping the stack until
380 the real type is found. */
381 while (t
== void_type_node
)
382 t
= stack_type_map
[--stack_pointer
];
383 *messagep
= concat ("expected type '", temp
,
384 "' but stack contains '", lang_printable_name (t
, 0),
391 /* Pop a type from the type stack.
392 TYPE is the expected type. Return the actual type, which must be
393 convertible to TYPE, otherwise call error. */
398 char *message
= NULL
;
399 type
= pop_type_0 (type
, &message
);
402 error ("%s", message
);
409 /* Return true if two type assertions are equal. */
412 type_assertion_hasher::equal (type_assertion
*k1
, type_assertion
*k2
)
414 return (k1
->assertion_code
== k2
->assertion_code
415 && k1
->op1
== k2
->op1
416 && k1
->op2
== k2
->op2
);
419 /* Hash a type assertion. */
422 type_assertion_hasher::hash (type_assertion
*k_p
)
424 hashval_t hash
= iterative_hash (&k_p
->assertion_code
, sizeof
425 k_p
->assertion_code
, 0);
427 switch (k_p
->assertion_code
)
429 case JV_ASSERT_TYPES_COMPATIBLE
:
430 hash
= iterative_hash (&TYPE_UID (k_p
->op2
), sizeof TYPE_UID (k_p
->op2
),
434 case JV_ASSERT_IS_INSTANTIABLE
:
435 hash
= iterative_hash (&TYPE_UID (k_p
->op1
), sizeof TYPE_UID (k_p
->op1
),
439 case JV_ASSERT_END_OF_TABLE
:
449 /* Add an entry to the type assertion table for the given class.
450 KLASS is the class for which this assertion will be evaluated by the
451 runtime during loading/initialization.
452 ASSERTION_CODE is the 'opcode' or type of this assertion: see java-tree.h.
453 OP1 and OP2 are the operands. The tree type of these arguments may be
454 specific to each assertion_code. */
457 add_type_assertion (tree klass
, int assertion_code
, tree op1
, tree op2
)
459 hash_table
<type_assertion_hasher
> *assertions_htab
;
461 type_assertion
**as_pp
;
463 assertions_htab
= TYPE_ASSERTIONS (klass
);
464 if (assertions_htab
== NULL
)
466 assertions_htab
= hash_table
<type_assertion_hasher
>::create_ggc (7);
467 TYPE_ASSERTIONS (current_class
) = assertions_htab
;
470 as
.assertion_code
= assertion_code
;
474 as_pp
= assertions_htab
->find_slot (&as
, INSERT
);
476 /* Don't add the same assertion twice. */
480 *as_pp
= ggc_alloc
<type_assertion
> ();
485 /* Return 1 if SOURCE_TYPE can be safely widened to TARGET_TYPE.
486 Handles array types and interfaces. */
489 can_widen_reference_to (tree source_type
, tree target_type
)
491 if (source_type
== ptr_type_node
|| target_type
== object_ptr_type_node
)
494 /* Get rid of pointers */
495 if (TREE_CODE (source_type
) == POINTER_TYPE
)
496 source_type
= TREE_TYPE (source_type
);
497 if (TREE_CODE (target_type
) == POINTER_TYPE
)
498 target_type
= TREE_TYPE (target_type
);
500 if (source_type
== target_type
)
503 /* FIXME: This is very pessimistic, in that it checks everything,
504 even if we already know that the types are compatible. If we're
505 to support full Java class loader semantics, we need this.
506 However, we could do something more optimal. */
507 if (! flag_verify_invocations
)
509 add_type_assertion (current_class
, JV_ASSERT_TYPES_COMPATIBLE
,
510 source_type
, target_type
);
513 warning (0, "assert: %s is assign compatible with %s",
514 xstrdup (lang_printable_name (target_type
, 0)),
515 xstrdup (lang_printable_name (source_type
, 0)));
516 /* Punt everything to runtime. */
520 if (TYPE_DUMMY (source_type
) || TYPE_DUMMY (target_type
))
526 if (TYPE_ARRAY_P (source_type
) || TYPE_ARRAY_P (target_type
))
528 HOST_WIDE_INT source_length
, target_length
;
529 if (TYPE_ARRAY_P (source_type
) != TYPE_ARRAY_P (target_type
))
531 /* An array implements Cloneable and Serializable. */
532 tree name
= DECL_NAME (TYPE_NAME (target_type
));
533 return (name
== java_lang_cloneable_identifier_node
534 || name
== java_io_serializable_identifier_node
);
536 target_length
= java_array_type_length (target_type
);
537 if (target_length
>= 0)
539 source_length
= java_array_type_length (source_type
);
540 if (source_length
!= target_length
)
543 source_type
= TYPE_ARRAY_ELEMENT (source_type
);
544 target_type
= TYPE_ARRAY_ELEMENT (target_type
);
545 if (source_type
== target_type
)
547 if (TREE_CODE (source_type
) != POINTER_TYPE
548 || TREE_CODE (target_type
) != POINTER_TYPE
)
550 return can_widen_reference_to (source_type
, target_type
);
554 int source_depth
= class_depth (source_type
);
555 int target_depth
= class_depth (target_type
);
557 if (TYPE_DUMMY (source_type
) || TYPE_DUMMY (target_type
))
560 warning (0, "assert: %s is assign compatible with %s",
561 xstrdup (lang_printable_name (target_type
, 0)),
562 xstrdup (lang_printable_name (source_type
, 0)));
566 /* class_depth can return a negative depth if an error occurred */
567 if (source_depth
< 0 || target_depth
< 0)
570 if (CLASS_INTERFACE (TYPE_NAME (target_type
)))
572 /* target_type is OK if source_type or source_type ancestors
573 implement target_type. We handle multiple sub-interfaces */
574 tree binfo
, base_binfo
;
577 for (binfo
= TYPE_BINFO (source_type
), i
= 0;
578 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
579 if (can_widen_reference_to
580 (BINFO_TYPE (base_binfo
), target_type
))
587 for ( ; source_depth
> target_depth
; source_depth
--)
590 = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (source_type
), 0));
592 return source_type
== target_type
;
598 pop_value (tree type
)
600 type
= pop_type (type
);
601 if (vec_safe_length (quick_stack
) != 0)
602 return quick_stack
->pop ();
604 return find_stack_slot (stack_pointer
, promote_type (type
));
608 /* Pop and discard the top COUNT stack slots. */
611 java_stack_pop (int count
)
617 gcc_assert (stack_pointer
!= 0);
619 type
= stack_type_map
[stack_pointer
- 1];
620 if (type
== TYPE_SECOND
)
623 gcc_assert (stack_pointer
!= 1 && count
> 0);
625 type
= stack_type_map
[stack_pointer
- 2];
632 /* Implement the 'swap' operator (to swap two top stack slots). */
635 java_stack_swap (void)
641 if (stack_pointer
< 2
642 || (type1
= stack_type_map
[stack_pointer
- 1]) == TYPE_SECOND
643 || (type2
= stack_type_map
[stack_pointer
- 2]) == TYPE_SECOND
644 || TYPE_IS_WIDE (type1
) || TYPE_IS_WIDE (type2
))
645 /* Bad stack swap. */
647 /* Bad stack swap. */
649 flush_quick_stack ();
650 decl1
= find_stack_slot (stack_pointer
- 1, type1
);
651 decl2
= find_stack_slot (stack_pointer
- 2, type2
);
652 temp
= build_decl (input_location
, VAR_DECL
, NULL_TREE
, type1
);
653 java_add_local_var (temp
);
654 java_add_stmt (build2 (MODIFY_EXPR
, type1
, temp
, decl1
));
655 java_add_stmt (build2 (MODIFY_EXPR
, type2
,
656 find_stack_slot (stack_pointer
- 1, type2
),
658 java_add_stmt (build2 (MODIFY_EXPR
, type1
,
659 find_stack_slot (stack_pointer
- 2, type1
),
661 stack_type_map
[stack_pointer
- 1] = type2
;
662 stack_type_map
[stack_pointer
- 2] = type1
;
666 java_stack_dup (int size
, int offset
)
668 int low_index
= stack_pointer
- size
- offset
;
671 error ("stack underflow - dup* operation");
673 flush_quick_stack ();
675 stack_pointer
+= size
;
676 dst_index
= stack_pointer
;
678 for (dst_index
= stack_pointer
; --dst_index
>= low_index
; )
681 int src_index
= dst_index
- size
;
682 if (src_index
< low_index
)
683 src_index
= dst_index
+ size
+ offset
;
684 type
= stack_type_map
[src_index
];
685 if (type
== TYPE_SECOND
)
687 /* Dup operation splits 64-bit number. */
688 gcc_assert (src_index
> low_index
);
690 stack_type_map
[dst_index
] = type
;
691 src_index
--; dst_index
--;
692 type
= stack_type_map
[src_index
];
693 gcc_assert (TYPE_IS_WIDE (type
));
696 gcc_assert (! TYPE_IS_WIDE (type
));
698 if (src_index
!= dst_index
)
700 tree src_decl
= find_stack_slot (src_index
, type
);
701 tree dst_decl
= find_stack_slot (dst_index
, type
);
704 (build2 (MODIFY_EXPR
, TREE_TYPE (dst_decl
), dst_decl
, src_decl
));
705 stack_type_map
[dst_index
] = type
;
710 /* Calls _Jv_Throw or _Jv_Sjlj_Throw. Discard the contents of the
714 build_java_athrow (tree node
)
718 call
= build_call_nary (void_type_node
,
719 build_address_of (throw_node
),
721 TREE_SIDE_EFFECTS (call
) = 1;
722 java_add_stmt (call
);
723 java_stack_pop (stack_pointer
);
726 /* Implementation for jsr/ret */
729 build_java_jsr (int target_pc
, int return_pc
)
731 tree where
= lookup_label (target_pc
);
732 tree ret
= lookup_label (return_pc
);
733 tree ret_label
= fold_build1 (ADDR_EXPR
, return_address_type_node
, ret
);
734 push_value (ret_label
);
735 flush_quick_stack ();
736 java_add_stmt (build1 (GOTO_EXPR
, void_type_node
, where
));
738 /* Do not need to emit the label here. We noted the existence of the
739 label as a jump target in note_instructions; we'll emit the label
740 for real at the beginning of the expand_byte_code loop. */
744 build_java_ret (tree location
)
746 java_add_stmt (build1 (GOTO_EXPR
, void_type_node
, location
));
749 /* Implementation of operations on array: new, load, store, length */
752 decode_newarray_type (int atype
)
756 case 4: return boolean_type_node
;
757 case 5: return char_type_node
;
758 case 6: return float_type_node
;
759 case 7: return double_type_node
;
760 case 8: return byte_type_node
;
761 case 9: return short_type_node
;
762 case 10: return int_type_node
;
763 case 11: return long_type_node
;
764 default: return NULL_TREE
;
768 /* Map primitive type to the code used by OPCODE_newarray. */
771 encode_newarray_type (tree type
)
773 if (type
== boolean_type_node
)
775 else if (type
== char_type_node
)
777 else if (type
== float_type_node
)
779 else if (type
== double_type_node
)
781 else if (type
== byte_type_node
)
783 else if (type
== short_type_node
)
785 else if (type
== int_type_node
)
787 else if (type
== long_type_node
)
793 /* Build a call to _Jv_ThrowBadArrayIndex(), the
794 ArrayIndexOfBoundsException exception handler. */
797 build_java_throw_out_of_bounds_exception (tree index
)
801 /* We need to build a COMPOUND_EXPR because _Jv_ThrowBadArrayIndex()
802 has void return type. We cannot just set the type of the CALL_EXPR below
803 to int_type_node because we would lose it during gimplification. */
804 gcc_assert (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (soft_badarrayindex_node
))));
805 node
= build_call_nary (void_type_node
,
806 build_address_of (soft_badarrayindex_node
),
808 TREE_SIDE_EFFECTS (node
) = 1;
810 node
= build2 (COMPOUND_EXPR
, int_type_node
, node
, integer_zero_node
);
811 TREE_SIDE_EFFECTS (node
) = 1; /* Allows expansion within ANDIF */
816 /* Return the length of an array. Doesn't perform any checking on the nature
817 or value of the array NODE. May be used to implement some bytecodes. */
820 build_java_array_length_access (tree node
)
822 tree type
= TREE_TYPE (node
);
823 tree array_type
= TREE_TYPE (type
);
824 HOST_WIDE_INT length
;
826 if (!is_array_type_p (type
))
828 /* With the new verifier, we will see an ordinary pointer type
829 here. In this case, we just use an arbitrary array type. */
830 array_type
= build_java_array_type (object_ptr_type_node
, -1);
831 type
= promote_type (array_type
);
834 length
= java_array_type_length (type
);
836 return build_int_cst (NULL_TREE
, length
);
838 node
= build3 (COMPONENT_REF
, int_type_node
,
839 build_java_indirect_ref (array_type
, node
,
840 flag_check_references
),
841 lookup_field (&array_type
, get_identifier ("length")),
843 IS_ARRAY_LENGTH_ACCESS (node
) = 1;
847 /* Optionally checks a reference against the NULL pointer. ARG1: the
848 expr, ARG2: we should check the reference. Don't generate extra
849 checks if we're not generating code. */
852 java_check_reference (tree expr
, int check
)
854 if (!flag_syntax_only
&& check
)
856 expr
= save_expr (expr
);
857 expr
= build3 (COND_EXPR
, TREE_TYPE (expr
),
858 build2 (EQ_EXPR
, boolean_type_node
,
859 expr
, null_pointer_node
),
860 build_call_nary (void_type_node
,
861 build_address_of (soft_nullpointer_node
),
869 /* Reference an object: just like an INDIRECT_REF, but with checking. */
872 build_java_indirect_ref (tree type
, tree expr
, int check
)
875 t
= java_check_reference (expr
, check
);
876 t
= convert (build_pointer_type (type
), t
);
877 return build1 (INDIRECT_REF
, type
, t
);
880 /* Implement array indexing (either as l-value or r-value).
881 Returns a tree for ARRAY[INDEX], assume TYPE is the element type.
882 Optionally performs bounds checking and/or test to NULL.
883 At this point, ARRAY should have been verified as an array. */
886 build_java_arrayaccess (tree array
, tree type
, tree index
)
888 tree node
, throw_expr
= NULL_TREE
;
891 tree array_type
= TREE_TYPE (TREE_TYPE (array
));
892 tree size_exp
= fold_convert (sizetype
, size_in_bytes (type
));
894 if (!is_array_type_p (TREE_TYPE (array
)))
896 /* With the new verifier, we will see an ordinary pointer type
897 here. In this case, we just use the correct array type. */
898 array_type
= build_java_array_type (type
, -1);
901 if (flag_bounds_check
)
904 * (unsigned jint) INDEX >= (unsigned jint) LEN
905 * && throw ArrayIndexOutOfBoundsException.
906 * Note this is equivalent to and more efficient than:
907 * INDEX < 0 || INDEX >= LEN && throw ... */
909 tree len
= convert (unsigned_int_type_node
,
910 build_java_array_length_access (array
));
911 test
= fold_build2 (GE_EXPR
, boolean_type_node
,
912 convert (unsigned_int_type_node
, index
),
914 if (! integer_zerop (test
))
917 = build2 (TRUTH_ANDIF_EXPR
, int_type_node
, test
,
918 build_java_throw_out_of_bounds_exception (index
));
919 /* allows expansion within COMPOUND */
920 TREE_SIDE_EFFECTS( throw_expr
) = 1;
924 /* If checking bounds, wrap the index expr with a COMPOUND_EXPR in order
925 to have the bounds check evaluated first. */
926 if (throw_expr
!= NULL_TREE
)
927 index
= build2 (COMPOUND_EXPR
, int_type_node
, throw_expr
, index
);
929 data_field
= lookup_field (&array_type
, get_identifier ("data"));
931 ref
= build3 (COMPONENT_REF
, TREE_TYPE (data_field
),
932 build_java_indirect_ref (array_type
, array
,
933 flag_check_references
),
934 data_field
, NULL_TREE
);
936 /* Take the address of the data field and convert it to a pointer to
938 node
= build1 (NOP_EXPR
, build_pointer_type (type
), build_address_of (ref
));
940 /* Multiply the index by the size of an element to obtain a byte
941 offset. Convert the result to a pointer to the element type. */
942 index
= build2 (MULT_EXPR
, sizetype
,
943 fold_convert (sizetype
, index
),
946 /* Sum the byte offset and the address of the data field. */
947 node
= fold_build_pointer_plus (node
, index
);
951 *((&array->data) + index*size_exp)
954 return build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (node
)), node
);
957 /* Generate code to throw an ArrayStoreException if OBJECT is not assignable
958 (at runtime) to an element of ARRAY. A NOP_EXPR is returned if it can
959 determine that no check is required. */
962 build_java_arraystore_check (tree array
, tree object
)
964 tree check
, element_type
, source
;
965 tree array_type_p
= TREE_TYPE (array
);
966 tree object_type
= TYPE_NAME (TREE_TYPE (TREE_TYPE (object
)));
968 if (! flag_verify_invocations
)
970 /* With the new verifier, we don't track precise types. FIXME:
971 performance regression here. */
972 element_type
= TYPE_NAME (object_type_node
);
976 gcc_assert (is_array_type_p (array_type_p
));
978 /* Get the TYPE_DECL for ARRAY's element type. */
980 = TYPE_NAME (TREE_TYPE (TREE_TYPE (TREE_TYPE (array_type_p
))));
983 gcc_assert (TREE_CODE (element_type
) == TYPE_DECL
984 && TREE_CODE (object_type
) == TYPE_DECL
);
986 if (!flag_store_check
)
987 return build1 (NOP_EXPR
, array_type_p
, array
);
989 /* No check is needed if the element type is final. Also check that
990 element_type matches object_type, since in the bytecode
991 compilation case element_type may be the actual element type of
992 the array rather than its declared type. However, if we're doing
993 indirect dispatch, we can't do the `final' optimization. */
994 if (element_type
== object_type
995 && ! flag_indirect_dispatch
996 && CLASS_FINAL (element_type
))
997 return build1 (NOP_EXPR
, array_type_p
, array
);
999 /* OBJECT might be wrapped by a SAVE_EXPR. */
1000 if (TREE_CODE (object
) == SAVE_EXPR
)
1001 source
= TREE_OPERAND (object
, 0);
1005 /* Avoid the check if OBJECT was just loaded from the same array. */
1006 if (TREE_CODE (source
) == ARRAY_REF
)
1009 source
= TREE_OPERAND (source
, 0); /* COMPONENT_REF. */
1010 source
= TREE_OPERAND (source
, 0); /* INDIRECT_REF. */
1011 source
= TREE_OPERAND (source
, 0); /* Source array's DECL or SAVE_EXPR. */
1012 if (TREE_CODE (source
) == SAVE_EXPR
)
1013 source
= TREE_OPERAND (source
, 0);
1016 if (TREE_CODE (target
) == SAVE_EXPR
)
1017 target
= TREE_OPERAND (target
, 0);
1019 if (source
== target
)
1020 return build1 (NOP_EXPR
, array_type_p
, array
);
1023 /* Build an invocation of _Jv_CheckArrayStore */
1024 check
= build_call_nary (void_type_node
,
1025 build_address_of (soft_checkarraystore_node
),
1027 TREE_SIDE_EFFECTS (check
) = 1;
1032 /* Makes sure that INDEXED_TYPE is appropriate. If not, make it from
1033 ARRAY_NODE. This function is used to retrieve something less vague than
1034 a pointer type when indexing the first dimension of something like [[<t>.
1035 May return a corrected type, if necessary, otherwise INDEXED_TYPE is
1036 return unchanged. */
1039 build_java_check_indexed_type (tree array_node ATTRIBUTE_UNUSED
,
1042 /* We used to check to see if ARRAY_NODE really had array type.
1043 However, with the new verifier, this is not necessary, as we know
1044 that the object will be an array of the appropriate type. */
1046 return indexed_type
;
1049 /* newarray triggers a call to _Jv_NewPrimArray. This function should be
1050 called with an integer code (the type of array to create), and the length
1051 of the array to create. */
1054 build_newarray (int atype_value
, tree length
)
1058 tree prim_type
= decode_newarray_type (atype_value
);
1060 = build_java_array_type (prim_type
,
1061 tree_fits_shwi_p (length
)
1062 ? tree_to_shwi (length
) : -1);
1064 /* Pass a reference to the primitive type class and save the runtime
1066 type_arg
= build_class_ref (prim_type
);
1068 return build_call_nary (promote_type (type
),
1069 build_address_of (soft_newarray_node
),
1070 2, type_arg
, length
);
1073 /* Generates anewarray from a given CLASS_TYPE. Gets from the stack the size
1074 of the dimension. */
1077 build_anewarray (tree class_type
, tree length
)
1080 = build_java_array_type (class_type
,
1081 tree_fits_shwi_p (length
)
1082 ? tree_to_shwi (length
) : -1);
1084 return build_call_nary (promote_type (type
),
1085 build_address_of (soft_anewarray_node
),
1088 build_class_ref (class_type
),
1092 /* Return a node the evaluates 'new TYPE[LENGTH]'. */
1095 build_new_array (tree type
, tree length
)
1097 if (JPRIMITIVE_TYPE_P (type
))
1098 return build_newarray (encode_newarray_type (type
), length
);
1100 return build_anewarray (TREE_TYPE (type
), length
);
1103 /* Generates a call to _Jv_NewMultiArray. multianewarray expects a
1104 class pointer, a number of dimensions and the matching number of
1105 dimensions. The argument list is NULL terminated. */
1108 expand_java_multianewarray (tree class_type
, int ndim
)
1111 vec
<tree
, va_gc
> *args
= NULL
;
1113 vec_safe_grow (args
, 3 + ndim
);
1115 (*args
)[0] = build_class_ref (class_type
);
1116 (*args
)[1] = build_int_cst (NULL_TREE
, ndim
);
1118 for(i
= ndim
- 1; i
>= 0; i
-- )
1119 (*args
)[(unsigned)(2 + i
)] = pop_value (int_type_node
);
1121 (*args
)[2 + ndim
] = null_pointer_node
;
1123 push_value (build_call_vec (promote_type (class_type
),
1124 build_address_of (soft_multianewarray_node
),
1128 /* ARRAY[INDEX] <- RHS. build_java_check_indexed_type makes sure that
1129 ARRAY is an array type. May expand some bound checking and NULL
1130 pointer checking. RHS_TYPE_NODE we are going to store. In the case
1131 of the CHAR/BYTE/BOOLEAN SHORT, the type popped of the stack is an
1132 INT. In those cases, we make the conversion.
1134 if ARRAy is a reference type, the assignment is checked at run-time
1135 to make sure that the RHS can be assigned to the array element
1136 type. It is not necessary to generate this code if ARRAY is final. */
1139 expand_java_arraystore (tree rhs_type_node
)
1141 tree rhs_node
= pop_value ((INTEGRAL_TYPE_P (rhs_type_node
)
1142 && TYPE_PRECISION (rhs_type_node
) <= 32) ?
1143 int_type_node
: rhs_type_node
);
1144 tree index
= pop_value (int_type_node
);
1145 tree array_type
, array
, temp
, access
;
1147 /* If we're processing an `aaload' we might as well just pick
1149 if (TREE_CODE (rhs_type_node
) == POINTER_TYPE
)
1151 array_type
= build_java_array_type (object_ptr_type_node
, -1);
1152 rhs_type_node
= object_ptr_type_node
;
1155 array_type
= build_java_array_type (rhs_type_node
, -1);
1157 array
= pop_value (array_type
);
1158 array
= build1 (NOP_EXPR
, promote_type (array_type
), array
);
1160 rhs_type_node
= build_java_check_indexed_type (array
, rhs_type_node
);
1162 flush_quick_stack ();
1164 index
= save_expr (index
);
1165 array
= save_expr (array
);
1167 /* We want to perform the bounds check (done by
1168 build_java_arrayaccess) before the type check (done by
1169 build_java_arraystore_check). So, we call build_java_arrayaccess
1170 -- which returns an ARRAY_REF lvalue -- and we then generate code
1171 to stash the address of that lvalue in a temp. Then we call
1172 build_java_arraystore_check, and finally we generate a
1173 MODIFY_EXPR to set the array element. */
1175 access
= build_java_arrayaccess (array
, rhs_type_node
, index
);
1176 temp
= build_decl (input_location
, VAR_DECL
, NULL_TREE
,
1177 build_pointer_type (TREE_TYPE (access
)));
1178 java_add_local_var (temp
);
1179 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (temp
),
1181 build_fold_addr_expr (access
)));
1183 if (TREE_CODE (rhs_type_node
) == POINTER_TYPE
)
1185 tree check
= build_java_arraystore_check (array
, rhs_node
);
1186 java_add_stmt (check
);
1189 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (access
),
1190 build1 (INDIRECT_REF
, TREE_TYPE (access
), temp
),
1194 /* Expand the evaluation of ARRAY[INDEX]. build_java_check_indexed_type makes
1195 sure that LHS is an array type. May expand some bound checking and NULL
1197 LHS_TYPE_NODE is the type of ARRAY[INDEX]. But in the case of CHAR/BYTE/
1198 BOOLEAN/SHORT, we push a promoted type back to the stack.
1202 expand_java_arrayload (tree lhs_type_node
)
1205 tree index_node
= pop_value (int_type_node
);
1209 /* If we're processing an `aaload' we might as well just pick
1211 if (TREE_CODE (lhs_type_node
) == POINTER_TYPE
)
1213 array_type
= build_java_array_type (object_ptr_type_node
, -1);
1214 lhs_type_node
= object_ptr_type_node
;
1217 array_type
= build_java_array_type (lhs_type_node
, -1);
1218 array_node
= pop_value (array_type
);
1219 array_node
= build1 (NOP_EXPR
, promote_type (array_type
), array_node
);
1221 index_node
= save_expr (index_node
);
1222 array_node
= save_expr (array_node
);
1224 lhs_type_node
= build_java_check_indexed_type (array_node
,
1226 load_node
= build_java_arrayaccess (array_node
,
1229 if (INTEGRAL_TYPE_P (lhs_type_node
) && TYPE_PRECISION (lhs_type_node
) <= 32)
1230 load_node
= fold_build1 (NOP_EXPR
, int_type_node
, load_node
);
1231 push_value (load_node
);
1234 /* Expands .length. Makes sure that we deal with and array and may expand
1235 a NULL check on the array object. */
1238 expand_java_array_length (void)
1240 tree array
= pop_value (ptr_type_node
);
1241 tree length
= build_java_array_length_access (array
);
1243 push_value (length
);
1246 /* Emit code for the call to _Jv_Monitor{Enter,Exit}. CALL can be
1247 either soft_monitorenter_node or soft_monitorexit_node. */
1250 build_java_monitor (tree call
, tree object
)
1252 return build_call_nary (void_type_node
,
1253 build_address_of (call
),
1257 /* Emit code for one of the PUSHC instructions. */
1260 expand_java_pushc (int ival
, tree type
)
1263 if (type
== ptr_type_node
&& ival
== 0)
1264 value
= null_pointer_node
;
1265 else if (type
== int_type_node
|| type
== long_type_node
)
1266 value
= build_int_cst (type
, ival
);
1267 else if (type
== float_type_node
|| type
== double_type_node
)
1270 real_from_integer (&x
, TYPE_MODE (type
), ival
, SIGNED
);
1271 value
= build_real (type
, x
);
1280 expand_java_return (tree type
)
1282 if (type
== void_type_node
)
1283 java_add_stmt (build1 (RETURN_EXPR
, void_type_node
, NULL
));
1286 tree retval
= pop_value (type
);
1287 tree res
= DECL_RESULT (current_function_decl
);
1288 retval
= build2 (MODIFY_EXPR
, TREE_TYPE (res
), res
, retval
);
1290 /* Handle the situation where the native integer type is smaller
1291 than the JVM integer. It can happen for many cross compilers.
1292 The whole if expression just goes away if INT_TYPE_SIZE < 32
1294 if (INT_TYPE_SIZE
< 32
1295 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (res
)))
1296 < GET_MODE_SIZE (TYPE_MODE (type
))))
1297 retval
= build1(NOP_EXPR
, TREE_TYPE(res
), retval
);
1299 TREE_SIDE_EFFECTS (retval
) = 1;
1300 java_add_stmt (build1 (RETURN_EXPR
, void_type_node
, retval
));
1305 expand_load_internal (int index
, tree type
, int pc
)
1308 tree var
= find_local_variable (index
, type
, pc
);
1310 /* Now VAR is the VAR_DECL (or PARM_DECL) that we are going to push
1311 on the stack. If there is an assignment to this VAR_DECL between
1312 the stack push and the use, then the wrong code could be
1313 generated. To avoid this we create a new local and copy our
1314 value into it. Then we push this new local on the stack.
1315 Hopefully this all gets optimized out. */
1316 copy
= build_decl (input_location
, VAR_DECL
, NULL_TREE
, type
);
1317 if ((INTEGRAL_TYPE_P (type
) || POINTER_TYPE_P (type
))
1318 && TREE_TYPE (copy
) != TREE_TYPE (var
))
1319 var
= convert (type
, var
);
1320 java_add_local_var (copy
);
1321 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (var
), copy
, var
));
1327 build_address_of (tree value
)
1329 return build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (value
)), value
);
1333 class_has_finalize_method (tree type
)
1335 tree super
= CLASSTYPE_SUPER (type
);
1337 if (super
== NULL_TREE
)
1338 return false; /* Every class with a real finalizer inherits */
1339 /* from java.lang.Object. */
1341 return HAS_FINALIZER_P (type
) || class_has_finalize_method (super
);
1345 java_create_object (tree type
)
1347 tree alloc_node
= (class_has_finalize_method (type
)
1349 : alloc_no_finalizer_node
);
1351 return build_call_nary (promote_type (type
),
1352 build_address_of (alloc_node
),
1353 1, build_class_ref (type
));
1357 expand_java_NEW (tree type
)
1361 alloc_node
= (class_has_finalize_method (type
) ? alloc_object_node
1362 : alloc_no_finalizer_node
);
1363 if (! CLASS_LOADED_P (type
))
1364 load_class (type
, 1);
1365 safe_layout_class (type
);
1366 push_value (build_call_nary (promote_type (type
),
1367 build_address_of (alloc_node
),
1368 1, build_class_ref (type
)));
1371 /* This returns an expression which will extract the class of an
1375 build_get_class (tree value
)
1377 tree class_field
= lookup_field (&dtable_type
, get_identifier ("class"));
1378 tree vtable_field
= lookup_field (&object_type_node
,
1379 get_identifier ("vtable"));
1380 tree tmp
= build3 (COMPONENT_REF
, dtable_ptr_type
,
1381 build_java_indirect_ref (object_type_node
, value
,
1382 flag_check_references
),
1383 vtable_field
, NULL_TREE
);
1384 return build3 (COMPONENT_REF
, class_ptr_type
,
1385 build1 (INDIRECT_REF
, dtable_type
, tmp
),
1386 class_field
, NULL_TREE
);
1389 /* This builds the tree representation of the `instanceof' operator.
1390 It tries various tricks to optimize this in cases where types are
1394 build_instanceof (tree value
, tree type
)
1397 tree itype
= TREE_TYPE (TREE_TYPE (soft_instanceof_node
));
1398 tree valtype
= TREE_TYPE (TREE_TYPE (value
));
1399 tree valclass
= TYPE_NAME (valtype
);
1402 /* When compiling from bytecode, we need to ensure that TYPE has
1404 if (CLASS_P (type
) && ! CLASS_LOADED_P (type
))
1406 load_class (type
, 1);
1407 safe_layout_class (type
);
1408 if (! TYPE_SIZE (type
) || TREE_CODE (TYPE_SIZE (type
)) == ERROR_MARK
)
1409 return error_mark_node
;
1411 klass
= TYPE_NAME (type
);
1413 if (type
== object_type_node
|| inherits_from_p (valtype
, type
))
1415 /* Anything except `null' is an instance of Object. Likewise,
1416 if the object is known to be an instance of the class, then
1417 we only need to check for `null'. */
1418 expr
= build2 (NE_EXPR
, itype
, value
, null_pointer_node
);
1420 else if (flag_verify_invocations
1421 && ! TYPE_ARRAY_P (type
)
1422 && ! TYPE_ARRAY_P (valtype
)
1423 && DECL_P (klass
) && DECL_P (valclass
)
1424 && ! CLASS_INTERFACE (valclass
)
1425 && ! CLASS_INTERFACE (klass
)
1426 && ! inherits_from_p (type
, valtype
)
1427 && (CLASS_FINAL (klass
)
1428 || ! inherits_from_p (valtype
, type
)))
1430 /* The classes are from different branches of the derivation
1431 tree, so we immediately know the answer. */
1432 expr
= boolean_false_node
;
1434 else if (DECL_P (klass
) && CLASS_FINAL (klass
))
1436 tree save
= save_expr (value
);
1437 expr
= build3 (COND_EXPR
, itype
,
1438 build2 (NE_EXPR
, boolean_type_node
,
1439 save
, null_pointer_node
),
1440 build2 (EQ_EXPR
, itype
,
1441 build_get_class (save
),
1442 build_class_ref (type
)),
1443 boolean_false_node
);
1447 expr
= build_call_nary (itype
,
1448 build_address_of (soft_instanceof_node
),
1449 2, value
, build_class_ref (type
));
1451 TREE_SIDE_EFFECTS (expr
) = TREE_SIDE_EFFECTS (value
);
1456 expand_java_INSTANCEOF (tree type
)
1458 tree value
= pop_value (object_ptr_type_node
);
1459 value
= build_instanceof (value
, type
);
1464 expand_java_CHECKCAST (tree type
)
1466 tree value
= pop_value (ptr_type_node
);
1467 value
= build_call_nary (promote_type (type
),
1468 build_address_of (soft_checkcast_node
),
1469 2, build_class_ref (type
), value
);
1474 expand_iinc (unsigned int local_var_index
, int ival
, int pc
)
1476 tree local_var
, res
;
1477 tree constant_value
;
1479 flush_quick_stack ();
1480 local_var
= find_local_variable (local_var_index
, int_type_node
, pc
);
1481 constant_value
= build_int_cst (NULL_TREE
, ival
);
1482 res
= fold_build2 (PLUS_EXPR
, int_type_node
, local_var
, constant_value
);
1483 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (local_var
), local_var
, res
));
1488 build_java_soft_divmod (enum tree_code op
, tree type
, tree op1
, tree op2
)
1491 tree arg1
= convert (type
, op1
);
1492 tree arg2
= convert (type
, op2
);
1494 if (type
== int_type_node
)
1498 case TRUNC_DIV_EXPR
:
1499 call
= soft_idiv_node
;
1501 case TRUNC_MOD_EXPR
:
1502 call
= soft_irem_node
;
1508 else if (type
== long_type_node
)
1512 case TRUNC_DIV_EXPR
:
1513 call
= soft_ldiv_node
;
1515 case TRUNC_MOD_EXPR
:
1516 call
= soft_lrem_node
;
1524 call
= build_call_nary (type
, build_address_of (call
), 2, arg1
, arg2
);
1529 build_java_binop (enum tree_code op
, tree type
, tree arg1
, tree arg2
)
1536 tree u_type
= unsigned_type_for (type
);
1537 arg1
= convert (u_type
, arg1
);
1538 arg1
= build_java_binop (RSHIFT_EXPR
, u_type
, arg1
, arg2
);
1539 return convert (type
, arg1
);
1543 mask
= build_int_cst (int_type_node
,
1544 TYPE_PRECISION (TREE_TYPE (arg1
)) - 1);
1545 arg2
= fold_build2 (BIT_AND_EXPR
, int_type_node
, arg2
, mask
);
1548 case COMPARE_L_EXPR
: /* arg1 > arg2 ? 1 : arg1 == arg2 ? 0 : -1 */
1549 case COMPARE_G_EXPR
: /* arg1 < arg2 ? -1 : arg1 == arg2 ? 0 : 1 */
1550 arg1
= save_expr (arg1
); arg2
= save_expr (arg2
);
1552 tree ifexp1
= fold_build2 (op
== COMPARE_L_EXPR
? GT_EXPR
: LT_EXPR
,
1553 boolean_type_node
, arg1
, arg2
);
1554 tree ifexp2
= fold_build2 (EQ_EXPR
, boolean_type_node
, arg1
, arg2
);
1555 tree second_compare
= fold_build3 (COND_EXPR
, int_type_node
,
1556 ifexp2
, integer_zero_node
,
1557 op
== COMPARE_L_EXPR
1558 ? integer_minus_one_node
1559 : integer_one_node
);
1560 return fold_build3 (COND_EXPR
, int_type_node
, ifexp1
,
1561 op
== COMPARE_L_EXPR
? integer_one_node
1562 : integer_minus_one_node
,
1566 arg1
= save_expr (arg1
); arg2
= save_expr (arg2
);
1568 tree ifexp1
= fold_build2 (LT_EXPR
, boolean_type_node
, arg1
, arg2
);
1569 tree ifexp2
= fold_build2 (GT_EXPR
, boolean_type_node
, arg1
, arg2
);
1570 tree second_compare
= fold_build3 (COND_EXPR
, int_type_node
,
1571 ifexp2
, integer_one_node
,
1573 return fold_build3 (COND_EXPR
, int_type_node
,
1574 ifexp1
, integer_minus_one_node
, second_compare
);
1576 case TRUNC_DIV_EXPR
:
1577 case TRUNC_MOD_EXPR
:
1578 if (TREE_CODE (type
) == REAL_TYPE
1579 && op
== TRUNC_MOD_EXPR
)
1582 if (type
!= double_type_node
)
1584 arg1
= convert (double_type_node
, arg1
);
1585 arg2
= convert (double_type_node
, arg2
);
1587 call
= build_call_nary (double_type_node
,
1588 build_address_of (soft_fmod_node
),
1590 if (type
!= double_type_node
)
1591 call
= convert (type
, call
);
1595 if (TREE_CODE (type
) == INTEGER_TYPE
1596 && flag_use_divide_subroutine
1597 && ! flag_syntax_only
)
1598 return build_java_soft_divmod (op
, type
, arg1
, arg2
);
1603 return fold_build2 (op
, type
, arg1
, arg2
);
1607 expand_java_binop (tree type
, enum tree_code op
)
1617 rtype
= int_type_node
;
1618 rarg
= pop_value (rtype
);
1621 rarg
= pop_value (rtype
);
1623 larg
= pop_value (ltype
);
1624 push_value (build_java_binop (op
, type
, larg
, rarg
));
1627 /* Lookup the field named NAME in *TYPEP or its super classes.
1628 If not found, return NULL_TREE.
1629 (If the *TYPEP is not found, or if the field reference is
1630 ambiguous, return error_mark_node.)
1631 If found, return the FIELD_DECL, and set *TYPEP to the
1632 class containing the field. */
1635 lookup_field (tree
*typep
, tree name
)
1637 if (CLASS_P (*typep
) && !CLASS_LOADED_P (*typep
))
1639 load_class (*typep
, 1);
1640 safe_layout_class (*typep
);
1641 if (!TYPE_SIZE (*typep
) || TREE_CODE (TYPE_SIZE (*typep
)) == ERROR_MARK
)
1642 return error_mark_node
;
1646 tree field
, binfo
, base_binfo
;
1650 for (field
= TYPE_FIELDS (*typep
); field
; field
= DECL_CHAIN (field
))
1651 if (DECL_NAME (field
) == name
)
1654 /* Process implemented interfaces. */
1655 save_field
= NULL_TREE
;
1656 for (binfo
= TYPE_BINFO (*typep
), i
= 0;
1657 BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
1659 tree t
= BINFO_TYPE (base_binfo
);
1660 if ((field
= lookup_field (&t
, name
)))
1662 if (save_field
== field
)
1664 if (save_field
== NULL_TREE
)
1668 tree i1
= DECL_CONTEXT (save_field
);
1669 tree i2
= DECL_CONTEXT (field
);
1670 error ("reference %qs is ambiguous: appears in interface %qs and interface %qs",
1671 IDENTIFIER_POINTER (name
),
1672 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i1
))),
1673 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (i2
))));
1674 return error_mark_node
;
1679 if (save_field
!= NULL_TREE
)
1682 *typep
= CLASSTYPE_SUPER (*typep
);
1687 /* Look up the field named NAME in object SELF_VALUE,
1688 which has class SELF_CLASS (a non-handle RECORD_TYPE).
1689 SELF_VALUE is NULL_TREE if looking for a static field. */
1692 build_field_ref (tree self_value
, tree self_class
, tree name
)
1694 tree base_class
= self_class
;
1695 tree field_decl
= lookup_field (&base_class
, name
);
1696 if (field_decl
== NULL_TREE
)
1698 error ("field %qs not found", IDENTIFIER_POINTER (name
));
1699 return error_mark_node
;
1701 if (self_value
== NULL_TREE
)
1703 return build_static_field_ref (field_decl
);
1707 tree base_type
= promote_type (base_class
);
1709 /* CHECK is true if self_value is not the this pointer. */
1710 int check
= (! (DECL_P (self_value
)
1711 && DECL_NAME (self_value
) == this_identifier_node
));
1713 /* Determine whether a field offset from NULL will lie within
1714 Page 0: this is necessary on those GNU/Linux/BSD systems that
1715 trap SEGV to generate NullPointerExceptions.
1717 We assume that Page 0 will be mapped with NOPERM, and that
1718 memory may be allocated from any other page, so only field
1719 offsets < pagesize are guaranteed to trap. We also assume
1720 the smallest page size we'll encounter is 4k bytes. */
1721 if (! flag_syntax_only
&& check
&& ! flag_check_references
1722 && ! flag_indirect_dispatch
)
1724 tree field_offset
= byte_position (field_decl
);
1726 page_size
= size_int (4096);
1727 check
= !tree_int_cst_lt (field_offset
, page_size
);
1730 if (base_type
!= TREE_TYPE (self_value
))
1731 self_value
= fold_build1 (NOP_EXPR
, base_type
, self_value
);
1732 if (! flag_syntax_only
&& flag_indirect_dispatch
)
1735 = build_int_cst (NULL_TREE
, get_symbol_table_index
1736 (field_decl
, NULL_TREE
,
1737 &TYPE_OTABLE_METHODS (output_class
)));
1739 = build4 (ARRAY_REF
, integer_type_node
,
1740 TYPE_OTABLE_DECL (output_class
), otable_index
,
1741 NULL_TREE
, NULL_TREE
);
1744 if (DECL_CONTEXT (field_decl
) != output_class
)
1746 = build3 (COND_EXPR
, TREE_TYPE (field_offset
),
1747 build2 (EQ_EXPR
, boolean_type_node
,
1748 field_offset
, integer_zero_node
),
1749 build_call_nary (void_type_node
,
1750 build_address_of (soft_nosuchfield_node
),
1754 self_value
= java_check_reference (self_value
, check
);
1755 address
= fold_build_pointer_plus (self_value
, field_offset
);
1756 address
= fold_convert (build_pointer_type (TREE_TYPE (field_decl
)),
1758 return fold_build1 (INDIRECT_REF
, TREE_TYPE (field_decl
), address
);
1761 self_value
= build_java_indirect_ref (TREE_TYPE (TREE_TYPE (self_value
)),
1763 return fold_build3 (COMPONENT_REF
, TREE_TYPE (field_decl
),
1764 self_value
, field_decl
, NULL_TREE
);
1769 lookup_label (int pc
)
1773 if (pc
> highest_label_pc_this_method
)
1774 highest_label_pc_this_method
= pc
;
1775 targetm
.asm_out
.generate_internal_label (buf
, "LJpc=",
1776 start_label_pc_this_method
+ pc
);
1777 name
= get_identifier (buf
);
1778 if (IDENTIFIER_LOCAL_VALUE (name
))
1779 return IDENTIFIER_LOCAL_VALUE (name
);
1782 /* The type of the address of a label is return_address_type_node. */
1783 tree decl
= create_label_decl (name
);
1784 return pushdecl (decl
);
1788 /* Generate a unique name for the purpose of loops and switches
1789 labels, and try-catch-finally blocks label or temporary variables. */
1792 generate_name (void)
1794 static int l_number
= 0;
1796 targetm
.asm_out
.generate_internal_label (buff
, "LJv", l_number
);
1798 return get_identifier (buff
);
1802 create_label_decl (tree name
)
1805 decl
= build_decl (input_location
, LABEL_DECL
, name
,
1806 TREE_TYPE (return_address_type_node
));
1807 DECL_CONTEXT (decl
) = current_function_decl
;
1808 DECL_IGNORED_P (decl
) = 1;
1812 /* This maps a bytecode offset (PC) to various flags. */
1813 char *instruction_bits
;
1815 /* This is a vector of type states for the current method. It is
1816 indexed by PC. Each element is a tree vector holding the type
1817 state at that PC. We only note type states at basic block
1819 vec
<tree
, va_gc
> *type_states
;
1822 note_label (int current_pc ATTRIBUTE_UNUSED
, int target_pc
)
1824 lookup_label (target_pc
);
1825 instruction_bits
[target_pc
] |= BCODE_JUMP_TARGET
;
1828 /* Emit code to jump to TARGET_PC if VALUE1 CONDITION VALUE2,
1829 where CONDITION is one of one the compare operators. */
1832 expand_compare (enum tree_code condition
, tree value1
, tree value2
,
1835 tree target
= lookup_label (target_pc
);
1836 tree cond
= fold_build2 (condition
, boolean_type_node
, value1
, value2
);
1838 (build3 (COND_EXPR
, void_type_node
, java_truthvalue_conversion (cond
),
1839 build1 (GOTO_EXPR
, void_type_node
, target
),
1840 build_java_empty_stmt ()));
1843 /* Emit code for a TEST-type opcode. */
1846 expand_test (enum tree_code condition
, tree type
, int target_pc
)
1848 tree value1
, value2
;
1849 flush_quick_stack ();
1850 value1
= pop_value (type
);
1851 value2
= (type
== ptr_type_node
) ? null_pointer_node
: integer_zero_node
;
1852 expand_compare (condition
, value1
, value2
, target_pc
);
1855 /* Emit code for a COND-type opcode. */
1858 expand_cond (enum tree_code condition
, tree type
, int target_pc
)
1860 tree value1
, value2
;
1861 flush_quick_stack ();
1862 /* note: pop values in opposite order */
1863 value2
= pop_value (type
);
1864 value1
= pop_value (type
);
1865 /* Maybe should check value1 and value2 for type compatibility ??? */
1866 expand_compare (condition
, value1
, value2
, target_pc
);
1870 expand_java_goto (int target_pc
)
1872 tree target_label
= lookup_label (target_pc
);
1873 flush_quick_stack ();
1874 java_add_stmt (build1 (GOTO_EXPR
, void_type_node
, target_label
));
1878 expand_java_switch (tree selector
, int default_pc
)
1880 tree switch_expr
, x
;
1882 flush_quick_stack ();
1883 switch_expr
= build3 (SWITCH_EXPR
, TREE_TYPE (selector
), selector
,
1884 NULL_TREE
, NULL_TREE
);
1885 java_add_stmt (switch_expr
);
1887 x
= build_case_label (NULL_TREE
, NULL_TREE
,
1888 create_artificial_label (input_location
));
1889 append_to_statement_list (x
, &SWITCH_BODY (switch_expr
));
1891 x
= build1 (GOTO_EXPR
, void_type_node
, lookup_label (default_pc
));
1892 append_to_statement_list (x
, &SWITCH_BODY (switch_expr
));
1898 expand_java_add_case (tree switch_expr
, int match
, int target_pc
)
1902 value
= build_int_cst (TREE_TYPE (switch_expr
), match
);
1904 x
= build_case_label (value
, NULL_TREE
,
1905 create_artificial_label (input_location
));
1906 append_to_statement_list (x
, &SWITCH_BODY (switch_expr
));
1908 x
= build1 (GOTO_EXPR
, void_type_node
, lookup_label (target_pc
));
1909 append_to_statement_list (x
, &SWITCH_BODY (switch_expr
));
1912 static vec
<tree
, va_gc
> *
1913 pop_arguments (tree method_type
)
1915 function_args_iterator fnai
;
1917 vec
<tree
, va_gc
> *args
= NULL
;
1920 FOREACH_FUNCTION_ARGS (method_type
, type
, fnai
)
1922 /* XXX: leaky abstraction. */
1923 if (type
== void_type_node
)
1926 vec_safe_push (args
, type
);
1929 arity
= vec_safe_length (args
);
1933 tree arg
= pop_value ((*args
)[arity
]);
1935 /* We simply cast each argument to its proper type. This is
1936 needed since we lose type information coming out of the
1937 verifier. We also have to do this when we pop an integer
1938 type that must be promoted for the function call. */
1939 if (TREE_CODE (type
) == POINTER_TYPE
)
1940 arg
= build1 (NOP_EXPR
, type
, arg
);
1941 else if (targetm
.calls
.promote_prototypes (type
)
1942 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)
1943 && INTEGRAL_TYPE_P (type
))
1944 arg
= convert (integer_type_node
, arg
);
1946 (*args
)[arity
] = arg
;
1952 /* Attach to PTR (a block) the declaration found in ENTRY. */
1955 attach_init_test_initialization_flags (treetreehash_entry
**slot
, tree block
)
1957 treetreehash_entry
*ite
= *slot
;
1959 if (block
!= error_mark_node
)
1961 if (TREE_CODE (block
) == BIND_EXPR
)
1963 tree body
= BIND_EXPR_BODY (block
);
1964 DECL_CHAIN (ite
->value
) = BIND_EXPR_VARS (block
);
1965 BIND_EXPR_VARS (block
) = ite
->value
;
1966 body
= build2 (COMPOUND_EXPR
, void_type_node
,
1967 build1 (DECL_EXPR
, void_type_node
, ite
->value
), body
);
1968 BIND_EXPR_BODY (block
) = body
;
1972 tree body
= BLOCK_SUBBLOCKS (block
);
1973 TREE_CHAIN (ite
->value
) = BLOCK_EXPR_DECLS (block
);
1974 BLOCK_EXPR_DECLS (block
) = ite
->value
;
1975 body
= build2 (COMPOUND_EXPR
, void_type_node
,
1976 build1 (DECL_EXPR
, void_type_node
, ite
->value
), body
);
1977 BLOCK_SUBBLOCKS (block
) = body
;
1984 /* Build an expression to initialize the class CLAS.
1985 if EXPR is non-NULL, returns an expression to first call the initializer
1986 (if it is needed) and then calls EXPR. */
1989 build_class_init (tree clas
, tree expr
)
1993 /* An optimization: if CLAS is a superclass of the class we're
1994 compiling, we don't need to initialize it. However, if CLAS is
1995 an interface, it won't necessarily be initialized, even if we
1997 if ((! CLASS_INTERFACE (TYPE_NAME (clas
))
1998 && inherits_from_p (current_class
, clas
))
1999 || current_class
== clas
)
2002 if (always_initialize_class_p
)
2004 init
= build_call_nary (void_type_node
,
2005 build_address_of (soft_initclass_node
),
2006 1, build_class_ref (clas
));
2007 TREE_SIDE_EFFECTS (init
) = 1;
2011 tree
*init_test_decl
;
2013 init_test_decl
= java_treetreehash_new
2014 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl
), clas
);
2016 if (*init_test_decl
== NULL
)
2018 /* Build a declaration and mark it as a flag used to track
2019 static class initializations. */
2020 decl
= build_decl (input_location
, VAR_DECL
, NULL_TREE
,
2022 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl
);
2023 DECL_CONTEXT (decl
) = current_function_decl
;
2024 DECL_INITIAL (decl
) = boolean_false_node
;
2025 /* Don't emit any symbolic debugging info for this decl. */
2026 DECL_IGNORED_P (decl
) = 1;
2027 *init_test_decl
= decl
;
2030 init
= build_call_nary (void_type_node
,
2031 build_address_of (soft_initclass_node
),
2032 1, build_class_ref (clas
));
2033 TREE_SIDE_EFFECTS (init
) = 1;
2034 init
= build3 (COND_EXPR
, void_type_node
,
2035 build2 (EQ_EXPR
, boolean_type_node
,
2036 *init_test_decl
, boolean_false_node
),
2037 init
, integer_zero_node
);
2038 TREE_SIDE_EFFECTS (init
) = 1;
2039 init
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr
), init
,
2040 build2 (MODIFY_EXPR
, boolean_type_node
,
2041 *init_test_decl
, boolean_true_node
));
2042 TREE_SIDE_EFFECTS (init
) = 1;
2045 if (expr
!= NULL_TREE
)
2047 expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr
), init
, expr
);
2048 TREE_SIDE_EFFECTS (expr
) = 1;
2056 /* Rewrite expensive calls that require stack unwinding at runtime to
2057 cheaper alternatives. The logic here performs these
2060 java.lang.Class.forName("foo") -> java.lang.Class.forName("foo", class$)
2061 java.lang.Class.getClassLoader() -> java.lang.Class.getClassLoader(class$)
2067 const char *classname
;
2069 const char *signature
;
2070 const char *new_classname
;
2071 const char *new_signature
;
2073 void (*rewrite_arglist
) (vec
<tree
, va_gc
> **);
2076 /* Add __builtin_return_address(0) to the end of an arglist. */
2080 rewrite_arglist_getcaller (vec
<tree
, va_gc
> **arglist
)
2083 = build_call_expr (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
),
2084 1, integer_zero_node
);
2086 DECL_UNINLINABLE (current_function_decl
) = 1;
2088 vec_safe_push (*arglist
, retaddr
);
2091 /* Add this.class to the end of an arglist. */
2094 rewrite_arglist_getclass (vec
<tree
, va_gc
> **arglist
)
2096 vec_safe_push (*arglist
, build_class_ref (output_class
));
2099 static rewrite_rule rules
[] =
2100 {{"java.lang.Class", "getClassLoader", "()Ljava/lang/ClassLoader;",
2101 "java.lang.Class", "(Ljava/lang/Class;)Ljava/lang/ClassLoader;",
2102 ACC_FINAL
|ACC_PRIVATE
, rewrite_arglist_getclass
},
2104 {"java.lang.Class", "forName", "(Ljava/lang/String;)Ljava/lang/Class;",
2105 "java.lang.Class", "(Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Class;",
2106 ACC_FINAL
|ACC_PRIVATE
|ACC_STATIC
, rewrite_arglist_getclass
},
2108 {"gnu.classpath.VMStackWalker", "getCallingClass", "()Ljava/lang/Class;",
2109 "gnu.classpath.VMStackWalker", "(Lgnu/gcj/RawData;)Ljava/lang/Class;",
2110 ACC_FINAL
|ACC_PRIVATE
|ACC_STATIC
, rewrite_arglist_getcaller
},
2112 {"gnu.classpath.VMStackWalker", "getCallingClassLoader",
2113 "()Ljava/lang/ClassLoader;",
2114 "gnu.classpath.VMStackWalker", "(Lgnu/gcj/RawData;)Ljava/lang/ClassLoader;",
2115 ACC_FINAL
|ACC_PRIVATE
|ACC_STATIC
, rewrite_arglist_getcaller
},
2117 {"gnu.java.lang.VMCPStringBuilder", "toString", "([CII)Ljava/lang/String;",
2118 "java.lang.String", "([CII)Ljava/lang/String;",
2119 ACC_FINAL
|ACC_PRIVATE
|ACC_STATIC
, NULL
},
2121 {NULL
, NULL
, NULL
, NULL
, NULL
, 0, NULL
}};
2123 /* True if this method is special, i.e. it's a private method that
2124 should be exported from a DSO. */
2127 special_method_p (tree candidate_method
)
2129 tree context
= DECL_NAME (TYPE_NAME (DECL_CONTEXT (candidate_method
)));
2130 tree method
= DECL_NAME (candidate_method
);
2133 for (p
= rules
; p
->classname
; p
++)
2135 if (get_identifier (p
->classname
) == context
2136 && get_identifier (p
->method
) == method
)
2142 /* Scan the rules list for replacements for *METHOD_P and replace the
2143 args accordingly. If the rewrite results in an access to a private
2144 method, update SPECIAL.*/
2147 maybe_rewrite_invocation (tree
*method_p
, vec
<tree
, va_gc
> **arg_list_p
,
2148 tree
*method_signature_p
, tree
*special
)
2150 tree context
= DECL_NAME (TYPE_NAME (DECL_CONTEXT (*method_p
)));
2152 *special
= NULL_TREE
;
2154 for (p
= rules
; p
->classname
; p
++)
2156 if (get_identifier (p
->classname
) == context
)
2158 tree method
= DECL_NAME (*method_p
);
2159 if (get_identifier (p
->method
) == method
2160 && get_identifier (p
->signature
) == *method_signature_p
)
2163 tree destination_class
2164 = lookup_class (get_identifier (p
->new_classname
));
2165 gcc_assert (destination_class
);
2167 = lookup_java_method (destination_class
,
2169 get_identifier (p
->new_signature
));
2170 if (! maybe_method
&& ! flag_verify_invocations
)
2173 = add_method (destination_class
, p
->flags
,
2174 method
, get_identifier (p
->new_signature
));
2175 DECL_EXTERNAL (maybe_method
) = 1;
2177 *method_p
= maybe_method
;
2178 gcc_assert (*method_p
);
2179 if (p
->rewrite_arglist
)
2180 p
->rewrite_arglist (arg_list_p
);
2181 *method_signature_p
= get_identifier (p
->new_signature
);
2182 *special
= integer_one_node
;
2193 build_known_method_ref (tree method
, tree method_type ATTRIBUTE_UNUSED
,
2194 tree self_type
, tree method_signature ATTRIBUTE_UNUSED
,
2195 vec
<tree
, va_gc
> *arg_list ATTRIBUTE_UNUSED
, tree special
)
2198 if (is_compiled_class (self_type
))
2200 /* With indirect dispatch we have to use indirect calls for all
2201 publicly visible methods or gcc will use PLT indirections
2202 to reach them. We also have to use indirect dispatch for all
2203 external methods. */
2204 if (! flag_indirect_dispatch
2205 || (! DECL_EXTERNAL (method
) && ! TREE_PUBLIC (method
)))
2207 func
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (method
)),
2213 = build_int_cst (NULL_TREE
,
2214 (get_symbol_table_index
2216 &TYPE_ATABLE_METHODS (output_class
))));
2218 = build4 (ARRAY_REF
,
2219 TREE_TYPE (TREE_TYPE (TYPE_ATABLE_DECL (output_class
))),
2220 TYPE_ATABLE_DECL (output_class
), table_index
,
2221 NULL_TREE
, NULL_TREE
);
2223 func
= convert (method_ptr_type_node
, func
);
2227 /* We don't know whether the method has been (statically) compiled.
2228 Compile this code to get a reference to the method's code:
2230 SELF_TYPE->methods[METHOD_INDEX].ncode
2234 int method_index
= 0;
2237 /* The method might actually be declared in some superclass, so
2238 we have to use its class context, not the caller's notion of
2239 where the method is. */
2240 self_type
= DECL_CONTEXT (method
);
2241 ref
= build_class_ref (self_type
);
2242 ref
= build1 (INDIRECT_REF
, class_type_node
, ref
);
2243 if (ncode_ident
== NULL_TREE
)
2244 ncode_ident
= get_identifier ("ncode");
2245 if (methods_ident
== NULL_TREE
)
2246 methods_ident
= get_identifier ("methods");
2247 ref
= build3 (COMPONENT_REF
, method_ptr_type_node
, ref
,
2248 lookup_field (&class_type_node
, methods_ident
),
2250 for (meth
= TYPE_METHODS (self_type
);
2251 ; meth
= DECL_CHAIN (meth
))
2255 if (meth
== NULL_TREE
)
2256 fatal_error (input_location
, "method '%s' not found in class",
2257 IDENTIFIER_POINTER (DECL_NAME (method
)));
2260 method_index
*= int_size_in_bytes (method_type_node
);
2261 ref
= fold_build_pointer_plus_hwi (ref
, method_index
);
2262 ref
= build1 (INDIRECT_REF
, method_type_node
, ref
);
2263 func
= build3 (COMPONENT_REF
, nativecode_ptr_type_node
,
2264 ref
, lookup_field (&method_type_node
, ncode_ident
),
2271 invoke_build_dtable (int is_invoke_interface
, vec
<tree
, va_gc
> *arg_list
)
2273 tree dtable
, objectref
;
2274 tree saved
= save_expr ((*arg_list
)[0]);
2276 (*arg_list
)[0] = saved
;
2278 /* If we're dealing with interfaces and if the objectref
2279 argument is an array then get the dispatch table of the class
2280 Object rather than the one from the objectref. */
2281 objectref
= (is_invoke_interface
2282 && is_array_type_p (TREE_TYPE (saved
))
2283 ? build_class_ref (object_type_node
) : saved
);
2285 if (dtable_ident
== NULL_TREE
)
2286 dtable_ident
= get_identifier ("vtable");
2287 dtable
= build_java_indirect_ref (object_type_node
, objectref
,
2288 flag_check_references
);
2289 dtable
= build3 (COMPONENT_REF
, dtable_ptr_type
, dtable
,
2290 lookup_field (&object_type_node
, dtable_ident
), NULL_TREE
);
2295 /* Determine the index in SYMBOL_TABLE for a reference to the decl
2296 T. If this decl has not been seen before, it will be added to the
2297 [oa]table_methods. If it has, the existing table slot will be
2301 get_symbol_table_index (tree t
, tree special
,
2302 vec
<method_entry
, va_gc
> **symbol_table
)
2306 method_entry elem
= {t
, special
};
2308 FOR_EACH_VEC_SAFE_ELT (*symbol_table
, i
, e
)
2309 if (t
== e
->method
&& special
== e
->special
)
2312 vec_safe_push (*symbol_table
, elem
);
2319 build_invokevirtual (tree dtable
, tree method
, tree special
)
2322 tree nativecode_ptr_ptr_type_node
2323 = build_pointer_type (nativecode_ptr_type_node
);
2327 if (flag_indirect_dispatch
)
2329 gcc_assert (! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method
))));
2332 = build_int_cst (NULL_TREE
, get_symbol_table_index
2334 &TYPE_OTABLE_METHODS (output_class
)));
2335 method_index
= build4 (ARRAY_REF
, integer_type_node
,
2336 TYPE_OTABLE_DECL (output_class
),
2337 otable_index
, NULL_TREE
, NULL_TREE
);
2341 /* We fetch the DECL_VINDEX field directly here, rather than
2342 using get_method_index(). DECL_VINDEX is the true offset
2343 from the vtable base to a method, regrdless of any extra
2344 words inserted at the start of the vtable. */
2345 method_index
= DECL_VINDEX (method
);
2346 method_index
= size_binop (MULT_EXPR
, method_index
,
2347 TYPE_SIZE_UNIT (nativecode_ptr_ptr_type_node
));
2348 if (TARGET_VTABLE_USES_DESCRIPTORS
)
2349 method_index
= size_binop (MULT_EXPR
, method_index
,
2350 size_int (TARGET_VTABLE_USES_DESCRIPTORS
));
2353 func
= fold_build_pointer_plus (dtable
, method_index
);
2355 if (TARGET_VTABLE_USES_DESCRIPTORS
)
2356 func
= build1 (NOP_EXPR
, nativecode_ptr_type_node
, func
);
2359 func
= fold_convert (nativecode_ptr_ptr_type_node
, func
);
2360 func
= build1 (INDIRECT_REF
, nativecode_ptr_type_node
, func
);
2366 static GTY(()) tree class_ident
;
2368 build_invokeinterface (tree dtable
, tree method
)
2373 /* We expand invokeinterface here. */
2375 if (class_ident
== NULL_TREE
)
2376 class_ident
= get_identifier ("class");
2378 dtable
= build_java_indirect_ref (dtable_type
, dtable
,
2379 flag_check_references
);
2380 dtable
= build3 (COMPONENT_REF
, class_ptr_type
, dtable
,
2381 lookup_field (&dtable_type
, class_ident
), NULL_TREE
);
2383 interface
= DECL_CONTEXT (method
);
2384 gcc_assert (CLASS_INTERFACE (TYPE_NAME (interface
)));
2385 layout_class_methods (interface
);
2387 if (flag_indirect_dispatch
)
2390 = 2 * (get_symbol_table_index
2391 (method
, NULL_TREE
, &TYPE_ITABLE_METHODS (output_class
)));
2393 = build4 (ARRAY_REF
,
2394 TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class
))),
2395 TYPE_ITABLE_DECL (output_class
),
2396 build_int_cst (NULL_TREE
, itable_index
-1),
2397 NULL_TREE
, NULL_TREE
);
2399 = build4 (ARRAY_REF
,
2400 TREE_TYPE (TREE_TYPE (TYPE_ITABLE_DECL (output_class
))),
2401 TYPE_ITABLE_DECL (output_class
),
2402 build_int_cst (NULL_TREE
, itable_index
),
2403 NULL_TREE
, NULL_TREE
);
2404 interface
= convert (class_ptr_type
, interface
);
2405 idx
= convert (integer_type_node
, idx
);
2409 idx
= build_int_cst (NULL_TREE
,
2410 get_interface_method_index (method
, interface
));
2411 interface
= build_class_ref (interface
);
2414 return build_call_nary (ptr_type_node
,
2415 build_address_of (soft_lookupinterfacemethod_node
),
2416 3, dtable
, interface
, idx
);
2419 /* Expand one of the invoke_* opcodes.
2420 OPCODE is the specific opcode.
2421 METHOD_REF_INDEX is an index into the constant pool.
2422 NARGS is the number of arguments, or -1 if not specified. */
2425 expand_invoke (int opcode
, int method_ref_index
, int nargs ATTRIBUTE_UNUSED
)
2427 tree method_signature
2428 = COMPONENT_REF_SIGNATURE(¤t_jcf
->cpool
, method_ref_index
);
2429 tree method_name
= COMPONENT_REF_NAME (¤t_jcf
->cpool
,
2432 = get_class_constant (current_jcf
,
2433 COMPONENT_REF_CLASS_INDEX(¤t_jcf
->cpool
,
2435 const char *const self_name
2436 = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type
)));
2437 tree call
, func
, method
, method_type
;
2438 vec
<tree
, va_gc
> *arg_list
;
2439 tree check
= NULL_TREE
;
2441 tree special
= NULL_TREE
;
2443 if (! CLASS_LOADED_P (self_type
))
2445 load_class (self_type
, 1);
2446 safe_layout_class (self_type
);
2447 if (TREE_CODE (TYPE_SIZE (self_type
)) == ERROR_MARK
)
2448 fatal_error (input_location
, "failed to find class '%s'", self_name
);
2450 layout_class_methods (self_type
);
2452 if (ID_INIT_P (method_name
))
2453 method
= lookup_java_constructor (self_type
, method_signature
);
2455 method
= lookup_java_method (self_type
, method_name
, method_signature
);
2457 /* We've found a method in a class other than the one in which it
2458 was wanted. This can happen if, for instance, we're trying to
2459 compile invokespecial super.equals().
2460 FIXME: This is a kludge. Rather than nullifying the result, we
2461 should change lookup_java_method() so that it doesn't search the
2462 superclass chain when we're BC-compiling. */
2463 if (! flag_verify_invocations
2465 && ! TYPE_ARRAY_P (self_type
)
2466 && self_type
!= DECL_CONTEXT (method
))
2469 /* We've found a method in an interface, but this isn't an interface
2471 if (opcode
!= OPCODE_invokeinterface
2473 && (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method
)))))
2476 /* We've found a non-interface method but we are making an
2477 interface call. This can happen if the interface overrides a
2478 method in Object. */
2479 if (! flag_verify_invocations
2480 && opcode
== OPCODE_invokeinterface
2482 && ! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method
))))
2485 if (method
== NULL_TREE
)
2487 if (flag_verify_invocations
|| ! flag_indirect_dispatch
)
2489 error ("class '%s' has no method named '%s' matching signature '%s'",
2491 IDENTIFIER_POINTER (method_name
),
2492 IDENTIFIER_POINTER (method_signature
));
2496 int flags
= ACC_PUBLIC
;
2497 if (opcode
== OPCODE_invokestatic
)
2498 flags
|= ACC_STATIC
;
2499 if (opcode
== OPCODE_invokeinterface
)
2501 flags
|= ACC_INTERFACE
| ACC_ABSTRACT
;
2502 CLASS_INTERFACE (TYPE_NAME (self_type
)) = 1;
2504 method
= add_method (self_type
, flags
, method_name
,
2506 DECL_ARTIFICIAL (method
) = 1;
2507 METHOD_DUMMY (method
) = 1;
2508 layout_class_method (self_type
, NULL
,
2513 /* Invoke static can't invoke static/abstract method */
2514 if (method
!= NULL_TREE
)
2516 if (opcode
== OPCODE_invokestatic
)
2518 if (!METHOD_STATIC (method
))
2520 error ("invokestatic on non static method");
2523 else if (METHOD_ABSTRACT (method
))
2525 error ("invokestatic on abstract method");
2531 if (METHOD_STATIC (method
))
2533 error ("invoke[non-static] on static method");
2539 if (method
== NULL_TREE
)
2541 /* If we got here, we emitted an error message above. So we
2542 just pop the arguments, push a properly-typed zero, and
2544 method_type
= get_type_from_signature (method_signature
);
2545 pop_arguments (method_type
);
2546 if (opcode
!= OPCODE_invokestatic
)
2547 pop_type (self_type
);
2548 method_type
= promote_type (TREE_TYPE (method_type
));
2549 push_value (convert (method_type
, integer_zero_node
));
2553 arg_list
= pop_arguments (TREE_TYPE (method
));
2554 flush_quick_stack ();
2556 maybe_rewrite_invocation (&method
, &arg_list
, &method_signature
,
2558 method_type
= TREE_TYPE (method
);
2561 if (opcode
== OPCODE_invokestatic
)
2562 func
= build_known_method_ref (method
, method_type
, self_type
,
2563 method_signature
, arg_list
, special
);
2564 else if (opcode
== OPCODE_invokespecial
2565 || (opcode
== OPCODE_invokevirtual
2566 && (METHOD_PRIVATE (method
)
2567 || METHOD_FINAL (method
)
2568 || CLASS_FINAL (TYPE_NAME (self_type
)))))
2570 /* If the object for the method call is null, we throw an
2571 exception. We don't do this if the object is the current
2572 method's `this'. In other cases we just rely on an
2573 optimization pass to eliminate redundant checks. FIXME:
2574 Unfortunately there doesn't seem to be a way to determine
2575 what the current method is right now.
2576 We do omit the check if we're calling <init>. */
2577 /* We use a SAVE_EXPR here to make sure we only evaluate
2578 the new `self' expression once. */
2579 tree save_arg
= save_expr ((*arg_list
)[0]);
2580 (*arg_list
)[0] = save_arg
;
2581 check
= java_check_reference (save_arg
, ! DECL_INIT_P (method
));
2582 func
= build_known_method_ref (method
, method_type
, self_type
,
2583 method_signature
, arg_list
, special
);
2587 tree dtable
= invoke_build_dtable (opcode
== OPCODE_invokeinterface
,
2589 if (opcode
== OPCODE_invokevirtual
)
2590 func
= build_invokevirtual (dtable
, method
, special
);
2592 func
= build_invokeinterface (dtable
, method
);
2595 if (TREE_CODE (func
) == ADDR_EXPR
)
2596 TREE_TYPE (func
) = build_pointer_type (method_type
);
2598 func
= build1 (NOP_EXPR
, build_pointer_type (method_type
), func
);
2600 call
= build_call_vec (TREE_TYPE (method_type
), func
, arg_list
);
2601 TREE_SIDE_EFFECTS (call
) = 1;
2602 call
= check_for_builtin (method
, call
);
2604 if (check
!= NULL_TREE
)
2606 call
= build2 (COMPOUND_EXPR
, TREE_TYPE (call
), check
, call
);
2607 TREE_SIDE_EFFECTS (call
) = 1;
2610 if (TREE_CODE (TREE_TYPE (method_type
)) == VOID_TYPE
)
2611 java_add_stmt (call
);
2615 flush_quick_stack ();
2619 /* Create a stub which will be put into the vtable but which will call
2623 build_jni_stub (tree method
)
2625 tree jnifunc
, call
, body
, method_sig
, arg_types
;
2626 tree jniarg0
, jniarg1
, jniarg2
, jniarg3
;
2627 tree jni_func_type
, tem
;
2628 tree env_var
, res_var
= NULL_TREE
, block
;
2632 vec
<tree
, va_gc
> *args
= NULL
;
2635 tree klass
= DECL_CONTEXT (method
);
2636 klass
= build_class_ref (klass
);
2638 gcc_assert (METHOD_NATIVE (method
) && flag_jni
);
2640 DECL_ARTIFICIAL (method
) = 1;
2641 DECL_EXTERNAL (method
) = 0;
2643 env_var
= build_decl (input_location
,
2644 VAR_DECL
, get_identifier ("env"), ptr_type_node
);
2645 DECL_CONTEXT (env_var
) = method
;
2647 if (TREE_TYPE (TREE_TYPE (method
)) != void_type_node
)
2649 res_var
= build_decl (input_location
, VAR_DECL
, get_identifier ("res"),
2650 TREE_TYPE (TREE_TYPE (method
)));
2651 DECL_CONTEXT (res_var
) = method
;
2652 DECL_CHAIN (env_var
) = res_var
;
2655 method_args
= DECL_ARGUMENTS (method
);
2656 block
= build_block (env_var
, NULL_TREE
, method_args
, NULL_TREE
);
2657 TREE_SIDE_EFFECTS (block
) = 1;
2659 /* Compute the local `env' by calling _Jv_GetJNIEnvNewFrame. */
2660 body
= build2 (MODIFY_EXPR
, ptr_type_node
, env_var
,
2661 build_call_nary (ptr_type_node
,
2662 build_address_of (soft_getjnienvnewframe_node
),
2665 /* The JNIEnv structure is the first argument to the JNI function. */
2666 args_size
+= int_size_in_bytes (TREE_TYPE (env_var
));
2667 vec_safe_push (args
, env_var
);
2669 /* For a static method the second argument is the class. For a
2670 non-static method the second argument is `this'; that is already
2671 available in the argument list. */
2672 if (METHOD_STATIC (method
))
2674 args_size
+= int_size_in_bytes (TREE_TYPE (klass
));
2675 vec_safe_push (args
, klass
);
2678 /* All the arguments to this method become arguments to the
2679 underlying JNI function. If we had to wrap object arguments in a
2680 special way, we would do that here. */
2681 for (tem
= method_args
; tem
!= NULL_TREE
; tem
= DECL_CHAIN (tem
))
2683 int arg_bits
= TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (tem
)));
2684 #ifdef PARM_BOUNDARY
2685 arg_bits
= (((arg_bits
+ PARM_BOUNDARY
- 1) / PARM_BOUNDARY
)
2688 args_size
+= (arg_bits
/ BITS_PER_UNIT
);
2690 vec_safe_push (args
, tem
);
2692 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (method
));
2694 /* Argument types for static methods and the JNIEnv structure.
2695 FIXME: Write and use build_function_type_vec to avoid this. */
2696 if (METHOD_STATIC (method
))
2697 arg_types
= tree_cons (NULL_TREE
, object_ptr_type_node
, arg_types
);
2698 arg_types
= tree_cons (NULL_TREE
, ptr_type_node
, arg_types
);
2700 /* We call _Jv_LookupJNIMethod to find the actual underlying
2701 function pointer. _Jv_LookupJNIMethod will throw the appropriate
2702 exception if this function is not found at runtime. */
2703 method_sig
= build_java_signature (TREE_TYPE (method
));
2705 jniarg1
= build_utf8_ref (DECL_NAME (method
));
2706 jniarg2
= build_utf8_ref (unmangle_classname
2707 (IDENTIFIER_POINTER (method_sig
),
2708 IDENTIFIER_LENGTH (method_sig
)));
2709 jniarg3
= build_int_cst (NULL_TREE
, args_size
);
2711 tem
= build_function_type (TREE_TYPE (TREE_TYPE (method
)), arg_types
);
2713 #ifdef MODIFY_JNI_METHOD_CALL
2714 tem
= MODIFY_JNI_METHOD_CALL (tem
);
2717 jni_func_type
= build_pointer_type (tem
);
2719 /* Use the actual function type, rather than a generic pointer type,
2720 such that this decl keeps the actual pointer type from being
2721 garbage-collected. If it is, we end up using canonical types
2722 with different uids for equivalent function types, and this in
2723 turn causes utf8 identifiers and output order to vary. */
2724 meth_var
= build_decl (input_location
,
2725 VAR_DECL
, get_identifier ("meth"), jni_func_type
);
2726 TREE_STATIC (meth_var
) = 1;
2727 TREE_PUBLIC (meth_var
) = 0;
2728 DECL_EXTERNAL (meth_var
) = 0;
2729 DECL_CONTEXT (meth_var
) = method
;
2730 DECL_ARTIFICIAL (meth_var
) = 1;
2731 DECL_INITIAL (meth_var
) = null_pointer_node
;
2732 TREE_USED (meth_var
) = 1;
2733 chainon (env_var
, meth_var
);
2734 build_result_decl (method
);
2736 jnifunc
= build3 (COND_EXPR
, jni_func_type
,
2737 build2 (NE_EXPR
, boolean_type_node
,
2738 meth_var
, build_int_cst (TREE_TYPE (meth_var
), 0)),
2740 build2 (MODIFY_EXPR
, jni_func_type
, meth_var
,
2742 (NOP_EXPR
, jni_func_type
,
2743 build_call_nary (ptr_type_node
,
2745 (soft_lookupjnimethod_node
),
2748 jniarg2
, jniarg3
))));
2750 /* Now we make the actual JNI call via the resulting function
2752 call
= build_call_vec (TREE_TYPE (TREE_TYPE (method
)), jnifunc
, args
);
2754 /* If the JNI call returned a result, capture it here. If we had to
2755 unwrap JNI object results, we would do that here. */
2756 if (res_var
!= NULL_TREE
)
2758 /* If the call returns an object, it may return a JNI weak
2759 reference, in which case we must unwrap it. */
2760 if (! JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_TYPE (method
))))
2761 call
= build_call_nary (TREE_TYPE (TREE_TYPE (method
)),
2762 build_address_of (soft_unwrapjni_node
),
2764 call
= build2 (MODIFY_EXPR
, TREE_TYPE (TREE_TYPE (method
)),
2768 TREE_SIDE_EFFECTS (call
) = 1;
2770 body
= build2 (COMPOUND_EXPR
, void_type_node
, body
, call
);
2771 TREE_SIDE_EFFECTS (body
) = 1;
2773 /* Now free the environment we allocated. */
2774 call
= build_call_nary (ptr_type_node
,
2775 build_address_of (soft_jnipopsystemframe_node
),
2777 TREE_SIDE_EFFECTS (call
) = 1;
2778 body
= build2 (COMPOUND_EXPR
, void_type_node
, body
, call
);
2779 TREE_SIDE_EFFECTS (body
) = 1;
2781 /* Finally, do the return. */
2782 if (res_var
!= NULL_TREE
)
2785 gcc_assert (DECL_RESULT (method
));
2786 /* Make sure we copy the result variable to the actual
2787 result. We use the type of the DECL_RESULT because it
2788 might be different from the return type of the function:
2789 it might be promoted. */
2790 drt
= TREE_TYPE (DECL_RESULT (method
));
2791 if (drt
!= TREE_TYPE (res_var
))
2792 res_var
= build1 (CONVERT_EXPR
, drt
, res_var
);
2793 res_var
= build2 (MODIFY_EXPR
, drt
, DECL_RESULT (method
), res_var
);
2794 TREE_SIDE_EFFECTS (res_var
) = 1;
2797 body
= build2 (COMPOUND_EXPR
, void_type_node
, body
,
2798 build1 (RETURN_EXPR
, void_type_node
, res_var
));
2799 TREE_SIDE_EFFECTS (body
) = 1;
2801 /* Prepend class initialization for static methods reachable from
2803 if (METHOD_STATIC (method
)
2804 && (! METHOD_PRIVATE (method
)
2805 || INNER_CLASS_P (DECL_CONTEXT (method
))))
2807 tree init
= build_call_expr (soft_initclass_node
, 1,
2809 body
= build2 (COMPOUND_EXPR
, void_type_node
, init
, body
);
2810 TREE_SIDE_EFFECTS (body
) = 1;
2813 bind
= build3 (BIND_EXPR
, void_type_node
, BLOCK_VARS (block
),
2819 /* Given lvalue EXP, return a volatile expression that references the
2823 java_modify_addr_for_volatile (tree exp
)
2825 tree exp_type
= TREE_TYPE (exp
);
2827 = build_qualified_type (exp_type
,
2828 TYPE_QUALS (exp_type
) | TYPE_QUAL_VOLATILE
);
2829 tree addr
= build_fold_addr_expr (exp
);
2830 v_type
= build_pointer_type (v_type
);
2831 addr
= fold_convert (v_type
, addr
);
2832 exp
= build_fold_indirect_ref (addr
);
2837 /* Expand an operation to extract from or store into a field.
2838 IS_STATIC is 1 iff the field is static.
2839 IS_PUTTING is 1 for putting into a field; 0 for getting from the field.
2840 FIELD_REF_INDEX is an index into the constant pool. */
2843 expand_java_field_op (int is_static
, int is_putting
, int field_ref_index
)
2846 = get_class_constant (current_jcf
,
2847 COMPONENT_REF_CLASS_INDEX (¤t_jcf
->cpool
,
2849 const char *self_name
2850 = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (self_type
)));
2851 tree field_name
= COMPONENT_REF_NAME (¤t_jcf
->cpool
, field_ref_index
);
2852 tree field_signature
= COMPONENT_REF_SIGNATURE (¤t_jcf
->cpool
,
2854 tree field_type
= get_type_from_signature (field_signature
);
2855 tree new_value
= is_putting
? pop_value (field_type
) : NULL_TREE
;
2858 tree original_self_type
= self_type
;
2862 if (! CLASS_LOADED_P (self_type
))
2863 load_class (self_type
, 1);
2864 field_decl
= lookup_field (&self_type
, field_name
);
2865 if (field_decl
== error_mark_node
)
2869 else if (field_decl
== NULL_TREE
)
2871 if (! flag_verify_invocations
)
2873 int flags
= ACC_PUBLIC
;
2875 flags
|= ACC_STATIC
;
2876 self_type
= original_self_type
;
2877 field_decl
= add_field (original_self_type
, field_name
,
2879 DECL_ARTIFICIAL (field_decl
) = 1;
2880 DECL_IGNORED_P (field_decl
) = 1;
2882 /* FIXME: We should be pessimistic about volatility. We
2883 don't know one way or another, but this is safe.
2884 However, doing this has bad effects on code quality. We
2885 need to look at better ways to do this. */
2886 TREE_THIS_VOLATILE (field_decl
) = 1;
2891 error ("missing field '%s' in '%s'",
2892 IDENTIFIER_POINTER (field_name
), self_name
);
2896 else if (build_java_signature (TREE_TYPE (field_decl
)) != field_signature
)
2898 error ("mismatching signature for field '%s' in '%s'",
2899 IDENTIFIER_POINTER (field_name
), self_name
);
2902 field_ref
= is_static
? NULL_TREE
: pop_value (self_type
);
2906 push_value (convert (field_type
, integer_zero_node
));
2907 flush_quick_stack ();
2911 field_ref
= build_field_ref (field_ref
, self_type
, field_name
);
2913 && ! flag_indirect_dispatch
)
2915 tree context
= DECL_CONTEXT (field_ref
);
2916 if (context
!= self_type
&& CLASS_INTERFACE (TYPE_NAME (context
)))
2917 field_ref
= build_class_init (context
, field_ref
);
2919 field_ref
= build_class_init (self_type
, field_ref
);
2923 flush_quick_stack ();
2924 if (FIELD_FINAL (field_decl
))
2926 if (DECL_CONTEXT (field_decl
) != current_class
)
2927 error ("assignment to final field %q+D not in field%'s class",
2929 /* We used to check for assignments to final fields not
2930 occurring in the class initializer or in a constructor
2931 here. However, this constraint doesn't seem to be
2932 enforced by the JVM. */
2935 if (TREE_THIS_VOLATILE (field_decl
))
2936 field_ref
= java_modify_addr_for_volatile (field_ref
);
2938 modify_expr
= build2 (MODIFY_EXPR
, TREE_TYPE (field_ref
),
2939 field_ref
, new_value
);
2941 if (TREE_THIS_VOLATILE (field_decl
))
2943 tree sync
= builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE
);
2944 java_add_stmt (build_call_expr (sync
, 0));
2947 java_add_stmt (modify_expr
);
2951 tree temp
= build_decl (input_location
,
2952 VAR_DECL
, NULL_TREE
, TREE_TYPE (field_ref
));
2953 java_add_local_var (temp
);
2955 if (TREE_THIS_VOLATILE (field_decl
))
2956 field_ref
= java_modify_addr_for_volatile (field_ref
);
2959 = build2 (MODIFY_EXPR
, TREE_TYPE (field_ref
), temp
, field_ref
);
2960 java_add_stmt (modify_expr
);
2962 if (TREE_THIS_VOLATILE (field_decl
))
2964 tree sync
= builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE
);
2965 java_add_stmt (build_call_expr (sync
, 0));
2970 TREE_THIS_VOLATILE (field_ref
) = TREE_THIS_VOLATILE (field_decl
);
2974 load_type_state (int pc
)
2977 tree vec
= (*type_states
)[pc
];
2978 int cur_length
= TREE_VEC_LENGTH (vec
);
2979 stack_pointer
= cur_length
- DECL_MAX_LOCALS(current_function_decl
);
2980 for (i
= 0; i
< cur_length
; i
++)
2981 type_map
[i
] = TREE_VEC_ELT (vec
, i
);
2984 /* Go over METHOD's bytecode and note instruction starts in
2985 instruction_bits[]. */
2988 note_instructions (JCF
*jcf
, tree method
)
2991 unsigned char* byte_ops
;
2992 long length
= DECL_CODE_LENGTH (method
);
2997 #undef RET /* Defined by config/i386/i386.h */
2999 #define BCODE byte_ops
3000 #define BYTE_type_node byte_type_node
3001 #define SHORT_type_node short_type_node
3002 #define INT_type_node int_type_node
3003 #define LONG_type_node long_type_node
3004 #define CHAR_type_node char_type_node
3005 #define PTR_type_node ptr_type_node
3006 #define FLOAT_type_node float_type_node
3007 #define DOUBLE_type_node double_type_node
3008 #define VOID_type_node void_type_node
3009 #define CONST_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
3010 #define CONST_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
3011 #define VAR_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
3012 #define VAR_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
3014 #define CHECK_PC_IN_RANGE(PC) ((void)1) /* Already handled by verifier. */
3016 JCF_SEEK (jcf
, DECL_CODE_OFFSET (method
));
3017 byte_ops
= jcf
->read_ptr
;
3018 instruction_bits
= XRESIZEVAR (char, instruction_bits
, length
+ 1);
3019 memset (instruction_bits
, 0, length
+ 1);
3020 vec_alloc (type_states
, length
+ 1);
3021 type_states
->quick_grow_cleared (length
+ 1);
3023 /* This pass figures out which PC can be the targets of jumps. */
3024 for (PC
= 0; PC
< length
;)
3026 int oldpc
= PC
; /* PC at instruction start. */
3027 instruction_bits
[PC
] |= BCODE_INSTRUCTION_START
;
3028 switch (byte_ops
[PC
++])
3030 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
3032 PRE_##OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
3035 #define NOTE_LABEL(PC) note_label(oldpc, PC)
3037 #define PRE_PUSHC(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3038 #define PRE_LOAD(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3039 #define PRE_STORE(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE);
3040 #define PRE_STACK(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3041 #define PRE_UNOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3042 #define PRE_BINOP(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3043 #define PRE_CONVERT(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3044 #define PRE_CONVERT2(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3046 #define PRE_SPECIAL(OPERAND_TYPE, INSTRUCTION) \
3047 PRE_SPECIAL_##INSTRUCTION(OPERAND_TYPE)
3048 #define PRE_SPECIAL_IINC(OPERAND_TYPE) \
3049 ((void) IMMEDIATE_u1, (void) IMMEDIATE_s1)
3050 #define PRE_SPECIAL_ENTER(IGNORE) /* nothing */
3051 #define PRE_SPECIAL_EXIT(IGNORE) /* nothing */
3052 #define PRE_SPECIAL_THROW(IGNORE) /* nothing */
3053 #define PRE_SPECIAL_BREAK(IGNORE) /* nothing */
3055 /* two forms of wide instructions */
3056 #define PRE_SPECIAL_WIDE(IGNORE) \
3058 int modified_opcode = IMMEDIATE_u1; \
3059 if (modified_opcode == OPCODE_iinc) \
3061 (void) IMMEDIATE_u2; /* indexbyte1 and indexbyte2 */ \
3062 (void) IMMEDIATE_s2; /* constbyte1 and constbyte2 */ \
3066 (void) IMMEDIATE_u2; /* indexbyte1 and indexbyte2 */ \
3070 #define PRE_IMPL(IGNORE1, IGNORE2) /* nothing */
3072 #define PRE_MONITOR(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3074 #define PRE_RETURN(OPERAND_TYPE, OPERAND_VALUE) /* nothing */
3075 #define PRE_ARRAY(OPERAND_TYPE, SUBOP) \
3076 PRE_ARRAY_##SUBOP(OPERAND_TYPE)
3077 #define PRE_ARRAY_LOAD(TYPE) /* nothing */
3078 #define PRE_ARRAY_STORE(TYPE) /* nothing */
3079 #define PRE_ARRAY_LENGTH(TYPE) /* nothing */
3080 #define PRE_ARRAY_NEW(TYPE) PRE_ARRAY_NEW_##TYPE
3081 #define PRE_ARRAY_NEW_NUM ((void) IMMEDIATE_u1)
3082 #define PRE_ARRAY_NEW_PTR ((void) IMMEDIATE_u2)
3083 #define PRE_ARRAY_NEW_MULTI ((void) IMMEDIATE_u2, (void) IMMEDIATE_u1)
3085 #define PRE_TEST(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
3086 #define PRE_COND(OPERAND_TYPE, OPERAND_VALUE) NOTE_LABEL (oldpc+IMMEDIATE_s2)
3087 #define PRE_BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
3088 saw_index = 0; INT_temp = (OPERAND_VALUE); \
3089 if (!saw_index) NOTE_LABEL(oldpc + INT_temp);
3090 #define PRE_JSR(OPERAND_TYPE, OPERAND_VALUE) \
3091 saw_index = 0; INT_temp = (OPERAND_VALUE); \
3093 if (!saw_index) NOTE_LABEL(oldpc + INT_temp);
3095 #define PRE_RET(OPERAND_TYPE, OPERAND_VALUE) (void)(OPERAND_VALUE)
3097 #define PRE_SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
3098 PC = (PC + 3) / 4 * 4; PRE_##TABLE_OR_LOOKUP##_SWITCH
3100 #define PRE_LOOKUP_SWITCH \
3101 { jint default_offset = IMMEDIATE_s4; jint npairs = IMMEDIATE_s4; \
3102 NOTE_LABEL (default_offset+oldpc); \
3104 while (--npairs >= 0) { \
3105 jint match ATTRIBUTE_UNUSED = IMMEDIATE_s4; \
3106 jint offset = IMMEDIATE_s4; \
3107 NOTE_LABEL (offset+oldpc); } \
3110 #define PRE_TABLE_SWITCH \
3111 { jint default_offset = IMMEDIATE_s4; \
3112 jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4; \
3113 NOTE_LABEL (default_offset+oldpc); \
3115 while (low++ <= high) { \
3116 jint offset = IMMEDIATE_s4; \
3117 NOTE_LABEL (offset+oldpc); } \
3120 #define PRE_FIELD(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
3121 #define PRE_OBJECT(MAYBE_STATIC, PUT_OR_GET) (void)(IMMEDIATE_u2);
3122 #define PRE_INVOKE(MAYBE_STATIC, IS_INTERFACE) \
3123 (void)(IMMEDIATE_u2); \
3124 PC += 2 * IS_INTERFACE /* for invokeinterface */;
3126 #include "javaop.def"
3133 expand_byte_code (JCF
*jcf
, tree method
)
3137 const unsigned char *linenumber_pointer
;
3138 int dead_code_index
= -1;
3139 unsigned char* byte_ops
;
3140 long length
= DECL_CODE_LENGTH (method
);
3141 location_t max_location
= input_location
;
3144 JCF_SEEK (jcf
, DECL_CODE_OFFSET (method
));
3145 byte_ops
= jcf
->read_ptr
;
3147 /* We make an initial pass of the line number table, to note
3148 which instructions have associated line number entries. */
3149 linenumber_pointer
= linenumber_table
;
3150 for (i
= 0; i
< linenumber_count
; i
++)
3152 int pc
= GET_u2 (linenumber_pointer
);
3153 linenumber_pointer
+= 4;
3155 warning (0, "invalid PC in line number table");
3158 if ((instruction_bits
[pc
] & BCODE_HAS_LINENUMBER
) != 0)
3159 instruction_bits
[pc
] |= BCODE_HAS_MULTI_LINENUMBERS
;
3160 instruction_bits
[pc
] |= BCODE_HAS_LINENUMBER
;
3164 if (! verify_jvm_instructions_new (jcf
, byte_ops
, length
))
3167 promote_arguments ();
3168 cache_this_class_ref (method
);
3169 cache_cpool_data_ref ();
3171 /* Translate bytecodes. */
3172 linenumber_pointer
= linenumber_table
;
3173 for (PC
= 0; PC
< length
;)
3175 if ((instruction_bits
[PC
] & BCODE_TARGET
) != 0 || PC
== 0)
3177 tree label
= lookup_label (PC
);
3178 flush_quick_stack ();
3179 if ((instruction_bits
[PC
] & BCODE_TARGET
) != 0)
3180 java_add_stmt (build1 (LABEL_EXPR
, void_type_node
, label
));
3181 if ((instruction_bits
[PC
] & BCODE_VERIFIED
) != 0)
3182 load_type_state (PC
);
3185 if (! (instruction_bits
[PC
] & BCODE_VERIFIED
))
3187 if (dead_code_index
== -1)
3189 /* This is the start of a region of unreachable bytecodes.
3190 They still need to be processed in order for EH ranges
3191 to get handled correctly. However, we can simply
3192 replace these bytecodes with nops. */
3193 dead_code_index
= PC
;
3196 /* Turn this bytecode into a nop. */
3201 if (dead_code_index
!= -1)
3203 /* We've just reached the end of a region of dead code. */
3205 warning (0, "unreachable bytecode from %d to before %d",
3206 dead_code_index
, PC
);
3207 dead_code_index
= -1;
3211 /* Handle possible line number entry for this PC.
3213 This code handles out-of-order and multiple linenumbers per PC,
3214 but is optimized for the case of line numbers increasing
3215 monotonically with PC. */
3216 if ((instruction_bits
[PC
] & BCODE_HAS_LINENUMBER
) != 0)
3218 if ((instruction_bits
[PC
] & BCODE_HAS_MULTI_LINENUMBERS
) != 0
3219 || GET_u2 (linenumber_pointer
) != PC
)
3220 linenumber_pointer
= linenumber_table
;
3221 while (linenumber_pointer
< linenumber_table
+ linenumber_count
* 4)
3223 int pc
= GET_u2 (linenumber_pointer
);
3224 linenumber_pointer
+= 4;
3227 int line
= GET_u2 (linenumber_pointer
- 2);
3228 input_location
= linemap_line_start (line_table
, line
, 1);
3229 if (input_location
> max_location
)
3230 max_location
= input_location
;
3231 if (!(instruction_bits
[PC
] & BCODE_HAS_MULTI_LINENUMBERS
))
3236 maybe_pushlevels (PC
);
3237 PC
= process_jvm_instruction (PC
, byte_ops
, length
);
3238 maybe_poplevels (PC
);
3241 uncache_this_class_ref (method
);
3243 if (dead_code_index
!= -1)
3245 /* We've just reached the end of a region of dead code. */
3247 warning (0, "unreachable bytecode from %d to the end of the method",
3251 DECL_FUNCTION_LAST_LINE (method
) = max_location
;
3255 java_push_constant_from_pool (JCF
*jcf
, int index
)
3258 if (JPOOL_TAG (jcf
, index
) == CONSTANT_String
)
3261 name
= get_name_constant (jcf
, JPOOL_USHORT1 (jcf
, index
));
3262 index
= alloc_name_constant (CONSTANT_String
, name
);
3263 c
= build_ref_from_constant_pool (index
);
3264 c
= convert (promote_type (string_type_node
), c
);
3266 else if (JPOOL_TAG (jcf
, index
) == CONSTANT_Class
3267 || JPOOL_TAG (jcf
, index
) == CONSTANT_ResolvedClass
)
3269 tree record
= get_class_constant (jcf
, index
);
3270 c
= build_class_ref (record
);
3273 c
= get_constant (jcf
, index
);
3278 process_jvm_instruction (int PC
, const unsigned char* byte_ops
,
3279 long length ATTRIBUTE_UNUSED
)
3281 const char *opname
; /* Temporary ??? */
3282 int oldpc
= PC
; /* PC at instruction start. */
3284 /* If the instruction is at the beginning of an exception handler,
3285 replace the top of the stack with the thrown object reference. */
3286 if (instruction_bits
[PC
] & BCODE_EXCEPTION_TARGET
)
3288 /* Note that the verifier will not emit a type map at all for
3289 dead exception handlers. In this case we just ignore the
3291 if ((instruction_bits
[PC
] & BCODE_VERIFIED
) != 0)
3293 tree type
= pop_type (promote_type (throwable_type_node
));
3294 push_value (build_exception_object_ref (type
));
3298 switch (byte_ops
[PC
++])
3300 #define JAVAOP(OPNAME, OPCODE, OPKIND, OPERAND_TYPE, OPERAND_VALUE) \
3303 OPKIND(OPERAND_TYPE, OPERAND_VALUE); \
3306 #define RET(OPERAND_TYPE, OPERAND_VALUE) \
3308 int saw_index = 0; \
3309 int index = OPERAND_VALUE; \
3310 (void) saw_index; /* Avoid set but not used warning. */ \
3312 (find_local_variable (index, return_address_type_node, oldpc)); \
3315 #define JSR(OPERAND_TYPE, OPERAND_VALUE) \
3317 /* OPERAND_VALUE may have side-effects on PC */ \
3318 int opvalue = OPERAND_VALUE; \
3319 build_java_jsr (oldpc + opvalue, PC); \
3322 /* Push a constant onto the stack. */
3323 #define PUSHC(OPERAND_TYPE, OPERAND_VALUE) \
3324 { int saw_index = 0; int ival = (OPERAND_VALUE); \
3325 if (saw_index) java_push_constant_from_pool (current_jcf, ival); \
3326 else expand_java_pushc (ival, OPERAND_TYPE##_type_node); }
3328 /* internal macro added for use by the WIDE case */
3329 #define LOAD_INTERNAL(OPTYPE, OPVALUE) \
3330 expand_load_internal (OPVALUE, type_map[OPVALUE], oldpc);
3332 /* Push local variable onto the opcode stack. */
3333 #define LOAD(OPERAND_TYPE, OPERAND_VALUE) \
3335 /* have to do this since OPERAND_VALUE may have side-effects */ \
3336 int opvalue = OPERAND_VALUE; \
3337 LOAD_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3340 #define RETURN(OPERAND_TYPE, OPERAND_VALUE) \
3341 expand_java_return (OPERAND_TYPE##_type_node)
3343 #define REM_EXPR TRUNC_MOD_EXPR
3344 #define BINOP(OPERAND_TYPE, OPERAND_VALUE) \
3345 expand_java_binop (OPERAND_TYPE##_type_node, OPERAND_VALUE##_EXPR)
3347 #define FIELD(IS_STATIC, IS_PUT) \
3348 expand_java_field_op (IS_STATIC, IS_PUT, IMMEDIATE_u2)
3350 #define TEST(OPERAND_TYPE, CONDITION) \
3351 expand_test (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3353 #define COND(OPERAND_TYPE, CONDITION) \
3354 expand_cond (CONDITION##_EXPR, OPERAND_TYPE##_type_node, oldpc+IMMEDIATE_s2)
3356 #define BRANCH(OPERAND_TYPE, OPERAND_VALUE) \
3357 BRANCH_##OPERAND_TYPE (OPERAND_VALUE)
3359 #define BRANCH_GOTO(OPERAND_VALUE) \
3360 expand_java_goto (oldpc + OPERAND_VALUE)
3362 #define BRANCH_CALL(OPERAND_VALUE) \
3363 expand_java_call (oldpc + OPERAND_VALUE, oldpc)
3366 #define BRANCH_RETURN(OPERAND_VALUE) \
3368 tree type = OPERAND_TYPE##_type_node; \
3369 tree value = find_local_variable (OPERAND_VALUE, type, oldpc); \
3370 expand_java_ret (value); \
3374 #define NOT_IMPL(OPERAND_TYPE, OPERAND_VALUE) \
3375 fprintf (stderr, "%3d: %s ", oldpc, opname); \
3376 fprintf (stderr, "(not implemented)\n")
3377 #define NOT_IMPL1(OPERAND_VALUE) \
3378 fprintf (stderr, "%3d: %s ", oldpc, opname); \
3379 fprintf (stderr, "(not implemented)\n")
3381 #define BRANCH_RETURN(OPERAND_VALUE) NOT_IMPL1(OPERAND_VALUE)
3383 #define STACK(SUBOP, COUNT) STACK_##SUBOP (COUNT)
3385 #define STACK_POP(COUNT) java_stack_pop (COUNT)
3387 #define STACK_SWAP(COUNT) java_stack_swap()
3389 #define STACK_DUP(COUNT) java_stack_dup (COUNT, 0)
3390 #define STACK_DUPx1(COUNT) java_stack_dup (COUNT, 1)
3391 #define STACK_DUPx2(COUNT) java_stack_dup (COUNT, 2)
3393 #define SWITCH(OPERAND_TYPE, TABLE_OR_LOOKUP) \
3394 PC = (PC + 3) / 4 * 4; TABLE_OR_LOOKUP##_SWITCH
3396 #define LOOKUP_SWITCH \
3397 { jint default_offset = IMMEDIATE_s4; jint npairs = IMMEDIATE_s4; \
3398 tree selector = pop_value (INT_type_node); \
3399 tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3400 while (--npairs >= 0) \
3402 jint match = IMMEDIATE_s4; jint offset = IMMEDIATE_s4; \
3403 expand_java_add_case (switch_expr, match, oldpc + offset); \
3407 #define TABLE_SWITCH \
3408 { jint default_offset = IMMEDIATE_s4; \
3409 jint low = IMMEDIATE_s4; jint high = IMMEDIATE_s4; \
3410 tree selector = pop_value (INT_type_node); \
3411 tree switch_expr = expand_java_switch (selector, oldpc + default_offset); \
3412 for (; low <= high; low++) \
3414 jint offset = IMMEDIATE_s4; \
3415 expand_java_add_case (switch_expr, low, oldpc + offset); \
3419 #define INVOKE(MAYBE_STATIC, IS_INTERFACE) \
3420 { int opcode = byte_ops[PC-1]; \
3421 int method_ref_index = IMMEDIATE_u2; \
3423 if (IS_INTERFACE) { nargs = IMMEDIATE_u1; (void) IMMEDIATE_u1; } \
3425 expand_invoke (opcode, method_ref_index, nargs); \
3428 /* Handle new, checkcast, instanceof */
3429 #define OBJECT(TYPE, OP) \
3430 expand_java_##OP (get_class_constant (current_jcf, IMMEDIATE_u2))
3432 #define ARRAY(OPERAND_TYPE, SUBOP) ARRAY_##SUBOP(OPERAND_TYPE)
3434 #define ARRAY_LOAD(OPERAND_TYPE) \
3436 expand_java_arrayload( OPERAND_TYPE##_type_node ); \
3439 #define ARRAY_STORE(OPERAND_TYPE) \
3441 expand_java_arraystore( OPERAND_TYPE##_type_node ); \
3444 #define ARRAY_LENGTH(OPERAND_TYPE) expand_java_array_length();
3445 #define ARRAY_NEW(OPERAND_TYPE) ARRAY_NEW_##OPERAND_TYPE()
3446 #define ARRAY_NEW_PTR() \
3447 push_value (build_anewarray (get_class_constant (current_jcf, \
3449 pop_value (int_type_node)));
3450 #define ARRAY_NEW_NUM() \
3452 int atype = IMMEDIATE_u1; \
3453 push_value (build_newarray (atype, pop_value (int_type_node)));\
3455 #define ARRAY_NEW_MULTI() \
3457 tree klass = get_class_constant (current_jcf, IMMEDIATE_u2 ); \
3458 int ndims = IMMEDIATE_u1; \
3459 expand_java_multianewarray( klass, ndims ); \
3462 #define UNOP(OPERAND_TYPE, OPERAND_VALUE) \
3463 push_value (fold_build1 (NEGATE_EXPR, OPERAND_TYPE##_type_node, \
3464 pop_value (OPERAND_TYPE##_type_node)));
3466 #define CONVERT2(FROM_TYPE, TO_TYPE) \
3468 push_value (build1 (NOP_EXPR, int_type_node, \
3469 (convert (TO_TYPE##_type_node, \
3470 pop_value (FROM_TYPE##_type_node))))); \
3473 #define CONVERT(FROM_TYPE, TO_TYPE) \
3475 push_value (convert (TO_TYPE##_type_node, \
3476 pop_value (FROM_TYPE##_type_node))); \
3479 /* internal macro added for use by the WIDE case
3480 Added TREE_TYPE (decl) assignment, apbianco */
3481 #define STORE_INTERNAL(OPTYPE, OPVALUE) \
3484 int index = OPVALUE; \
3485 tree type = OPTYPE; \
3486 value = pop_value (type); \
3487 type = TREE_TYPE (value); \
3488 decl = find_local_variable (index, type, oldpc); \
3489 set_local_type (index, type); \
3490 java_add_stmt (build2 (MODIFY_EXPR, type, decl, value)); \
3493 #define STORE(OPERAND_TYPE, OPERAND_VALUE) \
3495 /* have to do this since OPERAND_VALUE may have side-effects */ \
3496 int opvalue = OPERAND_VALUE; \
3497 STORE_INTERNAL(OPERAND_TYPE##_type_node, opvalue); \
3500 #define SPECIAL(OPERAND_TYPE, INSTRUCTION) \
3501 SPECIAL_##INSTRUCTION(OPERAND_TYPE)
3503 #define SPECIAL_ENTER(IGNORED) MONITOR_OPERATION (soft_monitorenter_node)
3504 #define SPECIAL_EXIT(IGNORED) MONITOR_OPERATION (soft_monitorexit_node)
3506 #define MONITOR_OPERATION(call) \
3508 tree o = pop_value (ptr_type_node); \
3510 flush_quick_stack (); \
3511 c = build_java_monitor (call, o); \
3512 TREE_SIDE_EFFECTS (c) = 1; \
3513 java_add_stmt (c); \
3516 #define SPECIAL_IINC(IGNORED) \
3518 unsigned int local_var_index = IMMEDIATE_u1; \
3519 int ival = IMMEDIATE_s1; \
3520 expand_iinc(local_var_index, ival, oldpc); \
3523 #define SPECIAL_WIDE(IGNORED) \
3525 int modified_opcode = IMMEDIATE_u1; \
3526 unsigned int local_var_index = IMMEDIATE_u2; \
3527 switch (modified_opcode) \
3531 int ival = IMMEDIATE_s2; \
3532 expand_iinc (local_var_index, ival, oldpc); \
3535 case OPCODE_iload: \
3536 case OPCODE_lload: \
3537 case OPCODE_fload: \
3538 case OPCODE_dload: \
3539 case OPCODE_aload: \
3541 /* duplicate code from LOAD macro */ \
3542 LOAD_INTERNAL(operand_type[modified_opcode], local_var_index); \
3545 case OPCODE_istore: \
3546 case OPCODE_lstore: \
3547 case OPCODE_fstore: \
3548 case OPCODE_dstore: \
3549 case OPCODE_astore: \
3551 STORE_INTERNAL(operand_type[modified_opcode], local_var_index); \
3555 error ("unrecognized wide sub-instruction"); \
3559 #define SPECIAL_THROW(IGNORED) \
3560 build_java_athrow (pop_value (throwable_type_node))
3562 #define SPECIAL_BREAK NOT_IMPL1
3563 #define IMPL NOT_IMPL
3565 #include "javaop.def"
3568 fprintf (stderr
, "%3d: unknown(%3d)\n", oldpc
, byte_ops
[PC
]);
3573 /* Return the opcode at PC in the code section pointed to by
3576 static unsigned char
3577 peek_opcode_at_pc (JCF
*jcf
, int code_offset
, int pc
)
3579 unsigned char opcode
;
3580 long absolute_offset
= (long)JCF_TELL (jcf
);
3582 JCF_SEEK (jcf
, code_offset
);
3583 opcode
= jcf
->read_ptr
[pc
];
3584 JCF_SEEK (jcf
, absolute_offset
);
3588 /* Some bytecode compilers are emitting accurate LocalVariableTable
3589 attributes. Here's an example:
3594 Attribute "LocalVariableTable"
3595 slot #<n>: ... (PC: PC+1 length: L)
3597 This is accurate because the local in slot <n> really exists after
3598 the opcode at PC is executed, hence from PC+1 to PC+1+L.
3600 This procedure recognizes this situation and extends the live range
3601 of the local in SLOT to START_PC-1 or START_PC-2 (depending on the
3602 length of the store instruction.)
3604 This function is used by `give_name_to_locals' so that a local's
3605 DECL features a DECL_LOCAL_START_PC such that the first related
3606 store operation will use DECL as a destination, not an unrelated
3607 temporary created for the occasion.
3609 This function uses a global (instruction_bits) `note_instructions' should
3610 have allocated and filled properly. */
3613 maybe_adjust_start_pc (struct JCF
*jcf
, int code_offset
,
3614 int start_pc
, int slot
)
3616 int first
, index
, opcode
;
3625 /* Find last previous instruction and remember it */
3626 for (pc
= start_pc
-1; pc
; pc
--)
3627 if (instruction_bits
[pc
] & BCODE_INSTRUCTION_START
)
3631 /* Retrieve the instruction, handle `wide'. */
3632 opcode
= (int) peek_opcode_at_pc (jcf
, code_offset
, pc
++);
3633 if (opcode
== OPCODE_wide
)
3636 opcode
= (int) peek_opcode_at_pc (jcf
, code_offset
, pc
++);
3641 case OPCODE_astore_0
:
3642 case OPCODE_astore_1
:
3643 case OPCODE_astore_2
:
3644 case OPCODE_astore_3
:
3645 first
= OPCODE_astore_0
;
3648 case OPCODE_istore_0
:
3649 case OPCODE_istore_1
:
3650 case OPCODE_istore_2
:
3651 case OPCODE_istore_3
:
3652 first
= OPCODE_istore_0
;
3655 case OPCODE_lstore_0
:
3656 case OPCODE_lstore_1
:
3657 case OPCODE_lstore_2
:
3658 case OPCODE_lstore_3
:
3659 first
= OPCODE_lstore_0
;
3662 case OPCODE_fstore_0
:
3663 case OPCODE_fstore_1
:
3664 case OPCODE_fstore_2
:
3665 case OPCODE_fstore_3
:
3666 first
= OPCODE_fstore_0
;
3669 case OPCODE_dstore_0
:
3670 case OPCODE_dstore_1
:
3671 case OPCODE_dstore_2
:
3672 case OPCODE_dstore_3
:
3673 first
= OPCODE_dstore_0
;
3681 index
= peek_opcode_at_pc (jcf
, code_offset
, pc
);
3684 int other
= peek_opcode_at_pc (jcf
, code_offset
, ++pc
);
3685 index
= (other
<< 8) + index
;
3690 /* Now we decide: first >0 means we have a <t>store_<n>, index >0
3691 means we have a <t>store. */
3692 if ((first
> 0 && opcode
- first
== slot
) || (index
> 0 && index
== slot
))
3698 /* Build a node to represent empty statements and blocks. */
3701 build_java_empty_stmt (void)
3703 tree t
= build_empty_stmt (input_location
);
3707 /* Promote all args of integral type before generating any code. */
3710 promote_arguments (void)
3714 for (arg
= DECL_ARGUMENTS (current_function_decl
), i
= 0;
3715 arg
!= NULL_TREE
; arg
= DECL_CHAIN (arg
), i
++)
3717 tree arg_type
= TREE_TYPE (arg
);
3718 if (INTEGRAL_TYPE_P (arg_type
)
3719 && TYPE_PRECISION (arg_type
) < 32)
3721 tree copy
= find_local_variable (i
, integer_type_node
, -1);
3722 java_add_stmt (build2 (MODIFY_EXPR
, integer_type_node
,
3724 fold_convert (integer_type_node
, arg
)));
3726 if (TYPE_IS_WIDE (arg_type
))
3731 /* Create a local variable that points to the constant pool. */
3734 cache_cpool_data_ref (void)
3739 tree d
= build_constant_data_ref (flag_indirect_classes
);
3740 tree cpool_ptr
= build_decl (input_location
, VAR_DECL
, NULL_TREE
,
3741 build_pointer_type (TREE_TYPE (d
)));
3742 java_add_local_var (cpool_ptr
);
3743 TREE_CONSTANT (cpool_ptr
) = 1;
3745 java_add_stmt (build2 (MODIFY_EXPR
, TREE_TYPE (cpool_ptr
),
3746 cpool_ptr
, build_address_of (d
)));
3747 cpool
= build1 (INDIRECT_REF
, TREE_TYPE (d
), cpool_ptr
);
3748 TREE_THIS_NOTRAP (cpool
) = 1;
3749 TYPE_CPOOL_DATA_REF (output_class
) = cpool
;
3753 #include "gt-java-expr.h"