diff options
author | Hans Boehm <boehm@acm.org> | 2000-09-30 09:56:58 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2000-09-30 10:56:58 +0100 |
commit | bf3b8e42e291aeaeae178f6be1a49deebcd4e527 (patch) | |
tree | 546907bd61de305c953b5ae99d05489fc543bc16 /libjava/resolve.cc | |
parent | 0476f09843348e065b11bac1265b723266b85fd5 (diff) | |
download | gcc-bf3b8e42e291aeaeae178f6be1a49deebcd4e527.zip gcc-bf3b8e42e291aeaeae178f6be1a49deebcd4e527.tar.gz gcc-bf3b8e42e291aeaeae178f6be1a49deebcd4e527.tar.bz2 |
Implement bitmap descriptor based marking for Boehm GC.
2000-09-30 Hans Boehm <boehm@acm.org>
Bryce McKinlay <bryce@albatross.co.nz>
Implement bitmap descriptor based marking for Boehm GC.
* configure.in: Define JC1GCSPEC. Set it if boehm-gc is used.
* configure: Rebuilt.
* libgcj.spec.in: Pass JC1GCSPEC to jc1.
* include/jvm.h (struct _Jv_VTable): New field `gc_descr'. New inline
method get_finalizer().
(struct _Jv_ArrayVTable): Ditto. Declare method array with
NUM_OBJECT_METHODS elements instead of NUM_OBJECT_METHODS + 1.
(_Jv_AllocObj): Add new jclass parameter.
(_Jv_AllocArray): Ditto.
(_Jv_BuildGCDescr): New prototype.
* prims.cc (_Jv_AllocObject): Rename parameter `c' to `klass'. Pass
`klass' to _Jv_AllocObj. Don't set the new object's vtable. Use
get_finalizer() instead of direct finalizer vtable offset.
(_Jv_NewObjectArray): Rename parameter `clas' to `klass'. Pass
`klass' to _Jv_AllocArray. Don't set the new array's vtable.
(_Jv_NewPrimArray): Call _Jv_FindArrayClass before _Jv_AllocObj.
Pass `klass' to _Jv_AllocObj. Don't set the new array's vtable.
* resolve.cc (METHOD_NOT_THERE, METHOD_INACCESSIBLE): New #defines.
(_Jv_ResolvePoolEntry): Use METHOD_NOT_THERE and METHOD_INACCESSIBLE.
(_Jv_DetermineVTableIndex): Ditto.
(_Jv_PrepareClass): Ditto. Remove offset-by-one adjustments from vtable
calculations to account for new gc_descr field.
* boehm.cc: #include gc_gcj.h.
(obj_kind_x, obj_free_list): `#if 0'-ed away.
(_Jv_MarkObj): Check that vtable doesn't point to a cleared object.
New commentary from HB. Mark the classes vtable.
(_Jv_MarkArray): Check that vtable doesn't point to a cleared object.
(GC_DEFAULT_DESCR): New #define.
(_Jv_BuildGCDescr): New function. Use GC_DEFAULT_DESCR, for now.
(_Jv_AllocObj): New parameter `klass'. Use GC_GCJ_MALLOC ().
(_Jv_AllocArray): New parameter `klass'. Allocate with GC_MALLOC and
scan conservativly if size is less than min_heap_addr. Set vtable
pointer of new object before returning.
(_Jv_AllocBytes): Use GC_MALLOC_ATOMIC, not GC_GENERIC_MALLOC.
(_Jv_InitGC): Call GC_init_gcj_malloc(). Don't set up marking and
allocation for obj_kind_x.
* nogc.cc (_Jv_BuildGCDescr): New function. Return 0.
(_Jv_AllocObj): Set vtable on returned object.
(_Jv_AllocArray): Ditto.
* java/lang/Class.h (_Jv_NewObjectArray): No longer a friend.
(_Jv_NewPrimArray): Ditto.
(_Jv_AllocObj): Declare as a friend.
(_Jv_AllocArray): Ditto.
* java/lang/natClassLoader.cc (_Jv_FindArrayClass): Copy gc_descr
from &ObjectClass into new array class. Remove offset-by-one
adjustments from `method' size calculations to account for gc_descr
field.
Co-Authored-By: Bryce McKinlay <bryce@albatross.co.nz>
From-SVN: r36679
Diffstat (limited to 'libjava/resolve.cc')
-rw-r--r-- | libjava/resolve.cc | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/libjava/resolve.cc b/libjava/resolve.cc index ab1fafb..898de51 100644 --- a/libjava/resolve.cc +++ b/libjava/resolve.cc @@ -46,6 +46,9 @@ extern java::lang::Class ClassObject; #define ObjectClass _CL_Q34java4lang6Object extern java::lang::Class ObjectClass; +// Exceptional return values for _Jv_DetermineVTableIndex +#define METHOD_NOT_THERE (-2) +#define METHOD_INACCESSIBLE (-1) static int get_alignment_from_class (jclass); @@ -299,7 +302,7 @@ _Jv_ResolvePoolEntry (jclass klass, int index) vtable_index = _Jv_DetermineVTableIndex (found_class, method_name, method_signature); - if (vtable_index == 0) + if (vtable_index == METHOD_NOT_THERE) throw_incompatible_class_change_error (JvNewStringLatin1 ("method not found")); @@ -378,9 +381,9 @@ _Jv_ResolveField (_Jv_Field *field, java::lang::ClassLoader *loader) things if compiled classes to know vtable offset, and _Jv_Method had a field for this. - Returns 0 if this class does not declare the given method. - Returns -1 if the given method does not appear in the vtable. - i.e., it is static, private, final or a constructor. + Returns METHOD_NOT_THERE if this class does not declare the given method. + Returns METHOD_INACCESSIBLE if the given method does not appear in the + vtable, i.e., it is static, private, final or a constructor. Otherwise, returns the vtable index. */ int _Jv_DetermineVTableIndex (jclass klass, @@ -396,7 +399,7 @@ _Jv_DetermineVTableIndex (jclass klass, int prev = _Jv_DetermineVTableIndex (super_class, name, signature); - if (prev != 0) + if (prev != METHOD_NOT_THERE) return prev; } @@ -410,7 +413,7 @@ _Jv_DetermineVTableIndex (jclass klass, /* now, if we do not declare this method, return zero */ if (meth == NULL) - return 0; + return METHOD_NOT_THERE; /* so now, we know not only that the super class does not declare the * method, but we do! So, this is a first declaration of the method. */ @@ -427,21 +430,21 @@ _Jv_DetermineVTableIndex (jclass klass, | Modifier::FINAL)) != 0 || (klass->accflags & Modifier::FINAL) != 0 || _Jv_equalUtf8Consts (name, init_name)) - return -1; + return METHOD_INACCESSIBLE; /* reaching this point, we know for sure, that the method in question * will be in the vtable. The question is where. */ /* the base offset, is where we will start assigning vtable - * indexes for this class. It is 1 for base classes - * (vtable->method[0] is unused), and for non-base classes it is the - * number of entries in the super class' vtable plus 1. */ + * indexes for this class. It is 0 for base classes + * and for non-base classes it is the + * number of entries in the super class' vtable. */ int base_offset; if (super_class == 0) - base_offset = 1; + base_offset = 0; else - base_offset = super_class->vtable_method_count+1; + base_offset = super_class->vtable_method_count; /* we will consider methods 0..this_method_index-1. And for each one, * determine if it is new (i.e., if it appears in the super class), @@ -704,6 +707,7 @@ _Jv_PrepareClass(jclass klass) _Jv_AllocBytesChecked (sizeof (_Jv_VTable) + (sizeof (void*) * (vtable_count))); vtable->clas = clz; + vtable->gc_descr = _Jv_BuildGCDescr(clz); { jclass effective_superclass = super_class; @@ -713,10 +717,10 @@ _Jv_PrepareClass(jclass klass) while (effective_superclass && effective_superclass->vtable == NULL) effective_superclass = effective_superclass->superclass; - /* copy super class' vtable entries (index 0 goes unused). */ + /* copy super class' vtable entries. */ if (effective_superclass && effective_superclass->vtable) - memcpy ((void*)&vtable->method[1], - (void*)&effective_superclass->vtable->method[1], + memcpy ((void*)&vtable->method[0], + (void*)&effective_superclass->vtable->method[0], sizeof (void*) * effective_superclass->vtable_method_count); } @@ -729,12 +733,12 @@ _Jv_PrepareClass(jclass klass) this_meth->name, this_meth->signature); - if (index == 0) + if (index == METHOD_NOT_THERE) throw_internal_error ("method now found in own class"); - if (index != -1) + if (index != METHOD_INACCESSIBLE) { - if (index > clz->vtable_method_count+1) + if (index > clz->vtable_method_count) throw_internal_error ("vtable problem..."); if (clz->interpreted_methods[i] == 0) |