diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-01-21 23:50:31 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-01-21 23:50:31 +0000 |
commit | 8a9220959f7ab20324aee4c78f0ed2233a623f74 (patch) | |
tree | e63221042f53661dc5ac90918d840d796a598554 /libjava/gcj/method.h | |
parent | 24823dcf497ec69ca34146422071308d1063ed28 (diff) | |
download | gcc-8a9220959f7ab20324aee4c78f0ed2233a623f74.zip gcc-8a9220959f7ab20324aee4c78f0ed2233a623f74.tar.gz gcc-8a9220959f7ab20324aee4c78f0ed2233a623f74.tar.bz2 |
natConstructor.cc (newInstance): Use _Jv_CallAnyMethodA.
* java/lang/reflect/natConstructor.cc (newInstance): Use
_Jv_CallAnyMethodA.
* include/jvm.h: Declare _Jv_CallAnyMethodA.
* java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Renamed
from _Jv_CallNonvirtualMethodA. Changed interface; overloaded.
Include <jni.h>.
(COPY): Removed.
(invoke): Use _Jv_CallAnyMethodA.
(VAL): Redefined.
* java/lang/Class.h (Class): Declare JvGetFirstStaticField,
JvNumStaticFields, JvNumMethods, and JvGetFirstMethod as friend
functions.
(struct _Jv_Method): Added getNextMethod method.
(JvNumMethods): New function.
(JvGetFirstMethod): Likewise.
* gcj/field.h (JvGetFirstStaticField): New function.
(JvNumStaticFields): Likewise.
(getNextField): Renamed from getNextInstanceField.
(struct _Jv_Field): New method getClass.
* jni.cc: Wrote many new functions.
* include/jni.h (JNI_TRUE): Define.
(JNI_FALSE): Likewise.
(jobject, jclass, jstring, jarray, jthrowable, jobjectArray,
jbyteArray, jshortArray, jintArray, jlongArray, jbooleanArray,
jcharArray, jfloatArray, jdoubleArray): New typedefs.
(jfieldID, jmethodID): Likewise.
(JNI_COMMIT, JNI_ABORT): New defines.
(JNINativeMethod): New struct.
(struct JNINativeInterface): Correctly declared more entries.
(class _Jv_JNIEnv): Added `ex' member.
(JNI_VERSION_1_1): New define.
(JNI_VERSION_1_2): Likewise.
* boehm.cc (_Jv_MarkObj): Use getNextField, not
getNextInstanceField.
From-SVN: r31553
Diffstat (limited to 'libjava/gcj/method.h')
-rw-r--r-- | libjava/gcj/method.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libjava/gcj/method.h b/libjava/gcj/method.h index 13f30fe..fe8f03b 100644 --- a/libjava/gcj/method.h +++ b/libjava/gcj/method.h @@ -1,6 +1,6 @@ -// java-method.h - Header file for methodID instances. -*- c++ -*- +// method.h - Header file for methodID instances. -*- c++ -*- -/* Copyright (C) 1999 Red Hat, Inc. +/* Copyright (C) 1999, 2000 Red Hat, Inc. This file is part of libgcj. @@ -11,8 +11,10 @@ details. */ #ifndef __GCJ_METHOD_H__ #define __GCJ_METHOD_H__ +#include <java/lang/Class.h> + extern inline jmethodID -_Jv_FromReflectedMethod(java::lang::reflect::Method *method) +_Jv_FromReflectedMethod (java::lang::reflect::Method *method) { return (jmethodID) ((char *) method->declaringClass->methods + method->offset); |