summaryrefslogtreecommitdiffstats
path: root/libjava/ChangeLog
diff options
context:
space:
mode:
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-30 09:56:58 +0000
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-30 09:56:58 +0000
commit2629d8057817e7327f63d151692a5562895df341 (patch)
tree546907bd61de305c953b5ae99d05489fc543bc16 /libjava/ChangeLog
parent1a5c0c2c669c244f17e5b3b1d78868fd5f61373b (diff)
downloadppe42-gcc-2629d8057817e7327f63d151692a5562895df341.tar.gz
ppe42-gcc-2629d8057817e7327f63d151692a5562895df341.zip
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36679 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/ChangeLog')
-rw-r--r--libjava/ChangeLog53
1 files changed, 53 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index f55d2cc5d84..543d04b5883 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,56 @@
+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.
+
2000-09-26 Tom Tromey <tromey@cygnus.com>
* java/awt/Scrollbar.java (removeAdjustmentListener): Use
OpenPOWER on IntegriCloud