]> gcc.gnu.org Git - gcc.git/commitdiff
jvm.h (_Jv_AllocRawObj): New prototype.
authorBryce McKinlay <bryce@waitaki.otago.ac.nz>
Mon, 10 Sep 2001 01:21:08 +0000 (01:21 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Mon, 10 Sep 2001 01:21:08 +0000 (02:21 +0100)
* include/jvm.h (_Jv_AllocRawObj): New prototype.
* boehm.cc (_Jv_AllocRawObj): Implement.
* nogc.cc (_Jv_AllocRawObj): Likewise.
* exception.cc (_Jv_Throw): Use _Jv_AllocRawObj, not GC_malloc.

From-SVN: r45497

libjava/ChangeLog
libjava/boehm.cc
libjava/exception.cc
libjava/include/jvm.h
libjava/nogc.cc

index 6d872b2731cc46ce38204a1d9ba289bbe23706d2..8e158adfc77aee015f46b32be392325603b23c23 100644 (file)
@@ -1,3 +1,10 @@
+2001-09-10  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
+
+       * include/jvm.h (_Jv_AllocRawObj): New prototype.
+       * boehm.cc (_Jv_AllocRawObj): Implement.
+       * nogc.cc (_Jv_AllocRawObj): Likewise.
+       * exception.cc (_Jv_Throw): Use _Jv_AllocRawObj, not GC_malloc.
+
 2001-09-06  Anthony Green  <green@redhat.com>
 
        * java/util/ResourceBundle.java (tryLocalBundle): Eliminate
index 7982eda095137e90a661a677da5df57fffa3d19b..27e332b259e973eb345a23e055a182e715734f68 100644 (file)
@@ -375,6 +375,14 @@ _Jv_AllocArray (jsize size, jclass klass)
   return obj;
 }
 
+/* Allocate space for a new non-Java object, which does not have the usual 
+   Java object header but may contain pointers to other GC'ed objects. */
+void *
+_Jv_AllocRawObj (jsize size)
+{
+  return (void *) GC_MALLOC (size);
+}
+
 static void
 call_finalizer (GC_PTR obj, GC_PTR client_data)
 {
index 752236102af3fd07c027e70ef5d13ef6fb8c3ae2..a8e6ece6e2841f75c6e6087a949a6f120470b2b0 100644 (file)
@@ -20,8 +20,6 @@ details.  */
 
 #include "unwind.h"
 
-#include <gc.h>
-
 \f
 struct alignment_test_struct
 {
@@ -73,9 +71,8 @@ get_exception_header_from_ue (_Unwind_Exception *exc)
 extern "C" void
 _Jv_Throw (jthrowable value)
 {
-  /* FIXME: Use the proper API to the collector.  */
   java_exception_header *xh
-    = static_cast<java_exception_header *>(GC_malloc (sizeof (*xh)));
+    = static_cast<java_exception_header *>(_Jv_AllocRawObj (sizeof (*xh)));
 
   if (value == NULL)
     value = new java::lang::NullPointerException ();
index 3f9071c347f2ce938e2b15cc25359f5da036514d..936d4c690c617103978ab255a52030268fbebe6a 100644 (file)
@@ -114,6 +114,9 @@ void *_Jv_AllocPtrFreeObj (jsize size, jclass cl) __attribute__((__malloc__));
 void *_Jv_AllocArray (jsize size, jclass cl) __attribute__((__malloc__));
 /* Allocate space that is known to be pointer-free.  */
 void *_Jv_AllocBytes (jsize size) __attribute__((__malloc__));
+/* Allocate space for a new non-Java object, which does not have the usual 
+   Java object header but may contain pointers to other GC'ed objects.  */
+void *_Jv_AllocRawObj (jsize size) __attribute__((__malloc__));
 /* Explicitly throw an out-of-memory exception.        */
 void _Jv_ThrowNoMemory() __attribute__((__noreturn__));
 /* Allocate an object with a single pointer.  The first word is reserved
index 7cdd58277246769407adc41df2894b7e0d3a8328..65cc8c30e22e7d57cd10e085bb9da67ac15120d9 100644 (file)
@@ -66,6 +66,13 @@ _Jv_AllocBytes (jsize size)
   return obj;
 }
 
+void *
+_Jv_AllocRawObj (jsize size)
+{
+  total += size;
+  return calloc (size, 1);
+}
+
 void
 _Jv_RegisterFinalizer (void *, _Jv_FinalizerFunc *)
 {
This page took 0.070777 seconds and 5 git commands to generate.