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