re PR java/17265 (Libjava doesn't build)
[gcc.git] / gcc / java / class.c
1 /* Functions related to building classes and their related objects.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
21
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc. */
25
26 /* Written by Per Bothner <bothner@cygnus.com> */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "rtl.h"
34 #include "flags.h"
35 #include "java-tree.h"
36 #include "jcf.h"
37 #include "obstack.h"
38 #include "toplev.h"
39 #include "output.h"
40 #include "parse.h"
41 #include "function.h"
42 #include "ggc.h"
43 #include "stdio.h"
44 #include "target.h"
45 #include "except.h"
46 #include "tree-iterator.h"
47
48 /* DOS brain-damage */
49 #ifndef O_BINARY
50 #define O_BINARY 0 /* MS-DOS brain-damage */
51 #endif
52
53 static tree make_method_value (tree);
54 static tree build_java_method_type (tree, tree, int);
55 static int32 hashUtf8String (const char *, int);
56 static tree make_field_value (tree);
57 static tree get_dispatch_vector (tree);
58 static tree get_dispatch_table (tree, tree);
59 static int supers_all_compiled (tree type);
60 static tree maybe_layout_super_class (tree, tree);
61 static void add_miranda_methods (tree, tree);
62 static int assume_compiled (const char *);
63 static tree build_symbol_entry (tree);
64
65 struct obstack temporary_obstack;
66
67 /* The compiler generates different code depending on whether or not
68 it can assume certain classes have been compiled down to native
69 code or not. The compiler options -fassume-compiled= and
70 -fno-assume-compiled= are used to create a tree of
71 class_flag_node objects. This tree is queried to determine if
72 a class is assume to be compiled or not. Each node in the tree
73 represents either a package or a specific class. */
74
75 typedef struct class_flag_node_struct
76 {
77 /* The class or package name. */
78 const char *ident;
79
80 /* Nonzero if this represents an exclusion. */
81 int value;
82
83 /* Pointers to other nodes in the tree. */
84 struct class_flag_node_struct *parent;
85 struct class_flag_node_struct *sibling;
86 struct class_flag_node_struct *child;
87 } class_flag_node;
88
89 static class_flag_node *find_class_flag_node (class_flag_node *, const char *);
90 static void add_class_flag (class_flag_node **, const char *, int);
91
92 /* This is the root of the include/exclude tree. */
93
94 static class_flag_node *assume_compiled_tree;
95
96 static class_flag_node *enable_assert_tree;
97
98 static GTY(()) tree class_roots[5];
99 #define registered_class class_roots[0]
100 #define fields_ident class_roots[1] /* get_identifier ("fields") */
101 #define info_ident class_roots[2] /* get_identifier ("info") */
102 #define class_list class_roots[3]
103 #define class_dtable_decl class_roots[4]
104
105 /* Return the node that most closely represents the class whose name
106 is IDENT. Start the search from NODE (followed by its siblings).
107 Return NULL if an appropriate node does not exist. */
108
109 static class_flag_node *
110 find_class_flag_node (class_flag_node *node, const char *ident)
111 {
112 while (node)
113 {
114 size_t node_ident_length = strlen (node->ident);
115
116 /* node_ident_length is zero at the root of the tree. If the
117 identifiers are the same length, then we have matching
118 classes. Otherwise check if we've matched an enclosing
119 package name. */
120
121 if (node_ident_length == 0
122 || (strncmp (ident, node->ident, node_ident_length) == 0
123 && (ident[node_ident_length] == '\0'
124 || ident[node_ident_length] == '.')))
125 {
126 /* We've found a match, however, there might be a more
127 specific match. */
128
129 class_flag_node *found = find_class_flag_node (node->child, ident);
130 if (found)
131 return found;
132 else
133 return node;
134 }
135
136 /* No match yet. Continue through the sibling list. */
137 node = node->sibling;
138 }
139
140 /* No match at all in this tree. */
141 return NULL;
142 }
143
144 void
145 add_class_flag (class_flag_node **rootp, const char *ident, int value)
146 {
147 class_flag_node *root = *rootp;
148 class_flag_node *parent, *node;
149
150 /* Create the root of the tree if it doesn't exist yet. */
151
152 if (NULL == root)
153 {
154 root = xmalloc (sizeof (class_flag_node));
155 root->ident = "";
156 root->value = 0;
157 root->sibling = NULL;
158 root->child = NULL;
159 root->parent = NULL;
160 *rootp = root;
161 }
162
163 /* Calling the function with the empty string means we're setting
164 value for the root of the hierarchy. */
165
166 if (0 == ident[0])
167 {
168 root->value = value;
169 return;
170 }
171
172 /* Find the parent node for this new node. PARENT will either be a
173 class or a package name. Adjust PARENT accordingly. */
174
175 parent = find_class_flag_node (root, ident);
176 if (strcmp (ident, parent->ident) == 0)
177 parent->value = value;
178 else
179 {
180 /* Insert new node into the tree. */
181 node = xmalloc (sizeof (class_flag_node));
182
183 node->ident = xstrdup (ident);
184 node->value = value;
185 node->child = NULL;
186
187 node->parent = parent;
188 node->sibling = parent->child;
189 parent->child = node;
190 }
191 }
192
193 /* Add a new IDENT to the include/exclude tree. It's an exclusion
194 if EXCLUDEP is nonzero. */
195
196 void
197 add_assume_compiled (const char *ident, int excludep)
198 {
199 add_class_flag (&assume_compiled_tree, ident, excludep);
200 }
201
202 /* The default value returned by enable_assertions. */
203
204 #define DEFAULT_ENABLE_ASSERT (flag_emit_class_files || optimize == 0)
205
206 /* Enter IDENT (a class or package name) into the enable-assertions table.
207 VALUE is true to enable and false to disable. */
208
209 void
210 add_enable_assert (const char *ident, int value)
211 {
212 if (enable_assert_tree == NULL)
213 add_class_flag (&enable_assert_tree, "", DEFAULT_ENABLE_ASSERT);
214 add_class_flag (&enable_assert_tree, ident, value);
215 }
216
217 /* Returns nonzero if IDENT is the name of a class that the compiler
218 should assume has been compiled to object code. */
219
220 static int
221 assume_compiled (const char *ident)
222 {
223 class_flag_node *i;
224 int result;
225
226 if (NULL == assume_compiled_tree)
227 return 1;
228
229 i = find_class_flag_node (assume_compiled_tree, ident);
230
231 result = ! i->value;
232
233 return (result);
234 }
235
236 /* Return true if we should generate code to check assertions within KLASS. */
237
238 bool
239 enable_assertions (tree klass)
240 {
241 /* Check if command-line specifies whether we should check assertions. */
242
243 if (klass != NULL_TREE && DECL_NAME (klass) && enable_assert_tree != NULL)
244 {
245 const char *ident = IDENTIFIER_POINTER (DECL_NAME (klass));
246 class_flag_node *node
247 = find_class_flag_node (enable_assert_tree, ident);
248 return node->value;
249 }
250
251 /* The default is to enable assertions if generating class files,
252 or not optimizing. */
253 return DEFAULT_ENABLE_ASSERT;
254 }
255
256 /* Return an IDENTIFIER_NODE the same as (OLD_NAME, OLD_LENGTH).
257 except that characters matching OLD_CHAR are substituted by NEW_CHAR.
258 Also, PREFIX is prepended, and SUFFIX is appended. */
259
260 tree
261 ident_subst (const char* old_name,
262 int old_length,
263 const char *prefix,
264 int old_char,
265 int new_char,
266 const char *suffix)
267 {
268 int prefix_len = strlen (prefix);
269 int suffix_len = strlen (suffix);
270 int i = prefix_len + old_length + suffix_len + 1;
271 char *buffer = alloca (i);
272
273 strcpy (buffer, prefix);
274 for (i = 0; i < old_length; i++)
275 {
276 char ch = old_name[i];
277 if (ch == old_char)
278 ch = new_char;
279 buffer[prefix_len + i] = ch;
280 }
281 strcpy (buffer + prefix_len + old_length, suffix);
282 return get_identifier (buffer);
283 }
284
285 /* Return an IDENTIFIER_NODE the same as OLD_ID,
286 except that characters matching OLD_CHAR are substituted by NEW_CHAR.
287 Also, PREFIX is prepended, and SUFFIX is appended. */
288
289 tree
290 identifier_subst (const tree old_id,
291 const char *prefix,
292 int old_char,
293 int new_char,
294 const char *suffix)
295 {
296 return ident_subst (IDENTIFIER_POINTER (old_id), IDENTIFIER_LENGTH (old_id),
297 prefix, old_char, new_char, suffix);
298 }
299
300 /* Generate a valid C identifier from the name of the class TYPE,
301 prefixed by PREFIX. */
302
303 tree
304 mangled_classname (const char *prefix, tree type)
305 {
306 tree ident = TYPE_NAME (type);
307 if (TREE_CODE (ident) != IDENTIFIER_NODE)
308 ident = DECL_NAME (ident);
309 return identifier_subst (ident, prefix, '.', '_', "");
310 }
311
312 tree
313 make_class (void)
314 {
315 tree type;
316 type = make_node (RECORD_TYPE);
317 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC (type);
318
319 return type;
320 }
321
322 /* Given a fully-qualified classname in NAME (whose length is NAME_LENGTH),
323 and where each of the constituents is separated by '/',
324 return a corresponding IDENTIFIER_NODE, except using '.' as separator. */
325
326 tree
327 unmangle_classname (const char *name, int name_length)
328 {
329 tree to_return = ident_subst (name, name_length, "", '/', '.', "");
330 /* It's not sufficient to compare to_return and get_identifier
331 (name) to determine whether to_return is qualified. There are
332 cases in signature analysis where name will be stripped of a
333 trailing ';'. */
334 name = IDENTIFIER_POINTER (to_return);
335 while (*name)
336 if (*name++ == '.')
337 {
338 QUALIFIED_P (to_return) = 1;
339 break;
340 }
341
342 return to_return;
343 }
344
345
346 /* Given a class, create the DECLs for all its associated indirect
347 dispatch tables. */
348 void
349 gen_indirect_dispatch_tables (tree type)
350 {
351 const char *typename = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
352 {
353 tree field = NULL;
354 char *buf = alloca (strlen (typename) + strlen ("_catch_classes_") + 1);
355 tree catch_class_type = make_node (RECORD_TYPE);
356
357 sprintf (buf, "_catch_classes_%s", typename);
358 PUSH_FIELD (catch_class_type, field, "address", utf8const_ptr_type);
359 PUSH_FIELD (catch_class_type, field, "classname", ptr_type_node);
360 FINISH_RECORD (catch_class_type);
361
362 TYPE_CTABLE_DECL (type)
363 = build_decl (VAR_DECL, get_identifier (buf),
364 build_array_type (catch_class_type, 0));
365 DECL_EXTERNAL (TYPE_CTABLE_DECL (type)) = 1;
366 TREE_STATIC (TYPE_CTABLE_DECL (type)) = 1;
367 TREE_READONLY (TYPE_CTABLE_DECL (type)) = 1;
368 TREE_CONSTANT (TYPE_CTABLE_DECL (type)) = 1;
369 DECL_IGNORED_P (TYPE_CTABLE_DECL (type)) = 1;
370 pushdecl (TYPE_CTABLE_DECL (type));
371 }
372
373 if (flag_indirect_dispatch)
374 {
375 {
376 char *buf = alloca (strlen (typename) + strlen ("_otable_syms_") + 1);
377
378 sprintf (buf, "_otable_%s", typename);
379 TYPE_OTABLE_DECL (type) =
380 build_decl (VAR_DECL, get_identifier (buf), otable_type);
381 DECL_EXTERNAL (TYPE_OTABLE_DECL (type)) = 1;
382 TREE_STATIC (TYPE_OTABLE_DECL (type)) = 1;
383 TREE_READONLY (TYPE_OTABLE_DECL (type)) = 1;
384 TREE_CONSTANT (TYPE_OTABLE_DECL (type)) = 1;
385 DECL_IGNORED_P (TYPE_OTABLE_DECL (type)) = 1;
386 pushdecl (TYPE_OTABLE_DECL (type));
387 sprintf (buf, "_otable_syms_%s", typename);
388 TYPE_OTABLE_SYMS_DECL (type) =
389 build_decl (VAR_DECL, get_identifier (buf), symbols_array_type);
390 TREE_STATIC (TYPE_OTABLE_SYMS_DECL (type)) = 1;
391 TREE_CONSTANT (TYPE_OTABLE_SYMS_DECL (type)) = 1;
392 DECL_IGNORED_P(TYPE_OTABLE_SYMS_DECL (type)) = 1;
393 pushdecl (TYPE_OTABLE_SYMS_DECL (type));
394 }
395
396 {
397 char *buf = alloca (strlen (typename) + strlen ("_atable_syms_") + 1);
398 tree decl;
399
400 sprintf (buf, "_atable_%s", typename);
401 TYPE_ATABLE_DECL (type) = decl =
402 build_decl (VAR_DECL, get_identifier (buf), atable_type);
403 DECL_EXTERNAL (decl) = 1;
404 TREE_STATIC (decl) = 1;
405 TREE_READONLY (decl) = 1;
406 TREE_CONSTANT (decl) = 1;
407 DECL_IGNORED_P (decl) = 1;
408 /* Mark the atable as belonging to this class. */
409 pushdecl (decl);
410 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
411 DECL_OWNER (decl) = type;
412 sprintf (buf, "_atable_syms_%s", typename);
413 TYPE_ATABLE_SYMS_DECL (type) =
414 build_decl (VAR_DECL, get_identifier (buf), symbols_array_type);
415 TREE_STATIC (TYPE_ATABLE_SYMS_DECL (type)) = 1;
416 TREE_CONSTANT (TYPE_ATABLE_SYMS_DECL (type)) = 1;
417 DECL_IGNORED_P (TYPE_ATABLE_SYMS_DECL (type)) = 1;
418 pushdecl (TYPE_ATABLE_SYMS_DECL (type));
419 }
420 }
421 }
422
423 tree
424 push_class (tree class_type, tree class_name)
425 {
426 tree decl, signature;
427 location_t saved_loc = input_location;
428 #ifndef USE_MAPPED_LOCATION
429 tree source_name = identifier_subst (class_name, "", '.', '/', ".java");
430 input_filename = IDENTIFIER_POINTER (source_name);
431 input_line = 0;
432 #endif
433 CLASS_P (class_type) = 1;
434 decl = build_decl (TYPE_DECL, class_name, class_type);
435
436 /* dbxout needs a DECL_SIZE if in gstabs mode */
437 DECL_SIZE (decl) = integer_zero_node;
438
439 input_location = saved_loc;
440 signature = identifier_subst (class_name, "L", '.', '/', ";");
441 IDENTIFIER_SIGNATURE_TYPE (signature) = build_pointer_type (class_type);
442
443 /* Setting DECL_ARTIFICIAL forces dbxout.c to specific the type is
444 both a typedef and in the struct name-space. We may want to re-visit
445 this later, but for now it reduces the changes needed for gdb. */
446 DECL_ARTIFICIAL (decl) = 1;
447
448 pushdecl_top_level (decl);
449
450 return decl;
451 }
452
453 /* Finds the (global) class named NAME. Creates the class if not found.
454 Also creates associated TYPE_DECL.
455 Does not check if the class actually exists, load the class,
456 fill in field or methods, or do layout_type. */
457
458 tree
459 lookup_class (tree name)
460 {
461 tree decl = IDENTIFIER_CLASS_VALUE (name);
462 if (decl == NULL_TREE)
463 decl = push_class (make_class (), name);
464 return TREE_TYPE (decl);
465 }
466
467 void
468 set_super_info (int access_flags, tree this_class,
469 tree super_class, int interfaces_count)
470 {
471 int total_supers = interfaces_count;
472 tree class_decl = TYPE_NAME (this_class);
473
474 if (super_class)
475 total_supers++;
476
477 TYPE_BINFO (this_class) = make_tree_binfo (total_supers);
478 TYPE_VFIELD (this_class) = TYPE_VFIELD (object_type_node);
479 if (super_class)
480 {
481 tree super_binfo = make_tree_binfo (0);
482 BINFO_TYPE (super_binfo) = super_class;
483 BINFO_OFFSET (super_binfo) = integer_zero_node;
484 BINFO_BASE_APPEND (TYPE_BINFO (this_class), super_binfo);
485 CLASS_HAS_SUPER_FLAG (TYPE_BINFO (this_class)) = 1;
486 }
487
488 set_class_decl_access_flags (access_flags, class_decl);
489 }
490
491 void
492 set_class_decl_access_flags (int access_flags, tree class_decl)
493 {
494 if (access_flags & ACC_PUBLIC) CLASS_PUBLIC (class_decl) = 1;
495 if (access_flags & ACC_FINAL) CLASS_FINAL (class_decl) = 1;
496 if (access_flags & ACC_SUPER) CLASS_SUPER (class_decl) = 1;
497 if (access_flags & ACC_INTERFACE) CLASS_INTERFACE (class_decl) = 1;
498 if (access_flags & ACC_ABSTRACT) CLASS_ABSTRACT (class_decl) = 1;
499 if (access_flags & ACC_STATIC) CLASS_STATIC (class_decl) = 1;
500 if (access_flags & ACC_PRIVATE) CLASS_PRIVATE (class_decl) = 1;
501 if (access_flags & ACC_PROTECTED) CLASS_PROTECTED (class_decl) = 1;
502 if (access_flags & ACC_STRICT) CLASS_STRICTFP (class_decl) = 1;
503 }
504
505 /* Return length of inheritance chain of CLAS, where java.lang.Object is 0,
506 direct sub-classes of Object are 1, and so on. */
507
508 int
509 class_depth (tree clas)
510 {
511 int depth = 0;
512 if (! CLASS_LOADED_P (clas))
513 load_class (clas, 1);
514 if (TYPE_SIZE (clas) == error_mark_node)
515 return -1;
516 while (clas != object_type_node)
517 {
518 depth++;
519 clas = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (clas), 0));
520 }
521 return depth;
522 }
523
524 /* Return true iff TYPE2 is an interface that extends interface TYPE1 */
525
526 int
527 interface_of_p (tree type1, tree type2)
528 {
529 int i;
530 tree binfo, base_binfo;
531
532 if (! TYPE_BINFO (type2))
533 return 0;
534
535 for (binfo = TYPE_BINFO (type2), i = 0;
536 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
537 if (BINFO_TYPE (base_binfo) == type1)
538 return 1;
539
540 for (binfo = TYPE_BINFO (type2), i = 0;
541 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++) /* */
542 if (BINFO_TYPE (base_binfo)
543 && interface_of_p (type1, BINFO_TYPE (base_binfo)))
544 return 1;
545
546 return 0;
547 }
548
549 /* Return true iff TYPE1 inherits from TYPE2. */
550
551 int
552 inherits_from_p (tree type1, tree type2)
553 {
554 while (type1 != NULL_TREE && TREE_CODE (type1) == RECORD_TYPE)
555 {
556 if (type1 == type2)
557 return 1;
558 type1 = CLASSTYPE_SUPER (type1);
559 }
560 return 0;
561 }
562
563 /* Return a 1 iff TYPE1 is an enclosing context for TYPE2 */
564
565 int
566 enclosing_context_p (tree type1, tree type2)
567 {
568 if (!INNER_CLASS_TYPE_P (type2))
569 return 0;
570
571 for (type2 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2)));
572 type2;
573 type2 = (INNER_CLASS_TYPE_P (type2) ?
574 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2))) : NULL_TREE))
575 {
576 if (type2 == type1)
577 return 1;
578 }
579
580 return 0;
581 }
582
583
584 /* Return 1 iff TYPE1 and TYPE2 share a common enclosing class, regardless of
585 nesting level. */
586
587 int
588 common_enclosing_context_p (tree type1, tree type2)
589 {
590 while (type1)
591 {
592 tree current;
593 for (current = type2; current;
594 current = (INNER_CLASS_TYPE_P (current) ?
595 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current))) :
596 NULL_TREE))
597 if (type1 == current)
598 return 1;
599
600 if (INNER_CLASS_TYPE_P (type1))
601 type1 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1)));
602 else
603 break;
604 }
605 return 0;
606 }
607
608 /* Return 1 iff there exists a common enclosing "this" between TYPE1
609 and TYPE2, without crossing any static context. */
610
611 int
612 common_enclosing_instance_p (tree type1, tree type2)
613 {
614 if (!PURE_INNER_CLASS_TYPE_P (type1) || !PURE_INNER_CLASS_TYPE_P (type2))
615 return 0;
616
617 for (type1 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1))); type1;
618 type1 = (PURE_INNER_CLASS_TYPE_P (type1) ?
619 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1))) : NULL_TREE))
620 {
621 tree current;
622 for (current = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2))); current;
623 current = (PURE_INNER_CLASS_TYPE_P (current) ?
624 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current))) :
625 NULL_TREE))
626 if (type1 == current)
627 return 1;
628 }
629 return 0;
630 }
631
632 /* Add INTERFACE_CLASS to THIS_CLASS iff INTERFACE_CLASS can't be
633 found in THIS_CLASS. Returns NULL_TREE upon success, INTERFACE_CLASS
634 if attempt is made to add it twice. */
635
636 tree
637 maybe_add_interface (tree this_class, tree interface_class)
638 {
639 tree binfo, base_binfo;
640 int i;
641
642 for (binfo = TYPE_BINFO (this_class), i = 0;
643 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
644 if (BINFO_TYPE (base_binfo) == interface_class)
645 return interface_class;
646 add_interface (this_class, interface_class);
647 return NULL_TREE;
648 }
649
650 /* Add the INTERFACE_CLASS as one of the interfaces of THIS_CLASS. */
651
652 void
653 add_interface (tree this_class, tree interface_class)
654 {
655 tree interface_binfo = make_tree_binfo (0);
656
657 BINFO_TYPE (interface_binfo) = interface_class;
658 BINFO_OFFSET (interface_binfo) = integer_zero_node;
659 BINFO_VPTR_FIELD (interface_binfo) = integer_zero_node;
660 BINFO_VIRTUAL_P (interface_binfo) = 1;
661
662 BINFO_BASE_APPEND (TYPE_BINFO (this_class), interface_binfo);
663 }
664
665 #if 0
666 /* Return the address of a pointer to the first FUNCTION_DECL
667 in the list (*LIST) whose DECL_NAME is NAME. */
668
669 static tree *
670 find_named_method (tree *list, tree name)
671 {
672 while (*list && DECL_NAME (*list) != name)
673 list = &TREE_CHAIN (*list);
674 return list;
675 }
676 #endif
677
678 static tree
679 build_java_method_type (tree fntype, tree this_class, int access_flags)
680 {
681 if (access_flags & ACC_STATIC)
682 return fntype;
683 return build_method_type (this_class, fntype);
684 }
685
686 tree
687 add_method_1 (tree this_class, int access_flags, tree name, tree function_type)
688 {
689 tree method_type, fndecl;
690
691 method_type = build_java_method_type (function_type,
692 this_class, access_flags);
693
694 fndecl = build_decl (FUNCTION_DECL, name, method_type);
695 DECL_CONTEXT (fndecl) = this_class;
696
697 DECL_LANG_SPECIFIC (fndecl)
698 = ggc_alloc_cleared (sizeof (struct lang_decl));
699 DECL_LANG_SPECIFIC (fndecl)->desc = LANG_DECL_FUNC;
700
701 /* Initialize the static initializer test table. */
702
703 DECL_FUNCTION_INIT_TEST_TABLE (fndecl) =
704 java_treetreehash_create (10, 1);
705
706 /* Initialize the initialized (static) class table. */
707 if (access_flags & ACC_STATIC)
708 DECL_FUNCTION_INITIALIZED_CLASS_TABLE (fndecl) =
709 htab_create_ggc (50, htab_hash_pointer, htab_eq_pointer, NULL);
710
711 /* Initialize the static method invocation compound list */
712 DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl) = NULL_TREE;
713
714 TREE_CHAIN (fndecl) = TYPE_METHODS (this_class);
715 TYPE_METHODS (this_class) = fndecl;
716
717 /* Notice that this is a finalizer and update the class type
718 accordingly. This is used to optimize instance allocation. */
719 if (name == finalize_identifier_node
720 && TREE_TYPE (function_type) == void_type_node
721 && TREE_VALUE (TYPE_ARG_TYPES (function_type)) == void_type_node)
722 HAS_FINALIZER_P (this_class) = 1;
723
724 if (access_flags & ACC_PUBLIC) METHOD_PUBLIC (fndecl) = 1;
725 if (access_flags & ACC_PROTECTED) METHOD_PROTECTED (fndecl) = 1;
726 if (access_flags & ACC_PRIVATE)
727 METHOD_PRIVATE (fndecl) = DECL_INLINE (fndecl) = 1;
728 if (access_flags & ACC_NATIVE)
729 {
730 METHOD_NATIVE (fndecl) = 1;
731 DECL_EXTERNAL (fndecl) = 1;
732 }
733 if (access_flags & ACC_STATIC)
734 METHOD_STATIC (fndecl) = DECL_INLINE (fndecl) = 1;
735 if (access_flags & ACC_FINAL)
736 METHOD_FINAL (fndecl) = DECL_INLINE (fndecl) = 1;
737 if (access_flags & ACC_SYNCHRONIZED) METHOD_SYNCHRONIZED (fndecl) = 1;
738 if (access_flags & ACC_ABSTRACT) METHOD_ABSTRACT (fndecl) = 1;
739 if (access_flags & ACC_STRICT) METHOD_STRICTFP (fndecl) = 1;
740 return fndecl;
741 }
742
743 /* Add a method to THIS_CLASS.
744 The method's name is NAME.
745 Its signature (mangled type) is METHOD_SIG (an IDENTIFIER_NODE). */
746
747 tree
748 add_method (tree this_class, int access_flags, tree name, tree method_sig)
749 {
750 tree function_type, fndecl;
751 const unsigned char *sig
752 = (const unsigned char *) IDENTIFIER_POINTER (method_sig);
753
754 if (sig[0] != '(')
755 fatal_error ("bad method signature");
756
757 function_type = get_type_from_signature (method_sig);
758 fndecl = add_method_1 (this_class, access_flags, name, function_type);
759 set_java_signature (TREE_TYPE (fndecl), method_sig);
760 return fndecl;
761 }
762
763 tree
764 add_field (tree class, tree name, tree field_type, int flags)
765 {
766 int is_static = (flags & ACC_STATIC) != 0;
767 tree field;
768 field = build_decl (is_static ? VAR_DECL : FIELD_DECL, name, field_type);
769 TREE_CHAIN (field) = TYPE_FIELDS (class);
770 TYPE_FIELDS (class) = field;
771 DECL_CONTEXT (field) = class;
772
773 if (flags & ACC_PUBLIC) FIELD_PUBLIC (field) = 1;
774 if (flags & ACC_PROTECTED) FIELD_PROTECTED (field) = 1;
775 if (flags & ACC_PRIVATE) FIELD_PRIVATE (field) = 1;
776 if (flags & ACC_FINAL) FIELD_FINAL (field) = 1;
777 if (flags & ACC_VOLATILE) FIELD_VOLATILE (field) = 1;
778 if (flags & ACC_TRANSIENT) FIELD_TRANSIENT (field) = 1;
779 if (is_static)
780 {
781 FIELD_STATIC (field) = 1;
782 /* Always make field externally visible. This is required so
783 that native methods can always access the field. */
784 TREE_PUBLIC (field) = 1;
785 /* Considered external until we know what classes are being
786 compiled into this object file. */
787 DECL_EXTERNAL (field) = 1;
788 }
789
790 return field;
791 }
792
793 /* Associate a constant value CONSTANT with VAR_DECL FIELD. */
794
795 void
796 set_constant_value (tree field, tree constant)
797 {
798 if (field == NULL_TREE)
799 warning ("misplaced ConstantValue attribute (not in any field)");
800 else if (DECL_INITIAL (field) != NULL_TREE)
801 warning ("duplicate ConstantValue attribute for field '%s'",
802 IDENTIFIER_POINTER (DECL_NAME (field)));
803 else
804 {
805 DECL_INITIAL (field) = constant;
806 if (TREE_TYPE (constant) != TREE_TYPE (field)
807 && ! (TREE_TYPE (constant) == int_type_node
808 && INTEGRAL_TYPE_P (TREE_TYPE (field))
809 && TYPE_PRECISION (TREE_TYPE (field)) <= 32)
810 && ! (TREE_TYPE (constant) == utf8const_ptr_type
811 && TREE_TYPE (field) == string_ptr_type_node))
812 error ("ConstantValue attribute of field '%s' has wrong type",
813 IDENTIFIER_POINTER (DECL_NAME (field)));
814 if (FIELD_FINAL (field))
815 DECL_FIELD_FINAL_IUD (field) = 1;
816 }
817 }
818
819 /* Count the number of Unicode chars encoded in a given Ut8 string. */
820
821 #if 0
822 int
823 strLengthUtf8 (char *str, int len)
824 {
825 register unsigned char* ptr = (unsigned char*) str;
826 register unsigned char *limit = ptr + len;
827 int str_length = 0;
828 for (; ptr < limit; str_length++) {
829 if (UTF8_GET (ptr, limit) < 0)
830 return -1;
831 }
832 return str_length;
833 }
834 #endif
835
836
837 /* Calculate a hash value for a string encoded in Utf8 format.
838 * This returns the same hash value as specified for java.lang.String.hashCode.
839 */
840
841 static int32
842 hashUtf8String (const char *str, int len)
843 {
844 const unsigned char* ptr = (const unsigned char*) str;
845 const unsigned char *limit = ptr + len;
846 int32 hash = 0;
847 for (; ptr < limit;)
848 {
849 int ch = UTF8_GET (ptr, limit);
850 /* Updated specification from
851 http://www.javasoft.com/docs/books/jls/clarify.html. */
852 hash = (31 * hash) + ch;
853 }
854 return hash;
855 }
856
857 static GTY(()) tree utf8_decl_list = NULL_TREE;
858
859 tree
860 build_utf8_ref (tree name)
861 {
862 const char * name_ptr = IDENTIFIER_POINTER(name);
863 int name_len = IDENTIFIER_LENGTH(name);
864 char buf[60];
865 tree ctype, field = NULL_TREE, str_type, cinit, string;
866 static int utf8_count = 0;
867 int name_hash;
868 tree ref = IDENTIFIER_UTF8_REF (name);
869 tree decl;
870 if (ref != NULL_TREE)
871 return ref;
872
873 ctype = make_node (RECORD_TYPE);
874 str_type = build_prim_array_type (unsigned_byte_type_node,
875 name_len + 1); /* Allow for final '\0'. */
876 PUSH_FIELD (ctype, field, "hash", unsigned_short_type_node);
877 PUSH_FIELD (ctype, field, "length", unsigned_short_type_node);
878 PUSH_FIELD (ctype, field, "data", str_type);
879 FINISH_RECORD (ctype);
880 START_RECORD_CONSTRUCTOR (cinit, ctype);
881 name_hash = hashUtf8String (name_ptr, name_len) & 0xFFFF;
882 PUSH_FIELD_VALUE (cinit, "hash", build_int_cst (NULL_TREE, name_hash));
883 PUSH_FIELD_VALUE (cinit, "length", build_int_cst (NULL_TREE, name_len));
884 string = build_string (name_len, name_ptr);
885 TREE_TYPE (string) = str_type;
886 PUSH_FIELD_VALUE (cinit, "data", string);
887 FINISH_RECORD_CONSTRUCTOR (cinit);
888 TREE_CONSTANT (cinit) = 1;
889 TREE_INVARIANT (cinit) = 1;
890
891 /* Generate a unique-enough identifier. */
892 sprintf(buf, "_Utf%d", ++utf8_count);
893
894 decl = build_decl (VAR_DECL, get_identifier (buf), utf8const_type);
895 TREE_STATIC (decl) = 1;
896 DECL_ARTIFICIAL (decl) = 1;
897 DECL_IGNORED_P (decl) = 1;
898 TREE_READONLY (decl) = 1;
899 TREE_THIS_VOLATILE (decl) = 0;
900 DECL_INITIAL (decl) = cinit;
901
902 if (HAVE_GAS_SHF_MERGE)
903 {
904 int decl_size;
905 /* Ensure decl_size is a multiple of utf8const_type's alignment. */
906 decl_size = (name_len + 5 + TYPE_ALIGN_UNIT (utf8const_type) - 1)
907 & ~(TYPE_ALIGN_UNIT (utf8const_type) - 1);
908 if (flag_merge_constants && decl_size < 256)
909 {
910 char buf[32];
911 int flags = (SECTION_OVERRIDE
912 | SECTION_MERGE | (SECTION_ENTSIZE & decl_size));
913 sprintf (buf, ".rodata.jutf8.%d", decl_size);
914 named_section_flags (buf, flags);
915 DECL_SECTION_NAME (decl) = build_string (strlen (buf), buf);
916 }
917 }
918
919 TREE_CHAIN (decl) = utf8_decl_list;
920 layout_decl (decl, 0);
921 pushdecl (decl);
922 rest_of_decl_compilation (decl, global_bindings_p (), 0);
923 utf8_decl_list = decl;
924 make_decl_rtl (decl);
925 ref = build1 (ADDR_EXPR, utf8const_ptr_type, decl);
926 IDENTIFIER_UTF8_REF (name) = ref;
927 return ref;
928 }
929
930 /* Like build_class_ref, but instead of a direct reference generate a
931 pointer into the constant pool. */
932
933 static tree
934 build_indirect_class_ref (tree type)
935 {
936 int index;
937 tree cl;
938 index = alloc_class_constant (type);
939 cl = build_ref_from_constant_pool (index);
940 return convert (promote_type (class_ptr_type), cl);
941 }
942
943 /* Build a reference to the class TYPE.
944 Also handles primitive types and array types. */
945
946 tree
947 build_class_ref (tree type)
948 {
949 int is_compiled = is_compiled_class (type);
950 if (is_compiled)
951 {
952 tree ref, decl_name, decl;
953 if (TREE_CODE (type) == POINTER_TYPE)
954 type = TREE_TYPE (type);
955
956 /* FIXME: we really want an indirect reference to our
957 superclass. However, libgcj assumes that a superclass
958 pointer always points directly to a class. As a workaround
959 we always emit this hard superclass reference. */
960 if (flag_indirect_dispatch
961 && type != output_class
962 && type != CLASSTYPE_SUPER (output_class)
963 && TREE_CODE (type) == RECORD_TYPE)
964 return build_indirect_class_ref (type);
965
966 if (TREE_CODE (type) == RECORD_TYPE)
967 {
968 if (TYPE_SIZE (type) == error_mark_node)
969 return null_pointer_node;
970 decl_name = identifier_subst (DECL_NAME (TYPE_NAME (type)),
971 "", '/', '/', ".class");
972 decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
973 if (decl == NULL_TREE)
974 {
975 decl = build_decl (VAR_DECL, decl_name, class_type_node);
976 DECL_SIZE (decl) = TYPE_SIZE (class_type_node);
977 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (class_type_node);
978 TREE_STATIC (decl) = 1;
979 TREE_PUBLIC (decl) = 1;
980 DECL_IGNORED_P (decl) = 1;
981 DECL_ARTIFICIAL (decl) = 1;
982 if (is_compiled == 1)
983 DECL_EXTERNAL (decl) = 1;
984 SET_DECL_ASSEMBLER_NAME (decl,
985 java_mangle_class_field
986 (&temporary_obstack, type));
987 make_decl_rtl (decl);
988 pushdecl_top_level (decl);
989 }
990 }
991 else
992 {
993 const char *name;
994 char buffer[25];
995 if (flag_emit_class_files)
996 {
997 const char *prim_class_name;
998 tree prim_class;
999 if (type == char_type_node)
1000 prim_class_name = "java.lang.Character";
1001 else if (type == boolean_type_node)
1002 prim_class_name = "java.lang.Boolean";
1003 else if (type == byte_type_node)
1004 prim_class_name = "java.lang.Byte";
1005 else if (type == short_type_node)
1006 prim_class_name = "java.lang.Short";
1007 else if (type == int_type_node)
1008 prim_class_name = "java.lang.Integer";
1009 else if (type == long_type_node)
1010 prim_class_name = "java.lang.Long";
1011 else if (type == float_type_node)
1012 prim_class_name = "java.lang.Float";
1013 else if (type == double_type_node)
1014 prim_class_name = "java.lang.Double";
1015 else if (type == void_type_node)
1016 prim_class_name = "java.lang.Void";
1017 else
1018 abort ();
1019
1020 prim_class = lookup_class (get_identifier (prim_class_name));
1021 return build3 (COMPONENT_REF, NULL_TREE,
1022 prim_class, TYPE_identifier_node, NULL_TREE);
1023 }
1024 decl_name = TYPE_NAME (type);
1025 if (TREE_CODE (decl_name) == TYPE_DECL)
1026 decl_name = DECL_NAME (decl_name);
1027 name = IDENTIFIER_POINTER (decl_name);
1028 if (strncmp (name, "promoted_", 9) == 0)
1029 name += 9;
1030 sprintf (buffer, "_Jv_%sClass", name);
1031 decl_name = get_identifier (buffer);
1032 decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
1033 if (decl == NULL_TREE)
1034 {
1035 decl = build_decl (VAR_DECL, decl_name, class_type_node);
1036 TREE_STATIC (decl) = 1;
1037 TREE_PUBLIC (decl) = 1;
1038 DECL_EXTERNAL (decl) = 1;
1039 DECL_ARTIFICIAL (decl) = 1;
1040 make_decl_rtl (decl);
1041 pushdecl_top_level (decl);
1042 }
1043 }
1044
1045 ref = build1 (ADDR_EXPR, class_ptr_type, decl);
1046 return ref;
1047 }
1048 else
1049 return build_indirect_class_ref (type);
1050 }
1051
1052 tree
1053 build_static_field_ref (tree fdecl)
1054 {
1055 tree fclass = DECL_CONTEXT (fdecl);
1056 int is_compiled = is_compiled_class (fclass);
1057
1058 /* Allow static final fields to fold to a constant. When using
1059 -fno-assume-compiled, gcj will sometimes try to fold a field from
1060 an uncompiled class. This is required when the field in question
1061 meets the appropriate criteria for a compile-time constant.
1062 However, currently sometimes gcj is too eager and will end up
1063 returning the field itself, leading to an incorrect external
1064 reference being generated. */
1065 if ((is_compiled
1066 && (! flag_indirect_dispatch || current_class == fclass))
1067 || (FIELD_FINAL (fdecl) && DECL_INITIAL (fdecl) != NULL_TREE
1068 && (JSTRING_TYPE_P (TREE_TYPE (fdecl))
1069 || JNUMERIC_TYPE_P (TREE_TYPE (fdecl)))
1070 && TREE_CONSTANT (DECL_INITIAL (fdecl))))
1071 {
1072 if (!DECL_RTL_SET_P (fdecl))
1073 {
1074 if (is_compiled == 1)
1075 DECL_EXTERNAL (fdecl) = 1;
1076 make_decl_rtl (fdecl);
1077 }
1078 return fdecl;
1079 }
1080
1081 if (flag_indirect_dispatch)
1082 {
1083 tree table_index
1084 = build_int_cst (NULL_TREE, get_symbol_table_index
1085 (fdecl, &TYPE_ATABLE_METHODS (output_class)));
1086 tree field_address
1087 = build4 (ARRAY_REF, build_pointer_type (TREE_TYPE (fdecl)),
1088 TYPE_ATABLE_DECL (output_class), table_index,
1089 NULL_TREE, NULL_TREE);
1090 return fold (build1 (INDIRECT_REF, TREE_TYPE (fdecl),
1091 field_address));
1092 }
1093 else
1094 {
1095 /* Compile as:
1096 * *(FTYPE*)build_class_ref(FCLASS)->fields[INDEX].info.addr */
1097 tree ref = build_class_ref (fclass);
1098 tree fld;
1099 int field_index = 0;
1100 ref = build1 (INDIRECT_REF, class_type_node, ref);
1101 ref = build3 (COMPONENT_REF, field_ptr_type_node, ref,
1102 lookup_field (&class_type_node, fields_ident),
1103 NULL_TREE);
1104
1105 for (fld = TYPE_FIELDS (fclass); ; fld = TREE_CHAIN (fld))
1106 {
1107 if (fld == fdecl)
1108 break;
1109 if (fld == NULL_TREE)
1110 fatal_error ("field '%s' not found in class",
1111 IDENTIFIER_POINTER (DECL_NAME (fdecl)));
1112 if (FIELD_STATIC (fld))
1113 field_index++;
1114 }
1115 field_index *= int_size_in_bytes (field_type_node);
1116 ref = fold (build2 (PLUS_EXPR, field_ptr_type_node,
1117 ref, build_int_cst (NULL_TREE, field_index)));
1118 ref = build1 (INDIRECT_REF, field_type_node, ref);
1119 ref = build3 (COMPONENT_REF, field_info_union_node,
1120 ref, lookup_field (&field_type_node, info_ident),
1121 NULL_TREE);
1122 ref = build3 (COMPONENT_REF, ptr_type_node,
1123 ref, TREE_CHAIN (TYPE_FIELDS (field_info_union_node)),
1124 NULL_TREE);
1125 ref = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (fdecl)), ref);
1126 return fold (build1 (INDIRECT_REF, TREE_TYPE(fdecl), ref));
1127 }
1128 }
1129
1130 int
1131 get_access_flags_from_decl (tree decl)
1132 {
1133 int access_flags = 0;
1134 if (TREE_CODE (decl) == FIELD_DECL || TREE_CODE (decl) == VAR_DECL)
1135 {
1136 if (FIELD_STATIC (decl))
1137 access_flags |= ACC_STATIC;
1138 if (FIELD_PUBLIC (decl))
1139 access_flags |= ACC_PUBLIC;
1140 if (FIELD_PROTECTED (decl))
1141 access_flags |= ACC_PROTECTED;
1142 if (FIELD_PRIVATE (decl))
1143 access_flags |= ACC_PRIVATE;
1144 if (FIELD_FINAL (decl))
1145 access_flags |= ACC_FINAL;
1146 if (FIELD_VOLATILE (decl))
1147 access_flags |= ACC_VOLATILE;
1148 if (FIELD_TRANSIENT (decl))
1149 access_flags |= ACC_TRANSIENT;
1150 return access_flags;
1151 }
1152 if (TREE_CODE (decl) == TYPE_DECL)
1153 {
1154 if (CLASS_PUBLIC (decl))
1155 access_flags |= ACC_PUBLIC;
1156 if (CLASS_FINAL (decl))
1157 access_flags |= ACC_FINAL;
1158 if (CLASS_SUPER (decl))
1159 access_flags |= ACC_SUPER;
1160 if (CLASS_INTERFACE (decl))
1161 access_flags |= ACC_INTERFACE;
1162 if (CLASS_ABSTRACT (decl))
1163 access_flags |= ACC_ABSTRACT;
1164 if (CLASS_STATIC (decl))
1165 access_flags |= ACC_STATIC;
1166 if (CLASS_PRIVATE (decl))
1167 access_flags |= ACC_PRIVATE;
1168 if (CLASS_PROTECTED (decl))
1169 access_flags |= ACC_PROTECTED;
1170 if (CLASS_STRICTFP (decl))
1171 access_flags |= ACC_STRICT;
1172 return access_flags;
1173 }
1174 if (TREE_CODE (decl) == FUNCTION_DECL)
1175 {
1176 if (METHOD_PUBLIC (decl))
1177 access_flags |= ACC_PUBLIC;
1178 if (METHOD_PRIVATE (decl))
1179 access_flags |= ACC_PRIVATE;
1180 if (METHOD_PROTECTED (decl))
1181 access_flags |= ACC_PROTECTED;
1182 if (METHOD_STATIC (decl))
1183 access_flags |= ACC_STATIC;
1184 if (METHOD_FINAL (decl))
1185 access_flags |= ACC_FINAL;
1186 if (METHOD_SYNCHRONIZED (decl))
1187 access_flags |= ACC_SYNCHRONIZED;
1188 if (METHOD_NATIVE (decl))
1189 access_flags |= ACC_NATIVE;
1190 if (METHOD_ABSTRACT (decl))
1191 access_flags |= ACC_ABSTRACT;
1192 if (METHOD_STRICTFP (decl))
1193 access_flags |= ACC_STRICT;
1194 if (METHOD_INVISIBLE (decl))
1195 access_flags |= ACC_INVISIBLE;
1196 return access_flags;
1197 }
1198 abort ();
1199 }
1200
1201 /** Make reflection data (_Jv_Field) for field FDECL. */
1202
1203 static tree
1204 make_field_value (tree fdecl)
1205 {
1206 tree finit;
1207 int flags;
1208 tree type = TREE_TYPE (fdecl);
1209 int resolved = is_compiled_class (type) && ! flag_indirect_dispatch;
1210
1211 START_RECORD_CONSTRUCTOR (finit, field_type_node);
1212 PUSH_FIELD_VALUE (finit, "name", build_utf8_ref (DECL_NAME (fdecl)));
1213 if (resolved)
1214 type = build_class_ref (type);
1215 else
1216 {
1217 tree signature = build_java_signature (type);
1218
1219 type = build_utf8_ref (unmangle_classname
1220 (IDENTIFIER_POINTER (signature),
1221 IDENTIFIER_LENGTH (signature)));
1222 }
1223 PUSH_FIELD_VALUE (finit, "type", type);
1224
1225 flags = get_access_flags_from_decl (fdecl);
1226 if (! resolved)
1227 flags |= 0x8000 /* FIELD_UNRESOLVED_FLAG */;
1228
1229 PUSH_FIELD_VALUE (finit, "accflags", build_int_cst (NULL_TREE, flags));
1230 PUSH_FIELD_VALUE (finit, "bsize", TYPE_SIZE_UNIT (TREE_TYPE (fdecl)));
1231
1232 PUSH_FIELD_VALUE
1233 (finit, "info",
1234 build_constructor (field_info_union_node,
1235 build_tree_list
1236 ((FIELD_STATIC (fdecl)
1237 ? TREE_CHAIN (TYPE_FIELDS (field_info_union_node))
1238 : TYPE_FIELDS (field_info_union_node)),
1239 (FIELD_STATIC (fdecl)
1240 ? build_address_of (build_static_field_ref (fdecl))
1241 : byte_position (fdecl)))));
1242
1243 FINISH_RECORD_CONSTRUCTOR (finit);
1244 return finit;
1245 }
1246
1247 /** Make reflection data (_Jv_Method) for method MDECL. */
1248
1249 static tree
1250 make_method_value (tree mdecl)
1251 {
1252 static int method_name_count = 0;
1253 tree minit;
1254 tree index;
1255 tree code;
1256 tree class_decl;
1257 #define ACC_TRANSLATED 0x4000
1258 int accflags = get_access_flags_from_decl (mdecl) | ACC_TRANSLATED;
1259
1260 class_decl = DECL_CONTEXT (mdecl);
1261 /* For interfaces, the index field contains the dispatch index. */
1262 if (CLASS_INTERFACE (TYPE_NAME (class_decl)))
1263 index = build_int_cst (NULL_TREE,
1264 get_interface_method_index (mdecl, class_decl));
1265 else if (!flag_indirect_dispatch && get_method_index (mdecl) != NULL_TREE)
1266 index = get_method_index (mdecl);
1267 else
1268 index = integer_minus_one_node;
1269
1270 code = null_pointer_node;
1271 if (DECL_RTL_SET_P (mdecl))
1272 code = build1 (ADDR_EXPR, nativecode_ptr_type_node, mdecl);
1273 START_RECORD_CONSTRUCTOR (minit, method_type_node);
1274 PUSH_FIELD_VALUE (minit, "name",
1275 build_utf8_ref (DECL_CONSTRUCTOR_P (mdecl) ?
1276 init_identifier_node
1277 : DECL_NAME (mdecl)));
1278 {
1279 tree signature = build_java_signature (TREE_TYPE (mdecl));
1280 PUSH_FIELD_VALUE (minit, "signature",
1281 (build_utf8_ref
1282 (unmangle_classname
1283 (IDENTIFIER_POINTER(signature),
1284 IDENTIFIER_LENGTH(signature)))));
1285 }
1286 PUSH_FIELD_VALUE (minit, "accflags", build_int_cst (NULL_TREE, accflags));
1287 PUSH_FIELD_VALUE (minit, "index", index);
1288 PUSH_FIELD_VALUE (minit, "ncode", code);
1289
1290 {
1291 /* Compute the `throws' information for the method. */
1292 tree table = null_pointer_node;
1293 if (DECL_FUNCTION_THROWS (mdecl) != NULL_TREE)
1294 {
1295 int length = 1 + list_length (DECL_FUNCTION_THROWS (mdecl));
1296 tree iter, type, array;
1297 char buf[60];
1298
1299 table = tree_cons (NULL_TREE, table, NULL_TREE);
1300 for (iter = DECL_FUNCTION_THROWS (mdecl);
1301 iter != NULL_TREE;
1302 iter = TREE_CHAIN (iter))
1303 {
1304 tree sig = DECL_NAME (TYPE_NAME (TREE_VALUE (iter)));
1305 tree utf8
1306 = build_utf8_ref (unmangle_classname (IDENTIFIER_POINTER (sig),
1307 IDENTIFIER_LENGTH (sig)));
1308 table = tree_cons (NULL_TREE, utf8, table);
1309 }
1310 type = build_prim_array_type (ptr_type_node, length);
1311 table = build_constructor (type, table);
1312 /* Compute something unique enough. */
1313 sprintf (buf, "_methods%d", method_name_count++);
1314 array = build_decl (VAR_DECL, get_identifier (buf), type);
1315 DECL_INITIAL (array) = table;
1316 TREE_STATIC (array) = 1;
1317 DECL_ARTIFICIAL (array) = 1;
1318 DECL_IGNORED_P (array) = 1;
1319 rest_of_decl_compilation (array, 1, 0);
1320
1321 table = build1 (ADDR_EXPR, ptr_type_node, array);
1322 }
1323
1324 PUSH_FIELD_VALUE (minit, "throws", table);
1325 }
1326
1327 FINISH_RECORD_CONSTRUCTOR (minit);
1328 return minit;
1329 }
1330
1331 static tree
1332 get_dispatch_vector (tree type)
1333 {
1334 tree vtable = TYPE_VTABLE (type);
1335
1336 if (vtable == NULL_TREE)
1337 {
1338 HOST_WIDE_INT i;
1339 tree method;
1340 tree super = CLASSTYPE_SUPER (type);
1341 HOST_WIDE_INT nvirtuals = tree_low_cst (TYPE_NVIRTUALS (type), 0);
1342 vtable = make_tree_vec (nvirtuals);
1343 TYPE_VTABLE (type) = vtable;
1344 if (super != NULL_TREE)
1345 {
1346 tree super_vtable = get_dispatch_vector (super);
1347
1348 for (i = tree_low_cst (TYPE_NVIRTUALS (super), 0); --i >= 0; )
1349 TREE_VEC_ELT (vtable, i) = TREE_VEC_ELT (super_vtable, i);
1350 }
1351
1352 for (method = TYPE_METHODS (type); method != NULL_TREE;
1353 method = TREE_CHAIN (method))
1354 {
1355 tree method_index = get_method_index (method);
1356 if (method_index != NULL_TREE
1357 && host_integerp (method_index, 0))
1358 TREE_VEC_ELT (vtable, tree_low_cst (method_index, 0)) = method;
1359 }
1360 }
1361
1362 return vtable;
1363 }
1364
1365 static tree
1366 get_dispatch_table (tree type, tree this_class_addr)
1367 {
1368 int abstract_p = CLASS_ABSTRACT (TYPE_NAME (type));
1369 tree vtable = get_dispatch_vector (type);
1370 int i, j;
1371 tree list = NULL_TREE;
1372 int nvirtuals = TREE_VEC_LENGTH (vtable);
1373 int arraysize;
1374 tree gc_descr;
1375
1376 for (i = nvirtuals; --i >= 0; )
1377 {
1378 tree method = TREE_VEC_ELT (vtable, i);
1379 if (METHOD_ABSTRACT (method))
1380 {
1381 if (! abstract_p)
1382 warning ("%Jabstract method in non-abstract class", method);
1383
1384 if (TARGET_VTABLE_USES_DESCRIPTORS)
1385 for (j = 0; j < TARGET_VTABLE_USES_DESCRIPTORS; ++j)
1386 list = tree_cons (NULL_TREE, null_pointer_node, list);
1387 else
1388 list = tree_cons (NULL_TREE, null_pointer_node, list);
1389 }
1390 else
1391 {
1392 if (!DECL_RTL_SET_P (method))
1393 make_decl_rtl (method);
1394
1395 if (TARGET_VTABLE_USES_DESCRIPTORS)
1396 for (j = 0; j < TARGET_VTABLE_USES_DESCRIPTORS; ++j)
1397 {
1398 tree fdesc = build2 (FDESC_EXPR, nativecode_ptr_type_node,
1399 method, build_int_cst (NULL_TREE, j));
1400 TREE_CONSTANT (fdesc) = 1;
1401 TREE_INVARIANT (fdesc) = 1;
1402 list = tree_cons (NULL_TREE, fdesc, list);
1403 }
1404 else
1405 list = tree_cons (NULL_TREE,
1406 build1 (ADDR_EXPR, nativecode_ptr_type_node,
1407 method),
1408 list);
1409 }
1410 }
1411
1412 /* Dummy entry for compatibility with G++ -fvtable-thunks. When
1413 using the Boehm GC we sometimes stash a GC type descriptor
1414 there. We set the PURPOSE to NULL_TREE not to interfere (reset)
1415 the emitted byte count during the output to the assembly file. */
1416 /* With TARGET_VTABLE_USES_DESCRIPTORS, we only add one extra
1417 fake "function descriptor". It's first word is the is the class
1418 pointer, and subsequent words (usually one) contain the GC descriptor.
1419 In all other cases, we reserve two extra vtable slots. */
1420 gc_descr = get_boehm_type_descriptor (type);
1421 list = tree_cons (NULL_TREE, gc_descr, list);
1422 for (j = 1; j < TARGET_VTABLE_USES_DESCRIPTORS-1; ++j)
1423 list = tree_cons (NULL_TREE, gc_descr, list);
1424 list = tree_cons (NULL_TREE, this_class_addr, list);
1425
1426 /** Pointer to type_info object (to be implemented), according to g++ ABI. */
1427 list = tree_cons (NULL_TREE, null_pointer_node, list);
1428 /** Offset to start of whole object. Always (ptrdiff_t)0 for Java. */
1429 list = tree_cons (integer_zero_node, null_pointer_node, list);
1430
1431 arraysize = (TARGET_VTABLE_USES_DESCRIPTORS? nvirtuals + 1 : nvirtuals + 2);
1432 if (TARGET_VTABLE_USES_DESCRIPTORS)
1433 arraysize *= TARGET_VTABLE_USES_DESCRIPTORS;
1434 arraysize += 2;
1435 return build_constructor (build_prim_array_type (nativecode_ptr_type_node,
1436 arraysize), list);
1437 }
1438
1439
1440 /* Set the method_index for a method decl. */
1441 void
1442 set_method_index (tree decl, tree method_index)
1443 {
1444 method_index = fold (convert (sizetype, method_index));
1445
1446 if (TARGET_VTABLE_USES_DESCRIPTORS)
1447 /* Add one to skip bogus descriptor for class and GC descriptor. */
1448 method_index = size_binop (PLUS_EXPR, method_index, size_int (1));
1449 else
1450 /* Add 1 to skip "class" field of dtable, and 1 to skip GC descriptor. */
1451 method_index = size_binop (PLUS_EXPR, method_index, size_int (2));
1452
1453 DECL_VINDEX (decl) = method_index;
1454 }
1455
1456 /* Get the method_index for a method decl. */
1457 tree
1458 get_method_index (tree decl)
1459 {
1460 tree method_index = DECL_VINDEX (decl);
1461
1462 if (! method_index)
1463 return NULL;
1464
1465 if (TARGET_VTABLE_USES_DESCRIPTORS)
1466 /* Sub one to skip bogus descriptor for class and GC descriptor. */
1467 method_index = size_binop (MINUS_EXPR, method_index, size_int (1));
1468 else
1469 /* Sub 1 to skip "class" field of dtable, and 1 to skip GC descriptor. */
1470 method_index = size_binop (MINUS_EXPR, method_index, size_int (2));
1471
1472 return method_index;
1473 }
1474
1475 static int
1476 supers_all_compiled (tree type)
1477 {
1478 while (type != NULL_TREE)
1479 {
1480 if (!assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)))))
1481 return 0;
1482 type = CLASSTYPE_SUPER (type);
1483 }
1484 return 1;
1485 }
1486
1487 void
1488 make_class_data (tree type)
1489 {
1490 tree decl, cons, temp;
1491 tree field, fields_decl;
1492 tree static_fields = NULL_TREE;
1493 tree instance_fields = NULL_TREE;
1494 HOST_WIDE_INT static_field_count = 0;
1495 HOST_WIDE_INT instance_field_count = 0;
1496 HOST_WIDE_INT field_count;
1497 tree field_array_type;
1498 tree method;
1499 tree methods = NULL_TREE;
1500 tree dtable_decl = NULL_TREE;
1501 HOST_WIDE_INT method_count = 0;
1502 tree method_array_type;
1503 tree methods_decl;
1504 tree super;
1505 tree this_class_addr;
1506 tree constant_pool_constructor;
1507 tree interfaces = null_pointer_node;
1508 int interface_len = 0;
1509 tree type_decl = TYPE_NAME (type);
1510 /** Offset from start of virtual function table declaration
1511 to where objects actually point at, following new g++ ABI. */
1512 tree dtable_start_offset = build_int_cst (NULL_TREE,
1513 2 * POINTER_SIZE / BITS_PER_UNIT);
1514
1515 this_class_addr = build_class_ref (type);
1516 decl = TREE_OPERAND (this_class_addr, 0);
1517
1518 /* Build Field array. */
1519 field = TYPE_FIELDS (type);
1520 if (DECL_NAME (field) == NULL_TREE)
1521 field = TREE_CHAIN (field); /* Skip dummy field for inherited data. */
1522 for ( ; field != NULL_TREE; field = TREE_CHAIN (field))
1523 {
1524 if (! DECL_ARTIFICIAL (field))
1525 {
1526 tree init = make_field_value (field);
1527 if (FIELD_STATIC (field))
1528 {
1529 tree initial = DECL_INITIAL (field);
1530 static_field_count++;
1531 static_fields = tree_cons (NULL_TREE, init, static_fields);
1532 /* If the initial value is a string constant,
1533 prevent output_constant from trying to assemble the value. */
1534 if (initial != NULL_TREE
1535 && TREE_TYPE (initial) == string_ptr_type_node)
1536 DECL_INITIAL (field) = NULL_TREE;
1537 rest_of_decl_compilation (field, 1, 1);
1538 DECL_INITIAL (field) = initial;
1539 }
1540 else
1541 {
1542 instance_field_count++;
1543 instance_fields = tree_cons (NULL_TREE, init, instance_fields);
1544 }
1545 }
1546 }
1547 field_count = static_field_count + instance_field_count;
1548 if (field_count > 0)
1549 {
1550 static_fields = nreverse (static_fields);
1551 instance_fields = nreverse (instance_fields);
1552 static_fields = chainon (static_fields, instance_fields);
1553 field_array_type = build_prim_array_type (field_type_node, field_count);
1554 fields_decl = build_decl (VAR_DECL, mangled_classname ("_FL_", type),
1555 field_array_type);
1556 DECL_INITIAL (fields_decl) = build_constructor (field_array_type,
1557 static_fields);
1558 TREE_STATIC (fields_decl) = 1;
1559 DECL_ARTIFICIAL (fields_decl) = 1;
1560 DECL_IGNORED_P (fields_decl) = 1;
1561 rest_of_decl_compilation (fields_decl, 1, 0);
1562 }
1563 else
1564 fields_decl = NULL_TREE;
1565
1566 /* Build Method array. */
1567 for (method = TYPE_METHODS (type);
1568 method != NULL_TREE; method = TREE_CHAIN (method))
1569 {
1570 tree init;
1571 if (METHOD_PRIVATE (method)
1572 && ! flag_keep_inline_functions
1573 && (flag_inline_functions || optimize))
1574 continue;
1575 init = make_method_value (method);
1576 method_count++;
1577 methods = tree_cons (NULL_TREE, init, methods);
1578 }
1579 method_array_type = build_prim_array_type (method_type_node, method_count);
1580 methods_decl = build_decl (VAR_DECL, mangled_classname ("_MT_", type),
1581 method_array_type);
1582 DECL_INITIAL (methods_decl) = build_constructor (method_array_type,
1583 nreverse (methods));
1584 TREE_STATIC (methods_decl) = 1;
1585 DECL_ARTIFICIAL (methods_decl) = 1;
1586 DECL_IGNORED_P (methods_decl) = 1;
1587 rest_of_decl_compilation (methods_decl, 1, 0);
1588
1589 if (supers_all_compiled (type) && ! CLASS_INTERFACE (type_decl)
1590 && !flag_indirect_dispatch)
1591 {
1592 tree dtable = get_dispatch_table (type, this_class_addr);
1593 dtable_decl = build_dtable_decl (type);
1594 DECL_INITIAL (dtable_decl) = dtable;
1595 TREE_STATIC (dtable_decl) = 1;
1596 DECL_ARTIFICIAL (dtable_decl) = 1;
1597 DECL_IGNORED_P (dtable_decl) = 1;
1598 TREE_PUBLIC (dtable_decl) = 1;
1599 rest_of_decl_compilation (dtable_decl, 1, 0);
1600 if (type == class_type_node)
1601 class_dtable_decl = dtable_decl;
1602 }
1603
1604 if (class_dtable_decl == NULL_TREE)
1605 {
1606 class_dtable_decl = build_dtable_decl (class_type_node);
1607 TREE_STATIC (class_dtable_decl) = 1;
1608 DECL_ARTIFICIAL (class_dtable_decl) = 1;
1609 DECL_IGNORED_P (class_dtable_decl) = 1;
1610 if (is_compiled_class (class_type_node) != 2)
1611 DECL_EXTERNAL (class_dtable_decl) = 1;
1612 rest_of_decl_compilation (class_dtable_decl, 1, 0);
1613 }
1614
1615 super = CLASSTYPE_SUPER (type);
1616 if (super == NULL_TREE)
1617 super = null_pointer_node;
1618 else if (/* FIXME: we should also test for (!
1619 flag_indirect_dispatch) here, but libgcj can't cope with
1620 a symbolic reference a superclass in the class data. */
1621 assume_compiled (IDENTIFIER_POINTER (DECL_NAME (type_decl)))
1622 && assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (super)))))
1623 super = build_class_ref (super);
1624 else
1625 {
1626 int super_index = alloc_class_constant (super);
1627 super = build_int_cst (ptr_type_node, super_index);
1628 }
1629
1630 /* Build and emit the array of implemented interfaces. */
1631 if (type != object_type_node)
1632 interface_len = BINFO_N_BASE_BINFOS (TYPE_BINFO (type)) - 1;
1633
1634 if (interface_len > 0)
1635 {
1636 tree init = NULL_TREE;
1637 int i;
1638 tree interface_array_type, idecl;
1639 interface_array_type
1640 = build_prim_array_type (class_ptr_type, interface_len);
1641 idecl = build_decl (VAR_DECL, mangled_classname ("_IF_", type),
1642 interface_array_type);
1643
1644 for (i = interface_len; i > 0; i--)
1645 {
1646 tree child = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
1647 tree iclass = BINFO_TYPE (child);
1648 tree index;
1649 if (! flag_indirect_dispatch
1650 && (assume_compiled
1651 (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (iclass))))))
1652 index = build_class_ref (iclass);
1653 else
1654 {
1655 int int_index = alloc_class_constant (iclass);
1656 index = build_int_cst (ptr_type_node, int_index);
1657 }
1658 init = tree_cons (NULL_TREE, index, init);
1659 }
1660 DECL_INITIAL (idecl) = build_constructor (interface_array_type, init);
1661 TREE_STATIC (idecl) = 1;
1662 DECL_ARTIFICIAL (idecl) = 1;
1663 DECL_IGNORED_P (idecl) = 1;
1664 interfaces = build1 (ADDR_EXPR, ptr_type_node, idecl);
1665 rest_of_decl_compilation (idecl, 1, 0);
1666 }
1667
1668 constant_pool_constructor = build_constants_constructor ();
1669
1670 if (flag_indirect_dispatch)
1671 {
1672 TYPE_OTABLE_DECL (type)
1673 = emit_symbol_table
1674 (DECL_NAME (TYPE_OTABLE_DECL (type)),
1675 TYPE_OTABLE_DECL (type), TYPE_OTABLE_METHODS (type),
1676 TYPE_OTABLE_SYMS_DECL (type), integer_type_node);
1677
1678 TYPE_ATABLE_DECL (type)
1679 = emit_symbol_table
1680 (DECL_NAME (TYPE_ATABLE_DECL (type)),
1681 TYPE_ATABLE_DECL (type), TYPE_ATABLE_METHODS (type),
1682 TYPE_ATABLE_SYMS_DECL (type), ptr_type_node);
1683 }
1684
1685 TYPE_CTABLE_DECL (type) = emit_catch_table (type);
1686
1687 START_RECORD_CONSTRUCTOR (temp, object_type_node);
1688 PUSH_FIELD_VALUE (temp, "vtable",
1689 build2 (PLUS_EXPR, dtable_ptr_type,
1690 build1 (ADDR_EXPR, dtable_ptr_type,
1691 class_dtable_decl),
1692 dtable_start_offset));
1693 if (! flag_hash_synchronization)
1694 PUSH_FIELD_VALUE (temp, "sync_info", null_pointer_node);
1695 FINISH_RECORD_CONSTRUCTOR (temp);
1696 START_RECORD_CONSTRUCTOR (cons, class_type_node);
1697 PUSH_SUPER_VALUE (cons, temp);
1698 PUSH_FIELD_VALUE (cons, "next", null_pointer_node);
1699 PUSH_FIELD_VALUE (cons, "name", build_utf8_ref (DECL_NAME (type_decl)));
1700 PUSH_FIELD_VALUE (cons, "accflags",
1701 build_int_cst (NULL_TREE,
1702 get_access_flags_from_decl (type_decl)));
1703
1704 PUSH_FIELD_VALUE (cons, "superclass",
1705 CLASS_INTERFACE (type_decl) ? null_pointer_node : super);
1706 PUSH_FIELD_VALUE (cons, "constants", constant_pool_constructor);
1707 PUSH_FIELD_VALUE (cons, "methods",
1708 build1 (ADDR_EXPR, method_ptr_type_node, methods_decl));
1709 PUSH_FIELD_VALUE (cons, "method_count",
1710 build_int_cst (NULL_TREE, method_count));
1711
1712 if (flag_indirect_dispatch)
1713 PUSH_FIELD_VALUE (cons, "vtable_method_count", integer_minus_one_node);
1714 else
1715 PUSH_FIELD_VALUE (cons, "vtable_method_count", TYPE_NVIRTUALS (type));
1716
1717 PUSH_FIELD_VALUE (cons, "fields",
1718 fields_decl == NULL_TREE ? null_pointer_node
1719 : build1 (ADDR_EXPR, field_ptr_type_node, fields_decl));
1720 PUSH_FIELD_VALUE (cons, "size_in_bytes", size_in_bytes (type));
1721 PUSH_FIELD_VALUE (cons, "field_count",
1722 build_int_cst (NULL_TREE, field_count));
1723 PUSH_FIELD_VALUE (cons, "static_field_count",
1724 build_int_cst (NULL_TREE, static_field_count));
1725
1726 if (flag_indirect_dispatch)
1727 PUSH_FIELD_VALUE (cons, "vtable", null_pointer_node);
1728 else
1729 PUSH_FIELD_VALUE (cons, "vtable",
1730 dtable_decl == NULL_TREE ? null_pointer_node
1731 : build2 (PLUS_EXPR, dtable_ptr_type,
1732 build1 (ADDR_EXPR, dtable_ptr_type,
1733 dtable_decl),
1734 dtable_start_offset));
1735 if (TYPE_OTABLE_METHODS (type) == NULL_TREE)
1736 {
1737 PUSH_FIELD_VALUE (cons, "otable", null_pointer_node);
1738 PUSH_FIELD_VALUE (cons, "otable_syms", null_pointer_node);
1739 }
1740 else
1741 {
1742 PUSH_FIELD_VALUE (cons, "otable",
1743 build1 (ADDR_EXPR, otable_ptr_type, TYPE_OTABLE_DECL (type)));
1744 PUSH_FIELD_VALUE (cons, "otable_syms",
1745 build1 (ADDR_EXPR, symbols_array_ptr_type,
1746 TYPE_OTABLE_SYMS_DECL (type)));
1747 TREE_CONSTANT (TYPE_OTABLE_DECL (type)) = 1;
1748 TREE_INVARIANT (TYPE_OTABLE_DECL (type)) = 1;
1749 }
1750 if (TYPE_ATABLE_METHODS(type) == NULL_TREE)
1751 {
1752 PUSH_FIELD_VALUE (cons, "atable", null_pointer_node);
1753 PUSH_FIELD_VALUE (cons, "atable_syms", null_pointer_node);
1754 }
1755 else
1756 {
1757 PUSH_FIELD_VALUE (cons, "atable",
1758 build1 (ADDR_EXPR, atable_ptr_type, TYPE_ATABLE_DECL (type)));
1759 PUSH_FIELD_VALUE (cons, "atable_syms",
1760 build1 (ADDR_EXPR, symbols_array_ptr_type,
1761 TYPE_ATABLE_SYMS_DECL (type)));
1762 TREE_CONSTANT (TYPE_ATABLE_DECL (type)) = 1;
1763 TREE_INVARIANT (TYPE_ATABLE_DECL (type)) = 1;
1764 }
1765
1766 PUSH_FIELD_VALUE (cons, "catch_classes",
1767 build1 (ADDR_EXPR, ptr_type_node, TYPE_CTABLE_DECL (type)));
1768 PUSH_FIELD_VALUE (cons, "interfaces", interfaces);
1769 PUSH_FIELD_VALUE (cons, "loader", null_pointer_node);
1770 PUSH_FIELD_VALUE (cons, "interface_count",
1771 build_int_cst (NULL_TREE, interface_len));
1772 PUSH_FIELD_VALUE (cons, "state", integer_zero_node);
1773
1774 PUSH_FIELD_VALUE (cons, "thread", null_pointer_node);
1775 PUSH_FIELD_VALUE (cons, "depth", integer_zero_node);
1776 PUSH_FIELD_VALUE (cons, "ancestors", null_pointer_node);
1777 PUSH_FIELD_VALUE (cons, "idt", null_pointer_node);
1778 PUSH_FIELD_VALUE (cons, "arrayclass", null_pointer_node);
1779 PUSH_FIELD_VALUE (cons, "protectionDomain", null_pointer_node);
1780 PUSH_FIELD_VALUE (cons, "hack_signers", null_pointer_node);
1781 PUSH_FIELD_VALUE (cons, "chain", null_pointer_node);
1782 PUSH_FIELD_VALUE (cons, "aux_info", null_pointer_node);
1783
1784 FINISH_RECORD_CONSTRUCTOR (cons);
1785
1786 DECL_INITIAL (decl) = cons;
1787
1788 /* Hash synchronization requires at least 64-bit alignment. */
1789 if (flag_hash_synchronization && POINTER_SIZE < 64)
1790 DECL_ALIGN (decl) = 64;
1791
1792 rest_of_decl_compilation (decl, 1, 0);
1793 }
1794
1795 void
1796 finish_class (void)
1797 {
1798 java_expand_catch_classes (current_class);
1799
1800 current_function_decl = NULL_TREE;
1801 make_class_data (current_class);
1802 register_class ();
1803 rest_of_decl_compilation (TYPE_NAME (current_class), 1, 0);
1804 }
1805
1806 /* Return 2 if CLASS is compiled by this compilation job;
1807 return 1 if CLASS can otherwise be assumed to be compiled;
1808 return 0 if we cannot assume that CLASS is compiled.
1809 Returns 1 for primitive and 0 for array types. */
1810 int
1811 is_compiled_class (tree class)
1812 {
1813 int seen_in_zip;
1814 if (TREE_CODE (class) == POINTER_TYPE)
1815 class = TREE_TYPE (class);
1816 if (TREE_CODE (class) != RECORD_TYPE) /* Primitive types are static. */
1817 return 1;
1818 if (TYPE_ARRAY_P (class))
1819 return 0;
1820 if (class == current_class)
1821 return 2;
1822
1823 seen_in_zip = (TYPE_JCF (class) && JCF_SEEN_IN_ZIP (TYPE_JCF (class)));
1824 if (CLASS_FROM_CURRENTLY_COMPILED_P (class) || seen_in_zip)
1825 {
1826 /* The class was seen in the current ZIP file and will be
1827 available as a compiled class in the future but may not have
1828 been loaded already. Load it if necessary. This prevent
1829 build_class_ref () from crashing. */
1830
1831 if (seen_in_zip && !CLASS_LOADED_P (class))
1832 load_class (class, 1);
1833
1834 /* We return 2 for class seen in ZIP and class from files
1835 belonging to the same compilation unit */
1836 return 2;
1837 }
1838
1839 if (assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class)))))
1840 {
1841 if (!CLASS_LOADED_P (class))
1842 {
1843 if (CLASS_FROM_SOURCE_P (class))
1844 safe_layout_class (class);
1845 else
1846 load_class (class, 1);
1847 }
1848 return 1;
1849 }
1850
1851 return 0;
1852 }
1853
1854 /* Build a VAR_DECL for the dispatch table (vtable) for class TYPE. */
1855
1856 tree
1857 build_dtable_decl (tree type)
1858 {
1859 tree dtype;
1860
1861 /* We need to build a new dtable type so that its size is uniquely
1862 computed when we're dealing with the class for real and not just
1863 faking it (like java.lang.Class during the initialization of the
1864 compiler.) We know we're not faking a class when CURRENT_CLASS is
1865 TYPE. */
1866 if (current_class == type)
1867 {
1868 tree dummy = NULL_TREE;
1869 int n;
1870
1871 dtype = make_node (RECORD_TYPE);
1872
1873 PUSH_FIELD (dtype, dummy, "top_offset", ptr_type_node);
1874 PUSH_FIELD (dtype, dummy, "type_info", ptr_type_node);
1875
1876 PUSH_FIELD (dtype, dummy, "class", class_ptr_type);
1877 for (n = 1; n < TARGET_VTABLE_USES_DESCRIPTORS; ++n)
1878 {
1879 tree tmp_field = build_decl (FIELD_DECL, NULL_TREE, ptr_type_node);
1880 TREE_CHAIN (dummy) = tmp_field;
1881 DECL_CONTEXT (tmp_field) = dtype;
1882 DECL_ARTIFICIAL (tmp_field) = 1;
1883 dummy = tmp_field;
1884 }
1885
1886 PUSH_FIELD (dtype, dummy, "gc_descr", ptr_type_node);
1887 for (n = 1; n < TARGET_VTABLE_USES_DESCRIPTORS; ++n)
1888 {
1889 tree tmp_field = build_decl (FIELD_DECL, NULL_TREE, ptr_type_node);
1890 TREE_CHAIN (dummy) = tmp_field;
1891 DECL_CONTEXT (tmp_field) = dtype;
1892 DECL_ARTIFICIAL (tmp_field) = 1;
1893 dummy = tmp_field;
1894 }
1895
1896 n = TREE_VEC_LENGTH (get_dispatch_vector (type));
1897 if (TARGET_VTABLE_USES_DESCRIPTORS)
1898 n *= TARGET_VTABLE_USES_DESCRIPTORS;
1899
1900 PUSH_FIELD (dtype, dummy, "methods",
1901 build_prim_array_type (nativecode_ptr_type_node, n));
1902 layout_type (dtype);
1903 }
1904 else
1905 dtype = dtable_type;
1906
1907 return build_decl (VAR_DECL,
1908 java_mangle_vtable (&temporary_obstack, type), dtype);
1909 }
1910
1911 /* Pre-pend the TYPE_FIELDS of THIS_CLASS with a dummy FIELD_DECL for the
1912 fields inherited from SUPER_CLASS. */
1913
1914 void
1915 push_super_field (tree this_class, tree super_class)
1916 {
1917 tree base_decl;
1918 /* Don't insert the field if we're just re-laying the class out. */
1919 if (TYPE_FIELDS (this_class) && !DECL_NAME (TYPE_FIELDS (this_class)))
1920 return;
1921 base_decl = build_decl (FIELD_DECL, NULL_TREE, super_class);
1922 DECL_IGNORED_P (base_decl) = 1;
1923 TREE_CHAIN (base_decl) = TYPE_FIELDS (this_class);
1924 TYPE_FIELDS (this_class) = base_decl;
1925 DECL_SIZE (base_decl) = TYPE_SIZE (super_class);
1926 DECL_SIZE_UNIT (base_decl) = TYPE_SIZE_UNIT (super_class);
1927 }
1928
1929 /* Handle the different manners we may have to lay out a super class. */
1930
1931 static tree
1932 maybe_layout_super_class (tree super_class, tree this_class)
1933 {
1934 if (TREE_CODE (super_class) == RECORD_TYPE)
1935 {
1936 if (!CLASS_LOADED_P (super_class) && CLASS_FROM_SOURCE_P (super_class))
1937 safe_layout_class (super_class);
1938 if (!CLASS_LOADED_P (super_class))
1939 load_class (super_class, 1);
1940 }
1941 /* We might have to layout the class before its dependency on
1942 the super class gets resolved by java_complete_class */
1943 else if (TREE_CODE (super_class) == POINTER_TYPE)
1944 {
1945 if (TREE_TYPE (super_class) != NULL_TREE)
1946 super_class = TREE_TYPE (super_class);
1947 else
1948 {
1949 /* do_resolve_class expects an EXPR_WITH_FILE_LOCATION, so
1950 we give it one. */
1951 tree this_wrap = NULL_TREE;
1952
1953 if (this_class)
1954 {
1955 tree this_decl = TYPE_NAME (this_class);
1956 #ifdef USE_MAPPED_LOCATION
1957 this_wrap = build_expr_wfl (this_class,
1958 DECL_SOURCE_LOCATION (this_decl));
1959 #else
1960 this_wrap = build_expr_wfl (this_class,
1961 DECL_SOURCE_FILE (this_decl),
1962 DECL_SOURCE_LINE (this_decl), 0);
1963 #endif
1964 }
1965 super_class = do_resolve_class (NULL_TREE, /* FIXME? */
1966 super_class, NULL_TREE, this_wrap);
1967 if (!super_class)
1968 return NULL_TREE; /* FIXME, NULL_TREE not checked by caller. */
1969 super_class = TREE_TYPE (super_class);
1970 }
1971 }
1972 if (!TYPE_SIZE (super_class))
1973 safe_layout_class (super_class);
1974
1975 return super_class;
1976 }
1977
1978 void
1979 layout_class (tree this_class)
1980 {
1981 tree super_class = CLASSTYPE_SUPER (this_class);
1982 tree field;
1983
1984 class_list = tree_cons (this_class, NULL_TREE, class_list);
1985 if (CLASS_BEING_LAIDOUT (this_class))
1986 {
1987 char buffer [1024];
1988 char *report;
1989 tree current;
1990
1991 sprintf (buffer, " with '%s'",
1992 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (this_class))));
1993 obstack_grow (&temporary_obstack, buffer, strlen (buffer));
1994
1995 for (current = TREE_CHAIN (class_list); current;
1996 current = TREE_CHAIN (current))
1997 {
1998 tree decl = TYPE_NAME (TREE_PURPOSE (current));
1999 sprintf (buffer, "\n which inherits from '%s' (%s:%d)",
2000 IDENTIFIER_POINTER (DECL_NAME (decl)),
2001 DECL_SOURCE_FILE (decl),
2002 DECL_SOURCE_LINE (decl));
2003 obstack_grow (&temporary_obstack, buffer, strlen (buffer));
2004 }
2005 obstack_1grow (&temporary_obstack, '\0');
2006 report = obstack_finish (&temporary_obstack);
2007 cyclic_inheritance_report = ggc_strdup (report);
2008 obstack_free (&temporary_obstack, report);
2009 TYPE_SIZE (this_class) = error_mark_node;
2010 return;
2011 }
2012 CLASS_BEING_LAIDOUT (this_class) = 1;
2013
2014 if (super_class && !CLASS_BEING_LAIDOUT (super_class))
2015 {
2016 tree maybe_super_class
2017 = maybe_layout_super_class (super_class, this_class);
2018 if (maybe_super_class == NULL
2019 || TREE_CODE (TYPE_SIZE (maybe_super_class)) == ERROR_MARK)
2020 {
2021 TYPE_SIZE (this_class) = error_mark_node;
2022 CLASS_BEING_LAIDOUT (this_class) = 0;
2023 class_list = TREE_CHAIN (class_list);
2024 return;
2025 }
2026 if (TYPE_SIZE (this_class) == NULL_TREE)
2027 push_super_field (this_class, maybe_super_class);
2028 }
2029
2030 for (field = TYPE_FIELDS (this_class);
2031 field != NULL_TREE; field = TREE_CHAIN (field))
2032 {
2033 if (FIELD_STATIC (field))
2034 {
2035 /* Set DECL_ASSEMBLER_NAME to something suitably mangled. */
2036 SET_DECL_ASSEMBLER_NAME (field,
2037 java_mangle_decl
2038 (&temporary_obstack, field));
2039 }
2040 }
2041
2042 layout_type (this_class);
2043
2044 /* Also recursively load/layout any superinterfaces, but only if
2045 class was loaded from bytecode. The source parser will take care
2046 of this itself. */
2047 if (!CLASS_FROM_SOURCE_P (this_class))
2048 {
2049 int i;
2050
2051 for (i = BINFO_N_BASE_BINFOS (TYPE_BINFO (this_class)) - 1; i > 0; i--)
2052 {
2053 tree binfo = BINFO_BASE_BINFO (TYPE_BINFO (this_class), i);
2054 tree super_interface = BINFO_TYPE (binfo);
2055 tree maybe_super_interface
2056 = maybe_layout_super_class (super_interface, NULL_TREE);
2057 if (maybe_super_interface == NULL
2058 || TREE_CODE (TYPE_SIZE (maybe_super_interface)) == ERROR_MARK)
2059 {
2060 TYPE_SIZE (this_class) = error_mark_node;
2061 CLASS_BEING_LAIDOUT (this_class) = 0;
2062 class_list = TREE_CHAIN (class_list);
2063 return;
2064 }
2065 }
2066 }
2067
2068 /* Convert the size back to an SI integer value. */
2069 TYPE_SIZE_UNIT (this_class) =
2070 fold (convert (int_type_node, TYPE_SIZE_UNIT (this_class)));
2071
2072 CLASS_BEING_LAIDOUT (this_class) = 0;
2073 class_list = TREE_CHAIN (class_list);
2074 }
2075
2076 static void
2077 add_miranda_methods (tree base_class, tree search_class)
2078 {
2079 tree binfo, base_binfo;
2080 int i;
2081
2082 for (binfo = TYPE_BINFO (search_class), i = 1;
2083 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
2084 {
2085 tree method_decl;
2086 tree elt = BINFO_TYPE (base_binfo);
2087
2088 /* Ensure that interface methods are seen in declared order. */
2089 if (!CLASS_LOADED_P (elt))
2090 load_class (elt, 1);
2091 layout_class_methods (elt);
2092
2093 /* All base classes will have been laid out at this point, so the order
2094 will be correct. This code must match similar layout code in the
2095 runtime. */
2096 for (method_decl = TYPE_METHODS (elt);
2097 method_decl; method_decl = TREE_CHAIN (method_decl))
2098 {
2099 tree sig, override;
2100
2101 /* An interface can have <clinit>. */
2102 if (ID_CLINIT_P (DECL_NAME (method_decl)))
2103 continue;
2104
2105 sig = build_java_argument_signature (TREE_TYPE (method_decl));
2106 override = lookup_argument_method (base_class,
2107 DECL_NAME (method_decl), sig);
2108 if (override == NULL_TREE)
2109 {
2110 /* Found a Miranda method. Add it. */
2111 tree new_method;
2112 sig = build_java_signature (TREE_TYPE (method_decl));
2113 new_method
2114 = add_method (base_class,
2115 get_access_flags_from_decl (method_decl),
2116 DECL_NAME (method_decl), sig);
2117 METHOD_INVISIBLE (new_method) = 1;
2118 }
2119 }
2120
2121 /* Try superinterfaces. */
2122 add_miranda_methods (base_class, elt);
2123 }
2124 }
2125
2126 void
2127 layout_class_methods (tree this_class)
2128 {
2129 tree method_decl, dtable_count;
2130 tree super_class, type_name;
2131
2132 if (TYPE_NVIRTUALS (this_class))
2133 return;
2134
2135 super_class = CLASSTYPE_SUPER (this_class);
2136
2137 if (super_class)
2138 {
2139 super_class = maybe_layout_super_class (super_class, this_class);
2140 if (!TYPE_NVIRTUALS (super_class))
2141 layout_class_methods (super_class);
2142 dtable_count = TYPE_NVIRTUALS (super_class);
2143 }
2144 else
2145 dtable_count = integer_zero_node;
2146
2147 type_name = TYPE_NAME (this_class);
2148 if (CLASS_ABSTRACT (type_name) || CLASS_INTERFACE (type_name))
2149 {
2150 /* An abstract class can have methods which are declared only in
2151 an implemented interface. These are called "Miranda
2152 methods". We make a dummy method entry for such methods
2153 here. */
2154 add_miranda_methods (this_class, this_class);
2155 }
2156
2157 TYPE_METHODS (this_class) = nreverse (TYPE_METHODS (this_class));
2158
2159 for (method_decl = TYPE_METHODS (this_class);
2160 method_decl; method_decl = TREE_CHAIN (method_decl))
2161 dtable_count = layout_class_method (this_class, super_class,
2162 method_decl, dtable_count);
2163
2164 TYPE_NVIRTUALS (this_class) = dtable_count;
2165 }
2166
2167 /* Return the index of METHOD in INTERFACE. This index begins at 1 and is used as an
2168 argument for _Jv_LookupInterfaceMethodIdx(). */
2169 int
2170 get_interface_method_index (tree method, tree interface)
2171 {
2172 tree meth;
2173 int i = 1;
2174
2175 for (meth = TYPE_METHODS (interface); ; meth = TREE_CHAIN (meth), i++)
2176 {
2177 if (meth == method)
2178 return i;
2179 if (meth == NULL_TREE)
2180 abort ();
2181 }
2182 }
2183
2184 /* Lay METHOD_DECL out, returning a possibly new value of
2185 DTABLE_COUNT. Also mangle the method's name. */
2186
2187 tree
2188 layout_class_method (tree this_class, tree super_class,
2189 tree method_decl, tree dtable_count)
2190 {
2191 tree method_name = DECL_NAME (method_decl);
2192
2193 TREE_PUBLIC (method_decl) = 1;
2194 /* Considered external until we know what classes are being
2195 compiled into this object file. */
2196 DECL_EXTERNAL (method_decl) = 1;
2197
2198 /* This is a good occasion to mangle the method's name */
2199 SET_DECL_ASSEMBLER_NAME (method_decl,
2200 java_mangle_decl (&temporary_obstack,
2201 method_decl));
2202 /* We don't generate a RTL for the method if it's abstract, or if
2203 it's an interface method that isn't clinit. */
2204 if (! METHOD_ABSTRACT (method_decl)
2205 || (CLASS_INTERFACE (TYPE_NAME (this_class))
2206 && (DECL_CLINIT_P (method_decl))))
2207 make_decl_rtl (method_decl);
2208
2209 if (ID_INIT_P (method_name))
2210 {
2211 const char *p = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (this_class)));
2212 const char *ptr;
2213 for (ptr = p; *ptr; )
2214 {
2215 if (*ptr++ == '.')
2216 p = ptr;
2217 }
2218 DECL_CONSTRUCTOR_P (method_decl) = 1;
2219 build_java_argument_signature (TREE_TYPE (method_decl));
2220 }
2221 else if (! METHOD_STATIC (method_decl))
2222 {
2223 tree method_sig =
2224 build_java_argument_signature (TREE_TYPE (method_decl));
2225 bool method_override = false;
2226 tree super_method = lookup_argument_method (super_class, method_name,
2227 method_sig);
2228 if (super_method != NULL_TREE)
2229 {
2230 method_override = true;
2231 if (! METHOD_PUBLIC (super_method) &&
2232 ! METHOD_PROTECTED (super_method))
2233 {
2234 /* Don't override private method, or default-access method in
2235 another package. */
2236 if (METHOD_PRIVATE (super_method) ||
2237 ! in_same_package (TYPE_NAME (this_class),
2238 TYPE_NAME (super_class)))
2239 method_override = false;
2240 }
2241 }
2242 if (method_override)
2243 {
2244 tree method_index = get_method_index (super_method);
2245 set_method_index (method_decl, method_index);
2246 if (method_index == NULL_TREE
2247 && !CLASS_FROM_SOURCE_P (this_class))
2248 error ("%Jnon-static method '%D' overrides static method",
2249 method_decl, method_decl);
2250 }
2251 else if (! METHOD_FINAL (method_decl)
2252 && ! METHOD_PRIVATE (method_decl)
2253 && ! CLASS_FINAL (TYPE_NAME (this_class))
2254 && dtable_count)
2255 {
2256 set_method_index (method_decl, dtable_count);
2257 dtable_count = fold (build2 (PLUS_EXPR, integer_type_node,
2258 dtable_count, integer_one_node));
2259 }
2260 }
2261
2262 return dtable_count;
2263 }
2264
2265 void
2266 register_class (void)
2267 {
2268 /* END does not need to be registered with the garbage collector
2269 because it always points into the list given by REGISTERED_CLASS,
2270 and that variable is registered with the collector. */
2271 static tree end;
2272 tree node = TREE_OPERAND (build_class_ref (current_class), 0);
2273 tree current = copy_node (node);
2274
2275 XEXP (DECL_RTL (current), 0) = copy_rtx (XEXP (DECL_RTL(node), 0));
2276 if (!registered_class)
2277 registered_class = current;
2278 else
2279 TREE_CHAIN (end) = current;
2280
2281 end = current;
2282 }
2283
2284 /* Emit something to register classes at start-up time.
2285
2286 The preferred mechanism is through the .jcr section, which contain
2287 a list of pointers to classes which get registered during constructor
2288 invocation time.
2289
2290 The fallback mechanism is to add statements to *LIST_P to call
2291 _Jv_RegisterClass for each class in this file. These statements will
2292 be added to a static constructor function for this translation unit. */
2293
2294 void
2295 emit_register_classes (tree *list_p)
2296 {
2297 if (registered_class == NULL)
2298 return;
2299
2300 /* ??? This isn't quite the correct test. We also have to know
2301 that the target is using gcc's crtbegin/crtend objects rather
2302 than the ones that come with the operating system. */
2303 if (SUPPORTS_WEAK && targetm.have_named_sections)
2304 {
2305 #ifdef JCR_SECTION_NAME
2306 tree t;
2307 named_section_flags (JCR_SECTION_NAME, SECTION_WRITE);
2308 assemble_align (POINTER_SIZE);
2309 for (t = registered_class; t; t = TREE_CHAIN (t))
2310 assemble_integer (XEXP (DECL_RTL (t), 0),
2311 POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
2312 #else
2313 abort ();
2314 #endif
2315 }
2316 else
2317 {
2318 tree klass, t, register_class_fn;
2319
2320 t = build_function_type_list (void_type_node, class_ptr_type, NULL);
2321 t = build_decl (FUNCTION_DECL, get_identifier ("_Jv_RegisterClass"), t);
2322 TREE_PUBLIC (t) = 1;
2323 DECL_EXTERNAL (t) = 1;
2324 register_class_fn = t;
2325
2326 for (klass = registered_class; klass; klass = TREE_CHAIN (klass))
2327 {
2328 t = build_fold_addr_expr (klass);
2329 t = tree_cons (NULL, t, NULL);
2330 t = build_function_call_expr (register_class_fn, t);
2331 append_to_statement_list (t, list_p);
2332 }
2333 }
2334 }
2335
2336 /* Make a symbol_type (_Jv_MethodSymbol) node for DECL. */
2337
2338 static tree
2339 build_symbol_entry (tree decl)
2340 {
2341 tree clname, name, signature, sym;
2342
2343 clname = build_utf8_ref (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))));
2344 name = build_utf8_ref (DECL_NAME (decl));
2345 signature = build_java_signature (TREE_TYPE (decl));
2346 signature = build_utf8_ref (unmangle_classname
2347 (IDENTIFIER_POINTER (signature),
2348 IDENTIFIER_LENGTH (signature)));
2349
2350 START_RECORD_CONSTRUCTOR (sym, symbol_type);
2351 PUSH_FIELD_VALUE (sym, "clname", clname);
2352 PUSH_FIELD_VALUE (sym, "name", name);
2353 PUSH_FIELD_VALUE (sym, "signature", signature);
2354 FINISH_RECORD_CONSTRUCTOR (sym);
2355 TREE_CONSTANT (sym) = 1;
2356 TREE_INVARIANT (sym) = 1;
2357
2358 return sym;
2359 }
2360
2361 /* Emit a symbol table: used by -findirect-dispatch. */
2362
2363 tree
2364 emit_symbol_table (tree name, tree the_table, tree decl_list,
2365 tree the_syms_decl, tree the_array_element_type)
2366 {
2367 tree method_list, method, table, list, null_symbol;
2368 tree table_size, the_array_type;
2369 int index;
2370
2371 /* Only emit a table if this translation unit actually made any
2372 references via it. */
2373 if (decl_list == NULL_TREE)
2374 return the_table;
2375
2376 /* Build a list of _Jv_MethodSymbols for each entry in otable_methods. */
2377 index = 0;
2378 method_list = decl_list;
2379 list = NULL_TREE;
2380 while (method_list != NULL_TREE)
2381 {
2382 method = TREE_VALUE (method_list);
2383 list = tree_cons (NULL_TREE, build_symbol_entry (method), list);
2384 method_list = TREE_CHAIN (method_list);
2385 index++;
2386 }
2387
2388 /* Terminate the list with a "null" entry. */
2389 START_RECORD_CONSTRUCTOR (null_symbol, symbol_type);
2390 PUSH_FIELD_VALUE (null_symbol, "clname", null_pointer_node);
2391 PUSH_FIELD_VALUE (null_symbol, "name", null_pointer_node);
2392 PUSH_FIELD_VALUE (null_symbol, "signature", null_pointer_node);
2393 FINISH_RECORD_CONSTRUCTOR (null_symbol);
2394 TREE_CONSTANT (null_symbol) = 1;
2395 TREE_INVARIANT (null_symbol) = 1;
2396 list = tree_cons (NULL_TREE, null_symbol, list);
2397
2398 /* Put the list in the right order and make it a constructor. */
2399 list = nreverse (list);
2400 table = build_constructor (symbols_array_type, list);
2401
2402 /* Make it the initial value for otable_syms and emit the decl. */
2403 DECL_INITIAL (the_syms_decl) = table;
2404 DECL_ARTIFICIAL (the_syms_decl) = 1;
2405 DECL_IGNORED_P (the_syms_decl) = 1;
2406 rest_of_decl_compilation (the_syms_decl, 1, 0);
2407
2408 /* Now that its size is known, redefine the table as an
2409 uninitialized static array of INDEX + 1 elements. The extra entry
2410 is used by the runtime to track whether the table has been
2411 initialized. */
2412 table_size = build_index_type (build_int_cst (NULL_TREE, index));
2413 the_array_type = build_array_type (the_array_element_type, table_size);
2414 the_table = build_decl (VAR_DECL, name, the_array_type);
2415 TREE_STATIC (the_table) = 1;
2416 TREE_READONLY (the_table) = 1;
2417 rest_of_decl_compilation (the_table, 1, 0);
2418
2419 return the_table;
2420 }
2421
2422 /* make an entry for the catch_classes list. */
2423 tree
2424 make_catch_class_record (tree catch_class, tree classname)
2425 {
2426 tree entry;
2427 tree type = TREE_TYPE (TREE_TYPE (TYPE_CTABLE_DECL (output_class)));
2428 START_RECORD_CONSTRUCTOR (entry, type);
2429 PUSH_FIELD_VALUE (entry, "address", catch_class);
2430 PUSH_FIELD_VALUE (entry, "classname", classname);
2431 FINISH_RECORD_CONSTRUCTOR (entry);
2432 return entry;
2433 }
2434
2435
2436 /* Generate the list of Throwable classes that are caught by exception
2437 handlers in this class. */
2438 tree
2439 emit_catch_table (tree this_class)
2440 {
2441 tree table, table_size, array_type;
2442 TYPE_CATCH_CLASSES (this_class) =
2443 tree_cons (NULL,
2444 make_catch_class_record (null_pointer_node, null_pointer_node),
2445 TYPE_CATCH_CLASSES (this_class));
2446 TYPE_CATCH_CLASSES (this_class) = nreverse (TYPE_CATCH_CLASSES (this_class));
2447 TYPE_CATCH_CLASSES (this_class) =
2448 tree_cons (NULL,
2449 make_catch_class_record (null_pointer_node, null_pointer_node),
2450 TYPE_CATCH_CLASSES (this_class));
2451 table_size = build_index_type
2452 (build_int_cst (NULL_TREE,
2453 list_length (TYPE_CATCH_CLASSES (this_class))));
2454 array_type
2455 = build_array_type (TREE_TYPE (TREE_TYPE (TYPE_CTABLE_DECL (this_class))),
2456 table_size);
2457 table =
2458 build_decl (VAR_DECL, DECL_NAME (TYPE_CTABLE_DECL (this_class)), array_type);
2459 DECL_INITIAL (table) =
2460 build_constructor (array_type, TYPE_CATCH_CLASSES (this_class));
2461 TREE_STATIC (table) = 1;
2462 TREE_READONLY (table) = 1;
2463 DECL_IGNORED_P (table) = 1;
2464 rest_of_decl_compilation (table, 1, 0);
2465 return table;
2466 }
2467
2468
2469 void
2470 init_class_processing (void)
2471 {
2472 fields_ident = get_identifier ("fields");
2473 info_ident = get_identifier ("info");
2474
2475 gcc_obstack_init (&temporary_obstack);
2476 }
2477 \f
2478 static hashval_t java_treetreehash_hash (const void *);
2479 static int java_treetreehash_compare (const void *, const void *);
2480
2481 /* A hash table mapping trees to trees. Used generally. */
2482
2483 #define JAVA_TREEHASHHASH_H(t) (htab_hash_pointer (t))
2484
2485 static hashval_t
2486 java_treetreehash_hash (const void *k_p)
2487 {
2488 struct treetreehash_entry *k = (struct treetreehash_entry *) k_p;
2489 return JAVA_TREEHASHHASH_H (k->key);
2490 }
2491
2492 static int
2493 java_treetreehash_compare (const void * k1_p, const void * k2_p)
2494 {
2495 struct treetreehash_entry * k1 = (struct treetreehash_entry *) k1_p;
2496 tree k2 = (tree) k2_p;
2497 return (k1->key == k2);
2498 }
2499
2500 tree
2501 java_treetreehash_find (htab_t ht, tree t)
2502 {
2503 struct treetreehash_entry *e;
2504 hashval_t hv = JAVA_TREEHASHHASH_H (t);
2505 e = htab_find_with_hash (ht, t, hv);
2506 if (e == NULL)
2507 return NULL;
2508 else
2509 return e->value;
2510 }
2511
2512 tree *
2513 java_treetreehash_new (htab_t ht, tree t)
2514 {
2515 void **e;
2516 struct treetreehash_entry *tthe;
2517 hashval_t hv = JAVA_TREEHASHHASH_H (t);
2518
2519 e = htab_find_slot_with_hash (ht, t, hv, INSERT);
2520 if (*e == NULL)
2521 {
2522 tthe = (*ht->alloc_f) (1, sizeof (*tthe));
2523 tthe->key = t;
2524 *e = tthe;
2525 }
2526 else
2527 tthe = (struct treetreehash_entry *) *e;
2528 return &tthe->value;
2529 }
2530
2531 htab_t
2532 java_treetreehash_create (size_t size, int gc)
2533 {
2534 if (gc)
2535 return htab_create_ggc (size, java_treetreehash_hash,
2536 java_treetreehash_compare, NULL);
2537 else
2538 return htab_create_alloc (size, java_treetreehash_hash,
2539 java_treetreehash_compare, free, xcalloc, free);
2540 }
2541
2542 /* Break down qualified IDENTIFIER into package and class-name components.
2543 For example, given SOURCE "pkg.foo.Bar", LEFT will be set to
2544 "pkg.foo", and RIGHT to "Bar". */
2545
2546 int
2547 split_qualified_name (tree *left, tree *right, tree source)
2548 {
2549 char *p, *base;
2550 int l = IDENTIFIER_LENGTH (source);
2551
2552 base = alloca (l + 1);
2553 memcpy (base, IDENTIFIER_POINTER (source), l + 1);
2554
2555 /* Breakdown NAME into REMAINDER . IDENTIFIER. */
2556 p = base + l - 1;
2557 while (*p != '.' && p != base)
2558 p--;
2559
2560 /* We didn't find a '.'. Return an error. */
2561 if (p == base)
2562 return 1;
2563
2564 *p = '\0';
2565 if (right)
2566 *right = get_identifier (p+1);
2567 *left = get_identifier (base);
2568
2569 return 0;
2570 }
2571
2572 /* Given two classes (TYPE_DECL) or class names (IDENTIFIER), return TRUE
2573 if the classes are from the same package. */
2574
2575 int
2576 in_same_package (tree name1, tree name2)
2577 {
2578 tree tmp;
2579 tree pkg1;
2580 tree pkg2;
2581
2582 if (TREE_CODE (name1) == TYPE_DECL)
2583 name1 = DECL_NAME (name1);
2584 if (TREE_CODE (name2) == TYPE_DECL)
2585 name2 = DECL_NAME (name2);
2586
2587 if (QUALIFIED_P (name1) != QUALIFIED_P (name2))
2588 /* One in empty package. */
2589 return 0;
2590
2591 if (QUALIFIED_P (name1) == 0 && QUALIFIED_P (name2) == 0)
2592 /* Both in empty package. */
2593 return 1;
2594
2595 split_qualified_name (&pkg1, &tmp, name1);
2596 split_qualified_name (&pkg2, &tmp, name2);
2597
2598 return (pkg1 == pkg2);
2599 }
2600
2601 #include "gt-java-class.h"