blob: f9d536b2509c4a9a7ad7e79e4e0b041532bd8411 [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);
95template String* Decode<String*>(JNIEnv*, jobject);
Elliott Hughes418d20f2011-09-22 14:00:39 -070096template ObjectArray<Class>* Decode<ObjectArray<Class>*>(JNIEnv*, jobject);
97template ObjectArray<Object>* Decode<ObjectArray<Object>*>(JNIEnv*, jobject);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -070098template ObjectArray<StackTraceElement>* Decode<ObjectArray<StackTraceElement>*>(JNIEnv*, jobject);
Elliott Hughesbf86d042011-08-31 17:53:14 -070099
100namespace {
101
Elliott Hughescdf53122011-08-19 15:46:09 -0700102jweak AddWeakGlobalReference(ScopedJniThreadState& ts, Object* obj) {
103 if (obj == NULL) {
104 return NULL;
105 }
Elliott Hughes75770752011-08-24 17:52:38 -0700106 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700107 IndirectReferenceTable& weak_globals = vm->weak_globals;
108 MutexLock mu(vm->weak_globals_lock);
109 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
110 return reinterpret_cast<jweak>(ref);
111}
112
Elliott Hughesbf86d042011-08-31 17:53:14 -0700113// For internal use.
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700114template<typename T>
115T Decode(ScopedJniThreadState& ts, jobject obj) {
Ian Rogers408f79a2011-08-23 18:22:33 -0700116 return reinterpret_cast<T>(ts.Self()->DecodeJObject(obj));
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700117}
118
Elliott Hughes418d20f2011-09-22 14:00:39 -0700119byte* CreateArgArray(JNIEnv* public_env, Method* method, va_list ap) {
120 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700121 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700122 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700123 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700124 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
125 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700126 case 'Z':
127 case 'B':
128 case 'C':
129 case 'S':
130 case 'I':
131 *reinterpret_cast<int32_t*>(&arg_array[offset]) = va_arg(ap, jint);
132 offset += 4;
133 break;
134 case 'F':
135 *reinterpret_cast<float*>(&arg_array[offset]) = va_arg(ap, jdouble);
136 offset += 4;
137 break;
138 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700139 Object* obj = Decode<Object*>(env, va_arg(ap, jobject));
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700140 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
141 offset += sizeof(Object*);
142 break;
143 }
144 case 'D':
145 *reinterpret_cast<double*>(&arg_array[offset]) = va_arg(ap, jdouble);
146 offset += 8;
147 break;
148 case 'J':
149 *reinterpret_cast<int64_t*>(&arg_array[offset]) = va_arg(ap, jlong);
150 offset += 8;
151 break;
152 }
153 }
154 return arg_array.release();
155}
156
Elliott Hughes418d20f2011-09-22 14:00:39 -0700157byte* CreateArgArray(JNIEnv* public_env, Method* method, jvalue* args) {
158 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700159 size_t num_bytes = method->NumArgArrayBytes();
Elliott Hughes90a33692011-08-30 13:27:07 -0700160 UniquePtr<byte[]> arg_array(new byte[num_bytes]);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700161 const String* shorty = method->GetShorty();
Brian Carlstrom2ed67392011-09-09 14:53:28 -0700162 for (int i = 1, offset = 0; i < shorty->GetLength(); ++i) {
163 switch (shorty->CharAt(i)) {
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700164 case 'Z':
165 case 'B':
166 case 'C':
167 case 'S':
168 case 'I':
169 *reinterpret_cast<uint32_t*>(&arg_array[offset]) = args[i - 1].i;
170 offset += 4;
171 break;
172 case 'F':
173 *reinterpret_cast<float*>(&arg_array[offset]) = args[i - 1].f;
174 offset += 4;
175 break;
176 case 'L': {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700177 Object* obj = Decode<Object*>(env, args[i - 1].l);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700178 *reinterpret_cast<Object**>(&arg_array[offset]) = obj;
179 offset += sizeof(Object*);
180 break;
181 }
182 case 'D':
183 *reinterpret_cast<double*>(&arg_array[offset]) = args[i - 1].d;
184 offset += 8;
185 break;
186 case 'J':
187 *reinterpret_cast<uint64_t*>(&arg_array[offset]) = args[i - 1].j;
188 offset += 8;
189 break;
190 }
191 }
192 return arg_array.release();
193}
194
Elliott Hughes418d20f2011-09-22 14:00:39 -0700195JValue InvokeWithArgArray(JNIEnv* public_env, Object* receiver, Method* method, byte* args) {
196 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700197 JValue result;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700198 method->Invoke(env->self, receiver, args, &result);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700199 return result;
200}
201
Elliott Hughes418d20f2011-09-22 14:00:39 -0700202JValue InvokeWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
203 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
204 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700205 Method* method = DecodeMethod(mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700206 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
207 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700208}
209
Elliott Hughes75770752011-08-24 17:52:38 -0700210Method* FindVirtualMethod(Object* receiver, Method* method) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700211 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700212}
213
Elliott Hughes418d20f2011-09-22 14:00:39 -0700214JValue InvokeVirtualOrInterfaceWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
215 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
216 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700217 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700218 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
219 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700220}
221
Elliott Hughes418d20f2011-09-22 14:00:39 -0700222JValue InvokeVirtualOrInterfaceWithVarArgs(JNIEnv* public_env, jobject obj, jmethodID mid, va_list args) {
223 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
224 Object* receiver = Decode<Object*>(env, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700225 Method* method = FindVirtualMethod(receiver, DecodeMethod(mid));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700226 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
227 return InvokeWithArgArray(env, receiver, method, arg_array.get());
Carl Shapiroea4dca82011-08-01 13:45:38 -0700228}
229
Elliott Hughes6b436852011-08-12 10:16:44 -0700230// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
231// separated with slashes but aren't wrapped with "L;" like regular descriptors
232// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
233// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
234// supported names with dots too (such as "a.b.C").
235std::string NormalizeJniClassDescriptor(const char* name) {
236 std::string result;
237 // Add the missing "L;" if necessary.
238 if (name[0] == '[') {
239 result = name;
240 } else {
241 result += 'L';
242 result += name;
243 result += ';';
244 }
245 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700246 if (result.find('.') != std::string::npos) {
247 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
248 << "\"" << name << "\"";
249 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700250 }
251 return result;
252}
253
Elliott Hughes14134a12011-09-30 16:55:51 -0700254void ThrowNoSuchMethodError(ScopedJniThreadState& ts, Class* c, const char* name, const char* sig, const char* kind) {
255 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700256 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
Elliott Hughes14134a12011-09-30 16:55:51 -0700257 "no %s method \"%s.%s%s\"", kind, class_descriptor.c_str(), name, sig);
258}
259
Elliott Hughescdf53122011-08-19 15:46:09 -0700260jmethodID FindMethodID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
261 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700262 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700263 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700264 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700265
266 Method* method = NULL;
267 if (is_static) {
268 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700269 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700270 method = c->FindVirtualMethod(name, sig);
271 if (method == NULL) {
272 // No virtual method matching the signature. Search declared
273 // private methods and constructors.
274 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700275 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700276 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700277
Elliott Hughescdf53122011-08-19 15:46:09 -0700278 if (method == NULL || method->IsStatic() != is_static) {
Elliott Hughes14134a12011-09-30 16:55:51 -0700279 ThrowNoSuchMethodError(ts, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700280 return NULL;
281 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700282
Elliott Hughes418d20f2011-09-22 14:00:39 -0700283 method->InitJavaFields();
284
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700285 return EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700286}
287
Elliott Hughescdf53122011-08-19 15:46:09 -0700288jfieldID FindFieldID(ScopedJniThreadState& ts, jclass jni_class, const char* name, const char* sig, bool is_static) {
289 Class* c = Decode<Class*>(ts, jni_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700290 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700291 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700292 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700293
294 Field* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700295 Class* field_type;
296 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
297 if (sig[1] != '\0') {
298 // TODO: need to get the appropriate ClassLoader.
299 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
300 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700301 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700303 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304 if (field_type == NULL) {
305 // Failed to find type from the signature of the field.
Ian Rogersb17d08b2011-09-02 16:16:49 -0700306 DCHECK(ts.Self()->IsExceptionPending());
307 ts.Self()->ClearException();
308 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700309 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Ian Rogersb17d08b2011-09-02 16:16:49 -0700310 "no type \"%s\" found and so no field \"%s\" could be found in class "
311 "\"%s\" or its superclasses", sig, name, class_descriptor.c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700312 return NULL;
313 }
314 if (is_static) {
315 field = c->FindStaticField(name, field_type);
316 } else {
317 field = c->FindInstanceField(name, field_type);
318 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700319 if (field == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700320 std::string class_descriptor(c->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700321 ts.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Elliott Hughescdf53122011-08-19 15:46:09 -0700322 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses", sig,
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700323 name, class_descriptor.c_str());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700324 return NULL;
325 }
Elliott Hughes80609252011-09-23 17:24:51 -0700326 field->InitJavaFields();
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700327 return EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700328}
329
Elliott Hughes75770752011-08-24 17:52:38 -0700330void PinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
331 JavaVMExt* vm = ts.Vm();
332 MutexLock mu(vm->pins_lock);
333 vm->pin_table.Add(array);
334}
335
336void UnpinPrimitiveArray(ScopedJniThreadState& ts, const Array* array) {
337 JavaVMExt* vm = ts.Vm();
338 MutexLock mu(vm->pins_lock);
339 vm->pin_table.Remove(array);
340}
341
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700342template<typename JniT, typename ArtT>
343JniT NewPrimitiveArray(ScopedJniThreadState& ts, jsize length) {
344 CHECK_GE(length, 0); // TODO: ReportJniError
345 ArtT* result = ArtT::Alloc(length);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700346 return AddLocalReference<JniT>(ts.Env(), result);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700347}
348
Elliott Hughes75770752011-08-24 17:52:38 -0700349template <typename ArrayT, typename CArrayT, typename ArtArrayT>
350CArrayT GetPrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jboolean* is_copy) {
351 ArtArrayT* array = Decode<ArtArrayT*>(ts, java_array);
352 PinPrimitiveArray(ts, array);
353 if (is_copy != NULL) {
354 *is_copy = JNI_FALSE;
355 }
356 return array->GetData();
357}
358
359template <typename ArrayT>
360void ReleasePrimitiveArray(ScopedJniThreadState& ts, ArrayT java_array, jint mode) {
361 if (mode != JNI_COMMIT) {
362 Array* array = Decode<Array*>(ts, java_array);
363 UnpinPrimitiveArray(ts, array);
364 }
365}
366
Elliott Hughes814e4032011-08-23 12:07:56 -0700367void ThrowAIOOBE(ScopedJniThreadState& ts, Array* array, jsize start, jsize length, const char* identifier) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700368 std::string type(PrettyTypeOf(array));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700369 ts.Self()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes814e4032011-08-23 12:07:56 -0700370 "%s offset=%d length=%d %s.length=%d",
371 type.c_str(), start, length, identifier, array->GetLength());
372}
Elliott Hughesb465ab02011-08-24 11:21:21 -0700373void ThrowSIOOBE(ScopedJniThreadState& ts, jsize start, jsize length, jsize array_length) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700374 ts.Self()->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Elliott Hughesb465ab02011-08-24 11:21:21 -0700375 "offset=%d length=%d string.length()=%d", start, length, array_length);
376}
Elliott Hughes814e4032011-08-23 12:07:56 -0700377
378template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700379void GetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700380 ArrayT* array = Decode<ArrayT*>(ts, java_array);
381 if (start < 0 || length < 0 || start + length > array->GetLength()) {
382 ThrowAIOOBE(ts, array, start, length, "src");
383 } else {
384 JavaT* data = array->GetData();
385 memcpy(buf, data + start, length * sizeof(JavaT));
386 }
387}
388
389template <typename JavaArrayT, typename JavaT, typename ArrayT>
Elliott Hughes75770752011-08-24 17:52:38 -0700390void SetPrimitiveArrayRegion(ScopedJniThreadState& ts, JavaArrayT java_array, jsize start, jsize length, const JavaT* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -0700391 ArrayT* array = Decode<ArrayT*>(ts, java_array);
392 if (start < 0 || length < 0 || start + length > array->GetLength()) {
393 ThrowAIOOBE(ts, array, start, length, "dst");
394 } else {
395 JavaT* data = array->GetData();
396 memcpy(data + start, buf, length * sizeof(JavaT));
397 }
398}
399
Elliott Hughes75770752011-08-24 17:52:38 -0700400jclass InitDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700401 ScopedLocalRef<jclass> buffer_class(env, env->FindClass("java/nio/ReadWriteDirectByteBuffer"));
402 CHECK(buffer_class.get() != NULL);
403 return reinterpret_cast<jclass>(env->NewGlobalRef(buffer_class.get()));
404}
405
Elliott Hughes75770752011-08-24 17:52:38 -0700406jclass GetDirectByteBufferClass(JNIEnv* env) {
Elliott Hughesb465ab02011-08-24 11:21:21 -0700407 static jclass buffer_class = InitDirectByteBufferClass(env);
408 return buffer_class;
409}
410
Elliott Hughes75770752011-08-24 17:52:38 -0700411jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, bool as_daemon) {
412 if (vm == NULL || p_env == NULL) {
413 return JNI_ERR;
414 }
415
416 JavaVMAttachArgs* in_args = static_cast<JavaVMAttachArgs*>(thr_args);
417 JavaVMAttachArgs args;
418 if (thr_args == NULL) {
419 // Allow the v1.1 calling convention.
420 args.version = JNI_VERSION_1_2;
421 args.name = NULL;
422 args.group = NULL; // TODO: get "main" thread group
423 } else {
424 args.version = in_args->version;
425 args.name = in_args->name;
426 if (in_args->group != NULL) {
427 UNIMPLEMENTED(WARNING) << "thr_args->group != NULL";
428 args.group = NULL; // TODO: decode in_args->group
429 } else {
430 args.group = NULL; // TODO: get "main" thread group
431 }
432 }
433 CHECK_GE(args.version, JNI_VERSION_1_2);
434
435 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700436 runtime->AttachCurrentThread(args.name, as_daemon);
437 *p_env = Thread::Current()->GetJniEnv();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700438 return JNI_OK;
Elliott Hughes75770752011-08-24 17:52:38 -0700439}
440
Elliott Hughes79082e32011-08-25 12:07:32 -0700441class SharedLibrary {
442 public:
443 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
444 : path_(path),
445 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700446 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700447 jni_on_load_lock_("JNI_OnLoad lock"),
Elliott Hughes5f791332011-09-15 17:45:30 -0700448 jni_on_load_cond_("JNI_OnLoad"),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700449 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700450 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700451 }
452
Elliott Hughes79082e32011-08-25 12:07:32 -0700453 Object* GetClassLoader() {
454 return class_loader_;
455 }
456
457 std::string GetPath() {
458 return path_;
459 }
460
461 /*
462 * Check the result of an earlier call to JNI_OnLoad on this library. If
463 * the call has not yet finished in another thread, wait for it.
464 */
465 bool CheckOnLoadResult(JavaVMExt* vm) {
466 Thread* self = Thread::Current();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700467 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700468 // Check this so we don't end up waiting for ourselves. We need
469 // to return "true" so the caller can continue.
470 LOG(INFO) << *self << " recursive attempt to load library "
471 << "\"" << path_ << "\"";
472 return true;
473 }
474
475 MutexLock mu(jni_on_load_lock_);
476 while (jni_on_load_result_ == kPending) {
477 if (vm->verbose_jni) {
478 LOG(INFO) << "[" << *self << " waiting for \"" << path_ << "\" "
479 << "JNI_OnLoad...]";
480 }
Elliott Hughes93e74e82011-09-13 11:07:03 -0700481 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughes5f791332011-09-15 17:45:30 -0700482 jni_on_load_cond_.Wait(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700483 }
484
485 bool okay = (jni_on_load_result_ == kOkay);
486 if (vm->verbose_jni) {
487 LOG(INFO) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
488 << (okay ? "succeeded" : "failed") << "]";
489 }
490 return okay;
491 }
492
493 void SetResult(bool result) {
494 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700495 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700496
497 // Broadcast a wakeup to anybody sleeping on the condition variable.
498 MutexLock mu(jni_on_load_lock_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700499 jni_on_load_cond_.Broadcast();
Elliott Hughes79082e32011-08-25 12:07:32 -0700500 }
501
502 void* FindSymbol(const std::string& symbol_name) {
503 return dlsym(handle_, symbol_name.c_str());
504 }
505
506 private:
507 enum JNI_OnLoadState {
508 kPending,
509 kFailed,
510 kOkay,
511 };
512
513 // Path to library "/system/lib/libjni.so".
514 std::string path_;
515
516 // The void* returned by dlopen(3).
517 void* handle_;
518
519 // The ClassLoader this library is associated with.
520 Object* class_loader_;
521
522 // Guards remaining items.
Elliott Hughes8daa0922011-09-11 13:46:25 -0700523 Mutex jni_on_load_lock_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700524 // Wait for JNI_OnLoad in other thread.
Elliott Hughes5f791332011-09-15 17:45:30 -0700525 ConditionVariable jni_on_load_cond_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700526 // Recursive invocation guard.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700527 uint32_t jni_on_load_thread_id_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700528 // Result of earlier JNI_OnLoad call.
529 JNI_OnLoadState jni_on_load_result_;
530};
531
Elliott Hughescdf53122011-08-19 15:46:09 -0700532} // namespace
Carl Shapiroea4dca82011-08-01 13:45:38 -0700533
Elliott Hughes79082e32011-08-25 12:07:32 -0700534// This exists mainly to keep implementation details out of the header file.
535class Libraries {
536 public:
537 Libraries() {
538 }
539
540 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700541 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700542 }
543
544 SharedLibrary* Get(const std::string& path) {
545 return libraries_[path];
546 }
547
548 void Put(const std::string& path, SharedLibrary* library) {
549 libraries_[path] = library;
550 }
551
552 // See section 11.3 "Linking Native Methods" of the JNI spec.
Brian Carlstrom16192862011-09-12 17:50:06 -0700553 void* FindNativeMethod(const Method* m, std::string& detail) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700554 std::string jni_short_name(JniShortName(m));
555 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700556 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700557 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
558 SharedLibrary* library = it->second;
559 if (library->GetClassLoader() != declaring_class_loader) {
560 // We only search libraries loaded by the appropriate ClassLoader.
561 continue;
562 }
563 // Try the short name then the long name...
564 void* fn = library->FindSymbol(jni_short_name);
565 if (fn == NULL) {
566 fn = library->FindSymbol(jni_long_name);
567 }
568 if (fn != NULL) {
569 if (Runtime::Current()->GetJavaVM()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700570 LOG(INFO) << "[Found native code for " << PrettyMethod(m)
Elliott Hughes79082e32011-08-25 12:07:32 -0700571 << " in \"" << library->GetPath() << "\"]";
572 }
573 return fn;
574 }
575 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700576 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700577 detail += PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -0700578 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700579 return NULL;
580 }
581
582 private:
583 typedef std::map<std::string, SharedLibrary*>::iterator It; // TODO: C++0x auto
584
585 std::map<std::string, SharedLibrary*> libraries_;
586};
587
Elliott Hughes418d20f2011-09-22 14:00:39 -0700588JValue InvokeWithJValues(JNIEnv* public_env, jobject obj, jmethodID mid, jvalue* args) {
589 JNIEnvExt* env = reinterpret_cast<JNIEnvExt*>(public_env);
590 Object* receiver = Decode<Object*>(env, obj);
591 Method* method = DecodeMethod(mid);
592 UniquePtr<byte[]> arg_array(CreateArgArray(env, method, args));
593 return InvokeWithArgArray(env, receiver, method, arg_array.get());
594}
595
Elliott Hughescdf53122011-08-19 15:46:09 -0700596class JNI {
597 public:
Carl Shapiroea4dca82011-08-01 13:45:38 -0700598
Elliott Hughescdf53122011-08-19 15:46:09 -0700599 static jint GetVersion(JNIEnv* env) {
600 ScopedJniThreadState ts(env);
601 return JNI_VERSION_1_6;
602 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700603
Elliott Hughescdf53122011-08-19 15:46:09 -0700604 static jclass DefineClass(JNIEnv* env, const char*, jobject, const jbyte*, jsize) {
605 ScopedJniThreadState ts(env);
606 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700607 return NULL;
608 }
609
Elliott Hughescdf53122011-08-19 15:46:09 -0700610 static jclass FindClass(JNIEnv* env, const char* name) {
611 ScopedJniThreadState ts(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700612 Runtime* runtime = Runtime::Current();
613 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700614 std::string descriptor(NormalizeJniClassDescriptor(name));
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700615 Class* c = NULL;
616 if (runtime->IsStarted()) {
617 // TODO: need to get the appropriate ClassLoader.
618 const ClassLoader* cl = ts.Self()->GetClassLoaderOverride();
619 c = class_linker->FindClass(descriptor, cl);
620 } else {
621 c = class_linker->FindSystemClass(descriptor);
622 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700623 return AddLocalReference<jclass>(env, c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700624 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700625
Elliott Hughescdf53122011-08-19 15:46:09 -0700626 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
627 ScopedJniThreadState ts(env);
628 Method* method = Decode<Method*>(ts, java_method);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700629 return EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700630 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700631
Elliott Hughescdf53122011-08-19 15:46:09 -0700632 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
633 ScopedJniThreadState ts(env);
634 Field* field = Decode<Field*>(ts, java_field);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700635 return EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700636 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700637
Elliott Hughescdf53122011-08-19 15:46:09 -0700638 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
639 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700640 Method* method = DecodeMethod(mid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700641 return AddLocalReference<jobject>(env, method);
Elliott Hughescdf53122011-08-19 15:46:09 -0700642 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700643
Elliott Hughescdf53122011-08-19 15:46:09 -0700644 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
645 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700646 Field* field = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700647 return AddLocalReference<jobject>(env, field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700648 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700649
Elliott Hughes37f7a402011-08-22 18:56:01 -0700650 static jclass GetObjectClass(JNIEnv* env, jobject java_object) {
651 ScopedJniThreadState ts(env);
652 Object* o = Decode<Object*>(ts, java_object);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700653 return AddLocalReference<jclass>(env, o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700654 }
655
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700656 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700657 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700658 Class* c = Decode<Class*>(ts, java_class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700659 return AddLocalReference<jclass>(env, c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700660 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700661
Elliott Hughes37f7a402011-08-22 18:56:01 -0700662 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700663 ScopedJniThreadState ts(env);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700664 Class* c1 = Decode<Class*>(ts, java_class1);
665 Class* c2 = Decode<Class*>(ts, java_class2);
666 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700667 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700668
Elliott Hughes37f7a402011-08-22 18:56:01 -0700669 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass clazz) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700670 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -0700671 CHECK_NE(static_cast<jclass>(NULL), clazz); // TODO: ReportJniError
Elliott Hughes37f7a402011-08-22 18:56:01 -0700672 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700673 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700674 return JNI_TRUE;
675 } else {
676 Object* obj = Decode<Object*>(ts, jobj);
677 Class* klass = Decode<Class*>(ts, clazz);
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700678 return obj->InstanceOf(klass) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700679 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700680 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700681
Elliott Hughes37f7a402011-08-22 18:56:01 -0700682 static jint Throw(JNIEnv* env, jthrowable java_exception) {
683 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700684 Throwable* exception = Decode<Throwable*>(ts, java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700685 if (exception == NULL) {
686 return JNI_ERR;
687 }
688 ts.Self()->SetException(exception);
689 return JNI_OK;
690 }
691
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700692 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Elliott Hughes37f7a402011-08-22 18:56:01 -0700693 ScopedJniThreadState ts(env);
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700694 // TODO: check for a pending exception to decide what constructor to call.
695 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
696 if (mid == NULL) {
697 return JNI_ERR;
698 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700699 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700700 if (msg != NULL && s.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700701 return JNI_ERR;
702 }
703
704 jvalue args[1];
Elliott Hughes72025e52011-08-23 17:50:30 -0700705 args[0].l = s.get();
706 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(c, mid, args)));
707 if (exception.get() == NULL) {
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700708 return JNI_ERR;
709 }
710
Elliott Hughes72025e52011-08-23 17:50:30 -0700711 ts.Self()->SetException(Decode<Throwable*>(ts, exception.get()));
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700712
Elliott Hughes37f7a402011-08-22 18:56:01 -0700713 return JNI_OK;
714 }
715
716 static jboolean ExceptionCheck(JNIEnv* env) {
717 ScopedJniThreadState ts(env);
718 return ts.Self()->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
719 }
720
721 static void ExceptionClear(JNIEnv* env) {
722 ScopedJniThreadState ts(env);
723 ts.Self()->ClearException();
724 }
725
726 static void ExceptionDescribe(JNIEnv* env) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700727 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700728
729 Thread* self = ts.Self();
730 Throwable* original_exception = self->GetException();
731 self->ClearException();
732
Elliott Hughesbf86d042011-08-31 17:53:14 -0700733 ScopedLocalRef<jthrowable> exception(env, AddLocalReference<jthrowable>(env, original_exception));
Elliott Hughes72025e52011-08-23 17:50:30 -0700734 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
735 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
736 if (mid == NULL) {
737 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Elliott Hughes54e7df12011-09-16 11:47:04 -0700738 << PrettyTypeOf(original_exception);
Elliott Hughes72025e52011-08-23 17:50:30 -0700739 } else {
740 env->CallVoidMethod(exception.get(), mid);
741 if (self->IsExceptionPending()) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700742 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(self->GetException())
Elliott Hughes72025e52011-08-23 17:50:30 -0700743 << " thrown while calling printStackTrace";
744 self->ClearException();
745 }
746 }
747
748 self->SetException(original_exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700749 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700750
Elliott Hughescdf53122011-08-19 15:46:09 -0700751 static jthrowable ExceptionOccurred(JNIEnv* env) {
752 ScopedJniThreadState ts(env);
753 Object* exception = ts.Self()->GetException();
754 if (exception == NULL) {
755 return NULL;
756 } else {
757 // TODO: if adding a local reference failing causes the VM to abort
758 // then the following check will never occur.
Elliott Hughesbf86d042011-08-31 17:53:14 -0700759 jthrowable localException = AddLocalReference<jthrowable>(env, exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700760 if (localException == NULL) {
761 // We were unable to add a new local reference, and threw a new
762 // exception. We can't return "exception", because it's not a
763 // local reference. So we have to return NULL, indicating that
764 // there was no exception, even though it's pretty much raining
765 // exceptions in here.
766 LOG(WARNING) << "JNI WARNING: addLocal/exception combo";
767 }
768 return localException;
769 }
770 }
771
Elliott Hughescdf53122011-08-19 15:46:09 -0700772 static void FatalError(JNIEnv* env, const char* msg) {
773 ScopedJniThreadState ts(env);
774 LOG(FATAL) << "JNI FatalError called: " << msg;
775 }
776
777 static jint PushLocalFrame(JNIEnv* env, jint cap) {
778 ScopedJniThreadState ts(env);
779 UNIMPLEMENTED(WARNING) << "ignoring PushLocalFrame(" << cap << ")";
780 return JNI_OK;
781 }
782
783 static jobject PopLocalFrame(JNIEnv* env, jobject res) {
784 ScopedJniThreadState ts(env);
785 UNIMPLEMENTED(WARNING) << "ignoring PopLocalFrame " << res;
786 return res;
787 }
788
Elliott Hughes72025e52011-08-23 17:50:30 -0700789 static jint EnsureLocalCapacity(JNIEnv* env, jint cap) {
790 ScopedJniThreadState ts(env);
791 UNIMPLEMENTED(WARNING) << "ignoring EnsureLocalCapacity(" << cap << ")";
792 return 0;
793 }
794
Elliott Hughescdf53122011-08-19 15:46:09 -0700795 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
796 ScopedJniThreadState ts(env);
797 if (obj == NULL) {
798 return NULL;
799 }
800
Elliott Hughes75770752011-08-24 17:52:38 -0700801 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700802 IndirectReferenceTable& globals = vm->globals;
803 MutexLock mu(vm->globals_lock);
804 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, Decode<Object*>(ts, obj));
805 return reinterpret_cast<jobject>(ref);
806 }
807
808 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
809 ScopedJniThreadState ts(env);
810 if (obj == NULL) {
811 return;
812 }
813
Elliott Hughes75770752011-08-24 17:52:38 -0700814 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700815 IndirectReferenceTable& globals = vm->globals;
816 MutexLock mu(vm->globals_lock);
817
818 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
819 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
820 << "failed to find entry";
821 }
822 }
823
824 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
825 ScopedJniThreadState ts(env);
826 return AddWeakGlobalReference(ts, Decode<Object*>(ts, obj));
827 }
828
829 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
830 ScopedJniThreadState ts(env);
831 if (obj == NULL) {
832 return;
833 }
834
Elliott Hughes75770752011-08-24 17:52:38 -0700835 JavaVMExt* vm = ts.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700836 IndirectReferenceTable& weak_globals = vm->weak_globals;
837 MutexLock mu(vm->weak_globals_lock);
838
839 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
840 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
841 << "failed to find entry";
842 }
843 }
844
845 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
846 ScopedJniThreadState ts(env);
847 if (obj == NULL) {
848 return NULL;
849 }
850
851 IndirectReferenceTable& locals = ts.Env()->locals;
852
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700853 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700854 IndirectRef ref = locals.Add(cookie, Decode<Object*>(ts, obj));
855 return reinterpret_cast<jobject>(ref);
856 }
857
858 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
859 ScopedJniThreadState ts(env);
860 if (obj == NULL) {
861 return;
862 }
863
864 IndirectReferenceTable& locals = ts.Env()->locals;
865
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700866 uint32_t cookie = ts.Env()->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700867 if (!locals.Remove(cookie, obj)) {
868 // Attempting to delete a local reference that is not in the
869 // topmost local reference frame is a no-op. DeleteLocalRef returns
870 // void and doesn't throw any exceptions, but we should probably
871 // complain about it so the user will notice that things aren't
872 // going quite the way they expect.
873 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
874 << "failed to find entry";
875 }
876 }
877
878 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
879 ScopedJniThreadState ts(env);
880 return (Decode<Object*>(ts, obj1) == Decode<Object*>(ts, obj2))
881 ? JNI_TRUE : JNI_FALSE;
882 }
883
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700884 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700885 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700886 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700887 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700888 return NULL;
889 }
Elliott Hughesbf86d042011-08-31 17:53:14 -0700890 return AddLocalReference<jobject>(env, c->AllocObject());
Elliott Hughescdf53122011-08-19 15:46:09 -0700891 }
892
Elliott Hughes72025e52011-08-23 17:50:30 -0700893 static jobject NewObject(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700894 ScopedJniThreadState ts(env);
895 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700896 va_start(args, mid);
897 jobject result = NewObjectV(env, clazz, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700898 va_end(args);
899 return result;
900 }
901
Elliott Hughes72025e52011-08-23 17:50:30 -0700902 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700903 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700904 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700905 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700906 return NULL;
907 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700908 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700909 jobject local_result = AddLocalReference<jobject>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700910 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700911 return local_result;
912 }
913
Elliott Hughes72025e52011-08-23 17:50:30 -0700914 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700915 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700916 Class* c = Decode<Class*>(ts, java_class);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700917 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700918 return NULL;
919 }
Brian Carlstrom1f870082011-08-23 16:02:11 -0700920 Object* result = c->AllocObject();
Elliott Hughesbf86d042011-08-31 17:53:14 -0700921 jobject local_result = AddLocalReference<jobjectArray>(env, result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700922 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700923 return local_result;
924 }
925
Elliott Hughescdf53122011-08-19 15:46:09 -0700926 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
927 ScopedJniThreadState ts(env);
928 return FindMethodID(ts, c, name, sig, false);
929 }
930
931 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
932 ScopedJniThreadState ts(env);
933 return FindMethodID(ts, c, name, sig, true);
934 }
935
Elliott Hughes72025e52011-08-23 17:50:30 -0700936 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700937 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700938 va_list ap;
939 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700940 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700941 va_end(ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700942 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700943 }
944
Elliott Hughes72025e52011-08-23 17:50:30 -0700945 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700946 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700947 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700948 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700949 }
950
Elliott Hughes72025e52011-08-23 17:50:30 -0700951 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700952 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700953 JValue result = InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700954 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -0700955 }
956
Elliott Hughes72025e52011-08-23 17:50:30 -0700957 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700958 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700959 va_list ap;
960 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700961 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700962 va_end(ap);
963 return result.z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700964 }
965
Elliott Hughes72025e52011-08-23 17:50:30 -0700966 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700967 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700968 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700969 }
970
Elliott Hughes72025e52011-08-23 17:50:30 -0700971 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700972 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700973 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -0700974 }
975
Elliott Hughes72025e52011-08-23 17:50:30 -0700976 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700977 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700978 va_list ap;
979 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700980 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -0700981 va_end(ap);
982 return result.b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700983 }
984
Elliott Hughes72025e52011-08-23 17:50:30 -0700985 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700986 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700987 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700988 }
989
Elliott Hughes72025e52011-08-23 17:50:30 -0700990 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700991 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700992 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -0700993 }
994
Elliott Hughes72025e52011-08-23 17:50:30 -0700995 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700996 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700997 va_list ap;
998 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700999 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001000 va_end(ap);
1001 return result.c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001002 }
1003
Elliott Hughes72025e52011-08-23 17:50:30 -07001004 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001005 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001006 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001007 }
1008
Elliott Hughes72025e52011-08-23 17:50:30 -07001009 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001010 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001011 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001012 }
1013
Elliott Hughes72025e52011-08-23 17:50:30 -07001014 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001015 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001016 va_list ap;
1017 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001018 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001019 va_end(ap);
1020 return result.d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001021 }
1022
Elliott Hughes72025e52011-08-23 17:50:30 -07001023 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001024 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001025 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001026 }
1027
Elliott Hughes72025e52011-08-23 17:50:30 -07001028 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001029 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001030 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001031 }
1032
Elliott Hughes72025e52011-08-23 17:50:30 -07001033 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001034 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001035 va_list ap;
1036 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001037 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001038 va_end(ap);
1039 return result.f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001040 }
1041
Elliott Hughes72025e52011-08-23 17:50:30 -07001042 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001043 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001044 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001045 }
1046
Elliott Hughes72025e52011-08-23 17:50:30 -07001047 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001048 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001049 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001050 }
1051
Elliott Hughes72025e52011-08-23 17:50:30 -07001052 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001053 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001054 va_list ap;
1055 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001056 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001057 va_end(ap);
1058 return result.i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001059 }
1060
Elliott Hughes72025e52011-08-23 17:50:30 -07001061 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001062 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001063 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001064 }
1065
Elliott Hughes72025e52011-08-23 17:50:30 -07001066 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001067 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001068 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001069 }
1070
Elliott Hughes72025e52011-08-23 17:50:30 -07001071 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001072 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001073 va_list ap;
1074 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001075 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001076 va_end(ap);
1077 return result.j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001078 }
1079
Elliott Hughes72025e52011-08-23 17:50:30 -07001080 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001081 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001082 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001083 }
1084
Elliott Hughes72025e52011-08-23 17:50:30 -07001085 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001086 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001087 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001088 }
1089
Elliott Hughes72025e52011-08-23 17:50:30 -07001090 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001091 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001092 va_list ap;
1093 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001094 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001095 va_end(ap);
1096 return result.s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001097 }
1098
Elliott Hughes72025e52011-08-23 17:50:30 -07001099 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001100 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001101 return InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001102 }
1103
Elliott Hughes72025e52011-08-23 17:50:30 -07001104 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001105 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001106 return InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001107 }
1108
Elliott Hughes72025e52011-08-23 17:50:30 -07001109 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001110 ScopedJniThreadState ts(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001111 va_list ap;
1112 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001113 JValue result = InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001114 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001115 }
1116
Elliott Hughes72025e52011-08-23 17:50:30 -07001117 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001118 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001119 InvokeVirtualOrInterfaceWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001120 }
1121
Elliott Hughes72025e52011-08-23 17:50:30 -07001122 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001123 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001124 InvokeVirtualOrInterfaceWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001125 }
1126
1127 static jobject CallNonvirtualObjectMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001128 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001129 ScopedJniThreadState ts(env);
1130 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001131 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001132 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001133 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001134 va_end(ap);
1135 return local_result;
1136 }
1137
1138 static jobject CallNonvirtualObjectMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001139 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001140 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001141 JValue result = InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001142 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001143 }
1144
1145 static jobject CallNonvirtualObjectMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001146 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001147 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001148 JValue result = InvokeWithJValues(env, obj, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001149 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001150 }
1151
1152 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001153 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001154 ScopedJniThreadState ts(env);
1155 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001156 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001157 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001158 va_end(ap);
1159 return result.z;
1160 }
1161
1162 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001163 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001164 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001165 return InvokeWithVarArgs(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001166 }
1167
1168 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001169 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001170 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001171 return InvokeWithJValues(env, obj, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001172 }
1173
1174 static jbyte CallNonvirtualByteMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001175 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001176 ScopedJniThreadState ts(env);
1177 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001178 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001179 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001180 va_end(ap);
1181 return result.b;
1182 }
1183
1184 static jbyte CallNonvirtualByteMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001185 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001186 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001187 return InvokeWithVarArgs(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001188 }
1189
1190 static jbyte CallNonvirtualByteMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001191 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001192 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001193 return InvokeWithJValues(env, obj, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001194 }
1195
1196 static jchar CallNonvirtualCharMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001197 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001198 ScopedJniThreadState ts(env);
1199 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001200 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001201 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001202 va_end(ap);
1203 return result.c;
1204 }
1205
1206 static jchar CallNonvirtualCharMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001207 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001208 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001209 return InvokeWithVarArgs(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001210 }
1211
1212 static jchar CallNonvirtualCharMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001213 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001214 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001215 return InvokeWithJValues(env, obj, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001216 }
1217
1218 static jshort CallNonvirtualShortMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001219 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001220 ScopedJniThreadState ts(env);
1221 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001222 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001223 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001224 va_end(ap);
1225 return result.s;
1226 }
1227
1228 static jshort CallNonvirtualShortMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001229 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001230 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001231 return InvokeWithVarArgs(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001232 }
1233
1234 static jshort CallNonvirtualShortMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001235 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001236 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001237 return InvokeWithJValues(env, obj, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001238 }
1239
Elliott Hughes418d20f2011-09-22 14:00:39 -07001240 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001241 ScopedJniThreadState ts(env);
1242 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001243 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001244 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001245 va_end(ap);
1246 return result.i;
1247 }
1248
1249 static jint CallNonvirtualIntMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001250 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001251 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001252 return InvokeWithVarArgs(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001253 }
1254
1255 static jint CallNonvirtualIntMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001256 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001257 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001258 return InvokeWithJValues(env, obj, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001259 }
1260
1261 static jlong CallNonvirtualLongMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001262 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001263 ScopedJniThreadState ts(env);
1264 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001265 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001266 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001267 va_end(ap);
1268 return result.j;
1269 }
1270
1271 static jlong CallNonvirtualLongMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001272 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001273 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001274 return InvokeWithVarArgs(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001275 }
1276
1277 static jlong CallNonvirtualLongMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001278 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001279 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001280 return InvokeWithJValues(env, obj, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001281 }
1282
1283 static jfloat CallNonvirtualFloatMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001284 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001285 ScopedJniThreadState ts(env);
1286 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001287 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001288 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001289 va_end(ap);
1290 return result.f;
1291 }
1292
1293 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001294 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001295 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001296 return InvokeWithVarArgs(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001297 }
1298
1299 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001300 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001301 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001302 return InvokeWithJValues(env, obj, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001303 }
1304
1305 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001306 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001307 ScopedJniThreadState ts(env);
1308 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001309 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001310 JValue result = InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001311 va_end(ap);
1312 return result.d;
1313 }
1314
1315 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001316 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001317 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001318 return InvokeWithVarArgs(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001319 }
1320
1321 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001322 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001323 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001324 return InvokeWithJValues(env, obj, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001325 }
1326
1327 static void CallNonvirtualVoidMethod(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001328 jobject obj, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001329 ScopedJniThreadState ts(env);
1330 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001331 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001332 InvokeWithVarArgs(env, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001333 va_end(ap);
1334 }
1335
1336 static void CallNonvirtualVoidMethodV(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001337 jobject obj, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001338 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001339 InvokeWithVarArgs(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001340 }
1341
1342 static void CallNonvirtualVoidMethodA(JNIEnv* env,
Elliott Hughes72025e52011-08-23 17:50:30 -07001343 jobject obj, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001344 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001345 InvokeWithJValues(env, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001346 }
1347
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001348 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001349 ScopedJniThreadState ts(env);
1350 return FindFieldID(ts, c, name, sig, false);
1351 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001352
1353
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001354 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001355 ScopedJniThreadState ts(env);
1356 return FindFieldID(ts, c, name, sig, true);
1357 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001358
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001359 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001360 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001361 Object* o = Decode<Object*>(ts, obj);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001362 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001363 return AddLocalReference<jobject>(env, f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001364 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001365
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001366 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001367 ScopedJniThreadState ts(env);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001368 Field* f = DecodeField(fid);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001369 return AddLocalReference<jobject>(env, f->GetObject(NULL));
Elliott Hughescdf53122011-08-19 15:46:09 -07001370 }
1371
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001372 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001373 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001374 Object* o = Decode<Object*>(ts, java_object);
1375 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001376 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001377 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001378 }
1379
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001380 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001381 ScopedJniThreadState ts(env);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001382 Object* v = Decode<Object*>(ts, java_value);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001383 Field* f = DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001384 f->SetObject(NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001385 }
1386
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001387#define GET_PRIMITIVE_FIELD(fn, instance) \
1388 ScopedJniThreadState ts(env); \
1389 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001390 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001391 return f->fn(o)
1392
1393#define SET_PRIMITIVE_FIELD(fn, instance, value) \
1394 ScopedJniThreadState ts(env); \
1395 Object* o = Decode<Object*>(ts, instance); \
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001396 Field* f = DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001397 f->fn(o, value)
1398
1399 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
1400 GET_PRIMITIVE_FIELD(GetBoolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001401 }
1402
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001403 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
1404 GET_PRIMITIVE_FIELD(GetByte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001405 }
1406
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001407 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
1408 GET_PRIMITIVE_FIELD(GetChar, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001409 }
1410
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001411 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
1412 GET_PRIMITIVE_FIELD(GetShort, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001413 }
1414
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001415 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
1416 GET_PRIMITIVE_FIELD(GetInt, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001417 }
1418
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001419 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
1420 GET_PRIMITIVE_FIELD(GetLong, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001421 }
1422
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001423 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
1424 GET_PRIMITIVE_FIELD(GetFloat, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001425 }
1426
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001427 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
1428 GET_PRIMITIVE_FIELD(GetDouble, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001429 }
1430
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001431 static jboolean GetStaticBooleanField(JNIEnv* env, jclass clazz, jfieldID fid) {
1432 GET_PRIMITIVE_FIELD(GetBoolean, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001433 }
1434
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001435 static jbyte GetStaticByteField(JNIEnv* env, jclass clazz, jfieldID fid) {
1436 GET_PRIMITIVE_FIELD(GetByte, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001437 }
1438
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001439 static jchar GetStaticCharField(JNIEnv* env, jclass clazz, jfieldID fid) {
1440 GET_PRIMITIVE_FIELD(GetChar, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001441 }
1442
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001443 static jshort GetStaticShortField(JNIEnv* env, jclass clazz, jfieldID fid) {
1444 GET_PRIMITIVE_FIELD(GetShort, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001445 }
1446
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001447 static jint GetStaticIntField(JNIEnv* env, jclass clazz, jfieldID fid) {
1448 GET_PRIMITIVE_FIELD(GetInt, NULL);
Elliott Hughescdf53122011-08-19 15:46:09 -07001449 }
1450
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001451 static jlong GetStaticLongField(JNIEnv* env, jclass clazz, jfieldID fid) {
1452 GET_PRIMITIVE_FIELD(GetLong, NULL);
1453 }
1454
1455 static jfloat GetStaticFloatField(JNIEnv* env, jclass clazz, jfieldID fid) {
1456 GET_PRIMITIVE_FIELD(GetFloat, NULL);
1457 }
1458
1459 static jdouble GetStaticDoubleField(JNIEnv* env, jclass clazz, jfieldID fid) {
1460 GET_PRIMITIVE_FIELD(GetDouble, NULL);
1461 }
1462
1463 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
1464 SET_PRIMITIVE_FIELD(SetBoolean, obj, v);
1465 }
1466
1467 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
1468 SET_PRIMITIVE_FIELD(SetByte, obj, v);
1469 }
1470
1471 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
1472 SET_PRIMITIVE_FIELD(SetChar, obj, v);
1473 }
1474
1475 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
1476 SET_PRIMITIVE_FIELD(SetFloat, obj, v);
1477 }
1478
1479 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
1480 SET_PRIMITIVE_FIELD(SetDouble, obj, v);
1481 }
1482
1483 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
1484 SET_PRIMITIVE_FIELD(SetInt, obj, v);
1485 }
1486
1487 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
1488 SET_PRIMITIVE_FIELD(SetLong, obj, v);
1489 }
1490
1491 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
1492 SET_PRIMITIVE_FIELD(SetShort, obj, v);
1493 }
1494
1495 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
1496 SET_PRIMITIVE_FIELD(SetBoolean, NULL, v);
1497 }
1498
1499 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
1500 SET_PRIMITIVE_FIELD(SetByte, NULL, v);
1501 }
1502
1503 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
1504 SET_PRIMITIVE_FIELD(SetChar, NULL, v);
1505 }
1506
1507 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
1508 SET_PRIMITIVE_FIELD(SetFloat, NULL, v);
1509 }
1510
1511 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
1512 SET_PRIMITIVE_FIELD(SetDouble, NULL, v);
1513 }
1514
1515 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
1516 SET_PRIMITIVE_FIELD(SetInt, NULL, v);
1517 }
1518
1519 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
1520 SET_PRIMITIVE_FIELD(SetLong, NULL, v);
1521 }
1522
1523 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
1524 SET_PRIMITIVE_FIELD(SetShort, NULL, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001525 }
1526
Elliott Hughes418d20f2011-09-22 14:00:39 -07001527 static jobject CallStaticObjectMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001528 ScopedJniThreadState ts(env);
1529 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001530 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001531 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001532 jobject local_result = AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001533 va_end(ap);
1534 return local_result;
1535 }
1536
Elliott Hughes418d20f2011-09-22 14:00:39 -07001537 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001538 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001539 JValue result = InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001540 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001541 }
1542
Elliott Hughes418d20f2011-09-22 14:00:39 -07001543 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001544 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001545 JValue result = InvokeWithJValues(env, NULL, mid, args);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001546 return AddLocalReference<jobject>(env, result.l);
Elliott Hughescdf53122011-08-19 15:46:09 -07001547 }
1548
Elliott Hughes418d20f2011-09-22 14:00:39 -07001549 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001550 ScopedJniThreadState ts(env);
1551 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001552 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001553 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001554 va_end(ap);
1555 return result.z;
1556 }
1557
Elliott Hughes418d20f2011-09-22 14:00:39 -07001558 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001559 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001560 return InvokeWithVarArgs(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001561 }
1562
Elliott Hughes418d20f2011-09-22 14:00:39 -07001563 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001564 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001565 return InvokeWithJValues(env, NULL, mid, args).z;
Elliott Hughescdf53122011-08-19 15:46:09 -07001566 }
1567
Elliott Hughes72025e52011-08-23 17:50:30 -07001568 static jbyte CallStaticByteMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001569 ScopedJniThreadState ts(env);
1570 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001571 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001572 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001573 va_end(ap);
1574 return result.b;
1575 }
1576
Elliott Hughes418d20f2011-09-22 14:00:39 -07001577 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001578 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001579 return InvokeWithVarArgs(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001580 }
1581
Elliott Hughes418d20f2011-09-22 14:00:39 -07001582 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001583 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001584 return InvokeWithJValues(env, NULL, mid, args).b;
Elliott Hughescdf53122011-08-19 15:46:09 -07001585 }
1586
Elliott Hughes72025e52011-08-23 17:50:30 -07001587 static jchar CallStaticCharMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001588 ScopedJniThreadState ts(env);
1589 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001590 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001591 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001592 va_end(ap);
1593 return result.c;
1594 }
1595
Elliott Hughes418d20f2011-09-22 14:00:39 -07001596 static jchar CallStaticCharMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001597 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001598 return InvokeWithVarArgs(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001599 }
1600
Elliott Hughes418d20f2011-09-22 14:00:39 -07001601 static jchar CallStaticCharMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001602 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001603 return InvokeWithJValues(env, NULL, mid, args).c;
Elliott Hughescdf53122011-08-19 15:46:09 -07001604 }
1605
Elliott Hughes72025e52011-08-23 17:50:30 -07001606 static jshort CallStaticShortMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001607 ScopedJniThreadState ts(env);
1608 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001609 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001610 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001611 va_end(ap);
1612 return result.s;
1613 }
1614
Elliott Hughes418d20f2011-09-22 14:00:39 -07001615 static jshort CallStaticShortMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001616 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001617 return InvokeWithVarArgs(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001618 }
1619
Elliott Hughes418d20f2011-09-22 14:00:39 -07001620 static jshort CallStaticShortMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001621 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001622 return InvokeWithJValues(env, NULL, mid, args).s;
Elliott Hughescdf53122011-08-19 15:46:09 -07001623 }
1624
Elliott Hughes72025e52011-08-23 17:50:30 -07001625 static jint CallStaticIntMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001626 ScopedJniThreadState ts(env);
1627 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001628 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001629 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001630 va_end(ap);
1631 return result.i;
1632 }
1633
Elliott Hughes418d20f2011-09-22 14:00:39 -07001634 static jint CallStaticIntMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001635 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001636 return InvokeWithVarArgs(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001637 }
1638
Elliott Hughes418d20f2011-09-22 14:00:39 -07001639 static jint CallStaticIntMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001640 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001641 return InvokeWithJValues(env, NULL, mid, args).i;
Elliott Hughescdf53122011-08-19 15:46:09 -07001642 }
1643
Elliott Hughes72025e52011-08-23 17:50:30 -07001644 static jlong CallStaticLongMethod(JNIEnv* env, jclass clazz, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001645 ScopedJniThreadState ts(env);
1646 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001647 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001648 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001649 va_end(ap);
1650 return result.j;
1651 }
1652
Elliott Hughes418d20f2011-09-22 14:00:39 -07001653 static jlong CallStaticLongMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001654 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001655 return InvokeWithVarArgs(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001656 }
1657
Elliott Hughes418d20f2011-09-22 14:00:39 -07001658 static jlong CallStaticLongMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001659 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001660 return InvokeWithJValues(env, NULL, mid, args).j;
Elliott Hughescdf53122011-08-19 15:46:09 -07001661 }
1662
Elliott Hughes72025e52011-08-23 17:50:30 -07001663 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001664 ScopedJniThreadState ts(env);
1665 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001666 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001667 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001668 va_end(ap);
1669 return result.f;
1670 }
1671
Elliott Hughes418d20f2011-09-22 14:00:39 -07001672 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001673 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001674 return InvokeWithVarArgs(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001675 }
1676
Elliott Hughes418d20f2011-09-22 14:00:39 -07001677 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001678 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001679 return InvokeWithJValues(env, NULL, mid, args).f;
Elliott Hughescdf53122011-08-19 15:46:09 -07001680 }
1681
Elliott Hughes72025e52011-08-23 17:50:30 -07001682 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001683 ScopedJniThreadState ts(env);
1684 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001685 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001686 JValue result = InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001687 va_end(ap);
1688 return result.d;
1689 }
1690
Elliott Hughes418d20f2011-09-22 14:00:39 -07001691 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass clazz, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001692 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001693 return InvokeWithVarArgs(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001694 }
1695
Elliott Hughes418d20f2011-09-22 14:00:39 -07001696 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass clazz, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001697 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001698 return InvokeWithJValues(env, NULL, mid, args).d;
Elliott Hughescdf53122011-08-19 15:46:09 -07001699 }
1700
Elliott Hughes72025e52011-08-23 17:50:30 -07001701 static void CallStaticVoidMethod(JNIEnv* env, jclass cls, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001702 ScopedJniThreadState ts(env);
1703 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001704 va_start(ap, mid);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001705 InvokeWithVarArgs(env, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001706 va_end(ap);
1707 }
1708
Elliott Hughes418d20f2011-09-22 14:00:39 -07001709 static void CallStaticVoidMethodV(JNIEnv* env, jclass cls, jmethodID mid, va_list args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001710 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001711 InvokeWithVarArgs(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001712 }
1713
Elliott Hughes418d20f2011-09-22 14:00:39 -07001714 static void CallStaticVoidMethodA(JNIEnv* env, jclass cls, jmethodID mid, jvalue* args) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001715 ScopedJniThreadState ts(env);
Elliott Hughes418d20f2011-09-22 14:00:39 -07001716 InvokeWithJValues(env, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001717 }
1718
Elliott Hughes814e4032011-08-23 12:07:56 -07001719 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001720 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001721 if (chars == NULL && char_count == 0) {
1722 return NULL;
1723 }
1724 String* result = String::AllocFromUtf16(char_count, chars);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001725 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001726 }
1727
1728 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
1729 ScopedJniThreadState ts(env);
1730 if (utf == NULL) {
1731 return NULL;
1732 }
1733 String* result = String::AllocFromModifiedUtf8(utf);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001734 return AddLocalReference<jstring>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001735 }
1736
Elliott Hughes814e4032011-08-23 12:07:56 -07001737 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
1738 ScopedJniThreadState ts(env);
1739 return Decode<String*>(ts, java_string)->GetLength();
1740 }
1741
1742 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
1743 ScopedJniThreadState ts(env);
1744 return Decode<String*>(ts, java_string)->GetUtfLength();
1745 }
1746
Elliott Hughesb465ab02011-08-24 11:21:21 -07001747 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001748 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001749 String* s = Decode<String*>(ts, java_string);
1750 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1751 ThrowSIOOBE(ts, start, length, s->GetLength());
1752 } else {
1753 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1754 memcpy(buf, chars + start, length * sizeof(jchar));
1755 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001756 }
1757
Elliott Hughesb465ab02011-08-24 11:21:21 -07001758 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, char* buf) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001759 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001760 String* s = Decode<String*>(ts, java_string);
1761 if (start < 0 || length < 0 || start + length > s->GetLength()) {
1762 ThrowSIOOBE(ts, start, length, s->GetLength());
1763 } else {
1764 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1765 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1766 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001767 }
1768
Elliott Hughes75770752011-08-24 17:52:38 -07001769 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001770 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001771 String* s = Decode<String*>(ts, java_string);
1772 const CharArray* chars = s->GetCharArray();
1773 PinPrimitiveArray(ts, chars);
1774 if (is_copy != NULL) {
1775 *is_copy = JNI_FALSE;
1776 }
1777 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07001778 }
1779
Elliott Hughes75770752011-08-24 17:52:38 -07001780 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughes814e4032011-08-23 12:07:56 -07001781 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001782 UnpinPrimitiveArray(ts, Decode<String*>(ts, java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07001783 }
1784
Elliott Hughes75770752011-08-24 17:52:38 -07001785 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001786 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001787 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001788 }
1789
Elliott Hughes75770752011-08-24 17:52:38 -07001790 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001791 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001792 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07001793 }
1794
Elliott Hughes75770752011-08-24 17:52:38 -07001795 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001796 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001797 if (java_string == NULL) {
1798 return NULL;
1799 }
1800 if (is_copy != NULL) {
1801 *is_copy = JNI_TRUE;
1802 }
1803 String* s = Decode<String*>(ts, java_string);
1804 size_t byte_count = s->GetUtfLength();
1805 char* bytes = new char[byte_count + 1];
Elliott Hughes418dfe72011-10-06 18:56:27 -07001806 CHECK(bytes != NULL); // bionic aborts anyway.
Elliott Hughes75770752011-08-24 17:52:38 -07001807 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
1808 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
1809 bytes[byte_count] = '\0';
1810 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001811 }
1812
Elliott Hughes75770752011-08-24 17:52:38 -07001813 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001814 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001815 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001816 }
1817
Elliott Hughesbd935992011-08-22 11:59:34 -07001818 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001819 ScopedJniThreadState ts(env);
Elliott Hughesbd935992011-08-22 11:59:34 -07001820 Object* obj = Decode<Object*>(ts, java_array);
Brian Carlstromb63ec392011-08-27 17:38:27 -07001821 CHECK(obj->IsArrayInstance()); // TODO: ReportJniError
Elliott Hughesbd935992011-08-22 11:59:34 -07001822 Array* array = obj->AsArray();
1823 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07001824 }
1825
Elliott Hughes814e4032011-08-23 12:07:56 -07001826 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001827 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07001828 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001829 return AddLocalReference<jobject>(env, array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07001830 }
1831
1832 static void SetObjectArrayElement(JNIEnv* env,
1833 jobjectArray java_array, jsize index, jobject java_value) {
1834 ScopedJniThreadState ts(env);
1835 ObjectArray<Object>* array = Decode<ObjectArray<Object>*>(ts, java_array);
1836 Object* value = Decode<Object*>(ts, java_value);
1837 array->Set(index, value);
1838 }
1839
1840 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
1841 ScopedJniThreadState ts(env);
1842 return NewPrimitiveArray<jbooleanArray, BooleanArray>(ts, length);
1843 }
1844
1845 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
1846 ScopedJniThreadState ts(env);
1847 return NewPrimitiveArray<jbyteArray, ByteArray>(ts, length);
1848 }
1849
1850 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
1851 ScopedJniThreadState ts(env);
1852 return NewPrimitiveArray<jcharArray, CharArray>(ts, length);
1853 }
1854
1855 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
1856 ScopedJniThreadState ts(env);
1857 return NewPrimitiveArray<jdoubleArray, DoubleArray>(ts, length);
1858 }
1859
1860 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
1861 ScopedJniThreadState ts(env);
1862 return NewPrimitiveArray<jfloatArray, FloatArray>(ts, length);
1863 }
1864
1865 static jintArray NewIntArray(JNIEnv* env, jsize length) {
1866 ScopedJniThreadState ts(env);
1867 return NewPrimitiveArray<jintArray, IntArray>(ts, length);
1868 }
1869
1870 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
1871 ScopedJniThreadState ts(env);
1872 return NewPrimitiveArray<jlongArray, LongArray>(ts, length);
1873 }
1874
1875 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
1876 ScopedJniThreadState ts(env);
1877 CHECK_GE(length, 0); // TODO: ReportJniError
1878
1879 // Compute the array class corresponding to the given element class.
1880 Class* element_class = Decode<Class*>(ts, element_jclass);
1881 std::string descriptor;
1882 descriptor += "[";
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001883 descriptor += element_class->GetDescriptor()->ToModifiedUtf8();
Elliott Hughescdf53122011-08-19 15:46:09 -07001884
1885 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07001886 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
1887 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001888 return NULL;
1889 }
1890
Elliott Hughes75770752011-08-24 17:52:38 -07001891 // Allocate and initialize if necessary.
1892 Class* array_class = Decode<Class*>(ts, java_array_class.get());
Elliott Hughescdf53122011-08-19 15:46:09 -07001893 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07001894 if (initial_element != NULL) {
1895 Object* initial_object = Decode<Object*>(ts, initial_element);
1896 for (jsize i = 0; i < length; ++i) {
1897 result->Set(i, initial_object);
1898 }
1899 }
Elliott Hughesbf86d042011-08-31 17:53:14 -07001900 return AddLocalReference<jobjectArray>(env, result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001901 }
1902
1903 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
1904 ScopedJniThreadState ts(env);
1905 return NewPrimitiveArray<jshortArray, ShortArray>(ts, length);
1906 }
1907
Elliott Hughes75770752011-08-24 17:52:38 -07001908 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray array, jboolean* is_copy) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001909 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001910 return GetPrimitiveArray<jarray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001911 }
1912
Elliott Hughes75770752011-08-24 17:52:38 -07001913 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* data, jint mode) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07001914 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001915 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001916 }
1917
Elliott Hughes75770752011-08-24 17:52:38 -07001918 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001919 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001920 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001921 }
1922
Elliott Hughes75770752011-08-24 17:52:38 -07001923 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001924 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001925 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001926 }
1927
Elliott Hughes75770752011-08-24 17:52:38 -07001928 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001929 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001930 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001931 }
1932
Elliott Hughes75770752011-08-24 17:52:38 -07001933 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001934 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001935 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001936 }
1937
Elliott Hughes75770752011-08-24 17:52:38 -07001938 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001939 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001940 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001941 }
1942
Elliott Hughes75770752011-08-24 17:52:38 -07001943 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001944 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001945 return GetPrimitiveArray<jintArray, jint*, IntArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001946 }
1947
Elliott Hughes75770752011-08-24 17:52:38 -07001948 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001949 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001950 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001951 }
1952
Elliott Hughes75770752011-08-24 17:52:38 -07001953 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001954 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001955 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(ts, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001956 }
1957
Elliott Hughes75770752011-08-24 17:52:38 -07001958 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001959 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001960 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001961 }
1962
Elliott Hughes75770752011-08-24 17:52:38 -07001963 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001964 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001965 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001966 }
1967
Elliott Hughes75770752011-08-24 17:52:38 -07001968 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001969 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001970 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001971 }
1972
Elliott Hughes75770752011-08-24 17:52:38 -07001973 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001974 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001975 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001976 }
1977
Elliott Hughes75770752011-08-24 17:52:38 -07001978 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001979 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001980 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001981 }
1982
Elliott Hughes75770752011-08-24 17:52:38 -07001983 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001984 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001985 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001986 }
1987
Elliott Hughes75770752011-08-24 17:52:38 -07001988 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001989 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001990 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001991 }
1992
Elliott Hughes75770752011-08-24 17:52:38 -07001993 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort* data, jint mode) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001994 ScopedJniThreadState ts(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001995 ReleasePrimitiveArray(ts, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001996 }
1997
Elliott Hughes814e4032011-08-23 12:07:56 -07001998 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001999 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002000 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002001 }
2002
Elliott Hughes814e4032011-08-23 12:07:56 -07002003 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002004 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002005 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002006 }
2007
Elliott Hughes814e4032011-08-23 12:07:56 -07002008 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002009 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002010 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002011 }
2012
Elliott Hughes814e4032011-08-23 12:07:56 -07002013 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002014 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002015 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002016 }
2017
Elliott Hughes814e4032011-08-23 12:07:56 -07002018 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002019 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002020 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002021 }
2022
Elliott Hughes814e4032011-08-23 12:07:56 -07002023 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002024 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002025 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002026 }
2027
Elliott Hughes814e4032011-08-23 12:07:56 -07002028 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002029 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002030 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002031 }
2032
Elliott Hughes814e4032011-08-23 12:07:56 -07002033 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002034 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002035 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002036 }
2037
Elliott Hughes814e4032011-08-23 12:07:56 -07002038 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, const jboolean* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002039 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002040 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002041 }
2042
Elliott Hughes814e4032011-08-23 12:07:56 -07002043 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, const jbyte* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002044 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002045 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002046 }
2047
Elliott Hughes814e4032011-08-23 12:07:56 -07002048 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, const jchar* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002049 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002050 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002051 }
2052
Elliott Hughes814e4032011-08-23 12:07:56 -07002053 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, const jdouble* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002054 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002055 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002056 }
2057
Elliott Hughes814e4032011-08-23 12:07:56 -07002058 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, const jfloat* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002059 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002060 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002061 }
2062
Elliott Hughes814e4032011-08-23 12:07:56 -07002063 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, const jint* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002064 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002065 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002066 }
2067
Elliott Hughes814e4032011-08-23 12:07:56 -07002068 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, const jlong* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002069 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002070 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002071 }
2072
Elliott Hughes814e4032011-08-23 12:07:56 -07002073 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, const jshort* buf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002074 ScopedJniThreadState ts(env);
Elliott Hughes814e4032011-08-23 12:07:56 -07002075 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(ts, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002076 }
2077
Elliott Hughes5174fe62011-08-23 15:12:35 -07002078 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002079 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002080 Class* c = Decode<Class*>(ts, java_class);
2081
Elliott Hughes5174fe62011-08-23 15:12:35 -07002082 for (int i = 0; i < method_count; i++) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002083 const char* name = methods[i].name;
2084 const char* sig = methods[i].signature;
2085
2086 if (*sig == '!') {
2087 // TODO: fast jni. it's too noisy to log all these.
2088 ++sig;
2089 }
2090
Elliott Hughes5174fe62011-08-23 15:12:35 -07002091 Method* m = c->FindDirectMethod(name, sig);
2092 if (m == NULL) {
2093 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002094 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002095 if (m == NULL) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002096 ThrowNoSuchMethodError(ts, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002097 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002098 } else if (!m->IsNative()) {
Elliott Hughes14134a12011-09-30 16:55:51 -07002099 ThrowNoSuchMethodError(ts, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002100 return JNI_ERR;
2101 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002102
Elliott Hughes75770752011-08-24 17:52:38 -07002103 if (ts.Vm()->verbose_jni) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002104 LOG(INFO) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002105 }
2106
2107 m->RegisterNative(methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002108 }
2109 return JNI_OK;
2110 }
2111
Elliott Hughes5174fe62011-08-23 15:12:35 -07002112 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002113 ScopedJniThreadState ts(env);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002114 Class* c = Decode<Class*>(ts, java_class);
2115
Elliott Hughes75770752011-08-24 17:52:38 -07002116 if (ts.Vm()->verbose_jni) {
Elliott Hughes54e7df12011-09-16 11:47:04 -07002117 LOG(INFO) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002118 }
2119
2120 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
2121 Method* m = c->GetDirectMethod(i);
2122 if (m->IsNative()) {
2123 m->UnregisterNative();
2124 }
2125 }
2126 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
2127 Method* m = c->GetVirtualMethod(i);
2128 if (m->IsNative()) {
2129 m->UnregisterNative();
2130 }
2131 }
2132
2133 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002134 }
2135
Elliott Hughes72025e52011-08-23 17:50:30 -07002136 static jint MonitorEnter(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002137 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002138 Decode<Object*>(ts, java_object)->MonitorEnter(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002139 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002140 }
2141
Elliott Hughes72025e52011-08-23 17:50:30 -07002142 static jint MonitorExit(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002143 ScopedJniThreadState ts(env);
Elliott Hughes5f791332011-09-15 17:45:30 -07002144 Decode<Object*>(ts, java_object)->MonitorExit(ts.Self());
Elliott Hughes72025e52011-08-23 17:50:30 -07002145 return ts.Self()->IsExceptionPending() ? JNI_ERR : JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002146 }
2147
2148 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
2149 ScopedJniThreadState ts(env);
2150 Runtime* runtime = Runtime::Current();
2151 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002152 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002153 } else {
2154 *vm = NULL;
2155 }
2156 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2157 }
2158
Elliott Hughescdf53122011-08-19 15:46:09 -07002159 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
2160 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002161
2162 // The address may not be NULL, and the capacity must be > 0.
Elliott Hughes75770752011-08-24 17:52:38 -07002163 CHECK(address != NULL); // TODO: ReportJniError
2164 CHECK_GT(capacity, 0); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002165
2166 jclass buffer_class = GetDirectByteBufferClass(env);
2167 jmethodID mid = env->GetMethodID(buffer_class, "<init>", "(II)V");
2168 if (mid == NULL) {
2169 return NULL;
2170 }
2171
2172 // At the moment, the Java side is limited to 32 bits.
2173 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2174 CHECK_LE(capacity, 0xffffffff);
2175 jint address_arg = reinterpret_cast<jint>(address);
2176 jint capacity_arg = static_cast<jint>(capacity);
2177
2178 jobject result = env->NewObject(buffer_class, mid, address_arg, capacity_arg);
2179 return ts.Self()->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002180 }
2181
Elliott Hughesb465ab02011-08-24 11:21:21 -07002182 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002183 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002184 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "effectiveDirectAddress", "I");
2185 return reinterpret_cast<void*>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002186 }
2187
Elliott Hughesb465ab02011-08-24 11:21:21 -07002188 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002189 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002190 static jfieldID fid = env->GetFieldID(GetDirectByteBufferClass(env), "capacity", "I");
2191 return static_cast<jlong>(env->GetIntField(java_buffer, fid));
Elliott Hughescdf53122011-08-19 15:46:09 -07002192 }
2193
Elliott Hughesb465ab02011-08-24 11:21:21 -07002194 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002195 ScopedJniThreadState ts(env);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002196
Elliott Hughes75770752011-08-24 17:52:38 -07002197 CHECK(java_object != NULL); // TODO: ReportJniError
Elliott Hughesb465ab02011-08-24 11:21:21 -07002198
2199 // Do we definitely know what kind of reference this is?
2200 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2201 IndirectRefKind kind = GetIndirectRefKind(ref);
2202 switch (kind) {
2203 case kLocal:
2204 return JNILocalRefType;
2205 case kGlobal:
2206 return JNIGlobalRefType;
2207 case kWeakGlobal:
2208 return JNIWeakGlobalRefType;
2209 case kSirtOrInvalid:
2210 // Is it in a stack IRT?
2211 if (ts.Self()->SirtContains(java_object)) {
2212 return JNILocalRefType;
2213 }
2214
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002215 if (!ts.Env()->work_around_app_jni_bugs) {
2216 return JNIInvalidRefType;
2217 }
2218
Elliott Hughesb465ab02011-08-24 11:21:21 -07002219 // If we're handing out direct pointers, check whether it's a direct pointer
2220 // to a local reference.
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002221 if (Decode<Object*>(ts, java_object) == reinterpret_cast<Object*>(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002222 if (ts.Env()->locals.Contains(java_object)) {
2223 return JNILocalRefType;
2224 }
2225 }
2226
2227 return JNIInvalidRefType;
2228 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002229 }
2230};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002231
Elliott Hughesa2501992011-08-26 19:39:54 -07002232const JNINativeInterface gNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002233 NULL, // reserved0.
2234 NULL, // reserved1.
2235 NULL, // reserved2.
2236 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002237 JNI::GetVersion,
2238 JNI::DefineClass,
2239 JNI::FindClass,
2240 JNI::FromReflectedMethod,
2241 JNI::FromReflectedField,
2242 JNI::ToReflectedMethod,
2243 JNI::GetSuperclass,
2244 JNI::IsAssignableFrom,
2245 JNI::ToReflectedField,
2246 JNI::Throw,
2247 JNI::ThrowNew,
2248 JNI::ExceptionOccurred,
2249 JNI::ExceptionDescribe,
2250 JNI::ExceptionClear,
2251 JNI::FatalError,
2252 JNI::PushLocalFrame,
2253 JNI::PopLocalFrame,
2254 JNI::NewGlobalRef,
2255 JNI::DeleteGlobalRef,
2256 JNI::DeleteLocalRef,
2257 JNI::IsSameObject,
2258 JNI::NewLocalRef,
2259 JNI::EnsureLocalCapacity,
2260 JNI::AllocObject,
2261 JNI::NewObject,
2262 JNI::NewObjectV,
2263 JNI::NewObjectA,
2264 JNI::GetObjectClass,
2265 JNI::IsInstanceOf,
2266 JNI::GetMethodID,
2267 JNI::CallObjectMethod,
2268 JNI::CallObjectMethodV,
2269 JNI::CallObjectMethodA,
2270 JNI::CallBooleanMethod,
2271 JNI::CallBooleanMethodV,
2272 JNI::CallBooleanMethodA,
2273 JNI::CallByteMethod,
2274 JNI::CallByteMethodV,
2275 JNI::CallByteMethodA,
2276 JNI::CallCharMethod,
2277 JNI::CallCharMethodV,
2278 JNI::CallCharMethodA,
2279 JNI::CallShortMethod,
2280 JNI::CallShortMethodV,
2281 JNI::CallShortMethodA,
2282 JNI::CallIntMethod,
2283 JNI::CallIntMethodV,
2284 JNI::CallIntMethodA,
2285 JNI::CallLongMethod,
2286 JNI::CallLongMethodV,
2287 JNI::CallLongMethodA,
2288 JNI::CallFloatMethod,
2289 JNI::CallFloatMethodV,
2290 JNI::CallFloatMethodA,
2291 JNI::CallDoubleMethod,
2292 JNI::CallDoubleMethodV,
2293 JNI::CallDoubleMethodA,
2294 JNI::CallVoidMethod,
2295 JNI::CallVoidMethodV,
2296 JNI::CallVoidMethodA,
2297 JNI::CallNonvirtualObjectMethod,
2298 JNI::CallNonvirtualObjectMethodV,
2299 JNI::CallNonvirtualObjectMethodA,
2300 JNI::CallNonvirtualBooleanMethod,
2301 JNI::CallNonvirtualBooleanMethodV,
2302 JNI::CallNonvirtualBooleanMethodA,
2303 JNI::CallNonvirtualByteMethod,
2304 JNI::CallNonvirtualByteMethodV,
2305 JNI::CallNonvirtualByteMethodA,
2306 JNI::CallNonvirtualCharMethod,
2307 JNI::CallNonvirtualCharMethodV,
2308 JNI::CallNonvirtualCharMethodA,
2309 JNI::CallNonvirtualShortMethod,
2310 JNI::CallNonvirtualShortMethodV,
2311 JNI::CallNonvirtualShortMethodA,
2312 JNI::CallNonvirtualIntMethod,
2313 JNI::CallNonvirtualIntMethodV,
2314 JNI::CallNonvirtualIntMethodA,
2315 JNI::CallNonvirtualLongMethod,
2316 JNI::CallNonvirtualLongMethodV,
2317 JNI::CallNonvirtualLongMethodA,
2318 JNI::CallNonvirtualFloatMethod,
2319 JNI::CallNonvirtualFloatMethodV,
2320 JNI::CallNonvirtualFloatMethodA,
2321 JNI::CallNonvirtualDoubleMethod,
2322 JNI::CallNonvirtualDoubleMethodV,
2323 JNI::CallNonvirtualDoubleMethodA,
2324 JNI::CallNonvirtualVoidMethod,
2325 JNI::CallNonvirtualVoidMethodV,
2326 JNI::CallNonvirtualVoidMethodA,
2327 JNI::GetFieldID,
2328 JNI::GetObjectField,
2329 JNI::GetBooleanField,
2330 JNI::GetByteField,
2331 JNI::GetCharField,
2332 JNI::GetShortField,
2333 JNI::GetIntField,
2334 JNI::GetLongField,
2335 JNI::GetFloatField,
2336 JNI::GetDoubleField,
2337 JNI::SetObjectField,
2338 JNI::SetBooleanField,
2339 JNI::SetByteField,
2340 JNI::SetCharField,
2341 JNI::SetShortField,
2342 JNI::SetIntField,
2343 JNI::SetLongField,
2344 JNI::SetFloatField,
2345 JNI::SetDoubleField,
2346 JNI::GetStaticMethodID,
2347 JNI::CallStaticObjectMethod,
2348 JNI::CallStaticObjectMethodV,
2349 JNI::CallStaticObjectMethodA,
2350 JNI::CallStaticBooleanMethod,
2351 JNI::CallStaticBooleanMethodV,
2352 JNI::CallStaticBooleanMethodA,
2353 JNI::CallStaticByteMethod,
2354 JNI::CallStaticByteMethodV,
2355 JNI::CallStaticByteMethodA,
2356 JNI::CallStaticCharMethod,
2357 JNI::CallStaticCharMethodV,
2358 JNI::CallStaticCharMethodA,
2359 JNI::CallStaticShortMethod,
2360 JNI::CallStaticShortMethodV,
2361 JNI::CallStaticShortMethodA,
2362 JNI::CallStaticIntMethod,
2363 JNI::CallStaticIntMethodV,
2364 JNI::CallStaticIntMethodA,
2365 JNI::CallStaticLongMethod,
2366 JNI::CallStaticLongMethodV,
2367 JNI::CallStaticLongMethodA,
2368 JNI::CallStaticFloatMethod,
2369 JNI::CallStaticFloatMethodV,
2370 JNI::CallStaticFloatMethodA,
2371 JNI::CallStaticDoubleMethod,
2372 JNI::CallStaticDoubleMethodV,
2373 JNI::CallStaticDoubleMethodA,
2374 JNI::CallStaticVoidMethod,
2375 JNI::CallStaticVoidMethodV,
2376 JNI::CallStaticVoidMethodA,
2377 JNI::GetStaticFieldID,
2378 JNI::GetStaticObjectField,
2379 JNI::GetStaticBooleanField,
2380 JNI::GetStaticByteField,
2381 JNI::GetStaticCharField,
2382 JNI::GetStaticShortField,
2383 JNI::GetStaticIntField,
2384 JNI::GetStaticLongField,
2385 JNI::GetStaticFloatField,
2386 JNI::GetStaticDoubleField,
2387 JNI::SetStaticObjectField,
2388 JNI::SetStaticBooleanField,
2389 JNI::SetStaticByteField,
2390 JNI::SetStaticCharField,
2391 JNI::SetStaticShortField,
2392 JNI::SetStaticIntField,
2393 JNI::SetStaticLongField,
2394 JNI::SetStaticFloatField,
2395 JNI::SetStaticDoubleField,
2396 JNI::NewString,
2397 JNI::GetStringLength,
2398 JNI::GetStringChars,
2399 JNI::ReleaseStringChars,
2400 JNI::NewStringUTF,
2401 JNI::GetStringUTFLength,
2402 JNI::GetStringUTFChars,
2403 JNI::ReleaseStringUTFChars,
2404 JNI::GetArrayLength,
2405 JNI::NewObjectArray,
2406 JNI::GetObjectArrayElement,
2407 JNI::SetObjectArrayElement,
2408 JNI::NewBooleanArray,
2409 JNI::NewByteArray,
2410 JNI::NewCharArray,
2411 JNI::NewShortArray,
2412 JNI::NewIntArray,
2413 JNI::NewLongArray,
2414 JNI::NewFloatArray,
2415 JNI::NewDoubleArray,
2416 JNI::GetBooleanArrayElements,
2417 JNI::GetByteArrayElements,
2418 JNI::GetCharArrayElements,
2419 JNI::GetShortArrayElements,
2420 JNI::GetIntArrayElements,
2421 JNI::GetLongArrayElements,
2422 JNI::GetFloatArrayElements,
2423 JNI::GetDoubleArrayElements,
2424 JNI::ReleaseBooleanArrayElements,
2425 JNI::ReleaseByteArrayElements,
2426 JNI::ReleaseCharArrayElements,
2427 JNI::ReleaseShortArrayElements,
2428 JNI::ReleaseIntArrayElements,
2429 JNI::ReleaseLongArrayElements,
2430 JNI::ReleaseFloatArrayElements,
2431 JNI::ReleaseDoubleArrayElements,
2432 JNI::GetBooleanArrayRegion,
2433 JNI::GetByteArrayRegion,
2434 JNI::GetCharArrayRegion,
2435 JNI::GetShortArrayRegion,
2436 JNI::GetIntArrayRegion,
2437 JNI::GetLongArrayRegion,
2438 JNI::GetFloatArrayRegion,
2439 JNI::GetDoubleArrayRegion,
2440 JNI::SetBooleanArrayRegion,
2441 JNI::SetByteArrayRegion,
2442 JNI::SetCharArrayRegion,
2443 JNI::SetShortArrayRegion,
2444 JNI::SetIntArrayRegion,
2445 JNI::SetLongArrayRegion,
2446 JNI::SetFloatArrayRegion,
2447 JNI::SetDoubleArrayRegion,
2448 JNI::RegisterNatives,
2449 JNI::UnregisterNatives,
2450 JNI::MonitorEnter,
2451 JNI::MonitorExit,
2452 JNI::GetJavaVM,
2453 JNI::GetStringRegion,
2454 JNI::GetStringUTFRegion,
2455 JNI::GetPrimitiveArrayCritical,
2456 JNI::ReleasePrimitiveArrayCritical,
2457 JNI::GetStringCritical,
2458 JNI::ReleaseStringCritical,
2459 JNI::NewWeakGlobalRef,
2460 JNI::DeleteWeakGlobalRef,
2461 JNI::ExceptionCheck,
2462 JNI::NewDirectByteBuffer,
2463 JNI::GetDirectBufferAddress,
2464 JNI::GetDirectBufferCapacity,
2465 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002466};
2467
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002468static const size_t kMonitorsInitial = 32; // Arbitrary.
2469static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
2470
2471static const size_t kLocalsInitial = 64; // Arbitrary.
2472static const size_t kLocalsMax = 512; // Arbitrary sanity check.
Elliott Hughesbbd76712011-08-17 10:25:24 -07002473
Elliott Hughes75770752011-08-24 17:52:38 -07002474JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002475 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002476 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002477 local_ref_cookie(IRT_FIRST_SEGMENT),
2478 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes75770752011-08-24 17:52:38 -07002479 check_jni(vm->check_jni),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002480 work_around_app_jni_bugs(vm->work_around_app_jni_bugs),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002481 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002482 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002483 functions = unchecked_functions = &gNativeInterface;
2484 if (check_jni) {
2485 functions = GetCheckJniNativeInterface();
2486 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002487 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2488 // errors will ensue.
2489 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2490 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002491}
2492
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002493JNIEnvExt::~JNIEnvExt() {
2494}
2495
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002496void JNIEnvExt::DumpReferenceTables() {
2497 locals.Dump();
2498 monitors.Dump();
2499}
2500
Carl Shapiroea4dca82011-08-01 13:45:38 -07002501// JNI Invocation interface.
2502
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002503extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, void** p_env, void* vm_args) {
2504 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
2505 if (args->version < JNI_VERSION_1_2) {
2506 return JNI_EVERSION;
2507 }
2508 Runtime::Options options;
2509 for (int i = 0; i < args->nOptions; ++i) {
2510 JavaVMOption* option = &args->options[i];
Carl Shapirofc322c72011-07-27 00:20:01 -07002511 options.push_back(std::make_pair(StringPiece(option->optionString),
2512 option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002513 }
2514 bool ignore_unrecognized = args->ignoreUnrecognized;
Elliott Hughesf2682d52011-08-15 16:37:04 -07002515 Runtime* runtime = Runtime::Create(options, ignore_unrecognized);
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002516 if (runtime == NULL) {
2517 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002518 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002519 runtime->Start();
2520 *p_env = Thread::Current()->GetJniEnv();
2521 *p_vm = runtime->GetJavaVM();
2522 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002523}
2524
Elliott Hughesf2682d52011-08-15 16:37:04 -07002525extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002526 Runtime* runtime = Runtime::Current();
2527 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002528 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002529 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002530 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002531 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002532 }
2533 return JNI_OK;
2534}
2535
2536// Historically unsupported.
2537extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* vm_args) {
2538 return JNI_ERR;
2539}
2540
Elliott Hughescdf53122011-08-19 15:46:09 -07002541class JII {
2542 public:
2543 static jint DestroyJavaVM(JavaVM* vm) {
2544 if (vm == NULL) {
2545 return JNI_ERR;
2546 } else {
2547 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2548 delete raw_vm->runtime;
2549 return JNI_OK;
2550 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002551 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002552
Elliott Hughescdf53122011-08-19 15:46:09 -07002553 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002554 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002555 }
2556
2557 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002558 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002559 }
2560
2561 static jint DetachCurrentThread(JavaVM* vm) {
2562 if (vm == NULL) {
2563 return JNI_ERR;
2564 } else {
2565 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2566 Runtime* runtime = raw_vm->runtime;
2567 runtime->DetachCurrentThread();
2568 return JNI_OK;
2569 }
2570 }
2571
2572 static jint GetEnv(JavaVM* vm, void** env, jint version) {
2573 if (version < JNI_VERSION_1_1 || version > JNI_VERSION_1_6) {
2574 return JNI_EVERSION;
2575 }
2576 if (vm == NULL || env == NULL) {
2577 return JNI_ERR;
2578 }
2579 Thread* thread = Thread::Current();
2580 if (thread == NULL) {
2581 *env = NULL;
2582 return JNI_EDETACHED;
2583 }
2584 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002585 return JNI_OK;
2586 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002587};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002588
Elliott Hughesa2501992011-08-26 19:39:54 -07002589const JNIInvokeInterface gInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002590 NULL, // reserved0
2591 NULL, // reserved1
2592 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002593 JII::DestroyJavaVM,
2594 JII::AttachCurrentThread,
2595 JII::DetachCurrentThread,
2596 JII::GetEnv,
2597 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002598};
2599
Elliott Hughesbbd76712011-08-17 10:25:24 -07002600static const size_t kPinTableInitialSize = 16;
2601static const size_t kPinTableMaxSize = 1024;
2602
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002603static const size_t kGlobalsInitial = 512; // Arbitrary.
2604static const size_t kGlobalsMax = 51200; // Arbitrary sanity check.
2605
2606static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
2607static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check.
2608
Elliott Hughesa0957642011-09-02 14:27:33 -07002609JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002610 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002611 check_jni_abort_hook(NULL),
Elliott Hughesa0957642011-09-02 14:27:33 -07002612 check_jni(options->check_jni_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002613 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002614 verbose_jni(options->IsVerbose("jni")),
2615 log_third_party_jni(options->IsVerbose("third-party-jni")),
2616 trace(options->jni_trace_),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002617 work_around_app_jni_bugs(false), // TODO: add a way to enable this
Elliott Hughes8daa0922011-09-11 13:46:25 -07002618 pins_lock("JNI pin table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002619 pin_table("pin table", kPinTableInitialSize, kPinTableMaxSize),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002620 globals_lock("JNI global reference table lock"),
Elliott Hughes6c1a3942011-08-17 15:00:06 -07002621 globals(kGlobalsInitial, kGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002622 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002623 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002624 libraries_lock("JNI shared libraries map lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002625 libraries(new Libraries) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002626 functions = unchecked_functions = &gInvokeInterface;
2627 if (check_jni) {
2628 functions = GetCheckJniInvokeInterface();
2629 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07002630}
2631
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002632JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07002633 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002634}
2635
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002636void JavaVMExt::DumpReferenceTables() {
2637 {
2638 MutexLock mu(globals_lock);
2639 globals.Dump();
2640 }
2641 {
2642 MutexLock mu(weak_globals_lock);
2643 weak_globals.Dump();
2644 }
2645 {
2646 MutexLock mu(pins_lock);
2647 pin_table.Dump();
2648 }
2649}
2650
Elliott Hughes75770752011-08-24 17:52:38 -07002651bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader, std::string& detail) {
2652 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07002653
2654 // See if we've already loaded this library. If we have, and the class loader
2655 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07002656 // TODO: for better results we should canonicalize the pathname (or even compare
2657 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07002658 SharedLibrary* library;
2659 {
2660 // TODO: move the locking (and more of this logic) into Libraries.
2661 MutexLock mu(libraries_lock);
2662 library = libraries->Get(path);
2663 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002664 if (library != NULL) {
2665 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07002666 // The library will be associated with class_loader. The JNI
2667 // spec says we can't load the same library into more than one
2668 // class loader.
2669 StringAppendF(&detail, "Shared library \"%s\" already opened by "
2670 "ClassLoader %p; can't open in ClassLoader %p",
2671 path.c_str(), library->GetClassLoader(), class_loader);
2672 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002673 return false;
2674 }
2675 if (verbose_jni) {
2676 LOG(INFO) << "[Shared library \"" << path << "\" already loaded in "
2677 << "ClassLoader " << class_loader << "]";
2678 }
2679 if (!library->CheckOnLoadResult(this)) {
Elliott Hughes75770752011-08-24 17:52:38 -07002680 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
2681 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07002682 return false;
2683 }
2684 return true;
2685 }
2686
2687 // Open the shared library. Because we're using a full path, the system
2688 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
2689 // resolve this library's dependencies though.)
2690
2691 // Failures here are expected when java.library.path has several entries
2692 // and we have to hunt for the lib.
2693
2694 // The current version of the dynamic linker prints detailed information
2695 // about dlopen() failures. Some things to check if the message is
2696 // cryptic:
2697 // - make sure the library exists on the device
2698 // - verify that the right path is being opened (the debug log message
2699 // above can help with that)
2700 // - check to see if the library is valid (e.g. not zero bytes long)
2701 // - check config/prelink-linux-arm.map to ensure that the library
2702 // is listed and is not being overrun by the previous entry (if
2703 // loading suddenly stops working on a prelinked library, this is
2704 // a good one to check)
2705 // - write a trivial app that calls sleep() then dlopen(), attach
2706 // to it with "strace -p <pid>" while it sleeps, and watch for
2707 // attempts to open nonexistent dependent shared libs
2708
2709 // TODO: automate some of these checks!
2710
2711 // This can execute slowly for a large library on a busy system, so we
Elliott Hughes93e74e82011-09-13 11:07:03 -07002712 // want to switch from kRunnable to kVmWait while it executes. This allows
Elliott Hughescdf53122011-08-19 15:46:09 -07002713 // the GC to ignore us.
2714 Thread* self = Thread::Current();
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002715 void* handle = NULL;
2716 {
Elliott Hughes93e74e82011-09-13 11:07:03 -07002717 ScopedThreadStateChange tsc(self, Thread::kVmWait);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002718 handle = dlopen(path.c_str(), RTLD_LAZY);
2719 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002720
2721 if (verbose_jni) {
2722 LOG(INFO) << "[Call to dlopen(\"" << path << "\") returned " << handle << "]";
2723 }
2724
2725 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07002726 detail = dlerror();
Elliott Hughescdf53122011-08-19 15:46:09 -07002727 return false;
2728 }
2729
2730 // Create a new entry.
Elliott Hughescdf53122011-08-19 15:46:09 -07002731 {
Elliott Hughes79082e32011-08-25 12:07:32 -07002732 // TODO: move the locking (and more of this logic) into Libraries.
2733 MutexLock mu(libraries_lock);
2734 library = libraries->Get(path);
2735 if (library != NULL) {
2736 LOG(INFO) << "WOW: we lost a race to add shared library: "
2737 << "\"" << path << "\" ClassLoader=" << class_loader;
2738 return library->CheckOnLoadResult(this);
Elliott Hughescdf53122011-08-19 15:46:09 -07002739 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002740 library = new SharedLibrary(path, handle, class_loader);
2741 libraries->Put(path, library);
Elliott Hughescdf53122011-08-19 15:46:09 -07002742 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002743
2744 if (verbose_jni) {
2745 LOG(INFO) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
2746 }
2747
2748 bool result = true;
2749 void* sym = dlsym(handle, "JNI_OnLoad");
2750 if (sym == NULL) {
2751 if (verbose_jni) {
2752 LOG(INFO) << "[No JNI_OnLoad found in \"" << path << "\"]";
2753 }
2754 } else {
2755 // Call JNI_OnLoad. We have to override the current class
2756 // loader, which will always be "null" since the stuff at the
2757 // top of the stack is around Runtime.loadLibrary(). (See
2758 // the comments in the JNI FindClass function.)
2759 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
2760 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Brian Carlstrombffb1552011-08-25 12:23:53 -07002761 const ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07002762 self->SetClassLoaderOverride(class_loader);
2763
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002764 int version = 0;
2765 {
2766 ScopedThreadStateChange tsc(self, Thread::kNative);
2767 if (verbose_jni) {
2768 LOG(INFO) << "[Calling JNI_OnLoad in \"" << path << "\"]";
2769 }
2770 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07002771 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002772
2773 self->SetClassLoaderOverride(old_class_loader);;
2774
2775 if (version != JNI_VERSION_1_2 &&
2776 version != JNI_VERSION_1_4 &&
2777 version != JNI_VERSION_1_6) {
2778 LOG(WARNING) << "JNI_OnLoad in \"" << path << "\" returned "
2779 << "bad version: " << version;
2780 // It's unwise to call dlclose() here, but we can mark it
2781 // as bad and ensure that future load attempts will fail.
2782 // We don't know how far JNI_OnLoad got, so there could
2783 // be some partially-initialized stuff accessible through
2784 // newly-registered native method calls. We could try to
2785 // unregister them, but that doesn't seem worthwhile.
2786 result = false;
2787 } else {
2788 if (verbose_jni) {
2789 LOG(INFO) << "[Returned " << (result ? "successfully" : "failure")
2790 << " from JNI_OnLoad in \"" << path << "\"]";
2791 }
2792 }
2793 }
2794
2795 library->SetResult(result);
2796 return result;
2797}
2798
2799void* JavaVMExt::FindCodeForNativeMethod(Method* m) {
2800 CHECK(m->IsNative());
2801
2802 Class* c = m->GetDeclaringClass();
2803
2804 // If this is a static method, it could be called before the class
2805 // has been initialized.
2806 if (m->IsStatic()) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002807 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002808 return NULL;
2809 }
2810 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07002811 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07002812 }
2813
Brian Carlstrom16192862011-09-12 17:50:06 -07002814 std::string detail;
2815 void* native_method;
2816 {
2817 MutexLock mu(libraries_lock);
2818 native_method = libraries->FindNativeMethod(m, detail);
2819 }
2820 // throwing can cause libraries_lock to be reacquired
2821 if (native_method == NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002822 Thread::Current()->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07002823 }
2824 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07002825}
2826
Elliott Hughes410c0c82011-09-01 17:58:25 -07002827void JavaVMExt::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
2828 {
2829 MutexLock mu(globals_lock);
2830 globals.VisitRoots(visitor, arg);
2831 }
2832 {
2833 MutexLock mu(pins_lock);
2834 pin_table.VisitRoots(visitor, arg);
2835 }
2836 // The weak_globals table is visited by the GC itself (because it mutates the table).
2837}
2838
Ian Rogersdf20fe02011-07-20 20:34:16 -07002839} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07002840
2841std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
2842 switch (rhs) {
2843 case JNIInvalidRefType:
2844 os << "JNIInvalidRefType";
2845 return os;
2846 case JNILocalRefType:
2847 os << "JNILocalRefType";
2848 return os;
2849 case JNIGlobalRefType:
2850 os << "JNIGlobalRefType";
2851 return os;
2852 case JNIWeakGlobalRefType:
2853 os << "JNIWeakGlobalRefType";
2854 return os;
2855 }
2856}