Update concepts branch to revision 131834
[official-gcc.git] / gcc / java / class.c
blob85e37bc468b3a0e4da780d7013bab566b6b7b4f7
1 /* Functions related to building classes and their related objects.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>.
21 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc. */
25 /* Written by Per Bothner <bothner@cygnus.com> */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "rtl.h"
33 #include "flags.h"
34 #include "java-tree.h"
35 #include "jcf.h"
36 #include "obstack.h"
37 #include "toplev.h"
38 #include "output.h"
39 #include "parse.h"
40 #include "function.h"
41 #include "ggc.h"
42 #include "stdio.h"
43 #include "target.h"
44 #include "except.h"
45 #include "cgraph.h"
46 #include "tree-iterator.h"
47 #include "cgraph.h"
48 #include "vecprim.h"
50 /* DOS brain-damage */
51 #ifndef O_BINARY
52 #define O_BINARY 0 /* MS-DOS brain-damage */
53 #endif
55 static tree make_method_value (tree);
56 static tree build_java_method_type (tree, tree, int);
57 static int32 hashUtf8String (const char *, int);
58 static tree make_field_value (tree);
59 static tree get_dispatch_vector (tree);
60 static tree get_dispatch_table (tree, tree);
61 static int supers_all_compiled (tree type);
62 static tree maybe_layout_super_class (tree, tree);
63 static void add_miranda_methods (tree, tree);
64 static int assume_compiled (const char *);
65 static tree build_symbol_entry (tree, tree);
66 static tree emit_assertion_table (tree);
67 static void register_class (void);
69 struct obstack temporary_obstack;
71 static const char *cyclic_inheritance_report;
73 /* The compiler generates different code depending on whether or not
74 it can assume certain classes have been compiled down to native
75 code or not. The compiler options -fassume-compiled= and
76 -fno-assume-compiled= are used to create a tree of
77 class_flag_node objects. This tree is queried to determine if
78 a class is assume to be compiled or not. Each node in the tree
79 represents either a package or a specific class. */
81 typedef struct class_flag_node_struct
83 /* The class or package name. */
84 const char *ident;
86 /* Nonzero if this represents an exclusion. */
87 int value;
89 /* Pointers to other nodes in the tree. */
90 struct class_flag_node_struct *parent;
91 struct class_flag_node_struct *sibling;
92 struct class_flag_node_struct *child;
93 } class_flag_node;
95 static class_flag_node *find_class_flag_node (class_flag_node *, const char *);
96 static void add_class_flag (class_flag_node **, const char *, int);
98 /* This is the root of the include/exclude tree. */
100 static class_flag_node *assume_compiled_tree;
102 static class_flag_node *enable_assert_tree;
104 static GTY(()) tree class_roots[4];
105 #define fields_ident class_roots[0] /* get_identifier ("fields") */
106 #define info_ident class_roots[1] /* get_identifier ("info") */
107 #define class_list class_roots[2]
108 #define class_dtable_decl class_roots[3]
110 static GTY(()) VEC(tree,gc) *registered_class;
112 /* A tree that returns the address of the class$ of the class
113 currently being compiled. */
114 static GTY(()) tree this_classdollar;
116 /* Return the node that most closely represents the class whose name
117 is IDENT. Start the search from NODE (followed by its siblings).
118 Return NULL if an appropriate node does not exist. */
120 static class_flag_node *
121 find_class_flag_node (class_flag_node *node, const char *ident)
123 while (node)
125 size_t node_ident_length = strlen (node->ident);
127 /* node_ident_length is zero at the root of the tree. If the
128 identifiers are the same length, then we have matching
129 classes. Otherwise check if we've matched an enclosing
130 package name. */
132 if (node_ident_length == 0
133 || (strncmp (ident, node->ident, node_ident_length) == 0
134 && (ident[node_ident_length] == '\0'
135 || ident[node_ident_length] == '.')))
137 /* We've found a match, however, there might be a more
138 specific match. */
140 class_flag_node *found = find_class_flag_node (node->child, ident);
141 if (found)
142 return found;
143 else
144 return node;
147 /* No match yet. Continue through the sibling list. */
148 node = node->sibling;
151 /* No match at all in this tree. */
152 return NULL;
155 void
156 add_class_flag (class_flag_node **rootp, const char *ident, int value)
158 class_flag_node *root = *rootp;
159 class_flag_node *parent, *node;
161 /* Create the root of the tree if it doesn't exist yet. */
163 if (NULL == root)
165 root = XNEW (class_flag_node);
166 root->ident = "";
167 root->value = 0;
168 root->sibling = NULL;
169 root->child = NULL;
170 root->parent = NULL;
171 *rootp = root;
174 /* Calling the function with the empty string means we're setting
175 value for the root of the hierarchy. */
177 if (0 == ident[0])
179 root->value = value;
180 return;
183 /* Find the parent node for this new node. PARENT will either be a
184 class or a package name. Adjust PARENT accordingly. */
186 parent = find_class_flag_node (root, ident);
187 if (strcmp (ident, parent->ident) == 0)
188 parent->value = value;
189 else
191 /* Insert new node into the tree. */
192 node = XNEW (class_flag_node);
194 node->ident = xstrdup (ident);
195 node->value = value;
196 node->child = NULL;
198 node->parent = parent;
199 node->sibling = parent->child;
200 parent->child = node;
204 /* Add a new IDENT to the include/exclude tree. It's an exclusion
205 if EXCLUDEP is nonzero. */
207 void
208 add_assume_compiled (const char *ident, int excludep)
210 add_class_flag (&assume_compiled_tree, ident, excludep);
213 /* The default value returned by enable_assertions. */
215 #define DEFAULT_ENABLE_ASSERT (optimize == 0)
217 /* Enter IDENT (a class or package name) into the enable-assertions table.
218 VALUE is true to enable and false to disable. */
220 void
221 add_enable_assert (const char *ident, int value)
223 if (enable_assert_tree == NULL)
224 add_class_flag (&enable_assert_tree, "", DEFAULT_ENABLE_ASSERT);
225 add_class_flag (&enable_assert_tree, ident, value);
228 /* Returns nonzero if IDENT is the name of a class that the compiler
229 should assume has been compiled to object code. */
231 static int
232 assume_compiled (const char *ident)
234 class_flag_node *i;
235 int result;
237 if (NULL == assume_compiled_tree)
238 return 1;
240 i = find_class_flag_node (assume_compiled_tree, ident);
242 result = ! i->value;
244 return (result);
247 /* Return true if we should generate code to check assertions within KLASS. */
249 bool
250 enable_assertions (tree klass)
252 /* Check if command-line specifies whether we should check assertions. */
254 if (klass != NULL_TREE && DECL_NAME (klass) && enable_assert_tree != NULL)
256 const char *ident = IDENTIFIER_POINTER (DECL_NAME (klass));
257 class_flag_node *node
258 = find_class_flag_node (enable_assert_tree, ident);
259 return node->value;
262 /* The default is to enable assertions if generating class files,
263 or not optimizing. */
264 return DEFAULT_ENABLE_ASSERT;
267 /* Return an IDENTIFIER_NODE the same as (OLD_NAME, OLD_LENGTH).
268 except that characters matching OLD_CHAR are substituted by NEW_CHAR.
269 Also, PREFIX is prepended, and SUFFIX is appended. */
271 tree
272 ident_subst (const char* old_name,
273 int old_length,
274 const char *prefix,
275 int old_char,
276 int new_char,
277 const char *suffix)
279 int prefix_len = strlen (prefix);
280 int suffix_len = strlen (suffix);
281 int i = prefix_len + old_length + suffix_len + 1;
282 char *buffer = alloca (i);
284 strcpy (buffer, prefix);
285 for (i = 0; i < old_length; i++)
287 char ch = old_name[i];
288 if (ch == old_char)
289 ch = new_char;
290 buffer[prefix_len + i] = ch;
292 strcpy (buffer + prefix_len + old_length, suffix);
293 return get_identifier (buffer);
296 /* Return an IDENTIFIER_NODE the same as OLD_ID,
297 except that characters matching OLD_CHAR are substituted by NEW_CHAR.
298 Also, PREFIX is prepended, and SUFFIX is appended. */
300 tree
301 identifier_subst (const tree old_id,
302 const char *prefix,
303 int old_char,
304 int new_char,
305 const char *suffix)
307 return ident_subst (IDENTIFIER_POINTER (old_id), IDENTIFIER_LENGTH (old_id),
308 prefix, old_char, new_char, suffix);
311 /* Generate a valid C identifier from the name of the class TYPE,
312 prefixed by PREFIX. */
314 tree
315 mangled_classname (const char *prefix, tree type)
317 tree result;
318 tree ident = TYPE_NAME (type);
319 if (TREE_CODE (ident) != IDENTIFIER_NODE)
320 ident = DECL_NAME (ident);
321 result = identifier_subst (ident, prefix, '.', '_', "");
323 /* Replace any characters that aren't in the set [0-9a-zA-Z_$] with
324 "_0xXX". Class names containing such chracters are uncommon, but
325 they do sometimes occur in class files. Without this check,
326 these names cause assembly errors.
328 There is a possibility that a real class name could conflict with
329 the identifier we generate, but it is unlikely and will
330 immediately be detected as an assembler error. At some point we
331 should do something more elaborate (perhaps using the full
332 unicode mangling scheme) in order to prevent such a conflict. */
334 int i;
335 const int len = IDENTIFIER_LENGTH (result);
336 const char *p = IDENTIFIER_POINTER (result);
337 int illegal_chars = 0;
339 /* Make two passes over the identifier. The first pass is merely
340 to count illegal characters; we need to do this in order to
341 allocate a buffer. */
342 for (i = 0; i < len; i++)
344 char c = p[i];
345 illegal_chars += (! ISALNUM (c) && c != '_' && c != '$');
348 /* And the second pass, which is rarely executed, does the
349 rewriting. */
350 if (illegal_chars != 0)
352 char *buffer = alloca (illegal_chars * 4 + len + 1);
353 int j;
355 for (i = 0, j = 0; i < len; i++)
357 char c = p[i];
358 if (! ISALNUM (c) && c != '_' && c != '$')
360 buffer[j++] = '_';
361 sprintf (&buffer[j], "0x%02x", c);
362 j += 4;
364 else
365 buffer[j++] = c;
368 buffer[j] = 0;
369 result = get_identifier (buffer);
373 return result;
376 tree
377 make_class (void)
379 tree type;
380 type = make_node (RECORD_TYPE);
381 /* Unfortunately we must create the binfo here, so that class
382 loading works. */
383 TYPE_BINFO (type) = make_tree_binfo (0);
384 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC (type);
386 return type;
389 /* Given a fully-qualified classname in NAME (whose length is NAME_LENGTH),
390 and where each of the constituents is separated by '/',
391 return a corresponding IDENTIFIER_NODE, except using '.' as separator. */
393 tree
394 unmangle_classname (const char *name, int name_length)
396 tree to_return = ident_subst (name, name_length, "", '/', '.', "");
397 /* It's not sufficient to compare to_return and get_identifier
398 (name) to determine whether to_return is qualified. There are
399 cases in signature analysis where name will be stripped of a
400 trailing ';'. */
401 name = IDENTIFIER_POINTER (to_return);
402 while (*name)
403 if (*name++ == '.')
405 QUALIFIED_P (to_return) = 1;
406 break;
409 return to_return;
412 #define GEN_TABLE(TABLE, NAME, TABLE_TYPE, TYPE) \
413 do \
415 const char *typename = IDENTIFIER_POINTER (mangled_classname ("", TYPE)); \
416 char *buf = alloca (strlen (typename) + strlen (#NAME "_syms_") + 1); \
417 tree decl; \
419 sprintf (buf, #NAME "_%s", typename); \
420 TYPE_## TABLE ##_DECL (type) = decl = \
421 build_decl (VAR_DECL, get_identifier (buf), TABLE_TYPE); \
422 DECL_EXTERNAL (decl) = 1; \
423 TREE_STATIC (decl) = 1; \
424 TREE_READONLY (decl) = 1; \
425 TREE_CONSTANT (decl) = 1; \
426 DECL_IGNORED_P (decl) = 1; \
427 /* Mark the table as belonging to this class. */ \
428 pushdecl (decl); \
429 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl); \
430 DECL_OWNER (decl) = TYPE; \
431 sprintf (buf, #NAME "_syms_%s", typename); \
432 TYPE_## TABLE ##_SYMS_DECL (TYPE) = \
433 build_decl (VAR_DECL, get_identifier (buf), symbols_array_type); \
434 TREE_STATIC (TYPE_## TABLE ##_SYMS_DECL (TYPE)) = 1; \
435 TREE_CONSTANT (TYPE_## TABLE ##_SYMS_DECL (TYPE)) = 1; \
436 DECL_IGNORED_P (TYPE_## TABLE ##_SYMS_DECL (TYPE)) = 1; \
438 while (0)
440 /* Given a class, create the DECLs for all its associated indirect
441 dispatch tables. */
442 void
443 gen_indirect_dispatch_tables (tree type)
445 const char *typename = IDENTIFIER_POINTER (mangled_classname ("", type));
447 tree field = NULL;
448 char *buf = alloca (strlen (typename) + strlen ("_catch_classes_") + 1);
449 tree catch_class_type = make_node (RECORD_TYPE);
451 sprintf (buf, "_catch_classes_%s", typename);
452 PUSH_FIELD (catch_class_type, field, "address", utf8const_ptr_type);
453 PUSH_FIELD (catch_class_type, field, "classname", ptr_type_node);
454 FINISH_RECORD (catch_class_type);
456 TYPE_CTABLE_DECL (type)
457 = build_decl (VAR_DECL, get_identifier (buf),
458 build_array_type (catch_class_type, 0));
459 DECL_EXTERNAL (TYPE_CTABLE_DECL (type)) = 1;
460 TREE_STATIC (TYPE_CTABLE_DECL (type)) = 1;
461 TREE_READONLY (TYPE_CTABLE_DECL (type)) = 1;
462 TREE_CONSTANT (TYPE_CTABLE_DECL (type)) = 1;
463 DECL_IGNORED_P (TYPE_CTABLE_DECL (type)) = 1;
464 pushdecl (TYPE_CTABLE_DECL (type));
467 if (flag_indirect_dispatch)
469 GEN_TABLE (ATABLE, _atable, atable_type, type);
470 GEN_TABLE (OTABLE, _otable, otable_type, type);
471 GEN_TABLE (ITABLE, _itable, itable_type, type);
475 #undef GEN_TABLE
477 tree
478 push_class (tree class_type, tree class_name)
480 tree decl, signature;
481 location_t saved_loc = input_location;
482 CLASS_P (class_type) = 1;
483 decl = build_decl (TYPE_DECL, class_name, class_type);
484 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
486 /* dbxout needs a DECL_SIZE if in gstabs mode */
487 DECL_SIZE (decl) = integer_zero_node;
489 input_location = saved_loc;
490 signature = identifier_subst (class_name, "L", '.', '/', ";");
491 IDENTIFIER_SIGNATURE_TYPE (signature) = build_pointer_type (class_type);
493 /* Setting DECL_ARTIFICIAL forces dbxout.c to specific the type is
494 both a typedef and in the struct name-space. We may want to re-visit
495 this later, but for now it reduces the changes needed for gdb. */
496 DECL_ARTIFICIAL (decl) = 1;
498 pushdecl_top_level (decl);
500 return decl;
503 /* Finds the (global) class named NAME. Creates the class if not found.
504 Also creates associated TYPE_DECL.
505 Does not check if the class actually exists, load the class,
506 fill in field or methods, or do layout_type. */
508 tree
509 lookup_class (tree name)
511 tree decl = IDENTIFIER_CLASS_VALUE (name);
512 if (decl == NULL_TREE)
513 decl = push_class (make_class (), name);
514 return TREE_TYPE (decl);
517 void
518 set_super_info (int access_flags, tree this_class,
519 tree super_class, int interfaces_count)
521 int total_supers = interfaces_count;
522 tree class_decl = TYPE_NAME (this_class);
524 if (super_class)
525 total_supers++;
527 if (total_supers)
528 TYPE_BINFO (this_class) = make_tree_binfo (total_supers);
529 TYPE_VFIELD (this_class) = TYPE_VFIELD (object_type_node);
530 if (super_class)
532 tree super_binfo = make_tree_binfo (0);
533 BINFO_TYPE (super_binfo) = super_class;
534 BINFO_OFFSET (super_binfo) = integer_zero_node;
535 BINFO_BASE_APPEND (TYPE_BINFO (this_class), super_binfo);
536 CLASS_HAS_SUPER_FLAG (TYPE_BINFO (this_class)) = 1;
539 set_class_decl_access_flags (access_flags, class_decl);
542 void
543 set_class_decl_access_flags (int access_flags, tree class_decl)
545 if (access_flags & ACC_PUBLIC) CLASS_PUBLIC (class_decl) = 1;
546 if (access_flags & ACC_FINAL) CLASS_FINAL (class_decl) = 1;
547 if (access_flags & ACC_SUPER) CLASS_SUPER (class_decl) = 1;
548 if (access_flags & ACC_INTERFACE) CLASS_INTERFACE (class_decl) = 1;
549 if (access_flags & ACC_ABSTRACT) CLASS_ABSTRACT (class_decl) = 1;
550 if (access_flags & ACC_STATIC) CLASS_STATIC (class_decl) = 1;
551 if (access_flags & ACC_PRIVATE) CLASS_PRIVATE (class_decl) = 1;
552 if (access_flags & ACC_PROTECTED) CLASS_PROTECTED (class_decl) = 1;
553 if (access_flags & ACC_STRICT) CLASS_STRICTFP (class_decl) = 1;
554 if (access_flags & ACC_ENUM) CLASS_ENUM (class_decl) = 1;
555 if (access_flags & ACC_SYNTHETIC) CLASS_SYNTHETIC (class_decl) = 1;
556 if (access_flags & ACC_ANNOTATION) CLASS_ANNOTATION (class_decl) = 1;
559 /* Return length of inheritance chain of CLAS, where java.lang.Object is 0,
560 direct sub-classes of Object are 1, and so on. */
563 class_depth (tree clas)
565 int depth = 0;
566 if (! CLASS_LOADED_P (clas))
567 load_class (clas, 1);
568 if (TYPE_SIZE (clas) == error_mark_node)
569 return -1;
570 while (clas != object_type_node)
572 depth++;
573 clas = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (clas), 0));
575 return depth;
578 /* Return true iff TYPE2 is an interface that extends interface TYPE1 */
581 interface_of_p (tree type1, tree type2)
583 int i;
584 tree binfo, base_binfo;
586 if (! TYPE_BINFO (type2))
587 return 0;
589 for (binfo = TYPE_BINFO (type2), i = 0;
590 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
591 if (BINFO_TYPE (base_binfo) == type1)
592 return 1;
594 for (binfo = TYPE_BINFO (type2), i = 0;
595 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++) /* */
596 if (BINFO_TYPE (base_binfo)
597 && interface_of_p (type1, BINFO_TYPE (base_binfo)))
598 return 1;
600 return 0;
603 /* Return true iff TYPE1 inherits from TYPE2. */
606 inherits_from_p (tree type1, tree type2)
608 while (type1 != NULL_TREE && TREE_CODE (type1) == RECORD_TYPE)
610 if (type1 == type2)
611 return 1;
613 if (! CLASS_LOADED_P (type1))
614 load_class (type1, 1);
616 type1 = maybe_layout_super_class (CLASSTYPE_SUPER (type1), type1);
618 return 0;
621 /* Return a 1 iff TYPE1 is an enclosing context for TYPE2 */
624 enclosing_context_p (tree type1, tree type2)
626 if (!INNER_CLASS_TYPE_P (type2))
627 return 0;
629 for (type2 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2)));
630 type2;
631 type2 = (INNER_CLASS_TYPE_P (type2) ?
632 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2))) : NULL_TREE))
634 if (type2 == type1)
635 return 1;
638 return 0;
642 /* Return 1 iff TYPE1 and TYPE2 share a common enclosing class, regardless of
643 nesting level. */
646 common_enclosing_context_p (tree type1, tree type2)
648 while (type1)
650 tree current;
651 for (current = type2; current;
652 current = (INNER_CLASS_TYPE_P (current) ?
653 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current))) :
654 NULL_TREE))
655 if (type1 == current)
656 return 1;
658 if (INNER_CLASS_TYPE_P (type1))
659 type1 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1)));
660 else
661 break;
663 return 0;
666 /* Return 1 iff there exists a common enclosing "this" between TYPE1
667 and TYPE2, without crossing any static context. */
670 common_enclosing_instance_p (tree type1, tree type2)
672 if (!PURE_INNER_CLASS_TYPE_P (type1) || !PURE_INNER_CLASS_TYPE_P (type2))
673 return 0;
675 for (type1 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1))); type1;
676 type1 = (PURE_INNER_CLASS_TYPE_P (type1) ?
677 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type1))) : NULL_TREE))
679 tree current;
680 for (current = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type2))); current;
681 current = (PURE_INNER_CLASS_TYPE_P (current) ?
682 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current))) :
683 NULL_TREE))
684 if (type1 == current)
685 return 1;
687 return 0;
690 /* Add INTERFACE_CLASS to THIS_CLASS iff INTERFACE_CLASS can't be
691 found in THIS_CLASS. Returns NULL_TREE upon success, INTERFACE_CLASS
692 if attempt is made to add it twice. */
694 tree
695 maybe_add_interface (tree this_class, tree interface_class)
697 tree binfo, base_binfo;
698 int i;
700 for (binfo = TYPE_BINFO (this_class), i = 0;
701 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
702 if (BINFO_TYPE (base_binfo) == interface_class)
703 return interface_class;
704 add_interface (this_class, interface_class);
705 return NULL_TREE;
708 /* Add the INTERFACE_CLASS as one of the interfaces of THIS_CLASS. */
710 void
711 add_interface (tree this_class, tree interface_class)
713 tree interface_binfo = make_tree_binfo (0);
715 BINFO_TYPE (interface_binfo) = interface_class;
716 BINFO_OFFSET (interface_binfo) = integer_zero_node;
717 BINFO_VPTR_FIELD (interface_binfo) = integer_zero_node;
718 BINFO_VIRTUAL_P (interface_binfo) = 1;
720 BINFO_BASE_APPEND (TYPE_BINFO (this_class), interface_binfo);
723 static tree
724 build_java_method_type (tree fntype, tree this_class, int access_flags)
726 if (access_flags & ACC_STATIC)
727 return fntype;
728 fntype = build_method_type (this_class, fntype);
730 /* We know that arg 1 of every nonstatic method is non-null; tell
731 the back-end so. */
732 TYPE_ATTRIBUTES (fntype) = (tree_cons
733 (get_identifier ("nonnull"),
734 tree_cons (NULL_TREE,
735 build_int_cst (NULL_TREE, 1),
736 NULL_TREE),
737 TYPE_ATTRIBUTES (fntype)));
738 return fntype;
741 void
742 java_hide_decl (tree decl ATTRIBUTE_UNUSED)
744 #ifdef HAVE_GAS_HIDDEN
745 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
746 DECL_VISIBILITY_SPECIFIED (decl) = 1;
747 #endif
750 tree
751 add_method_1 (tree this_class, int access_flags, tree name, tree function_type)
753 tree method_type, fndecl;
755 method_type = build_java_method_type (function_type,
756 this_class, access_flags);
758 fndecl = build_decl (FUNCTION_DECL, name, method_type);
759 DECL_CONTEXT (fndecl) = this_class;
761 DECL_LANG_SPECIFIC (fndecl)
762 = ggc_alloc_cleared (sizeof (struct lang_decl));
763 DECL_LANG_SPECIFIC (fndecl)->desc = LANG_DECL_FUNC;
765 /* Initialize the static initializer test table. */
767 DECL_FUNCTION_INIT_TEST_TABLE (fndecl) =
768 java_treetreehash_create (10, 1);
770 /* Initialize the initialized (static) class table. */
771 if (access_flags & ACC_STATIC)
772 DECL_FUNCTION_INITIALIZED_CLASS_TABLE (fndecl) =
773 htab_create_ggc (50, htab_hash_pointer, htab_eq_pointer, NULL);
775 TREE_CHAIN (fndecl) = TYPE_METHODS (this_class);
776 TYPE_METHODS (this_class) = fndecl;
778 /* If pointers to member functions use the least significant bit to
779 indicate whether a function is virtual, ensure a pointer
780 to this function will have that bit clear. */
781 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
782 && !(access_flags & ACC_STATIC)
783 && DECL_ALIGN (fndecl) < 2 * BITS_PER_UNIT)
784 DECL_ALIGN (fndecl) = 2 * BITS_PER_UNIT;
786 /* Notice that this is a finalizer and update the class type
787 accordingly. This is used to optimize instance allocation. */
788 if (name == finalize_identifier_node
789 && TREE_TYPE (function_type) == void_type_node
790 && TREE_VALUE (TYPE_ARG_TYPES (function_type)) == void_type_node)
791 HAS_FINALIZER_P (this_class) = 1;
793 if (access_flags & ACC_PUBLIC) METHOD_PUBLIC (fndecl) = 1;
794 if (access_flags & ACC_PROTECTED) METHOD_PROTECTED (fndecl) = 1;
795 if (access_flags & ACC_PRIVATE)
796 METHOD_PRIVATE (fndecl) = DECL_INLINE (fndecl) = 1;
797 if (access_flags & ACC_NATIVE)
799 METHOD_NATIVE (fndecl) = 1;
800 DECL_EXTERNAL (fndecl) = 1;
802 else
803 /* FNDECL is external unless we are compiling it into this object
804 file. */
805 DECL_EXTERNAL (fndecl) = CLASS_FROM_CURRENTLY_COMPILED_P (this_class) == 0;
806 if (access_flags & ACC_STATIC)
807 METHOD_STATIC (fndecl) = DECL_INLINE (fndecl) = 1;
808 if (access_flags & ACC_FINAL)
809 METHOD_FINAL (fndecl) = DECL_INLINE (fndecl) = 1;
810 if (access_flags & ACC_SYNCHRONIZED) METHOD_SYNCHRONIZED (fndecl) = 1;
811 if (access_flags & ACC_ABSTRACT) METHOD_ABSTRACT (fndecl) = 1;
812 if (access_flags & ACC_STRICT) METHOD_STRICTFP (fndecl) = 1;
813 if (access_flags & ACC_SYNTHETIC) DECL_ARTIFICIAL (fndecl) = 1;
814 if (access_flags & ACC_BRIDGE) METHOD_BRIDGE (fndecl) = 1;
815 if (access_flags & ACC_VARARGS) METHOD_VARARGS (fndecl) = 1;
816 return fndecl;
819 /* Add a method to THIS_CLASS.
820 The method's name is NAME.
821 Its signature (mangled type) is METHOD_SIG (an IDENTIFIER_NODE). */
823 tree
824 add_method (tree this_class, int access_flags, tree name, tree method_sig)
826 tree function_type, fndecl;
827 const unsigned char *sig
828 = (const unsigned char *) IDENTIFIER_POINTER (method_sig);
830 if (sig[0] != '(')
831 fatal_error ("bad method signature");
833 function_type = get_type_from_signature (method_sig);
834 fndecl = add_method_1 (this_class, access_flags, name, function_type);
835 set_java_signature (TREE_TYPE (fndecl), method_sig);
836 return fndecl;
839 tree
840 add_field (tree class, tree name, tree field_type, int flags)
842 int is_static = (flags & ACC_STATIC) != 0;
843 tree field;
844 field = build_decl (is_static ? VAR_DECL : FIELD_DECL, name, field_type);
845 TREE_CHAIN (field) = TYPE_FIELDS (class);
846 TYPE_FIELDS (class) = field;
847 DECL_CONTEXT (field) = class;
848 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field);
850 if (flags & ACC_PUBLIC) FIELD_PUBLIC (field) = 1;
851 if (flags & ACC_PROTECTED) FIELD_PROTECTED (field) = 1;
852 if (flags & ACC_PRIVATE) FIELD_PRIVATE (field) = 1;
853 if (flags & ACC_FINAL) FIELD_FINAL (field) = 1;
854 if (flags & ACC_VOLATILE)
856 FIELD_VOLATILE (field) = 1;
857 TREE_THIS_VOLATILE (field) = 1;
859 if (flags & ACC_TRANSIENT) FIELD_TRANSIENT (field) = 1;
860 if (flags & ACC_ENUM) FIELD_ENUM (field) = 1;
861 if (flags & ACC_SYNTHETIC) FIELD_SYNTHETIC (field) = 1;
862 if (is_static)
864 FIELD_STATIC (field) = 1;
865 /* Always make field externally visible. This is required so
866 that native methods can always access the field. */
867 TREE_PUBLIC (field) = 1;
868 /* Hide everything that shouldn't be visible outside a DSO. */
869 if (flag_indirect_classes
870 || (FIELD_PRIVATE (field)))
871 java_hide_decl (field);
872 /* Considered external unless we are compiling it into this
873 object file. */
874 DECL_EXTERNAL (field) = (is_compiled_class (class) != 2);
877 return field;
880 /* Associate a constant value CONSTANT with VAR_DECL FIELD. */
882 void
883 set_constant_value (tree field, tree constant)
885 if (field == NULL_TREE)
886 warning (OPT_Wattributes,
887 "misplaced ConstantValue attribute (not in any field)");
888 else if (DECL_INITIAL (field) != NULL_TREE)
889 warning (OPT_Wattributes,
890 "duplicate ConstantValue attribute for field '%s'",
891 IDENTIFIER_POINTER (DECL_NAME (field)));
892 else
894 DECL_INITIAL (field) = constant;
895 if (TREE_TYPE (constant) != TREE_TYPE (field)
896 && ! (TREE_TYPE (constant) == int_type_node
897 && INTEGRAL_TYPE_P (TREE_TYPE (field))
898 && TYPE_PRECISION (TREE_TYPE (field)) <= 32)
899 && ! (TREE_TYPE (constant) == utf8const_ptr_type
900 && TREE_TYPE (field) == string_ptr_type_node))
901 error ("ConstantValue attribute of field '%s' has wrong type",
902 IDENTIFIER_POINTER (DECL_NAME (field)));
906 /* Calculate a hash value for a string encoded in Utf8 format.
907 * This returns the same hash value as specified for java.lang.String.hashCode.
910 static int32
911 hashUtf8String (const char *str, int len)
913 const unsigned char* ptr = (const unsigned char*) str;
914 const unsigned char *limit = ptr + len;
915 int32 hash = 0;
916 for (; ptr < limit;)
918 int ch = UTF8_GET (ptr, limit);
919 /* Updated specification from
920 http://www.javasoft.com/docs/books/jls/clarify.html. */
921 hash = (31 * hash) + ch;
923 return hash;
926 static GTY(()) tree utf8_decl_list = NULL_TREE;
928 tree
929 build_utf8_ref (tree name)
931 const char * name_ptr = IDENTIFIER_POINTER(name);
932 int name_len = IDENTIFIER_LENGTH(name);
933 char buf[60];
934 tree ctype, field = NULL_TREE, str_type, cinit, string;
935 static int utf8_count = 0;
936 int name_hash;
937 tree ref = IDENTIFIER_UTF8_REF (name);
938 tree decl;
939 if (ref != NULL_TREE)
940 return ref;
942 ctype = make_node (RECORD_TYPE);
943 str_type = build_prim_array_type (unsigned_byte_type_node,
944 name_len + 1); /* Allow for final '\0'. */
945 PUSH_FIELD (ctype, field, "hash", unsigned_short_type_node);
946 PUSH_FIELD (ctype, field, "length", unsigned_short_type_node);
947 PUSH_FIELD (ctype, field, "data", str_type);
948 FINISH_RECORD (ctype);
949 START_RECORD_CONSTRUCTOR (cinit, ctype);
950 name_hash = hashUtf8String (name_ptr, name_len) & 0xFFFF;
951 PUSH_FIELD_VALUE (cinit, "hash", build_int_cst (NULL_TREE, name_hash));
952 PUSH_FIELD_VALUE (cinit, "length", build_int_cst (NULL_TREE, name_len));
953 string = build_string (name_len, name_ptr);
954 TREE_TYPE (string) = str_type;
955 PUSH_FIELD_VALUE (cinit, "data", string);
956 FINISH_RECORD_CONSTRUCTOR (cinit);
957 TREE_CONSTANT (cinit) = 1;
959 /* Generate a unique-enough identifier. */
960 sprintf(buf, "_Utf%d", ++utf8_count);
962 decl = build_decl (VAR_DECL, get_identifier (buf), utf8const_type);
963 TREE_STATIC (decl) = 1;
964 DECL_ARTIFICIAL (decl) = 1;
965 DECL_IGNORED_P (decl) = 1;
966 TREE_READONLY (decl) = 1;
967 TREE_THIS_VOLATILE (decl) = 0;
968 DECL_INITIAL (decl) = cinit;
970 if (HAVE_GAS_SHF_MERGE)
972 int decl_size;
973 /* Ensure decl_size is a multiple of utf8const_type's alignment. */
974 decl_size = (name_len + 5 + TYPE_ALIGN_UNIT (utf8const_type) - 1)
975 & ~(TYPE_ALIGN_UNIT (utf8const_type) - 1);
976 if (flag_merge_constants && decl_size < 256)
978 char buf[32];
979 int flags = (SECTION_OVERRIDE
980 | SECTION_MERGE | (SECTION_ENTSIZE & decl_size));
981 sprintf (buf, ".rodata.jutf8.%d", decl_size);
982 switch_to_section (get_section (buf, flags, NULL));
983 DECL_SECTION_NAME (decl) = build_string (strlen (buf), buf);
987 TREE_CHAIN (decl) = utf8_decl_list;
988 layout_decl (decl, 0);
989 pushdecl (decl);
990 rest_of_decl_compilation (decl, global_bindings_p (), 0);
991 varpool_mark_needed_node (varpool_node (decl));
992 utf8_decl_list = decl;
993 ref = build1 (ADDR_EXPR, utf8const_ptr_type, decl);
994 IDENTIFIER_UTF8_REF (name) = ref;
995 return ref;
998 /* Like build_class_ref, but instead of a direct reference generate a
999 pointer into the constant pool. */
1001 static tree
1002 build_indirect_class_ref (tree type)
1004 int index;
1005 tree cl;
1006 index = alloc_class_constant (type);
1007 cl = build_ref_from_constant_pool (index);
1008 return convert (promote_type (class_ptr_type), cl);
1011 static tree
1012 build_static_class_ref (tree type)
1014 tree decl_name, decl, ref;
1016 if (TYPE_SIZE (type) == error_mark_node)
1017 return null_pointer_node;
1018 decl_name = identifier_subst (DECL_NAME (TYPE_NAME (type)),
1019 "", '/', '/', ".class$$");
1020 decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
1021 if (decl == NULL_TREE)
1023 decl = build_decl (VAR_DECL, decl_name, class_type_node);
1024 TREE_STATIC (decl) = 1;
1025 if (! flag_indirect_classes)
1027 TREE_PUBLIC (decl) = 1;
1028 if (CLASS_PRIVATE (TYPE_NAME (type)))
1029 java_hide_decl (decl);
1031 DECL_IGNORED_P (decl) = 1;
1032 DECL_ARTIFICIAL (decl) = 1;
1033 if (is_compiled_class (type) == 1)
1034 DECL_EXTERNAL (decl) = 1;
1035 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
1036 DECL_CLASS_FIELD_P (decl) = 1;
1037 DECL_CONTEXT (decl) = type;
1039 /* ??? We want to preserve the DECL_CONTEXT we set just above,
1040 that that means not calling pushdecl_top_level. */
1041 IDENTIFIER_GLOBAL_VALUE (decl_name) = decl;
1044 ref = build1 (ADDR_EXPR, class_ptr_type, decl);
1045 return ref;
1048 static tree
1049 build_classdollar_field (tree type)
1051 tree decl_name = identifier_subst (DECL_NAME (TYPE_NAME (type)),
1052 "", '/', '/', ".class$");
1053 tree decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
1055 if (decl == NULL_TREE)
1057 decl
1058 = build_decl (VAR_DECL, decl_name,
1059 (build_type_variant
1060 (build_pointer_type
1061 (build_type_variant (class_type_node,
1062 /* const */ 1, 0)),
1063 /* const */ 1, 0)));
1064 TREE_STATIC (decl) = 1;
1065 TREE_CONSTANT (decl) = 1;
1066 TREE_READONLY (decl) = 1;
1067 TREE_PUBLIC (decl) = 1;
1068 java_hide_decl (decl);
1069 DECL_IGNORED_P (decl) = 1;
1070 DECL_ARTIFICIAL (decl) = 1;
1071 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
1072 IDENTIFIER_GLOBAL_VALUE (decl_name) = decl;
1073 DECL_CLASS_FIELD_P (decl) = 1;
1074 DECL_CONTEXT (decl) = type;
1077 return decl;
1080 /* Create a local variable that holds the current class$. */
1082 void
1083 cache_this_class_ref (tree fndecl)
1085 if (optimize)
1087 tree classdollar_field;
1088 if (flag_indirect_classes)
1089 classdollar_field = build_classdollar_field (output_class);
1090 else
1091 classdollar_field = build_static_class_ref (output_class);
1093 this_classdollar = build_decl (VAR_DECL, NULL_TREE,
1094 TREE_TYPE (classdollar_field));
1096 java_add_local_var (this_classdollar);
1097 java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (this_classdollar),
1098 this_classdollar, classdollar_field));
1100 else
1101 this_classdollar = build_classdollar_field (output_class);
1103 /* Prepend class initialization for static methods reachable from
1104 other classes. */
1105 if (METHOD_STATIC (fndecl)
1106 && (! METHOD_PRIVATE (fndecl)
1107 || INNER_CLASS_P (DECL_CONTEXT (fndecl)))
1108 && ! DECL_CLINIT_P (fndecl)
1109 && ! CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (fndecl))))
1111 tree init = build_call_expr (soft_initclass_node, 1,
1112 this_classdollar);
1113 java_add_stmt (init);
1117 /* Remove the reference to the local variable that holds the current
1118 class$. */
1120 void
1121 uncache_this_class_ref (tree fndecl ATTRIBUTE_UNUSED)
1123 this_classdollar = build_classdollar_field (output_class);
1126 /* Build a reference to the class TYPE.
1127 Also handles primitive types and array types. */
1129 tree
1130 build_class_ref (tree type)
1132 int is_compiled = is_compiled_class (type);
1133 if (is_compiled)
1135 tree ref, decl;
1136 if (TREE_CODE (type) == POINTER_TYPE)
1137 type = TREE_TYPE (type);
1139 if (flag_indirect_dispatch
1140 && type != output_class
1141 && TREE_CODE (type) == RECORD_TYPE)
1142 return build_indirect_class_ref (type);
1144 if (type == output_class && flag_indirect_classes)
1145 return this_classdollar;
1147 if (TREE_CODE (type) == RECORD_TYPE)
1148 return build_static_class_ref (type);
1149 else
1151 const char *name;
1152 tree decl_name;
1153 char buffer[25];
1154 decl_name = TYPE_NAME (type);
1155 if (TREE_CODE (decl_name) == TYPE_DECL)
1156 decl_name = DECL_NAME (decl_name);
1157 name = IDENTIFIER_POINTER (decl_name);
1158 if (strncmp (name, "promoted_", 9) == 0)
1159 name += 9;
1160 sprintf (buffer, "_Jv_%sClass", name);
1161 decl_name = get_identifier (buffer);
1162 decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
1163 if (decl == NULL_TREE)
1165 decl = build_decl (VAR_DECL, decl_name, class_type_node);
1166 TREE_STATIC (decl) = 1;
1167 TREE_PUBLIC (decl) = 1;
1168 DECL_EXTERNAL (decl) = 1;
1169 DECL_ARTIFICIAL (decl) = 1;
1170 pushdecl_top_level (decl);
1174 ref = build1 (ADDR_EXPR, class_ptr_type, decl);
1175 return ref;
1177 else
1178 return build_indirect_class_ref (type);
1181 /* Create a local statically allocated variable that will hold a
1182 pointer to a static field. */
1184 static tree
1185 build_fieldref_cache_entry (int index, tree fdecl ATTRIBUTE_UNUSED)
1187 tree decl, decl_name;
1188 const char *name = IDENTIFIER_POINTER (mangled_classname ("_cpool_", output_class));
1189 char *buf = alloca (strlen (name) + 20);
1190 sprintf (buf, "%s_%d_ref", name, index);
1191 decl_name = get_identifier (buf);
1192 decl = IDENTIFIER_GLOBAL_VALUE (decl_name);
1193 if (decl == NULL_TREE)
1195 decl = build_decl (VAR_DECL, decl_name, ptr_type_node);
1196 TREE_STATIC (decl) = 1;
1197 TREE_PUBLIC (decl) = 0;
1198 DECL_EXTERNAL (decl) = 0;
1199 DECL_ARTIFICIAL (decl) = 1;
1200 DECL_IGNORED_P (decl) = 1;
1201 pushdecl_top_level (decl);
1203 return decl;
1206 tree
1207 build_static_field_ref (tree fdecl)
1209 tree fclass = DECL_CONTEXT (fdecl);
1210 int is_compiled = is_compiled_class (fclass);
1212 /* Allow static final fields to fold to a constant. When using
1213 -findirect-dispatch, we simply never do this folding if compiling
1214 from .class; in the .class file constants will be referred to via
1215 the constant pool. */
1216 if (!flag_indirect_dispatch
1217 && (is_compiled
1218 || (FIELD_FINAL (fdecl) && DECL_INITIAL (fdecl) != NULL_TREE
1219 && (JSTRING_TYPE_P (TREE_TYPE (fdecl))
1220 || JNUMERIC_TYPE_P (TREE_TYPE (fdecl)))
1221 && TREE_CONSTANT (DECL_INITIAL (fdecl)))))
1223 if (is_compiled == 1)
1224 DECL_EXTERNAL (fdecl) = 1;
1226 else
1228 /* Generate a CONSTANT_FieldRef for FDECL in the constant pool
1229 and a class local static variable CACHE_ENTRY, then
1231 *(fdecl **)((__builtin_expect (cache_entry == null, false))
1232 ? cache_entry = _Jv_ResolvePoolEntry (output_class, cpool_index)
1233 : cache_entry)
1235 This can mostly be optimized away, so that the usual path is a
1236 load followed by a test and branch. _Jv_ResolvePoolEntry is
1237 only called once for each constant pool entry.
1239 There is an optimization that we don't do: at the start of a
1240 method, create a local copy of CACHE_ENTRY and use that instead.
1244 int cpool_index = alloc_constant_fieldref (output_class, fdecl);
1245 tree cache_entry = build_fieldref_cache_entry (cpool_index, fdecl);
1246 tree test
1247 = build_call_expr (built_in_decls[BUILT_IN_EXPECT], 2,
1248 build2 (EQ_EXPR, boolean_type_node,
1249 cache_entry, null_pointer_node),
1250 boolean_false_node);
1251 tree cpool_index_cst = build_int_cst (NULL_TREE, cpool_index);
1252 tree init
1253 = build_call_expr (soft_resolvepoolentry_node, 2,
1254 build_class_ref (output_class),
1255 cpool_index_cst);
1256 init = build2 (MODIFY_EXPR, ptr_type_node, cache_entry, init);
1257 init = build3 (COND_EXPR, ptr_type_node, test, init, cache_entry);
1258 init = fold_convert (build_pointer_type (TREE_TYPE (fdecl)), init);
1259 fdecl = build1 (INDIRECT_REF, TREE_TYPE (fdecl), init);
1261 return fdecl;
1265 get_access_flags_from_decl (tree decl)
1267 int access_flags = 0;
1268 if (TREE_CODE (decl) == FIELD_DECL || TREE_CODE (decl) == VAR_DECL)
1270 if (FIELD_STATIC (decl))
1271 access_flags |= ACC_STATIC;
1272 if (FIELD_PUBLIC (decl))
1273 access_flags |= ACC_PUBLIC;
1274 if (FIELD_PROTECTED (decl))
1275 access_flags |= ACC_PROTECTED;
1276 if (FIELD_PRIVATE (decl))
1277 access_flags |= ACC_PRIVATE;
1278 if (FIELD_FINAL (decl))
1279 access_flags |= ACC_FINAL;
1280 if (FIELD_VOLATILE (decl))
1281 access_flags |= ACC_VOLATILE;
1282 if (FIELD_TRANSIENT (decl))
1283 access_flags |= ACC_TRANSIENT;
1284 if (FIELD_ENUM (decl))
1285 access_flags |= ACC_ENUM;
1286 if (FIELD_SYNTHETIC (decl))
1287 access_flags |= ACC_SYNTHETIC;
1288 return access_flags;
1290 if (TREE_CODE (decl) == TYPE_DECL)
1292 if (CLASS_PUBLIC (decl))
1293 access_flags |= ACC_PUBLIC;
1294 if (CLASS_FINAL (decl))
1295 access_flags |= ACC_FINAL;
1296 if (CLASS_SUPER (decl))
1297 access_flags |= ACC_SUPER;
1298 if (CLASS_INTERFACE (decl))
1299 access_flags |= ACC_INTERFACE;
1300 if (CLASS_ABSTRACT (decl))
1301 access_flags |= ACC_ABSTRACT;
1302 if (CLASS_STATIC (decl))
1303 access_flags |= ACC_STATIC;
1304 if (CLASS_PRIVATE (decl))
1305 access_flags |= ACC_PRIVATE;
1306 if (CLASS_PROTECTED (decl))
1307 access_flags |= ACC_PROTECTED;
1308 if (CLASS_STRICTFP (decl))
1309 access_flags |= ACC_STRICT;
1310 if (CLASS_ENUM (decl))
1311 access_flags |= ACC_ENUM;
1312 if (CLASS_SYNTHETIC (decl))
1313 access_flags |= ACC_SYNTHETIC;
1314 if (CLASS_ANNOTATION (decl))
1315 access_flags |= ACC_ANNOTATION;
1316 return access_flags;
1318 if (TREE_CODE (decl) == FUNCTION_DECL)
1320 if (METHOD_PUBLIC (decl))
1321 access_flags |= ACC_PUBLIC;
1322 if (METHOD_PRIVATE (decl))
1323 access_flags |= ACC_PRIVATE;
1324 if (METHOD_PROTECTED (decl))
1325 access_flags |= ACC_PROTECTED;
1326 if (METHOD_STATIC (decl))
1327 access_flags |= ACC_STATIC;
1328 if (METHOD_FINAL (decl))
1329 access_flags |= ACC_FINAL;
1330 if (METHOD_SYNCHRONIZED (decl))
1331 access_flags |= ACC_SYNCHRONIZED;
1332 if (METHOD_NATIVE (decl))
1333 access_flags |= ACC_NATIVE;
1334 if (METHOD_ABSTRACT (decl))
1335 access_flags |= ACC_ABSTRACT;
1336 if (METHOD_STRICTFP (decl))
1337 access_flags |= ACC_STRICT;
1338 if (METHOD_INVISIBLE (decl))
1339 access_flags |= ACC_INVISIBLE;
1340 if (DECL_ARTIFICIAL (decl))
1341 access_flags |= ACC_SYNTHETIC;
1342 if (METHOD_BRIDGE (decl))
1343 access_flags |= ACC_BRIDGE;
1344 if (METHOD_VARARGS (decl))
1345 access_flags |= ACC_VARARGS;
1346 return access_flags;
1348 gcc_unreachable ();
1351 static GTY (()) int alias_labelno = 0;
1353 /* Create a private alias for METHOD. Using this alias instead of the method
1354 decl ensures that ncode entries in the method table point to the real function
1355 at runtime, not a PLT entry. */
1357 static tree
1358 make_local_function_alias (tree method)
1360 #ifdef ASM_OUTPUT_DEF
1361 tree alias;
1363 const char *method_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (method));
1364 char *name = alloca (strlen (method_name) + 2);
1365 char *buf = alloca (strlen (method_name) + 128);
1367 /* Only create aliases for local functions. */
1368 if (DECL_EXTERNAL (method))
1369 return method;
1371 /* Prefix method_name with 'L' for the alias label. */
1372 *name = 'L';
1373 strcpy (name + 1, method_name);
1375 ASM_GENERATE_INTERNAL_LABEL (buf, name, alias_labelno++);
1376 alias = build_decl (FUNCTION_DECL, get_identifier (buf),
1377 TREE_TYPE (method));
1378 DECL_CONTEXT (alias) = NULL;
1379 TREE_READONLY (alias) = TREE_READONLY (method);
1380 TREE_THIS_VOLATILE (alias) = TREE_THIS_VOLATILE (method);
1381 TREE_PUBLIC (alias) = 0;
1382 DECL_EXTERNAL (alias) = 0;
1383 DECL_ARTIFICIAL (alias) = 1;
1384 DECL_INLINE (alias) = 0;
1385 DECL_INITIAL (alias) = error_mark_node;
1386 TREE_ADDRESSABLE (alias) = 1;
1387 TREE_USED (alias) = 1;
1388 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias)) = 1;
1389 if (!flag_syntax_only)
1390 assemble_alias (alias, DECL_ASSEMBLER_NAME (method));
1391 return alias;
1392 #else
1393 return method;
1394 #endif
1397 /** Make reflection data (_Jv_Field) for field FDECL. */
1399 static tree
1400 make_field_value (tree fdecl)
1402 tree finit;
1403 int flags;
1404 tree type = TREE_TYPE (fdecl);
1405 int resolved = is_compiled_class (type) && ! flag_indirect_dispatch;
1407 START_RECORD_CONSTRUCTOR (finit, field_type_node);
1408 PUSH_FIELD_VALUE (finit, "name", build_utf8_ref (DECL_NAME (fdecl)));
1409 if (resolved)
1410 type = build_class_ref (type);
1411 else
1413 tree signature = build_java_signature (type);
1415 type = build_utf8_ref (unmangle_classname
1416 (IDENTIFIER_POINTER (signature),
1417 IDENTIFIER_LENGTH (signature)));
1419 PUSH_FIELD_VALUE (finit, "type", type);
1421 flags = get_access_flags_from_decl (fdecl);
1422 if (! resolved)
1423 flags |= 0x8000 /* FIELD_UNRESOLVED_FLAG */;
1425 PUSH_FIELD_VALUE (finit, "accflags", build_int_cst (NULL_TREE, flags));
1426 PUSH_FIELD_VALUE (finit, "bsize", TYPE_SIZE_UNIT (TREE_TYPE (fdecl)));
1429 tree field_address = integer_zero_node;
1430 if ((DECL_INITIAL (fdecl) || ! flag_indirect_classes)
1431 && FIELD_STATIC (fdecl))
1432 field_address = build_address_of (fdecl);
1434 PUSH_FIELD_VALUE
1435 (finit, "info",
1436 build_constructor_from_list (field_info_union_node,
1437 build_tree_list
1438 ((FIELD_STATIC (fdecl)
1439 ? TREE_CHAIN (TYPE_FIELDS (field_info_union_node))
1440 : TYPE_FIELDS (field_info_union_node)),
1441 (FIELD_STATIC (fdecl)
1442 ? field_address
1443 : byte_position (fdecl)))));
1446 FINISH_RECORD_CONSTRUCTOR (finit);
1447 return finit;
1450 /** Make reflection data (_Jv_Method) for method MDECL. */
1452 static tree
1453 make_method_value (tree mdecl)
1455 static int method_name_count = 0;
1456 tree minit;
1457 tree index;
1458 tree code;
1459 tree class_decl;
1460 #define ACC_TRANSLATED 0x4000
1461 int accflags = get_access_flags_from_decl (mdecl) | ACC_TRANSLATED;
1463 class_decl = DECL_CONTEXT (mdecl);
1464 /* For interfaces, the index field contains the dispatch index. */
1465 if (CLASS_INTERFACE (TYPE_NAME (class_decl)))
1466 index = build_int_cst (NULL_TREE,
1467 get_interface_method_index (mdecl, class_decl));
1468 else if (!flag_indirect_dispatch && get_method_index (mdecl) != NULL_TREE)
1469 index = get_method_index (mdecl);
1470 else
1471 index = integer_minus_one_node;
1473 code = null_pointer_node;
1474 if (METHOD_ABSTRACT (mdecl))
1475 code = build1 (ADDR_EXPR, nativecode_ptr_type_node,
1476 soft_abstractmethod_node);
1477 else
1478 code = build1 (ADDR_EXPR, nativecode_ptr_type_node,
1479 make_local_function_alias (mdecl));
1480 START_RECORD_CONSTRUCTOR (minit, method_type_node);
1481 PUSH_FIELD_VALUE (minit, "name",
1482 build_utf8_ref (DECL_CONSTRUCTOR_P (mdecl) ?
1483 init_identifier_node
1484 : DECL_NAME (mdecl)));
1486 tree signature = build_java_signature (TREE_TYPE (mdecl));
1487 PUSH_FIELD_VALUE (minit, "signature",
1488 (build_utf8_ref
1489 (unmangle_classname
1490 (IDENTIFIER_POINTER(signature),
1491 IDENTIFIER_LENGTH(signature)))));
1493 PUSH_FIELD_VALUE (minit, "accflags", build_int_cst (NULL_TREE, accflags));
1494 PUSH_FIELD_VALUE (minit, "index", index);
1495 PUSH_FIELD_VALUE (minit, "ncode", code);
1498 /* Compute the `throws' information for the method. */
1499 tree table = null_pointer_node;
1500 if (DECL_FUNCTION_THROWS (mdecl) != NULL_TREE)
1502 int length = 1 + list_length (DECL_FUNCTION_THROWS (mdecl));
1503 tree iter, type, array;
1504 char buf[60];
1506 table = tree_cons (NULL_TREE, table, NULL_TREE);
1507 for (iter = DECL_FUNCTION_THROWS (mdecl);
1508 iter != NULL_TREE;
1509 iter = TREE_CHAIN (iter))
1511 tree sig = DECL_NAME (TYPE_NAME (TREE_VALUE (iter)));
1512 tree utf8
1513 = build_utf8_ref (unmangle_classname (IDENTIFIER_POINTER (sig),
1514 IDENTIFIER_LENGTH (sig)));
1515 table = tree_cons (NULL_TREE, utf8, table);
1517 type = build_prim_array_type (ptr_type_node, length);
1518 table = build_constructor_from_list (type, table);
1519 /* Compute something unique enough. */
1520 sprintf (buf, "_methods%d", method_name_count++);
1521 array = build_decl (VAR_DECL, get_identifier (buf), type);
1522 DECL_INITIAL (array) = table;
1523 TREE_STATIC (array) = 1;
1524 DECL_ARTIFICIAL (array) = 1;
1525 DECL_IGNORED_P (array) = 1;
1526 rest_of_decl_compilation (array, 1, 0);
1528 table = build1 (ADDR_EXPR, ptr_type_node, array);
1531 PUSH_FIELD_VALUE (minit, "throws", table);
1534 FINISH_RECORD_CONSTRUCTOR (minit);
1535 return minit;
1538 static tree
1539 get_dispatch_vector (tree type)
1541 tree vtable = TYPE_VTABLE (type);
1543 if (vtable == NULL_TREE)
1545 HOST_WIDE_INT i;
1546 tree method;
1547 tree super = CLASSTYPE_SUPER (type);
1548 HOST_WIDE_INT nvirtuals = tree_low_cst (TYPE_NVIRTUALS (type), 0);
1549 vtable = make_tree_vec (nvirtuals);
1550 TYPE_VTABLE (type) = vtable;
1551 if (super != NULL_TREE)
1553 tree super_vtable = get_dispatch_vector (super);
1555 for (i = tree_low_cst (TYPE_NVIRTUALS (super), 0); --i >= 0; )
1556 TREE_VEC_ELT (vtable, i) = TREE_VEC_ELT (super_vtable, i);
1559 for (method = TYPE_METHODS (type); method != NULL_TREE;
1560 method = TREE_CHAIN (method))
1562 tree method_index = get_method_index (method);
1563 if (method_index != NULL_TREE
1564 && host_integerp (method_index, 0))
1565 TREE_VEC_ELT (vtable, tree_low_cst (method_index, 0)) = method;
1569 return vtable;
1572 static tree
1573 get_dispatch_table (tree type, tree this_class_addr)
1575 int abstract_p = CLASS_ABSTRACT (TYPE_NAME (type));
1576 tree vtable = get_dispatch_vector (type);
1577 int i, j;
1578 tree list = NULL_TREE;
1579 int nvirtuals = TREE_VEC_LENGTH (vtable);
1580 int arraysize;
1581 tree gc_descr;
1583 for (i = nvirtuals; --i >= 0; )
1585 tree method = TREE_VEC_ELT (vtable, i);
1586 if (METHOD_ABSTRACT (method))
1588 if (! abstract_p)
1589 warning (0, "%Jabstract method in non-abstract class", method);
1591 if (TARGET_VTABLE_USES_DESCRIPTORS)
1592 for (j = 0; j < TARGET_VTABLE_USES_DESCRIPTORS; ++j)
1593 list = tree_cons (NULL_TREE, null_pointer_node, list);
1594 else
1595 list = tree_cons (NULL_TREE, null_pointer_node, list);
1597 else
1599 if (TARGET_VTABLE_USES_DESCRIPTORS)
1600 for (j = 0; j < TARGET_VTABLE_USES_DESCRIPTORS; ++j)
1602 tree fdesc = build2 (FDESC_EXPR, nativecode_ptr_type_node,
1603 method, build_int_cst (NULL_TREE, j));
1604 TREE_CONSTANT (fdesc) = 1;
1605 list = tree_cons (NULL_TREE, fdesc, list);
1607 else
1608 list = tree_cons (NULL_TREE,
1609 build1 (ADDR_EXPR, nativecode_ptr_type_node,
1610 method),
1611 list);
1615 /* Dummy entry for compatibility with G++ -fvtable-thunks. When
1616 using the Boehm GC we sometimes stash a GC type descriptor
1617 there. We set the PURPOSE to NULL_TREE not to interfere (reset)
1618 the emitted byte count during the output to the assembly file. */
1619 /* With TARGET_VTABLE_USES_DESCRIPTORS, we only add one extra
1620 fake "function descriptor". It's first word is the is the class
1621 pointer, and subsequent words (usually one) contain the GC descriptor.
1622 In all other cases, we reserve two extra vtable slots. */
1623 gc_descr = get_boehm_type_descriptor (type);
1624 list = tree_cons (NULL_TREE, gc_descr, list);
1625 for (j = 1; j < TARGET_VTABLE_USES_DESCRIPTORS-1; ++j)
1626 list = tree_cons (NULL_TREE, gc_descr, list);
1627 list = tree_cons (NULL_TREE, this_class_addr, list);
1629 /** Pointer to type_info object (to be implemented), according to g++ ABI. */
1630 list = tree_cons (NULL_TREE, null_pointer_node, list);
1631 /** Offset to start of whole object. Always (ptrdiff_t)0 for Java. */
1632 list = tree_cons (integer_zero_node, null_pointer_node, list);
1634 arraysize = (TARGET_VTABLE_USES_DESCRIPTORS? nvirtuals + 1 : nvirtuals + 2);
1635 if (TARGET_VTABLE_USES_DESCRIPTORS)
1636 arraysize *= TARGET_VTABLE_USES_DESCRIPTORS;
1637 arraysize += 2;
1638 return build_constructor_from_list
1639 (build_prim_array_type (nativecode_ptr_type_node,
1640 arraysize), list);
1644 /* Set the method_index for a method decl. */
1645 void
1646 set_method_index (tree decl, tree method_index)
1648 if (method_index != NULL_TREE)
1650 /* method_index is null if we're using indirect dispatch. */
1651 method_index = fold (convert (sizetype, method_index));
1653 if (TARGET_VTABLE_USES_DESCRIPTORS)
1654 /* Add one to skip bogus descriptor for class and GC descriptor. */
1655 method_index = size_binop (PLUS_EXPR, method_index, size_int (1));
1656 else
1657 /* Add 1 to skip "class" field of dtable, and 1 to skip GC
1658 descriptor. */
1659 method_index = size_binop (PLUS_EXPR, method_index, size_int (2));
1662 DECL_VINDEX (decl) = method_index;
1665 /* Get the method_index for a method decl. */
1666 tree
1667 get_method_index (tree decl)
1669 tree method_index = DECL_VINDEX (decl);
1671 if (! method_index)
1672 return NULL;
1674 if (TARGET_VTABLE_USES_DESCRIPTORS)
1675 /* Sub one to skip bogus descriptor for class and GC descriptor. */
1676 method_index = size_binop (MINUS_EXPR, method_index, size_int (1));
1677 else
1678 /* Sub 1 to skip "class" field of dtable, and 1 to skip GC descriptor. */
1679 method_index = size_binop (MINUS_EXPR, method_index, size_int (2));
1681 return method_index;
1684 static int
1685 supers_all_compiled (tree type)
1687 while (type != NULL_TREE)
1689 if (!assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)))))
1690 return 0;
1691 type = CLASSTYPE_SUPER (type);
1693 return 1;
1696 void
1697 make_class_data (tree type)
1699 tree decl, cons, temp;
1700 tree field, fields_decl;
1701 tree static_fields = NULL_TREE;
1702 tree instance_fields = NULL_TREE;
1703 HOST_WIDE_INT static_field_count = 0;
1704 HOST_WIDE_INT instance_field_count = 0;
1705 HOST_WIDE_INT field_count;
1706 tree field_array_type;
1707 tree method;
1708 tree methods = NULL_TREE;
1709 tree dtable_decl = NULL_TREE;
1710 HOST_WIDE_INT method_count = 0;
1711 tree method_array_type;
1712 tree methods_decl;
1713 tree super;
1714 tree this_class_addr;
1715 tree constant_pool_constructor;
1716 tree interfaces = null_pointer_node;
1717 int interface_len = 0;
1718 int uses_jv_markobj = 0;
1719 tree type_decl = TYPE_NAME (type);
1720 tree id_main = get_identifier("main");
1721 tree id_class = get_identifier("java.lang.Class");
1722 /** Offset from start of virtual function table declaration
1723 to where objects actually point at, following new g++ ABI. */
1724 tree dtable_start_offset = size_int (2 * POINTER_SIZE / BITS_PER_UNIT);
1725 VEC(int, heap) *field_indexes;
1726 tree first_real_field;
1728 this_class_addr = build_static_class_ref (type);
1729 decl = TREE_OPERAND (this_class_addr, 0);
1731 if (supers_all_compiled (type) && ! CLASS_INTERFACE (type_decl)
1732 && !flag_indirect_dispatch)
1734 tree dtable = get_dispatch_table (type, this_class_addr);
1735 uses_jv_markobj = uses_jv_markobj_p (dtable);
1736 if (type == class_type_node && class_dtable_decl != NULL_TREE)
1738 /* We've already created some other class, and consequently
1739 we made class_dtable_decl. Now we just want to fill it
1740 in. */
1741 dtable_decl = class_dtable_decl;
1743 else
1745 dtable_decl = build_dtable_decl (type);
1746 TREE_STATIC (dtable_decl) = 1;
1747 DECL_ARTIFICIAL (dtable_decl) = 1;
1748 DECL_IGNORED_P (dtable_decl) = 1;
1751 TREE_PUBLIC (dtable_decl) = 1;
1752 DECL_INITIAL (dtable_decl) = dtable;
1753 /* The only dispatch table exported from a DSO is the dispatch
1754 table for java.lang.Class. */
1755 if (DECL_NAME (type_decl) != id_class)
1756 java_hide_decl (dtable_decl);
1757 if (! flag_indirect_classes)
1758 rest_of_decl_compilation (dtable_decl, 1, 0);
1759 /* Maybe we're compiling Class as the first class. If so, set
1760 class_dtable_decl to the decl we just made. */
1761 if (type == class_type_node && class_dtable_decl == NULL_TREE)
1762 class_dtable_decl = dtable_decl;
1765 /* Build Field array. */
1766 field = TYPE_FIELDS (type);
1767 while (field && DECL_ARTIFICIAL (field))
1768 field = TREE_CHAIN (field); /* Skip dummy fields. */
1769 if (field && DECL_NAME (field) == NULL_TREE)
1770 field = TREE_CHAIN (field); /* Skip dummy field for inherited data. */
1771 first_real_field = field;
1773 /* First count static and instance fields. */
1774 for ( ; field != NULL_TREE; field = TREE_CHAIN (field))
1776 if (! DECL_ARTIFICIAL (field))
1778 if (FIELD_STATIC (field))
1779 static_field_count++;
1780 else if (uses_jv_markobj || !flag_reduced_reflection)
1781 instance_field_count++;
1784 field_count = static_field_count + instance_field_count;
1785 field_indexes = VEC_alloc (int, heap, field_count);
1787 /* gcj sorts fields so that static fields come first, followed by
1788 instance fields. Unfortunately, by the time this takes place we
1789 have already generated the reflection_data for this class, and
1790 that data contains indexes into the fields. So, we generate a
1791 permutation that maps each original field index to its final
1792 position. Then we pass this permutation to
1793 rewrite_reflection_indexes(), which fixes up the reflection
1794 data. */
1796 int i;
1797 int static_count = 0;
1798 int instance_count = static_field_count;
1799 int field_index;
1801 for (i = 0, field = first_real_field;
1802 field != NULL_TREE;
1803 field = TREE_CHAIN (field), i++)
1805 if (! DECL_ARTIFICIAL (field))
1807 field_index = 0;
1808 if (FIELD_STATIC (field))
1809 field_index = static_count++;
1810 else if (uses_jv_markobj || !flag_reduced_reflection)
1811 field_index = instance_count++;
1812 VEC_quick_push (int, field_indexes, field_index);
1817 for (field = first_real_field; field != NULL_TREE;
1818 field = TREE_CHAIN (field))
1820 if (! DECL_ARTIFICIAL (field))
1822 if (FIELD_STATIC (field))
1824 /* We must always create reflection data for static fields
1825 as it is used in the creation of the field itself. */
1826 tree init = make_field_value (field);
1827 tree initial = DECL_INITIAL (field);
1828 static_fields = tree_cons (NULL_TREE, init, static_fields);
1829 /* If the initial value is a string constant,
1830 prevent output_constant from trying to assemble the value. */
1831 if (initial != NULL_TREE
1832 && TREE_TYPE (initial) == string_ptr_type_node)
1833 DECL_INITIAL (field) = NULL_TREE;
1834 rest_of_decl_compilation (field, 1, 1);
1835 DECL_INITIAL (field) = initial;
1837 else if (uses_jv_markobj || !flag_reduced_reflection)
1839 tree init = make_field_value (field);
1840 instance_fields = tree_cons (NULL_TREE, init, instance_fields);
1845 if (field_count > 0)
1847 static_fields = nreverse (static_fields);
1848 instance_fields = nreverse (instance_fields);
1849 static_fields = chainon (static_fields, instance_fields);
1850 field_array_type = build_prim_array_type (field_type_node, field_count);
1851 fields_decl = build_decl (VAR_DECL, mangled_classname ("_FL_", type),
1852 field_array_type);
1853 DECL_INITIAL (fields_decl) = build_constructor_from_list
1854 (field_array_type, static_fields);
1855 TREE_STATIC (fields_decl) = 1;
1856 DECL_ARTIFICIAL (fields_decl) = 1;
1857 DECL_IGNORED_P (fields_decl) = 1;
1858 rest_of_decl_compilation (fields_decl, 1, 0);
1860 else
1861 fields_decl = NULL_TREE;
1863 /* Build Method array. */
1864 for (method = TYPE_METHODS (type);
1865 method != NULL_TREE; method = TREE_CHAIN (method))
1867 tree init;
1868 if (METHOD_PRIVATE (method)
1869 && ! flag_keep_inline_functions
1870 && optimize)
1871 continue;
1872 /* Even if we have a decl, we don't necessarily have the code.
1873 This can happen if we inherit a method from a superclass for
1874 which we don't have a .class file. */
1875 if (METHOD_DUMMY (method))
1876 continue;
1878 /* Generate method reflection data if:
1880 - !flag_reduced_reflection.
1882 - <clinit> -- The runtime uses reflection to initialize the
1883 class.
1885 - Any method in class java.lang.Class -- Class.forName() and
1886 perhaps other things require it.
1888 - class$ -- It does not work if reflection data missing.
1890 - main -- Reflection is used to find main(String[]) methods.
1892 - public not static -- It is potentially part of an
1893 interface. The runtime uses reflection data to build
1894 interface dispatch tables. */
1895 if (!flag_reduced_reflection
1896 || DECL_CLINIT_P (method)
1897 || DECL_NAME (type_decl) == id_class
1898 || DECL_NAME (method) == id_main
1899 || (METHOD_PUBLIC (method) && !METHOD_STATIC (method)))
1901 init = make_method_value (method);
1902 method_count++;
1903 methods = tree_cons (NULL_TREE, init, methods);
1906 method_array_type = build_prim_array_type (method_type_node, method_count);
1907 methods_decl = build_decl (VAR_DECL, mangled_classname ("_MT_", type),
1908 method_array_type);
1909 DECL_INITIAL (methods_decl) = build_constructor_from_list
1910 (method_array_type, nreverse (methods));
1911 TREE_STATIC (methods_decl) = 1;
1912 DECL_ARTIFICIAL (methods_decl) = 1;
1913 DECL_IGNORED_P (methods_decl) = 1;
1914 rest_of_decl_compilation (methods_decl, 1, 0);
1916 if (class_dtable_decl == NULL_TREE)
1918 class_dtable_decl = build_dtable_decl (class_type_node);
1919 TREE_STATIC (class_dtable_decl) = 1;
1920 DECL_ARTIFICIAL (class_dtable_decl) = 1;
1921 DECL_IGNORED_P (class_dtable_decl) = 1;
1922 if (is_compiled_class (class_type_node) != 2)
1924 DECL_EXTERNAL (class_dtable_decl) = 1;
1925 rest_of_decl_compilation (class_dtable_decl, 1, 0);
1929 super = CLASSTYPE_SUPER (type);
1930 if (super == NULL_TREE)
1931 super = null_pointer_node;
1932 else if (! flag_indirect_dispatch
1933 && assume_compiled (IDENTIFIER_POINTER (DECL_NAME (type_decl)))
1934 && assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (super)))))
1935 super = build_class_ref (super);
1936 else
1938 int super_index = alloc_class_constant (super);
1939 super = build_int_cst (ptr_type_node, super_index);
1942 /* Build and emit the array of implemented interfaces. */
1943 if (type != object_type_node)
1944 interface_len = BINFO_N_BASE_BINFOS (TYPE_BINFO (type)) - 1;
1946 if (interface_len > 0)
1948 tree init = NULL_TREE;
1949 int i;
1950 tree interface_array_type, idecl;
1951 interface_array_type
1952 = build_prim_array_type (class_ptr_type, interface_len);
1953 idecl = build_decl (VAR_DECL, mangled_classname ("_IF_", type),
1954 interface_array_type);
1956 for (i = interface_len; i > 0; i--)
1958 tree child = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
1959 tree iclass = BINFO_TYPE (child);
1960 tree index;
1961 if (! flag_indirect_dispatch
1962 && (assume_compiled
1963 (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (iclass))))))
1964 index = build_class_ref (iclass);
1965 else
1967 int int_index = alloc_class_constant (iclass);
1968 index = build_int_cst (ptr_type_node, int_index);
1970 init = tree_cons (NULL_TREE, index, init);
1972 DECL_INITIAL (idecl) = build_constructor_from_list (interface_array_type,
1973 init);
1974 TREE_STATIC (idecl) = 1;
1975 DECL_ARTIFICIAL (idecl) = 1;
1976 DECL_IGNORED_P (idecl) = 1;
1977 interfaces = build1 (ADDR_EXPR, ptr_type_node, idecl);
1978 rest_of_decl_compilation (idecl, 1, 0);
1981 constant_pool_constructor = build_constants_constructor ();
1983 if (flag_indirect_dispatch)
1985 TYPE_OTABLE_DECL (type)
1986 = emit_symbol_table
1987 (DECL_NAME (TYPE_OTABLE_DECL (type)),
1988 TYPE_OTABLE_DECL (type), TYPE_OTABLE_METHODS (type),
1989 TYPE_OTABLE_SYMS_DECL (type), integer_type_node, 1);
1991 TYPE_ATABLE_DECL (type)
1992 = emit_symbol_table
1993 (DECL_NAME (TYPE_ATABLE_DECL (type)),
1994 TYPE_ATABLE_DECL (type), TYPE_ATABLE_METHODS (type),
1995 TYPE_ATABLE_SYMS_DECL (type), ptr_type_node, 1);
1997 TYPE_ITABLE_DECL (type)
1998 = emit_symbol_table
1999 (DECL_NAME (TYPE_ITABLE_DECL (type)),
2000 TYPE_ITABLE_DECL (type), TYPE_ITABLE_METHODS (type),
2001 TYPE_ITABLE_SYMS_DECL (type), ptr_type_node, 2);
2004 TYPE_CTABLE_DECL (type) = emit_catch_table (type);
2006 START_RECORD_CONSTRUCTOR (temp, object_type_node);
2007 PUSH_FIELD_VALUE (temp, "vtable",
2008 (flag_indirect_classes
2009 ? null_pointer_node
2010 : build2 (POINTER_PLUS_EXPR, dtable_ptr_type,
2011 build1 (ADDR_EXPR, dtable_ptr_type,
2012 class_dtable_decl),
2013 dtable_start_offset)));
2014 if (! flag_hash_synchronization)
2015 PUSH_FIELD_VALUE (temp, "sync_info", null_pointer_node);
2016 FINISH_RECORD_CONSTRUCTOR (temp);
2017 START_RECORD_CONSTRUCTOR (cons, class_type_node);
2018 PUSH_SUPER_VALUE (cons, temp);
2019 PUSH_FIELD_VALUE (cons, "next_or_version", gcj_abi_version);
2020 PUSH_FIELD_VALUE (cons, "name", build_utf8_ref (DECL_NAME (type_decl)));
2021 PUSH_FIELD_VALUE (cons, "accflags",
2022 build_int_cst (NULL_TREE,
2023 get_access_flags_from_decl (type_decl)));
2025 PUSH_FIELD_VALUE (cons, "superclass",
2026 CLASS_INTERFACE (type_decl) ? null_pointer_node : super);
2027 PUSH_FIELD_VALUE (cons, "constants", constant_pool_constructor);
2028 PUSH_FIELD_VALUE (cons, "methods",
2029 methods_decl == NULL_TREE ? null_pointer_node
2030 : build1 (ADDR_EXPR, method_ptr_type_node, methods_decl));
2031 PUSH_FIELD_VALUE (cons, "method_count",
2032 build_int_cst (NULL_TREE, method_count));
2034 if (flag_indirect_dispatch)
2035 PUSH_FIELD_VALUE (cons, "vtable_method_count", integer_minus_one_node);
2036 else
2037 PUSH_FIELD_VALUE (cons, "vtable_method_count", TYPE_NVIRTUALS (type));
2039 PUSH_FIELD_VALUE (cons, "fields",
2040 fields_decl == NULL_TREE ? null_pointer_node
2041 : build1 (ADDR_EXPR, field_ptr_type_node, fields_decl));
2042 /* If we're using the binary compatibility ABI we don't know the
2043 size until load time. */
2044 PUSH_FIELD_VALUE (cons, "size_in_bytes",
2045 (flag_indirect_dispatch
2046 ? integer_minus_one_node
2047 : size_in_bytes (type)));
2048 PUSH_FIELD_VALUE (cons, "field_count",
2049 build_int_cst (NULL_TREE, field_count));
2050 PUSH_FIELD_VALUE (cons, "static_field_count",
2051 build_int_cst (NULL_TREE, static_field_count));
2053 if (flag_indirect_dispatch)
2054 PUSH_FIELD_VALUE (cons, "vtable", null_pointer_node);
2055 else
2056 PUSH_FIELD_VALUE (cons, "vtable",
2057 dtable_decl == NULL_TREE ? null_pointer_node
2058 : build2 (POINTER_PLUS_EXPR, dtable_ptr_type,
2059 build1 (ADDR_EXPR, dtable_ptr_type,
2060 dtable_decl),
2061 dtable_start_offset));
2062 if (TYPE_OTABLE_METHODS (type) == NULL_TREE)
2064 PUSH_FIELD_VALUE (cons, "otable", null_pointer_node);
2065 PUSH_FIELD_VALUE (cons, "otable_syms", null_pointer_node);
2067 else
2069 pushdecl_top_level (TYPE_OTABLE_SYMS_DECL (type));
2070 PUSH_FIELD_VALUE (cons, "otable",
2071 build1 (ADDR_EXPR, otable_ptr_type, TYPE_OTABLE_DECL (type)));
2072 PUSH_FIELD_VALUE (cons, "otable_syms",
2073 build1 (ADDR_EXPR, symbols_array_ptr_type,
2074 TYPE_OTABLE_SYMS_DECL (type)));
2075 TREE_CONSTANT (TYPE_OTABLE_DECL (type)) = 1;
2077 if (TYPE_ATABLE_METHODS(type) == NULL_TREE)
2079 PUSH_FIELD_VALUE (cons, "atable", null_pointer_node);
2080 PUSH_FIELD_VALUE (cons, "atable_syms", null_pointer_node);
2082 else
2084 pushdecl_top_level (TYPE_ATABLE_SYMS_DECL (type));
2085 PUSH_FIELD_VALUE (cons, "atable",
2086 build1 (ADDR_EXPR, atable_ptr_type, TYPE_ATABLE_DECL (type)));
2087 PUSH_FIELD_VALUE (cons, "atable_syms",
2088 build1 (ADDR_EXPR, symbols_array_ptr_type,
2089 TYPE_ATABLE_SYMS_DECL (type)));
2090 TREE_CONSTANT (TYPE_ATABLE_DECL (type)) = 1;
2092 if (TYPE_ITABLE_METHODS(type) == NULL_TREE)
2094 PUSH_FIELD_VALUE (cons, "itable", null_pointer_node);
2095 PUSH_FIELD_VALUE (cons, "itable_syms", null_pointer_node);
2097 else
2099 pushdecl_top_level (TYPE_ITABLE_SYMS_DECL (type));
2100 PUSH_FIELD_VALUE (cons, "itable",
2101 build1 (ADDR_EXPR, itable_ptr_type, TYPE_ITABLE_DECL (type)));
2102 PUSH_FIELD_VALUE (cons, "itable_syms",
2103 build1 (ADDR_EXPR, symbols_array_ptr_type,
2104 TYPE_ITABLE_SYMS_DECL (type)));
2105 TREE_CONSTANT (TYPE_ITABLE_DECL (type)) = 1;
2108 PUSH_FIELD_VALUE (cons, "catch_classes",
2109 build1 (ADDR_EXPR, ptr_type_node, TYPE_CTABLE_DECL (type)));
2110 PUSH_FIELD_VALUE (cons, "interfaces", interfaces);
2111 PUSH_FIELD_VALUE (cons, "loader", null_pointer_node);
2112 PUSH_FIELD_VALUE (cons, "interface_count",
2113 build_int_cst (NULL_TREE, interface_len));
2114 PUSH_FIELD_VALUE (cons, "state",
2115 convert (byte_type_node,
2116 build_int_cst (NULL_TREE, JV_STATE_PRELOADING)));
2118 PUSH_FIELD_VALUE (cons, "thread", null_pointer_node);
2119 PUSH_FIELD_VALUE (cons, "depth", integer_zero_node);
2120 PUSH_FIELD_VALUE (cons, "ancestors", null_pointer_node);
2121 PUSH_FIELD_VALUE (cons, "idt", null_pointer_node);
2122 PUSH_FIELD_VALUE (cons, "arrayclass", null_pointer_node);
2123 PUSH_FIELD_VALUE (cons, "protectionDomain", null_pointer_node);
2126 tree assertion_table_ref;
2127 if (TYPE_ASSERTIONS (type) == NULL)
2128 assertion_table_ref = null_pointer_node;
2129 else
2130 assertion_table_ref = build1 (ADDR_EXPR,
2131 build_pointer_type (assertion_table_type),
2132 emit_assertion_table (type));
2134 PUSH_FIELD_VALUE (cons, "assertion_table", assertion_table_ref);
2137 PUSH_FIELD_VALUE (cons, "hack_signers", null_pointer_node);
2138 PUSH_FIELD_VALUE (cons, "chain", null_pointer_node);
2139 PUSH_FIELD_VALUE (cons, "aux_info", null_pointer_node);
2140 PUSH_FIELD_VALUE (cons, "engine", null_pointer_node);
2142 if (TYPE_REFLECTION_DATA (current_class))
2144 int i;
2145 int count = TYPE_REFLECTION_DATASIZE (current_class);
2146 VEC (constructor_elt, gc) *v
2147 = VEC_alloc (constructor_elt, gc, count);
2148 unsigned char *data = TYPE_REFLECTION_DATA (current_class);
2149 tree max_index = build_int_cst (sizetype, count);
2150 tree index = build_index_type (max_index);
2151 tree type = build_array_type (unsigned_byte_type_node, index);
2152 char buf[64];
2153 tree array;
2154 static int reflection_data_count;
2156 sprintf (buf, "_reflection_data_%d", reflection_data_count++);
2157 array = build_decl (VAR_DECL, get_identifier (buf), type);
2159 rewrite_reflection_indexes (field_indexes);
2161 for (i = 0; i < count; i++)
2163 constructor_elt *elt = VEC_quick_push (constructor_elt, v, NULL);
2164 elt->index = build_int_cst (sizetype, i);
2165 elt->value = build_int_cstu (byte_type_node, data[i]);
2168 DECL_INITIAL (array) = build_constructor (type, v);
2169 TREE_STATIC (array) = 1;
2170 DECL_ARTIFICIAL (array) = 1;
2171 DECL_IGNORED_P (array) = 1;
2172 TREE_READONLY (array) = 1;
2173 TREE_CONSTANT (DECL_INITIAL (array)) = 1;
2174 rest_of_decl_compilation (array, 1, 0);
2176 PUSH_FIELD_VALUE (cons, "reflection_data", build_address_of (array));
2178 free (data);
2179 TYPE_REFLECTION_DATA (current_class) = NULL;
2181 else
2182 PUSH_FIELD_VALUE (cons, "reflection_data", null_pointer_node);
2184 FINISH_RECORD_CONSTRUCTOR (cons);
2186 DECL_INITIAL (decl) = cons;
2188 /* Hash synchronization requires at least 64-bit alignment. */
2189 if (flag_hash_synchronization && POINTER_SIZE < 64)
2190 DECL_ALIGN (decl) = 64;
2192 if (flag_indirect_classes)
2194 TREE_READONLY (decl) = 1;
2195 TREE_CONSTANT (DECL_INITIAL (decl)) = 1;
2198 rest_of_decl_compilation (decl, 1, 0);
2201 tree classdollar_field = build_classdollar_field (type);
2202 if (!flag_indirect_classes)
2203 DECL_INITIAL (classdollar_field) = build_static_class_ref (type);
2204 rest_of_decl_compilation (classdollar_field, 1, 0);
2207 TYPE_OTABLE_DECL (type) = NULL_TREE;
2208 TYPE_ATABLE_DECL (type) = NULL_TREE;
2209 TYPE_CTABLE_DECL (type) = NULL_TREE;
2212 void
2213 finish_class (void)
2215 java_expand_catch_classes (current_class);
2217 current_function_decl = NULL_TREE;
2218 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (current_class)) = 0;
2219 make_class_data (current_class);
2220 register_class ();
2221 rest_of_decl_compilation (TYPE_NAME (current_class), 1, 0);
2224 /* Return 2 if CLASS is compiled by this compilation job;
2225 return 1 if CLASS can otherwise be assumed to be compiled;
2226 return 0 if we cannot assume that CLASS is compiled.
2227 Returns 1 for primitive and 0 for array types. */
2229 is_compiled_class (tree class)
2231 int seen_in_zip;
2232 if (TREE_CODE (class) == POINTER_TYPE)
2233 class = TREE_TYPE (class);
2234 if (TREE_CODE (class) != RECORD_TYPE) /* Primitive types are static. */
2235 return 1;
2236 if (TYPE_ARRAY_P (class))
2237 return 0;
2239 seen_in_zip = (TYPE_JCF (class) && JCF_SEEN_IN_ZIP (TYPE_JCF (class)));
2240 if (CLASS_FROM_CURRENTLY_COMPILED_P (class))
2242 /* The class was seen in the current ZIP file and will be
2243 available as a compiled class in the future but may not have
2244 been loaded already. Load it if necessary. This prevent
2245 build_class_ref () from crashing. */
2247 if (seen_in_zip && !CLASS_LOADED_P (class) && (class != current_class))
2248 load_class (class, 1);
2250 /* We return 2 for class seen in ZIP and class from files
2251 belonging to the same compilation unit */
2252 return 2;
2255 if (assume_compiled (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class)))))
2257 if (!CLASS_LOADED_P (class))
2259 if (class != current_class)
2260 load_class (class, 1);
2262 return 1;
2265 return 0;
2268 /* Build a VAR_DECL for the dispatch table (vtable) for class TYPE. */
2270 tree
2271 build_dtable_decl (tree type)
2273 tree dtype, decl;
2275 /* We need to build a new dtable type so that its size is uniquely
2276 computed when we're dealing with the class for real and not just
2277 faking it (like java.lang.Class during the initialization of the
2278 compiler.) We know we're not faking a class when CURRENT_CLASS is
2279 TYPE. */
2280 if (current_class == type)
2282 tree dummy = NULL_TREE;
2283 int n;
2285 dtype = make_node (RECORD_TYPE);
2287 PUSH_FIELD (dtype, dummy, "top_offset", ptr_type_node);
2288 PUSH_FIELD (dtype, dummy, "type_info", ptr_type_node);
2290 PUSH_FIELD (dtype, dummy, "class", class_ptr_type);
2291 for (n = 1; n < TARGET_VTABLE_USES_DESCRIPTORS; ++n)
2293 tree tmp_field = build_decl (FIELD_DECL, NULL_TREE, ptr_type_node);
2294 TREE_CHAIN (dummy) = tmp_field;
2295 DECL_CONTEXT (tmp_field) = dtype;
2296 DECL_ARTIFICIAL (tmp_field) = 1;
2297 dummy = tmp_field;
2300 PUSH_FIELD (dtype, dummy, "gc_descr", ptr_type_node);
2301 for (n = 1; n < TARGET_VTABLE_USES_DESCRIPTORS; ++n)
2303 tree tmp_field = build_decl (FIELD_DECL, NULL_TREE, ptr_type_node);
2304 TREE_CHAIN (dummy) = tmp_field;
2305 DECL_CONTEXT (tmp_field) = dtype;
2306 DECL_ARTIFICIAL (tmp_field) = 1;
2307 dummy = tmp_field;
2310 n = TREE_VEC_LENGTH (get_dispatch_vector (type));
2311 if (TARGET_VTABLE_USES_DESCRIPTORS)
2312 n *= TARGET_VTABLE_USES_DESCRIPTORS;
2314 PUSH_FIELD (dtype, dummy, "methods",
2315 build_prim_array_type (nativecode_ptr_type_node, n));
2316 layout_type (dtype);
2318 else
2319 dtype = dtable_type;
2321 decl = build_decl (VAR_DECL, get_identifier ("vt$"), dtype);
2322 DECL_CONTEXT (decl) = type;
2323 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
2324 DECL_VTABLE_P (decl) = 1;
2326 return decl;
2329 /* Pre-pend the TYPE_FIELDS of THIS_CLASS with a dummy FIELD_DECL for the
2330 fields inherited from SUPER_CLASS. */
2332 void
2333 push_super_field (tree this_class, tree super_class)
2335 tree base_decl;
2336 /* Don't insert the field if we're just re-laying the class out. */
2337 if (TYPE_FIELDS (this_class) && !DECL_NAME (TYPE_FIELDS (this_class)))
2338 return;
2339 base_decl = build_decl (FIELD_DECL, NULL_TREE, super_class);
2340 DECL_IGNORED_P (base_decl) = 1;
2341 TREE_CHAIN (base_decl) = TYPE_FIELDS (this_class);
2342 TYPE_FIELDS (this_class) = base_decl;
2343 DECL_SIZE (base_decl) = TYPE_SIZE (super_class);
2344 DECL_SIZE_UNIT (base_decl) = TYPE_SIZE_UNIT (super_class);
2347 /* Handle the different manners we may have to lay out a super class. */
2349 static tree
2350 maybe_layout_super_class (tree super_class, tree this_class ATTRIBUTE_UNUSED)
2352 if (!super_class)
2353 return NULL_TREE;
2354 else if (TREE_CODE (super_class) == RECORD_TYPE)
2356 if (!CLASS_LOADED_P (super_class))
2357 load_class (super_class, 1);
2359 /* We might have to layout the class before its dependency on
2360 the super class gets resolved by java_complete_class */
2361 else if (TREE_CODE (super_class) == POINTER_TYPE)
2363 if (TREE_TYPE (super_class) != NULL_TREE)
2364 super_class = TREE_TYPE (super_class);
2365 else
2366 gcc_unreachable ();
2368 if (!TYPE_SIZE (super_class))
2369 safe_layout_class (super_class);
2371 return super_class;
2374 /* safe_layout_class just makes sure that we can load a class without
2375 disrupting the current_class, input_file, input_line, etc, information
2376 about the class processed currently. */
2378 void
2379 safe_layout_class (tree class)
2381 tree save_current_class = current_class;
2382 location_t save_location = input_location;
2384 layout_class (class);
2386 current_class = save_current_class;
2387 input_location = save_location;
2390 void
2391 layout_class (tree this_class)
2393 int i;
2394 tree super_class = CLASSTYPE_SUPER (this_class);
2396 class_list = tree_cons (this_class, NULL_TREE, class_list);
2397 if (CLASS_BEING_LAIDOUT (this_class))
2399 char buffer [1024];
2400 char *report;
2401 tree current;
2403 sprintf (buffer, " with '%s'",
2404 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (this_class))));
2405 obstack_grow (&temporary_obstack, buffer, strlen (buffer));
2407 for (current = TREE_CHAIN (class_list); current;
2408 current = TREE_CHAIN (current))
2410 tree decl = TYPE_NAME (TREE_PURPOSE (current));
2411 sprintf (buffer, "\n which inherits from '%s' (%s:%d)",
2412 IDENTIFIER_POINTER (DECL_NAME (decl)),
2413 DECL_SOURCE_FILE (decl),
2414 DECL_SOURCE_LINE (decl));
2415 obstack_grow (&temporary_obstack, buffer, strlen (buffer));
2417 obstack_1grow (&temporary_obstack, '\0');
2418 report = obstack_finish (&temporary_obstack);
2419 cyclic_inheritance_report = ggc_strdup (report);
2420 obstack_free (&temporary_obstack, report);
2421 TYPE_SIZE (this_class) = error_mark_node;
2422 return;
2424 CLASS_BEING_LAIDOUT (this_class) = 1;
2426 if (super_class && !CLASS_BEING_LAIDOUT (super_class))
2428 tree maybe_super_class
2429 = maybe_layout_super_class (super_class, this_class);
2430 if (maybe_super_class == NULL
2431 || TREE_CODE (TYPE_SIZE (maybe_super_class)) == ERROR_MARK)
2433 TYPE_SIZE (this_class) = error_mark_node;
2434 CLASS_BEING_LAIDOUT (this_class) = 0;
2435 class_list = TREE_CHAIN (class_list);
2436 return;
2438 if (TYPE_SIZE (this_class) == NULL_TREE)
2439 push_super_field (this_class, maybe_super_class);
2442 layout_type (this_class);
2444 /* Also recursively load/layout any superinterfaces. */
2445 if (TYPE_BINFO (this_class))
2447 for (i = BINFO_N_BASE_BINFOS (TYPE_BINFO (this_class)) - 1; i > 0; i--)
2449 tree binfo = BINFO_BASE_BINFO (TYPE_BINFO (this_class), i);
2450 tree super_interface = BINFO_TYPE (binfo);
2451 tree maybe_super_interface
2452 = maybe_layout_super_class (super_interface, NULL_TREE);
2453 if (maybe_super_interface == NULL
2454 || TREE_CODE (TYPE_SIZE (maybe_super_interface)) == ERROR_MARK)
2456 TYPE_SIZE (this_class) = error_mark_node;
2457 CLASS_BEING_LAIDOUT (this_class) = 0;
2458 class_list = TREE_CHAIN (class_list);
2459 return;
2464 /* Convert the size back to an SI integer value. */
2465 TYPE_SIZE_UNIT (this_class) =
2466 fold (convert (int_type_node, TYPE_SIZE_UNIT (this_class)));
2468 CLASS_BEING_LAIDOUT (this_class) = 0;
2469 class_list = TREE_CHAIN (class_list);
2472 static void
2473 add_miranda_methods (tree base_class, tree search_class)
2475 int i;
2476 tree binfo, base_binfo;
2478 if (!CLASS_PARSED_P (search_class))
2479 load_class (search_class, 1);
2481 for (binfo = TYPE_BINFO (search_class), i = 1;
2482 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
2484 tree method_decl;
2485 tree elt = BINFO_TYPE (base_binfo);
2487 /* FIXME: This is totally bogus. We should not be handling
2488 Miranda methods at all if we're using the BC ABI. */
2489 if (TYPE_DUMMY (elt))
2490 continue;
2492 /* Ensure that interface methods are seen in declared order. */
2493 if (!CLASS_LOADED_P (elt))
2494 load_class (elt, 1);
2495 layout_class_methods (elt);
2497 /* All base classes will have been laid out at this point, so the order
2498 will be correct. This code must match similar layout code in the
2499 runtime. */
2500 for (method_decl = TYPE_METHODS (elt);
2501 method_decl; method_decl = TREE_CHAIN (method_decl))
2503 tree sig, override;
2505 /* An interface can have <clinit>. */
2506 if (ID_CLINIT_P (DECL_NAME (method_decl)))
2507 continue;
2509 sig = build_java_argument_signature (TREE_TYPE (method_decl));
2510 override = lookup_argument_method (base_class,
2511 DECL_NAME (method_decl), sig);
2512 if (override == NULL_TREE)
2514 /* Found a Miranda method. Add it. */
2515 tree new_method;
2516 sig = build_java_signature (TREE_TYPE (method_decl));
2517 new_method
2518 = add_method (base_class,
2519 get_access_flags_from_decl (method_decl),
2520 DECL_NAME (method_decl), sig);
2521 METHOD_INVISIBLE (new_method) = 1;
2525 /* Try superinterfaces. */
2526 add_miranda_methods (base_class, elt);
2530 void
2531 layout_class_methods (tree this_class)
2533 tree method_decl, dtable_count;
2534 tree super_class, type_name;
2536 if (TYPE_NVIRTUALS (this_class))
2537 return;
2539 super_class = CLASSTYPE_SUPER (this_class);
2541 if (super_class)
2543 super_class = maybe_layout_super_class (super_class, this_class);
2544 if (!TYPE_NVIRTUALS (super_class))
2545 layout_class_methods (super_class);
2546 dtable_count = TYPE_NVIRTUALS (super_class);
2548 else
2549 dtable_count = integer_zero_node;
2551 type_name = TYPE_NAME (this_class);
2552 if (!flag_indirect_dispatch
2553 && (CLASS_ABSTRACT (type_name) || CLASS_INTERFACE (type_name)))
2555 /* An abstract class can have methods which are declared only in
2556 an implemented interface. These are called "Miranda
2557 methods". We make a dummy method entry for such methods
2558 here. */
2559 add_miranda_methods (this_class, this_class);
2562 TYPE_METHODS (this_class) = nreverse (TYPE_METHODS (this_class));
2564 for (method_decl = TYPE_METHODS (this_class);
2565 method_decl; method_decl = TREE_CHAIN (method_decl))
2566 dtable_count = layout_class_method (this_class, super_class,
2567 method_decl, dtable_count);
2569 TYPE_NVIRTUALS (this_class) = dtable_count;
2572 /* Return the index of METHOD in INTERFACE. This index begins at 1
2573 and is used as an argument for _Jv_LookupInterfaceMethodIdx(). */
2575 get_interface_method_index (tree method, tree interface)
2577 tree meth;
2578 int i = 1;
2580 for (meth = TYPE_METHODS (interface); ; meth = TREE_CHAIN (meth))
2582 if (meth == method)
2583 return i;
2584 /* We don't want to put <clinit> into the interface table. */
2585 if (! ID_CLINIT_P (DECL_NAME (meth)))
2586 ++i;
2587 gcc_assert (meth != NULL_TREE);
2591 /* Lay METHOD_DECL out, returning a possibly new value of
2592 DTABLE_COUNT. Also mangle the method's name. */
2594 tree
2595 layout_class_method (tree this_class, tree super_class,
2596 tree method_decl, tree dtable_count)
2598 tree method_name = DECL_NAME (method_decl);
2600 TREE_PUBLIC (method_decl) = 1;
2602 if (flag_indirect_classes
2603 || (METHOD_PRIVATE (method_decl) && METHOD_STATIC (method_decl)
2604 && ! METHOD_NATIVE (method_decl)
2605 && ! special_method_p (method_decl)))
2606 java_hide_decl (method_decl);
2608 /* Considered external unless it is being compiled into this object
2609 file, or it was already flagged as external. */
2610 if (!DECL_EXTERNAL (method_decl))
2611 DECL_EXTERNAL (method_decl) = ((is_compiled_class (this_class) != 2)
2612 || METHOD_NATIVE (method_decl));
2614 if (ID_INIT_P (method_name))
2616 const char *p = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (this_class)));
2617 const char *ptr;
2618 for (ptr = p; *ptr; )
2620 if (*ptr++ == '.')
2621 p = ptr;
2623 DECL_CONSTRUCTOR_P (method_decl) = 1;
2624 build_java_signature (TREE_TYPE (method_decl));
2626 else if (! METHOD_STATIC (method_decl))
2628 tree method_sig =
2629 build_java_signature (TREE_TYPE (method_decl));
2630 bool method_override = false;
2631 tree super_method = lookup_java_method (super_class, method_name,
2632 method_sig);
2633 if (super_method != NULL_TREE
2634 && ! METHOD_DUMMY (super_method))
2636 method_override = true;
2637 if (! METHOD_PUBLIC (super_method) &&
2638 ! METHOD_PROTECTED (super_method))
2640 /* Don't override private method, or default-access method in
2641 another package. */
2642 if (METHOD_PRIVATE (super_method) ||
2643 ! in_same_package (TYPE_NAME (this_class),
2644 TYPE_NAME (super_class)))
2645 method_override = false;
2648 if (method_override)
2650 tree method_index = get_method_index (super_method);
2651 set_method_index (method_decl, method_index);
2652 if (method_index == NULL_TREE
2653 && ! flag_indirect_dispatch
2654 && ! DECL_ARTIFICIAL (super_method))
2655 error ("non-static method %q+D overrides static method",
2656 method_decl);
2658 else if (this_class == object_type_node
2659 && (METHOD_FINAL (method_decl)
2660 || METHOD_PRIVATE (method_decl)))
2662 /* We don't generate vtable entries for final Object
2663 methods. This is simply to save space, since every
2664 object would otherwise have to define them. */
2666 else if (! METHOD_PRIVATE (method_decl)
2667 && dtable_count)
2669 /* We generate vtable entries for final methods because they
2670 may one day be changed to non-final. */
2671 set_method_index (method_decl, dtable_count);
2672 dtable_count = fold_build2 (PLUS_EXPR, integer_type_node,
2673 dtable_count, integer_one_node);
2677 return dtable_count;
2680 static void
2681 register_class (void)
2683 tree node;
2685 if (!registered_class)
2686 registered_class = VEC_alloc (tree, gc, 8);
2688 if (flag_indirect_classes)
2689 node = current_class;
2690 else
2691 node = TREE_OPERAND (build_class_ref (current_class), 0);
2692 VEC_safe_push (tree, gc, registered_class, node);
2695 /* Emit a function that calls _Jv_RegisterNewClasses with a list of
2696 all the classes we have emitted. */
2698 static void
2699 emit_indirect_register_classes (tree *list_p)
2701 tree klass, t, register_class_fn;
2702 int i;
2704 tree init = NULL_TREE;
2705 int size = VEC_length (tree, registered_class) * 2 + 1;
2706 tree class_array_type
2707 = build_prim_array_type (ptr_type_node, size);
2708 tree cdecl = build_decl (VAR_DECL, get_identifier ("_Jv_CLS"),
2709 class_array_type);
2710 tree reg_class_list;
2711 for (i = 0; VEC_iterate (tree, registered_class, i, klass); ++i)
2713 init = tree_cons (NULL_TREE,
2714 fold_convert (ptr_type_node,
2715 build_static_class_ref (klass)), init);
2716 init = tree_cons
2717 (NULL_TREE,
2718 fold_convert (ptr_type_node,
2719 build_address_of (build_classdollar_field (klass))),
2720 init);
2722 init = tree_cons (NULL_TREE, integer_zero_node, init);
2723 DECL_INITIAL (cdecl) = build_constructor_from_list (class_array_type,
2724 nreverse (init));
2725 TREE_CONSTANT (DECL_INITIAL (cdecl)) = 1;
2726 TREE_STATIC (cdecl) = 1;
2727 DECL_ARTIFICIAL (cdecl) = 1;
2728 DECL_IGNORED_P (cdecl) = 1;
2729 TREE_READONLY (cdecl) = 1;
2730 TREE_CONSTANT (cdecl) = 1;
2731 rest_of_decl_compilation (cdecl, 1, 0);
2732 reg_class_list = fold_convert (ptr_type_node, build_address_of (cdecl));
2734 t = build_function_type_list (void_type_node,
2735 build_pointer_type (ptr_type_node), NULL);
2736 t = build_decl (FUNCTION_DECL,
2737 get_identifier ("_Jv_RegisterNewClasses"), t);
2738 TREE_PUBLIC (t) = 1;
2739 DECL_EXTERNAL (t) = 1;
2740 register_class_fn = t;
2741 t = build_call_expr (register_class_fn, 1, reg_class_list);
2742 append_to_statement_list (t, list_p);
2746 /* Emit something to register classes at start-up time.
2748 The preferred mechanism is through the .jcr section, which contain
2749 a list of pointers to classes which get registered during constructor
2750 invocation time.
2752 The fallback mechanism is to add statements to *LIST_P to call
2753 _Jv_RegisterClass for each class in this file. These statements will
2754 be added to a static constructor function for this translation unit. */
2756 void
2757 emit_register_classes (tree *list_p)
2759 if (registered_class == NULL)
2760 return;
2762 if (flag_indirect_classes)
2764 emit_indirect_register_classes (list_p);
2765 return;
2768 /* TARGET_USE_JCR_SECTION defaults to 1 if SUPPORTS_WEAK and
2769 TARGET_ASM_NAMED_SECTION, else 0. Some targets meet those conditions
2770 but lack suitable crtbegin/end objects or linker support. These
2771 targets can override the default in tm.h to use the fallback mechanism. */
2772 if (TARGET_USE_JCR_SECTION)
2774 tree klass, t;
2775 int i;
2777 #ifdef JCR_SECTION_NAME
2778 switch_to_section (get_section (JCR_SECTION_NAME, SECTION_WRITE, NULL));
2779 #else
2780 /* A target has defined TARGET_USE_JCR_SECTION,
2781 but doesn't have a JCR_SECTION_NAME. */
2782 gcc_unreachable ();
2783 #endif
2784 assemble_align (POINTER_SIZE);
2786 for (i = 0; VEC_iterate (tree, registered_class, i, klass); ++i)
2788 t = build_fold_addr_expr (klass);
2789 output_constant (t, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE);
2792 else
2794 tree klass, t, register_class_fn;
2795 int i;
2797 t = build_function_type_list (void_type_node, class_ptr_type, NULL);
2798 t = build_decl (FUNCTION_DECL, get_identifier ("_Jv_RegisterClass"), t);
2799 TREE_PUBLIC (t) = 1;
2800 DECL_EXTERNAL (t) = 1;
2801 register_class_fn = t;
2803 for (i = 0; VEC_iterate (tree, registered_class, i, klass); ++i)
2805 t = build_fold_addr_expr (klass);
2806 t = build_call_expr (register_class_fn, 1, t);
2807 append_to_statement_list (t, list_p);
2812 /* Make a symbol_type (_Jv_MethodSymbol) node for DECL. */
2814 static tree
2815 build_symbol_entry (tree decl, tree special)
2817 tree clname, name, signature, sym;
2818 clname = build_utf8_ref (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))));
2819 /* ??? Constructors are given the name foo.foo all the way through
2820 the compiler, but in the method table they're all renamed
2821 foo.<init>. So, we have to do the same here unless we want an
2822 unresolved reference at runtime. */
2823 name = build_utf8_ref ((TREE_CODE (decl) == FUNCTION_DECL
2824 && DECL_CONSTRUCTOR_P (decl))
2825 ? init_identifier_node
2826 : DECL_NAME (decl));
2827 signature = build_java_signature (TREE_TYPE (decl));
2828 signature = build_utf8_ref (unmangle_classname
2829 (IDENTIFIER_POINTER (signature),
2830 IDENTIFIER_LENGTH (signature)));
2831 /* SPECIAL is either NULL_TREE or integer_one_node. We emit
2832 signature addr+1 if SPECIAL, and this indicates to the runtime
2833 system that this is a "special" symbol, i.e. one that should
2834 bypass access controls. */
2835 if (special != NULL_TREE)
2836 signature = build2 (POINTER_PLUS_EXPR, TREE_TYPE (signature), signature,
2837 fold_convert (sizetype, special));
2839 START_RECORD_CONSTRUCTOR (sym, symbol_type);
2840 PUSH_FIELD_VALUE (sym, "clname", clname);
2841 PUSH_FIELD_VALUE (sym, "name", name);
2842 PUSH_FIELD_VALUE (sym, "signature", signature);
2843 FINISH_RECORD_CONSTRUCTOR (sym);
2844 TREE_CONSTANT (sym) = 1;
2846 return sym;
2849 /* Emit a symbol table: used by -findirect-dispatch. */
2851 tree
2852 emit_symbol_table (tree name, tree the_table, tree decl_list,
2853 tree the_syms_decl, tree the_array_element_type,
2854 int element_size)
2856 tree method_list, method, table, list, null_symbol;
2857 tree table_size, the_array_type;
2858 int index;
2860 /* Only emit a table if this translation unit actually made any
2861 references via it. */
2862 if (decl_list == NULL_TREE)
2863 return the_table;
2865 /* Build a list of _Jv_MethodSymbols for each entry in otable_methods. */
2866 index = 0;
2867 method_list = decl_list;
2868 list = NULL_TREE;
2869 while (method_list != NULL_TREE)
2871 tree special = TREE_PURPOSE (method_list);
2872 method = TREE_VALUE (method_list);
2873 list = tree_cons (NULL_TREE, build_symbol_entry (method, special), list);
2874 method_list = TREE_CHAIN (method_list);
2875 index++;
2878 /* Terminate the list with a "null" entry. */
2879 START_RECORD_CONSTRUCTOR (null_symbol, symbol_type);
2880 PUSH_FIELD_VALUE (null_symbol, "clname", null_pointer_node);
2881 PUSH_FIELD_VALUE (null_symbol, "name", null_pointer_node);
2882 PUSH_FIELD_VALUE (null_symbol, "signature", null_pointer_node);
2883 FINISH_RECORD_CONSTRUCTOR (null_symbol);
2884 TREE_CONSTANT (null_symbol) = 1;
2885 list = tree_cons (NULL_TREE, null_symbol, list);
2887 /* Put the list in the right order and make it a constructor. */
2888 list = nreverse (list);
2889 table = build_constructor_from_list (symbols_array_type, list);
2891 /* Make it the initial value for otable_syms and emit the decl. */
2892 DECL_INITIAL (the_syms_decl) = table;
2893 DECL_ARTIFICIAL (the_syms_decl) = 1;
2894 DECL_IGNORED_P (the_syms_decl) = 1;
2895 rest_of_decl_compilation (the_syms_decl, 1, 0);
2897 /* Now that its size is known, redefine the table as an
2898 uninitialized static array of INDEX + 1 elements. The extra entry
2899 is used by the runtime to track whether the table has been
2900 initialized. */
2901 table_size
2902 = build_index_type (build_int_cst (NULL_TREE, index * element_size + 1));
2903 the_array_type = build_array_type (the_array_element_type, table_size);
2904 the_table = build_decl (VAR_DECL, name, the_array_type);
2905 TREE_STATIC (the_table) = 1;
2906 TREE_READONLY (the_table) = 1;
2907 rest_of_decl_compilation (the_table, 1, 0);
2909 return the_table;
2912 /* Make an entry for the catch_classes list. */
2913 tree
2914 make_catch_class_record (tree catch_class, tree classname)
2916 tree entry;
2917 tree type = TREE_TYPE (TREE_TYPE (TYPE_CTABLE_DECL (output_class)));
2918 START_RECORD_CONSTRUCTOR (entry, type);
2919 PUSH_FIELD_VALUE (entry, "address", catch_class);
2920 PUSH_FIELD_VALUE (entry, "classname", classname);
2921 FINISH_RECORD_CONSTRUCTOR (entry);
2922 return entry;
2926 /* Generate the list of Throwable classes that are caught by exception
2927 handlers in this class. */
2928 tree
2929 emit_catch_table (tree this_class)
2931 tree table, table_size, array_type;
2932 TYPE_CATCH_CLASSES (this_class) =
2933 tree_cons (NULL,
2934 make_catch_class_record (null_pointer_node, null_pointer_node),
2935 TYPE_CATCH_CLASSES (this_class));
2936 TYPE_CATCH_CLASSES (this_class) = nreverse (TYPE_CATCH_CLASSES (this_class));
2937 TYPE_CATCH_CLASSES (this_class) =
2938 tree_cons (NULL,
2939 make_catch_class_record (null_pointer_node, null_pointer_node),
2940 TYPE_CATCH_CLASSES (this_class));
2941 table_size = build_index_type
2942 (build_int_cst (NULL_TREE,
2943 list_length (TYPE_CATCH_CLASSES (this_class))));
2944 array_type
2945 = build_array_type (TREE_TYPE (TREE_TYPE (TYPE_CTABLE_DECL (this_class))),
2946 table_size);
2947 table =
2948 build_decl (VAR_DECL, DECL_NAME (TYPE_CTABLE_DECL (this_class)), array_type);
2949 DECL_INITIAL (table) =
2950 build_constructor_from_list (array_type, TYPE_CATCH_CLASSES (this_class));
2951 TREE_STATIC (table) = 1;
2952 TREE_READONLY (table) = 1;
2953 DECL_IGNORED_P (table) = 1;
2954 rest_of_decl_compilation (table, 1, 0);
2955 return table;
2958 /* Given a type, return the signature used by
2959 _Jv_FindClassFromSignature() in libgcj. This isn't exactly the
2960 same as build_java_signature() because we want the canonical array
2961 type. */
2963 static tree
2964 build_signature_for_libgcj (tree type)
2966 tree sig, ref;
2968 sig = build_java_signature (type);
2969 ref = build_utf8_ref (unmangle_classname (IDENTIFIER_POINTER (sig),
2970 IDENTIFIER_LENGTH (sig)));
2971 return ref;
2974 /* Add an entry to the type assertion table. Callback used during hashtable
2975 traversal. */
2977 static int
2978 add_assertion_table_entry (void **htab_entry, void *ptr)
2980 tree entry;
2981 tree code_val, op1_utf8, op2_utf8;
2982 tree *list = (tree *) ptr;
2983 type_assertion *as = (type_assertion *) *htab_entry;
2985 code_val = build_int_cst (NULL_TREE, as->assertion_code);
2987 if (as->op1 == NULL_TREE)
2988 op1_utf8 = null_pointer_node;
2989 else
2990 op1_utf8 = build_signature_for_libgcj (as->op1);
2992 if (as->op2 == NULL_TREE)
2993 op2_utf8 = null_pointer_node;
2994 else
2995 op2_utf8 = build_signature_for_libgcj (as->op2);
2997 START_RECORD_CONSTRUCTOR (entry, assertion_entry_type);
2998 PUSH_FIELD_VALUE (entry, "assertion_code", code_val);
2999 PUSH_FIELD_VALUE (entry, "op1", op1_utf8);
3000 PUSH_FIELD_VALUE (entry, "op2", op2_utf8);
3001 FINISH_RECORD_CONSTRUCTOR (entry);
3003 *list = tree_cons (NULL_TREE, entry, *list);
3004 return true;
3007 /* Generate the type assertion table for CLASS, and return its DECL. */
3009 static tree
3010 emit_assertion_table (tree class)
3012 tree null_entry, ctor, table_decl;
3013 tree list = NULL_TREE;
3014 htab_t assertions_htab = TYPE_ASSERTIONS (class);
3016 /* Iterate through the hash table. */
3017 htab_traverse (assertions_htab, add_assertion_table_entry, &list);
3019 /* Finish with a null entry. */
3020 START_RECORD_CONSTRUCTOR (null_entry, assertion_entry_type);
3021 PUSH_FIELD_VALUE (null_entry, "assertion_code", integer_zero_node);
3022 PUSH_FIELD_VALUE (null_entry, "op1", null_pointer_node);
3023 PUSH_FIELD_VALUE (null_entry, "op2", null_pointer_node);
3024 FINISH_RECORD_CONSTRUCTOR (null_entry);
3026 list = tree_cons (NULL_TREE, null_entry, list);
3028 /* Put the list in the right order and make it a constructor. */
3029 list = nreverse (list);
3030 ctor = build_constructor_from_list (assertion_table_type, list);
3032 table_decl = build_decl (VAR_DECL, mangled_classname ("_type_assert_", class),
3033 assertion_table_type);
3035 TREE_STATIC (table_decl) = 1;
3036 TREE_READONLY (table_decl) = 1;
3037 TREE_CONSTANT (table_decl) = 1;
3038 DECL_IGNORED_P (table_decl) = 1;
3040 DECL_INITIAL (table_decl) = ctor;
3041 DECL_ARTIFICIAL (table_decl) = 1;
3042 rest_of_decl_compilation (table_decl, 1, 0);
3044 return table_decl;
3047 void
3048 init_class_processing (void)
3050 fields_ident = get_identifier ("fields");
3051 info_ident = get_identifier ("info");
3053 gcc_obstack_init (&temporary_obstack);
3056 static hashval_t java_treetreehash_hash (const void *);
3057 static int java_treetreehash_compare (const void *, const void *);
3059 /* A hash table mapping trees to trees. Used generally. */
3061 #define JAVA_TREEHASHHASH_H(t) ((hashval_t)TYPE_UID (t))
3063 static hashval_t
3064 java_treetreehash_hash (const void *k_p)
3066 const struct treetreehash_entry *const k
3067 = (const struct treetreehash_entry *) k_p;
3068 return JAVA_TREEHASHHASH_H (k->key);
3071 static int
3072 java_treetreehash_compare (const void * k1_p, const void * k2_p)
3074 const struct treetreehash_entry *const k1
3075 = (const struct treetreehash_entry *) k1_p;
3076 const_tree const k2 = (const_tree) k2_p;
3077 return (k1->key == k2);
3080 tree
3081 java_treetreehash_find (htab_t ht, tree t)
3083 struct treetreehash_entry *e;
3084 hashval_t hv = JAVA_TREEHASHHASH_H (t);
3085 e = htab_find_with_hash (ht, t, hv);
3086 if (e == NULL)
3087 return NULL;
3088 else
3089 return e->value;
3092 tree *
3093 java_treetreehash_new (htab_t ht, tree t)
3095 void **e;
3096 struct treetreehash_entry *tthe;
3097 hashval_t hv = JAVA_TREEHASHHASH_H (t);
3099 e = htab_find_slot_with_hash (ht, t, hv, INSERT);
3100 if (*e == NULL)
3102 tthe = (*ht->alloc_f) (1, sizeof (*tthe));
3103 tthe->key = t;
3104 *e = tthe;
3106 else
3107 tthe = (struct treetreehash_entry *) *e;
3108 return &tthe->value;
3111 htab_t
3112 java_treetreehash_create (size_t size, int gc)
3114 if (gc)
3115 return htab_create_ggc (size, java_treetreehash_hash,
3116 java_treetreehash_compare, NULL);
3117 else
3118 return htab_create_alloc (size, java_treetreehash_hash,
3119 java_treetreehash_compare, free, xcalloc, free);
3122 /* Break down qualified IDENTIFIER into package and class-name components.
3123 For example, given SOURCE "pkg.foo.Bar", LEFT will be set to
3124 "pkg.foo", and RIGHT to "Bar". */
3127 split_qualified_name (tree *left, tree *right, tree source)
3129 char *p, *base;
3130 int l = IDENTIFIER_LENGTH (source);
3132 base = alloca (l + 1);
3133 memcpy (base, IDENTIFIER_POINTER (source), l + 1);
3135 /* Breakdown NAME into REMAINDER . IDENTIFIER. */
3136 p = base + l - 1;
3137 while (*p != '.' && p != base)
3138 p--;
3140 /* We didn't find a '.'. Return an error. */
3141 if (p == base)
3142 return 1;
3144 *p = '\0';
3145 if (right)
3146 *right = get_identifier (p+1);
3147 *left = get_identifier (base);
3149 return 0;
3152 /* Given two classes (TYPE_DECL) or class names (IDENTIFIER), return TRUE
3153 if the classes are from the same package. */
3156 in_same_package (tree name1, tree name2)
3158 tree tmp;
3159 tree pkg1;
3160 tree pkg2;
3162 if (TREE_CODE (name1) == TYPE_DECL)
3163 name1 = DECL_NAME (name1);
3164 if (TREE_CODE (name2) == TYPE_DECL)
3165 name2 = DECL_NAME (name2);
3167 if (QUALIFIED_P (name1) != QUALIFIED_P (name2))
3168 /* One in empty package. */
3169 return 0;
3171 if (QUALIFIED_P (name1) == 0 && QUALIFIED_P (name2) == 0)
3172 /* Both in empty package. */
3173 return 1;
3175 split_qualified_name (&pkg1, &tmp, name1);
3176 split_qualified_name (&pkg2, &tmp, name2);
3178 return (pkg1 == pkg2);
3181 #include "gt-java-class.h"