blob: 9ca40347aa53b0e8e229d74013f814f71c3f22b5 [file] [log] [blame]
Ian Rogersdf20fe02011-07-20 20:34:16 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "jni_internal.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -07004
Elliott Hughes0af55432011-08-17 18:37:28 -07005#include <dlfcn.h>
Carl Shapiro9b9ba282011-08-14 15:30:39 -07006#include <sys/mman.h>
Elliott Hughes79082e32011-08-25 12:07:32 -07007
8#include <cstdarg>
9#include <map>
Elliott Hughes0af55432011-08-17 18:37:28 -070010#include <utility>
11#include <vector>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070012
Elliott Hughes72025e52011-08-23 17:50:30 -070013#include "ScopedLocalRef.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include "UniquePtr.h"
Elliott Hughes18c07532011-08-18 15:50:51 -070015#include "assembler.h"
Elliott Hughes40ef99e2011-08-11 17:44:34 -070016#include "class_linker.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070017#include "class_loader.h"
Carl Shapiroea4dca82011-08-01 13:45:38 -070018#include "jni.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070019#include "logging.h"
Carl Shapiro9b9ba282011-08-14 15:30:39 -070020#include "object.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070021#include "runtime.h"
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -070022#include "scoped_jni_thread_state.h"
Elliott Hughesc31664f2011-09-29 15:58:28 -070023#include "stl_util.h"
Carl Shapirofc322c72011-07-27 00:20:01 -070024#include "stringpiece.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070025#include "thread.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070026
27namespace art {
28
Elliott Hughesc5f7c912011-08-18 14:00:42 -070029/*
30 * Add a local reference for an object to the current stack frame. When
31 * the native function returns, the reference will be discarded.
32 *
33 * We need to allow the same reference to be added multiple times.
34 *
35 * This will be called on otherwise unreferenced objects. We cannot do
36 * GC allocations here, and it's best if we don't grab a mutex.
37 *
38 * Returns the local reference (currently just the same pointer that was
39 * passed in), or NULL on failure.
40 */
Elliott Hughes8a26c5c2011-08-15 18:35:43 -070041template<typename T>
Elliott Hughescf4c6c42011-09-01 15:16:42 -070042T AddLocalReference(JNIEnv* public_env, const Object* const_obj) {
43 // The jobject type hierarchy has no notion of const, so it's not worth carrying through.
44 Object* obj = const_cast<Object*>(const_obj);
45
Elliott Hughesc5f7c912011-08-18 14:00:42 -070046 if (obj == NULL) {
47 return NULL;
48 }
49
Elliott Hughesbf86d042011-08-31 17:53:14 -070050 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
51 IndirectReferenceTable& locals = env->locals;
Elliott Hughesc5f7c912011-08-18 14:00:42 -070052
Ian Rogers5a7a74a2011-09-26 16:32:29 -070053 uint32_t cookie = env->local_ref_cookie;
Elliott Hughesc5f7c912011-08-18 14:00:42 -070054 IndirectRef ref = locals.Add(cookie, obj);
55 if (ref == NULL) {
56 // TODO: just change Add's DCHECK to CHECK and lose this?
57 locals.Dump();
58 LOG(FATAL) << "Failed adding to JNI local reference table "
59 << "(has " << locals.Capacity() << " entries)";
60 // TODO: dvmDumpThread(dvmThreadSelf(), false);
61 }
62
63#if 0 // TODO: fix this to understand PushLocalFrame, so we can turn it on.
Elliott Hughesbf86d042011-08-31 17:53:14 -070064 if (env->check_jni) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070065 size_t entry_count = locals.Capacity();
66 if (entry_count > 16) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070067 LOG(WARNING) << "Warning: more than 16 JNI local references: "
Elliott Hughes54e7df12011-09-16 11:47:04 -070068 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")";
Elliott Hughesc5f7c912011-08-18 14:00:42 -070069 locals.Dump();
70 // TODO: dvmDumpThread(dvmThreadSelf(), false);
71 // dvmAbort();
72 }
73 }
74#endif
75
Elliott Hughesbf86d042011-08-31 17:53:14 -070076 if (env->work_around_app_jni_bugs) {
Elliott Hughesc5f7c912011-08-18 14:00:42 -070077 // Hand out direct pointers to support broken old apps.
78 return reinterpret_cast<T>(obj);
79 }
80
81 return reinterpret_cast<T>(ref);
82}
83
Elliott Hughesbf86d042011-08-31 17:53:14 -070084// For external use.
85template<typename T>
86T Decode(JNIEnv* public_env, jobject obj) {
87 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
88 return reinterpret_cast<T>(env->self->DecodeJObject(obj));
89}
90// Explicit instantiations.
Elliott Hughes7ede61e2011-09-14 18:18:06 -070091template Array* Decode<Array*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -070092template Class* Decode<Class*>(JNIEnv*, jobject);
93template ClassLoader* Decode<ClassLoader*>(JNIEnv*, jobject);
94template Object* Decode<Object*>(JNIEnv*, jobject);
Elliott Hughes418d20f2011-09-22 14:00:39 -070095template ObjectArray<Class>* Decode<ObjectArray<Class>*>(JNIEnv*, jobject);
96template ObjectArray<Object>* Decode<ObjectArray<Object>*>(JNIEnv*, jobject);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -070097template ObjectArray<StackTraceElement>* Decode<ObjectArray<StackTraceElement>*>(JNIEnv*, jobject);
Elliott Hughes726079d2011-10-07 18:43:44 -070098template String* Decode<String*>(JNIEnv*, jobject);
99template Throwable* Decode<Throwable*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700100
101namespace {
102
Elliott Hughescdf53122011-08-19 15:46:09 -0700103jweak AddWeakGlobalReference(ScopedJniThreadState& ts, Object* obj) {
104 if (obj == NULL) {
105 return NULL;
106 }
Elliott Hughes75770752011-08-24 17:52:38 -0700107 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700108 IndirectReferenceTable& weak_globals = vm->weak_globals;
109 MutexLock mu(vm->weak_globals_lock);
110 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
111 return reinterpret_cast<jweak>(ref);
112}
113
Elliott Hughesbf86d042011-08-31 17:53:14 -0700114// For internal use.
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700115template<typename T>
116T Decode(ScopedJniThreadState& ts, jobject obj) {
Ian Rogers408f79a2011-08-23 18:22:33 -0700117 return reinterpret_cast<T>(ts.Self()->DecodeJObject(obj));
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700118}
119
Elliott Hughes418d20f2011-09-22 14:00:39 -0700120byte* CreateArgArray(JNIEnv* public_env, Method* method, va_list ap) {
121 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700122 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700123 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700124 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700125 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
126 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700127 case 'Z':
128 case 'B':
129 case 'C':
130 case 'S':
131 case 'I':
132 *reinterpret_cast<int32_t*>(&arg_array[offset]) = va_arg(ap, jint);
133 offset += 4;
134 break;
135 case 'F':
136 *reinterpret_cast<float*>(&arg_array[offset]) = va_arg(ap, jdouble);
137 offset += 4;
138 break;
139 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700140 Object* obj = Decode<Object*>(env, va_arg(ap, jobject));
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700141 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
142 offset += sizeof(Object*);
143 break;
144 }
145 case 'D':
146 *reinterpret_cast<double*>(&arg_array[offset]) = va_arg(ap, jdouble);
147 offset += 8;
148 break;
149 case 'J':
150 *reinterpret_cast<int64_t*>(&arg_array[offset]) = va_arg(ap, jlong);
151 offset += 8;
152 break;
153 }
154 }
155 return arg_array.release();
156}
157
Elliott Hughes418d20f2011-09-22 14:00:39 -0700158byte* CreateArgArray(JNIEnv* public_env, Method* method, jvalue* args) {
159 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700160 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700161 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700162 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700163 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
164 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700165 case 'Z':
166 case 'B':
167 case 'C':
168 case 'S':
169 case 'I':
170 *reinterpret_cast<uint32_t*>(&arg_array[offset]) = args[i - 1].i;
171 offset += 4;
172 break;
173 case 'F':
174 *reinterpret_cast<float*>(&arg_array[offset]) = args[i - 1].f;
175 offset += 4;
176 break;
177 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700178 Object* obj = Decode<Object*>(env, args[i - 1].l);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700179 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
180 offset += sizeof(Object*);
181 break;
182 }
183 case 'D':
184 *reinterpret_cast<double*>(&arg_array[offset]) = args[i - 1].d;
185 offset += 8;
186 break;
187 case 'J':
188 *reinterpret_cast<uint64_t*>(&arg_array[offset]) = args[i - 1].j;
189 offset += 8;
190 break;
191 }
192 }
193 return arg_array.release();
194}
195
Elliott Hughes418d20f2011-09-22 14:00:39 -0700196JValue InvokeWithArgArray(JNIEnv* public_env, Object* receiver, Method* method, byte* args) {
197 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700198 JValue result;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700199 method->Invoke(env->self, receiver, args, &result);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700200 return result;
201}
202
Elliott Hughes418d20f2011-09-22 14:00:39 -0700203JValue InvokeWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
204 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
205 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700206 Method* method = DecodeMethod(mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700207 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
208 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700209}
210
Elliott Hughes75770752011-08-24 17:52:38 -0700211Method* FindVirtualMethod(Object* receiver, Method* method) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700212 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700213}
214
Elliott Hughes418d20f2011-09-22 14:00:39 -0700215JValue InvokeVirtualOrInterfaceWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
216 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
217 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700218 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
220 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700221}
222
Elliott Hughes418d20f2011-09-22 14:00:39 -0700223JValue InvokeVirtualOrInterfaceWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
224 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
225 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700226 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700227 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
228 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Carl Shapiroea4dca82011-08-01 13:45:38 -0700229}
230
Elliott Hughes6b436852011-08-12 10:16:44 -0700231// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
232// separated with slashes but aren't wrapped with "L;" like regular descriptors
233// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
234// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
235// supported names with dots too (such as "a.b.C").
236std::string NormalizeJniClassDescriptor(const char* name) {
237 std::string result;
238 // Add the missing "L;" if necessary.
239 if (name[0] == '[') {
240 result = name;
241 } else {
242 result += 'L';
243 result += name;
244 result += ';';
245 }
246 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700247 if (result.find('.') != std::string::npos) {
248 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
249 << "\"" << name << "\"";
250 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700251 }
252 return result;
253}
254
Elliott Hughes14134a12011-09-30 16:55:51 -0700255void ThrowNoSuchMethodError(ScopedJniThreadState& ts, Class* c, const char* name, const char* sig, const char* kind) {
256 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700257 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
Elliott Hughes14134a12011-09-30 16:55:51 -0700258 "no %s method \"%s.%s%s\"", kind, class_descriptor.c_str(), name, sig);
259}
260
Elliott Hughescdf53122011-08-19 15:46:09 -0700261jmethodID FindMethodID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
262 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700263 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700264 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700265 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700266
267 Method* method = NULL;
268 if (is_static) {
269 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700270 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700271 method = c->FindVirtualMethod(name, sig);
272 if (method == NULL) {
273 // No virtual method matching the signature. Search declared
274 // private methods and constructors.
275 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700276 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700277 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700278
Elliott Hughescdf53122011-08-19 15:46:09 -0700279 if (method == NULL || method->IsStatic() != is_static) {
Elliott Hughes14134a12011-09-30 16:55:51 -0700280 ThrowNoSuchMethodError(ts, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700281 return NULL;
282 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700283
Elliott Hughes418d20f2011-09-22 14:00:39 -0700284 method->InitJavaFields();
285
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700286 return EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700287}
288
Elliott Hughescdf53122011-08-19 15:46:09 -0700289jfieldID FindFieldID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
290 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700291 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700292 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700293 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700294
295 Field* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296 Class* field_type;
297 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
298 if (sig[1] != '\0') {
299 // TODO: need to get the appropriate ClassLoader.
300 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
301 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700302 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700304 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305 if (field_type == NULL) {
306 // Failed to find type from the signature of the field.
Ian Rogersb17d08b2011-09-02 16:16:49 -0700307 DCHECK(ts.Self()->IsExceptionPending());
308 ts.Self()->ClearException();
309 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700310 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Ian Rogersb17d08b2011-09-02 16:16:49 -0700311 "no type \"%s\" found and so no field \"%s\" could be found in class "
312 "\"%s\" or its superclasses", sig, name, class_descriptor.c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700313 return NULL;
314 }
315 if (is_static) {
316 field = c->FindStaticField(name, field_type);
317 } else {
318 field = c->FindInstanceField(name, field_type);
319 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700320 if (field == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700321 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700322 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Elliott Hughescdf53122011-08-19 15:46:09 -0700323 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses", sig,
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700324 name, class_descriptor.c_str());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700325 return NULL;
326 }
Elliott Hughes80609252011-09-23 17:24:51 -0700327 field->InitJavaFields();
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700328 return EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700329}
330
Elliott Hughes75770752011-08-24 17:52:38 -0700331void PinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
332 JavaVMExt* vm = ts.Vm();
333 MutexLock mu(vm->pins_lock);
334 vm->pin_table.Add(array);
335}
336
337void UnpinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
338 JavaVMExt* vm = ts.Vm();
339 MutexLock mu(vm->pins_lock);
340 vm->pin_table.Remove(array);
341}
342
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700343template<typename JniT, typename ArtT>
344JniT NewPrimitiveArray(ScopedJniThreadState& ts, jsize length) {
345 CHECK_GE(length, 0); // TODO: ReportJniError
346 ArtT* result = ArtT::Alloc(length);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700347 return AddLocalReference<JniT>(ts.Env(), result);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700348}
349
Elliott Hughes75770752011-08-24 17:52:38 -0700350template <typename ArrayT, typename CArrayT, typename ArtArrayT>
351CArrayT GetPrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jboolean* is_copy) {
352 ArtArrayT* array = Decode<ArtArrayT*>(ts, java_array);
353 PinPrimitiveArray(ts, array);
354 if (is_copy != NULL) {
355 *is_copy = JNI_FALSE;
356 }
357 return array->GetData();
358}
359
360template <typename ArrayT>
361void ReleasePrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jint mode) {
362 if (mode != JNI_COMMIT) {
363 Array* array = Decode<Array*>(ts, java_array);
364 UnpinPrimitiveArray(ts, array);
365 }
366}
367
Elliott Hughes814e4032011-08-23 12:07:56 -0700368void ThrowAIOOBE(ScopedJniThreadState& ts, Array* array, jsize start, jsize length, const char* identifier) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700369 std::string type(PrettyTypeOf(array));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700370 ts.Self()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes814e4032011-08-23 12:07:56 -0700371 "%s offset=%d length=%d %s.length=%d",
372 type.c_str(), start, length, identifier, array->GetLength());
373}
Elliott Hughesb465ab02011-08-24 11:21:21 -0700374void ThrowSIOOBE(ScopedJniThreadState& ts, jsize start, jsize length, jsize array_length) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700375 ts.Self()->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Elliott Hughesb465ab02011-08-24 11:21:21 -0700376 "offset=%d length=%d string.length()=%d", start, length, array_length);
377}
Elliott Hughes814e4032011-08-23 12:07:56 -0700378
379template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700380void GetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700381 ArrayT* array = Decode<ArrayT*>(ts, java_array);
382 if (start < 0 || length < 0 || start + length > array->GetLength()) {
383 ThrowAIOOBE(ts, array, start, length, "src");
384 } else {
385 JavaT* data = array->GetData();
386 memcpy(buf, data + start, length * sizeof(JavaT));
387 }
388}
389
390template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700391void SetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, const JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700392 ArrayT* array = Decode<ArrayT*>(ts, java_array);
393 if (start < 0 || length < 0 || start + length > array->GetLength()) {
394 ThrowAIOOBE(ts, array, start, length, "dst");
395 } else {
396 JavaT* data = array->GetData();
397 memcpy(data + start, buf, length * sizeof(JavaT));
398 }
399}
400
Elliott Hughes75770752011-08-24 17:52:38 -0700401jclass InitDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700402 ScopedLocalRef<jclass> buffer_class(env, env->FindClass("java/nio/ReadWriteDirectByteBuffer"));
403 CHECK(buffer_class.get() != NULL);
404 return reinterpret_cast<jclass>(env->NewGlobalRef(buffer_class.get()));
405}
406
Elliott Hughes75770752011-08-24 17:52:38 -0700407jclass GetDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700408 static jclass buffer_class = InitDirectByteBufferClass(env);
409 return buffer_class;
410}
411
Elliott Hughes75770752011-08-24 17:52:38 -0700412jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, bool as_daemon) {
413 if (vm == NULL || p_env == NULL) {
414 return JNI_ERR;
415 }
416
417 JavaVMAttachArgs* in_args = static_cast<JavaVMAttachArgs*>(thr_args);
418 JavaVMAttachArgs args;
419 if (thr_args == NULL) {
420 // Allow the v1.1 calling convention.
421 args.version = JNI_VERSION_1_2;
422 args.name = NULL;
423 args.group = NULL; // TODO: get "main" thread group
424 } else {
425 args.version = in_args->version;
426 args.name = in_args->name;
427 if (in_args->group != NULL) {
428 UNIMPLEMENTED(WARNING) << "thr_args->group != NULL";
429 args.group = NULL; // TODO: decode in_args->group
430 } else {
431 args.group = NULL; // TODO: get "main" thread group
432 }
433 }
434 CHECK_GE(args.version, JNI_VERSION_1_2);
435
436 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700437 runtime->AttachCurrentThread(args.name, as_daemon);
438 *p_env = Thread::Current()->GetJniEnv();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700439 return JNI_OK;
Elliott Hughes75770752011-08-24 17:52:38 -0700440}
441
Elliott Hughes79082e32011-08-25 12:07:32 -0700442class SharedLibrary {
443 public:
444 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
445 : path_(path),
446 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700447 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700448 jni_on_load_lock_("JNI_OnLoad lock"),
Elliott Hughes5f791332011-09-15 17:45:30 -0700449 jni_on_load_cond_("JNI_OnLoad"),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700450 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700451 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700452 }
453
Elliott Hughes79082e32011-08-25 12:07:32 -0700454 Object* GetClassLoader() {
455 return class_loader_;
456 }
457
458 std::string GetPath() {
459 return path_;
460 }
461
462 /*
463 * Check the result of an earlier call to JNI_OnLoad on this library. If
464 * the call has not yet finished in another thread, wait for it.
465 */
466 bool CheckOnLoadResult(JavaVMExt* vm) {
467 Thread* self = Thread::Current();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700468 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700469 // Check this so we don't end up waiting for ourselves. We need
470 // to return "true" so the caller can continue.
471 LOG(INFO) << *self << " recursive attempt to load library "
472 << "\"" << path_ << "\"";
473 return true;
474 }
475
476 MutexLock mu(jni_on_load_lock_);
477 while (jni_on_load_result_ == kPending) {
478 if (vm->verbose_jni) {
479 LOG(INFO) << "[" << *self << " waiting for \"" << path_ << "\" "
480 << "JNI_OnLoad...]";
481 }
Elliott Hughes93e74e82011-09-13 11:07:03 -0700482 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughes5f791332011-09-15 17:45:30 -0700483 jni_on_load_cond_.Wait(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700484 }
485
486 bool okay = (jni_on_load_result_ == kOkay);
487 if (vm->verbose_jni) {
488 LOG(INFO) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
489 << (okay ? "succeeded" : "failed") << "]";
490 }
491 return okay;
492 }
493
494 void SetResult(bool result) {
495 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700496 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700497
498 // Broadcast a wakeup to anybody sleeping on the condition variable.
499 MutexLock mu(jni_on_load_lock_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700500 jni_on_load_cond_.Broadcast();
Elliott Hughes79082e32011-08-25 12:07:32 -0700501 }
502
503 void* FindSymbol(const std::string& symbol_name) {
504 return dlsym(handle_, symbol_name.c_str());
505 }
506
507 private:
508 enum JNI_OnLoadState {
509 kPending,
510 kFailed,
511 kOkay,
512 };
513
514 // Path to library "/system/lib/libjni.so".
515 std::string path_;
516
517 // The void* returned by dlopen(3).
518 void* handle_;
519
520 // The ClassLoader this library is associated with.
521 Object* class_loader_;
522
523 // Guards remaining items.
Elliott Hughes8daa0922011-09-11 13:46:25 -0700524 Mutex jni_on_load_lock_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700525 // Wait for JNI_OnLoad in other thread.
Elliott Hughes5f791332011-09-15 17:45:30 -0700526 ConditionVariable jni_on_load_cond_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700527 // Recursive invocation guard.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700528 uint32_t jni_on_load_thread_id_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700529 // Result of earlier JNI_OnLoad call.
530 JNI_OnLoadState jni_on_load_result_;
531};
532
Elliott Hughescdf53122011-08-19 15:46:09 -0700533} // namespace
Carl Shapiroea4dca82011-08-01 13:45:38 -0700534
Elliott Hughes79082e32011-08-25 12:07:32 -0700535// This exists mainly to keep implementation details out of the header file.
536class Libraries {
537 public:
538 Libraries() {
539 }
540
541 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700542 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700543 }
544
545 SharedLibrary* Get(const std::string& path) {
546 return libraries_[path];
547 }
548
549 void Put(const std::string& path, SharedLibrary* library) {
550 libraries_[path] = library;
551 }
552
553 // See section 11.3 "Linking Native Methods" of the JNI spec.
Brian Carlstrom16192862011-09-12 17:50:06 -0700554 void* FindNativeMethod(const Method* m, std::string& detail) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700555 std::string jni_short_name(JniShortName(m));
556 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700557 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700558 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
559 SharedLibrary* library = it->second;
560 if (library->GetClassLoader() != declaring_class_loader) {
561 // We only search libraries loaded by the appropriate ClassLoader.
562 continue;
563 }
564 // Try the short name then the long name...
565 void* fn = library->FindSymbol(jni_short_name);
566 if (fn == NULL) {
567 fn = library->FindSymbol(jni_long_name);
568 }
569 if (fn != NULL) {
570 if (Runtime::Current()->GetJavaVM()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700571 LOG(INFO) << "[Found native code for " << PrettyMethod(m)
Elliott Hughes79082e32011-08-25 12:07:32 -0700572 << " in \"" << library->GetPath() << "\"]";
573 }
574 return fn;
575 }
576 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700577 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700578 detail += PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -0700579 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700580 return NULL;
581 }
582
583 private:
584 typedef std::map<std::string, SharedLibrary*>::iterator It; // TODO: C++0x auto
585
586 std::map<std::string, SharedLibrary*> libraries_;
587};
588
Elliott Hughes418d20f2011-09-22 14:00:39 -0700589JValue InvokeWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
590 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
591 Object* receiver = Decode<Object*>(env, obj);
592 Method* method = DecodeMethod(mid);
593 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
594 return InvokeWithArgArray(env, receiver, method, arg_array.get());
595}
596
Elliott Hughescdf53122011-08-19 15:46:09 -0700597class JNI {
598 public:
Carl Shapiroea4dca82011-08-01 13:45:38 -0700599
Elliott Hughescdf53122011-08-19 15:46:09 -0700600 static jint GetVersion(JNIEnv* env) {
601 ScopedJniThreadState ts(env);
602 return JNI_VERSION_1_6;
603 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700604
Elliott Hughescdf53122011-08-19 15:46:09 -0700605 static jclass DefineClass(JNIEnv* env, const char*, jobject, const jbyte*, jsize) {
606 ScopedJniThreadState ts(env);
607 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700608 return NULL;
609 }
610
Elliott Hughescdf53122011-08-19 15:46:09 -0700611 static jclass FindClass(JNIEnv* env, const char* name) {
612 ScopedJniThreadState ts(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700613 Runtime* runtime = Runtime::Current();
614 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700615 std::string descriptor(NormalizeJniClassDescriptor(name));
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700616 Class* c = NULL;
617 if (runtime->IsStarted()) {
618 // TODO: need to get the appropriate ClassLoader.
619 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
620 c = class_linker->FindClass(descriptor, cl);
621 } else {
622 c = class_linker->FindSystemClass(descriptor);
623 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700624 return AddLocalReference<jclass>(env, c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700625 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700626
Elliott Hughescdf53122011-08-19 15:46:09 -0700627 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
628 ScopedJniThreadState ts(env);
629 Method* method = Decode<Method*>(ts, java_method);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700630 return EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700631 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700632
Elliott Hughescdf53122011-08-19 15:46:09 -0700633 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
634 ScopedJniThreadState ts(env);
635 Field* field = Decode<Field*>(ts, java_field);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700636 return EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700637 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700638
Elliott Hughescdf53122011-08-19 15:46:09 -0700639 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
640 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700641 Method* method = DecodeMethod(mid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700642 return AddLocalReference<jobject>(env, method);
Elliott Hughescdf53122011-08-19 15:46:09 -0700643 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700644
Elliott Hughescdf53122011-08-19 15:46:09 -0700645 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
646 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700647 Field* field = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700648 return AddLocalReference<jobject>(env, field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700649 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700650
Elliott Hughes37f7a402011-08-22 18:56:01 -0700651 static jclass GetObjectClass(JNIEnv* env, jobject java_object) {
652 ScopedJniThreadState ts(env);
653 Object* o = Decode<Object*>(ts, java_object);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700654 return AddLocalReference<jclass>(env, o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700655 }
656
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700657 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700658 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700659 Class* c = Decode<Class*>(ts, java_class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700660 return AddLocalReference<jclass>(env, c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700661 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700662
Elliott Hughes37f7a402011-08-22 18:56:01 -0700663 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700664 ScopedJniThreadState ts(env);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700665 Class* c1 = Decode<Class*>(ts, java_class1);
666 Class* c2 = Decode<Class*>(ts, java_class2);
667 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700668 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700669
Elliott Hughes37f7a402011-08-22 18:56:01 -0700670 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass clazz) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700671 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -0700672 CHECK_NE(static_cast<jclass>(NULL), clazz); // TODO: ReportJniError
Elliott Hughes37f7a402011-08-22 18:56:01 -0700673 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700674 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700675 return JNI_TRUE;
676 } else {
677 Object* obj = Decode<Object*>(ts, jobj);
678 Class* klass = Decode<Class*>(ts, clazz);
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700679 return obj->InstanceOf(klass) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700680 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700681 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700682
Elliott Hughes37f7a402011-08-22 18:56:01 -0700683 static jint Throw(JNIEnv* env, jthrowable java_exception) {
684 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700685 Throwable* exception = Decode<Throwable*>(ts, java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700686 if (exception == NULL) {
687 return JNI_ERR;
688 }
689 ts.Self()->SetException(exception);
690 return JNI_OK;
691 }
692
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700693 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Elliott Hughes37f7a402011-08-22 18:56:01 -0700694 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700695 // TODO: check for a pending exception to decide what constructor to call.
696 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
697 if (mid == NULL) {
698 return JNI_ERR;
699 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700700 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700701 if (msg != NULL && s.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700702 return JNI_ERR;
703 }
704
705 jvalue args[1];
Elliott Hughes72025e52011-08-23 17:50:30 -0700706 args[0].l = s.get();
707 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(c, mid, args)));
708 if (exception.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700709 return JNI_ERR;
710 }
711
Elliott Hughes72025e52011-08-23 17:50:30 -0700712 ts.Self()->SetException(Decode<Throwable*>(ts, exception.get()));
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700713
Elliott Hughes37f7a402011-08-22 18:56:01 -0700714 return JNI_OK;
715 }
716
717 static jboolean ExceptionCheck(JNIEnv* env) {
718 ScopedJniThreadState ts(env);
719 return ts.Self()->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
720 }
721
722 static void ExceptionClear(JNIEnv* env) {
723 ScopedJniThreadState ts(env);
724 ts.Self()->ClearException();
725 }
726
727 static void ExceptionDescribe(JNIEnv* env) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700728 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700729
730 Thread* self = ts.Self();
731 Throwable* original_exception = self->GetException();
732 self->ClearException();
733
Elliott Hughesbf86d042011-08-31 17:53:14 -0700734 ScopedLocalRef<jthrowable> exception(env, AddLocalReference<jthrowable>(env, original_exception));
Elliott Hughes72025e52011-08-23 17:50:30 -0700735 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
736 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
737 if (mid == NULL) {
738 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Elliott Hughes54e7df12011-09-16 11:47:04 -0700739 << PrettyTypeOf(original_exception);
Elliott Hughes72025e52011-08-23 17:50:30 -0700740 } else {
741 env->CallVoidMethod(exception.get(), mid);
742 if (self->IsExceptionPending()) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700743 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(self->GetException())
Elliott Hughes72025e52011-08-23 17:50:30 -0700744 << " thrown while calling printStackTrace";
745 self->ClearException();
746 }
747 }
748
749 self->SetException(original_exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700750 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700751
Elliott Hughescdf53122011-08-19 15:46:09 -0700752 static jthrowable ExceptionOccurred(JNIEnv* env) {
753 ScopedJniThreadState ts(env);
754 Object* exception = ts.Self()->GetException();
755 if (exception == NULL) {
756 return NULL;
757 } else {
758 // TODO: if adding a local reference failing causes the VM to abort
759 // then the following check will never occur.
Elliott Hughesbf86d042011-08-31 17:53:14 -0700760 jthrowable localException = AddLocalReference<jthrowable>(env, exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700761 if (localException == NULL) {
762 // We were unable to add a new local reference, and threw a new
763 // exception. We can't return "exception", because it's not a
764 // local reference. So we have to return NULL, indicating that
765 // there was no exception, even though it's pretty much raining
766 // exceptions in here.
767 LOG(WARNING) << "JNI WARNING: addLocal/exception combo";
768 }
769 return localException;
770 }
771 }
772
Elliott Hughescdf53122011-08-19 15:46:09 -0700773 static void FatalError(JNIEnv* env, const char* msg) {
774 ScopedJniThreadState ts(env);
775 LOG(FATAL) << "JNI FatalError called: " << msg;
776 }
777
778 static jint PushLocalFrame(JNIEnv* env, jint cap) {
779 ScopedJniThreadState ts(env);
780 UNIMPLEMENTED(WARNING) << "ignoring PushLocalFrame(" << cap << ")";
781 return JNI_OK;
782 }
783
784 static jobject PopLocalFrame(JNIEnv* env, jobject res) {
785 ScopedJniThreadState ts(env);
786 UNIMPLEMENTED(WARNING) << "ignoring PopLocalFrame " << res;
787 return res;
788 }
789
Elliott Hughes72025e52011-08-23 17:50:30 -0700790 static jint EnsureLocalCapacity(JNIEnv* env, jint cap) {
791 ScopedJniThreadState ts(env);
792 UNIMPLEMENTED(WARNING) << "ignoring EnsureLocalCapacity(" << cap << ")";
793 return 0;
794 }
795
Elliott Hughescdf53122011-08-19 15:46:09 -0700796 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
797 ScopedJniThreadState ts(env);
798 if (obj == NULL) {
799 return NULL;
800 }
801
Elliott Hughes75770752011-08-24 17:52:38 -0700802 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700803 IndirectReferenceTable& globals = vm->globals;
804 MutexLock mu(vm->globals_lock);
805 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, Decode<Object*>(ts, obj));
806 return reinterpret_cast<jobject>(ref);
807 }
808
809 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
810 ScopedJniThreadState ts(env);
811 if (obj == NULL) {
812 return;
813 }
814
Elliott Hughes75770752011-08-24 17:52:38 -0700815 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700816 IndirectReferenceTable& globals = vm->globals;
817 MutexLock mu(vm->globals_lock);
818
819 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
820 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
821 << "failed to find entry";
822 }
823 }
824
825 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
826 ScopedJniThreadState ts(env);
827 return AddWeakGlobalReference(ts, Decode<Object*>(ts, obj));
828 }
829
830 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
831 ScopedJniThreadState ts(env);
832 if (obj == NULL) {
833 return;
834 }
835
Elliott Hughes75770752011-08-24 17:52:38 -0700836 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700837 IndirectReferenceTable& weak_globals = vm->weak_globals;
838 MutexLock mu(vm->weak_globals_lock);
839
840 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
841 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
842 << "failed to find entry";
843 }
844 }
845
846 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
847 ScopedJniThreadState ts(env);
848 if (obj == NULL) {
849 return NULL;
850 }
851
852 IndirectReferenceTable& locals = ts.Env()->locals;
853
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700854 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700855 IndirectRef ref = locals.Add(cookie, Decode<Object*>(ts, obj));
856 return reinterpret_cast<jobject>(ref);
857 }
858
859 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
860 ScopedJniThreadState ts(env);
861 if (obj == NULL) {
862 return;
863 }
864
865 IndirectReferenceTable& locals = ts.Env()->locals;
866
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700867 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700868 if (!locals.Remove(cookie, obj)) {
869 // Attempting to delete a local reference that is not in the
870 // topmost local reference frame is a no-op. DeleteLocalRef returns
871 // void and doesn't throw any exceptions, but we should probably
872 // complain about it so the user will notice that things aren't
873 // going quite the way they expect.
874 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
875 << "failed to find entry";
876 }
877 }
878
879 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
880 ScopedJniThreadState ts(env);
881 return (Decode<Object*>(ts, obj1) == Decode<Object*>(ts, obj2))
882 ? JNI_TRUE : JNI_FALSE;
883 }
884
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700885 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700886 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700887 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700888 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700889 return NULL;
890 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700891 return AddLocalReference<jobject>(env, c->AllocObject());
Elliott Hughescdf53122011-08-19 15:46:09 -0700892 }
893
Elliott Hughes72025e52011-08-23 17:50:30 -0700894 static jobject NewObject(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700895 ScopedJniThreadState ts(env);
896 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700897 va_start(args, mid);
898 jobject result = NewObjectV(env, clazz, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700899 va_end(args);
900 return result;
901 }
902
Elliott Hughes72025e52011-08-23 17:50:30 -0700903 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700904 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700905 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700906 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700907 return NULL;
908 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700909 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700910 jobject local_result = AddLocalReference<jobject>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700911 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700912 return local_result;
913 }
914
Elliott Hughes72025e52011-08-23 17:50:30 -0700915 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700916 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700917 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700918 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700919 return NULL;
920 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700921 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700922 jobject local_result = AddLocalReference<jobjectArray>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700923 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700924 return local_result;
925 }
926
Elliott Hughescdf53122011-08-19 15:46:09 -0700927 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
928 ScopedJniThreadState ts(env);
929 return FindMethodID(ts, c, name, sig, false);
930 }
931
932 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
933 ScopedJniThreadState ts(env);
934 return FindMethodID(ts, c, name, sig, true);
935 }
936
Elliott Hughes72025e52011-08-23 17:50:30 -0700937 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700938 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700939 va_list ap;
940 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700941 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700942 va_end(ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700943 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700944 }
945
Elliott Hughes72025e52011-08-23 17:50:30 -0700946 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700947 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700948 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700949 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700950 }
951
Elliott Hughes72025e52011-08-23 17:50:30 -0700952 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700953 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700954 JValue result = InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700955 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700956 }
957
Elliott Hughes72025e52011-08-23 17:50:30 -0700958 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700959 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700960 va_list ap;
961 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700962 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700963 va_end(ap);
964 return result.z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700965 }
966
Elliott Hughes72025e52011-08-23 17:50:30 -0700967 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700968 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700969 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700970 }
971
Elliott Hughes72025e52011-08-23 17:50:30 -0700972 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700973 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700974 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700975 }
976
Elliott Hughes72025e52011-08-23 17:50:30 -0700977 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700978 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700979 va_list ap;
980 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700981 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700982 va_end(ap);
983 return result.b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700984 }
985
Elliott Hughes72025e52011-08-23 17:50:30 -0700986 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700987 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700988 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700989 }
990
Elliott Hughes72025e52011-08-23 17:50:30 -0700991 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700992 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700993 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700994 }
995
Elliott Hughes72025e52011-08-23 17:50:30 -0700996 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700997 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700998 va_list ap;
999 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001000 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001001 va_end(ap);
1002 return result.c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001003 }
1004
Elliott Hughes72025e52011-08-23 17:50:30 -07001005 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001006 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001007 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001008 }
1009
Elliott Hughes72025e52011-08-23 17:50:30 -07001010 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001011 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001012 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001013 }
1014
Elliott Hughes72025e52011-08-23 17:50:30 -07001015 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001016 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001017 va_list ap;
1018 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001019 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001020 va_end(ap);
1021 return result.d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001022 }
1023
Elliott Hughes72025e52011-08-23 17:50:30 -07001024 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001025 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001026 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001027 }
1028
Elliott Hughes72025e52011-08-23 17:50:30 -07001029 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001030 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001031 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001032 }
1033
Elliott Hughes72025e52011-08-23 17:50:30 -07001034 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001035 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001036 va_list ap;
1037 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001038 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001039 va_end(ap);
1040 return result.f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001041 }
1042
Elliott Hughes72025e52011-08-23 17:50:30 -07001043 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001044 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001045 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001046 }
1047
Elliott Hughes72025e52011-08-23 17:50:30 -07001048 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001049 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001050 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001051 }
1052
Elliott Hughes72025e52011-08-23 17:50:30 -07001053 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001054 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001055 va_list ap;
1056 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001057 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001058 va_end(ap);
1059 return result.i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001060 }
1061
Elliott Hughes72025e52011-08-23 17:50:30 -07001062 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001063 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001064 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001065 }
1066
Elliott Hughes72025e52011-08-23 17:50:30 -07001067 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001068 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001069 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001070 }
1071
Elliott Hughes72025e52011-08-23 17:50:30 -07001072 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001073 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001074 va_list ap;
1075 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001076 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001077 va_end(ap);
1078 return result.j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001079 }
1080
Elliott Hughes72025e52011-08-23 17:50:30 -07001081 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001082 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001083 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001084 }
1085
Elliott Hughes72025e52011-08-23 17:50:30 -07001086 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001087 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001088 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001089 }
1090
Elliott Hughes72025e52011-08-23 17:50:30 -07001091 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001092 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001093 va_list ap;
1094 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001095 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001096 va_end(ap);
1097 return result.s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001098 }
1099
Elliott Hughes72025e52011-08-23 17:50:30 -07001100 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001101 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001102 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001103 }
1104
Elliott Hughes72025e52011-08-23 17:50:30 -07001105 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001106 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001107 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001108 }
1109
Elliott Hughes72025e52011-08-23 17:50:30 -07001110 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001111 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001112 va_list ap;
1113 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001114 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001115 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001116 }
1117
Elliott Hughes72025e52011-08-23 17:50:30 -07001118 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001119 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001120 InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001121 }
1122
Elliott Hughes72025e52011-08-23 17:50:30 -07001123 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001124 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001125 InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001126 }
1127
1128 static jobject CallNonvirtualObjectMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001129 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001130 ScopedJniThreadState ts(env);
1131 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001132 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001133 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001134 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001135 va_end(ap);
1136 return local_result;
1137 }
1138
1139 static jobject CallNonvirtualObjectMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001140 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001141 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001142 JValue result = InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001143 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001144 }
1145
1146 static jobject CallNonvirtualObjectMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001147 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001148 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001149 JValue result = InvokeWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001150 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001151 }
1152
1153 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001154 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001155 ScopedJniThreadState ts(env);
1156 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001157 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001158 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001159 va_end(ap);
1160 return result.z;
1161 }
1162
1163 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001164 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001165 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001166 return InvokeWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001167 }
1168
1169 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001170 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001171 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001172 return InvokeWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001173 }
1174
1175 static jbyte CallNonvirtualByteMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001176 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001177 ScopedJniThreadState ts(env);
1178 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001179 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001180 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001181 va_end(ap);
1182 return result.b;
1183 }
1184
1185 static jbyte CallNonvirtualByteMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001186 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001187 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001188 return InvokeWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001189 }
1190
1191 static jbyte CallNonvirtualByteMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001192 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001193 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001194 return InvokeWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001195 }
1196
1197 static jchar CallNonvirtualCharMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001198 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001199 ScopedJniThreadState ts(env);
1200 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001201 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001202 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001203 va_end(ap);
1204 return result.c;
1205 }
1206
1207 static jchar CallNonvirtualCharMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001208 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001209 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001210 return InvokeWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001211 }
1212
1213 static jchar CallNonvirtualCharMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001214 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001215 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001216 return InvokeWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001217 }
1218
1219 static jshort CallNonvirtualShortMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001220 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001221 ScopedJniThreadState ts(env);
1222 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001223 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001224 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001225 va_end(ap);
1226 return result.s;
1227 }
1228
1229 static jshort CallNonvirtualShortMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001230 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001231 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001232 return InvokeWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001233 }
1234
1235 static jshort CallNonvirtualShortMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001236 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001237 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001238 return InvokeWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001239 }
1240
Elliott Hughes418d20f2011-09-22 14:00:39 -07001241 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001242 ScopedJniThreadState ts(env);
1243 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001244 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001245 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001246 va_end(ap);
1247 return result.i;
1248 }
1249
1250 static jint CallNonvirtualIntMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001251 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001252 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001253 return InvokeWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001254 }
1255
1256 static jint CallNonvirtualIntMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001257 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001258 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001259 return InvokeWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001260 }
1261
1262 static jlong CallNonvirtualLongMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001263 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001264 ScopedJniThreadState ts(env);
1265 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001266 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001267 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001268 va_end(ap);
1269 return result.j;
1270 }
1271
1272 static jlong CallNonvirtualLongMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001273 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001274 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001275 return InvokeWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001276 }
1277
1278 static jlong CallNonvirtualLongMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001279 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001280 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001281 return InvokeWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001282 }
1283
1284 static jfloat CallNonvirtualFloatMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001285 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001286 ScopedJniThreadState ts(env);
1287 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001288 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001289 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001290 va_end(ap);
1291 return result.f;
1292 }
1293
1294 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001295 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001296 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001297 return InvokeWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001298 }
1299
1300 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001301 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001302 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001303 return InvokeWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001304 }
1305
1306 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001307 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001308 ScopedJniThreadState ts(env);
1309 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001310 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001311 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001312 va_end(ap);
1313 return result.d;
1314 }
1315
1316 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001317 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001318 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001319 return InvokeWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001320 }
1321
1322 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001323 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001324 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001325 return InvokeWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001326 }
1327
1328 static void CallNonvirtualVoidMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001329 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001330 ScopedJniThreadState ts(env);
1331 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001332 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001333 InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001334 va_end(ap);
1335 }
1336
1337 static void CallNonvirtualVoidMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001338 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001339 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001340 InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001341 }
1342
1343 static void CallNonvirtualVoidMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001344 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001345 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001346 InvokeWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001347 }
1348
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001349 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001350 ScopedJniThreadState ts(env);
1351 return FindFieldID(ts, c, name, sig, false);
1352 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001353
1354
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001355 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001356 ScopedJniThreadState ts(env);
1357 return FindFieldID(ts, c, name, sig, true);
1358 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001359
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001360 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001361 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001362 Object* o = Decode<Object*>(ts, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001363 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001364 return AddLocalReference<jobject>(env, f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001365 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001366
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001367 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001368 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001369 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001370 return AddLocalReference<jobject>(env, f->GetObject(NULL));
Elliott Hughescdf53122011-08-19 15:46:09 -07001371 }
1372
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001373 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001374 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001375 Object* o = Decode<Object*>(ts, java_object);
1376 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001377 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001378 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001379 }
1380
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001381 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001382 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001383 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001384 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001385 f->SetObject(NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001386 }
1387
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001388#define GET_PRIMITIVE_FIELD(fn, instance) \
1389 ScopedJniThreadState ts(env); \
1390 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001391 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001392 return f->fn(o)
1393
1394#define SET_PRIMITIVE_FIELD(fn, instance, value) \
1395 ScopedJniThreadState ts(env); \
1396 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001397 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001398 f->fn(o, value)
1399
1400 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
1401 GET_PRIMITIVE_FIELD(GetBoolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001402 }
1403
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001404 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
1405 GET_PRIMITIVE_FIELD(GetByte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001406 }
1407
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001408 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
1409 GET_PRIMITIVE_FIELD(GetChar, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001410 }
1411
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001412 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
1413 GET_PRIMITIVE_FIELD(GetShort, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001414 }
1415
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001416 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
1417 GET_PRIMITIVE_FIELD(GetInt, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001418 }
1419
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001420 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
1421 GET_PRIMITIVE_FIELD(GetLong, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001422 }
1423
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001424 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
1425 GET_PRIMITIVE_FIELD(GetFloat, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001426 }
1427
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001428 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
1429 GET_PRIMITIVE_FIELD(GetDouble, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001430 }
1431
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001432 static jboolean GetStaticBooleanField(JNIEnv* env, jclass clazz, jfieldID fid) {
1433 GET_PRIMITIVE_FIELD(GetBoolean, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001434 }
1435
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001436 static jbyte GetStaticByteField(JNIEnv* env, jclass clazz, jfieldID fid) {
1437 GET_PRIMITIVE_FIELD(GetByte, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001438 }
1439
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001440 static jchar GetStaticCharField(JNIEnv* env, jclass clazz, jfieldID fid) {
1441 GET_PRIMITIVE_FIELD(GetChar, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001442 }
1443
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001444 static jshort GetStaticShortField(JNIEnv* env, jclass clazz, jfieldID fid) {
1445 GET_PRIMITIVE_FIELD(GetShort, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001446 }
1447
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001448 static jint GetStaticIntField(JNIEnv* env, jclass clazz, jfieldID fid) {
1449 GET_PRIMITIVE_FIELD(GetInt, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001450 }
1451
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001452 static jlong GetStaticLongField(JNIEnv* env, jclass clazz, jfieldID fid) {
1453 GET_PRIMITIVE_FIELD(GetLong, NULL);
1454 }
1455
1456 static jfloat GetStaticFloatField(JNIEnv* env, jclass clazz, jfieldID fid) {
1457 GET_PRIMITIVE_FIELD(GetFloat, NULL);
1458 }
1459
1460 static jdouble GetStaticDoubleField(JNIEnv* env, jclass clazz, jfieldID fid) {
1461 GET_PRIMITIVE_FIELD(GetDouble, NULL);
1462 }
1463
1464 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
1465 SET_PRIMITIVE_FIELD(SetBoolean, obj, v);
1466 }
1467
1468 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
1469 SET_PRIMITIVE_FIELD(SetByte, obj, v);
1470 }
1471
1472 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
1473 SET_PRIMITIVE_FIELD(SetChar, obj, v);
1474 }
1475
1476 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
1477 SET_PRIMITIVE_FIELD(SetFloat, obj, v);
1478 }
1479
1480 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
1481 SET_PRIMITIVE_FIELD(SetDouble, obj, v);
1482 }
1483
1484 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
1485 SET_PRIMITIVE_FIELD(SetInt, obj, v);
1486 }
1487
1488 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
1489 SET_PRIMITIVE_FIELD(SetLong, obj, v);
1490 }
1491
1492 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
1493 SET_PRIMITIVE_FIELD(SetShort, obj, v);
1494 }
1495
1496 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
1497 SET_PRIMITIVE_FIELD(SetBoolean, NULL, v);
1498 }
1499
1500 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
1501 SET_PRIMITIVE_FIELD(SetByte, NULL, v);
1502 }
1503
1504 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
1505 SET_PRIMITIVE_FIELD(SetChar, NULL, v);
1506 }
1507
1508 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
1509 SET_PRIMITIVE_FIELD(SetFloat, NULL, v);
1510 }
1511
1512 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
1513 SET_PRIMITIVE_FIELD(SetDouble, NULL, v);
1514 }
1515
1516 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
1517 SET_PRIMITIVE_FIELD(SetInt, NULL, v);
1518 }
1519
1520 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
1521 SET_PRIMITIVE_FIELD(SetLong, NULL, v);
1522 }
1523
1524 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
1525 SET_PRIMITIVE_FIELD(SetShort, NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001526 }
1527
Elliott Hughes418d20f2011-09-22 14:00:39 -07001528 static jobject CallStaticObjectMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001529 ScopedJniThreadState ts(env);
1530 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001531 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001532 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001533 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001534 va_end(ap);
1535 return local_result;
1536 }
1537
Elliott Hughes418d20f2011-09-22 14:00:39 -07001538 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001539 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001540 JValue result = InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001541 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001542 }
1543
Elliott Hughes418d20f2011-09-22 14:00:39 -07001544 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001545 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001546 JValue result = InvokeWithJValues(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001547 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001548 }
1549
Elliott Hughes418d20f2011-09-22 14:00:39 -07001550 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001551 ScopedJniThreadState ts(env);
1552 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001553 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001554 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001555 va_end(ap);
1556 return result.z;
1557 }
1558
Elliott Hughes418d20f2011-09-22 14:00:39 -07001559 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001560 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001561 return InvokeWithVarArgs(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001562 }
1563
Elliott Hughes418d20f2011-09-22 14:00:39 -07001564 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001565 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001566 return InvokeWithJValues(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001567 }
1568
Elliott Hughes72025e52011-08-23 17:50:30 -07001569 static jbyte CallStaticByteMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001570 ScopedJniThreadState ts(env);
1571 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001572 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001573 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001574 va_end(ap);
1575 return result.b;
1576 }
1577
Elliott Hughes418d20f2011-09-22 14:00:39 -07001578 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001579 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001580 return InvokeWithVarArgs(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001581 }
1582
Elliott Hughes418d20f2011-09-22 14:00:39 -07001583 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001584 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001585 return InvokeWithJValues(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001586 }
1587
Elliott Hughes72025e52011-08-23 17:50:30 -07001588 static jchar CallStaticCharMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001589 ScopedJniThreadState ts(env);
1590 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001591 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001592 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001593 va_end(ap);
1594 return result.c;
1595 }
1596
Elliott Hughes418d20f2011-09-22 14:00:39 -07001597 static jchar CallStaticCharMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001598 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001599 return InvokeWithVarArgs(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001600 }
1601
Elliott Hughes418d20f2011-09-22 14:00:39 -07001602 static jchar CallStaticCharMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001603 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001604 return InvokeWithJValues(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001605 }
1606
Elliott Hughes72025e52011-08-23 17:50:30 -07001607 static jshort CallStaticShortMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001608 ScopedJniThreadState ts(env);
1609 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001610 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001611 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001612 va_end(ap);
1613 return result.s;
1614 }
1615
Elliott Hughes418d20f2011-09-22 14:00:39 -07001616 static jshort CallStaticShortMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001617 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001618 return InvokeWithVarArgs(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001619 }
1620
Elliott Hughes418d20f2011-09-22 14:00:39 -07001621 static jshort CallStaticShortMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001622 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001623 return InvokeWithJValues(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001624 }
1625
Elliott Hughes72025e52011-08-23 17:50:30 -07001626 static jint CallStaticIntMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001627 ScopedJniThreadState ts(env);
1628 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001629 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001630 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001631 va_end(ap);
1632 return result.i;
1633 }
1634
Elliott Hughes418d20f2011-09-22 14:00:39 -07001635 static jint CallStaticIntMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001636 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001637 return InvokeWithVarArgs(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001638 }
1639
Elliott Hughes418d20f2011-09-22 14:00:39 -07001640 static jint CallStaticIntMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001641 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001642 return InvokeWithJValues(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001643 }
1644
Elliott Hughes72025e52011-08-23 17:50:30 -07001645 static jlong CallStaticLongMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001646 ScopedJniThreadState ts(env);
1647 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001648 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001649 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001650 va_end(ap);
1651 return result.j;
1652 }
1653
Elliott Hughes418d20f2011-09-22 14:00:39 -07001654 static jlong CallStaticLongMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001655 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001656 return InvokeWithVarArgs(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001657 }
1658
Elliott Hughes418d20f2011-09-22 14:00:39 -07001659 static jlong CallStaticLongMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001660 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001661 return InvokeWithJValues(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001662 }
1663
Elliott Hughes72025e52011-08-23 17:50:30 -07001664 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001665 ScopedJniThreadState ts(env);
1666 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001667 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001668 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001669 va_end(ap);
1670 return result.f;
1671 }
1672
Elliott Hughes418d20f2011-09-22 14:00:39 -07001673 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001674 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001675 return InvokeWithVarArgs(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001676 }
1677
Elliott Hughes418d20f2011-09-22 14:00:39 -07001678 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001679 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001680 return InvokeWithJValues(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001681 }
1682
Elliott Hughes72025e52011-08-23 17:50:30 -07001683 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001684 ScopedJniThreadState ts(env);
1685 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001686 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001687 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001688 va_end(ap);
1689 return result.d;
1690 }
1691
Elliott Hughes418d20f2011-09-22 14:00:39 -07001692 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001693 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001694 return InvokeWithVarArgs(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001695 }
1696
Elliott Hughes418d20f2011-09-22 14:00:39 -07001697 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001698 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001699 return InvokeWithJValues(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001700 }
1701
Elliott Hughes72025e52011-08-23 17:50:30 -07001702 static void CallStaticVoidMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001703 ScopedJniThreadState ts(env);
1704 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001705 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001706 InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001707 va_end(ap);
1708 }
1709
Elliott Hughes418d20f2011-09-22 14:00:39 -07001710 static void CallStaticVoidMethodV(JNIEnv* env, jclass cls, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001711 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001712 InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001713 }
1714
Elliott Hughes418d20f2011-09-22 14:00:39 -07001715 static void CallStaticVoidMethodA(JNIEnv* env, jclass cls, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001716 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001717 InvokeWithJValues(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001718 }
1719
Elliott Hughes814e4032011-08-23 12:07:56 -07001720 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001721 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001722 if (chars == NULL && char_count == 0) {
1723 return NULL;
1724 }
1725 String* result = String::AllocFromUtf16(char_count, chars);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001726 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001727 }
1728
1729 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
1730 ScopedJniThreadState ts(env);
1731 if (utf == NULL) {
1732 return NULL;
1733 }
1734 String* result = String::AllocFromModifiedUtf8(utf);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001735 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001736 }
1737
Elliott Hughes814e4032011-08-23 12:07:56 -07001738 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
1739 ScopedJniThreadState ts(env);
1740 return Decode<String*>(ts, java_string)->GetLength();
1741 }
1742
1743 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
1744 ScopedJniThreadState ts(env);
1745 return Decode<String*>(ts, java_string)->GetUtfLength();
1746 }
1747
Elliott Hughesb465ab02011-08-24 11:21:21 -07001748 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001749 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001750 String* s = Decode<String*>(ts, java_string);
1751 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1752 ThrowSIOOBE(ts, start, length, s->GetLength());
1753 } else {
1754 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1755 memcpy(buf, chars + start, length * sizeof(jchar));
1756 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001757 }
1758
Elliott Hughesb465ab02011-08-24 11:21:21 -07001759 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, char* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001760 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001761 String* s = Decode<String*>(ts, java_string);
1762 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1763 ThrowSIOOBE(ts, start, length, s->GetLength());
1764 } else {
1765 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1766 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1767 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001768 }
1769
Elliott Hughes75770752011-08-24 17:52:38 -07001770 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001771 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001772 String* s = Decode<String*>(ts, java_string);
1773 const CharArray* chars = s->GetCharArray();
1774 PinPrimitiveArray(ts, chars);
1775 if (is_copy != NULL) {
1776 *is_copy = JNI_FALSE;
1777 }
1778 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07001779 }
1780
Elliott Hughes75770752011-08-24 17:52:38 -07001781 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001782 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001783 UnpinPrimitiveArray(ts, Decode<String*>(ts, java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07001784 }
1785
Elliott Hughes75770752011-08-24 17:52:38 -07001786 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001787 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001788 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001789 }
1790
Elliott Hughes75770752011-08-24 17:52:38 -07001791 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001792 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001793 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07001794 }
1795
Elliott Hughes75770752011-08-24 17:52:38 -07001796 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001797 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001798 if (java_string == NULL) {
1799 return NULL;
1800 }
1801 if (is_copy != NULL) {
1802 *is_copy = JNI_TRUE;
1803 }
1804 String* s = Decode<String*>(ts, java_string);
1805 size_t byte_count = s->GetUtfLength();
1806 char* bytes = new char[byte_count + 1];
Elliott Hughes418dfe72011-10-06 18:56:27 -07001807 CHECK(bytes != NULL); // bionic aborts anyway.
Elliott Hughes75770752011-08-24 17:52:38 -07001808 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
1809 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
1810 bytes[byte_count] = '\0';
1811 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001812 }
1813
Elliott Hughes75770752011-08-24 17:52:38 -07001814 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001815 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001816 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001817 }
1818
Elliott Hughesbd935992011-08-22 11:59:34 -07001819 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001820 ScopedJniThreadState ts(env);
Elliott Hughesbd935992011-08-22 11:59:34 -07001821 Object* obj = Decode<Object*>(ts, java_array);
Brian Carlstromb63ec392011-08-27 17:38:27 -07001822 CHECK(obj->IsArrayInstance()); // TODO: ReportJniError
Elliott Hughesbd935992011-08-22 11:59:34 -07001823 Array* array = obj->AsArray();
1824 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07001825 }
1826
Elliott Hughes814e4032011-08-23 12:07:56 -07001827 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001828 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001829 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001830 return AddLocalReference<jobject>(env, array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07001831 }
1832
1833 static void SetObjectArrayElement(JNIEnv* env,
1834 jobjectArray java_array, jsize index, jobject java_value) {
1835 ScopedJniThreadState ts(env);
1836 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
1837 Object* value = Decode<Object*>(ts, java_value);
1838 array->Set(index, value);
1839 }
1840
1841 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
1842 ScopedJniThreadState ts(env);
1843 return NewPrimitiveArray<jbooleanArray, BooleanArray>(ts, length);
1844 }
1845
1846 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
1847 ScopedJniThreadState ts(env);
1848 return NewPrimitiveArray<jbyteArray, ByteArray>(ts, length);
1849 }
1850
1851 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
1852 ScopedJniThreadState ts(env);
1853 return NewPrimitiveArray<jcharArray, CharArray>(ts, length);
1854 }
1855
1856 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
1857 ScopedJniThreadState ts(env);
1858 return NewPrimitiveArray<jdoubleArray, DoubleArray>(ts, length);
1859 }
1860
1861 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
1862 ScopedJniThreadState ts(env);
1863 return NewPrimitiveArray<jfloatArray, FloatArray>(ts, length);
1864 }
1865
1866 static jintArray NewIntArray(JNIEnv* env, jsize length) {
1867 ScopedJniThreadState ts(env);
1868 return NewPrimitiveArray<jintArray, IntArray>(ts, length);
1869 }
1870
1871 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
1872 ScopedJniThreadState ts(env);
1873 return NewPrimitiveArray<jlongArray, LongArray>(ts, length);
1874 }
1875
1876 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
1877 ScopedJniThreadState ts(env);
1878 CHECK_GE(length, 0); // TODO: ReportJniError
1879
1880 // Compute the array class corresponding to the given element class.
1881 Class* element_class = Decode<Class*>(ts, element_jclass);
1882 std::string descriptor;
1883 descriptor += "[";
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001884 descriptor += element_class->GetDescriptor()->ToModifiedUtf8();
Elliott Hughescdf53122011-08-19 15:46:09 -07001885
1886 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07001887 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
1888 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001889 return NULL;
1890 }
1891
Elliott Hughes75770752011-08-24 17:52:38 -07001892 // Allocate and initialize if necessary.
1893 Class* array_class = Decode<Class*>(ts, java_array_class.get());
Elliott Hughescdf53122011-08-19 15:46:09 -07001894 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07001895 if (initial_element != NULL) {
1896 Object* initial_object = Decode<Object*>(ts, initial_element);
1897 for (jsize i = 0; i < length; ++i) {
1898 result->Set(i, initial_object);
1899 }
1900 }
Elliott Hughesbf86d042011-08-31 17:53:14 -07001901 return AddLocalReference<jobjectArray>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001902 }
1903
1904 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
1905 ScopedJniThreadState ts(env);
1906 return NewPrimitiveArray<jshortArray, ShortArray>(ts, length);
1907 }
1908
Elliott Hughes75770752011-08-24 17:52:38 -07001909 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray array, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001910 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001911 return GetPrimitiveArray<jarray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001912 }
1913
Elliott Hughes75770752011-08-24 17:52:38 -07001914 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* data, jint mode) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001915 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001916 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001917 }
1918
Elliott Hughes75770752011-08-24 17:52:38 -07001919 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001920 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001921 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001922 }
1923
Elliott Hughes75770752011-08-24 17:52:38 -07001924 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001925 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001926 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001927 }
1928
Elliott Hughes75770752011-08-24 17:52:38 -07001929 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001930 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001931 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001932 }
1933
Elliott Hughes75770752011-08-24 17:52:38 -07001934 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001935 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001936 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001937 }
1938
Elliott Hughes75770752011-08-24 17:52:38 -07001939 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001940 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001941 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001942 }
1943
Elliott Hughes75770752011-08-24 17:52:38 -07001944 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001945 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001946 return GetPrimitiveArray<jintArray, jint*, IntArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001947 }
1948
Elliott Hughes75770752011-08-24 17:52:38 -07001949 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001950 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001951 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001952 }
1953
Elliott Hughes75770752011-08-24 17:52:38 -07001954 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001955 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001956 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001957 }
1958
Elliott Hughes75770752011-08-24 17:52:38 -07001959 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001960 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001961 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001962 }
1963
Elliott Hughes75770752011-08-24 17:52:38 -07001964 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001965 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001966 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001967 }
1968
Elliott Hughes75770752011-08-24 17:52:38 -07001969 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001970 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001971 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001972 }
1973
Elliott Hughes75770752011-08-24 17:52:38 -07001974 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001975 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001976 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001977 }
1978
Elliott Hughes75770752011-08-24 17:52:38 -07001979 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001980 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001981 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001982 }
1983
Elliott Hughes75770752011-08-24 17:52:38 -07001984 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001985 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001986 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001987 }
1988
Elliott Hughes75770752011-08-24 17:52:38 -07001989 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001990 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001991 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001992 }
1993
Elliott Hughes75770752011-08-24 17:52:38 -07001994 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001995 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001996 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001997 }
1998
Elliott Hughes814e4032011-08-23 12:07:56 -07001999 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002000 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002001 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002002 }
2003
Elliott Hughes814e4032011-08-23 12:07:56 -07002004 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002005 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002006 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002007 }
2008
Elliott Hughes814e4032011-08-23 12:07:56 -07002009 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002010 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002011 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002012 }
2013
Elliott Hughes814e4032011-08-23 12:07:56 -07002014 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002015 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002016 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002017 }
2018
Elliott Hughes814e4032011-08-23 12:07:56 -07002019 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002020 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002021 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002022 }
2023
Elliott Hughes814e4032011-08-23 12:07:56 -07002024 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002025 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002026 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002027 }
2028
Elliott Hughes814e4032011-08-23 12:07:56 -07002029 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002030 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002031 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002032 }
2033
Elliott Hughes814e4032011-08-23 12:07:56 -07002034 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002035 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002036 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002037 }
2038
Elliott Hughes814e4032011-08-23 12:07:56 -07002039 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, const jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002040 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002041 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002042 }
2043
Elliott Hughes814e4032011-08-23 12:07:56 -07002044 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, const jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002045 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002046 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002047 }
2048
Elliott Hughes814e4032011-08-23 12:07:56 -07002049 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, const jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002050 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002051 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002052 }
2053
Elliott Hughes814e4032011-08-23 12:07:56 -07002054 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, const jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002055 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002056 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002057 }
2058
Elliott Hughes814e4032011-08-23 12:07:56 -07002059 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, const jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002060 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002061 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002062 }
2063
Elliott Hughes814e4032011-08-23 12:07:56 -07002064 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, const jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002065 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002066 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002067 }
2068
Elliott Hughes814e4032011-08-23 12:07:56 -07002069 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, const jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002070 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002071 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002072 }
2073
Elliott Hughes814e4032011-08-23 12:07:56 -07002074 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, const jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002075 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002076 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002077 }
2078
Elliott Hughes5174fe62011-08-23 15:12:35 -07002079 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002080 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002081 Class* c = Decode<Class*>(ts, java_class);
2082
Elliott Hughes5174fe62011-08-23 15:12:35 -07002083 for (int i = 0; i < method_count; i++) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002084 const char* name = methods[i].name;
2085 const char* sig = methods[i].signature;
2086
2087 if (*sig == '!') {
2088 // TODO: fast jni. it's too noisy to log all these.
2089 ++sig;
2090 }
2091
Elliott Hughes5174fe62011-08-23 15:12:35 -07002092 Method* m = c->FindDirectMethod(name, sig);
2093 if (m == NULL) {
2094 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002095 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002096 if (m == NULL) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002097 ThrowNoSuchMethodError(ts, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002098 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002099 } else if (!m->IsNative()) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002100 ThrowNoSuchMethodError(ts, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002101 return JNI_ERR;
2102 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002103
Elliott Hughes75770752011-08-24 17:52:38 -07002104 if (ts.Vm()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002105 LOG(INFO) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002106 }
2107
2108 m->RegisterNative(methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002109 }
2110 return JNI_OK;
2111 }
2112
Elliott Hughes5174fe62011-08-23 15:12:35 -07002113 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002114 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002115 Class* c = Decode<Class*>(ts, java_class);
2116
Elliott Hughes75770752011-08-24 17:52:38 -07002117 if (ts.Vm()->verbose_jni) {
Elliott Hughes54e7df12011-09-16 11:47:04 -07002118 LOG(INFO) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002119 }
2120
2121 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
2122 Method* m = c->GetDirectMethod(i);
2123 if (m->IsNative()) {
2124 m->UnregisterNative();
2125 }
2126 }
2127 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
2128 Method* m = c->GetVirtualMethod(i);
2129 if (m->IsNative()) {
2130 m->UnregisterNative();
2131 }
2132 }
2133
2134 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002135 }
2136
Elliott Hughes72025e52011-08-23 17:50:30 -07002137 static jint MonitorEnter(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002138 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002139 Decode<Object*>(ts, java_object)->MonitorEnter(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002140 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002141 }
2142
Elliott Hughes72025e52011-08-23 17:50:30 -07002143 static jint MonitorExit(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002144 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002145 Decode<Object*>(ts, java_object)->MonitorExit(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002146 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002147 }
2148
2149 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
2150 ScopedJniThreadState ts(env);
2151 Runtime* runtime = Runtime::Current();
2152 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002153 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002154 } else {
2155 *vm = NULL;
2156 }
2157 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2158 }
2159
Elliott Hughescdf53122011-08-19 15:46:09 -07002160 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
2161 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002162
2163 // The address may not be NULL, and the capacity must be > 0.
Elliott Hughes75770752011-08-24 17:52:38 -07002164 CHECK(address != NULL); // TODO: ReportJniError
2165 CHECK_GT(capacity, 0); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002166
2167 jclass buffer_class = GetDirectByteBufferClass(env);
2168 jmethodID mid = env->GetMethodID(buffer_class, "<init>", "(II)V");
2169 if (mid == NULL) {
2170 return NULL;
2171 }
2172
2173 // At the moment, the Java side is limited to 32 bits.
2174 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2175 CHECK_LE(capacity, 0xffffffff);
2176 jint address_arg = reinterpret_cast<jint>(address);
2177 jint capacity_arg = static_cast<jint>(capacity);
2178
2179 jobject result = env->NewObject(buffer_class, mid, address_arg, capacity_arg);
2180 return ts.Self()->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002181 }
2182
Elliott Hughesb465ab02011-08-24 11:21:21 -07002183 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002184 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002185 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "effectiveDirectAddress", "I");
2186 return reinterpret_cast<void*>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002187 }
2188
Elliott Hughesb465ab02011-08-24 11:21:21 -07002189 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002190 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002191 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "capacity", "I");
2192 return static_cast<jlong>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002193 }
2194
Elliott Hughesb465ab02011-08-24 11:21:21 -07002195 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002196 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002197
Elliott Hughes75770752011-08-24 17:52:38 -07002198 CHECK(java_object != NULL); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002199
2200 // Do we definitely know what kind of reference this is?
2201 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2202 IndirectRefKind kind = GetIndirectRefKind(ref);
2203 switch (kind) {
2204 case kLocal:
2205 return JNILocalRefType;
2206 case kGlobal:
2207 return JNIGlobalRefType;
2208 case kWeakGlobal:
2209 return JNIWeakGlobalRefType;
2210 case kSirtOrInvalid:
2211 // Is it in a stack IRT?
2212 if (ts.Self()->SirtContains(java_object)) {
2213 return JNILocalRefType;
2214 }
2215
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002216 if (!ts.Env()->work_around_app_jni_bugs) {
2217 return JNIInvalidRefType;
2218 }
2219
Elliott Hughesb465ab02011-08-24 11:21:21 -07002220 // If we're handing out direct pointers, check whether it's a direct pointer
2221 // to a local reference.
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002222 if (Decode<Object*>(ts, java_object) == reinterpret_cast<Object*>(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002223 if (ts.Env()->locals.Contains(java_object)) {
2224 return JNILocalRefType;
2225 }
2226 }
2227
2228 return JNIInvalidRefType;
2229 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002230 }
2231};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002232
Elliott Hughesa2501992011-08-26 19:39:54 -07002233const JNINativeInterface gNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002234 NULL, // reserved0.
2235 NULL, // reserved1.
2236 NULL, // reserved2.
2237 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002238 JNI::GetVersion,
2239 JNI::DefineClass,
2240 JNI::FindClass,
2241 JNI::FromReflectedMethod,
2242 JNI::FromReflectedField,
2243 JNI::ToReflectedMethod,
2244 JNI::GetSuperclass,
2245 JNI::IsAssignableFrom,
2246 JNI::ToReflectedField,
2247 JNI::Throw,
2248 JNI::ThrowNew,
2249 JNI::ExceptionOccurred,
2250 JNI::ExceptionDescribe,
2251 JNI::ExceptionClear,
2252 JNI::FatalError,
2253 JNI::PushLocalFrame,
2254 JNI::PopLocalFrame,
2255 JNI::NewGlobalRef,
2256 JNI::DeleteGlobalRef,
2257 JNI::DeleteLocalRef,
2258 JNI::IsSameObject,
2259 JNI::NewLocalRef,
2260 JNI::EnsureLocalCapacity,
2261 JNI::AllocObject,
2262 JNI::NewObject,
2263 JNI::NewObjectV,
2264 JNI::NewObjectA,
2265 JNI::GetObjectClass,
2266 JNI::IsInstanceOf,
2267 JNI::GetMethodID,
2268 JNI::CallObjectMethod,
2269 JNI::CallObjectMethodV,
2270 JNI::CallObjectMethodA,
2271 JNI::CallBooleanMethod,
2272 JNI::CallBooleanMethodV,
2273 JNI::CallBooleanMethodA,
2274 JNI::CallByteMethod,
2275 JNI::CallByteMethodV,
2276 JNI::CallByteMethodA,
2277 JNI::CallCharMethod,
2278 JNI::CallCharMethodV,
2279 JNI::CallCharMethodA,
2280 JNI::CallShortMethod,
2281 JNI::CallShortMethodV,
2282 JNI::CallShortMethodA,
2283 JNI::CallIntMethod,
2284 JNI::CallIntMethodV,
2285 JNI::CallIntMethodA,
2286 JNI::CallLongMethod,
2287 JNI::CallLongMethodV,
2288 JNI::CallLongMethodA,
2289 JNI::CallFloatMethod,
2290 JNI::CallFloatMethodV,
2291 JNI::CallFloatMethodA,
2292 JNI::CallDoubleMethod,
2293 JNI::CallDoubleMethodV,
2294 JNI::CallDoubleMethodA,
2295 JNI::CallVoidMethod,
2296 JNI::CallVoidMethodV,
2297 JNI::CallVoidMethodA,
2298 JNI::CallNonvirtualObjectMethod,
2299 JNI::CallNonvirtualObjectMethodV,
2300 JNI::CallNonvirtualObjectMethodA,
2301 JNI::CallNonvirtualBooleanMethod,
2302 JNI::CallNonvirtualBooleanMethodV,
2303 JNI::CallNonvirtualBooleanMethodA,
2304 JNI::CallNonvirtualByteMethod,
2305 JNI::CallNonvirtualByteMethodV,
2306 JNI::CallNonvirtualByteMethodA,
2307 JNI::CallNonvirtualCharMethod,
2308 JNI::CallNonvirtualCharMethodV,
2309 JNI::CallNonvirtualCharMethodA,
2310 JNI::CallNonvirtualShortMethod,
2311 JNI::CallNonvirtualShortMethodV,
2312 JNI::CallNonvirtualShortMethodA,
2313 JNI::CallNonvirtualIntMethod,
2314 JNI::CallNonvirtualIntMethodV,
2315 JNI::CallNonvirtualIntMethodA,
2316 JNI::CallNonvirtualLongMethod,
2317 JNI::CallNonvirtualLongMethodV,
2318 JNI::CallNonvirtualLongMethodA,
2319 JNI::CallNonvirtualFloatMethod,
2320 JNI::CallNonvirtualFloatMethodV,
2321 JNI::CallNonvirtualFloatMethodA,
2322 JNI::CallNonvirtualDoubleMethod,
2323 JNI::CallNonvirtualDoubleMethodV,
2324 JNI::CallNonvirtualDoubleMethodA,
2325 JNI::CallNonvirtualVoidMethod,
2326 JNI::CallNonvirtualVoidMethodV,
2327 JNI::CallNonvirtualVoidMethodA,
2328 JNI::GetFieldID,
2329 JNI::GetObjectField,
2330 JNI::GetBooleanField,
2331 JNI::GetByteField,
2332 JNI::GetCharField,
2333 JNI::GetShortField,
2334 JNI::GetIntField,
2335 JNI::GetLongField,
2336 JNI::GetFloatField,
2337 JNI::GetDoubleField,
2338 JNI::SetObjectField,
2339 JNI::SetBooleanField,
2340 JNI::SetByteField,
2341 JNI::SetCharField,
2342 JNI::SetShortField,
2343 JNI::SetIntField,
2344 JNI::SetLongField,
2345 JNI::SetFloatField,
2346 JNI::SetDoubleField,
2347 JNI::GetStaticMethodID,
2348 JNI::CallStaticObjectMethod,
2349 JNI::CallStaticObjectMethodV,
2350 JNI::CallStaticObjectMethodA,
2351 JNI::CallStaticBooleanMethod,
2352 JNI::CallStaticBooleanMethodV,
2353 JNI::CallStaticBooleanMethodA,
2354 JNI::CallStaticByteMethod,
2355 JNI::CallStaticByteMethodV,
2356 JNI::CallStaticByteMethodA,
2357 JNI::CallStaticCharMethod,
2358 JNI::CallStaticCharMethodV,
2359 JNI::CallStaticCharMethodA,
2360 JNI::CallStaticShortMethod,
2361 JNI::CallStaticShortMethodV,
2362 JNI::CallStaticShortMethodA,
2363 JNI::CallStaticIntMethod,
2364 JNI::CallStaticIntMethodV,
2365 JNI::CallStaticIntMethodA,
2366 JNI::CallStaticLongMethod,
2367 JNI::CallStaticLongMethodV,
2368 JNI::CallStaticLongMethodA,
2369 JNI::CallStaticFloatMethod,
2370 JNI::CallStaticFloatMethodV,
2371 JNI::CallStaticFloatMethodA,
2372 JNI::CallStaticDoubleMethod,
2373 JNI::CallStaticDoubleMethodV,
2374 JNI::CallStaticDoubleMethodA,
2375 JNI::CallStaticVoidMethod,
2376 JNI::CallStaticVoidMethodV,
2377 JNI::CallStaticVoidMethodA,
2378 JNI::GetStaticFieldID,
2379 JNI::GetStaticObjectField,
2380 JNI::GetStaticBooleanField,
2381 JNI::GetStaticByteField,
2382 JNI::GetStaticCharField,
2383 JNI::GetStaticShortField,
2384 JNI::GetStaticIntField,
2385 JNI::GetStaticLongField,
2386 JNI::GetStaticFloatField,
2387 JNI::GetStaticDoubleField,
2388 JNI::SetStaticObjectField,
2389 JNI::SetStaticBooleanField,
2390 JNI::SetStaticByteField,
2391 JNI::SetStaticCharField,
2392 JNI::SetStaticShortField,
2393 JNI::SetStaticIntField,
2394 JNI::SetStaticLongField,
2395 JNI::SetStaticFloatField,
2396 JNI::SetStaticDoubleField,
2397 JNI::NewString,
2398 JNI::GetStringLength,
2399 JNI::GetStringChars,
2400 JNI::ReleaseStringChars,
2401 JNI::NewStringUTF,
2402 JNI::GetStringUTFLength,
2403 JNI::GetStringUTFChars,
2404 JNI::ReleaseStringUTFChars,
2405 JNI::GetArrayLength,
2406 JNI::NewObjectArray,
2407 JNI::GetObjectArrayElement,
2408 JNI::SetObjectArrayElement,
2409 JNI::NewBooleanArray,
2410 JNI::NewByteArray,
2411 JNI::NewCharArray,
2412 JNI::NewShortArray,
2413 JNI::NewIntArray,
2414 JNI::NewLongArray,
2415 JNI::NewFloatArray,
2416 JNI::NewDoubleArray,
2417 JNI::GetBooleanArrayElements,
2418 JNI::GetByteArrayElements,
2419 JNI::GetCharArrayElements,
2420 JNI::GetShortArrayElements,
2421 JNI::GetIntArrayElements,
2422 JNI::GetLongArrayElements,
2423 JNI::GetFloatArrayElements,
2424 JNI::GetDoubleArrayElements,
2425 JNI::ReleaseBooleanArrayElements,
2426 JNI::ReleaseByteArrayElements,
2427 JNI::ReleaseCharArrayElements,
2428 JNI::ReleaseShortArrayElements,
2429 JNI::ReleaseIntArrayElements,
2430 JNI::ReleaseLongArrayElements,
2431 JNI::ReleaseFloatArrayElements,
2432 JNI::ReleaseDoubleArrayElements,
2433 JNI::GetBooleanArrayRegion,
2434 JNI::GetByteArrayRegion,
2435 JNI::GetCharArrayRegion,
2436 JNI::GetShortArrayRegion,
2437 JNI::GetIntArrayRegion,
2438 JNI::GetLongArrayRegion,
2439 JNI::GetFloatArrayRegion,
2440 JNI::GetDoubleArrayRegion,
2441 JNI::SetBooleanArrayRegion,
2442 JNI::SetByteArrayRegion,
2443 JNI::SetCharArrayRegion,
2444 JNI::SetShortArrayRegion,
2445 JNI::SetIntArrayRegion,
2446 JNI::SetLongArrayRegion,
2447 JNI::SetFloatArrayRegion,
2448 JNI::SetDoubleArrayRegion,
2449 JNI::RegisterNatives,
2450 JNI::UnregisterNatives,
2451 JNI::MonitorEnter,
2452 JNI::MonitorExit,
2453 JNI::GetJavaVM,
2454 JNI::GetStringRegion,
2455 JNI::GetStringUTFRegion,
2456 JNI::GetPrimitiveArrayCritical,
2457 JNI::ReleasePrimitiveArrayCritical,
2458 JNI::GetStringCritical,
2459 JNI::ReleaseStringCritical,
2460 JNI::NewWeakGlobalRef,
2461 JNI::DeleteWeakGlobalRef,
2462 JNI::ExceptionCheck,
2463 JNI::NewDirectByteBuffer,
2464 JNI::GetDirectBufferAddress,
2465 JNI::GetDirectBufferCapacity,
2466 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002467};
2468
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002469static const size_t kMonitorsInitial = 32; // Arbitrary.
2470static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
2471
2472static const size_t kLocalsInitial = 64; // Arbitrary.
2473static const size_t kLocalsMax = 512; // Arbitrary sanity check.
Elliott Hughesbbd76712011-08-17 10:25:24 -07002474
Elliott Hughes75770752011-08-24 17:52:38 -07002475JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002476 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002477 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002478 local_ref_cookie(IRT_FIRST_SEGMENT),
2479 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes75770752011-08-24 17:52:38 -07002480 check_jni(vm->check_jni),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002481 work_around_app_jni_bugs(vm->work_around_app_jni_bugs),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002482 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002483 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002484 functions = unchecked_functions = &gNativeInterface;
2485 if (check_jni) {
2486 functions = GetCheckJniNativeInterface();
2487 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002488 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2489 // errors will ensue.
2490 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2491 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002492}
2493
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002494JNIEnvExt::~JNIEnvExt() {
2495}
2496
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002497void JNIEnvExt::DumpReferenceTables() {
2498 locals.Dump();
2499 monitors.Dump();
2500}
2501
Carl Shapiroea4dca82011-08-01 13:45:38 -07002502// JNI Invocation interface.
2503
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002504extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, void** p_env, void* vm_args) {
2505 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
2506 if (args->version < JNI_VERSION_1_2) {
2507 return JNI_EVERSION;
2508 }
2509 Runtime::Options options;
2510 for (int i = 0; i < args->nOptions; ++i) {
2511 JavaVMOption* option = &args->options[i];
Carl Shapirofc322c72011-07-27 00:20:01 -07002512 options.push_back(std::make_pair(StringPiece(option->optionString),
2513 option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002514 }
2515 bool ignore_unrecognized = args->ignoreUnrecognized;
Elliott Hughesf2682d52011-08-15 16:37:04 -07002516 Runtime* runtime = Runtime::Create(options, ignore_unrecognized);
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002517 if (runtime == NULL) {
2518 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002519 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002520 runtime->Start();
2521 *p_env = Thread::Current()->GetJniEnv();
2522 *p_vm = runtime->GetJavaVM();
2523 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002524}
2525
Elliott Hughesf2682d52011-08-15 16:37:04 -07002526extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002527 Runtime* runtime = Runtime::Current();
2528 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002529 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002530 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002531 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002532 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002533 }
2534 return JNI_OK;
2535}
2536
2537// Historically unsupported.
2538extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* vm_args) {
2539 return JNI_ERR;
2540}
2541
Elliott Hughescdf53122011-08-19 15:46:09 -07002542class JII {
2543 public:
2544 static jint DestroyJavaVM(JavaVM* vm) {
2545 if (vm == NULL) {
2546 return JNI_ERR;
2547 } else {
2548 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2549 delete raw_vm->runtime;
2550 return JNI_OK;
2551 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002552 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002553
Elliott Hughescdf53122011-08-19 15:46:09 -07002554 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002555 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002556 }
2557
2558 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002559 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002560 }
2561
2562 static jint DetachCurrentThread(JavaVM* vm) {
2563 if (vm == NULL) {
2564 return JNI_ERR;
2565 } else {
2566 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2567 Runtime* runtime = raw_vm->runtime;
2568 runtime->DetachCurrentThread();
2569 return JNI_OK;
2570 }
2571 }
2572
2573 static jint GetEnv(JavaVM* vm, void** env, jint version) {
2574 if (version < JNI_VERSION_1_1 || version > JNI_VERSION_1_6) {
2575 return JNI_EVERSION;
2576 }
2577 if (vm == NULL || env == NULL) {
2578 return JNI_ERR;
2579 }
2580 Thread* thread = Thread::Current();
2581 if (thread == NULL) {
2582 *env = NULL;
2583 return JNI_EDETACHED;
2584 }
2585 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002586 return JNI_OK;
2587 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002588};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002589
Elliott Hughesa2501992011-08-26 19:39:54 -07002590const JNIInvokeInterface gInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002591 NULL, // reserved0
2592 NULL, // reserved1
2593 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002594 JII::DestroyJavaVM,
2595 JII::AttachCurrentThread,
2596 JII::DetachCurrentThread,
2597 JII::GetEnv,
2598 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002599};
2600
Elliott Hughesbbd76712011-08-17 10:25:24 -07002601static const size_t kPinTableInitialSize = 16;
2602static const size_t kPinTableMaxSize = 1024;
2603
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002604static const size_t kGlobalsInitial = 512; // Arbitrary.
2605static const size_t kGlobalsMax = 51200; // Arbitrary sanity check.
2606
2607static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
2608static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check.
2609
Elliott Hughesa0957642011-09-02 14:27:33 -07002610JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002611 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002612 check_jni_abort_hook(NULL),
Elliott Hughesa0957642011-09-02 14:27:33 -07002613 check_jni(options->check_jni_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002614 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002615 verbose_jni(options->IsVerbose("jni")),
2616 log_third_party_jni(options->IsVerbose("third-party-jni")),
2617 trace(options->jni_trace_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002618 work_around_app_jni_bugs(false), // TODO: add a way to enable this
Elliott Hughes8daa0922011-09-11 13:46:25 -07002619 pins_lock("JNI pin table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002620 pin_table("pin table", kPinTableInitialSize, kPinTableMaxSize),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002621 globals_lock("JNI global reference table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002622 globals(kGlobalsInitial, kGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002623 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002624 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002625 libraries_lock("JNI shared libraries map lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002626 libraries(new Libraries) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002627 functions = unchecked_functions = &gInvokeInterface;
2628 if (check_jni) {
2629 functions = GetCheckJniInvokeInterface();
2630 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07002631}
2632
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002633JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07002634 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002635}
2636
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002637void JavaVMExt::DumpReferenceTables() {
2638 {
2639 MutexLock mu(globals_lock);
2640 globals.Dump();
2641 }
2642 {
2643 MutexLock mu(weak_globals_lock);
2644 weak_globals.Dump();
2645 }
2646 {
2647 MutexLock mu(pins_lock);
2648 pin_table.Dump();
2649 }
2650}
2651
Elliott Hughes75770752011-08-24 17:52:38 -07002652bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader, std::string& detail) {
2653 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07002654
2655 // See if we've already loaded this library. If we have, and the class loader
2656 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07002657 // TODO: for better results we should canonicalize the pathname (or even compare
2658 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07002659 SharedLibrary* library;
2660 {
2661 // TODO: move the locking (and more of this logic) into Libraries.
2662 MutexLock mu(libraries_lock);
2663 library = libraries->Get(path);
2664 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002665 if (library != NULL) {
2666 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07002667 // The library will be associated with class_loader. The JNI
2668 // spec says we can't load the same library into more than one
2669 // class loader.
2670 StringAppendF(&detail, "Shared library \"%s\" already opened by "
2671 "ClassLoader %p; can't open in ClassLoader %p",
2672 path.c_str(), library->GetClassLoader(), class_loader);
2673 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002674 return false;
2675 }
2676 if (verbose_jni) {
2677 LOG(INFO) << "[Shared library \"" << path << "\" already loaded in "
2678 << "ClassLoader " << class_loader << "]";
2679 }
2680 if (!library->CheckOnLoadResult(this)) {
Elliott Hughes75770752011-08-24 17:52:38 -07002681 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
2682 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07002683 return false;
2684 }
2685 return true;
2686 }
2687
2688 // Open the shared library. Because we're using a full path, the system
2689 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
2690 // resolve this library's dependencies though.)
2691
2692 // Failures here are expected when java.library.path has several entries
2693 // and we have to hunt for the lib.
2694
2695 // The current version of the dynamic linker prints detailed information
2696 // about dlopen() failures. Some things to check if the message is
2697 // cryptic:
2698 // - make sure the library exists on the device
2699 // - verify that the right path is being opened (the debug log message
2700 // above can help with that)
2701 // - check to see if the library is valid (e.g. not zero bytes long)
2702 // - check config/prelink-linux-arm.map to ensure that the library
2703 // is listed and is not being overrun by the previous entry (if
2704 // loading suddenly stops working on a prelinked library, this is
2705 // a good one to check)
2706 // - write a trivial app that calls sleep() then dlopen(), attach
2707 // to it with "strace -p <pid>" while it sleeps, and watch for
2708 // attempts to open nonexistent dependent shared libs
2709
2710 // TODO: automate some of these checks!
2711
2712 // This can execute slowly for a large library on a busy system, so we
Elliott Hughes93e74e82011-09-13 11:07:03 -07002713 // want to switch from kRunnable to kVmWait while it executes. This allows
Elliott Hughescdf53122011-08-19 15:46:09 -07002714 // the GC to ignore us.
2715 Thread* self = Thread::Current();
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002716 void* handle = NULL;
2717 {
Elliott Hughes93e74e82011-09-13 11:07:03 -07002718 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002719 handle = dlopen(path.c_str(), RTLD_LAZY);
2720 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002721
2722 if (verbose_jni) {
2723 LOG(INFO) << "[Call to dlopen(\"" << path << "\") returned " << handle << "]";
2724 }
2725
2726 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07002727 detail = dlerror();
Elliott Hughescdf53122011-08-19 15:46:09 -07002728 return false;
2729 }
2730
2731 // Create a new entry.
Elliott Hughescdf53122011-08-19 15:46:09 -07002732 {
Elliott Hughes79082e32011-08-25 12:07:32 -07002733 // TODO: move the locking (and more of this logic) into Libraries.
2734 MutexLock mu(libraries_lock);
2735 library = libraries->Get(path);
2736 if (library != NULL) {
2737 LOG(INFO) << "WOW: we lost a race to add shared library: "
2738 << "\"" << path << "\" ClassLoader=" << class_loader;
2739 return library->CheckOnLoadResult(this);
Elliott Hughescdf53122011-08-19 15:46:09 -07002740 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002741 library = new SharedLibrary(path, handle, class_loader);
2742 libraries->Put(path, library);
Elliott Hughescdf53122011-08-19 15:46:09 -07002743 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002744
2745 if (verbose_jni) {
2746 LOG(INFO) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
2747 }
2748
2749 bool result = true;
2750 void* sym = dlsym(handle, "JNI_OnLoad");
2751 if (sym == NULL) {
2752 if (verbose_jni) {
2753 LOG(INFO) << "[No JNI_OnLoad found in \"" << path << "\"]";
2754 }
2755 } else {
2756 // Call JNI_OnLoad. We have to override the current class
2757 // loader, which will always be "null" since the stuff at the
2758 // top of the stack is around Runtime.loadLibrary(). (See
2759 // the comments in the JNI FindClass function.)
2760 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
2761 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Brian Carlstrombffb1552011-08-25 12:23:53 -07002762 const ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07002763 self->SetClassLoaderOverride(class_loader);
2764
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002765 int version = 0;
2766 {
2767 ScopedThreadStateChange tsc(self, Thread::kNative);
2768 if (verbose_jni) {
2769 LOG(INFO) << "[Calling JNI_OnLoad in \"" << path << "\"]";
2770 }
2771 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07002772 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002773
2774 self->SetClassLoaderOverride(old_class_loader);;
2775
2776 if (version != JNI_VERSION_1_2 &&
2777 version != JNI_VERSION_1_4 &&
2778 version != JNI_VERSION_1_6) {
2779 LOG(WARNING) << "JNI_OnLoad in \"" << path << "\" returned "
2780 << "bad version: " << version;
2781 // It's unwise to call dlclose() here, but we can mark it
2782 // as bad and ensure that future load attempts will fail.
2783 // We don't know how far JNI_OnLoad got, so there could
2784 // be some partially-initialized stuff accessible through
2785 // newly-registered native method calls. We could try to
2786 // unregister them, but that doesn't seem worthwhile.
2787 result = false;
2788 } else {
2789 if (verbose_jni) {
2790 LOG(INFO) << "[Returned " << (result ? "successfully" : "failure")
2791 << " from JNI_OnLoad in \"" << path << "\"]";
2792 }
2793 }
2794 }
2795
2796 library->SetResult(result);
2797 return result;
2798}
2799
2800void* JavaVMExt::FindCodeForNativeMethod(Method* m) {
2801 CHECK(m->IsNative());
2802
2803 Class* c = m->GetDeclaringClass();
2804
2805 // If this is a static method, it could be called before the class
2806 // has been initialized.
2807 if (m->IsStatic()) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002808 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002809 return NULL;
2810 }
2811 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07002812 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07002813 }
2814
Brian Carlstrom16192862011-09-12 17:50:06 -07002815 std::string detail;
2816 void* native_method;
2817 {
2818 MutexLock mu(libraries_lock);
2819 native_method = libraries->FindNativeMethod(m, detail);
2820 }
2821 // throwing can cause libraries_lock to be reacquired
2822 if (native_method == NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002823 Thread::Current()->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07002824 }
2825 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07002826}
2827
Elliott Hughes410c0c82011-09-01 17:58:25 -07002828void JavaVMExt::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
2829 {
2830 MutexLock mu(globals_lock);
2831 globals.VisitRoots(visitor, arg);
2832 }
2833 {
2834 MutexLock mu(pins_lock);
2835 pin_table.VisitRoots(visitor, arg);
2836 }
2837 // The weak_globals table is visited by the GC itself (because it mutates the table).
2838}
2839
Ian Rogersdf20fe02011-07-20 20:34:16 -07002840} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07002841
2842std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
2843 switch (rhs) {
2844 case JNIInvalidRefType:
2845 os << "JNIInvalidRefType";
2846 return os;
2847 case JNILocalRefType:
2848 os << "JNILocalRefType";
2849 return os;
2850 case JNIGlobalRefType:
2851 os << "JNIGlobalRefType";
2852 return os;
2853 case JNIWeakGlobalRefType:
2854 os << "JNIWeakGlobalRefType";
2855 return os;
2856 }
2857}