1999-04-07 16:42:40 +02:00
|
|
|
|
// jni.cc - JNI implementation, including the jump table.
|
|
|
|
|
|
2004-06-11 12:42:59 +02:00
|
|
|
|
/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
|
|
|
|
|
Free Software Foundation
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
|
details. */
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2003-02-13 00:40:31 +01:00
|
|
|
|
#include <stdio.h>
|
1999-04-07 16:42:40 +02:00
|
|
|
|
#include <stddef.h>
|
2000-02-01 07:14:26 +01:00
|
|
|
|
#include <string.h>
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
#include <gcj/cni.h>
|
|
|
|
|
#include <jvm.h>
|
|
|
|
|
#include <java-assert.h>
|
1999-04-07 16:42:40 +02:00
|
|
|
|
#include <jni.h>
|
2000-04-02 17:34:17 +02:00
|
|
|
|
#ifdef ENABLE_JVMPI
|
|
|
|
|
#include <jvmpi.h>
|
|
|
|
|
#endif
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
|
|
|
|
#include <java/lang/Class.h>
|
|
|
|
|
#include <java/lang/ClassLoader.h>
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
#include <java/lang/Throwable.h>
|
|
|
|
|
#include <java/lang/ArrayIndexOutOfBoundsException.h>
|
2000-01-27 00:56:36 +01:00
|
|
|
|
#include <java/lang/StringIndexOutOfBoundsException.h>
|
2004-06-11 12:42:59 +02:00
|
|
|
|
#include <java/lang/StringBuffer.h>
|
2002-03-05 23:36:11 +01:00
|
|
|
|
#include <java/lang/UnsatisfiedLinkError.h>
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
#include <java/lang/InstantiationException.h>
|
|
|
|
|
#include <java/lang/NoSuchFieldError.h>
|
|
|
|
|
#include <java/lang/NoSuchMethodError.h>
|
|
|
|
|
#include <java/lang/reflect/Constructor.h>
|
2000-01-27 00:56:36 +01:00
|
|
|
|
#include <java/lang/reflect/Method.h>
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
#include <java/lang/reflect/Modifier.h>
|
2000-02-01 07:14:26 +01:00
|
|
|
|
#include <java/lang/OutOfMemoryError.h>
|
|
|
|
|
#include <java/lang/Integer.h>
|
2000-11-01 01:18:03 +01:00
|
|
|
|
#include <java/lang/ThreadGroup.h>
|
2001-05-22 08:47:48 +02:00
|
|
|
|
#include <java/lang/Thread.h>
|
2003-06-12 17:39:17 +02:00
|
|
|
|
#include <java/lang/IllegalAccessError.h>
|
2003-06-17 21:09:56 +02:00
|
|
|
|
#include <java/nio/DirectByteBufferImpl.h>
|
|
|
|
|
#include <java/util/IdentityHashMap.h>
|
|
|
|
|
#include <gnu/gcj/RawData.h>
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-01-27 00:56:36 +01:00
|
|
|
|
#include <gcj/method.h>
|
|
|
|
|
#include <gcj/field.h>
|
|
|
|
|
|
2000-02-02 02:55:03 +01:00
|
|
|
|
#include <java-interp.h>
|
2001-05-22 08:47:48 +02:00
|
|
|
|
#include <java-threads.h>
|
2000-02-02 02:55:03 +01:00
|
|
|
|
|
2001-10-16 10:35:17 +02:00
|
|
|
|
using namespace gcj;
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
// This enum is used to select different template instantiations in
|
|
|
|
|
// the invocation code.
|
|
|
|
|
enum invocation_type
|
|
|
|
|
{
|
|
|
|
|
normal,
|
|
|
|
|
nonvirtual,
|
|
|
|
|
static_type,
|
|
|
|
|
constructor
|
|
|
|
|
};
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
// Forward declarations.
|
2000-01-27 00:56:36 +01:00
|
|
|
|
extern struct JNINativeInterface _Jv_JNIFunctions;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
extern struct JNIInvokeInterface _Jv_JNI_InvokeFunctions;
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
// Number of slots in the default frame. The VM must allow at least
|
|
|
|
|
// 16.
|
|
|
|
|
#define FRAME_SIZE 32
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
// Mark value indicating this is an overflow frame.
|
|
|
|
|
#define MARK_NONE 0
|
|
|
|
|
// Mark value indicating this is a user frame.
|
|
|
|
|
#define MARK_USER 1
|
|
|
|
|
// Mark value indicating this is a system frame.
|
|
|
|
|
#define MARK_SYSTEM 2
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
// This structure is used to keep track of local references.
|
|
|
|
|
struct _Jv_JNI_LocalFrame
|
|
|
|
|
{
|
|
|
|
|
// This is true if this frame object represents a pushed frame (eg
|
|
|
|
|
// from PushLocalFrame).
|
2000-03-07 01:10:52 +01:00
|
|
|
|
int marker : 2;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
// Number of elements in frame.
|
2000-03-07 01:10:52 +01:00
|
|
|
|
int size : 30;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
// Next frame in chain.
|
|
|
|
|
_Jv_JNI_LocalFrame *next;
|
|
|
|
|
|
|
|
|
|
// The elements. These are allocated using the C "struct hack".
|
|
|
|
|
jobject vec[0];
|
|
|
|
|
};
|
|
|
|
|
|
2001-06-16 00:09:10 +02:00
|
|
|
|
// This holds a reference count for all local references.
|
2001-08-15 22:46:48 +02:00
|
|
|
|
static java::util::IdentityHashMap *local_ref_table;
|
2001-06-16 00:09:10 +02:00
|
|
|
|
// This holds a reference count for all global references.
|
2001-08-15 22:46:48 +02:00
|
|
|
|
static java::util::IdentityHashMap *global_ref_table;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
// The only VM.
|
|
|
|
|
static JavaVM *the_vm;
|
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
#ifdef ENABLE_JVMPI
|
|
|
|
|
// The only JVMPI interface description.
|
|
|
|
|
static JVMPI_Interface _Jv_JVMPI_Interface;
|
|
|
|
|
|
|
|
|
|
static jint
|
|
|
|
|
jvmpiEnableEvent (jint event_type, void *)
|
|
|
|
|
{
|
|
|
|
|
switch (event_type)
|
|
|
|
|
{
|
|
|
|
|
case JVMPI_EVENT_OBJECT_ALLOC:
|
|
|
|
|
_Jv_JVMPI_Notify_OBJECT_ALLOC = _Jv_JVMPI_Interface.NotifyEvent;
|
|
|
|
|
break;
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
case JVMPI_EVENT_THREAD_START:
|
|
|
|
|
_Jv_JVMPI_Notify_THREAD_START = _Jv_JVMPI_Interface.NotifyEvent;
|
|
|
|
|
break;
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
case JVMPI_EVENT_THREAD_END:
|
|
|
|
|
_Jv_JVMPI_Notify_THREAD_END = _Jv_JVMPI_Interface.NotifyEvent;
|
|
|
|
|
break;
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
default:
|
|
|
|
|
return JVMPI_NOT_AVAILABLE;
|
|
|
|
|
}
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
return JVMPI_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static jint
|
|
|
|
|
jvmpiDisableEvent (jint event_type, void *)
|
|
|
|
|
{
|
|
|
|
|
switch (event_type)
|
|
|
|
|
{
|
|
|
|
|
case JVMPI_EVENT_OBJECT_ALLOC:
|
|
|
|
|
_Jv_JVMPI_Notify_OBJECT_ALLOC = NULL;
|
|
|
|
|
break;
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
default:
|
|
|
|
|
return JVMPI_NOT_AVAILABLE;
|
|
|
|
|
}
|
2001-09-17 07:08:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
return JVMPI_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
void
|
|
|
|
|
_Jv_JNI_Init (void)
|
|
|
|
|
{
|
2001-08-15 22:46:48 +02:00
|
|
|
|
local_ref_table = new java::util::IdentityHashMap;
|
|
|
|
|
global_ref_table = new java::util::IdentityHashMap;
|
2001-06-16 00:09:10 +02:00
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
#ifdef ENABLE_JVMPI
|
|
|
|
|
_Jv_JVMPI_Interface.version = 1;
|
|
|
|
|
_Jv_JVMPI_Interface.EnableEvent = &jvmpiEnableEvent;
|
|
|
|
|
_Jv_JVMPI_Interface.DisableEvent = &jvmpiDisableEvent;
|
|
|
|
|
_Jv_JVMPI_Interface.EnableGC = &_Jv_EnableGC;
|
|
|
|
|
_Jv_JVMPI_Interface.DisableGC = &_Jv_DisableGC;
|
|
|
|
|
_Jv_JVMPI_Interface.RunGC = &_Jv_RunGC;
|
|
|
|
|
#endif
|
2000-02-01 07:14:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
// Tell the GC that a certain pointer is live.
|
|
|
|
|
static void
|
2001-08-15 22:46:48 +02:00
|
|
|
|
mark_for_gc (jobject obj, java::util::IdentityHashMap *ref_table)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-01 07:14:26 +01:00
|
|
|
|
JvSynchronize sync (ref_table);
|
|
|
|
|
|
|
|
|
|
using namespace java::lang;
|
|
|
|
|
Integer *refcount = (Integer *) ref_table->get (obj);
|
|
|
|
|
jint val = (refcount == NULL) ? 0 : refcount->intValue ();
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// FIXME: what about out of memory error?
|
2000-02-01 07:14:26 +01:00
|
|
|
|
ref_table->put (obj, new Integer (val + 1));
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unmark a pointer.
|
|
|
|
|
static void
|
2001-08-15 22:46:48 +02:00
|
|
|
|
unmark_for_gc (jobject obj, java::util::IdentityHashMap *ref_table)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-01 07:14:26 +01:00
|
|
|
|
JvSynchronize sync (ref_table);
|
|
|
|
|
|
|
|
|
|
using namespace java::lang;
|
|
|
|
|
Integer *refcount = (Integer *) ref_table->get (obj);
|
|
|
|
|
JvAssert (refcount);
|
|
|
|
|
jint val = refcount->intValue () - 1;
|
2001-06-16 00:09:10 +02:00
|
|
|
|
JvAssert (val >= 0);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
if (val == 0)
|
|
|
|
|
ref_table->remove (obj);
|
|
|
|
|
else
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// FIXME: what about out of memory error?
|
2000-02-01 07:14:26 +01:00
|
|
|
|
ref_table->put (obj, new Integer (val));
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// "Unwrap" some random non-reference type. This exists to simplify
|
|
|
|
|
// other template functions.
|
|
|
|
|
template<typename T>
|
|
|
|
|
static T
|
|
|
|
|
unwrap (T val)
|
|
|
|
|
{
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unwrap a weak reference, if required.
|
|
|
|
|
template<typename T>
|
|
|
|
|
static T *
|
|
|
|
|
unwrap (T *obj)
|
|
|
|
|
{
|
|
|
|
|
using namespace gnu::gcj::runtime;
|
|
|
|
|
// We can compare the class directly because JNIWeakRef is `final'.
|
|
|
|
|
// Doing it this way is much faster.
|
2001-11-17 22:32:22 +01:00
|
|
|
|
if (obj == NULL || obj->getClass () != &JNIWeakRef::class$)
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return obj;
|
|
|
|
|
JNIWeakRef *wr = reinterpret_cast<JNIWeakRef *> (obj);
|
|
|
|
|
return reinterpret_cast<T *> (wr->get ());
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewGlobalRef (JNIEnv *, jobject obj)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// This seems weird but I think it is correct.
|
|
|
|
|
obj = unwrap (obj);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
mark_for_gc (obj, global_ref_table);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_DeleteGlobalRef (JNIEnv *, jobject obj)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// This seems weird but I think it is correct.
|
|
|
|
|
obj = unwrap (obj);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
unmark_for_gc (obj, global_ref_table);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_DeleteLocalRef (JNIEnv *env, jobject obj)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_LocalFrame *frame;
|
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// This seems weird but I think it is correct.
|
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
for (frame = env->locals; frame != NULL; frame = frame->next)
|
|
|
|
|
{
|
2001-10-05 16:23:06 +02:00
|
|
|
|
for (int i = 0; i < frame->size; ++i)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
if (frame->vec[i] == obj)
|
|
|
|
|
{
|
|
|
|
|
frame->vec[i] = NULL;
|
2001-06-16 00:09:10 +02:00
|
|
|
|
unmark_for_gc (obj, local_ref_table);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Don't go past a marked frame.
|
2000-03-07 01:10:52 +01:00
|
|
|
|
JvAssert (frame->marker == MARK_NONE);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JvAssert (0);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_EnsureLocalCapacity (JNIEnv *env, jint size)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
// It is easier to just always allocate a new frame of the requested
|
|
|
|
|
// size. This isn't the most efficient thing, but for now we don't
|
|
|
|
|
// care. Note that _Jv_JNI_PushLocalFrame relies on this right now.
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_JNI_LocalFrame *frame;
|
|
|
|
|
try
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
frame = (_Jv_JNI_LocalFrame *) _Jv_Malloc (sizeof (_Jv_JNI_LocalFrame)
|
|
|
|
|
+ size * sizeof (jobject));
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
return JNI_ERR;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
frame->marker = MARK_NONE;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
frame->size = size;
|
|
|
|
|
memset (&frame->vec[0], 0, size * sizeof (jobject));
|
|
|
|
|
frame->next = env->locals;
|
|
|
|
|
env->locals = frame;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_PushLocalFrame (JNIEnv *env, jint size)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
jint r = _Jv_JNI_EnsureLocalCapacity (env, size);
|
|
|
|
|
if (r < 0)
|
|
|
|
|
return r;
|
|
|
|
|
|
|
|
|
|
// The new frame is on top.
|
2000-03-07 01:10:52 +01:00
|
|
|
|
env->locals->marker = MARK_USER;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewLocalRef (JNIEnv *env, jobject obj)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// This seems weird but I think it is correct.
|
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
// Try to find an open slot somewhere in the topmost frame.
|
|
|
|
|
_Jv_JNI_LocalFrame *frame = env->locals;
|
|
|
|
|
bool done = false, set = false;
|
2001-06-16 01:44:45 +02:00
|
|
|
|
for (; frame != NULL && ! done; frame = frame->next)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < frame->size; ++i)
|
2001-06-16 01:44:45 +02:00
|
|
|
|
{
|
|
|
|
|
if (frame->vec[i] == NULL)
|
|
|
|
|
{
|
|
|
|
|
set = true;
|
|
|
|
|
done = true;
|
|
|
|
|
frame->vec[i] = obj;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we found a slot, or if the frame we just searched is the
|
|
|
|
|
// mark frame, then we are done.
|
2002-02-08 15:18:24 +01:00
|
|
|
|
if (done || frame == NULL || frame->marker != MARK_NONE)
|
2001-06-16 01:44:45 +02:00
|
|
|
|
break;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! set)
|
|
|
|
|
{
|
|
|
|
|
// No slots, so we allocate a new frame. According to the spec
|
|
|
|
|
// we could just die here. FIXME: return value.
|
|
|
|
|
_Jv_JNI_EnsureLocalCapacity (env, 16);
|
|
|
|
|
// We know the first element of the new frame will be ok.
|
|
|
|
|
env->locals->vec[0] = obj;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-16 00:09:10 +02:00
|
|
|
|
mark_for_gc (obj, local_ref_table);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_PopLocalFrame (JNIEnv *env, jobject result, int stop)
|
2000-02-01 07:14:26 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_LocalFrame *rf = env->locals;
|
|
|
|
|
|
|
|
|
|
bool done = false;
|
|
|
|
|
while (rf != NULL && ! done)
|
2001-09-17 07:08:10 +02:00
|
|
|
|
{
|
2000-02-01 07:14:26 +01:00
|
|
|
|
for (int i = 0; i < rf->size; ++i)
|
|
|
|
|
if (rf->vec[i] != NULL)
|
2001-06-16 00:09:10 +02:00
|
|
|
|
unmark_for_gc (rf->vec[i], local_ref_table);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
// If the frame we just freed is the marker frame, we are done.
|
2000-03-07 01:10:52 +01:00
|
|
|
|
done = (rf->marker == stop);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
_Jv_JNI_LocalFrame *n = rf->next;
|
|
|
|
|
// When N==NULL, we've reached the stack-allocated frame, and we
|
|
|
|
|
// must not free it. However, we must be sure to clear all its
|
|
|
|
|
// elements, since we might conceivably reuse it.
|
|
|
|
|
if (n == NULL)
|
2000-02-01 18:36:05 +01:00
|
|
|
|
{
|
|
|
|
|
memset (&rf->vec[0], 0, rf->size * sizeof (jobject));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_Jv_Free (rf);
|
2000-02-01 07:14:26 +01:00
|
|
|
|
rf = n;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-06 19:38:52 +02:00
|
|
|
|
// Update the local frame information.
|
|
|
|
|
env->locals = rf;
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
return result == NULL ? NULL : _Jv_JNI_NewLocalRef (env, result);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_PopLocalFrame (JNIEnv *env, jobject result)
|
2000-03-07 01:10:52 +01:00
|
|
|
|
{
|
|
|
|
|
return _Jv_JNI_PopLocalFrame (env, result, MARK_USER);
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 17:39:17 +02:00
|
|
|
|
// Make sure an array's type is compatible with the type of the
|
|
|
|
|
// destination.
|
|
|
|
|
template<typename T>
|
|
|
|
|
static bool
|
|
|
|
|
_Jv_JNI_check_types (JNIEnv *env, JArray<T> *array, jclass K)
|
|
|
|
|
{
|
|
|
|
|
jclass klass = array->getClass()->getComponentType();
|
|
|
|
|
if (__builtin_expect (klass != K, false))
|
|
|
|
|
{
|
|
|
|
|
env->ex = new java::lang::IllegalAccessError ();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
// Pop a `system' frame from the stack. This is `extern "C"' as it is
|
|
|
|
|
// used by the compiler.
|
|
|
|
|
extern "C" void
|
|
|
|
|
_Jv_JNI_PopSystemFrame (JNIEnv *env)
|
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_PopLocalFrame (env, NULL, MARK_SYSTEM);
|
2000-03-27 21:51:46 +02:00
|
|
|
|
|
|
|
|
|
if (env->ex)
|
2000-04-20 19:39:30 +02:00
|
|
|
|
{
|
|
|
|
|
jthrowable t = env->ex;
|
|
|
|
|
env->ex = NULL;
|
|
|
|
|
throw t;
|
|
|
|
|
}
|
2000-03-07 01:10:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
2003-08-20 21:37:21 +02:00
|
|
|
|
template<typename T> T extract_from_jvalue(jvalue const & t);
|
|
|
|
|
template<> jboolean extract_from_jvalue(jvalue const & jv) { return jv.z; }
|
|
|
|
|
template<> jbyte extract_from_jvalue(jvalue const & jv) { return jv.b; }
|
|
|
|
|
template<> jchar extract_from_jvalue(jvalue const & jv) { return jv.c; }
|
|
|
|
|
template<> jshort extract_from_jvalue(jvalue const & jv) { return jv.s; }
|
|
|
|
|
template<> jint extract_from_jvalue(jvalue const & jv) { return jv.i; }
|
|
|
|
|
template<> jlong extract_from_jvalue(jvalue const & jv) { return jv.j; }
|
|
|
|
|
template<> jfloat extract_from_jvalue(jvalue const & jv) { return jv.f; }
|
|
|
|
|
template<> jdouble extract_from_jvalue(jvalue const & jv) { return jv.d; }
|
|
|
|
|
template<> jobject extract_from_jvalue(jvalue const & jv) { return jv.l; }
|
|
|
|
|
|
|
|
|
|
|
2000-02-01 18:36:05 +01:00
|
|
|
|
// This function is used from other template functions. It wraps the
|
|
|
|
|
// return value appropriately; we specialize it so that object returns
|
|
|
|
|
// are turned into local references.
|
|
|
|
|
template<typename T>
|
|
|
|
|
static T
|
|
|
|
|
wrap_value (JNIEnv *, T value)
|
|
|
|
|
{
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-06 19:38:52 +02:00
|
|
|
|
// This specialization is used for jobject, jclass, jstring, jarray,
|
|
|
|
|
// etc.
|
2003-08-20 21:37:21 +02:00
|
|
|
|
template<typename R, typename T>
|
2001-04-06 19:38:52 +02:00
|
|
|
|
static T *
|
|
|
|
|
wrap_value (JNIEnv *env, T *value)
|
2001-04-03 00:52:40 +02:00
|
|
|
|
{
|
|
|
|
|
return (value == NULL
|
|
|
|
|
? value
|
2001-04-06 19:38:52 +02:00
|
|
|
|
: (T *) _Jv_JNI_NewLocalRef (env, (jobject) value));
|
2001-04-03 00:52:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_GetVersion (JNIEnv *)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2002-04-10 22:36:04 +02:00
|
|
|
|
return JNI_VERSION_1_4;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jclass JNICALL
|
|
|
|
|
_Jv_JNI_DefineClass (JNIEnv *env, const char *name, jobject loader,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
const jbyte *buf, jsize bufLen)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
loader = unwrap (loader);
|
|
|
|
|
|
2002-12-03 04:54:05 +01:00
|
|
|
|
jstring sname = JvNewStringUTF (name);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jbyteArray bytes = JvNewByteArray (bufLen);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jbyte *elts = elements (bytes);
|
|
|
|
|
memcpy (elts, buf, bufLen * sizeof (jbyte));
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
java::lang::ClassLoader *l
|
|
|
|
|
= reinterpret_cast<java::lang::ClassLoader *> (loader);
|
|
|
|
|
|
2002-12-03 04:54:05 +01:00
|
|
|
|
jclass result = l->defineClass (sname, bytes, 0, bufLen);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
return (jclass) wrap_value (env, result);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jclass JNICALL
|
|
|
|
|
_Jv_JNI_FindClass (JNIEnv *env, const char *name)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
// FIXME: assume that NAME isn't too long.
|
|
|
|
|
int len = strlen (name);
|
|
|
|
|
char s[len + 1];
|
|
|
|
|
for (int i = 0; i <= len; ++i)
|
|
|
|
|
s[i] = (name[i] == '/') ? '.' : name[i];
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jclass r = NULL;
|
|
|
|
|
try
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// This might throw an out of memory exception.
|
|
|
|
|
jstring n = JvNewStringUTF (s);
|
|
|
|
|
|
2000-04-20 07:49:48 +02:00
|
|
|
|
java::lang::ClassLoader *loader = NULL;
|
|
|
|
|
if (env->klass != NULL)
|
2003-07-21 03:54:06 +02:00
|
|
|
|
loader = env->klass->getClassLoaderInternal ();
|
2000-04-20 07:49:48 +02:00
|
|
|
|
|
|
|
|
|
if (loader == NULL)
|
2000-03-02 21:25:20 +01:00
|
|
|
|
{
|
|
|
|
|
// FIXME: should use getBaseClassLoader, but we don't have that
|
|
|
|
|
// yet.
|
|
|
|
|
loader = java::lang::ClassLoader::getSystemClassLoader ();
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
r = loader->loadClass (n);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-02-08 01:23:09 +01:00
|
|
|
|
return (jclass) wrap_value (env, r);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jclass JNICALL
|
|
|
|
|
_Jv_JNI_GetSuperclass (JNIEnv *env, jclass clazz)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return (jclass) wrap_value (env, unwrap (clazz)->getSuperclass ());
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jboolean JNICALL
|
|
|
|
|
_Jv_JNI_IsAssignableFrom (JNIEnv *, jclass clazz1, jclass clazz2)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return unwrap (clazz1)->isAssignableFrom (unwrap (clazz2));
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_Throw (JNIEnv *env, jthrowable obj)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-08 01:23:09 +01:00
|
|
|
|
// We check in case the user did some funky cast.
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
JvAssert (obj != NULL && java::lang::Throwable::class$.isInstance (obj));
|
2000-01-27 00:56:36 +01:00
|
|
|
|
env->ex = obj;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_ThrowNew (JNIEnv *env, jclass clazz, const char *message)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
using namespace java::lang::reflect;
|
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
clazz = unwrap (clazz);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
JvAssert (java::lang::Throwable::class$.isAssignableFrom (clazz));
|
2000-02-08 01:23:09 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
int r = JNI_OK;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
JArray<jclass> *argtypes
|
2001-06-16 00:09:10 +02:00
|
|
|
|
= (JArray<jclass> *) JvNewObjectArray (1, &java::lang::Class::class$,
|
|
|
|
|
NULL);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jclass *elts = elements (argtypes);
|
|
|
|
|
elts[0] = &StringClass;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
Constructor *cons = clazz->getConstructor (argtypes);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jobjectArray values = JvNewObjectArray (1, &StringClass, NULL);
|
|
|
|
|
jobject *velts = elements (values);
|
|
|
|
|
velts[0] = JvNewStringUTF (message);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jobject obj = cons->newInstance (values);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
env->ex = reinterpret_cast<jthrowable> (obj);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
r = JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jthrowable JNICALL
|
|
|
|
|
_Jv_JNI_ExceptionOccurred (JNIEnv *env)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-08 01:23:09 +01:00
|
|
|
|
return (jthrowable) wrap_value (env, env->ex);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ExceptionDescribe (JNIEnv *env)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-01-27 00:56:36 +01:00
|
|
|
|
if (env->ex != NULL)
|
|
|
|
|
env->ex->printStackTrace();
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ExceptionClear (JNIEnv *env)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-01-27 00:56:36 +01:00
|
|
|
|
env->ex = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jboolean JNICALL
|
|
|
|
|
_Jv_JNI_ExceptionCheck (JNIEnv *env)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
return env->ex != NULL;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_FatalError (JNIEnv *, const char *message)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
JvFail (message);
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jboolean JNICALL
|
|
|
|
|
_Jv_JNI_IsSameObject (JNIEnv *, jobject obj1, jobject obj2)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return unwrap (obj1) == unwrap (obj2);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_AllocObject (JNIEnv *env, jclass clazz)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
jobject obj = NULL;
|
|
|
|
|
using namespace java::lang::reflect;
|
2000-02-08 01:23:09 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
clazz = unwrap (clazz);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
JvAssert (clazz && ! clazz->isArray ());
|
|
|
|
|
if (clazz->isInterface() || Modifier::isAbstract(clazz->getModifiers()))
|
|
|
|
|
env->ex = new java::lang::InstantiationException ();
|
|
|
|
|
else
|
2004-04-20 03:38:46 +02:00
|
|
|
|
obj = _Jv_AllocObject (clazz);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
env->ex = t;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 01:23:09 +01:00
|
|
|
|
return wrap_value (env, obj);
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jclass JNICALL
|
|
|
|
|
_Jv_JNI_GetObjectClass (JNIEnv *env, jobject obj)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (obj);
|
|
|
|
|
return (jclass) wrap_value (env, obj->getClass());
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jboolean JNICALL
|
|
|
|
|
_Jv_JNI_IsInstanceOf (JNIEnv *, jobject obj, jclass clazz)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return unwrap (clazz)->isInstance(unwrap (obj));
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// This section concerns method invocation.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
template<jboolean is_static>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jmethodID JNICALL
|
|
|
|
|
_Jv_JNI_GetAnyMethodID (JNIEnv *env, jclass clazz,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
const char *name, const char *sig)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
clazz = unwrap (clazz);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_InitClass (clazz);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_Utf8Const *name_u = _Jv_makeUtf8Const ((char *) name, -1);
|
2001-01-27 00:00:19 +01:00
|
|
|
|
|
|
|
|
|
// FIXME: assume that SIG isn't too long.
|
|
|
|
|
int len = strlen (sig);
|
|
|
|
|
char s[len + 1];
|
|
|
|
|
for (int i = 0; i <= len; ++i)
|
|
|
|
|
s[i] = (sig[i] == '/') ? '.' : sig[i];
|
|
|
|
|
_Jv_Utf8Const *sig_u = _Jv_makeUtf8Const ((char *) s, -1);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
JvAssert (! clazz->isPrimitive());
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
using namespace java::lang::reflect;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
while (clazz != NULL)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jint count = JvNumMethods (clazz);
|
|
|
|
|
jmethodID meth = JvGetFirstMethod (clazz);
|
|
|
|
|
|
|
|
|
|
for (jint i = 0; i < count; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (((is_static && Modifier::isStatic (meth->accflags))
|
|
|
|
|
|| (! is_static && ! Modifier::isStatic (meth->accflags)))
|
|
|
|
|
&& _Jv_equalUtf8Consts (meth->name, name_u)
|
|
|
|
|
&& _Jv_equalUtf8Consts (meth->signature, sig_u))
|
|
|
|
|
return meth;
|
|
|
|
|
|
|
|
|
|
meth = meth->getNextMethod();
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
clazz = clazz->getSuperclass ();
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-11 12:42:59 +02:00
|
|
|
|
java::lang::StringBuffer *name_sig =
|
|
|
|
|
new java::lang::StringBuffer (JvNewStringUTF (name));
|
|
|
|
|
name_sig->append ((jchar) ' ')->append (JvNewStringUTF (s));
|
|
|
|
|
env->ex = new java::lang::NoSuchMethodError (name_sig->toString ());
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is a helper function which turns a va_list into an array of
|
|
|
|
|
// `jvalue's. It needs signature information in order to do its work.
|
|
|
|
|
// The array of values must already be allocated.
|
|
|
|
|
static void
|
|
|
|
|
array_from_valist (jvalue *values, JArray<jclass> *arg_types, va_list vargs)
|
|
|
|
|
{
|
|
|
|
|
jclass *arg_elts = elements (arg_types);
|
|
|
|
|
for (int i = 0; i < arg_types->length; ++i)
|
|
|
|
|
{
|
2002-10-24 01:19:55 +02:00
|
|
|
|
// Here we assume that sizeof(int) >= sizeof(jint), because we
|
|
|
|
|
// use `int' when decoding the varargs. Likewise for
|
2002-11-06 15:14:51 +01:00
|
|
|
|
// float, and double. Also we assume that sizeof(jlong) >=
|
|
|
|
|
// sizeof(int), i.e. that jlong values are not further
|
|
|
|
|
// promoted.
|
|
|
|
|
JvAssert (sizeof (int) >= sizeof (jint));
|
|
|
|
|
JvAssert (sizeof (jlong) >= sizeof (int));
|
|
|
|
|
JvAssert (sizeof (double) >= sizeof (jfloat));
|
|
|
|
|
JvAssert (sizeof (double) >= sizeof (jdouble));
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
if (arg_elts[i] == JvPrimClass (byte))
|
2001-09-17 07:08:10 +02:00
|
|
|
|
values[i].b = (jbyte) va_arg (vargs, int);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (short))
|
2001-09-17 07:08:10 +02:00
|
|
|
|
values[i].s = (jshort) va_arg (vargs, int);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (int))
|
2002-10-24 01:19:55 +02:00
|
|
|
|
values[i].i = (jint) va_arg (vargs, int);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (long))
|
2002-11-06 15:14:51 +01:00
|
|
|
|
values[i].j = (jlong) va_arg (vargs, jlong);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (float))
|
2002-10-24 01:19:55 +02:00
|
|
|
|
values[i].f = (jfloat) va_arg (vargs, double);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (double))
|
2002-10-24 01:19:55 +02:00
|
|
|
|
values[i].d = (jdouble) va_arg (vargs, double);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (boolean))
|
2001-09-17 07:08:10 +02:00
|
|
|
|
values[i].z = (jboolean) va_arg (vargs, int);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else if (arg_elts[i] == JvPrimClass (char))
|
2001-09-17 07:08:10 +02:00
|
|
|
|
values[i].c = (jchar) va_arg (vargs, int);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// An object.
|
2001-11-13 18:43:41 +01:00
|
|
|
|
values[i].l = unwrap (va_arg (vargs, jobject));
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This can call any sort of method: virtual, "nonvirtual", static, or
|
|
|
|
|
// constructor.
|
|
|
|
|
template<typename T, invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyMethodV (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list vargs)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
klass = unwrap (klass);
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
jclass decl_class = klass ? klass : obj->getClass ();
|
|
|
|
|
JvAssert (decl_class != NULL);
|
|
|
|
|
|
|
|
|
|
jclass return_type;
|
|
|
|
|
JArray<jclass> *arg_types;
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_Jv_GetTypesFromSignature (id, decl_class,
|
|
|
|
|
&arg_types, &return_type);
|
|
|
|
|
|
|
|
|
|
jvalue args[arg_types->length];
|
|
|
|
|
array_from_valist (args, arg_types, vargs);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// For constructors we need to pass the Class we are instantiating.
|
|
|
|
|
if (style == constructor)
|
|
|
|
|
return_type = klass;
|
2000-02-16 23:42:41 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jvalue result;
|
2003-08-18 16:36:07 +02:00
|
|
|
|
_Jv_CallAnyMethodA (obj, return_type, id,
|
|
|
|
|
style == constructor,
|
2003-10-26 03:25:42 +01:00
|
|
|
|
style == normal,
|
2003-08-18 16:36:07 +02:00
|
|
|
|
arg_types, args, &result);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2003-08-20 21:37:21 +02:00
|
|
|
|
return wrap_value (env, extract_from_jvalue<T>(result));
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wrap_value (env, (T) 0);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T, invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyMethod (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID method, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
T result;
|
|
|
|
|
|
|
|
|
|
va_start (args, method);
|
|
|
|
|
result = _Jv_JNI_CallAnyMethodV<T, style> (env, obj, klass, method, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T, invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyMethodA (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
klass = unwrap (klass);
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
jclass decl_class = klass ? klass : obj->getClass ();
|
|
|
|
|
JvAssert (decl_class != NULL);
|
|
|
|
|
|
|
|
|
|
jclass return_type;
|
|
|
|
|
JArray<jclass> *arg_types;
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_Jv_GetTypesFromSignature (id, decl_class,
|
|
|
|
|
&arg_types, &return_type);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// For constructors we need to pass the Class we are instantiating.
|
|
|
|
|
if (style == constructor)
|
|
|
|
|
return_type = klass;
|
2000-02-16 23:42:41 +01:00
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// Unwrap arguments as required. Eww.
|
|
|
|
|
jclass *type_elts = elements (arg_types);
|
|
|
|
|
jvalue arg_copy[arg_types->length];
|
|
|
|
|
for (int i = 0; i < arg_types->length; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (type_elts[i]->isPrimitive ())
|
|
|
|
|
arg_copy[i] = args[i];
|
|
|
|
|
else
|
|
|
|
|
arg_copy[i].l = unwrap (args[i].l);
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jvalue result;
|
2003-08-18 16:36:07 +02:00
|
|
|
|
_Jv_CallAnyMethodA (obj, return_type, id,
|
|
|
|
|
style == constructor,
|
2003-10-26 03:25:42 +01:00
|
|
|
|
style == normal,
|
2003-08-18 16:36:07 +02:00
|
|
|
|
arg_types, arg_copy, &result);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2003-08-20 21:37:21 +02:00
|
|
|
|
return wrap_value (env, extract_from_jvalue<T>(result));
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wrap_value (env, (T) 0);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list vargs)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
klass = unwrap (klass);
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
jclass decl_class = klass ? klass : obj->getClass ();
|
|
|
|
|
JvAssert (decl_class != NULL);
|
|
|
|
|
|
|
|
|
|
jclass return_type;
|
|
|
|
|
JArray<jclass> *arg_types;
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_Jv_GetTypesFromSignature (id, decl_class,
|
|
|
|
|
&arg_types, &return_type);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jvalue args[arg_types->length];
|
|
|
|
|
array_from_valist (args, arg_types, vargs);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// For constructors we need to pass the Class we are instantiating.
|
|
|
|
|
if (style == constructor)
|
|
|
|
|
return_type = klass;
|
2000-02-16 23:42:41 +01:00
|
|
|
|
|
2003-08-18 16:36:07 +02:00
|
|
|
|
_Jv_CallAnyMethodA (obj, return_type, id,
|
|
|
|
|
style == constructor,
|
2003-10-26 03:25:42 +01:00
|
|
|
|
style == normal,
|
2003-08-18 16:36:07 +02:00
|
|
|
|
arg_types, args, NULL);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethod (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID method, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start (args, method);
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<style> (env, obj, klass, method, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<invocation_type style>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodA (JNIEnv *env, jobject obj, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
jclass decl_class = klass ? klass : obj->getClass ();
|
|
|
|
|
JvAssert (decl_class != NULL);
|
|
|
|
|
|
|
|
|
|
jclass return_type;
|
|
|
|
|
JArray<jclass> *arg_types;
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_Jv_GetTypesFromSignature (id, decl_class,
|
|
|
|
|
&arg_types, &return_type);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// Unwrap arguments as required. Eww.
|
|
|
|
|
jclass *type_elts = elements (arg_types);
|
|
|
|
|
jvalue arg_copy[arg_types->length];
|
|
|
|
|
for (int i = 0; i < arg_types->length; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (type_elts[i]->isPrimitive ())
|
|
|
|
|
arg_copy[i] = args[i];
|
|
|
|
|
else
|
|
|
|
|
arg_copy[i].l = unwrap (args[i].l);
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-18 16:36:07 +02:00
|
|
|
|
_Jv_CallAnyMethodA (obj, return_type, id,
|
|
|
|
|
style == constructor,
|
2003-10-26 03:25:42 +01:00
|
|
|
|
style == normal,
|
2003-08-18 16:36:07 +02:00
|
|
|
|
arg_types, args, NULL);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallMethodV (JNIEnv *env, jobject obj,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
return _Jv_JNI_CallAnyMethodV<T, normal> (env, obj, NULL, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallMethod (JNIEnv *env, jobject obj, jmethodID id, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
T result;
|
|
|
|
|
|
|
|
|
|
va_start (args, id);
|
|
|
|
|
result = _Jv_JNI_CallAnyMethodV<T, normal> (env, obj, NULL, id, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallMethodA (JNIEnv *env, jobject obj,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
return _Jv_JNI_CallAnyMethodA<T, normal> (env, obj, NULL, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallVoidMethodV (JNIEnv *env, jobject obj,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<normal> (env, obj, NULL, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallVoidMethod (JNIEnv *env, jobject obj, jmethodID id, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start (args, id);
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<normal> (env, obj, NULL, id, args);
|
|
|
|
|
va_end (args);
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallVoidMethodA (JNIEnv *env, jobject obj,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, jvalue *args)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
_Jv_JNI_CallAnyVoidMethodA<normal> (env, obj, NULL, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallStaticMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticMethodV (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-17 01:54:34 +01:00
|
|
|
|
JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
|
2001-11-13 18:43:41 +01:00
|
|
|
|
JvAssert (java::lang::Class::class$.isInstance (unwrap (klass)));
|
2000-02-17 01:54:34 +01:00
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return _Jv_JNI_CallAnyMethodV<T, static_type> (env, NULL, klass, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallStaticMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticMethod (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
T result;
|
|
|
|
|
|
2000-02-17 01:54:34 +01:00
|
|
|
|
JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
|
2001-11-13 18:43:41 +01:00
|
|
|
|
JvAssert (java::lang::Class::class$.isInstance (unwrap (klass)));
|
2000-02-17 01:54:34 +01:00
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
va_start (args, id);
|
|
|
|
|
result = _Jv_JNI_CallAnyMethodV<T, static_type> (env, NULL, klass,
|
|
|
|
|
id, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions with this signature are used to implement functions in
|
|
|
|
|
// the CallStaticMethod family.
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticMethodA (JNIEnv *env, jclass klass, jmethodID id,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-17 01:54:34 +01:00
|
|
|
|
JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
|
2001-11-13 18:43:41 +01:00
|
|
|
|
JvAssert (java::lang::Class::class$.isInstance (unwrap (klass)));
|
2000-02-17 01:54:34 +01:00
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return _Jv_JNI_CallAnyMethodA<T, static_type> (env, NULL, klass, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethodV (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<static_type> (env, NULL, klass, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethod (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start (args, id);
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<static_type> (env, NULL, klass, id, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethodA (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodA<static_type> (env, NULL, klass, id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewObjectV (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jmethodID id, va_list args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (klass && ! klass->isArray ());
|
|
|
|
|
JvAssert (! strcmp (id->name->data, "<init>")
|
2000-02-16 23:42:41 +01:00
|
|
|
|
&& id->signature->length > 2
|
|
|
|
|
&& id->signature->data[0] == '('
|
|
|
|
|
&& ! strcmp (&id->signature->data[id->signature->length - 2],
|
|
|
|
|
")V"));
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return _Jv_JNI_CallAnyMethodV<jobject, constructor> (env, NULL, klass,
|
|
|
|
|
id, args);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewObject (JNIEnv *env, jclass klass, jmethodID id, ...)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (klass && ! klass->isArray ());
|
|
|
|
|
JvAssert (! strcmp (id->name->data, "<init>")
|
2000-02-16 23:42:41 +01:00
|
|
|
|
&& id->signature->length > 2
|
|
|
|
|
&& id->signature->data[0] == '('
|
|
|
|
|
&& ! strcmp (&id->signature->data[id->signature->length - 2],
|
|
|
|
|
")V"));
|
2000-02-08 01:23:09 +01:00
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
va_list args;
|
|
|
|
|
jobject result;
|
|
|
|
|
|
|
|
|
|
va_start (args, id);
|
|
|
|
|
result = _Jv_JNI_CallAnyMethodV<jobject, constructor> (env, NULL, klass,
|
|
|
|
|
id, args);
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewObjectA (JNIEnv *env, jclass klass, jmethodID id,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jvalue *args)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (klass && ! klass->isArray ());
|
|
|
|
|
JvAssert (! strcmp (id->name->data, "<init>")
|
2000-02-16 23:42:41 +01:00
|
|
|
|
&& id->signature->length > 2
|
|
|
|
|
&& id->signature->data[0] == '('
|
|
|
|
|
&& ! strcmp (&id->signature->data[id->signature->length - 2],
|
|
|
|
|
")V"));
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return _Jv_JNI_CallAnyMethodA<jobject, constructor> (env, NULL, klass,
|
|
|
|
|
id, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_GetField (JNIEnv *env, jobject obj, jfieldID field)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (obj);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
T *ptr = (T *) ((char *) obj + field->getOffset ());
|
2000-02-01 18:36:05 +01:00
|
|
|
|
return wrap_value (env, *ptr);
|
2000-02-01 17:32:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_SetField (JNIEnv *, jobject obj, jfieldID field, T value)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
value = unwrap (value);
|
|
|
|
|
|
2000-02-08 01:23:09 +01:00
|
|
|
|
JvAssert (obj);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
T *ptr = (T *) ((char *) obj + field->getOffset ());
|
|
|
|
|
*ptr = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<jboolean is_static>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jfieldID JNICALL
|
|
|
|
|
_Jv_JNI_GetAnyFieldID (JNIEnv *env, jclass clazz,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
const char *name, const char *sig)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
clazz = unwrap (clazz);
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_InitClass (clazz);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_Utf8Const *a_name = _Jv_makeUtf8Const ((char *) name, -1);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2001-01-27 00:00:19 +01:00
|
|
|
|
// FIXME: assume that SIG isn't too long.
|
|
|
|
|
int len = strlen (sig);
|
|
|
|
|
char s[len + 1];
|
|
|
|
|
for (int i = 0; i <= len; ++i)
|
|
|
|
|
s[i] = (sig[i] == '/') ? '.' : sig[i];
|
|
|
|
|
jclass field_class = _Jv_FindClassFromSignature ((char *) s, NULL);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
// FIXME: what if field_class == NULL?
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2003-07-21 03:54:06 +02:00
|
|
|
|
java::lang::ClassLoader *loader = clazz->getClassLoaderInternal ();
|
2000-03-02 21:25:20 +01:00
|
|
|
|
while (clazz != NULL)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-03-23 20:15:44 +01:00
|
|
|
|
// We acquire the class lock so that fields aren't resolved
|
|
|
|
|
// while we are running.
|
|
|
|
|
JvSynchronize sync (clazz);
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jint count = (is_static
|
|
|
|
|
? JvNumStaticFields (clazz)
|
|
|
|
|
: JvNumInstanceFields (clazz));
|
|
|
|
|
jfieldID field = (is_static
|
|
|
|
|
? JvGetFirstStaticField (clazz)
|
|
|
|
|
: JvGetFirstInstanceField (clazz));
|
|
|
|
|
for (jint i = 0; i < count; ++i)
|
|
|
|
|
{
|
|
|
|
|
_Jv_Utf8Const *f_name = field->getNameUtf8Const(clazz);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2001-03-23 20:15:44 +01:00
|
|
|
|
// The field might be resolved or it might not be. It
|
|
|
|
|
// is much simpler to always resolve it.
|
|
|
|
|
_Jv_ResolveField (field, loader);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
if (_Jv_equalUtf8Consts (f_name, a_name)
|
|
|
|
|
&& field->getClass() == field_class)
|
|
|
|
|
return field;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
field = field->getNextField ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clazz = clazz->getSuperclass ();
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
env->ex = new java::lang::NoSuchFieldError ();
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T JNICALL
|
|
|
|
|
_Jv_JNI_GetStaticField (JNIEnv *env, jclass, jfieldID field)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
T *ptr = (T *) field->u.addr;
|
2000-02-01 18:36:05 +01:00
|
|
|
|
return wrap_value (env, *ptr);
|
2000-02-01 17:32:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
template<typename T>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_SetStaticField (JNIEnv *, jclass, jfieldID field, T value)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
value = unwrap (value);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
T *ptr = (T *) field->u.addr;
|
|
|
|
|
*ptr = value;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jstring JNICALL
|
|
|
|
|
_Jv_JNI_NewString (JNIEnv *env, const jchar *unichars, jsize len)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
jstring r = _Jv_NewString (unichars, len);
|
|
|
|
|
return (jstring) wrap_value (env, r);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jsize JNICALL
|
|
|
|
|
_Jv_JNI_GetStringLength (JNIEnv *, jstring string)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return unwrap (string)->length();
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static const jchar * JNICALL
|
|
|
|
|
_Jv_JNI_GetStringChars (JNIEnv *, jstring string, jboolean *isCopy)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
string = unwrap (string);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
jchar *result = _Jv_GetStringChars (string);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
mark_for_gc (string, global_ref_table);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
if (isCopy)
|
|
|
|
|
*isCopy = false;
|
|
|
|
|
return (const jchar *) result;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ReleaseStringChars (JNIEnv *, jstring string, const jchar *)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
unmark_for_gc (unwrap (string), global_ref_table);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jstring JNICALL
|
|
|
|
|
_Jv_JNI_NewStringUTF (JNIEnv *env, const char *bytes)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
jstring result = JvNewStringUTF (bytes);
|
|
|
|
|
return (jstring) wrap_value (env, result);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jsize JNICALL
|
|
|
|
|
_Jv_JNI_GetStringUTFLength (JNIEnv *, jstring string)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return JvGetStringUTFLength (unwrap (string));
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static const char * JNICALL
|
|
|
|
|
_Jv_JNI_GetStringUTFChars (JNIEnv *env, jstring string,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jboolean *isCopy)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2003-11-18 18:56:33 +01:00
|
|
|
|
string = unwrap (string);
|
|
|
|
|
if (string == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
jsize len = JvGetStringUTFLength (string);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
char *r = (char *) _Jv_Malloc (len + 1);
|
2003-11-14 02:48:30 +01:00
|
|
|
|
JvGetStringUTFRegion (string, 0, string->length(), r);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
r[len] = '\0';
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
if (isCopy)
|
|
|
|
|
*isCopy = true;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
return (const char *) r;
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ReleaseStringUTFChars (JNIEnv *, jstring, const char *utf)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
|
|
|
|
_Jv_Free ((void *) utf);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_GetStringRegion (JNIEnv *env, jstring string, jsize start,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize len, jchar *buf)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
string = unwrap (string);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
jchar *result = _Jv_GetStringChars (string);
|
|
|
|
|
if (start < 0 || start > string->length ()
|
|
|
|
|
|| len < 0 || start + len > string->length ())
|
2000-03-02 21:25:20 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
env->ex = new java::lang::StringIndexOutOfBoundsException ();
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
else
|
|
|
|
|
memcpy (buf, &result[start], len * sizeof (jchar));
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_GetStringUTFRegion (JNIEnv *env, jstring str, jsize start,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize len, char *buf)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
str = unwrap (str);
|
|
|
|
|
|
2000-01-27 00:56:36 +01:00
|
|
|
|
if (start < 0 || start > str->length ()
|
|
|
|
|
|| len < 0 || start + len > str->length ())
|
2000-03-02 21:25:20 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
env->ex = new java::lang::StringIndexOutOfBoundsException ();
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
else
|
|
|
|
|
_Jv_GetStringUTFRegion (str, start, len, buf);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static const jchar * JNICALL
|
|
|
|
|
_Jv_JNI_GetStringCritical (JNIEnv *, jstring str, jboolean *isCopy)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
jchar *result = _Jv_GetStringChars (unwrap (str));
|
2000-01-27 00:56:36 +01:00
|
|
|
|
if (isCopy)
|
|
|
|
|
*isCopy = false;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ReleaseStringCritical (JNIEnv *, jstring, const jchar *)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
// Nothing.
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jsize JNICALL
|
|
|
|
|
_Jv_JNI_GetArrayLength (JNIEnv *, jarray array)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
return unwrap (array)->length;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jarray JNICALL
|
|
|
|
|
_Jv_JNI_NewObjectArray (JNIEnv *env, jsize length,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jclass elementClass, jobject init)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
elementClass = unwrap (elementClass);
|
|
|
|
|
init = unwrap (init);
|
|
|
|
|
|
2003-01-31 23:50:48 +01:00
|
|
|
|
_Jv_CheckCast (elementClass, init);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jarray result = JvNewObjectArray (length, elementClass, init);
|
|
|
|
|
return (jarray) wrap_value (env, result);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_GetObjectArrayElement (JNIEnv *env, jobjectArray array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize index)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2003-01-31 23:50:48 +01:00
|
|
|
|
if ((unsigned) index >= (unsigned) array->length)
|
|
|
|
|
_Jv_ThrowBadArrayIndex (index);
|
2001-11-13 18:43:41 +01:00
|
|
|
|
jobject *elts = elements (unwrap (array));
|
2000-02-08 01:23:09 +01:00
|
|
|
|
return wrap_value (env, elts[index]);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_SetObjectArrayElement (JNIEnv *env, jobjectArray array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize index, jobject value)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
|
|
|
|
value = unwrap (value);
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
_Jv_CheckArrayStore (array, value);
|
2003-01-31 23:50:48 +01:00
|
|
|
|
if ((unsigned) index >= (unsigned) array->length)
|
|
|
|
|
_Jv_ThrowBadArrayIndex (index);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jobject *elts = elements (array);
|
|
|
|
|
elts[index] = value;
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T, jclass K>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static JArray<T> * JNICALL
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray (JNIEnv *env, jsize length)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return (JArray<T> *) wrap_value (env, _Jv_NewPrimArray (K, length));
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 17:39:17 +02:00
|
|
|
|
template<typename T, jclass K>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static T * JNICALL
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements (JNIEnv *env, JArray<T> *array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jboolean *isCopy)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
2003-06-12 17:39:17 +02:00
|
|
|
|
if (! _Jv_JNI_check_types (env, array, K))
|
|
|
|
|
return NULL;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
T *elts = elements (array);
|
|
|
|
|
if (isCopy)
|
|
|
|
|
{
|
|
|
|
|
// We elect never to copy.
|
|
|
|
|
*isCopy = false;
|
|
|
|
|
}
|
2001-06-16 00:09:10 +02:00
|
|
|
|
mark_for_gc (array, global_ref_table);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
return elts;
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 17:39:17 +02:00
|
|
|
|
template<typename T, jclass K>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements (JNIEnv *env, JArray<T> *array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
T *, jint /* mode */)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
2003-06-12 17:39:17 +02:00
|
|
|
|
_Jv_JNI_check_types (env, array, K);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
// Note that we ignore MODE. We can do this because we never copy
|
|
|
|
|
// the array elements. My reading of the JNI documentation is that
|
|
|
|
|
// this is an option for the implementor.
|
2001-06-16 00:09:10 +02:00
|
|
|
|
unmark_for_gc (array, global_ref_table);
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 17:39:17 +02:00
|
|
|
|
template<typename T, jclass K>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion (JNIEnv *env, JArray<T> *array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize start, jsize len,
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
T *buf)
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
2003-06-12 17:39:17 +02:00
|
|
|
|
if (! _Jv_JNI_check_types (env, array, K))
|
|
|
|
|
return;
|
2001-11-13 18:43:41 +01:00
|
|
|
|
|
2001-04-27 18:09:54 +02:00
|
|
|
|
// The cast to unsigned lets us save a comparison.
|
|
|
|
|
if (start < 0 || len < 0
|
2001-05-03 18:56:38 +02:00
|
|
|
|
|| (unsigned long) (start + len) > (unsigned long) array->length)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// FIXME: index.
|
|
|
|
|
env->ex = new java::lang::ArrayIndexOutOfBoundsException ();
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
// Could have thown out of memory error.
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
T *elts = elements (array) + start;
|
|
|
|
|
memcpy (buf, elts, len * sizeof (T));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 17:39:17 +02:00
|
|
|
|
template<typename T, jclass K>
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion (JNIEnv *env, JArray<T> *array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jsize start, jsize len, T *buf)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
2003-06-12 17:39:17 +02:00
|
|
|
|
if (! _Jv_JNI_check_types (env, array, K))
|
|
|
|
|
return;
|
2001-11-13 18:43:41 +01:00
|
|
|
|
|
2001-04-27 18:09:54 +02:00
|
|
|
|
// The cast to unsigned lets us save a comparison.
|
|
|
|
|
if (start < 0 || len < 0
|
2001-05-03 18:56:38 +02:00
|
|
|
|
|| (unsigned long) (start + len) > (unsigned long) array->length)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// FIXME: index.
|
|
|
|
|
env->ex = new java::lang::ArrayIndexOutOfBoundsException ();
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
T *elts = elements (array) + start;
|
|
|
|
|
memcpy (elts, buf, len * sizeof (T));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void * JNICALL
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayCritical (JNIEnv *, jarray array,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jboolean *isCopy)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
array = unwrap (array);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
// FIXME: does this work?
|
|
|
|
|
jclass klass = array->getClass()->getComponentType();
|
|
|
|
|
JvAssert (klass->isPrimitive ());
|
|
|
|
|
char *r = _Jv_GetArrayElementFromElementType (array, klass);
|
|
|
|
|
if (isCopy)
|
|
|
|
|
*isCopy = false;
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void JNICALL
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayCritical (JNIEnv *, jarray, void *, jint)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
// Nothing.
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_MonitorEnter (JNIEnv *env, jobject obj)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
_Jv_MonitorEnter (unwrap (obj));
|
2001-04-27 18:09:54 +02:00
|
|
|
|
return 0;
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
return JNI_ERR;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_MonitorExit (JNIEnv *env, jobject obj)
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
_Jv_MonitorExit (unwrap (obj));
|
2001-04-27 18:09:54 +02:00
|
|
|
|
return 0;
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
return JNI_ERR;
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
|
// JDK 1.2
|
2004-06-30 06:52:11 +02:00
|
|
|
|
jobject JNICALL
|
|
|
|
|
_Jv_JNI_ToReflectedField (JNIEnv *env, jclass cls, jfieldID fieldID,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jboolean)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2001-11-13 18:43:41 +01:00
|
|
|
|
cls = unwrap (cls);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
java::lang::reflect::Field *field = new java::lang::reflect::Field();
|
|
|
|
|
field->declaringClass = cls;
|
|
|
|
|
field->offset = (char*) fieldID - (char *) cls->fields;
|
|
|
|
|
field->name = _Jv_NewStringUtf8Const (fieldID->getNameUtf8Const (cls));
|
|
|
|
|
return wrap_value (env, field);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
1999-04-07 16:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// JDK 1.2
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jfieldID JNICALL
|
|
|
|
|
_Jv_JNI_FromReflectedField (JNIEnv *, jobject f)
|
1999-04-07 16:42:40 +02:00
|
|
|
|
{
|
2000-01-27 00:56:36 +01:00
|
|
|
|
using namespace java::lang::reflect;
|
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
f = unwrap (f);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
Field *field = reinterpret_cast<Field *> (f);
|
1999-04-07 16:42:40 +02:00
|
|
|
|
return _Jv_FromReflectedField (field);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
jobject JNICALL
|
|
|
|
|
_Jv_JNI_ToReflectedMethod (JNIEnv *env, jclass klass, jmethodID id,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
jboolean)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
using namespace java::lang::reflect;
|
|
|
|
|
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jobject result = NULL;
|
2001-11-13 18:43:41 +01:00
|
|
|
|
klass = unwrap (klass);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
|
|
|
|
|
try
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
if (_Jv_equalUtf8Consts (id->name, init_name))
|
|
|
|
|
{
|
|
|
|
|
// A constructor.
|
|
|
|
|
Constructor *cons = new Constructor ();
|
|
|
|
|
cons->offset = (char *) id - (char *) &klass->methods;
|
|
|
|
|
cons->declaringClass = klass;
|
|
|
|
|
result = cons;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Method *meth = new Method ();
|
|
|
|
|
meth->offset = (char *) id - (char *) &klass->methods;
|
|
|
|
|
meth->declaringClass = klass;
|
|
|
|
|
result = meth;
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
2000-03-02 21:25:20 +01:00
|
|
|
|
catch (jthrowable t)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
env->ex = t;
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-08 01:23:09 +01:00
|
|
|
|
return wrap_value (env, result);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jmethodID JNICALL
|
|
|
|
|
_Jv_JNI_FromReflectedMethod (JNIEnv *, jobject method)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
|
|
|
|
using namespace java::lang::reflect;
|
2001-11-13 18:43:41 +01:00
|
|
|
|
method = unwrap (method);
|
2001-06-16 00:09:10 +02:00
|
|
|
|
if (Method::class$.isInstance (method))
|
2000-01-27 00:56:36 +01:00
|
|
|
|
return _Jv_FromReflectedMethod (reinterpret_cast<Method *> (method));
|
|
|
|
|
return
|
|
|
|
|
_Jv_FromReflectedConstructor (reinterpret_cast<Constructor *> (method));
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
// JDK 1.2.
|
2004-06-30 06:52:11 +02:00
|
|
|
|
jweak JNICALL
|
|
|
|
|
_Jv_JNI_NewWeakGlobalRef (JNIEnv *env, jobject obj)
|
2001-11-13 18:43:41 +01:00
|
|
|
|
{
|
|
|
|
|
using namespace gnu::gcj::runtime;
|
|
|
|
|
JNIWeakRef *ref = NULL;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// This seems weird but I think it is correct.
|
|
|
|
|
obj = unwrap (obj);
|
|
|
|
|
ref = new JNIWeakRef (obj);
|
|
|
|
|
mark_for_gc (ref, global_ref_table);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reinterpret_cast<jweak> (ref);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
void JNICALL
|
|
|
|
|
_Jv_JNI_DeleteWeakGlobalRef (JNIEnv *, jweak obj)
|
2001-11-13 18:43:41 +01:00
|
|
|
|
{
|
|
|
|
|
using namespace gnu::gcj::runtime;
|
|
|
|
|
JNIWeakRef *ref = reinterpret_cast<JNIWeakRef *> (obj);
|
|
|
|
|
unmark_for_gc (ref, global_ref_table);
|
|
|
|
|
ref->clear ();
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-20 21:52:02 +02:00
|
|
|
|
|
|
|
|
|
|
2002-04-10 22:36:04 +02:00
|
|
|
|
// Direct byte buffers.
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jobject JNICALL
|
|
|
|
|
_Jv_JNI_NewDirectByteBuffer (JNIEnv *, void *address, jlong length)
|
2002-04-10 22:36:04 +02:00
|
|
|
|
{
|
2003-06-17 21:09:56 +02:00
|
|
|
|
using namespace gnu::gcj;
|
|
|
|
|
using namespace java::nio;
|
|
|
|
|
return new DirectByteBufferImpl (reinterpret_cast<RawData *> (address),
|
|
|
|
|
length);
|
2002-04-10 22:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static void * JNICALL
|
|
|
|
|
_Jv_JNI_GetDirectBufferAddress (JNIEnv *, jobject buffer)
|
2002-04-10 22:36:04 +02:00
|
|
|
|
{
|
2003-06-17 21:09:56 +02:00
|
|
|
|
using namespace java::nio;
|
|
|
|
|
DirectByteBufferImpl* bb = static_cast<DirectByteBufferImpl *> (buffer);
|
|
|
|
|
return reinterpret_cast<void *> (bb->address);
|
2002-04-10 22:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jlong JNICALL
|
|
|
|
|
_Jv_JNI_GetDirectBufferCapacity (JNIEnv *, jobject buffer)
|
2002-04-10 22:36:04 +02:00
|
|
|
|
{
|
2003-06-17 21:09:56 +02:00
|
|
|
|
using namespace java::nio;
|
|
|
|
|
DirectByteBufferImpl* bb = static_cast<DirectByteBufferImpl *> (buffer);
|
|
|
|
|
return bb->capacity();
|
2002-04-10 22:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-08-20 21:52:02 +02:00
|
|
|
|
// Hash table of native methods.
|
|
|
|
|
static JNINativeMethod *nathash;
|
|
|
|
|
// Number of slots used.
|
|
|
|
|
static int nathash_count = 0;
|
|
|
|
|
// Number of slots available. Must be power of 2.
|
|
|
|
|
static int nathash_size = 0;
|
|
|
|
|
|
|
|
|
|
#define DELETED_ENTRY ((char *) (~0))
|
|
|
|
|
|
|
|
|
|
// Compute a hash value for a native method descriptor.
|
|
|
|
|
static int
|
|
|
|
|
hash (const JNINativeMethod *method)
|
|
|
|
|
{
|
|
|
|
|
char *ptr;
|
|
|
|
|
int hash = 0;
|
|
|
|
|
|
|
|
|
|
ptr = method->name;
|
|
|
|
|
while (*ptr)
|
|
|
|
|
hash = (31 * hash) + *ptr++;
|
|
|
|
|
|
|
|
|
|
ptr = method->signature;
|
|
|
|
|
while (*ptr)
|
|
|
|
|
hash = (31 * hash) + *ptr++;
|
|
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find the slot where a native method goes.
|
|
|
|
|
static JNINativeMethod *
|
|
|
|
|
nathash_find_slot (const JNINativeMethod *method)
|
|
|
|
|
{
|
|
|
|
|
jint h = hash (method);
|
|
|
|
|
int step = (h ^ (h >> 16)) | 1;
|
|
|
|
|
int w = h & (nathash_size - 1);
|
|
|
|
|
int del = -1;
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
JNINativeMethod *slotp = &nathash[w];
|
|
|
|
|
if (slotp->name == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (del >= 0)
|
|
|
|
|
return &nathash[del];
|
|
|
|
|
else
|
|
|
|
|
return slotp;
|
|
|
|
|
}
|
|
|
|
|
else if (slotp->name == DELETED_ENTRY)
|
|
|
|
|
del = w;
|
|
|
|
|
else if (! strcmp (slotp->name, method->name)
|
|
|
|
|
&& ! strcmp (slotp->signature, method->signature))
|
|
|
|
|
return slotp;
|
|
|
|
|
w = (w + step) & (nathash_size - 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find a method. Return NULL if it isn't in the hash table.
|
|
|
|
|
static void *
|
|
|
|
|
nathash_find (JNINativeMethod *method)
|
|
|
|
|
{
|
|
|
|
|
if (nathash == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
JNINativeMethod *slot = nathash_find_slot (method);
|
|
|
|
|
if (slot->name == NULL || slot->name == DELETED_ENTRY)
|
|
|
|
|
return NULL;
|
|
|
|
|
return slot->fnPtr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
natrehash ()
|
|
|
|
|
{
|
|
|
|
|
if (nathash == NULL)
|
|
|
|
|
{
|
|
|
|
|
nathash_size = 1024;
|
|
|
|
|
nathash =
|
|
|
|
|
(JNINativeMethod *) _Jv_AllocBytes (nathash_size
|
|
|
|
|
* sizeof (JNINativeMethod));
|
|
|
|
|
memset (nathash, 0, nathash_size * sizeof (JNINativeMethod));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int savesize = nathash_size;
|
|
|
|
|
JNINativeMethod *savehash = nathash;
|
|
|
|
|
nathash_size *= 2;
|
|
|
|
|
nathash =
|
|
|
|
|
(JNINativeMethod *) _Jv_AllocBytes (nathash_size
|
|
|
|
|
* sizeof (JNINativeMethod));
|
|
|
|
|
memset (nathash, 0, nathash_size * sizeof (JNINativeMethod));
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < savesize; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (savehash[i].name != NULL && savehash[i].name != DELETED_ENTRY)
|
|
|
|
|
{
|
|
|
|
|
JNINativeMethod *slot = nathash_find_slot (&savehash[i]);
|
|
|
|
|
*slot = savehash[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nathash_add (const JNINativeMethod *method)
|
|
|
|
|
{
|
|
|
|
|
if (3 * nathash_count >= 2 * nathash_size)
|
|
|
|
|
natrehash ();
|
|
|
|
|
JNINativeMethod *slot = nathash_find_slot (method);
|
|
|
|
|
// If the slot has a real entry in it, then there is no work to do.
|
|
|
|
|
if (slot->name != NULL && slot->name != DELETED_ENTRY)
|
|
|
|
|
return;
|
|
|
|
|
// FIXME
|
|
|
|
|
slot->name = strdup (method->name);
|
|
|
|
|
slot->signature = strdup (method->signature);
|
|
|
|
|
slot->fnPtr = method->fnPtr;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_RegisterNatives (JNIEnv *env, jclass klass,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
const JNINativeMethod *methods,
|
|
|
|
|
jint nMethods)
|
2000-02-18 22:22:06 +01:00
|
|
|
|
{
|
2001-08-20 21:52:02 +02:00
|
|
|
|
// Synchronize while we do the work. This must match
|
|
|
|
|
// synchronization in some other functions that manipulate or use
|
|
|
|
|
// the nathash table.
|
|
|
|
|
JvSynchronize sync (global_ref_table);
|
2000-02-18 22:22:06 +01:00
|
|
|
|
|
|
|
|
|
// Look at each descriptor given us, and find the corresponding
|
|
|
|
|
// method in the class.
|
|
|
|
|
for (int j = 0; j < nMethods; ++j)
|
|
|
|
|
{
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
2001-08-20 21:52:02 +02:00
|
|
|
|
_Jv_Method *imeths = JvGetFirstMethod (klass);
|
2000-02-18 22:22:06 +01:00
|
|
|
|
for (int i = 0; i < JvNumMethods (klass); ++i)
|
|
|
|
|
{
|
2001-08-20 21:52:02 +02:00
|
|
|
|
_Jv_Method *self = &imeths[i];
|
2000-02-18 22:22:06 +01:00
|
|
|
|
|
2004-08-12 08:53:42 +02:00
|
|
|
|
if (! strcmp (self->name->chars (), methods[j].name)
|
|
|
|
|
&& ! strcmp (self->signature->chars (), methods[j].signature))
|
2000-02-18 22:22:06 +01:00
|
|
|
|
{
|
|
|
|
|
if (! (self->accflags
|
|
|
|
|
& java::lang::reflect::Modifier::NATIVE))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// Found a match that is native.
|
|
|
|
|
found = true;
|
2001-08-20 21:52:02 +02:00
|
|
|
|
nathash_add (&methods[j]);
|
|
|
|
|
|
2000-02-18 22:22:06 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! found)
|
|
|
|
|
{
|
|
|
|
|
jstring m = JvNewStringUTF (methods[j].name);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
env->ex =new java::lang::NoSuchMethodError (m);
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
env->ex = t;
|
|
|
|
|
}
|
2000-02-18 22:22:06 +01:00
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return JNI_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_UnregisterNatives (JNIEnv *, jclass)
|
2000-02-18 22:22:06 +01:00
|
|
|
|
{
|
2001-08-20 21:52:02 +02:00
|
|
|
|
// FIXME -- we could implement this.
|
2000-02-18 22:22:06 +01:00
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
|
|
|
|
|
2000-02-04 21:49:27 +01:00
|
|
|
|
// Add a character to the buffer, encoding properly.
|
|
|
|
|
static void
|
|
|
|
|
add_char (char *buf, jchar c, int *here)
|
|
|
|
|
{
|
|
|
|
|
if (c == '_')
|
|
|
|
|
{
|
|
|
|
|
buf[(*here)++] = '_';
|
|
|
|
|
buf[(*here)++] = '1';
|
|
|
|
|
}
|
|
|
|
|
else if (c == ';')
|
|
|
|
|
{
|
|
|
|
|
buf[(*here)++] = '_';
|
|
|
|
|
buf[(*here)++] = '2';
|
|
|
|
|
}
|
|
|
|
|
else if (c == '[')
|
|
|
|
|
{
|
|
|
|
|
buf[(*here)++] = '_';
|
|
|
|
|
buf[(*here)++] = '3';
|
|
|
|
|
}
|
2001-03-22 18:47:15 +01:00
|
|
|
|
|
|
|
|
|
// Also check for `.' here because we might be passed an internal
|
|
|
|
|
// qualified class name like `foo.bar'.
|
|
|
|
|
else if (c == '/' || c == '.')
|
2000-02-04 21:49:27 +01:00
|
|
|
|
buf[(*here)++] = '_';
|
2000-02-15 23:42:10 +01:00
|
|
|
|
else if ((c >= '0' && c <= '9')
|
2001-04-02 21:52:39 +02:00
|
|
|
|
|| (c >= 'a' && c <= 'z')
|
|
|
|
|
|| (c >= 'A' && c <= 'Z'))
|
2000-02-04 21:49:27 +01:00
|
|
|
|
buf[(*here)++] = (char) c;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// "Unicode" character.
|
|
|
|
|
buf[(*here)++] = '_';
|
|
|
|
|
buf[(*here)++] = '0';
|
|
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
|
{
|
|
|
|
|
int val = c & 0x0f;
|
2001-04-02 21:52:39 +02:00
|
|
|
|
buf[(*here) + 3 - i] = (val > 10) ? ('a' + val - 10) : ('0' + val);
|
2000-02-04 21:49:27 +01:00
|
|
|
|
c >>= 4;
|
|
|
|
|
}
|
|
|
|
|
*here += 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Compute a mangled name for a native function. This computes the
|
|
|
|
|
// long name, and also returns an index which indicates where a NUL
|
|
|
|
|
// can be placed to create the short name. This function assumes that
|
|
|
|
|
// the buffer is large enough for its results.
|
|
|
|
|
static void
|
|
|
|
|
mangled_name (jclass klass, _Jv_Utf8Const *func_name,
|
|
|
|
|
_Jv_Utf8Const *signature, char *buf, int *long_start)
|
|
|
|
|
{
|
|
|
|
|
strcpy (buf, "Java_");
|
|
|
|
|
int here = 5;
|
|
|
|
|
|
|
|
|
|
// Add fully qualified class name.
|
|
|
|
|
jchar *chars = _Jv_GetStringChars (klass->getName ());
|
|
|
|
|
jint len = klass->getName ()->length ();
|
|
|
|
|
for (int i = 0; i < len; ++i)
|
|
|
|
|
add_char (buf, chars[i], &here);
|
|
|
|
|
|
|
|
|
|
// Don't use add_char because we need a literal `_'.
|
|
|
|
|
buf[here++] = '_';
|
|
|
|
|
|
2004-08-12 08:53:42 +02:00
|
|
|
|
const unsigned char *fn = (const unsigned char *) func_name->chars ();
|
|
|
|
|
const unsigned char *limit = fn + func_name->len ();
|
2000-02-04 21:49:27 +01:00
|
|
|
|
for (int i = 0; ; ++i)
|
|
|
|
|
{
|
|
|
|
|
int ch = UTF8_GET (fn, limit);
|
|
|
|
|
if (ch < 0)
|
|
|
|
|
break;
|
|
|
|
|
add_char (buf, ch, &here);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is where the long signature begins.
|
|
|
|
|
*long_start = here;
|
|
|
|
|
buf[here++] = '_';
|
|
|
|
|
buf[here++] = '_';
|
|
|
|
|
|
2004-08-12 08:53:42 +02:00
|
|
|
|
const unsigned char *sig = (const unsigned char *) signature->chars ();
|
|
|
|
|
limit = sig + signature->len ();
|
2000-03-14 22:59:54 +01:00
|
|
|
|
JvAssert (sig[0] == '(');
|
2000-02-15 23:59:23 +01:00
|
|
|
|
++sig;
|
|
|
|
|
while (1)
|
2000-02-04 21:49:27 +01:00
|
|
|
|
{
|
|
|
|
|
int ch = UTF8_GET (sig, limit);
|
|
|
|
|
if (ch == ')' || ch < 0)
|
|
|
|
|
break;
|
|
|
|
|
add_char (buf, ch, &here);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buf[here] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
// Return the current thread's JNIEnv; if one does not exist, create
|
|
|
|
|
// it. Also create a new system frame for use. This is `extern "C"'
|
|
|
|
|
// because the compiler calls it.
|
|
|
|
|
extern "C" JNIEnv *
|
|
|
|
|
_Jv_GetJNIEnvNewFrame (jclass klass)
|
2000-01-27 00:56:36 +01:00
|
|
|
|
{
|
2000-03-07 01:10:52 +01:00
|
|
|
|
JNIEnv *env = _Jv_GetCurrentJNIEnv ();
|
|
|
|
|
if (env == NULL)
|
|
|
|
|
{
|
|
|
|
|
env = (JNIEnv *) _Jv_MallocUnchecked (sizeof (JNIEnv));
|
|
|
|
|
env->p = &_Jv_JNIFunctions;
|
|
|
|
|
env->klass = klass;
|
|
|
|
|
env->locals = NULL;
|
2002-11-10 09:00:48 +01:00
|
|
|
|
// We set env->ex below.
|
2000-02-02 02:55:03 +01:00
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
_Jv_SetCurrentJNIEnv (env);
|
|
|
|
|
}
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
_Jv_JNI_LocalFrame *frame
|
|
|
|
|
= (_Jv_JNI_LocalFrame *) _Jv_MallocUnchecked (sizeof (_Jv_JNI_LocalFrame)
|
|
|
|
|
+ (FRAME_SIZE
|
|
|
|
|
* sizeof (jobject)));
|
2000-02-01 07:14:26 +01:00
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
frame->marker = MARK_SYSTEM;
|
2000-02-01 07:14:26 +01:00
|
|
|
|
frame->size = FRAME_SIZE;
|
2000-03-07 01:10:52 +01:00
|
|
|
|
frame->next = env->locals;
|
|
|
|
|
|
2000-02-01 07:14:26 +01:00
|
|
|
|
for (int i = 0; i < frame->size; ++i)
|
|
|
|
|
frame->vec[i] = NULL;
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2002-11-10 09:00:48 +01:00
|
|
|
|
env->locals = frame;
|
|
|
|
|
env->ex = NULL;
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
return env;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Return the function which implements a particular JNI method. If
|
|
|
|
|
// we can't find the function, we throw the appropriate exception.
|
|
|
|
|
// This is `extern "C"' because the compiler uses it.
|
|
|
|
|
extern "C" void *
|
|
|
|
|
_Jv_LookupJNIMethod (jclass klass, _Jv_Utf8Const *name,
|
2004-02-01 21:05:03 +01:00
|
|
|
|
_Jv_Utf8Const *signature, MAYBE_UNUSED int args_size)
|
2000-03-07 01:10:52 +01:00
|
|
|
|
{
|
2004-08-12 08:53:42 +02:00
|
|
|
|
int name_length = name->len();
|
|
|
|
|
int sig_length = signature->len();
|
|
|
|
|
char buf[10 + 6 * (name_length + sig_length) + 12];
|
2000-03-07 01:10:52 +01:00
|
|
|
|
int long_start;
|
|
|
|
|
void *function;
|
|
|
|
|
|
2001-08-20 21:52:02 +02:00
|
|
|
|
// Synchronize on something convenient. Right now we use the hash.
|
|
|
|
|
JvSynchronize sync (global_ref_table);
|
|
|
|
|
|
|
|
|
|
// First see if we have an override in the hash table.
|
2004-08-12 08:53:42 +02:00
|
|
|
|
strncpy (buf, name->chars (), name_length);
|
|
|
|
|
buf[name_length] = '\0';
|
|
|
|
|
strncpy (buf + name_length + 1, signature->chars (), sig_length);
|
|
|
|
|
buf[name_length + sig_length + 1] = '\0';
|
2001-08-20 21:52:02 +02:00
|
|
|
|
JNINativeMethod meth;
|
|
|
|
|
meth.name = buf;
|
2004-08-12 08:53:42 +02:00
|
|
|
|
meth.signature = buf + name_length + 1;
|
2001-08-20 21:52:02 +02:00
|
|
|
|
function = nathash_find (&meth);
|
|
|
|
|
if (function != NULL)
|
|
|
|
|
return function;
|
|
|
|
|
|
|
|
|
|
// If there was no override, then look in the symbol table.
|
2003-02-13 00:40:31 +01:00
|
|
|
|
buf[0] = '_';
|
|
|
|
|
mangled_name (klass, name, signature, buf + 1, &long_start);
|
|
|
|
|
char c = buf[long_start + 1];
|
|
|
|
|
buf[long_start + 1] = '\0';
|
|
|
|
|
|
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf + 1);
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
// On Win32, we use the "stdcall" calling convention (see JNICALL
|
|
|
|
|
// in jni.h).
|
|
|
|
|
//
|
|
|
|
|
// For a function named 'fooBar' that takes 'nn' bytes as arguments,
|
|
|
|
|
// by default, MinGW GCC exports it as 'fooBar@nn', MSVC exports it
|
|
|
|
|
// as '_fooBar@nn' and Borland C exports it as 'fooBar'. We try to
|
|
|
|
|
// take care of all these variations here.
|
|
|
|
|
|
|
|
|
|
char asz_buf[12]; /* '@' + '2147483647' (32-bit INT_MAX) + '\0' */
|
|
|
|
|
char long_nm_sv[11]; /* Ditto, except for the '\0'. */
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
if (function == NULL)
|
|
|
|
|
{
|
2003-02-13 00:40:31 +01:00
|
|
|
|
// We have tried searching for the 'fooBar' form (BCC) - now
|
|
|
|
|
// try the others.
|
|
|
|
|
|
|
|
|
|
// First, save the part of the long name that will be damaged
|
|
|
|
|
// by appending '@nn'.
|
|
|
|
|
memcpy (long_nm_sv, (buf + long_start + 1 + 1), sizeof (long_nm_sv));
|
|
|
|
|
|
|
|
|
|
sprintf (asz_buf, "@%d", args_size);
|
|
|
|
|
strcat (buf, asz_buf);
|
|
|
|
|
|
|
|
|
|
// Search for the '_fooBar@nn' form (MSVC).
|
2000-03-07 01:10:52 +01:00
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf);
|
2003-02-13 00:40:31 +01:00
|
|
|
|
|
|
|
|
|
if (function == NULL)
|
|
|
|
|
{
|
|
|
|
|
// Search for the 'fooBar@nn' form (MinGW GCC).
|
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-09-22 10:05:51 +02:00
|
|
|
|
#endif /* WIN32 */
|
2003-02-13 00:40:31 +01:00
|
|
|
|
|
|
|
|
|
if (function == NULL)
|
|
|
|
|
{
|
|
|
|
|
buf[long_start + 1] = c;
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
// Restore the part of the long name that was damaged by
|
|
|
|
|
// appending the '@nn'.
|
|
|
|
|
memcpy ((buf + long_start + 1 + 1), long_nm_sv, sizeof (long_nm_sv));
|
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf + 1);
|
2000-03-07 01:10:52 +01:00
|
|
|
|
if (function == NULL)
|
|
|
|
|
{
|
2003-02-13 00:40:31 +01:00
|
|
|
|
#ifdef WIN32
|
|
|
|
|
strcat (buf, asz_buf);
|
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf);
|
|
|
|
|
if (function == NULL)
|
|
|
|
|
function = _Jv_FindSymbolInExecutable (buf + 1);
|
|
|
|
|
|
|
|
|
|
if (function == NULL)
|
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
{
|
2004-08-12 08:53:42 +02:00
|
|
|
|
jstring str = JvNewStringUTF (name->chars ());
|
2003-02-13 00:40:31 +01:00
|
|
|
|
throw new java::lang::UnsatisfiedLinkError (str);
|
|
|
|
|
}
|
2000-03-07 01:10:52 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return function;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 21:52:39 +02:00
|
|
|
|
#ifdef INTERPRETER
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
// This function is the stub which is used to turn an ordinary (CNI)
|
|
|
|
|
// method call into a JNI call.
|
|
|
|
|
void
|
|
|
|
|
_Jv_JNIMethod::call (ffi_cif *, void *ret, ffi_raw *args, void *__this)
|
|
|
|
|
{
|
|
|
|
|
_Jv_JNIMethod* _this = (_Jv_JNIMethod *) __this;
|
|
|
|
|
|
|
|
|
|
JNIEnv *env = _Jv_GetJNIEnvNewFrame (_this->defining_class);
|
|
|
|
|
|
2000-02-02 02:55:03 +01:00
|
|
|
|
// FIXME: we should mark every reference parameter as a local. For
|
|
|
|
|
// now we assume a conservative GC, and we assume that the
|
|
|
|
|
// references are on the stack somewhere.
|
|
|
|
|
|
2000-02-04 21:49:27 +01:00
|
|
|
|
// We cache the value that we find, of course, but if we don't find
|
|
|
|
|
// a value we don't cache that fact -- we might subsequently load a
|
|
|
|
|
// library which finds the function in question.
|
2001-08-20 21:52:02 +02:00
|
|
|
|
{
|
|
|
|
|
// Synchronize on a convenient object to ensure sanity in case two
|
|
|
|
|
// threads reach this point for the same function at the same
|
|
|
|
|
// time.
|
|
|
|
|
JvSynchronize sync (global_ref_table);
|
|
|
|
|
if (_this->function == NULL)
|
2003-02-13 00:40:31 +01:00
|
|
|
|
{
|
|
|
|
|
int args_size = sizeof (JNIEnv *) + _this->args_raw_size;
|
|
|
|
|
|
|
|
|
|
if (_this->self->accflags & java::lang::reflect::Modifier::STATIC)
|
|
|
|
|
args_size += sizeof (_this->defining_class);
|
|
|
|
|
|
|
|
|
|
_this->function = _Jv_LookupJNIMethod (_this->defining_class,
|
|
|
|
|
_this->self->name,
|
|
|
|
|
_this->self->signature,
|
|
|
|
|
args_size);
|
|
|
|
|
}
|
2001-08-20 21:52:02 +02:00
|
|
|
|
}
|
2000-02-04 21:49:27 +01:00
|
|
|
|
|
2000-02-16 01:07:34 +01:00
|
|
|
|
JvAssert (_this->args_raw_size % sizeof (ffi_raw) == 0);
|
|
|
|
|
ffi_raw real_args[2 + _this->args_raw_size / sizeof (ffi_raw)];
|
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
|
|
// First argument is always the environment pointer.
|
2000-03-07 01:10:52 +01:00
|
|
|
|
real_args[offset++].ptr = env;
|
2000-02-16 01:07:34 +01:00
|
|
|
|
|
|
|
|
|
// For a static method, we pass in the Class. For non-static
|
|
|
|
|
// methods, the `this' argument is already handled.
|
|
|
|
|
if ((_this->self->accflags & java::lang::reflect::Modifier::STATIC))
|
|
|
|
|
real_args[offset++].ptr = _this->defining_class;
|
|
|
|
|
|
2001-12-12 21:58:41 +01:00
|
|
|
|
// In libgcj, the callee synchronizes.
|
|
|
|
|
jobject sync = NULL;
|
|
|
|
|
if ((_this->self->accflags & java::lang::reflect::Modifier::SYNCHRONIZED))
|
|
|
|
|
{
|
|
|
|
|
if ((_this->self->accflags & java::lang::reflect::Modifier::STATIC))
|
|
|
|
|
sync = _this->defining_class;
|
|
|
|
|
else
|
|
|
|
|
sync = (jobject) args[0].ptr;
|
|
|
|
|
_Jv_MonitorEnter (sync);
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-16 01:07:34 +01:00
|
|
|
|
// Copy over passed-in arguments.
|
|
|
|
|
memcpy (&real_args[offset], args, _this->args_raw_size);
|
|
|
|
|
|
2000-02-04 21:49:27 +01:00
|
|
|
|
// The actual call to the JNI function.
|
2000-08-02 05:25:13 +02:00
|
|
|
|
ffi_raw_call (&_this->jni_cif, (void (*)()) _this->function,
|
2000-02-16 01:07:34 +01:00
|
|
|
|
ret, real_args);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2001-12-12 21:58:41 +01:00
|
|
|
|
if (sync != NULL)
|
|
|
|
|
_Jv_MonitorExit (sync);
|
|
|
|
|
|
2000-03-07 01:10:52 +01:00
|
|
|
|
_Jv_JNI_PopSystemFrame (env);
|
2000-01-27 00:56:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-07 22:17:30 +01:00
|
|
|
|
#endif /* INTERPRETER */
|
|
|
|
|
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
//
|
|
|
|
|
// Invocation API.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
// An internal helper function.
|
|
|
|
|
static jint
|
2002-04-10 22:36:04 +02:00
|
|
|
|
_Jv_JNI_AttachCurrentThread (JavaVM *, jstring name, void **penv,
|
|
|
|
|
void *args, jboolean is_daemon)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
|
|
|
|
JavaVMAttachArgs *attach = reinterpret_cast<JavaVMAttachArgs *> (args);
|
|
|
|
|
java::lang::ThreadGroup *group = NULL;
|
|
|
|
|
|
|
|
|
|
if (attach)
|
|
|
|
|
{
|
|
|
|
|
// FIXME: do we really want to support 1.1?
|
2002-04-10 22:36:04 +02:00
|
|
|
|
if (attach->version != JNI_VERSION_1_4
|
|
|
|
|
&& attach->version != JNI_VERSION_1_2
|
2000-02-10 21:31:48 +01:00
|
|
|
|
&& attach->version != JNI_VERSION_1_1)
|
|
|
|
|
return JNI_EVERSION;
|
|
|
|
|
|
2001-06-16 00:09:10 +02:00
|
|
|
|
JvAssert (java::lang::ThreadGroup::class$.isInstance (attach->group));
|
2000-02-10 21:31:48 +01:00
|
|
|
|
group = reinterpret_cast<java::lang::ThreadGroup *> (attach->group);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Attaching an already-attached thread is a no-op.
|
2000-02-18 22:22:06 +01:00
|
|
|
|
if (_Jv_GetCurrentJNIEnv () != NULL)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
JNIEnv *env = (JNIEnv *) _Jv_MallocUnchecked (sizeof (JNIEnv));
|
2000-02-15 21:39:36 +01:00
|
|
|
|
if (env == NULL)
|
|
|
|
|
return JNI_ERR;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
env->p = &_Jv_JNIFunctions;
|
|
|
|
|
env->ex = NULL;
|
|
|
|
|
env->klass = NULL;
|
|
|
|
|
env->locals
|
|
|
|
|
= (_Jv_JNI_LocalFrame *) _Jv_MallocUnchecked (sizeof (_Jv_JNI_LocalFrame)
|
|
|
|
|
+ (FRAME_SIZE
|
|
|
|
|
* sizeof (jobject)));
|
2000-02-15 21:39:36 +01:00
|
|
|
|
if (env->locals == NULL)
|
|
|
|
|
{
|
|
|
|
|
_Jv_Free (env);
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
2002-02-08 15:18:24 +01:00
|
|
|
|
|
|
|
|
|
env->locals->marker = MARK_SYSTEM;
|
|
|
|
|
env->locals->size = FRAME_SIZE;
|
2002-02-13 18:34:52 +01:00
|
|
|
|
env->locals->next = NULL;
|
2002-02-08 15:18:24 +01:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < env->locals->size; ++i)
|
|
|
|
|
env->locals->vec[i] = NULL;
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
*penv = reinterpret_cast<void *> (env);
|
|
|
|
|
|
2000-02-18 22:22:06 +01:00
|
|
|
|
// This thread might already be a Java thread -- this function might
|
|
|
|
|
// have been called simply to set the new JNIEnv.
|
|
|
|
|
if (_Jv_ThreadCurrent () == NULL)
|
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
2002-04-10 22:36:04 +02:00
|
|
|
|
if (is_daemon)
|
|
|
|
|
_Jv_AttachCurrentThreadAsDaemon (name, group);
|
|
|
|
|
else
|
|
|
|
|
_Jv_AttachCurrentThread (name, group);
|
2000-03-02 21:25:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
2000-02-18 22:22:06 +01:00
|
|
|
|
}
|
2000-02-10 21:31:48 +01:00
|
|
|
|
_Jv_SetCurrentJNIEnv (env);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is the one actually used by JNI.
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_AttachCurrentThread (JavaVM *vm, void **penv, void *args)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
2002-04-10 22:36:04 +02:00
|
|
|
|
return _Jv_JNI_AttachCurrentThread (vm, NULL, penv, args, false);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_AttachCurrentThreadAsDaemon (JavaVM *vm, void **penv,
|
2004-08-03 19:38:30 +02:00
|
|
|
|
void *args)
|
2002-04-10 22:36:04 +02:00
|
|
|
|
{
|
|
|
|
|
return _Jv_JNI_AttachCurrentThread (vm, NULL, penv, args, true);
|
2000-02-10 21:31:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_DestroyJavaVM (JavaVM *vm)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
|
|
|
|
JvAssert (the_vm && vm == the_vm);
|
|
|
|
|
|
|
|
|
|
JNIEnv *env;
|
|
|
|
|
if (_Jv_ThreadCurrent () != NULL)
|
|
|
|
|
{
|
2000-03-02 21:25:20 +01:00
|
|
|
|
jstring main_name;
|
|
|
|
|
// This sucks.
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
main_name = JvNewStringLatin1 ("main");
|
|
|
|
|
}
|
|
|
|
|
catch (jthrowable t)
|
|
|
|
|
{
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-10 22:36:04 +02:00
|
|
|
|
jint r = _Jv_JNI_AttachCurrentThread (vm, main_name,
|
2000-02-10 21:31:48 +01:00
|
|
|
|
reinterpret_cast<void **> (&env),
|
2002-04-10 22:36:04 +02:00
|
|
|
|
NULL, false);
|
2000-02-10 21:31:48 +01:00
|
|
|
|
if (r < 0)
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
env = _Jv_GetCurrentJNIEnv ();
|
|
|
|
|
|
|
|
|
|
_Jv_ThreadWait ();
|
|
|
|
|
|
|
|
|
|
// Docs say that this always returns an error code.
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
jint JNICALL
|
|
|
|
|
_Jv_JNI_DetachCurrentThread (JavaVM *)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
2001-05-22 08:47:48 +02:00
|
|
|
|
jint code = _Jv_DetachCurrentThread ();
|
|
|
|
|
return code ? JNI_EDETACHED : 0;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_GetEnv (JavaVM *, void **penv, jint version)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
|
|
|
|
if (_Jv_ThreadCurrent () == NULL)
|
|
|
|
|
{
|
|
|
|
|
*penv = NULL;
|
|
|
|
|
return JNI_EDETACHED;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-02 17:34:17 +02:00
|
|
|
|
#ifdef ENABLE_JVMPI
|
|
|
|
|
// Handle JVMPI requests.
|
|
|
|
|
if (version == JVMPI_VERSION_1)
|
|
|
|
|
{
|
|
|
|
|
*penv = (void *) &_Jv_JVMPI_Interface;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
// FIXME: do we really want to support 1.1?
|
2002-04-10 22:36:04 +02:00
|
|
|
|
if (version != JNI_VERSION_1_4 && version != JNI_VERSION_1_2
|
|
|
|
|
&& version != JNI_VERSION_1_1)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
|
|
|
|
*penv = NULL;
|
|
|
|
|
return JNI_EVERSION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*penv = (void *) _Jv_GetCurrentJNIEnv ();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-12 06:56:44 +01:00
|
|
|
|
jint JNICALL
|
2000-02-10 21:31:48 +01:00
|
|
|
|
JNI_GetDefaultJavaVMInitArgs (void *args)
|
|
|
|
|
{
|
|
|
|
|
jint version = * (jint *) args;
|
2002-04-10 22:36:04 +02:00
|
|
|
|
// Here we only support 1.2 and 1.4.
|
|
|
|
|
if (version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
return JNI_EVERSION;
|
|
|
|
|
|
|
|
|
|
JavaVMInitArgs *ia = reinterpret_cast<JavaVMInitArgs *> (args);
|
2002-04-10 22:36:04 +02:00
|
|
|
|
ia->version = JNI_VERSION_1_4;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
ia->nOptions = 0;
|
|
|
|
|
ia->options = NULL;
|
|
|
|
|
ia->ignoreUnrecognized = true;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-12 06:56:44 +01:00
|
|
|
|
jint JNICALL
|
2000-02-10 21:31:48 +01:00
|
|
|
|
JNI_CreateJavaVM (JavaVM **vm, void **penv, void *args)
|
|
|
|
|
{
|
|
|
|
|
JvAssert (! the_vm);
|
2001-10-30 11:14:48 +01:00
|
|
|
|
|
|
|
|
|
_Jv_CreateJavaVM (NULL);
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
// FIXME: synchronize
|
|
|
|
|
JavaVM *nvm = (JavaVM *) _Jv_MallocUnchecked (sizeof (JavaVM));
|
|
|
|
|
if (nvm == NULL)
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
nvm->functions = &_Jv_JNI_InvokeFunctions;
|
|
|
|
|
|
|
|
|
|
// Parse the arguments.
|
|
|
|
|
if (args != NULL)
|
|
|
|
|
{
|
|
|
|
|
jint version = * (jint *) args;
|
2002-04-10 22:36:04 +02:00
|
|
|
|
// We only support 1.2 and 1.4.
|
|
|
|
|
if (version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
return JNI_EVERSION;
|
|
|
|
|
JavaVMInitArgs *ia = reinterpret_cast<JavaVMInitArgs *> (args);
|
|
|
|
|
for (int i = 0; i < ia->nOptions; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (! strcmp (ia->options[i].optionString, "vfprintf")
|
|
|
|
|
|| ! strcmp (ia->options[i].optionString, "exit")
|
|
|
|
|
|| ! strcmp (ia->options[i].optionString, "abort"))
|
|
|
|
|
{
|
|
|
|
|
// We are required to recognize these, but for now we
|
|
|
|
|
// don't handle them in any way. FIXME.
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (! strncmp (ia->options[i].optionString,
|
|
|
|
|
"-verbose", sizeof ("-verbose") - 1))
|
|
|
|
|
{
|
|
|
|
|
// We don't do anything with this option either. We
|
|
|
|
|
// might want to make sure the argument is valid, but we
|
|
|
|
|
// don't really care all that much for now.
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (! strncmp (ia->options[i].optionString, "-D", 2))
|
|
|
|
|
{
|
|
|
|
|
// FIXME.
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (ia->ignoreUnrecognized)
|
|
|
|
|
{
|
|
|
|
|
if (ia->options[i].optionString[0] == '_'
|
|
|
|
|
|| ! strncmp (ia->options[i].optionString, "-X", 2))
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
jint r =_Jv_JNI_AttachCurrentThread (nvm, penv, NULL);
|
|
|
|
|
if (r < 0)
|
|
|
|
|
return r;
|
|
|
|
|
|
|
|
|
|
the_vm = nvm;
|
|
|
|
|
*vm = the_vm;
|
2001-08-03 00:12:40 +02:00
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-12 06:56:44 +01:00
|
|
|
|
jint JNICALL
|
2000-03-14 22:59:54 +01:00
|
|
|
|
JNI_GetCreatedJavaVMs (JavaVM **vm_buffer, jsize buf_len, jsize *n_vms)
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
2000-03-14 22:59:54 +01:00
|
|
|
|
if (buf_len <= 0)
|
|
|
|
|
return JNI_ERR;
|
|
|
|
|
|
2000-02-10 21:31:48 +01:00
|
|
|
|
// We only support a single VM.
|
|
|
|
|
if (the_vm != NULL)
|
|
|
|
|
{
|
|
|
|
|
vm_buffer[0] = the_vm;
|
|
|
|
|
*n_vms = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*n_vms = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-18 22:22:06 +01:00
|
|
|
|
JavaVM *
|
|
|
|
|
_Jv_GetJavaVM ()
|
2000-02-10 21:31:48 +01:00
|
|
|
|
{
|
|
|
|
|
// FIXME: synchronize
|
|
|
|
|
if (! the_vm)
|
|
|
|
|
{
|
|
|
|
|
JavaVM *nvm = (JavaVM *) _Jv_MallocUnchecked (sizeof (JavaVM));
|
2000-02-18 22:22:06 +01:00
|
|
|
|
if (nvm != NULL)
|
|
|
|
|
nvm->functions = &_Jv_JNI_InvokeFunctions;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
the_vm = nvm;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-18 22:22:06 +01:00
|
|
|
|
// If this is a Java thread, we want to make sure it has an
|
|
|
|
|
// associated JNIEnv.
|
|
|
|
|
if (_Jv_ThreadCurrent () != NULL)
|
|
|
|
|
{
|
|
|
|
|
void *ignore;
|
|
|
|
|
_Jv_JNI_AttachCurrentThread (the_vm, &ignore, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return the_vm;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-30 06:52:11 +02:00
|
|
|
|
static jint JNICALL
|
|
|
|
|
_Jv_JNI_GetJavaVM (JNIEnv *, JavaVM **vm)
|
2000-02-18 22:22:06 +01:00
|
|
|
|
{
|
|
|
|
|
*vm = _Jv_GetJavaVM ();
|
|
|
|
|
return *vm == NULL ? JNI_ERR : JNI_OK;
|
2000-02-10 21:31:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
#define RESERVED NULL
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
|
|
struct JNINativeInterface _Jv_JNIFunctions =
|
|
|
|
|
{
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
RESERVED,
|
|
|
|
|
RESERVED,
|
|
|
|
|
RESERVED,
|
|
|
|
|
RESERVED,
|
2001-01-27 20:30:31 +01:00
|
|
|
|
_Jv_JNI_GetVersion, // GetVersion
|
|
|
|
|
_Jv_JNI_DefineClass, // DefineClass
|
|
|
|
|
_Jv_JNI_FindClass, // FindClass
|
|
|
|
|
_Jv_JNI_FromReflectedMethod, // FromReflectedMethod
|
|
|
|
|
_Jv_JNI_FromReflectedField, // FromReflectedField
|
|
|
|
|
_Jv_JNI_ToReflectedMethod, // ToReflectedMethod
|
|
|
|
|
_Jv_JNI_GetSuperclass, // GetSuperclass
|
|
|
|
|
_Jv_JNI_IsAssignableFrom, // IsAssignableFrom
|
|
|
|
|
_Jv_JNI_ToReflectedField, // ToReflectedField
|
|
|
|
|
_Jv_JNI_Throw, // Throw
|
|
|
|
|
_Jv_JNI_ThrowNew, // ThrowNew
|
|
|
|
|
_Jv_JNI_ExceptionOccurred, // ExceptionOccurred
|
|
|
|
|
_Jv_JNI_ExceptionDescribe, // ExceptionDescribe
|
|
|
|
|
_Jv_JNI_ExceptionClear, // ExceptionClear
|
|
|
|
|
_Jv_JNI_FatalError, // FatalError
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_PushLocalFrame, // PushLocalFrame
|
|
|
|
|
_Jv_JNI_PopLocalFrame, // PopLocalFrame
|
|
|
|
|
_Jv_JNI_NewGlobalRef, // NewGlobalRef
|
|
|
|
|
_Jv_JNI_DeleteGlobalRef, // DeleteGlobalRef
|
|
|
|
|
_Jv_JNI_DeleteLocalRef, // DeleteLocalRef
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_IsSameObject, // IsSameObject
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_NewLocalRef, // NewLocalRef
|
|
|
|
|
_Jv_JNI_EnsureLocalCapacity, // EnsureLocalCapacity
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_AllocObject, // AllocObject
|
|
|
|
|
_Jv_JNI_NewObject, // NewObject
|
|
|
|
|
_Jv_JNI_NewObjectV, // NewObjectV
|
|
|
|
|
_Jv_JNI_NewObjectA, // NewObjectA
|
|
|
|
|
_Jv_JNI_GetObjectClass, // GetObjectClass
|
|
|
|
|
_Jv_JNI_IsInstanceOf, // IsInstanceOf
|
|
|
|
|
_Jv_JNI_GetAnyMethodID<false>, // GetMethodID
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_CallMethod<jobject>, // CallObjectMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jobject>, // CallObjectMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jobject>, // CallObjectMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jboolean>, // CallBooleanMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jboolean>, // CallBooleanMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jboolean>, // CallBooleanMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jbyte>, // CallByteMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jbyte>, // CallByteMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jbyte>, // CallByteMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jchar>, // CallCharMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jchar>, // CallCharMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jchar>, // CallCharMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jshort>, // CallShortMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jshort>, // CallShortMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jshort>, // CallShortMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jint>, // CallIntMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jint>, // CallIntMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jint>, // CallIntMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jlong>, // CallLongMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jlong>, // CallLongMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jlong>, // CallLongMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jfloat>, // CallFloatMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jfloat>, // CallFloatMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jfloat>, // CallFloatMethodA
|
|
|
|
|
_Jv_JNI_CallMethod<jdouble>, // CallDoubleMethod
|
|
|
|
|
_Jv_JNI_CallMethodV<jdouble>, // CallDoubleMethodV
|
|
|
|
|
_Jv_JNI_CallMethodA<jdouble>, // CallDoubleMethodA
|
|
|
|
|
_Jv_JNI_CallVoidMethod, // CallVoidMethod
|
|
|
|
|
_Jv_JNI_CallVoidMethodV, // CallVoidMethodV
|
|
|
|
|
_Jv_JNI_CallVoidMethodA, // CallVoidMethodA
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
|
|
|
|
|
// Nonvirtual method invocation functions follow.
|
2001-01-27 20:30:31 +01:00
|
|
|
|
_Jv_JNI_CallAnyMethod<jobject, nonvirtual>, // CallNonvirtualObjectMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jobject, nonvirtual>, // CallNonvirtualObjectMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jobject, nonvirtual>, // CallNonvirtualObjectMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jboolean, nonvirtual>, // CallNonvirtualBooleanMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jboolean, nonvirtual>, // CallNonvirtualBooleanMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jboolean, nonvirtual>, // CallNonvirtualBooleanMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jbyte, nonvirtual>, // CallNonvirtualByteMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jbyte, nonvirtual>, // CallNonvirtualByteMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jbyte, nonvirtual>, // CallNonvirtualByteMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jchar, nonvirtual>, // CallNonvirtualCharMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jchar, nonvirtual>, // CallNonvirtualCharMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jchar, nonvirtual>, // CallNonvirtualCharMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jshort, nonvirtual>, // CallNonvirtualShortMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jshort, nonvirtual>, // CallNonvirtualShortMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jshort, nonvirtual>, // CallNonvirtualShortMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jint, nonvirtual>, // CallNonvirtualIntMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jint, nonvirtual>, // CallNonvirtualIntMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jint, nonvirtual>, // CallNonvirtualIntMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jlong, nonvirtual>, // CallNonvirtualLongMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jlong, nonvirtual>, // CallNonvirtualLongMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jlong, nonvirtual>, // CallNonvirtualLongMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jfloat, nonvirtual>, // CallNonvirtualFloatMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jfloat, nonvirtual>, // CallNonvirtualFloatMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jfloat, nonvirtual>, // CallNonvirtualFloatMethodA
|
|
|
|
|
_Jv_JNI_CallAnyMethod<jdouble, nonvirtual>, // CallNonvirtualDoubleMethod
|
|
|
|
|
_Jv_JNI_CallAnyMethodV<jdouble, nonvirtual>, // CallNonvirtualDoubleMethodV
|
|
|
|
|
_Jv_JNI_CallAnyMethodA<jdouble, nonvirtual>, // CallNonvirtualDoubleMethodA
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethod<nonvirtual>, // CallNonvirtualVoidMethod
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodV<nonvirtual>, // CallNonvirtualVoidMethodV
|
|
|
|
|
_Jv_JNI_CallAnyVoidMethodA<nonvirtual>, // CallNonvirtualVoidMethodA
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_GetAnyFieldID<false>, // GetFieldID
|
|
|
|
|
_Jv_JNI_GetField<jobject>, // GetObjectField
|
|
|
|
|
_Jv_JNI_GetField<jboolean>, // GetBooleanField
|
|
|
|
|
_Jv_JNI_GetField<jbyte>, // GetByteField
|
|
|
|
|
_Jv_JNI_GetField<jchar>, // GetCharField
|
|
|
|
|
_Jv_JNI_GetField<jshort>, // GetShortField
|
|
|
|
|
_Jv_JNI_GetField<jint>, // GetIntField
|
|
|
|
|
_Jv_JNI_GetField<jlong>, // GetLongField
|
|
|
|
|
_Jv_JNI_GetField<jfloat>, // GetFloatField
|
|
|
|
|
_Jv_JNI_GetField<jdouble>, // GetDoubleField
|
|
|
|
|
_Jv_JNI_SetField, // SetObjectField
|
|
|
|
|
_Jv_JNI_SetField, // SetBooleanField
|
|
|
|
|
_Jv_JNI_SetField, // SetByteField
|
|
|
|
|
_Jv_JNI_SetField, // SetCharField
|
|
|
|
|
_Jv_JNI_SetField, // SetShortField
|
|
|
|
|
_Jv_JNI_SetField, // SetIntField
|
|
|
|
|
_Jv_JNI_SetField, // SetLongField
|
|
|
|
|
_Jv_JNI_SetField, // SetFloatField
|
|
|
|
|
_Jv_JNI_SetField, // SetDoubleField
|
|
|
|
|
_Jv_JNI_GetAnyMethodID<true>, // GetStaticMethodID
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jobject>, // CallStaticObjectMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jobject>, // CallStaticObjectMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jobject>, // CallStaticObjectMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jboolean>, // CallStaticBooleanMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jboolean>, // CallStaticBooleanMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jboolean>, // CallStaticBooleanMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jbyte>, // CallStaticByteMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jbyte>, // CallStaticByteMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jbyte>, // CallStaticByteMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jchar>, // CallStaticCharMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jchar>, // CallStaticCharMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jchar>, // CallStaticCharMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jshort>, // CallStaticShortMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jshort>, // CallStaticShortMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jshort>, // CallStaticShortMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jint>, // CallStaticIntMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jint>, // CallStaticIntMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jint>, // CallStaticIntMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jlong>, // CallStaticLongMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jlong>, // CallStaticLongMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jlong>, // CallStaticLongMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jfloat>, // CallStaticFloatMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jfloat>, // CallStaticFloatMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jfloat>, // CallStaticFloatMethodA
|
|
|
|
|
_Jv_JNI_CallStaticMethod<jdouble>, // CallStaticDoubleMethod
|
|
|
|
|
_Jv_JNI_CallStaticMethodV<jdouble>, // CallStaticDoubleMethodV
|
|
|
|
|
_Jv_JNI_CallStaticMethodA<jdouble>, // CallStaticDoubleMethodA
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethod, // CallStaticVoidMethod
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethodV, // CallStaticVoidMethodV
|
|
|
|
|
_Jv_JNI_CallStaticVoidMethodA, // CallStaticVoidMethodA
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_GetAnyFieldID<true>, // GetStaticFieldID
|
|
|
|
|
_Jv_JNI_GetStaticField<jobject>, // GetStaticObjectField
|
|
|
|
|
_Jv_JNI_GetStaticField<jboolean>, // GetStaticBooleanField
|
|
|
|
|
_Jv_JNI_GetStaticField<jbyte>, // GetStaticByteField
|
|
|
|
|
_Jv_JNI_GetStaticField<jchar>, // GetStaticCharField
|
|
|
|
|
_Jv_JNI_GetStaticField<jshort>, // GetStaticShortField
|
|
|
|
|
_Jv_JNI_GetStaticField<jint>, // GetStaticIntField
|
|
|
|
|
_Jv_JNI_GetStaticField<jlong>, // GetStaticLongField
|
|
|
|
|
_Jv_JNI_GetStaticField<jfloat>, // GetStaticFloatField
|
|
|
|
|
_Jv_JNI_GetStaticField<jdouble>, // GetStaticDoubleField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticObjectField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticBooleanField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticByteField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticCharField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticShortField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticIntField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticLongField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticFloatField
|
|
|
|
|
_Jv_JNI_SetStaticField, // SetStaticDoubleField
|
|
|
|
|
_Jv_JNI_NewString, // NewString
|
|
|
|
|
_Jv_JNI_GetStringLength, // GetStringLength
|
|
|
|
|
_Jv_JNI_GetStringChars, // GetStringChars
|
|
|
|
|
_Jv_JNI_ReleaseStringChars, // ReleaseStringChars
|
|
|
|
|
_Jv_JNI_NewStringUTF, // NewStringUTF
|
|
|
|
|
_Jv_JNI_GetStringUTFLength, // GetStringUTFLength
|
2002-05-10 03:47:55 +02:00
|
|
|
|
_Jv_JNI_GetStringUTFChars, // GetStringUTFChars
|
2001-01-27 20:30:31 +01:00
|
|
|
|
_Jv_JNI_ReleaseStringUTFChars, // ReleaseStringUTFChars
|
|
|
|
|
_Jv_JNI_GetArrayLength, // GetArrayLength
|
|
|
|
|
_Jv_JNI_NewObjectArray, // NewObjectArray
|
|
|
|
|
_Jv_JNI_GetObjectArrayElement, // GetObjectArrayElement
|
|
|
|
|
_Jv_JNI_SetObjectArrayElement, // SetObjectArrayElement
|
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
2000-01-22 00:50:31 +01:00
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jboolean, JvPrimClass (boolean)>,
|
2001-01-27 20:30:31 +01:00
|
|
|
|
// NewBooleanArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jbyte, JvPrimClass (byte)>, // NewByteArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jchar, JvPrimClass (char)>, // NewCharArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jshort, JvPrimClass (short)>, // NewShortArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jint, JvPrimClass (int)>, // NewIntArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jlong, JvPrimClass (long)>, // NewLongArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jfloat, JvPrimClass (float)>, // NewFloatArray
|
|
|
|
|
_Jv_JNI_NewPrimitiveArray<jdouble, JvPrimClass (double)>, // NewDoubleArray
|
2003-06-12 17:39:17 +02:00
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jboolean, JvPrimClass (boolean)>,
|
|
|
|
|
// GetBooleanArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jbyte, JvPrimClass (byte)>,
|
|
|
|
|
// GetByteArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jchar, JvPrimClass (char)>,
|
|
|
|
|
// GetCharArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jshort, JvPrimClass (short)>,
|
|
|
|
|
// GetShortArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jint, JvPrimClass (int)>,
|
|
|
|
|
// GetIntArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jlong, JvPrimClass (long)>,
|
|
|
|
|
// GetLongArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jfloat, JvPrimClass (float)>,
|
|
|
|
|
// GetFloatArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayElements<jdouble, JvPrimClass (double)>,
|
|
|
|
|
// GetDoubleArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jboolean, JvPrimClass (boolean)>,
|
|
|
|
|
// ReleaseBooleanArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jbyte, JvPrimClass (byte)>,
|
|
|
|
|
// ReleaseByteArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jchar, JvPrimClass (char)>,
|
|
|
|
|
// ReleaseCharArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jshort, JvPrimClass (short)>,
|
|
|
|
|
// ReleaseShortArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jint, JvPrimClass (int)>,
|
|
|
|
|
// ReleaseIntArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jlong, JvPrimClass (long)>,
|
|
|
|
|
// ReleaseLongArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jfloat, JvPrimClass (float)>,
|
|
|
|
|
// ReleaseFloatArrayElements
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayElements<jdouble, JvPrimClass (double)>,
|
|
|
|
|
// ReleaseDoubleArrayElements
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jboolean, JvPrimClass (boolean)>,
|
|
|
|
|
// GetBooleanArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jbyte, JvPrimClass (byte)>,
|
|
|
|
|
// GetByteArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jchar, JvPrimClass (char)>,
|
|
|
|
|
// GetCharArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jshort, JvPrimClass (short)>,
|
|
|
|
|
// GetShortArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jint, JvPrimClass (int)>,
|
|
|
|
|
// GetIntArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jlong, JvPrimClass (long)>,
|
|
|
|
|
// GetLongArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jfloat, JvPrimClass (float)>,
|
|
|
|
|
// GetFloatArrayRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayRegion<jdouble, JvPrimClass (double)>,
|
|
|
|
|
// GetDoubleArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jboolean, JvPrimClass (boolean)>,
|
|
|
|
|
// SetBooleanArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jbyte, JvPrimClass (byte)>,
|
|
|
|
|
// SetByteArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jchar, JvPrimClass (char)>,
|
|
|
|
|
// SetCharArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jshort, JvPrimClass (short)>,
|
|
|
|
|
// SetShortArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jint, JvPrimClass (int)>,
|
|
|
|
|
// SetIntArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jlong, JvPrimClass (long)>,
|
|
|
|
|
// SetLongArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jfloat, JvPrimClass (float)>,
|
|
|
|
|
// SetFloatArrayRegion
|
|
|
|
|
_Jv_JNI_SetPrimitiveArrayRegion<jdouble, JvPrimClass (double)>,
|
|
|
|
|
// SetDoubleArrayRegion
|
2001-01-27 20:30:31 +01:00
|
|
|
|
_Jv_JNI_RegisterNatives, // RegisterNatives
|
|
|
|
|
_Jv_JNI_UnregisterNatives, // UnregisterNatives
|
|
|
|
|
_Jv_JNI_MonitorEnter, // MonitorEnter
|
|
|
|
|
_Jv_JNI_MonitorExit, // MonitorExit
|
|
|
|
|
_Jv_JNI_GetJavaVM, // GetJavaVM
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_GetStringRegion, // GetStringRegion
|
|
|
|
|
_Jv_JNI_GetStringUTFRegion, // GetStringUTFRegion
|
|
|
|
|
_Jv_JNI_GetPrimitiveArrayCritical, // GetPrimitiveArrayCritical
|
|
|
|
|
_Jv_JNI_ReleasePrimitiveArrayCritical, // ReleasePrimitiveArrayCritical
|
|
|
|
|
_Jv_JNI_GetStringCritical, // GetStringCritical
|
|
|
|
|
_Jv_JNI_ReleaseStringCritical, // ReleaseStringCritical
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2001-11-13 18:43:41 +01:00
|
|
|
|
_Jv_JNI_NewWeakGlobalRef, // NewWeakGlobalRef
|
|
|
|
|
_Jv_JNI_DeleteWeakGlobalRef, // DeleteWeakGlobalRef
|
2000-01-27 00:56:36 +01:00
|
|
|
|
|
2002-04-10 22:36:04 +02:00
|
|
|
|
_Jv_JNI_ExceptionCheck, // ExceptionCheck
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_NewDirectByteBuffer, // NewDirectByteBuffer
|
|
|
|
|
_Jv_JNI_GetDirectBufferAddress, // GetDirectBufferAddress
|
|
|
|
|
_Jv_JNI_GetDirectBufferCapacity // GetDirectBufferCapacity
|
1999-04-07 16:42:40 +02:00
|
|
|
|
};
|
2000-02-10 21:31:48 +01:00
|
|
|
|
|
|
|
|
|
struct JNIInvokeInterface _Jv_JNI_InvokeFunctions =
|
|
|
|
|
{
|
|
|
|
|
RESERVED,
|
|
|
|
|
RESERVED,
|
|
|
|
|
RESERVED,
|
|
|
|
|
|
|
|
|
|
_Jv_JNI_DestroyJavaVM,
|
|
|
|
|
_Jv_JNI_AttachCurrentThread,
|
|
|
|
|
_Jv_JNI_DetachCurrentThread,
|
2002-04-10 22:36:04 +02:00
|
|
|
|
_Jv_JNI_GetEnv,
|
|
|
|
|
_Jv_JNI_AttachCurrentThreadAsDaemon
|
2000-02-10 21:31:48 +01:00
|
|
|
|
};
|