summaryrefslogtreecommitdiffstats
path: root/libjava/include
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-20 22:24:33 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-20 22:24:33 +0000
commit760c01e494692ae3c96f90ea4a64214ddd8e34b5 (patch)
treebf01d84615ecaa704bfb1be6fcee5c450d365a49 /libjava/include
parentd4b9398e77e4c58779163b6800ec887753c88d53 (diff)
downloadppe42-gcc-760c01e494692ae3c96f90ea4a64214ddd8e34b5.tar.gz
ppe42-gcc-760c01e494692ae3c96f90ea4a64214ddd8e34b5.zip
Fix for PR libgcj/212:
* gcj/javaprims.h (_Jv_word, _Jv_word2): Removed definitions. * include/jvm.h (_Jv_word, _Jv_word2): Define. * java/lang/Class.h (_Jv_word): Declare. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33292 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/jvm.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h
index 625a11e2148..c9cae936932 100644
--- a/libjava/include/jvm.h
+++ b/libjava/include/jvm.h
@@ -31,6 +31,35 @@ struct _Jv_VTable
void *method[1];
};
+union _Jv_word
+{
+ jobject o;
+ jint i; // Also stores smaller integral types.
+ jfloat f;
+ jint ia[1]; // Half of _Jv_word2.
+ void* p;
+
+#if SIZEOF_VOID_P == 8
+ // We can safely put a long or a double in here without increasing
+ // the size of _Jv_Word; we take advantage of this in the interpreter.
+ jlong l;
+ jdouble d;
+#endif
+
+ jclass clazz;
+ jstring string;
+ struct _Jv_Field *field;
+ struct _Jv_Utf8Const *utf8;
+ struct _Jv_ResolvedMethod *rmethod;
+};
+
+union _Jv_word2
+{
+ jint ia[2];
+ jlong l;
+ jdouble d;
+};
+
/* Extract a character from a Java-style Utf8 string.
* PTR points to the current character.
* LIMIT points to the end of the Utf8 string.
OpenPOWER on IntegriCloud