1 // link.cc - Code for linking and resolving classes and pool entries.
3 /* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation
6 This file is part of libgcj.
8 This software is copyrighted work licensed under the terms of the
9 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
12 /* Author: Kresten Krab Thorup <krab@gnu.org> */
23 #include <java-interp.h>
25 // Set GC_DEBUG before including gc.h!
26 #ifdef LIBGCJ_GC_DEBUG
35 #include <java-cpool.h>
36 #include <execution.h>
39 #include "jvmti-int.h"
41 #include <java/lang/Class.h>
42 #include <java/lang/String.h>
43 #include <java/lang/StringBuffer.h>
44 #include <java/lang/Thread.h>
45 #include <java/lang/InternalError.h>
46 #include <java/lang/VirtualMachineError.h>
47 #include <java/lang/VerifyError.h>
48 #include <java/lang/NoSuchFieldError.h>
49 #include <java/lang/NoSuchMethodError.h>
50 #include <java/lang/ClassFormatError.h>
51 #include <java/lang/IllegalAccessError.h>
52 #include <java/lang/InternalError.h>
53 #include <java/lang/AbstractMethodError.h>
54 #include <java/lang/NoClassDefFoundError.h>
55 #include <java/lang/IncompatibleClassChangeError.h>
56 #include <java/lang/VerifyError.h>
57 #include <java/lang/VMClassLoader.h>
58 #include <java/lang/reflect/Modifier.h>
59 #include <java/security/CodeSource.h>
70 #define ALIGNOF(TYPE) (offsetof (aligner<TYPE>, field))
72 // This returns the alignment of a type as it would appear in a
73 // structure. This can be different from the alignment of the type
74 // itself. For instance on x86 double is 8-aligned but struct{double}
77 _Jv_Linker::get_alignment_from_class (jclass klass
)
79 if (klass
== JvPrimClass (byte
))
80 return ALIGNOF (jbyte
);
81 else if (klass
== JvPrimClass (short))
82 return ALIGNOF (jshort
);
83 else if (klass
== JvPrimClass (int))
84 return ALIGNOF (jint
);
85 else if (klass
== JvPrimClass (long))
86 return ALIGNOF (jlong
);
87 else if (klass
== JvPrimClass (boolean
))
88 return ALIGNOF (jboolean
);
89 else if (klass
== JvPrimClass (char))
90 return ALIGNOF (jchar
);
91 else if (klass
== JvPrimClass (float))
92 return ALIGNOF (jfloat
);
93 else if (klass
== JvPrimClass (double))
94 return ALIGNOF (jdouble
);
96 return ALIGNOF (jobject
);
100 _Jv_Linker::resolve_field (_Jv_Field
*field
, java::lang::ClassLoader
*loader
)
102 if (! field
->isResolved ())
104 _Jv_Utf8Const
*sig
= (_Jv_Utf8Const
*) field
->type
;
105 jclass type
= _Jv_FindClassFromSignature (sig
->chars(), loader
);
107 throw new java::lang::NoClassDefFoundError(field
->name
->toString());
109 field
->flags
&= ~_Jv_FIELD_UNRESOLVED_FLAG
;
113 // A helper for find_field that knows how to recursively search
114 // superclasses and interfaces.
116 _Jv_Linker::find_field_helper (jclass search
, _Jv_Utf8Const
*name
,
117 _Jv_Utf8Const
*type_name
, jclass type
,
122 // From 5.4.3.2. First search class itself.
123 for (int i
= 0; i
< search
->field_count
; ++i
)
125 _Jv_Field
*field
= &search
->fields
[i
];
126 if (! _Jv_equalUtf8Consts (field
->name
, name
))
129 // Checks for the odd situation where we were able to retrieve the
130 // field's class from signature but the resolution of the field itself
131 // failed which means a different class was resolved.
136 resolve_field (field
, search
->loader
);
138 catch (java::lang::Throwable
*exc
)
140 java::lang::LinkageError
*le
= new java::lang::LinkageError
142 ("field type mismatch with different loaders"));
150 // Note that we compare type names and not types. This is
151 // bizarre, but we do it because we want to find a field
152 // (and terminate the search) if it has the correct
153 // descriptor -- but then later reject it if the class
154 // loader check results in different classes. We can't just
155 // pass in the descriptor and check that way, because when
156 // the field is already resolved there is no easy way to
157 // find its descriptor again.
158 if ((field
->isResolved ()
159 ? _Jv_equalUtf8Classnames (type_name
, field
->type
->name
)
160 : _Jv_equalUtf8Classnames (type_name
,
161 (_Jv_Utf8Const
*) field
->type
)))
168 // Next search direct interfaces.
169 for (int i
= 0; i
< search
->interface_count
; ++i
)
171 _Jv_Field
*result
= find_field_helper (search
->interfaces
[i
], name
,
172 type_name
, type
, declarer
);
177 // Now search superclass.
178 search
= search
->superclass
;
185 _Jv_Linker::has_field_p (jclass search
, _Jv_Utf8Const
*field_name
)
187 for (int i
= 0; i
< search
->field_count
; ++i
)
189 _Jv_Field
*field
= &search
->fields
[i
];
190 if (_Jv_equalUtf8Consts (field
->name
, field_name
))
197 // KLASS is the class that is requesting the field.
198 // OWNER is the class in which the field should be found.
199 // FIELD_TYPE_NAME is the type descriptor for the field.
200 // Fill FOUND_CLASS with the address of the class in which the field
201 // is actually declared.
202 // This function does the class loader type checks, and
203 // also access checks. Returns the field, or throws an
204 // exception on error.
206 _Jv_Linker::find_field (jclass klass
, jclass owner
,
208 _Jv_Utf8Const
*field_name
,
209 _Jv_Utf8Const
*field_type_name
)
211 // FIXME: this allocates a _Jv_Utf8Const each time. We should make
213 // Note: This call will resolve the primitive type names ("Z", "B", ...) to
214 // their Java counterparts ("boolean", "byte", ...) if accessed via
215 // field_type->name later. Using these variants of the type name is in turn
216 // important for the find_field_helper function. However if the class
217 // resolution failed then we can only use the already given type name.
219 = _Jv_FindClassFromSignatureNoException (field_type_name
->chars(),
223 = find_field_helper (owner
, field_name
,
227 field_type
, found_class
);
231 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer();
232 sb
->append(JvNewStringLatin1("field "));
233 sb
->append(owner
->getName());
234 sb
->append(JvNewStringLatin1("."));
235 sb
->append(_Jv_NewStringUTF(field_name
->chars()));
236 sb
->append(JvNewStringLatin1(" was not found."));
237 throw new java::lang::NoSuchFieldError (sb
->toString());
240 // Accept it when the field's class could not be resolved.
241 if (field_type
== NULL
)
242 // Silently ignore that we were not able to retrieve the type to make it
243 // possible to run code which does not access this field.
246 if (_Jv_CheckAccess (klass
, *found_class
, the_field
->flags
))
248 // Note that the field returned by find_field_helper is always
249 // resolved. However, we still use the constraint mechanism
250 // because this may affect other lookups.
251 _Jv_CheckOrCreateLoadingConstraint (field_type
, (*found_class
)->loader
);
255 java::lang::StringBuffer
*sb
256 = new java::lang::StringBuffer ();
257 sb
->append(klass
->getName());
258 sb
->append(JvNewStringLatin1(": "));
259 sb
->append((*found_class
)->getName());
260 sb
->append(JvNewStringLatin1("."));
261 sb
->append(_Jv_NewStringUtf8Const (field_name
));
262 throw new java::lang::IllegalAccessError(sb
->toString());
268 // Check loading constraints for method.
270 _Jv_Linker::check_loading_constraints (_Jv_Method
*method
, jclass self_class
,
273 JArray
<jclass
> *klass_args
;
276 _Jv_GetTypesFromSignature (method
, self_class
, &klass_args
, &klass_return
);
277 jclass
*klass_arg
= elements (klass_args
);
278 java::lang::ClassLoader
*found_loader
= other_class
->loader
;
280 _Jv_CheckOrCreateLoadingConstraint (klass_return
, found_loader
);
281 for (int i
= 0; i
< klass_args
->length
; i
++)
282 _Jv_CheckOrCreateLoadingConstraint (*(klass_arg
++), found_loader
);
286 _Jv_Linker::resolve_method_entry (jclass klass
, jclass
&found_class
,
287 int class_index
, int name_and_type_index
,
288 bool init
, bool is_iface
)
290 _Jv_Constants
*pool
= &klass
->constants
;
291 jclass owner
= resolve_pool_entry (klass
, class_index
).clazz
;
293 if (init
&& owner
!= klass
)
294 _Jv_InitClass (owner
);
296 _Jv_ushort name_index
, type_index
;
297 _Jv_loadIndexes (&pool
->data
[name_and_type_index
],
301 _Jv_Utf8Const
*method_name
= pool
->data
[name_index
].utf8
;
302 _Jv_Utf8Const
*method_signature
= pool
->data
[type_index
].utf8
;
304 _Jv_Method
*the_method
= 0;
307 // We're going to cache a pointer to the _Jv_Method object
308 // when we find it. So, to ensure this doesn't get moved from
309 // beneath us, we first put all the needed Miranda methods
310 // into the target class.
311 wait_for_state (klass
, JV_STATE_LOADED
);
313 // First search the class itself.
314 the_method
= search_method_in_class (owner
, klass
,
315 method_name
, method_signature
);
320 goto end_of_method_search
;
323 // If we are resolving an interface method, search the
324 // interface's superinterfaces (A superinterface is not an
325 // interface's superclass - a superinterface is implemented by
332 ifaces
.list
= (jclass
*) _Jv_Malloc (ifaces
.len
333 * sizeof (jclass
*));
335 get_interfaces (owner
, &ifaces
);
337 for (int i
= 0; i
< ifaces
.count
; i
++)
339 jclass cls
= ifaces
.list
[i
];
340 the_method
= search_method_in_class (cls
, klass
, method_name
,
349 _Jv_Free (ifaces
.list
);
352 goto end_of_method_search
;
355 // Finally, search superclasses.
356 the_method
= (search_method_in_superclasses
357 (owner
->getSuperclass (), klass
, method_name
,
358 method_signature
, &found_class
));
361 end_of_method_search
:
364 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer();
365 sb
->append(JvNewStringLatin1("method "));
366 sb
->append(owner
->getName());
367 sb
->append(JvNewStringLatin1("."));
368 sb
->append(_Jv_NewStringUTF(method_name
->chars()));
369 sb
->append(JvNewStringLatin1(" with signature "));
370 sb
->append(_Jv_NewStringUTF(method_signature
->chars()));
371 sb
->append(JvNewStringLatin1(" was not found."));
372 throw new java::lang::NoSuchMethodError (sb
->toString());
375 // if (found_class->loader != klass->loader), then we must actually
376 // check that the types of arguments correspond. JVMS 5.4.3.3.
377 if (found_class
->loader
!= klass
->loader
)
378 check_loading_constraints (the_method
, klass
, found_class
);
383 _Jv_Mutex_t
_Jv_Linker::resolve_mutex
;
386 _Jv_Linker::init (void)
388 _Jv_MutexInit (&_Jv_Linker::resolve_mutex
);
391 // Locking in resolve_pool_entry is somewhat subtle. Constant
392 // resolution is idempotent, so it doesn't matter if two threads
393 // resolve the same entry. However, it is important that we always
394 // write the resolved flag and the data together, atomically. It is
395 // also important that we read them atomically.
397 _Jv_Linker::resolve_pool_entry (jclass klass
, int index
, bool lazy
)
399 using namespace java::lang::reflect
;
401 if (GC_base (klass
) && klass
->constants
.data
402 && ! GC_base (klass
->constants
.data
))
403 // If a class is heap-allocated but the constant pool is not this
404 // is a "new ABI" class, i.e. one where the initial constant pool
405 // is in the read-only data section of an object file. Copy the
406 // initial constant pool from there to a new heap-allocated pool.
408 jsize count
= klass
->constants
.size
;
412 = (_Jv_word
*) _Jv_AllocRawObj (count
* sizeof (_Jv_word
));
413 memcpy ((void*)constants
,
414 (void*)klass
->constants
.data
,
415 count
* sizeof (_Jv_word
));
416 klass
->constants
.data
= constants
;
420 _Jv_Constants
*pool
= &klass
->constants
;
424 tags
= read_cpool_entry (&data
, pool
, index
);
426 if ((tags
& JV_CONSTANT_ResolvedFlag
) != 0)
429 switch (tags
& ~JV_CONSTANT_LazyFlag
)
431 case JV_CONSTANT_Class
:
433 _Jv_Utf8Const
*name
= data
.utf8
;
436 if (name
->first() == '[')
437 found
= _Jv_FindClassFromSignatureNoException (name
->chars(),
440 found
= _Jv_FindClassNoException (name
, klass
->loader
);
442 // If the class could not be loaded a phantom class is created. Any
443 // function that deals with such a class but cannot do something useful
444 // with it should just throw a NoClassDefFoundError with the class'
450 found
= _Jv_NewClass(name
, NULL
, NULL
);
451 found
->state
= JV_STATE_PHANTOM
;
452 tags
|= JV_CONSTANT_ResolvedFlag
;
457 throw new java::lang::NoClassDefFoundError (name
->toString());
460 // Check accessibility, but first strip array types as
461 // _Jv_ClassNameSamePackage can't handle arrays.
464 check
&& check
->isArray();
465 check
= check
->getComponentType())
467 if ((found
->accflags
& Modifier::PUBLIC
) == Modifier::PUBLIC
468 || (_Jv_ClassNameSamePackage (check
->name
,
472 tags
|= JV_CONSTANT_ResolvedFlag
;
476 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer ();
477 sb
->append(klass
->getName());
478 sb
->append(JvNewStringLatin1(" can't access class "));
479 sb
->append(found
->getName());
480 throw new java::lang::IllegalAccessError(sb
->toString());
485 case JV_CONSTANT_String
:
488 str
= _Jv_NewStringUtf8Const (data
.utf8
);
490 tags
|= JV_CONSTANT_ResolvedFlag
;
494 case JV_CONSTANT_Fieldref
:
496 _Jv_ushort class_index
, name_and_type_index
;
497 _Jv_loadIndexes (&data
,
499 name_and_type_index
);
500 jclass owner
= (resolve_pool_entry (klass
, class_index
, true)).clazz
;
502 // If a phantom class was resolved our field reference is
503 // unusable because of the missing class.
504 if (owner
->state
== JV_STATE_PHANTOM
)
505 throw new java::lang::NoClassDefFoundError(owner
->getName());
507 // We don't initialize 'owner', but we do make sure that its
509 wait_for_state (owner
, JV_STATE_PREPARED
);
511 _Jv_ushort name_index
, type_index
;
512 _Jv_loadIndexes (&pool
->data
[name_and_type_index
],
516 _Jv_Utf8Const
*field_name
= pool
->data
[name_index
].utf8
;
517 _Jv_Utf8Const
*field_type_name
= pool
->data
[type_index
].utf8
;
519 jclass found_class
= 0;
520 _Jv_Field
*the_field
= find_field (klass
, owner
,
524 // Initialize the field's declaring class, not its qualifying
526 _Jv_InitClass (found_class
);
527 data
.field
= the_field
;
528 tags
|= JV_CONSTANT_ResolvedFlag
;
532 case JV_CONSTANT_Methodref
:
533 case JV_CONSTANT_InterfaceMethodref
:
535 _Jv_ushort class_index
, name_and_type_index
;
536 _Jv_loadIndexes (&data
,
538 name_and_type_index
);
540 _Jv_Method
*the_method
;
542 the_method
= resolve_method_entry (klass
, found_class
,
543 class_index
, name_and_type_index
,
545 tags
== JV_CONSTANT_InterfaceMethodref
);
548 = klass
->engine
->resolve_method(the_method
,
550 ((the_method
->accflags
551 & Modifier::STATIC
) != 0));
552 tags
|= JV_CONSTANT_ResolvedFlag
;
557 write_cpool_entry (data
, tags
, pool
, index
);
562 // This function is used to lazily locate superclasses and
563 // superinterfaces. This must be called with the class lock held.
565 _Jv_Linker::resolve_class_ref (jclass klass
, jclass
*classref
)
567 jclass ret
= *classref
;
569 // If superclass looks like a constant pool entry, resolve it now.
570 if (ret
&& (uaddr
) ret
< (uaddr
) klass
->constants
.size
)
572 if (klass
->state
< JV_STATE_LINKED
)
574 _Jv_Utf8Const
*name
= klass
->constants
.data
[(uaddr
) *classref
].utf8
;
575 ret
= _Jv_FindClass (name
, klass
->loader
);
578 throw new java::lang::NoClassDefFoundError (name
->toString());
582 ret
= klass
->constants
.data
[(uaddr
) classref
].clazz
;
587 // Find a method declared in the cls that is referenced from klass and
588 // perform access checks if CHECK_PERMS is true.
590 _Jv_Linker::search_method_in_class (jclass cls
, jclass klass
,
591 _Jv_Utf8Const
*method_name
,
592 _Jv_Utf8Const
*method_signature
,
595 using namespace java::lang::reflect
;
597 for (int i
= 0; i
< cls
->method_count
; i
++)
599 _Jv_Method
*method
= &cls
->methods
[i
];
600 if ( (!_Jv_equalUtf8Consts (method
->name
,
602 || (!_Jv_equalUtf8Consts (method
->signature
,
606 if (!check_perms
|| _Jv_CheckAccess (klass
, cls
, method
->accflags
))
610 java::lang::StringBuffer
*sb
= new java::lang::StringBuffer();
611 sb
->append(klass
->getName());
612 sb
->append(JvNewStringLatin1(": "));
613 sb
->append(cls
->getName());
614 sb
->append(JvNewStringLatin1("."));
615 sb
->append(_Jv_NewStringUTF(method_name
->chars()));
616 sb
->append(_Jv_NewStringUTF(method_signature
->chars()));
617 throw new java::lang::IllegalAccessError (sb
->toString());
623 // Like search_method_in_class, but work our way up the superclass
626 _Jv_Linker::search_method_in_superclasses (jclass cls
, jclass klass
,
627 _Jv_Utf8Const
*method_name
,
628 _Jv_Utf8Const
*method_signature
,
629 jclass
*found_class
, bool check_perms
)
631 _Jv_Method
*the_method
= NULL
;
633 for ( ; cls
!= 0; cls
= cls
->getSuperclass ())
635 the_method
= search_method_in_class (cls
, klass
, method_name
,
636 method_signature
, check_perms
);
648 #define INITIAL_IOFFSETS_LEN 4
649 #define INITIAL_IFACES_LEN 4
651 static _Jv_IDispatchTable null_idt
= {SHRT_MAX
, 0, {}};
653 // Generate tables for constant-time assignment testing and interface
654 // method lookup. This implements the technique described by Per Bothner
655 // <per@bothner.com> on the java-discuss mailing list on 1999-09-02:
656 // http://gcc.gnu.org/ml/java/1999-q3/msg00377.html
658 _Jv_Linker::prepare_constant_time_tables (jclass klass
)
660 if (klass
->isPrimitive () || klass
->isInterface ())
663 // Short-circuit in case we've been called already.
664 if ((klass
->idt
!= NULL
) || klass
->depth
!= 0)
667 // Calculate the class depth and ancestor table. The depth of a class
668 // is how many "extends" it is removed from Object. Thus the depth of
669 // java.lang.Object is 0, but the depth of java.io.FilterOutputStream
670 // is 2. Depth is defined for all regular and array classes, but not
671 // interfaces or primitive types.
673 jclass klass0
= klass
;
674 jboolean has_interfaces
= false;
675 while (klass0
!= &java::lang::Object::class$
)
677 if (klass0
->interface_count
)
678 has_interfaces
= true;
679 klass0
= klass0
->superclass
;
683 // We do class member testing in constant time by using a small table
684 // of all the ancestor classes within each class. The first element is
685 // a pointer to the current class, and the rest are pointers to the
686 // classes ancestors, ordered from the current class down by decreasing
687 // depth. We do not include java.lang.Object in the table of ancestors,
688 // since it is redundant. Note that the classes pointed to by
689 // 'ancestors' will always be reachable by other paths.
691 klass
->ancestors
= (jclass
*) _Jv_AllocBytes (klass
->depth
694 for (int index
= 0; index
< klass
->depth
; index
++)
696 klass
->ancestors
[index
] = klass0
;
697 klass0
= klass0
->superclass
;
700 if ((klass
->accflags
& java::lang::reflect::Modifier::ABSTRACT
) != 0)
703 // Optimization: If class implements no interfaces, use a common
704 // predefined interface table.
707 klass
->idt
= &null_idt
;
713 ifaces
.len
= INITIAL_IFACES_LEN
;
714 ifaces
.list
= (jclass
*) _Jv_Malloc (ifaces
.len
* sizeof (jclass
*));
716 int itable_size
= get_interfaces (klass
, &ifaces
);
718 if (ifaces
.count
> 0)
720 // The classes pointed to by the itable will always be reachable
722 int idt_bytes
= sizeof (_Jv_IDispatchTable
) + (itable_size
724 klass
->idt
= (_Jv_IDispatchTable
*) _Jv_AllocBytes (idt_bytes
);
725 klass
->idt
->itable_length
= itable_size
;
727 jshort
*itable_offsets
=
728 (jshort
*) _Jv_Malloc (ifaces
.count
* sizeof (jshort
));
730 generate_itable (klass
, &ifaces
, itable_offsets
);
732 jshort cls_iindex
= find_iindex (ifaces
.list
, itable_offsets
,
735 for (int i
= 0; i
< ifaces
.count
; i
++)
737 ifaces
.list
[i
]->ioffsets
[cls_iindex
] = itable_offsets
[i
];
740 klass
->idt
->iindex
= cls_iindex
;
742 _Jv_Free (ifaces
.list
);
743 _Jv_Free (itable_offsets
);
747 klass
->idt
->iindex
= SHRT_MAX
;
751 // Return index of item in list, or -1 if item is not present.
753 _Jv_Linker::indexof (void *item
, void **list
, jshort list_len
)
755 for (int i
=0; i
< list_len
; i
++)
763 // Find all unique interfaces directly or indirectly implemented by klass.
764 // Returns the size of the interface dispatch table (itable) for klass, which
765 // is the number of unique interfaces plus the total number of methods that
766 // those interfaces declare. May extend ifaces if required.
768 _Jv_Linker::get_interfaces (jclass klass
, _Jv_ifaces
*ifaces
)
772 for (int i
= 0; i
< klass
->interface_count
; i
++)
774 jclass iface
= klass
->interfaces
[i
];
776 /* Make sure interface is linked. */
777 wait_for_state(iface
, JV_STATE_LINKED
);
779 if (indexof (iface
, (void **) ifaces
->list
, ifaces
->count
) == -1)
781 if (ifaces
->count
+ 1 >= ifaces
->len
)
783 /* Resize ifaces list */
784 ifaces
->len
= ifaces
->len
* 2;
786 = (jclass
*) _Jv_Realloc (ifaces
->list
,
787 ifaces
->len
* sizeof(jclass
));
789 ifaces
->list
[ifaces
->count
] = iface
;
792 result
+= get_interfaces (klass
->interfaces
[i
], ifaces
);
796 if (klass
->isInterface())
798 // We want to add 1 plus the number of interface methods here.
799 // But, we take special care to skip <clinit>.
801 for (int i
= 0; i
< klass
->method_count
; ++i
)
803 if (klass
->methods
[i
].name
->first() != '<')
807 else if (klass
->superclass
)
808 result
+= get_interfaces (klass
->superclass
, ifaces
);
812 // Fill out itable in klass, resolving method declarations in each ifaces.
813 // itable_offsets is filled out with the position of each iface in itable,
814 // such that itable[itable_offsets[n]] == ifaces.list[n].
816 _Jv_Linker::generate_itable (jclass klass
, _Jv_ifaces
*ifaces
,
817 jshort
*itable_offsets
)
819 void **itable
= klass
->idt
->itable
;
820 jshort itable_pos
= 0;
822 for (int i
= 0; i
< ifaces
->count
; i
++)
824 jclass iface
= ifaces
->list
[i
];
825 itable_offsets
[i
] = itable_pos
;
826 itable_pos
= append_partial_itable (klass
, iface
, itable
, itable_pos
);
828 /* Create ioffsets table for iface */
829 if (iface
->ioffsets
== NULL
)
831 // The first element of ioffsets is its length (itself included).
832 jshort
*ioffsets
= (jshort
*) _Jv_AllocBytes (INITIAL_IOFFSETS_LEN
834 ioffsets
[0] = INITIAL_IOFFSETS_LEN
;
835 for (int i
= 1; i
< INITIAL_IOFFSETS_LEN
; i
++)
838 iface
->ioffsets
= ioffsets
;
843 // Format method name for use in error messages.
845 _Jv_GetMethodString (jclass klass
, _Jv_Method
*meth
,
848 using namespace java::lang
;
849 StringBuffer
*buf
= new StringBuffer (klass
->name
->toString());
850 buf
->append (jchar ('.'));
851 buf
->append (meth
->name
->toString());
852 buf
->append ((jchar
) ' ');
853 buf
->append (meth
->signature
->toString());
856 buf
->append(JvNewStringLatin1(" in "));
857 buf
->append(derived
->name
->toString());
859 return buf
->toString();
863 _Jv_ThrowNoSuchMethodError ()
865 throw new java::lang::NoSuchMethodError
;
868 #if defined USE_LIBFFI && FFI_CLOSURES && defined(INTERPRETER)
869 // A function whose invocation is prepared using libffi. It gets called
870 // whenever a static method of a missing class is invoked. The data argument
871 // holds a reference to a String denoting the missing class.
872 // The prepared function call is stored in a class' atable.
874 _Jv_ThrowNoClassDefFoundErrorTrampoline(ffi_cif
*,
879 throw new java::lang::NoClassDefFoundError(
880 _Jv_NewStringUtf8Const((_Jv_Utf8Const
*) data
));
883 // A variant of the NoClassDefFoundError throwing method that can
884 // be used without libffi.
886 _Jv_ThrowNoClassDefFoundError()
888 throw new java::lang::NoClassDefFoundError();
892 // Throw a NoSuchFieldError. Called by compiler-generated code when
893 // an otable entry is zero. OTABLE_INDEX is the index in the caller's
894 // otable that refers to the missing field. This index may be used to
895 // print diagnostic information about the field.
897 _Jv_ThrowNoSuchFieldError (int /* otable_index */)
899 throw new java::lang::NoSuchFieldError
;
902 // This is put in empty vtable slots.
904 _Jv_ThrowAbstractMethodError ()
906 throw new java::lang::AbstractMethodError();
909 // Each superinterface of a class (i.e. each interface that the class
910 // directly or indirectly implements) has a corresponding "Partial
911 // Interface Dispatch Table" whose size is (number of methods + 1) words.
912 // The first word is a pointer to the interface (i.e. the java.lang.Class
913 // instance for that interface). The remaining words are pointers to the
914 // actual methods that implement the methods declared in the interface,
915 // in order of declaration.
917 // Append partial interface dispatch table for "iface" to "itable", at
918 // position itable_pos.
919 // Returns the offset at which the next partial ITable should be appended.
921 _Jv_Linker::append_partial_itable (jclass klass
, jclass iface
,
922 void **itable
, jshort pos
)
924 using namespace java::lang::reflect
;
926 itable
[pos
++] = (void *) iface
;
929 for (int j
=0; j
< iface
->method_count
; j
++)
931 // Skip '<clinit>' here.
932 if (iface
->methods
[j
].name
->first() == '<')
937 for (cl
= klass
; cl
; cl
= cl
->getSuperclass())
939 meth
= _Jv_GetMethodLocal (cl
, iface
->methods
[j
].name
,
940 iface
->methods
[j
].signature
);
948 if ((meth
->accflags
& Modifier::STATIC
) != 0)
949 throw new java::lang::IncompatibleClassChangeError
950 (_Jv_GetMethodString (klass
, meth
));
951 if ((meth
->accflags
& Modifier::PUBLIC
) == 0)
952 throw new java::lang::IllegalAccessError
953 (_Jv_GetMethodString (klass
, meth
));
955 if ((meth
->accflags
& Modifier::ABSTRACT
) != 0)
956 itable
[pos
] = (void *) &_Jv_ThrowAbstractMethodError
;
958 itable
[pos
] = meth
->ncode
;
960 if (cl
->loader
!= iface
->loader
)
961 check_loading_constraints (meth
, cl
, iface
);
965 // The method doesn't exist in klass. Binary compatibility rules
966 // permit this, so we delay the error until runtime using a pointer
967 // to a method which throws an exception.
968 itable
[pos
] = (void *) _Jv_ThrowNoSuchMethodError
;
976 static _Jv_Mutex_t iindex_mutex
;
977 static bool iindex_mutex_initialized
= false;
979 // We need to find the correct offset in the Class Interface Dispatch
980 // Table for a given interface. Once we have that, invoking an interface
981 // method just requires combining the Method's index in the interface
982 // (known at compile time) to get the correct method. Doing a type test
983 // (cast or instanceof) is the same problem: Once we have a possible Partial
984 // Interface Dispatch Table, we just compare the first element to see if it
985 // matches the desired interface. So how can we find the correct offset?
986 // Our solution is to keep a vector of candiate offsets in each interface
987 // (ioffsets), and in each class we have an index (idt->iindex) used to
988 // select the correct offset from ioffsets.
990 // Calculate and return iindex for a new class.
991 // ifaces is a vector of num interfaces that the class implements.
992 // offsets[j] is the offset in the interface dispatch table for the
993 // interface corresponding to ifaces[j].
994 // May extend the interface ioffsets if required.
996 _Jv_Linker::find_iindex (jclass
*ifaces
, jshort
*offsets
, jshort num
)
1001 // Acquire a global lock to prevent itable corruption in case of multiple
1002 // classes that implement an intersecting set of interfaces being linked
1003 // simultaneously. We can assume that the mutex will be initialized
1005 if (! iindex_mutex_initialized
)
1007 _Jv_MutexInit (&iindex_mutex
);
1008 iindex_mutex_initialized
= true;
1011 _Jv_MutexLock (&iindex_mutex
);
1013 for (i
=1;; i
++) /* each potential position in ioffsets */
1015 for (j
=0;; j
++) /* each iface */
1019 if (i
>= ifaces
[j
]->ioffsets
[0])
1021 int ioffset
= ifaces
[j
]->ioffsets
[i
];
1022 /* We can potentially share this position with another class. */
1023 if (ioffset
>= 0 && ioffset
!= offsets
[j
])
1024 break; /* Nope. Try next i. */
1028 for (j
= 0; j
< num
; j
++)
1030 int len
= ifaces
[j
]->ioffsets
[0];
1034 int newlen
= 2 * len
;
1038 jshort
*old_ioffsets
= ifaces
[j
]->ioffsets
;
1039 jshort
*new_ioffsets
= (jshort
*) _Jv_AllocBytes (newlen
1041 memcpy (&new_ioffsets
[1], &old_ioffsets
[1],
1042 (len
- 1) * sizeof (jshort
));
1043 new_ioffsets
[0] = newlen
;
1045 while (len
< newlen
)
1046 new_ioffsets
[len
++] = -1;
1048 ifaces
[j
]->ioffsets
= new_ioffsets
;
1050 ifaces
[j
]->ioffsets
[i
] = offsets
[j
];
1053 _Jv_MutexUnlock (&iindex_mutex
);
1058 #if defined USE_LIBFFI && FFI_CLOSURES && defined(INTERPRETER)
1059 // We use a structure of this type to store the closure that
1060 // represents a missing method.
1061 struct method_closure
1063 // This field must come first, since the address of this field will
1064 // be the same as the address of the overall structure. This is due
1065 // to disabling interior pointers in the GC.
1066 ffi_closure closure
;
1067 _Jv_ClosureList list
;
1069 ffi_type
*arg_types
[1];
1073 _Jv_Linker::create_error_method (_Jv_Utf8Const
*class_name
, jclass klass
)
1076 method_closure
*closure
1077 = (method_closure
*)ffi_closure_alloc (sizeof (method_closure
), &code
);
1079 closure
->arg_types
[0] = &ffi_type_void
;
1081 // Initializes the cif and the closure. If that worked the closure
1082 // is returned and can be used as a function pointer in a class'
1084 if ( ffi_prep_cif (&closure
->cif
,
1088 closure
->arg_types
) == FFI_OK
1089 && ffi_prep_closure_loc (&closure
->closure
,
1091 _Jv_ThrowNoClassDefFoundErrorTrampoline
,
1095 closure
->list
.registerClosure (klass
, closure
);
1100 ffi_closure_free (closure
);
1101 java::lang::StringBuffer
*buffer
= new java::lang::StringBuffer();
1102 buffer
->append(JvNewStringLatin1("Error setting up FFI closure"
1103 " for static method of"
1104 " missing class: "));
1105 buffer
->append (_Jv_NewStringUtf8Const(class_name
));
1106 throw new java::lang::InternalError(buffer
->toString());
1111 _Jv_Linker::create_error_method (_Jv_Utf8Const
*, jclass
)
1113 // Codepath for platforms which do not support (or want) libffi.
1114 // You have to accept that it is impossible to provide the name
1115 // of the missing class then.
1116 return (void *) _Jv_ThrowNoClassDefFoundError
;
1118 #endif // USE_LIBFFI && FFI_CLOSURES
1120 // Functions for indirect dispatch (symbolic virtual binding) support.
1122 // There are three tables, atable otable and itable. atable is an
1123 // array of addresses, and otable is an array of offsets, and these
1124 // are used for static and virtual members respectively. itable is an
1125 // array of pairs {address, index} where each address is a pointer to
1128 // {a,o,i}table_syms is an array of _Jv_MethodSymbols. Each such
1129 // symbol is a tuple of {classname, member name, signature}.
1131 // Set this to true to enable debugging of indirect dispatch tables/linking.
1132 static bool debug_link
= false;
1134 // link_symbol_table() scans these two arrays and fills in the
1135 // corresponding atable and otable with the addresses of static
1136 // members and the offsets of virtual members.
1138 // The offset (in bytes) for each resolved method or field is placed
1139 // at the corresponding position in the virtual method offset table
1142 // This must be called while holding the class lock.
1145 _Jv_Linker::link_symbol_table (jclass klass
)
1148 _Jv_MethodSymbol sym
;
1149 if (klass
->otable
== NULL
1150 || klass
->otable
->state
!= 0)
1153 klass
->otable
->state
= 1;
1156 fprintf (stderr
, "Fixing up otable in %s:\n", klass
->name
->chars());
1158 (sym
= klass
->otable_syms
[index
]).class_name
!= NULL
;
1161 jclass target_class
= _Jv_FindClass (sym
.class_name
, klass
->loader
);
1162 _Jv_Method
*meth
= NULL
;
1164 _Jv_Utf8Const
*signature
= sym
.signature
;
1166 maybe_adjust_signature (signature
, special
);
1168 if (target_class
== NULL
)
1169 throw new java::lang::NoClassDefFoundError
1170 (_Jv_NewStringUTF (sym
.class_name
->chars()));
1172 // We're looking for a field or a method, and we can tell
1173 // which is needed by looking at the signature.
1174 if (signature
->first() == '(' && signature
->len() >= 2)
1176 // Looks like someone is trying to invoke an interface method
1177 if (target_class
->isInterface())
1179 using namespace java::lang
;
1180 StringBuffer
*sb
= new StringBuffer();
1181 sb
->append(JvNewStringLatin1("found interface "));
1182 sb
->append(target_class
->getName());
1183 sb
->append(JvNewStringLatin1(" when searching for a class"));
1184 throw new VerifyError(sb
->toString());
1187 // If the target class does not have a vtable_method_count yet,
1188 // then we can't tell the offsets for its methods, so we must lay
1190 wait_for_state(target_class
, JV_STATE_PREPARED
);
1194 meth
= (search_method_in_superclasses
1195 (target_class
, klass
, sym
.name
, signature
,
1196 NULL
, special
== 0));
1198 catch (::java::lang::IllegalAccessError
*e
)
1202 // Every class has a throwNoSuchMethodErrorIndex method that
1203 // it inherits from java.lang.Object. Find its vtable
1205 static int throwNoSuchMethodErrorIndex
;
1206 if (throwNoSuchMethodErrorIndex
== 0)
1209 = _Jv_makeUtf8Const ("throwNoSuchMethodError",
1210 strlen ("throwNoSuchMethodError"));
1212 = _Jv_LookupDeclaredMethod (&java::lang::Object::class$
,
1213 name
, gcj::void_signature
);
1214 throwNoSuchMethodErrorIndex
1215 = _Jv_VTable::idx_to_offset (meth
->index
);
1218 // If we don't find a nonstatic method, insert the
1219 // vtable index of Object.throwNoSuchMethodError().
1220 // This defers the missing method error until an attempt
1221 // is made to execute it.
1226 offset
= _Jv_VTable::idx_to_offset (meth
->index
);
1228 offset
= throwNoSuchMethodErrorIndex
;
1231 JvFail ("Bad method index");
1232 JvAssert (meth
->index
< target_class
->vtable_method_count
);
1234 klass
->otable
->offsets
[index
] = offset
;
1238 fprintf (stderr
, " offsets[%d] = %d (class %s@%p : %s(%s))\n",
1240 (int)klass
->otable
->offsets
[index
],
1241 (const char*)target_class
->name
->chars(),
1243 (const char*)sym
.name
->chars(),
1244 (const char*)signature
->chars());
1250 wait_for_state(target_class
, JV_STATE_PREPARED
);
1252 _Jv_Field
*the_field
= NULL
;
1255 the_field
= find_field (klass
, target_class
, &found_class
,
1256 sym
.name
, signature
);
1257 if ((the_field
->flags
& java::lang::reflect::Modifier::STATIC
))
1258 throw new java::lang::IncompatibleClassChangeError
;
1260 klass
->otable
->offsets
[index
] = the_field
->u
.boffset
;
1262 catch (java::lang::NoSuchFieldError
*err
)
1264 klass
->otable
->offsets
[index
] = 0;
1270 if (klass
->atable
== NULL
|| klass
->atable
->state
!= 0)
1273 klass
->atable
->state
= 1;
1276 (sym
= klass
->atable_syms
[index
]).class_name
!= NULL
;
1279 jclass target_class
=
1280 _Jv_FindClassNoException (sym
.class_name
, klass
->loader
);
1282 _Jv_Method
*meth
= NULL
;
1284 _Jv_Utf8Const
*signature
= sym
.signature
;
1286 maybe_adjust_signature (signature
, special
);
1288 // ??? Setting this pointer to null will at least get us a
1289 // NullPointerException
1290 klass
->atable
->addresses
[index
] = NULL
;
1292 bool use_error_method
= false;
1294 // If the target class is missing we prepare a function call
1295 // that throws a NoClassDefFoundError and store the address of
1296 // that newly prepared method in the atable. The user can run
1297 // code in classes where the missing class is part of the
1298 // execution environment as long as it is never referenced.
1299 if (target_class
== NULL
)
1300 use_error_method
= true;
1301 // We're looking for a static field or a static method, and we
1302 // can tell which is needed by looking at the signature.
1303 else if (signature
->first() == '(' && signature
->len() >= 2)
1305 // If the target class does not have a vtable_method_count yet,
1306 // then we can't tell the offsets for its methods, so we must lay
1308 wait_for_state (target_class
, JV_STATE_PREPARED
);
1310 // Interface methods cannot have bodies.
1311 if (target_class
->isInterface())
1313 using namespace java::lang
;
1314 StringBuffer
*sb
= new StringBuffer();
1315 sb
->append(JvNewStringLatin1("class "));
1316 sb
->append(target_class
->getName());
1317 sb
->append(JvNewStringLatin1(" is an interface: "
1319 throw new VerifyError(sb
->toString());
1324 meth
= (search_method_in_superclasses
1325 (target_class
, klass
, sym
.name
, signature
,
1326 NULL
, special
== 0));
1328 catch (::java::lang::IllegalAccessError
*e
)
1334 if (meth
->ncode
) // Maybe abstract?
1336 klass
->atable
->addresses
[index
] = meth
->ncode
;
1338 fprintf (stderr
, " addresses[%d] = %p (class %s@%p : %s(%s))\n",
1340 &klass
->atable
->addresses
[index
],
1341 (const char*)target_class
->name
->chars(),
1343 (const char*)sym
.name
->chars(),
1344 (const char*)signature
->chars());
1348 use_error_method
= true;
1350 if (use_error_method
)
1351 klass
->atable
->addresses
[index
]
1352 = create_error_method(sym
.class_name
, klass
);
1358 // Try fields only if the target class exists.
1359 if (target_class
!= NULL
)
1361 wait_for_state(target_class
, JV_STATE_PREPARED
);
1363 _Jv_Field
*the_field
= find_field (klass
, target_class
, &found_class
,
1364 sym
.name
, signature
);
1365 if ((the_field
->flags
& java::lang::reflect::Modifier::STATIC
))
1366 klass
->atable
->addresses
[index
] = the_field
->u
.addr
;
1368 throw new java::lang::IncompatibleClassChangeError
;
1373 if (klass
->itable
== NULL
1374 || klass
->itable
->state
!= 0)
1377 klass
->itable
->state
= 1;
1380 (sym
= klass
->itable_syms
[index
]).class_name
!= NULL
;
1383 jclass target_class
= _Jv_FindClass (sym
.class_name
, klass
->loader
);
1385 _Jv_Utf8Const
*signature
= sym
.signature
;
1387 maybe_adjust_signature (signature
, special
);
1392 wait_for_state(target_class
, JV_STATE_LOADED
);
1393 bool found
= _Jv_getInterfaceMethod (target_class
, cls
, i
,
1394 sym
.name
, signature
);
1398 klass
->itable
->addresses
[index
* 2] = cls
;
1399 klass
->itable
->addresses
[index
* 2 + 1] = (void *)(unsigned long) i
;
1402 fprintf (stderr
, " interfaces[%d] = %p (interface %s@%p : %s(%s))\n",
1404 klass
->itable
->addresses
[index
* 2],
1405 (const char*)cls
->name
->chars(),
1407 (const char*)sym
.name
->chars(),
1408 (const char*)signature
->chars());
1409 fprintf (stderr
, " [%d] = offset %d\n",
1411 (int)(unsigned long)klass
->itable
->addresses
[index
* 2 + 1]);
1416 throw new java::lang::IncompatibleClassChangeError
;
1421 // For each catch_record in the list of caught classes, fill in the
1424 _Jv_Linker::link_exception_table (jclass self
)
1426 struct _Jv_CatchClass
*catch_record
= self
->catch_classes
;
1427 if (!catch_record
|| catch_record
->classname
)
1430 while (catch_record
->classname
)
1435 = _Jv_FindClass (catch_record
->classname
,
1436 self
->getClassLoaderInternal ());
1437 *catch_record
->address
= target_class
;
1439 catch (::java::lang::Throwable
*t
)
1441 // FIXME: We need to do something better here.
1442 *catch_record
->address
= 0;
1446 self
->catch_classes
->classname
= (_Jv_Utf8Const
*)-1;
1449 // Set itable method indexes for members of interface IFACE.
1451 _Jv_Linker::layout_interface_methods (jclass iface
)
1453 if (! iface
->isInterface())
1456 // itable indexes start at 1.
1457 // FIXME: Static initalizers currently get a NULL placeholder entry in the
1458 // itable so they are also assigned an index here.
1459 for (int i
= 0; i
< iface
->method_count
; i
++)
1460 iface
->methods
[i
].index
= i
+ 1;
1463 // Prepare virtual method declarations in KLASS, and any superclasses
1464 // as required, by determining their vtable index, setting
1465 // method->index, and finally setting the class's vtable_method_count.
1466 // Must be called with the lock for KLASS held.
1468 _Jv_Linker::layout_vtable_methods (jclass klass
)
1470 if (klass
->vtable
!= NULL
|| klass
->isInterface()
1471 || klass
->vtable_method_count
!= -1)
1474 jclass superclass
= klass
->getSuperclass();
1476 if (superclass
!= NULL
&& superclass
->vtable_method_count
== -1)
1478 JvSynchronize
sync (superclass
);
1479 layout_vtable_methods (superclass
);
1482 int index
= (superclass
== NULL
? 0 : superclass
->vtable_method_count
);
1484 for (int i
= 0; i
< klass
->method_count
; ++i
)
1486 _Jv_Method
*meth
= &klass
->methods
[i
];
1487 _Jv_Method
*super_meth
= NULL
;
1489 if (! _Jv_isVirtualMethod (meth
))
1492 if (superclass
!= NULL
)
1495 super_meth
= _Jv_LookupDeclaredMethod (superclass
, meth
->name
,
1496 meth
->signature
, &declarer
);
1497 // See if this method actually overrides the other method
1501 if (! _Jv_isVirtualMethod (super_meth
)
1502 || ! _Jv_CheckAccess (klass
, declarer
,
1503 super_meth
->accflags
))
1505 else if ((super_meth
->accflags
1506 & java::lang::reflect::Modifier::FINAL
) != 0)
1508 using namespace java::lang
;
1509 StringBuffer
*sb
= new StringBuffer();
1510 sb
->append(JvNewStringLatin1("method "));
1511 sb
->append(_Jv_GetMethodString(klass
, meth
));
1512 sb
->append(JvNewStringLatin1(" overrides final method "));
1513 sb
->append(_Jv_GetMethodString(declarer
, super_meth
));
1514 throw new VerifyError(sb
->toString());
1516 else if (declarer
->loader
!= klass
->loader
)
1519 check_loading_constraints (meth
, klass
, declarer
);
1525 meth
->index
= super_meth
->index
;
1527 meth
->index
= index
++;
1530 klass
->vtable_method_count
= index
;
1533 // Set entries in VTABLE for virtual methods declared in KLASS.
1535 _Jv_Linker::set_vtable_entries (jclass klass
, _Jv_VTable
*vtable
)
1537 for (int i
= klass
->method_count
- 1; i
>= 0; i
--)
1539 using namespace java::lang::reflect
;
1541 _Jv_Method
*meth
= &klass
->methods
[i
];
1542 if (meth
->index
== (_Jv_ushort
) -1)
1544 if ((meth
->accflags
& Modifier::ABSTRACT
))
1545 // FIXME: it might be nice to have a libffi trampoline here,
1546 // so we could pass in the method name and other information.
1547 vtable
->set_method(meth
->index
,
1548 (void *) &_Jv_ThrowAbstractMethodError
);
1550 vtable
->set_method(meth
->index
, meth
->ncode
);
1554 // Allocate and lay out the virtual method table for KLASS. This will
1555 // also cause vtables to be generated for any non-abstract
1556 // superclasses, and virtual method layout to occur for any abstract
1557 // superclasses. Must be called with monitor lock for KLASS held.
1559 _Jv_Linker::make_vtable (jclass klass
)
1561 using namespace java::lang::reflect
;
1563 // If the vtable exists, or for interface classes, do nothing. All
1564 // other classes, including abstract classes, need a vtable.
1565 if (klass
->vtable
!= NULL
|| klass
->isInterface())
1568 // Ensure all the `ncode' entries are set.
1569 klass
->engine
->create_ncode(klass
);
1571 // Class must be laid out before we can create a vtable.
1572 if (klass
->vtable_method_count
== -1)
1573 layout_vtable_methods (klass
);
1575 // Allocate the new vtable.
1576 _Jv_VTable
*vtable
= _Jv_VTable::new_vtable (klass
->vtable_method_count
);
1577 klass
->vtable
= vtable
;
1579 // Copy the vtable of the closest superclass.
1580 jclass superclass
= klass
->superclass
;
1582 JvSynchronize
sync (superclass
);
1583 make_vtable (superclass
);
1585 for (int i
= 0; i
< superclass
->vtable_method_count
; ++i
)
1586 vtable
->set_method (i
, superclass
->vtable
->get_method (i
));
1588 // Set the class pointer and GC descriptor.
1589 vtable
->clas
= klass
;
1590 vtable
->gc_descr
= _Jv_BuildGCDescr (klass
);
1592 // For each virtual declared in klass, set new vtable entry or
1593 // override an old one.
1594 set_vtable_entries (klass
, vtable
);
1596 // Note that we don't check for abstract methods here. We used to,
1597 // but there is a JVMS clarification that indicates that a check
1598 // here would be too eager. And, a simple test case confirms this.
1601 // Lay out the class, allocating space for static fields and computing
1602 // offsets of instance fields. The class lock must be held by the
1605 _Jv_Linker::ensure_fields_laid_out (jclass klass
)
1607 if (klass
->size_in_bytes
!= -1)
1610 // Compute the alignment for this type by searching through the
1611 // superclasses and finding the maximum required alignment. We
1612 // could consider caching this in the Class.
1613 int max_align
= __alignof__ (java::lang::Object
);
1614 jclass super
= klass
->getSuperclass();
1615 while (super
!= NULL
)
1617 // Ensure that our super has its super installed before
1619 wait_for_state(super
, JV_STATE_LOADING
);
1620 ensure_fields_laid_out(super
);
1621 int num
= JvNumInstanceFields (super
);
1622 _Jv_Field
*field
= JvGetFirstInstanceField (super
);
1625 int field_align
= get_alignment_from_class (field
->type
);
1626 if (field_align
> max_align
)
1627 max_align
= field_align
;
1631 super
= super
->getSuperclass();
1635 // This is the size of the 'static' non-reference fields.
1636 int non_reference_size
= 0;
1637 // This is the size of the 'static' reference fields. We count
1638 // these separately to make it simpler for the GC to scan them.
1639 int reference_size
= 0;
1641 // Although java.lang.Object is never interpreted, an interface can
1642 // have a null superclass. Note that we have to lay out an
1643 // interface because it might have static fields.
1644 if (klass
->superclass
)
1645 instance_size
= klass
->superclass
->size();
1647 instance_size
= java::lang::Object::class$
.size();
1649 klass
->engine
->allocate_field_initializers (klass
);
1651 for (int i
= 0; i
< klass
->field_count
; i
++)
1656 _Jv_Field
*field
= &klass
->fields
[i
];
1658 if (! field
->isRef ())
1660 // It is safe to resolve the field here, since it's a
1661 // primitive class, which does not cause loading to happen.
1662 resolve_field (field
, klass
->loader
);
1663 field_size
= field
->type
->size ();
1664 field_align
= get_alignment_from_class (field
->type
);
1668 field_size
= sizeof (jobject
);
1669 field_align
= __alignof__ (jobject
);
1672 field
->bsize
= field_size
;
1674 if ((field
->flags
& java::lang::reflect::Modifier::STATIC
))
1676 if (field
->u
.addr
== NULL
)
1678 // This computes an offset into a region we'll allocate
1679 // shortly, and then adds this offset to the start
1683 reference_size
= ROUND (reference_size
, field_align
);
1684 field
->u
.boffset
= reference_size
;
1685 reference_size
+= field_size
;
1689 non_reference_size
= ROUND (non_reference_size
, field_align
);
1690 field
->u
.boffset
= non_reference_size
;
1691 non_reference_size
+= field_size
;
1697 instance_size
= ROUND (instance_size
, field_align
);
1698 field
->u
.boffset
= instance_size
;
1699 instance_size
+= field_size
;
1700 if (field_align
> max_align
)
1701 max_align
= field_align
;
1705 if (reference_size
!= 0 || non_reference_size
!= 0)
1706 klass
->engine
->allocate_static_fields (klass
, reference_size
,
1707 non_reference_size
);
1709 // Set the instance size for the class. Note that first we round it
1710 // to the alignment required for this object; this keeps us in sync
1711 // with our current ABI.
1712 instance_size
= ROUND (instance_size
, max_align
);
1713 klass
->size_in_bytes
= instance_size
;
1716 // This takes the class to state JV_STATE_LINKED. The class lock must
1717 // be held when calling this.
1719 _Jv_Linker::ensure_class_linked (jclass klass
)
1721 if (klass
->state
>= JV_STATE_LINKED
)
1724 int state
= klass
->state
;
1727 // Short-circuit, so that mutually dependent classes are ok.
1728 klass
->state
= JV_STATE_LINKED
;
1730 _Jv_Constants
*pool
= &klass
->constants
;
1732 // Compiled classes require that their class constants be
1733 // resolved here. However, interpreted classes need their
1734 // constants to be resolved lazily. If we resolve an
1735 // interpreted class' constants eagerly, we can end up with
1736 // spurious IllegalAccessErrors when the constant pool contains
1737 // a reference to a class we can't access. This can validly
1738 // occur in an obscure case involving the InnerClasses
1740 if (! _Jv_IsInterpretedClass (klass
))
1742 // Resolve class constants first, since other constant pool
1743 // entries may rely on these.
1744 for (int index
= 1; index
< pool
->size
; ++index
)
1746 if (pool
->tags
[index
] == JV_CONSTANT_Class
)
1747 // Lazily resolve the entries.
1748 resolve_pool_entry (klass
, index
, true);
1752 // Resolve the remaining constant pool entries.
1753 for (int index
= 1; index
< pool
->size
; ++index
)
1758 tags
= read_cpool_entry (&data
, pool
, index
);
1759 if (tags
== JV_CONSTANT_String
)
1761 data
.o
= _Jv_NewStringUtf8Const (data
.utf8
);
1762 tags
|= JV_CONSTANT_ResolvedFlag
;
1763 write_cpool_entry (data
, tags
, pool
, index
);
1767 if (klass
->engine
->need_resolve_string_fields())
1769 jfieldID f
= JvGetFirstStaticField (klass
);
1770 for (int n
= JvNumStaticFields (klass
); n
> 0; --n
)
1772 int mod
= f
->getModifiers ();
1773 // If we have a static String field with a non-null initial
1774 // value, we know it points to a Utf8Const.
1776 // Finds out whether we have to initialize a String without the
1777 // need to resolve the field.
1778 if ((f
->isResolved()
1779 ? (f
->type
== &java::lang::String::class$
)
1780 : _Jv_equalUtf8Classnames((_Jv_Utf8Const
*) f
->type
,
1781 java::lang::String::class$
.name
))
1782 && (mod
& java::lang::reflect::Modifier::STATIC
) != 0)
1784 jstring
*strp
= (jstring
*) f
->u
.addr
;
1786 *strp
= _Jv_NewStringUtf8Const ((_Jv_Utf8Const
*) *strp
);
1788 f
= f
->getNextField ();
1792 klass
->notifyAll ();
1794 _Jv_PushClass (klass
);
1796 catch (java::lang::Throwable
*t
)
1798 klass
->state
= state
;
1803 // This ensures that symbolic superclass and superinterface references
1804 // are resolved for the indicated class. This must be called with the
1807 _Jv_Linker::ensure_supers_installed (jclass klass
)
1809 resolve_class_ref (klass
, &klass
->superclass
);
1810 // An interface won't have a superclass.
1811 if (klass
->superclass
)
1812 wait_for_state (klass
->superclass
, JV_STATE_LOADING
);
1814 for (int i
= 0; i
< klass
->interface_count
; ++i
)
1816 resolve_class_ref (klass
, &klass
->interfaces
[i
]);
1817 wait_for_state (klass
->interfaces
[i
], JV_STATE_LOADING
);
1821 // This adds missing `Miranda methods' to a class.
1823 _Jv_Linker::add_miranda_methods (jclass base
, jclass iface_class
)
1825 // Note that at this point, all our supers, and the supers of all
1826 // our superclasses and superinterfaces, will have been installed.
1828 for (int i
= 0; i
< iface_class
->interface_count
; ++i
)
1830 jclass interface
= iface_class
->interfaces
[i
];
1832 for (int j
= 0; j
< interface
->method_count
; ++j
)
1834 _Jv_Method
*meth
= &interface
->methods
[j
];
1835 // Don't bother with <clinit>.
1836 if (meth
->name
->first() == '<')
1838 _Jv_Method
*new_meth
= _Jv_LookupDeclaredMethod (base
, meth
->name
,
1842 // We assume that such methods are very unlikely, so we
1843 // just reallocate the method array each time one is
1844 // found. This greatly simplifies the searching --
1845 // otherwise we have to make sure that each such method
1846 // found is really unique among all superinterfaces.
1847 int new_count
= base
->method_count
+ 1;
1849 = (_Jv_Method
*) _Jv_AllocRawObj (sizeof (_Jv_Method
)
1851 memcpy (new_m
, base
->methods
,
1852 sizeof (_Jv_Method
) * base
->method_count
);
1855 new_m
[base
->method_count
] = *meth
;
1856 new_m
[base
->method_count
].index
= (_Jv_ushort
) -1;
1857 new_m
[base
->method_count
].accflags
1858 |= java::lang::reflect::Modifier::INVISIBLE
;
1860 base
->methods
= new_m
;
1861 base
->method_count
= new_count
;
1865 wait_for_state (interface
, JV_STATE_LOADED
);
1866 add_miranda_methods (base
, interface
);
1870 // This ensures that the class' method table is "complete". This must
1871 // be called with the class lock held.
1873 _Jv_Linker::ensure_method_table_complete (jclass klass
)
1875 if (klass
->vtable
!= NULL
)
1878 // We need our superclass to have its own Miranda methods installed.
1879 if (! klass
->isInterface())
1880 wait_for_state (klass
->getSuperclass (), JV_STATE_LOADED
);
1882 // A class might have so-called "Miranda methods". This is a method
1883 // that is declared in an interface and not re-declared in an
1884 // abstract class. Some compilers don't emit declarations for such
1885 // methods in the class; this will give us problems since we expect
1886 // a declaration for any method requiring a vtable entry. We handle
1887 // this here by searching for such methods and constructing new
1888 // internal declarations for them. Note that we do this
1889 // unconditionally, and not just for abstract classes, to correctly
1890 // account for cases where a class is modified to be concrete and
1891 // still incorrectly inherits an abstract method.
1892 int pre_count
= klass
->method_count
;
1893 add_miranda_methods (klass
, klass
);
1895 // Let the execution engine know that we've added methods.
1896 if (klass
->method_count
!= pre_count
)
1897 klass
->engine
->post_miranda_hook(klass
);
1900 // Verify a class. Must be called with class lock held.
1902 _Jv_Linker::verify_class (jclass klass
)
1904 klass
->engine
->verify(klass
);
1907 // Check the assertions contained in the type assertion table for KLASS.
1908 // This is the equivilent of bytecode verification for native, BC-ABI code.
1910 _Jv_Linker::verify_type_assertions (jclass klass
)
1913 fprintf (stderr
, "Evaluating type assertions for %s:\n",
1914 klass
->name
->chars());
1916 if (klass
->assertion_table
== NULL
)
1919 for (int i
= 0;; i
++)
1921 int assertion_code
= klass
->assertion_table
[i
].assertion_code
;
1922 _Jv_Utf8Const
*op1
= klass
->assertion_table
[i
].op1
;
1923 _Jv_Utf8Const
*op2
= klass
->assertion_table
[i
].op2
;
1925 if (assertion_code
== JV_ASSERT_END_OF_TABLE
)
1927 else if (assertion_code
== JV_ASSERT_TYPES_COMPATIBLE
)
1931 fprintf (stderr
, " code=%i, operand A=%s B=%s\n",
1932 assertion_code
, op1
->chars(), op2
->chars());
1935 // The operands are class signatures. op1 is the source,
1936 // op2 is the target.
1937 jclass cl1
= _Jv_FindClassFromSignature (op1
->chars(),
1938 klass
->getClassLoaderInternal());
1939 jclass cl2
= _Jv_FindClassFromSignature (op2
->chars(),
1940 klass
->getClassLoaderInternal());
1942 // If the class doesn't exist, ignore the assertion. An exception
1943 // will be thrown later if an attempt is made to actually
1944 // instantiate the class.
1945 if (cl1
== NULL
|| cl2
== NULL
)
1948 if (! _Jv_IsAssignableFromSlow (cl1
, cl2
))
1950 jstring s
= JvNewStringUTF ("Incompatible types: In class ");
1951 s
= s
->concat (klass
->getName());
1952 s
= s
->concat (JvNewStringUTF (": "));
1953 s
= s
->concat (cl1
->getName());
1954 s
= s
->concat (JvNewStringUTF (" is not assignable to "));
1955 s
= s
->concat (cl2
->getName());
1956 throw new java::lang::VerifyError (s
);
1959 else if (assertion_code
== JV_ASSERT_IS_INSTANTIABLE
)
1961 // TODO: Implement this.
1963 // Unknown assertion codes are ignored, for forwards-compatibility.
1968 _Jv_Linker::print_class_loaded (jclass klass
)
1970 char *codesource
= NULL
;
1971 if (klass
->protectionDomain
!= NULL
)
1973 java::security::CodeSource
*cs
1974 = klass
->protectionDomain
->getCodeSource();
1977 jstring css
= cs
->toString();
1978 int len
= JvGetStringUTFLength(css
);
1979 codesource
= (char *) _Jv_AllocBytes(len
+ 1);
1980 JvGetStringUTFRegion(css
, 0, css
->length(), codesource
);
1981 codesource
[len
] = '\0';
1984 if (codesource
== NULL
)
1985 codesource
= (char *) "<no code source>";
1988 if (_Jv_IsInterpretedClass (klass
))
1990 else if (_Jv_IsBinaryCompatibilityABI (klass
))
1991 abi
= "BC-compiled";
1993 abi
= "pre-compiled";
1995 fprintf (stderr
, "[Loaded (%s) %s from %s]\n", abi
, klass
->name
->chars(),
1999 // FIXME: mention invariants and stuff.
2001 _Jv_Linker::wait_for_state (jclass klass
, int state
)
2003 if (klass
->state
>= state
)
2006 java::lang::Thread
*self
= java::lang::Thread::currentThread();
2009 JvSynchronize
sync (klass
);
2011 // This is similar to the strategy for class initialization. If we
2012 // already hold the lock, just leave.
2013 while (klass
->state
<= state
2015 && klass
->thread
!= self
)
2018 java::lang::Thread
*save
= klass
->thread
;
2019 klass
->thread
= self
;
2021 // Allocate memory for static fields and constants.
2022 if (GC_base (klass
) && klass
->fields
&& ! GC_base (klass
->fields
))
2024 jsize count
= klass
->field_count
;
2028 = (_Jv_Field
*) _Jv_AllocRawObj (count
* sizeof (_Jv_Field
));
2029 memcpy ((void*)fields
,
2030 (void*)klass
->fields
,
2031 count
* sizeof (_Jv_Field
));
2032 klass
->fields
= fields
;
2036 // Print some debugging info if requested. Interpreted classes are
2037 // handled in defineclass, so we only need to handle the two
2038 // pre-compiled cases here.
2039 if ((klass
->state
== JV_STATE_COMPILED
2040 || klass
->state
== JV_STATE_PRELOADING
)
2041 && ! _Jv_IsInterpretedClass (klass
))
2043 if (gcj::verbose_class_flag
)
2044 print_class_loaded (klass
);
2045 ++gcj::loadedClasses
;
2050 if (state
>= JV_STATE_LOADING
&& klass
->state
< JV_STATE_LOADING
)
2052 ensure_supers_installed (klass
);
2053 klass
->set_state(JV_STATE_LOADING
);
2056 if (state
>= JV_STATE_LOADED
&& klass
->state
< JV_STATE_LOADED
)
2058 ensure_method_table_complete (klass
);
2059 klass
->set_state(JV_STATE_LOADED
);
2062 if (state
>= JV_STATE_PREPARED
&& klass
->state
< JV_STATE_PREPARED
)
2064 ensure_fields_laid_out (klass
);
2065 make_vtable (klass
);
2066 layout_interface_methods (klass
);
2067 prepare_constant_time_tables (klass
);
2068 klass
->set_state(JV_STATE_PREPARED
);
2071 if (state
>= JV_STATE_LINKED
&& klass
->state
< JV_STATE_LINKED
)
2073 if (gcj::verifyClasses
)
2074 verify_class (klass
);
2076 ensure_class_linked (klass
);
2077 link_exception_table (klass
);
2078 link_symbol_table (klass
);
2079 klass
->set_state(JV_STATE_LINKED
);
2082 catch (java::lang::Throwable
*exc
)
2084 klass
->thread
= save
;
2085 klass
->set_state(JV_STATE_ERROR
);
2089 klass
->thread
= save
;
2091 if (klass
->state
== JV_STATE_ERROR
)
2092 throw new java::lang::LinkageError
;
2096 if (__builtin_expect (klass
->state
== JV_STATE_LINKED
, false)
2097 && state
>= JV_STATE_LINKED
2098 && JVMTI_REQUESTED_EVENT (ClassPrepare
))
2100 JNIEnv
*jni_env
= _Jv_GetCurrentJNIEnv ();
2101 _Jv_JVMTI_PostEvent (JVMTI_EVENT_CLASS_PREPARE
, self
, jni_env
,