* doc/gcov.texi: Use more logical markup.
[official-gcc.git] / libjava / jni.cc
blob625d239c5bc90d51e38ff30edd1f23b9659bdd12
1 // jni.cc - JNI implementation, including the jump table.
3 /* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 #include <config.h>
13 #include <stddef.h>
14 #include <string.h>
16 // Define this before including jni.h.
17 #define __GCJ_JNI_IMPL__
19 #include <gcj/cni.h>
20 #include <jvm.h>
21 #include <java-assert.h>
22 #include <jni.h>
23 #ifdef ENABLE_JVMPI
24 #include <jvmpi.h>
25 #endif
27 #include <java/lang/Class.h>
28 #include <java/lang/ClassLoader.h>
29 #include <java/lang/Throwable.h>
30 #include <java/lang/ArrayIndexOutOfBoundsException.h>
31 #include <java/lang/StringIndexOutOfBoundsException.h>
32 #include <java/lang/AbstractMethodError.h>
33 #include <java/lang/InstantiationException.h>
34 #include <java/lang/NoSuchFieldError.h>
35 #include <java/lang/NoSuchMethodError.h>
36 #include <java/lang/reflect/Constructor.h>
37 #include <java/lang/reflect/Method.h>
38 #include <java/lang/reflect/Modifier.h>
39 #include <java/lang/OutOfMemoryError.h>
40 #include <java/util/Hashtable.h>
41 #include <java/lang/Integer.h>
42 #include <java/lang/ThreadGroup.h>
43 #include <java/lang/Thread.h>
45 #include <gcj/method.h>
46 #include <gcj/field.h>
48 #include <java-interp.h>
49 #include <java-threads.h>
51 // FIXME: remove these defines.
52 #define ClassClass java::lang::Class::class$
53 #define ObjectClass java::lang::Object::class$
54 #define ThrowableClass java::lang::Throwable::class$
55 #define MethodClass java::lang::reflect::Method::class$
56 #define ThreadGroupClass java::lang::ThreadGroup::class$
58 // This enum is used to select different template instantiations in
59 // the invocation code.
60 enum invocation_type
62 normal,
63 nonvirtual,
64 static_type,
65 constructor
68 // Forward declarations.
69 extern struct JNINativeInterface _Jv_JNIFunctions;
70 extern struct JNIInvokeInterface _Jv_JNI_InvokeFunctions;
72 // Number of slots in the default frame. The VM must allow at least
73 // 16.
74 #define FRAME_SIZE 32
76 // Mark value indicating this is an overflow frame.
77 #define MARK_NONE 0
78 // Mark value indicating this is a user frame.
79 #define MARK_USER 1
80 // Mark value indicating this is a system frame.
81 #define MARK_SYSTEM 2
83 // This structure is used to keep track of local references.
84 struct _Jv_JNI_LocalFrame
86 // This is true if this frame object represents a pushed frame (eg
87 // from PushLocalFrame).
88 int marker : 2;
90 // Number of elements in frame.
91 int size : 30;
93 // Next frame in chain.
94 _Jv_JNI_LocalFrame *next;
96 // The elements. These are allocated using the C "struct hack".
97 jobject vec[0];
100 // This holds a reference count for all local and global references.
101 static java::util::Hashtable *ref_table;
103 // The only VM.
104 static JavaVM *the_vm;
106 #ifdef ENABLE_JVMPI
107 // The only JVMPI interface description.
108 static JVMPI_Interface _Jv_JVMPI_Interface;
110 static jint
111 jvmpiEnableEvent (jint event_type, void *)
113 switch (event_type)
115 case JVMPI_EVENT_OBJECT_ALLOC:
116 _Jv_JVMPI_Notify_OBJECT_ALLOC = _Jv_JVMPI_Interface.NotifyEvent;
117 break;
119 case JVMPI_EVENT_THREAD_START:
120 _Jv_JVMPI_Notify_THREAD_START = _Jv_JVMPI_Interface.NotifyEvent;
121 break;
123 case JVMPI_EVENT_THREAD_END:
124 _Jv_JVMPI_Notify_THREAD_END = _Jv_JVMPI_Interface.NotifyEvent;
125 break;
127 default:
128 return JVMPI_NOT_AVAILABLE;
131 return JVMPI_SUCCESS;
134 static jint
135 jvmpiDisableEvent (jint event_type, void *)
137 switch (event_type)
139 case JVMPI_EVENT_OBJECT_ALLOC:
140 _Jv_JVMPI_Notify_OBJECT_ALLOC = NULL;
141 break;
143 default:
144 return JVMPI_NOT_AVAILABLE;
147 return JVMPI_SUCCESS;
149 #endif
153 void
154 _Jv_JNI_Init (void)
156 ref_table = new java::util::Hashtable;
158 #ifdef ENABLE_JVMPI
159 _Jv_JVMPI_Interface.version = 1;
160 _Jv_JVMPI_Interface.EnableEvent = &jvmpiEnableEvent;
161 _Jv_JVMPI_Interface.DisableEvent = &jvmpiDisableEvent;
162 _Jv_JVMPI_Interface.EnableGC = &_Jv_EnableGC;
163 _Jv_JVMPI_Interface.DisableGC = &_Jv_DisableGC;
164 _Jv_JVMPI_Interface.RunGC = &_Jv_RunGC;
165 #endif
168 // Tell the GC that a certain pointer is live.
169 static void
170 mark_for_gc (jobject obj)
172 JvSynchronize sync (ref_table);
174 using namespace java::lang;
175 Integer *refcount = (Integer *) ref_table->get (obj);
176 jint val = (refcount == NULL) ? 0 : refcount->intValue ();
177 // FIXME: what about out of memory error?
178 ref_table->put (obj, new Integer (val + 1));
181 // Unmark a pointer.
182 static void
183 unmark_for_gc (jobject obj)
185 JvSynchronize sync (ref_table);
187 using namespace java::lang;
188 Integer *refcount = (Integer *) ref_table->get (obj);
189 JvAssert (refcount);
190 jint val = refcount->intValue () - 1;
191 if (val == 0)
192 ref_table->remove (obj);
193 else
194 // FIXME: what about out of memory error?
195 ref_table->put (obj, new Integer (val));
200 static jobject
201 _Jv_JNI_NewGlobalRef (JNIEnv *, jobject obj)
203 mark_for_gc (obj);
204 return obj;
207 static void
208 _Jv_JNI_DeleteGlobalRef (JNIEnv *, jobject obj)
210 unmark_for_gc (obj);
213 static void
214 _Jv_JNI_DeleteLocalRef (JNIEnv *env, jobject obj)
216 _Jv_JNI_LocalFrame *frame;
218 for (frame = env->locals; frame != NULL; frame = frame->next)
220 for (int i = 0; i < FRAME_SIZE; ++i)
222 if (frame->vec[i] == obj)
224 frame->vec[i] = NULL;
225 unmark_for_gc (obj);
226 return;
230 // Don't go past a marked frame.
231 JvAssert (frame->marker == MARK_NONE);
234 JvAssert (0);
237 static jint
238 _Jv_JNI_EnsureLocalCapacity (JNIEnv *env, jint size)
240 // It is easier to just always allocate a new frame of the requested
241 // size. This isn't the most efficient thing, but for now we don't
242 // care. Note that _Jv_JNI_PushLocalFrame relies on this right now.
244 _Jv_JNI_LocalFrame *frame;
247 frame = (_Jv_JNI_LocalFrame *) _Jv_Malloc (sizeof (_Jv_JNI_LocalFrame)
248 + size * sizeof (jobject));
250 catch (jthrowable t)
252 env->ex = t;
253 return JNI_ERR;
256 frame->marker = MARK_NONE;
257 frame->size = size;
258 memset (&frame->vec[0], 0, size * sizeof (jobject));
259 frame->next = env->locals;
260 env->locals = frame;
262 return 0;
265 static jint
266 _Jv_JNI_PushLocalFrame (JNIEnv *env, jint size)
268 jint r = _Jv_JNI_EnsureLocalCapacity (env, size);
269 if (r < 0)
270 return r;
272 // The new frame is on top.
273 env->locals->marker = MARK_USER;
275 return 0;
278 static jobject
279 _Jv_JNI_NewLocalRef (JNIEnv *env, jobject obj)
281 // Try to find an open slot somewhere in the topmost frame.
282 _Jv_JNI_LocalFrame *frame = env->locals;
283 bool done = false, set = false;
284 while (frame != NULL && ! done)
286 for (int i = 0; i < frame->size; ++i)
287 if (frame->vec[i] == NULL)
289 set = true;
290 done = true;
291 frame->vec[i] = obj;
292 break;
296 if (! set)
298 // No slots, so we allocate a new frame. According to the spec
299 // we could just die here. FIXME: return value.
300 _Jv_JNI_EnsureLocalCapacity (env, 16);
301 // We know the first element of the new frame will be ok.
302 env->locals->vec[0] = obj;
305 mark_for_gc (obj);
306 return obj;
309 static jobject
310 _Jv_JNI_PopLocalFrame (JNIEnv *env, jobject result, int stop)
312 _Jv_JNI_LocalFrame *rf = env->locals;
314 bool done = false;
315 while (rf != NULL && ! done)
317 for (int i = 0; i < rf->size; ++i)
318 if (rf->vec[i] != NULL)
319 unmark_for_gc (rf->vec[i]);
321 // If the frame we just freed is the marker frame, we are done.
322 done = (rf->marker == stop);
324 _Jv_JNI_LocalFrame *n = rf->next;
325 // When N==NULL, we've reached the stack-allocated frame, and we
326 // must not free it. However, we must be sure to clear all its
327 // elements, since we might conceivably reuse it.
328 if (n == NULL)
330 memset (&rf->vec[0], 0, rf->size * sizeof (jobject));
331 break;
334 _Jv_Free (rf);
335 rf = n;
338 // Update the local frame information.
339 env->locals = rf;
341 return result == NULL ? NULL : _Jv_JNI_NewLocalRef (env, result);
344 static jobject
345 _Jv_JNI_PopLocalFrame (JNIEnv *env, jobject result)
347 return _Jv_JNI_PopLocalFrame (env, result, MARK_USER);
350 // Pop a `system' frame from the stack. This is `extern "C"' as it is
351 // used by the compiler.
352 extern "C" void
353 _Jv_JNI_PopSystemFrame (JNIEnv *env)
355 _Jv_JNI_PopLocalFrame (env, NULL, MARK_SYSTEM);
357 if (env->ex)
359 jthrowable t = env->ex;
360 env->ex = NULL;
361 throw t;
365 // This function is used from other template functions. It wraps the
366 // return value appropriately; we specialize it so that object returns
367 // are turned into local references.
368 template<typename T>
369 static T
370 wrap_value (JNIEnv *, T value)
372 return value;
375 // This specialization is used for jobject, jclass, jstring, jarray,
376 // etc.
377 template<typename T>
378 static T *
379 wrap_value (JNIEnv *env, T *value)
381 return (value == NULL
382 ? value
383 : (T *) _Jv_JNI_NewLocalRef (env, (jobject) value));
388 static jint
389 _Jv_JNI_GetVersion (JNIEnv *)
391 return JNI_VERSION_1_2;
394 static jclass
395 _Jv_JNI_DefineClass (JNIEnv *env, jobject loader,
396 const jbyte *buf, jsize bufLen)
400 jbyteArray bytes = JvNewByteArray (bufLen);
402 jbyte *elts = elements (bytes);
403 memcpy (elts, buf, bufLen * sizeof (jbyte));
405 java::lang::ClassLoader *l
406 = reinterpret_cast<java::lang::ClassLoader *> (loader);
408 jclass result = l->defineClass (bytes, 0, bufLen);
409 return (jclass) wrap_value (env, result);
411 catch (jthrowable t)
413 env->ex = t;
414 return NULL;
418 static jclass
419 _Jv_JNI_FindClass (JNIEnv *env, const char *name)
421 // FIXME: assume that NAME isn't too long.
422 int len = strlen (name);
423 char s[len + 1];
424 for (int i = 0; i <= len; ++i)
425 s[i] = (name[i] == '/') ? '.' : name[i];
427 jclass r = NULL;
430 // This might throw an out of memory exception.
431 jstring n = JvNewStringUTF (s);
433 java::lang::ClassLoader *loader = NULL;
434 if (env->klass != NULL)
435 loader = env->klass->getClassLoader ();
437 if (loader == NULL)
439 // FIXME: should use getBaseClassLoader, but we don't have that
440 // yet.
441 loader = java::lang::ClassLoader::getSystemClassLoader ();
444 r = loader->loadClass (n);
446 catch (jthrowable t)
448 env->ex = t;
451 return (jclass) wrap_value (env, r);
454 static jclass
455 _Jv_JNI_GetSuperclass (JNIEnv *env, jclass clazz)
457 return (jclass) wrap_value (env, clazz->getSuperclass ());
460 static jboolean
461 _Jv_JNI_IsAssignableFrom(JNIEnv *, jclass clazz1, jclass clazz2)
463 return clazz1->isAssignableFrom (clazz2);
466 static jint
467 _Jv_JNI_Throw (JNIEnv *env, jthrowable obj)
469 // We check in case the user did some funky cast.
470 JvAssert (obj != NULL && (&ThrowableClass)->isInstance (obj));
471 env->ex = obj;
472 return 0;
475 static jint
476 _Jv_JNI_ThrowNew (JNIEnv *env, jclass clazz, const char *message)
478 using namespace java::lang::reflect;
480 JvAssert ((&ThrowableClass)->isAssignableFrom (clazz));
482 int r = JNI_OK;
485 JArray<jclass> *argtypes
486 = (JArray<jclass> *) JvNewObjectArray (1, &ClassClass, NULL);
488 jclass *elts = elements (argtypes);
489 elts[0] = &StringClass;
491 Constructor *cons = clazz->getConstructor (argtypes);
493 jobjectArray values = JvNewObjectArray (1, &StringClass, NULL);
494 jobject *velts = elements (values);
495 velts[0] = JvNewStringUTF (message);
497 jobject obj = cons->newInstance (values);
499 env->ex = reinterpret_cast<jthrowable> (obj);
501 catch (jthrowable t)
503 env->ex = t;
504 r = JNI_ERR;
507 return r;
510 static jthrowable
511 _Jv_JNI_ExceptionOccurred (JNIEnv *env)
513 return (jthrowable) wrap_value (env, env->ex);
516 static void
517 _Jv_JNI_ExceptionDescribe (JNIEnv *env)
519 if (env->ex != NULL)
520 env->ex->printStackTrace();
523 static void
524 _Jv_JNI_ExceptionClear (JNIEnv *env)
526 env->ex = NULL;
529 static jboolean
530 _Jv_JNI_ExceptionCheck (JNIEnv *env)
532 return env->ex != NULL;
535 static void
536 _Jv_JNI_FatalError (JNIEnv *, const char *message)
538 JvFail (message);
543 static jboolean
544 _Jv_JNI_IsSameObject (JNIEnv *, jobject obj1, jobject obj2)
546 return obj1 == obj2;
549 static jobject
550 _Jv_JNI_AllocObject (JNIEnv *env, jclass clazz)
552 jobject obj = NULL;
553 using namespace java::lang::reflect;
557 JvAssert (clazz && ! clazz->isArray ());
558 if (clazz->isInterface() || Modifier::isAbstract(clazz->getModifiers()))
559 env->ex = new java::lang::InstantiationException ();
560 else
562 // FIXME: will this work for String?
563 obj = JvAllocObject (clazz);
566 catch (jthrowable t)
568 env->ex = t;
571 return wrap_value (env, obj);
574 static jclass
575 _Jv_JNI_GetObjectClass (JNIEnv *env, jobject obj)
577 JvAssert (obj);
578 return (jclass) wrap_value (env, obj->getClass());
581 static jboolean
582 _Jv_JNI_IsInstanceOf (JNIEnv *, jobject obj, jclass clazz)
584 return clazz->isInstance(obj);
590 // This section concerns method invocation.
593 template<jboolean is_static>
594 static jmethodID
595 _Jv_JNI_GetAnyMethodID (JNIEnv *env, jclass clazz,
596 const char *name, const char *sig)
600 _Jv_InitClass (clazz);
602 _Jv_Utf8Const *name_u = _Jv_makeUtf8Const ((char *) name, -1);
604 // FIXME: assume that SIG isn't too long.
605 int len = strlen (sig);
606 char s[len + 1];
607 for (int i = 0; i <= len; ++i)
608 s[i] = (sig[i] == '/') ? '.' : sig[i];
609 _Jv_Utf8Const *sig_u = _Jv_makeUtf8Const ((char *) s, -1);
611 JvAssert (! clazz->isPrimitive());
613 using namespace java::lang::reflect;
615 while (clazz != NULL)
617 jint count = JvNumMethods (clazz);
618 jmethodID meth = JvGetFirstMethod (clazz);
620 for (jint i = 0; i < count; ++i)
622 if (((is_static && Modifier::isStatic (meth->accflags))
623 || (! is_static && ! Modifier::isStatic (meth->accflags)))
624 && _Jv_equalUtf8Consts (meth->name, name_u)
625 && _Jv_equalUtf8Consts (meth->signature, sig_u))
626 return meth;
628 meth = meth->getNextMethod();
631 clazz = clazz->getSuperclass ();
634 env->ex = new java::lang::NoSuchMethodError ();
636 catch (jthrowable t)
638 env->ex = t;
641 return NULL;
644 // This is a helper function which turns a va_list into an array of
645 // `jvalue's. It needs signature information in order to do its work.
646 // The array of values must already be allocated.
647 static void
648 array_from_valist (jvalue *values, JArray<jclass> *arg_types, va_list vargs)
650 jclass *arg_elts = elements (arg_types);
651 for (int i = 0; i < arg_types->length; ++i)
653 if (arg_elts[i] == JvPrimClass (byte))
654 values[i].b = va_arg (vargs, jbyte);
655 else if (arg_elts[i] == JvPrimClass (short))
656 values[i].s = va_arg (vargs, jshort);
657 else if (arg_elts[i] == JvPrimClass (int))
658 values[i].i = va_arg (vargs, jint);
659 else if (arg_elts[i] == JvPrimClass (long))
660 values[i].j = va_arg (vargs, jlong);
661 else if (arg_elts[i] == JvPrimClass (float))
662 values[i].f = va_arg (vargs, jfloat);
663 else if (arg_elts[i] == JvPrimClass (double))
664 values[i].d = va_arg (vargs, jdouble);
665 else if (arg_elts[i] == JvPrimClass (boolean))
666 values[i].z = va_arg (vargs, jboolean);
667 else if (arg_elts[i] == JvPrimClass (char))
668 values[i].c = va_arg (vargs, jchar);
669 else
671 // An object.
672 values[i].l = va_arg (vargs, jobject);
677 // This can call any sort of method: virtual, "nonvirtual", static, or
678 // constructor.
679 template<typename T, invocation_type style>
680 static T
681 _Jv_JNI_CallAnyMethodV (JNIEnv *env, jobject obj, jclass klass,
682 jmethodID id, va_list vargs)
684 if (style == normal)
685 id = _Jv_LookupDeclaredMethod (obj->getClass (), id->name, id->signature);
687 jclass decl_class = klass ? klass : obj->getClass ();
688 JvAssert (decl_class != NULL);
690 jclass return_type;
691 JArray<jclass> *arg_types;
695 _Jv_GetTypesFromSignature (id, decl_class,
696 &arg_types, &return_type);
698 jvalue args[arg_types->length];
699 array_from_valist (args, arg_types, vargs);
701 // For constructors we need to pass the Class we are instantiating.
702 if (style == constructor)
703 return_type = klass;
705 jvalue result;
706 jthrowable ex = _Jv_CallAnyMethodA (obj, return_type, id,
707 style == constructor,
708 arg_types, args, &result);
710 if (ex != NULL)
711 env->ex = ex;
713 // We cheat a little here. FIXME.
714 return wrap_value (env, * (T *) &result);
716 catch (jthrowable t)
718 env->ex = t;
721 return wrap_value (env, (T) 0);
724 template<typename T, invocation_type style>
725 static T
726 _Jv_JNI_CallAnyMethod (JNIEnv *env, jobject obj, jclass klass,
727 jmethodID method, ...)
729 va_list args;
730 T result;
732 va_start (args, method);
733 result = _Jv_JNI_CallAnyMethodV<T, style> (env, obj, klass, method, args);
734 va_end (args);
736 return result;
739 template<typename T, invocation_type style>
740 static T
741 _Jv_JNI_CallAnyMethodA (JNIEnv *env, jobject obj, jclass klass,
742 jmethodID id, jvalue *args)
744 if (style == normal)
745 id = _Jv_LookupDeclaredMethod (obj->getClass (), id->name, id->signature);
747 jclass decl_class = klass ? klass : obj->getClass ();
748 JvAssert (decl_class != NULL);
750 jclass return_type;
751 JArray<jclass> *arg_types;
754 _Jv_GetTypesFromSignature (id, decl_class,
755 &arg_types, &return_type);
757 // For constructors we need to pass the Class we are instantiating.
758 if (style == constructor)
759 return_type = klass;
761 jvalue result;
762 jthrowable ex = _Jv_CallAnyMethodA (obj, return_type, id,
763 style == constructor,
764 arg_types, args, &result);
766 if (ex != NULL)
767 env->ex = ex;
769 // We cheat a little here. FIXME.
770 return wrap_value (env, * (T *) &result);
772 catch (jthrowable t)
774 env->ex = t;
777 return wrap_value (env, (T) 0);
780 template<invocation_type style>
781 static void
782 _Jv_JNI_CallAnyVoidMethodV (JNIEnv *env, jobject obj, jclass klass,
783 jmethodID id, va_list vargs)
785 if (style == normal)
786 id = _Jv_LookupDeclaredMethod (obj->getClass (), id->name, id->signature);
788 jclass decl_class = klass ? klass : obj->getClass ();
789 JvAssert (decl_class != NULL);
791 jclass return_type;
792 JArray<jclass> *arg_types;
795 _Jv_GetTypesFromSignature (id, decl_class,
796 &arg_types, &return_type);
798 jvalue args[arg_types->length];
799 array_from_valist (args, arg_types, vargs);
801 // For constructors we need to pass the Class we are instantiating.
802 if (style == constructor)
803 return_type = klass;
805 jthrowable ex = _Jv_CallAnyMethodA (obj, return_type, id,
806 style == constructor,
807 arg_types, args, NULL);
809 if (ex != NULL)
810 env->ex = ex;
812 catch (jthrowable t)
814 env->ex = t;
818 template<invocation_type style>
819 static void
820 _Jv_JNI_CallAnyVoidMethod (JNIEnv *env, jobject obj, jclass klass,
821 jmethodID method, ...)
823 va_list args;
825 va_start (args, method);
826 _Jv_JNI_CallAnyVoidMethodV<style> (env, obj, klass, method, args);
827 va_end (args);
830 template<invocation_type style>
831 static void
832 _Jv_JNI_CallAnyVoidMethodA (JNIEnv *env, jobject obj, jclass klass,
833 jmethodID id, jvalue *args)
835 if (style == normal)
836 id = _Jv_LookupDeclaredMethod (obj->getClass (), id->name, id->signature);
838 jclass decl_class = klass ? klass : obj->getClass ();
839 JvAssert (decl_class != NULL);
841 jclass return_type;
842 JArray<jclass> *arg_types;
845 _Jv_GetTypesFromSignature (id, decl_class,
846 &arg_types, &return_type);
848 jthrowable ex = _Jv_CallAnyMethodA (obj, return_type, id,
849 style == constructor,
850 arg_types, args, NULL);
852 if (ex != NULL)
853 env->ex = ex;
855 catch (jthrowable t)
857 env->ex = t;
861 // Functions with this signature are used to implement functions in
862 // the CallMethod family.
863 template<typename T>
864 static T
865 _Jv_JNI_CallMethodV (JNIEnv *env, jobject obj, jmethodID id, va_list args)
867 return _Jv_JNI_CallAnyMethodV<T, normal> (env, obj, NULL, id, args);
870 // Functions with this signature are used to implement functions in
871 // the CallMethod family.
872 template<typename T>
873 static T
874 _Jv_JNI_CallMethod (JNIEnv *env, jobject obj, jmethodID id, ...)
876 va_list args;
877 T result;
879 va_start (args, id);
880 result = _Jv_JNI_CallAnyMethodV<T, normal> (env, obj, NULL, id, args);
881 va_end (args);
883 return result;
886 // Functions with this signature are used to implement functions in
887 // the CallMethod family.
888 template<typename T>
889 static T
890 _Jv_JNI_CallMethodA (JNIEnv *env, jobject obj, jmethodID id, jvalue *args)
892 return _Jv_JNI_CallAnyMethodA<T, normal> (env, obj, NULL, id, args);
895 static void
896 _Jv_JNI_CallVoidMethodV (JNIEnv *env, jobject obj, jmethodID id, va_list args)
898 _Jv_JNI_CallAnyVoidMethodV<normal> (env, obj, NULL, id, args);
901 static void
902 _Jv_JNI_CallVoidMethod (JNIEnv *env, jobject obj, jmethodID id, ...)
904 va_list args;
906 va_start (args, id);
907 _Jv_JNI_CallAnyVoidMethodV<normal> (env, obj, NULL, id, args);
908 va_end (args);
911 static void
912 _Jv_JNI_CallVoidMethodA (JNIEnv *env, jobject obj, jmethodID id, jvalue *args)
914 _Jv_JNI_CallAnyVoidMethodA<normal> (env, obj, NULL, id, args);
917 // Functions with this signature are used to implement functions in
918 // the CallStaticMethod family.
919 template<typename T>
920 static T
921 _Jv_JNI_CallStaticMethodV (JNIEnv *env, jclass klass,
922 jmethodID id, va_list args)
924 JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
925 JvAssert ((&ClassClass)->isInstance (klass));
927 return _Jv_JNI_CallAnyMethodV<T, static_type> (env, NULL, klass, id, args);
930 // Functions with this signature are used to implement functions in
931 // the CallStaticMethod family.
932 template<typename T>
933 static T
934 _Jv_JNI_CallStaticMethod (JNIEnv *env, jclass klass, jmethodID id, ...)
936 va_list args;
937 T result;
939 JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
940 JvAssert ((&ClassClass)->isInstance (klass));
942 va_start (args, id);
943 result = _Jv_JNI_CallAnyMethodV<T, static_type> (env, NULL, klass,
944 id, args);
945 va_end (args);
947 return result;
950 // Functions with this signature are used to implement functions in
951 // the CallStaticMethod family.
952 template<typename T>
953 static T
954 _Jv_JNI_CallStaticMethodA (JNIEnv *env, jclass klass, jmethodID id,
955 jvalue *args)
957 JvAssert (((id->accflags) & java::lang::reflect::Modifier::STATIC));
958 JvAssert ((&ClassClass)->isInstance (klass));
960 return _Jv_JNI_CallAnyMethodA<T, static_type> (env, NULL, klass, id, args);
963 static void
964 _Jv_JNI_CallStaticVoidMethodV (JNIEnv *env, jclass klass, jmethodID id,
965 va_list args)
967 _Jv_JNI_CallAnyVoidMethodV<static_type> (env, NULL, klass, id, args);
970 static void
971 _Jv_JNI_CallStaticVoidMethod (JNIEnv *env, jclass klass, jmethodID id, ...)
973 va_list args;
975 va_start (args, id);
976 _Jv_JNI_CallAnyVoidMethodV<static_type> (env, NULL, klass, id, args);
977 va_end (args);
980 static void
981 _Jv_JNI_CallStaticVoidMethodA (JNIEnv *env, jclass klass, jmethodID id,
982 jvalue *args)
984 _Jv_JNI_CallAnyVoidMethodA<static_type> (env, NULL, klass, id, args);
987 static jobject
988 _Jv_JNI_NewObjectV (JNIEnv *env, jclass klass,
989 jmethodID id, va_list args)
991 JvAssert (klass && ! klass->isArray ());
992 JvAssert (! strcmp (id->name->data, "<init>")
993 && id->signature->length > 2
994 && id->signature->data[0] == '('
995 && ! strcmp (&id->signature->data[id->signature->length - 2],
996 ")V"));
998 return _Jv_JNI_CallAnyMethodV<jobject, constructor> (env, NULL, klass,
999 id, args);
1002 static jobject
1003 _Jv_JNI_NewObject (JNIEnv *env, jclass klass, jmethodID id, ...)
1005 JvAssert (klass && ! klass->isArray ());
1006 JvAssert (! strcmp (id->name->data, "<init>")
1007 && id->signature->length > 2
1008 && id->signature->data[0] == '('
1009 && ! strcmp (&id->signature->data[id->signature->length - 2],
1010 ")V"));
1012 va_list args;
1013 jobject result;
1015 va_start (args, id);
1016 result = _Jv_JNI_CallAnyMethodV<jobject, constructor> (env, NULL, klass,
1017 id, args);
1018 va_end (args);
1020 return result;
1023 static jobject
1024 _Jv_JNI_NewObjectA (JNIEnv *env, jclass klass, jmethodID id,
1025 jvalue *args)
1027 JvAssert (klass && ! klass->isArray ());
1028 JvAssert (! strcmp (id->name->data, "<init>")
1029 && id->signature->length > 2
1030 && id->signature->data[0] == '('
1031 && ! strcmp (&id->signature->data[id->signature->length - 2],
1032 ")V"));
1034 return _Jv_JNI_CallAnyMethodA<jobject, constructor> (env, NULL, klass,
1035 id, args);
1040 template<typename T>
1041 static T
1042 _Jv_JNI_GetField (JNIEnv *env, jobject obj, jfieldID field)
1044 JvAssert (obj);
1045 T *ptr = (T *) ((char *) obj + field->getOffset ());
1046 return wrap_value (env, *ptr);
1049 template<typename T>
1050 static void
1051 _Jv_JNI_SetField (JNIEnv *, jobject obj, jfieldID field, T value)
1053 JvAssert (obj);
1054 T *ptr = (T *) ((char *) obj + field->getOffset ());
1055 *ptr = value;
1058 template<jboolean is_static>
1059 static jfieldID
1060 _Jv_JNI_GetAnyFieldID (JNIEnv *env, jclass clazz,
1061 const char *name, const char *sig)
1065 _Jv_InitClass (clazz);
1067 _Jv_Utf8Const *a_name = _Jv_makeUtf8Const ((char *) name, -1);
1069 // FIXME: assume that SIG isn't too long.
1070 int len = strlen (sig);
1071 char s[len + 1];
1072 for (int i = 0; i <= len; ++i)
1073 s[i] = (sig[i] == '/') ? '.' : sig[i];
1074 jclass field_class = _Jv_FindClassFromSignature ((char *) s, NULL);
1076 // FIXME: what if field_class == NULL?
1078 java::lang::ClassLoader *loader = clazz->getClassLoader ();
1079 while (clazz != NULL)
1081 // We acquire the class lock so that fields aren't resolved
1082 // while we are running.
1083 JvSynchronize sync (clazz);
1085 jint count = (is_static
1086 ? JvNumStaticFields (clazz)
1087 : JvNumInstanceFields (clazz));
1088 jfieldID field = (is_static
1089 ? JvGetFirstStaticField (clazz)
1090 : JvGetFirstInstanceField (clazz));
1091 for (jint i = 0; i < count; ++i)
1093 _Jv_Utf8Const *f_name = field->getNameUtf8Const(clazz);
1095 // The field might be resolved or it might not be. It
1096 // is much simpler to always resolve it.
1097 _Jv_ResolveField (field, loader);
1098 if (_Jv_equalUtf8Consts (f_name, a_name)
1099 && field->getClass() == field_class)
1100 return field;
1102 field = field->getNextField ();
1105 clazz = clazz->getSuperclass ();
1108 env->ex = new java::lang::NoSuchFieldError ();
1110 catch (jthrowable t)
1112 env->ex = t;
1114 return NULL;
1117 template<typename T>
1118 static T
1119 _Jv_JNI_GetStaticField (JNIEnv *env, jclass, jfieldID field)
1121 T *ptr = (T *) field->u.addr;
1122 return wrap_value (env, *ptr);
1125 template<typename T>
1126 static void
1127 _Jv_JNI_SetStaticField (JNIEnv *, jclass, jfieldID field, T value)
1129 T *ptr = (T *) field->u.addr;
1130 *ptr = value;
1133 static jstring
1134 _Jv_JNI_NewString (JNIEnv *env, const jchar *unichars, jsize len)
1138 jstring r = _Jv_NewString (unichars, len);
1139 return (jstring) wrap_value (env, r);
1141 catch (jthrowable t)
1143 env->ex = t;
1144 return NULL;
1148 static jsize
1149 _Jv_JNI_GetStringLength (JNIEnv *, jstring string)
1151 return string->length();
1154 static const jchar *
1155 _Jv_JNI_GetStringChars (JNIEnv *, jstring string, jboolean *isCopy)
1157 jchar *result = _Jv_GetStringChars (string);
1158 mark_for_gc (string);
1159 if (isCopy)
1160 *isCopy = false;
1161 return (const jchar *) result;
1164 static void
1165 _Jv_JNI_ReleaseStringChars (JNIEnv *, jstring string, const jchar *)
1167 unmark_for_gc (string);
1170 static jstring
1171 _Jv_JNI_NewStringUTF (JNIEnv *env, const char *bytes)
1175 jstring result = JvNewStringUTF (bytes);
1176 return (jstring) wrap_value (env, result);
1178 catch (jthrowable t)
1180 env->ex = t;
1181 return NULL;
1185 static jsize
1186 _Jv_JNI_GetStringUTFLength (JNIEnv *, jstring string)
1188 return JvGetStringUTFLength (string);
1191 static const char *
1192 _Jv_JNI_GetStringUTFChars (JNIEnv *env, jstring string, jboolean *isCopy)
1194 jsize len = JvGetStringUTFLength (string);
1197 char *r = (char *) _Jv_Malloc (len + 1);
1198 JvGetStringUTFRegion (string, 0, len, r);
1199 r[len] = '\0';
1201 if (isCopy)
1202 *isCopy = true;
1204 return (const char *) r;
1206 catch (jthrowable t)
1208 env->ex = t;
1209 return NULL;
1213 static void
1214 _Jv_JNI_ReleaseStringUTFChars (JNIEnv *, jstring, const char *utf)
1216 _Jv_Free ((void *) utf);
1219 static void
1220 _Jv_JNI_GetStringRegion (JNIEnv *env, jstring string, jsize start, jsize len,
1221 jchar *buf)
1223 jchar *result = _Jv_GetStringChars (string);
1224 if (start < 0 || start > string->length ()
1225 || len < 0 || start + len > string->length ())
1229 env->ex = new java::lang::StringIndexOutOfBoundsException ();
1231 catch (jthrowable t)
1233 env->ex = t;
1236 else
1237 memcpy (buf, &result[start], len * sizeof (jchar));
1240 static void
1241 _Jv_JNI_GetStringUTFRegion (JNIEnv *env, jstring str, jsize start,
1242 jsize len, char *buf)
1244 if (start < 0 || start > str->length ()
1245 || len < 0 || start + len > str->length ())
1249 env->ex = new java::lang::StringIndexOutOfBoundsException ();
1251 catch (jthrowable t)
1253 env->ex = t;
1256 else
1257 _Jv_GetStringUTFRegion (str, start, len, buf);
1260 static const jchar *
1261 _Jv_JNI_GetStringCritical (JNIEnv *, jstring str, jboolean *isCopy)
1263 jchar *result = _Jv_GetStringChars (str);
1264 if (isCopy)
1265 *isCopy = false;
1266 return result;
1269 static void
1270 _Jv_JNI_ReleaseStringCritical (JNIEnv *, jstring, const jchar *)
1272 // Nothing.
1275 static jsize
1276 _Jv_JNI_GetArrayLength (JNIEnv *, jarray array)
1278 return array->length;
1281 static jarray
1282 _Jv_JNI_NewObjectArray (JNIEnv *env, jsize length, jclass elementClass,
1283 jobject init)
1287 jarray result = JvNewObjectArray (length, elementClass, init);
1288 return (jarray) wrap_value (env, result);
1290 catch (jthrowable t)
1292 env->ex = t;
1293 return NULL;
1297 static jobject
1298 _Jv_JNI_GetObjectArrayElement (JNIEnv *env, jobjectArray array, jsize index)
1300 jobject *elts = elements (array);
1301 return wrap_value (env, elts[index]);
1304 static void
1305 _Jv_JNI_SetObjectArrayElement (JNIEnv *env, jobjectArray array, jsize index,
1306 jobject value)
1310 _Jv_CheckArrayStore (array, value);
1311 jobject *elts = elements (array);
1312 elts[index] = value;
1314 catch (jthrowable t)
1316 env->ex = t;
1320 template<typename T, jclass K>
1321 static JArray<T> *
1322 _Jv_JNI_NewPrimitiveArray (JNIEnv *env, jsize length)
1326 return (JArray<T> *) wrap_value (env, _Jv_NewPrimArray (K, length));
1328 catch (jthrowable t)
1330 env->ex = t;
1331 return NULL;
1335 template<typename T>
1336 static T *
1337 _Jv_JNI_GetPrimitiveArrayElements (JNIEnv *, JArray<T> *array,
1338 jboolean *isCopy)
1340 T *elts = elements (array);
1341 if (isCopy)
1343 // We elect never to copy.
1344 *isCopy = false;
1346 mark_for_gc (array);
1347 return elts;
1350 template<typename T>
1351 static void
1352 _Jv_JNI_ReleasePrimitiveArrayElements (JNIEnv *, JArray<T> *array,
1353 T *, jint /* mode */)
1355 // Note that we ignore MODE. We can do this because we never copy
1356 // the array elements. My reading of the JNI documentation is that
1357 // this is an option for the implementor.
1358 unmark_for_gc (array);
1361 template<typename T>
1362 static void
1363 _Jv_JNI_GetPrimitiveArrayRegion (JNIEnv *env, JArray<T> *array,
1364 jsize start, jsize len,
1365 T *buf)
1367 // The cast to unsigned lets us save a comparison.
1368 if (start < 0 || len < 0
1369 || (unsigned long) (start + len) > (unsigned long) array->length)
1373 // FIXME: index.
1374 env->ex = new java::lang::ArrayIndexOutOfBoundsException ();
1376 catch (jthrowable t)
1378 // Could have thown out of memory error.
1379 env->ex = t;
1382 else
1384 T *elts = elements (array) + start;
1385 memcpy (buf, elts, len * sizeof (T));
1389 template<typename T>
1390 static void
1391 _Jv_JNI_SetPrimitiveArrayRegion (JNIEnv *env, JArray<T> *array,
1392 jsize start, jsize len, T *buf)
1394 // The cast to unsigned lets us save a comparison.
1395 if (start < 0 || len < 0
1396 || (unsigned long) (start + len) > (unsigned long) array->length)
1400 // FIXME: index.
1401 env->ex = new java::lang::ArrayIndexOutOfBoundsException ();
1403 catch (jthrowable t)
1405 env->ex = t;
1408 else
1410 T *elts = elements (array) + start;
1411 memcpy (elts, buf, len * sizeof (T));
1415 static void *
1416 _Jv_JNI_GetPrimitiveArrayCritical (JNIEnv *, jarray array,
1417 jboolean *isCopy)
1419 // FIXME: does this work?
1420 jclass klass = array->getClass()->getComponentType();
1421 JvAssert (klass->isPrimitive ());
1422 char *r = _Jv_GetArrayElementFromElementType (array, klass);
1423 if (isCopy)
1424 *isCopy = false;
1425 return r;
1428 static void
1429 _Jv_JNI_ReleasePrimitiveArrayCritical (JNIEnv *, jarray, void *, jint)
1431 // Nothing.
1434 static jint
1435 _Jv_JNI_MonitorEnter (JNIEnv *env, jobject obj)
1439 _Jv_MonitorEnter (obj);
1440 return 0;
1442 catch (jthrowable t)
1444 env->ex = t;
1446 return JNI_ERR;
1449 static jint
1450 _Jv_JNI_MonitorExit (JNIEnv *env, jobject obj)
1454 _Jv_MonitorExit (obj);
1455 return 0;
1457 catch (jthrowable t)
1459 env->ex = t;
1461 return JNI_ERR;
1464 // JDK 1.2
1465 jobject
1466 _Jv_JNI_ToReflectedField (JNIEnv *env, jclass cls, jfieldID fieldID,
1467 jboolean)
1471 java::lang::reflect::Field *field = new java::lang::reflect::Field();
1472 field->declaringClass = cls;
1473 field->offset = (char*) fieldID - (char *) cls->fields;
1474 field->name = _Jv_NewStringUtf8Const (fieldID->getNameUtf8Const (cls));
1475 return wrap_value (env, field);
1477 catch (jthrowable t)
1479 env->ex = t;
1481 return NULL;
1484 // JDK 1.2
1485 static jfieldID
1486 _Jv_JNI_FromReflectedField (JNIEnv *, jobject f)
1488 using namespace java::lang::reflect;
1490 Field *field = reinterpret_cast<Field *> (f);
1491 return _Jv_FromReflectedField (field);
1494 jobject
1495 _Jv_JNI_ToReflectedMethod (JNIEnv *env, jclass klass, jmethodID id,
1496 jboolean)
1498 using namespace java::lang::reflect;
1500 // FIXME.
1501 static _Jv_Utf8Const *init_name = _Jv_makeUtf8Const ("<init>", 6);
1503 jobject result = NULL;
1507 if (_Jv_equalUtf8Consts (id->name, init_name))
1509 // A constructor.
1510 Constructor *cons = new Constructor ();
1511 cons->offset = (char *) id - (char *) &klass->methods;
1512 cons->declaringClass = klass;
1513 result = cons;
1515 else
1517 Method *meth = new Method ();
1518 meth->offset = (char *) id - (char *) &klass->methods;
1519 meth->declaringClass = klass;
1520 result = meth;
1523 catch (jthrowable t)
1525 env->ex = t;
1528 return wrap_value (env, result);
1531 static jmethodID
1532 _Jv_JNI_FromReflectedMethod (JNIEnv *, jobject method)
1534 using namespace java::lang::reflect;
1535 if ((&MethodClass)->isInstance (method))
1536 return _Jv_FromReflectedMethod (reinterpret_cast<Method *> (method));
1537 return
1538 _Jv_FromReflectedConstructor (reinterpret_cast<Constructor *> (method));
1541 static jint
1542 _Jv_JNI_RegisterNatives (JNIEnv *env, jclass k,
1543 const JNINativeMethod *methods,
1544 jint nMethods)
1546 #ifdef INTERPRETER
1547 // For now, this only matters for interpreted methods. FIXME.
1548 if (! _Jv_IsInterpretedClass (k))
1550 // FIXME: throw exception.
1551 return JNI_ERR;
1553 _Jv_InterpClass *klass = reinterpret_cast<_Jv_InterpClass *> (k);
1555 // Look at each descriptor given us, and find the corresponding
1556 // method in the class.
1557 for (int j = 0; j < nMethods; ++j)
1559 bool found = false;
1561 _Jv_MethodBase **imeths = _Jv_GetFirstMethod (klass);
1562 for (int i = 0; i < JvNumMethods (klass); ++i)
1564 _Jv_MethodBase *meth = imeths[i];
1565 _Jv_Method *self = meth->get_method ();
1567 if (! strcmp (self->name->data, methods[j].name)
1568 && ! strcmp (self->signature->data, methods[j].signature))
1570 if (! (self->accflags
1571 & java::lang::reflect::Modifier::NATIVE))
1572 break;
1574 // Found a match that is native.
1575 _Jv_JNIMethod *jmeth = reinterpret_cast<_Jv_JNIMethod *> (meth);
1576 jmeth->set_function (methods[i].fnPtr);
1577 found = true;
1578 break;
1582 if (! found)
1584 jstring m = JvNewStringUTF (methods[j].name);
1587 env->ex =new java::lang::NoSuchMethodError (m);
1589 catch (jthrowable t)
1591 env->ex = t;
1593 return JNI_ERR;
1597 return JNI_OK;
1598 #else /* INTERPRETER */
1599 return JNI_ERR;
1600 #endif /* INTERPRETER */
1603 static jint
1604 _Jv_JNI_UnregisterNatives (JNIEnv *, jclass)
1606 return JNI_ERR;
1611 // Add a character to the buffer, encoding properly.
1612 static void
1613 add_char (char *buf, jchar c, int *here)
1615 if (c == '_')
1617 buf[(*here)++] = '_';
1618 buf[(*here)++] = '1';
1620 else if (c == ';')
1622 buf[(*here)++] = '_';
1623 buf[(*here)++] = '2';
1625 else if (c == '[')
1627 buf[(*here)++] = '_';
1628 buf[(*here)++] = '3';
1631 // Also check for `.' here because we might be passed an internal
1632 // qualified class name like `foo.bar'.
1633 else if (c == '/' || c == '.')
1634 buf[(*here)++] = '_';
1635 else if ((c >= '0' && c <= '9')
1636 || (c >= 'a' && c <= 'z')
1637 || (c >= 'A' && c <= 'Z'))
1638 buf[(*here)++] = (char) c;
1639 else
1641 // "Unicode" character.
1642 buf[(*here)++] = '_';
1643 buf[(*here)++] = '0';
1644 for (int i = 0; i < 4; ++i)
1646 int val = c & 0x0f;
1647 buf[(*here) + 3 - i] = (val > 10) ? ('a' + val - 10) : ('0' + val);
1648 c >>= 4;
1650 *here += 4;
1654 // Compute a mangled name for a native function. This computes the
1655 // long name, and also returns an index which indicates where a NUL
1656 // can be placed to create the short name. This function assumes that
1657 // the buffer is large enough for its results.
1658 static void
1659 mangled_name (jclass klass, _Jv_Utf8Const *func_name,
1660 _Jv_Utf8Const *signature, char *buf, int *long_start)
1662 strcpy (buf, "Java_");
1663 int here = 5;
1665 // Add fully qualified class name.
1666 jchar *chars = _Jv_GetStringChars (klass->getName ());
1667 jint len = klass->getName ()->length ();
1668 for (int i = 0; i < len; ++i)
1669 add_char (buf, chars[i], &here);
1671 // Don't use add_char because we need a literal `_'.
1672 buf[here++] = '_';
1674 const unsigned char *fn = (const unsigned char *) func_name->data;
1675 const unsigned char *limit = fn + func_name->length;
1676 for (int i = 0; ; ++i)
1678 int ch = UTF8_GET (fn, limit);
1679 if (ch < 0)
1680 break;
1681 add_char (buf, ch, &here);
1684 // This is where the long signature begins.
1685 *long_start = here;
1686 buf[here++] = '_';
1687 buf[here++] = '_';
1689 const unsigned char *sig = (const unsigned char *) signature->data;
1690 limit = sig + signature->length;
1691 JvAssert (sig[0] == '(');
1692 ++sig;
1693 while (1)
1695 int ch = UTF8_GET (sig, limit);
1696 if (ch == ')' || ch < 0)
1697 break;
1698 add_char (buf, ch, &here);
1701 buf[here] = '\0';
1704 // Return the current thread's JNIEnv; if one does not exist, create
1705 // it. Also create a new system frame for use. This is `extern "C"'
1706 // because the compiler calls it.
1707 extern "C" JNIEnv *
1708 _Jv_GetJNIEnvNewFrame (jclass klass)
1710 JNIEnv *env = _Jv_GetCurrentJNIEnv ();
1711 if (env == NULL)
1713 env = (JNIEnv *) _Jv_MallocUnchecked (sizeof (JNIEnv));
1714 env->p = &_Jv_JNIFunctions;
1715 env->ex = NULL;
1716 env->klass = klass;
1717 env->locals = NULL;
1719 _Jv_SetCurrentJNIEnv (env);
1722 _Jv_JNI_LocalFrame *frame
1723 = (_Jv_JNI_LocalFrame *) _Jv_MallocUnchecked (sizeof (_Jv_JNI_LocalFrame)
1724 + (FRAME_SIZE
1725 * sizeof (jobject)));
1727 frame->marker = MARK_SYSTEM;
1728 frame->size = FRAME_SIZE;
1729 frame->next = env->locals;
1730 env->locals = frame;
1732 for (int i = 0; i < frame->size; ++i)
1733 frame->vec[i] = NULL;
1735 return env;
1738 // Return the function which implements a particular JNI method. If
1739 // we can't find the function, we throw the appropriate exception.
1740 // This is `extern "C"' because the compiler uses it.
1741 extern "C" void *
1742 _Jv_LookupJNIMethod (jclass klass, _Jv_Utf8Const *name,
1743 _Jv_Utf8Const *signature)
1745 char buf[10 + 6 * (name->length + signature->length)];
1746 int long_start;
1747 void *function;
1749 mangled_name (klass, name, signature, buf, &long_start);
1750 char c = buf[long_start];
1751 buf[long_start] = '\0';
1752 function = _Jv_FindSymbolInExecutable (buf);
1753 if (function == NULL)
1755 buf[long_start] = c;
1756 function = _Jv_FindSymbolInExecutable (buf);
1757 if (function == NULL)
1759 jstring str = JvNewStringUTF (name->data);
1760 throw new java::lang::AbstractMethodError (str);
1764 return function;
1767 #ifdef INTERPRETER
1769 // This function is the stub which is used to turn an ordinary (CNI)
1770 // method call into a JNI call.
1771 void
1772 _Jv_JNIMethod::call (ffi_cif *, void *ret, ffi_raw *args, void *__this)
1774 _Jv_JNIMethod* _this = (_Jv_JNIMethod *) __this;
1776 JNIEnv *env = _Jv_GetJNIEnvNewFrame (_this->defining_class);
1778 // FIXME: we should mark every reference parameter as a local. For
1779 // now we assume a conservative GC, and we assume that the
1780 // references are on the stack somewhere.
1782 // We cache the value that we find, of course, but if we don't find
1783 // a value we don't cache that fact -- we might subsequently load a
1784 // library which finds the function in question.
1785 if (_this->function == NULL)
1786 _this->function = _Jv_LookupJNIMethod (_this->defining_class,
1787 _this->self->name,
1788 _this->self->signature);
1790 JvAssert (_this->args_raw_size % sizeof (ffi_raw) == 0);
1791 ffi_raw real_args[2 + _this->args_raw_size / sizeof (ffi_raw)];
1792 int offset = 0;
1794 // First argument is always the environment pointer.
1795 real_args[offset++].ptr = env;
1797 // For a static method, we pass in the Class. For non-static
1798 // methods, the `this' argument is already handled.
1799 if ((_this->self->accflags & java::lang::reflect::Modifier::STATIC))
1800 real_args[offset++].ptr = _this->defining_class;
1802 // Copy over passed-in arguments.
1803 memcpy (&real_args[offset], args, _this->args_raw_size);
1805 // The actual call to the JNI function.
1806 ffi_raw_call (&_this->jni_cif, (void (*)()) _this->function,
1807 ret, real_args);
1809 _Jv_JNI_PopSystemFrame (env);
1812 #endif /* INTERPRETER */
1817 // Invocation API.
1820 // An internal helper function.
1821 static jint
1822 _Jv_JNI_AttachCurrentThread (JavaVM *, jstring name, void **penv, void *args)
1824 JavaVMAttachArgs *attach = reinterpret_cast<JavaVMAttachArgs *> (args);
1825 java::lang::ThreadGroup *group = NULL;
1827 if (attach)
1829 // FIXME: do we really want to support 1.1?
1830 if (attach->version != JNI_VERSION_1_2
1831 && attach->version != JNI_VERSION_1_1)
1832 return JNI_EVERSION;
1834 JvAssert ((&ThreadGroupClass)->isInstance (attach->group));
1835 group = reinterpret_cast<java::lang::ThreadGroup *> (attach->group);
1838 // Attaching an already-attached thread is a no-op.
1839 if (_Jv_GetCurrentJNIEnv () != NULL)
1840 return 0;
1842 JNIEnv *env = (JNIEnv *) _Jv_MallocUnchecked (sizeof (JNIEnv));
1843 if (env == NULL)
1844 return JNI_ERR;
1845 env->p = &_Jv_JNIFunctions;
1846 env->ex = NULL;
1847 env->klass = NULL;
1848 env->locals
1849 = (_Jv_JNI_LocalFrame *) _Jv_MallocUnchecked (sizeof (_Jv_JNI_LocalFrame)
1850 + (FRAME_SIZE
1851 * sizeof (jobject)));
1852 if (env->locals == NULL)
1854 _Jv_Free (env);
1855 return JNI_ERR;
1857 *penv = reinterpret_cast<void *> (env);
1859 // This thread might already be a Java thread -- this function might
1860 // have been called simply to set the new JNIEnv.
1861 if (_Jv_ThreadCurrent () == NULL)
1865 _Jv_AttachCurrentThread (name, group);
1867 catch (jthrowable t)
1869 return JNI_ERR;
1872 _Jv_SetCurrentJNIEnv (env);
1874 return 0;
1877 // This is the one actually used by JNI.
1878 static jint
1879 _Jv_JNI_AttachCurrentThread (JavaVM *vm, void **penv, void *args)
1881 return _Jv_JNI_AttachCurrentThread (vm, NULL, penv, args);
1884 static jint
1885 _Jv_JNI_DestroyJavaVM (JavaVM *vm)
1887 JvAssert (the_vm && vm == the_vm);
1889 JNIEnv *env;
1890 if (_Jv_ThreadCurrent () != NULL)
1892 jstring main_name;
1893 // This sucks.
1896 main_name = JvNewStringLatin1 ("main");
1898 catch (jthrowable t)
1900 return JNI_ERR;
1903 jint r = _Jv_JNI_AttachCurrentThread (vm,
1904 main_name,
1905 reinterpret_cast<void **> (&env),
1906 NULL);
1907 if (r < 0)
1908 return r;
1910 else
1911 env = _Jv_GetCurrentJNIEnv ();
1913 _Jv_ThreadWait ();
1915 // Docs say that this always returns an error code.
1916 return JNI_ERR;
1919 jint
1920 _Jv_JNI_DetachCurrentThread (JavaVM *)
1922 jint code = _Jv_DetachCurrentThread ();
1923 return code ? JNI_EDETACHED : 0;
1926 static jint
1927 _Jv_JNI_GetEnv (JavaVM *, void **penv, jint version)
1929 if (_Jv_ThreadCurrent () == NULL)
1931 *penv = NULL;
1932 return JNI_EDETACHED;
1935 #ifdef ENABLE_JVMPI
1936 // Handle JVMPI requests.
1937 if (version == JVMPI_VERSION_1)
1939 *penv = (void *) &_Jv_JVMPI_Interface;
1940 return 0;
1942 #endif
1944 // FIXME: do we really want to support 1.1?
1945 if (version != JNI_VERSION_1_2 && version != JNI_VERSION_1_1)
1947 *penv = NULL;
1948 return JNI_EVERSION;
1951 *penv = (void *) _Jv_GetCurrentJNIEnv ();
1952 return 0;
1955 jint
1956 JNI_GetDefaultJavaVMInitArgs (void *args)
1958 jint version = * (jint *) args;
1959 // Here we only support 1.2.
1960 if (version != JNI_VERSION_1_2)
1961 return JNI_EVERSION;
1963 JavaVMInitArgs *ia = reinterpret_cast<JavaVMInitArgs *> (args);
1964 ia->version = JNI_VERSION_1_2;
1965 ia->nOptions = 0;
1966 ia->options = NULL;
1967 ia->ignoreUnrecognized = true;
1969 return 0;
1972 jint
1973 JNI_CreateJavaVM (JavaVM **vm, void **penv, void *args)
1975 JvAssert (! the_vm);
1976 // FIXME: synchronize
1977 JavaVM *nvm = (JavaVM *) _Jv_MallocUnchecked (sizeof (JavaVM));
1978 if (nvm == NULL)
1979 return JNI_ERR;
1980 nvm->functions = &_Jv_JNI_InvokeFunctions;
1982 // Parse the arguments.
1983 if (args != NULL)
1985 jint version = * (jint *) args;
1986 // We only support 1.2.
1987 if (version != JNI_VERSION_1_2)
1988 return JNI_EVERSION;
1989 JavaVMInitArgs *ia = reinterpret_cast<JavaVMInitArgs *> (args);
1990 for (int i = 0; i < ia->nOptions; ++i)
1992 if (! strcmp (ia->options[i].optionString, "vfprintf")
1993 || ! strcmp (ia->options[i].optionString, "exit")
1994 || ! strcmp (ia->options[i].optionString, "abort"))
1996 // We are required to recognize these, but for now we
1997 // don't handle them in any way. FIXME.
1998 continue;
2000 else if (! strncmp (ia->options[i].optionString,
2001 "-verbose", sizeof ("-verbose") - 1))
2003 // We don't do anything with this option either. We
2004 // might want to make sure the argument is valid, but we
2005 // don't really care all that much for now.
2006 continue;
2008 else if (! strncmp (ia->options[i].optionString, "-D", 2))
2010 // FIXME.
2011 continue;
2013 else if (ia->ignoreUnrecognized)
2015 if (ia->options[i].optionString[0] == '_'
2016 || ! strncmp (ia->options[i].optionString, "-X", 2))
2017 continue;
2020 return JNI_ERR;
2024 jint r =_Jv_JNI_AttachCurrentThread (nvm, penv, NULL);
2025 if (r < 0)
2026 return r;
2028 the_vm = nvm;
2029 *vm = the_vm;
2030 return 0;
2033 jint
2034 JNI_GetCreatedJavaVMs (JavaVM **vm_buffer, jsize buf_len, jsize *n_vms)
2036 if (buf_len <= 0)
2037 return JNI_ERR;
2039 // We only support a single VM.
2040 if (the_vm != NULL)
2042 vm_buffer[0] = the_vm;
2043 *n_vms = 1;
2045 else
2046 *n_vms = 0;
2047 return 0;
2050 JavaVM *
2051 _Jv_GetJavaVM ()
2053 // FIXME: synchronize
2054 if (! the_vm)
2056 JavaVM *nvm = (JavaVM *) _Jv_MallocUnchecked (sizeof (JavaVM));
2057 if (nvm != NULL)
2058 nvm->functions = &_Jv_JNI_InvokeFunctions;
2059 the_vm = nvm;
2062 // If this is a Java thread, we want to make sure it has an
2063 // associated JNIEnv.
2064 if (_Jv_ThreadCurrent () != NULL)
2066 void *ignore;
2067 _Jv_JNI_AttachCurrentThread (the_vm, &ignore, NULL);
2070 return the_vm;
2073 static jint
2074 _Jv_JNI_GetJavaVM (JNIEnv *, JavaVM **vm)
2076 *vm = _Jv_GetJavaVM ();
2077 return *vm == NULL ? JNI_ERR : JNI_OK;
2082 #define NOT_IMPL NULL
2083 #define RESERVED NULL
2085 struct JNINativeInterface _Jv_JNIFunctions =
2087 RESERVED,
2088 RESERVED,
2089 RESERVED,
2090 RESERVED,
2091 _Jv_JNI_GetVersion, // GetVersion
2092 _Jv_JNI_DefineClass, // DefineClass
2093 _Jv_JNI_FindClass, // FindClass
2094 _Jv_JNI_FromReflectedMethod, // FromReflectedMethod
2095 _Jv_JNI_FromReflectedField, // FromReflectedField
2096 _Jv_JNI_ToReflectedMethod, // ToReflectedMethod
2097 _Jv_JNI_GetSuperclass, // GetSuperclass
2098 _Jv_JNI_IsAssignableFrom, // IsAssignableFrom
2099 _Jv_JNI_ToReflectedField, // ToReflectedField
2100 _Jv_JNI_Throw, // Throw
2101 _Jv_JNI_ThrowNew, // ThrowNew
2102 _Jv_JNI_ExceptionOccurred, // ExceptionOccurred
2103 _Jv_JNI_ExceptionDescribe, // ExceptionDescribe
2104 _Jv_JNI_ExceptionClear, // ExceptionClear
2105 _Jv_JNI_FatalError, // FatalError
2107 _Jv_JNI_PushLocalFrame, // PushLocalFrame
2108 _Jv_JNI_PopLocalFrame, // PopLocalFrame
2109 _Jv_JNI_NewGlobalRef, // NewGlobalRef
2110 _Jv_JNI_DeleteGlobalRef, // DeleteGlobalRef
2111 _Jv_JNI_DeleteLocalRef, // DeleteLocalRef
2113 _Jv_JNI_IsSameObject, // IsSameObject
2115 _Jv_JNI_NewLocalRef, // NewLocalRef
2116 _Jv_JNI_EnsureLocalCapacity, // EnsureLocalCapacity
2118 _Jv_JNI_AllocObject, // AllocObject
2119 _Jv_JNI_NewObject, // NewObject
2120 _Jv_JNI_NewObjectV, // NewObjectV
2121 _Jv_JNI_NewObjectA, // NewObjectA
2122 _Jv_JNI_GetObjectClass, // GetObjectClass
2123 _Jv_JNI_IsInstanceOf, // IsInstanceOf
2124 _Jv_JNI_GetAnyMethodID<false>, // GetMethodID
2126 _Jv_JNI_CallMethod<jobject>, // CallObjectMethod
2127 _Jv_JNI_CallMethodV<jobject>, // CallObjectMethodV
2128 _Jv_JNI_CallMethodA<jobject>, // CallObjectMethodA
2129 _Jv_JNI_CallMethod<jboolean>, // CallBooleanMethod
2130 _Jv_JNI_CallMethodV<jboolean>, // CallBooleanMethodV
2131 _Jv_JNI_CallMethodA<jboolean>, // CallBooleanMethodA
2132 _Jv_JNI_CallMethod<jbyte>, // CallByteMethod
2133 _Jv_JNI_CallMethodV<jbyte>, // CallByteMethodV
2134 _Jv_JNI_CallMethodA<jbyte>, // CallByteMethodA
2135 _Jv_JNI_CallMethod<jchar>, // CallCharMethod
2136 _Jv_JNI_CallMethodV<jchar>, // CallCharMethodV
2137 _Jv_JNI_CallMethodA<jchar>, // CallCharMethodA
2138 _Jv_JNI_CallMethod<jshort>, // CallShortMethod
2139 _Jv_JNI_CallMethodV<jshort>, // CallShortMethodV
2140 _Jv_JNI_CallMethodA<jshort>, // CallShortMethodA
2141 _Jv_JNI_CallMethod<jint>, // CallIntMethod
2142 _Jv_JNI_CallMethodV<jint>, // CallIntMethodV
2143 _Jv_JNI_CallMethodA<jint>, // CallIntMethodA
2144 _Jv_JNI_CallMethod<jlong>, // CallLongMethod
2145 _Jv_JNI_CallMethodV<jlong>, // CallLongMethodV
2146 _Jv_JNI_CallMethodA<jlong>, // CallLongMethodA
2147 _Jv_JNI_CallMethod<jfloat>, // CallFloatMethod
2148 _Jv_JNI_CallMethodV<jfloat>, // CallFloatMethodV
2149 _Jv_JNI_CallMethodA<jfloat>, // CallFloatMethodA
2150 _Jv_JNI_CallMethod<jdouble>, // CallDoubleMethod
2151 _Jv_JNI_CallMethodV<jdouble>, // CallDoubleMethodV
2152 _Jv_JNI_CallMethodA<jdouble>, // CallDoubleMethodA
2153 _Jv_JNI_CallVoidMethod, // CallVoidMethod
2154 _Jv_JNI_CallVoidMethodV, // CallVoidMethodV
2155 _Jv_JNI_CallVoidMethodA, // CallVoidMethodA
2157 // Nonvirtual method invocation functions follow.
2158 _Jv_JNI_CallAnyMethod<jobject, nonvirtual>, // CallNonvirtualObjectMethod
2159 _Jv_JNI_CallAnyMethodV<jobject, nonvirtual>, // CallNonvirtualObjectMethodV
2160 _Jv_JNI_CallAnyMethodA<jobject, nonvirtual>, // CallNonvirtualObjectMethodA
2161 _Jv_JNI_CallAnyMethod<jboolean, nonvirtual>, // CallNonvirtualBooleanMethod
2162 _Jv_JNI_CallAnyMethodV<jboolean, nonvirtual>, // CallNonvirtualBooleanMethodV
2163 _Jv_JNI_CallAnyMethodA<jboolean, nonvirtual>, // CallNonvirtualBooleanMethodA
2164 _Jv_JNI_CallAnyMethod<jbyte, nonvirtual>, // CallNonvirtualByteMethod
2165 _Jv_JNI_CallAnyMethodV<jbyte, nonvirtual>, // CallNonvirtualByteMethodV
2166 _Jv_JNI_CallAnyMethodA<jbyte, nonvirtual>, // CallNonvirtualByteMethodA
2167 _Jv_JNI_CallAnyMethod<jchar, nonvirtual>, // CallNonvirtualCharMethod
2168 _Jv_JNI_CallAnyMethodV<jchar, nonvirtual>, // CallNonvirtualCharMethodV
2169 _Jv_JNI_CallAnyMethodA<jchar, nonvirtual>, // CallNonvirtualCharMethodA
2170 _Jv_JNI_CallAnyMethod<jshort, nonvirtual>, // CallNonvirtualShortMethod
2171 _Jv_JNI_CallAnyMethodV<jshort, nonvirtual>, // CallNonvirtualShortMethodV
2172 _Jv_JNI_CallAnyMethodA<jshort, nonvirtual>, // CallNonvirtualShortMethodA
2173 _Jv_JNI_CallAnyMethod<jint, nonvirtual>, // CallNonvirtualIntMethod
2174 _Jv_JNI_CallAnyMethodV<jint, nonvirtual>, // CallNonvirtualIntMethodV
2175 _Jv_JNI_CallAnyMethodA<jint, nonvirtual>, // CallNonvirtualIntMethodA
2176 _Jv_JNI_CallAnyMethod<jlong, nonvirtual>, // CallNonvirtualLongMethod
2177 _Jv_JNI_CallAnyMethodV<jlong, nonvirtual>, // CallNonvirtualLongMethodV
2178 _Jv_JNI_CallAnyMethodA<jlong, nonvirtual>, // CallNonvirtualLongMethodA
2179 _Jv_JNI_CallAnyMethod<jfloat, nonvirtual>, // CallNonvirtualFloatMethod
2180 _Jv_JNI_CallAnyMethodV<jfloat, nonvirtual>, // CallNonvirtualFloatMethodV
2181 _Jv_JNI_CallAnyMethodA<jfloat, nonvirtual>, // CallNonvirtualFloatMethodA
2182 _Jv_JNI_CallAnyMethod<jdouble, nonvirtual>, // CallNonvirtualDoubleMethod
2183 _Jv_JNI_CallAnyMethodV<jdouble, nonvirtual>, // CallNonvirtualDoubleMethodV
2184 _Jv_JNI_CallAnyMethodA<jdouble, nonvirtual>, // CallNonvirtualDoubleMethodA
2185 _Jv_JNI_CallAnyVoidMethod<nonvirtual>, // CallNonvirtualVoidMethod
2186 _Jv_JNI_CallAnyVoidMethodV<nonvirtual>, // CallNonvirtualVoidMethodV
2187 _Jv_JNI_CallAnyVoidMethodA<nonvirtual>, // CallNonvirtualVoidMethodA
2189 _Jv_JNI_GetAnyFieldID<false>, // GetFieldID
2190 _Jv_JNI_GetField<jobject>, // GetObjectField
2191 _Jv_JNI_GetField<jboolean>, // GetBooleanField
2192 _Jv_JNI_GetField<jbyte>, // GetByteField
2193 _Jv_JNI_GetField<jchar>, // GetCharField
2194 _Jv_JNI_GetField<jshort>, // GetShortField
2195 _Jv_JNI_GetField<jint>, // GetIntField
2196 _Jv_JNI_GetField<jlong>, // GetLongField
2197 _Jv_JNI_GetField<jfloat>, // GetFloatField
2198 _Jv_JNI_GetField<jdouble>, // GetDoubleField
2199 _Jv_JNI_SetField, // SetObjectField
2200 _Jv_JNI_SetField, // SetBooleanField
2201 _Jv_JNI_SetField, // SetByteField
2202 _Jv_JNI_SetField, // SetCharField
2203 _Jv_JNI_SetField, // SetShortField
2204 _Jv_JNI_SetField, // SetIntField
2205 _Jv_JNI_SetField, // SetLongField
2206 _Jv_JNI_SetField, // SetFloatField
2207 _Jv_JNI_SetField, // SetDoubleField
2208 _Jv_JNI_GetAnyMethodID<true>, // GetStaticMethodID
2210 _Jv_JNI_CallStaticMethod<jobject>, // CallStaticObjectMethod
2211 _Jv_JNI_CallStaticMethodV<jobject>, // CallStaticObjectMethodV
2212 _Jv_JNI_CallStaticMethodA<jobject>, // CallStaticObjectMethodA
2213 _Jv_JNI_CallStaticMethod<jboolean>, // CallStaticBooleanMethod
2214 _Jv_JNI_CallStaticMethodV<jboolean>, // CallStaticBooleanMethodV
2215 _Jv_JNI_CallStaticMethodA<jboolean>, // CallStaticBooleanMethodA
2216 _Jv_JNI_CallStaticMethod<jbyte>, // CallStaticByteMethod
2217 _Jv_JNI_CallStaticMethodV<jbyte>, // CallStaticByteMethodV
2218 _Jv_JNI_CallStaticMethodA<jbyte>, // CallStaticByteMethodA
2219 _Jv_JNI_CallStaticMethod<jchar>, // CallStaticCharMethod
2220 _Jv_JNI_CallStaticMethodV<jchar>, // CallStaticCharMethodV
2221 _Jv_JNI_CallStaticMethodA<jchar>, // CallStaticCharMethodA
2222 _Jv_JNI_CallStaticMethod<jshort>, // CallStaticShortMethod
2223 _Jv_JNI_CallStaticMethodV<jshort>, // CallStaticShortMethodV
2224 _Jv_JNI_CallStaticMethodA<jshort>, // CallStaticShortMethodA
2225 _Jv_JNI_CallStaticMethod<jint>, // CallStaticIntMethod
2226 _Jv_JNI_CallStaticMethodV<jint>, // CallStaticIntMethodV
2227 _Jv_JNI_CallStaticMethodA<jint>, // CallStaticIntMethodA
2228 _Jv_JNI_CallStaticMethod<jlong>, // CallStaticLongMethod
2229 _Jv_JNI_CallStaticMethodV<jlong>, // CallStaticLongMethodV
2230 _Jv_JNI_CallStaticMethodA<jlong>, // CallStaticLongMethodA
2231 _Jv_JNI_CallStaticMethod<jfloat>, // CallStaticFloatMethod
2232 _Jv_JNI_CallStaticMethodV<jfloat>, // CallStaticFloatMethodV
2233 _Jv_JNI_CallStaticMethodA<jfloat>, // CallStaticFloatMethodA
2234 _Jv_JNI_CallStaticMethod<jdouble>, // CallStaticDoubleMethod
2235 _Jv_JNI_CallStaticMethodV<jdouble>, // CallStaticDoubleMethodV
2236 _Jv_JNI_CallStaticMethodA<jdouble>, // CallStaticDoubleMethodA
2237 _Jv_JNI_CallStaticVoidMethod, // CallStaticVoidMethod
2238 _Jv_JNI_CallStaticVoidMethodV, // CallStaticVoidMethodV
2239 _Jv_JNI_CallStaticVoidMethodA, // CallStaticVoidMethodA
2241 _Jv_JNI_GetAnyFieldID<true>, // GetStaticFieldID
2242 _Jv_JNI_GetStaticField<jobject>, // GetStaticObjectField
2243 _Jv_JNI_GetStaticField<jboolean>, // GetStaticBooleanField
2244 _Jv_JNI_GetStaticField<jbyte>, // GetStaticByteField
2245 _Jv_JNI_GetStaticField<jchar>, // GetStaticCharField
2246 _Jv_JNI_GetStaticField<jshort>, // GetStaticShortField
2247 _Jv_JNI_GetStaticField<jint>, // GetStaticIntField
2248 _Jv_JNI_GetStaticField<jlong>, // GetStaticLongField
2249 _Jv_JNI_GetStaticField<jfloat>, // GetStaticFloatField
2250 _Jv_JNI_GetStaticField<jdouble>, // GetStaticDoubleField
2251 _Jv_JNI_SetStaticField, // SetStaticObjectField
2252 _Jv_JNI_SetStaticField, // SetStaticBooleanField
2253 _Jv_JNI_SetStaticField, // SetStaticByteField
2254 _Jv_JNI_SetStaticField, // SetStaticCharField
2255 _Jv_JNI_SetStaticField, // SetStaticShortField
2256 _Jv_JNI_SetStaticField, // SetStaticIntField
2257 _Jv_JNI_SetStaticField, // SetStaticLongField
2258 _Jv_JNI_SetStaticField, // SetStaticFloatField
2259 _Jv_JNI_SetStaticField, // SetStaticDoubleField
2260 _Jv_JNI_NewString, // NewString
2261 _Jv_JNI_GetStringLength, // GetStringLength
2262 _Jv_JNI_GetStringChars, // GetStringChars
2263 _Jv_JNI_ReleaseStringChars, // ReleaseStringChars
2264 _Jv_JNI_NewStringUTF, // NewStringUTF
2265 _Jv_JNI_GetStringUTFLength, // GetStringUTFLength
2266 _Jv_JNI_GetStringUTFChars, // GetStringUTFLength
2267 _Jv_JNI_ReleaseStringUTFChars, // ReleaseStringUTFChars
2268 _Jv_JNI_GetArrayLength, // GetArrayLength
2269 _Jv_JNI_NewObjectArray, // NewObjectArray
2270 _Jv_JNI_GetObjectArrayElement, // GetObjectArrayElement
2271 _Jv_JNI_SetObjectArrayElement, // SetObjectArrayElement
2272 _Jv_JNI_NewPrimitiveArray<jboolean, JvPrimClass (boolean)>,
2273 // NewBooleanArray
2274 _Jv_JNI_NewPrimitiveArray<jbyte, JvPrimClass (byte)>, // NewByteArray
2275 _Jv_JNI_NewPrimitiveArray<jchar, JvPrimClass (char)>, // NewCharArray
2276 _Jv_JNI_NewPrimitiveArray<jshort, JvPrimClass (short)>, // NewShortArray
2277 _Jv_JNI_NewPrimitiveArray<jint, JvPrimClass (int)>, // NewIntArray
2278 _Jv_JNI_NewPrimitiveArray<jlong, JvPrimClass (long)>, // NewLongArray
2279 _Jv_JNI_NewPrimitiveArray<jfloat, JvPrimClass (float)>, // NewFloatArray
2280 _Jv_JNI_NewPrimitiveArray<jdouble, JvPrimClass (double)>, // NewDoubleArray
2281 _Jv_JNI_GetPrimitiveArrayElements, // GetBooleanArrayElements
2282 _Jv_JNI_GetPrimitiveArrayElements, // GetByteArrayElements
2283 _Jv_JNI_GetPrimitiveArrayElements, // GetCharArrayElements
2284 _Jv_JNI_GetPrimitiveArrayElements, // GetShortArrayElements
2285 _Jv_JNI_GetPrimitiveArrayElements, // GetIntArrayElements
2286 _Jv_JNI_GetPrimitiveArrayElements, // GetLongArrayElements
2287 _Jv_JNI_GetPrimitiveArrayElements, // GetFloatArrayElements
2288 _Jv_JNI_GetPrimitiveArrayElements, // GetDoubleArrayElements
2289 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseBooleanArrayElements
2290 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseByteArrayElements
2291 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseCharArrayElements
2292 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseShortArrayElements
2293 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseIntArrayElements
2294 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseLongArrayElements
2295 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseFloatArrayElements
2296 _Jv_JNI_ReleasePrimitiveArrayElements, // ReleaseDoubleArrayElements
2297 _Jv_JNI_GetPrimitiveArrayRegion, // GetBooleanArrayRegion
2298 _Jv_JNI_GetPrimitiveArrayRegion, // GetByteArrayRegion
2299 _Jv_JNI_GetPrimitiveArrayRegion, // GetCharArrayRegion
2300 _Jv_JNI_GetPrimitiveArrayRegion, // GetShortArrayRegion
2301 _Jv_JNI_GetPrimitiveArrayRegion, // GetIntArrayRegion
2302 _Jv_JNI_GetPrimitiveArrayRegion, // GetLongArrayRegion
2303 _Jv_JNI_GetPrimitiveArrayRegion, // GetFloatArrayRegion
2304 _Jv_JNI_GetPrimitiveArrayRegion, // GetDoubleArrayRegion
2305 _Jv_JNI_SetPrimitiveArrayRegion, // SetBooleanArrayRegion
2306 _Jv_JNI_SetPrimitiveArrayRegion, // SetByteArrayRegion
2307 _Jv_JNI_SetPrimitiveArrayRegion, // SetCharArrayRegion
2308 _Jv_JNI_SetPrimitiveArrayRegion, // SetShortArrayRegion
2309 _Jv_JNI_SetPrimitiveArrayRegion, // SetIntArrayRegion
2310 _Jv_JNI_SetPrimitiveArrayRegion, // SetLongArrayRegion
2311 _Jv_JNI_SetPrimitiveArrayRegion, // SetFloatArrayRegion
2312 _Jv_JNI_SetPrimitiveArrayRegion, // SetDoubleArrayRegion
2313 _Jv_JNI_RegisterNatives, // RegisterNatives
2314 _Jv_JNI_UnregisterNatives, // UnregisterNatives
2315 _Jv_JNI_MonitorEnter, // MonitorEnter
2316 _Jv_JNI_MonitorExit, // MonitorExit
2317 _Jv_JNI_GetJavaVM, // GetJavaVM
2319 _Jv_JNI_GetStringRegion, // GetStringRegion
2320 _Jv_JNI_GetStringUTFRegion, // GetStringUTFRegion
2321 _Jv_JNI_GetPrimitiveArrayCritical, // GetPrimitiveArrayCritical
2322 _Jv_JNI_ReleasePrimitiveArrayCritical, // ReleasePrimitiveArrayCritical
2323 _Jv_JNI_GetStringCritical, // GetStringCritical
2324 _Jv_JNI_ReleaseStringCritical, // ReleaseStringCritical
2326 NOT_IMPL /* newweakglobalref */,
2327 NOT_IMPL /* deleteweakglobalref */,
2329 _Jv_JNI_ExceptionCheck
2332 struct JNIInvokeInterface _Jv_JNI_InvokeFunctions =
2334 RESERVED,
2335 RESERVED,
2336 RESERVED,
2338 _Jv_JNI_DestroyJavaVM,
2339 _Jv_JNI_AttachCurrentThread,
2340 _Jv_JNI_DetachCurrentThread,
2341 _Jv_JNI_GetEnv