blob: 344ce78e1417c8b3cc78a8eff4c7b26df7814a0a [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Ian Rogersdf20fe02011-07-20 20:34:16 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "jni_internal.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070018
Elliott Hughes0af55432011-08-17 18:37:28 -070019#include <dlfcn.h>
Elliott Hughes79082e32011-08-25 12:07:32 -070020
21#include <cstdarg>
Elliott Hughes0af55432011-08-17 18:37:28 -070022#include <utility>
23#include <vector>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070024
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080026#include "base/mutex.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/stl_util.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080028#include "base/stringpiece.h"
Elliott Hughes40ef99e2011-08-11 17:44:34 -070029#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "gc/card_table-inl.h"
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070032#include "invoke_arg_array_builder.h"
Carl Shapiroea4dca82011-08-01 13:45:38 -070033#include "jni.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "mirror/class-inl.h"
35#include "mirror/class_loader.h"
36#include "mirror/field-inl.h"
37#include "mirror/abstract_method-inl.h"
38#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
40#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070042#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070043#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044#include "scoped_thread_state_change.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070045#include "ScopedLocalRef.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070046#include "thread.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "utf.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070048#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070049#include "well_known_classes.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070050
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051using namespace art::mirror;
52
Elliott Hughesbb1e8f02011-10-18 14:14:25 -070053namespace art {
54
Elliott Hughes2ced6a52011-10-16 18:44:48 -070055static const size_t kMonitorsInitial = 32; // Arbitrary.
56static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
57
58static const size_t kLocalsInitial = 64; // Arbitrary.
59static const size_t kLocalsMax = 512; // Arbitrary sanity check.
60
61static const size_t kPinTableInitial = 16; // Arbitrary.
62static const size_t kPinTableMax = 1024; // Arbitrary sanity check.
63
Elliott Hughesbb1e8f02011-10-18 14:14:25 -070064static size_t gGlobalsInitial = 512; // Arbitrary.
65static size_t gGlobalsMax = 51200; // Arbitrary sanity check.
Elliott Hughes2ced6a52011-10-16 18:44:48 -070066
67static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
68static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check.
69
Elliott Hughesbb1e8f02011-10-18 14:14:25 -070070void SetJniGlobalsMax(size_t max) {
71 if (max != 0) {
72 gGlobalsMax = max;
73 gGlobalsInitial = std::min(gGlobalsInitial, gGlobalsMax);
74 }
75}
Ian Rogersdf20fe02011-07-20 20:34:16 -070076
Ian Rogers00f7d0e2012-07-19 15:28:27 -070077static jweak AddWeakGlobalReference(ScopedObjectAccess& soa, Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -070078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughescdf53122011-08-19 15:46:09 -070079 if (obj == NULL) {
80 return NULL;
81 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070082 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -070083 IndirectReferenceTable& weak_globals = vm->weak_globals;
Ian Rogers50b35e22012-10-04 10:09:15 -070084 MutexLock mu(soa.Self(), vm->weak_globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -070085 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
86 return reinterpret_cast<jweak>(ref);
87}
88
Jeff Hao19c5d372013-03-15 14:33:43 -070089static bool IsBadJniVersion(int version) {
90 // We don't support JNI_VERSION_1_1. These are the only other valid versions.
91 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6;
92}
93
Jeff Hao5d917302013-02-27 17:57:33 -080094static void CheckMethodArguments(AbstractMethod* m, uint32_t* args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070095 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesb264f082012-04-06 17:10:10 -070096 MethodHelper mh(m);
Ian Rogers50b35e22012-10-04 10:09:15 -070097 const DexFile::TypeList* params = mh.GetParameterTypeList();
98 if (params == NULL) {
99 return; // No arguments so nothing to check.
100 }
Jeff Hao5d917302013-02-27 17:57:33 -0800101 uint32_t offset = 0;
Ian Rogers50b35e22012-10-04 10:09:15 -0700102 uint32_t num_params = params->Size();
Elliott Hughesb264f082012-04-06 17:10:10 -0700103 size_t error_count = 0;
Jeff Hao5d917302013-02-27 17:57:33 -0800104 if (!m->IsStatic()) {
105 offset = 1;
106 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700107 for (uint32_t i = 0; i < num_params; i++) {
108 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
109 Class* param_type = mh.GetClassFromTypeIdx(type_idx);
110 if (param_type == NULL) {
111 Thread* self = Thread::Current();
112 CHECK(self->IsExceptionPending());
113 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
114 << mh.GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
115 << self->GetException()->Dump();
116 self->ClearException();
117 ++error_count;
118 } else if (!param_type->IsPrimitive()) {
119 // TODO: check primitives are in range.
Jeff Hao5d917302013-02-27 17:57:33 -0800120 Object* argument = reinterpret_cast<Object*>(args[i + offset]);
Ian Rogers50b35e22012-10-04 10:09:15 -0700121 if (argument != NULL && !argument->InstanceOf(param_type)) {
Elliott Hughesb264f082012-04-06 17:10:10 -0700122 LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
123 << PrettyTypeOf(argument) << " as argument " << (i + 1) << " to " << PrettyMethod(m);
124 ++error_count;
125 }
Jeff Hao5d917302013-02-27 17:57:33 -0800126 } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
127 offset++;
Elliott Hughesb264f082012-04-06 17:10:10 -0700128 }
129 }
130 if (error_count > 0) {
131 // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
132 // with an argument.
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700133 JniAbortF(NULL, "bad arguments passed to %s (see above for details)", PrettyMethod(m).c_str());
Elliott Hughesb264f082012-04-06 17:10:10 -0700134 }
135}
Elliott Hughesb264f082012-04-06 17:10:10 -0700136
Jeff Hao5d917302013-02-27 17:57:33 -0800137void InvokeWithArgArray(const ScopedObjectAccess& soa, AbstractMethod* method,
138 ArgArray* arg_array, JValue* result, JValue* float_result)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700139 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700140 if (UNLIKELY(soa.Env()->check_jni)) {
Jeff Hao5d917302013-02-27 17:57:33 -0800141 CheckMethodArguments(method, arg_array->GetArray());
Elliott Hughes4cacde82012-04-11 18:32:27 -0700142 }
Jeff Hao5d917302013-02-27 17:57:33 -0800143 method->Invoke(soa.Self(), arg_array->GetArray(), arg_array->GetNumBytes(), result, float_result);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700144}
145
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700146static JValue InvokeWithVarArgs(const ScopedObjectAccess& soa, jobject obj,
147 jmethodID mid, va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700149 Object* receiver = soa.Decode<Object*>(obj);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700150 AbstractMethod* method = soa.DecodeMethod(mid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700151 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800152 JValue result;
153 JValue float_result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700154 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800155 arg_array.BuildArgArray(soa, receiver, args);
156 InvokeWithArgArray(soa, method, &arg_array, &result, &float_result);
157 if (mh.IsReturnFloatOrDouble()) {
158 return float_result;
159 } else {
160 return result;
161 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700162}
163
Mathieu Chartier66f19252012-09-18 08:57:04 -0700164static AbstractMethod* FindVirtualMethod(Object* receiver, AbstractMethod* method)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700165 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700166 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700167}
168
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700169static JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccess& soa,
170 jobject obj, jmethodID mid, jvalue* args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700171 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700172 Object* receiver = soa.Decode<Object*>(obj);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700173 AbstractMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700174 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800175 JValue result;
176 JValue float_result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700177 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800178 arg_array.BuildArgArray(soa, receiver, args);
179 InvokeWithArgArray(soa, method, &arg_array, &result, &float_result);
180 if (mh.IsReturnFloatOrDouble()) {
181 return float_result;
182 } else {
183 return result;
184 }
Elliott Hughes72025e52011-08-23 17:50:30 -0700185}
186
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700187static JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccess& soa,
188 jobject obj, jmethodID mid, va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700190 Object* receiver = soa.Decode<Object*>(obj);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700191 AbstractMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700192 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800193 JValue result;
194 JValue float_result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700195 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800196 arg_array.BuildArgArray(soa, receiver, args);
197 InvokeWithArgArray(soa, method, &arg_array, &result, &float_result);
198 if (mh.IsReturnFloatOrDouble()) {
199 return float_result;
200 } else {
201 return result;
202 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700203}
204
Elliott Hughes6b436852011-08-12 10:16:44 -0700205// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
206// separated with slashes but aren't wrapped with "L;" like regular descriptors
207// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
208// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
209// supported names with dots too (such as "a.b.C").
Ian Rogers0571d352011-11-03 19:51:38 -0700210static std::string NormalizeJniClassDescriptor(const char* name) {
Elliott Hughes6b436852011-08-12 10:16:44 -0700211 std::string result;
212 // Add the missing "L;" if necessary.
213 if (name[0] == '[') {
214 result = name;
215 } else {
216 result += 'L';
217 result += name;
218 result += ';';
219 }
220 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700221 if (result.find('.') != std::string::npos) {
222 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
223 << "\"" << name << "\"";
224 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700225 }
226 return result;
227}
228
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700229static void ThrowNoSuchMethodError(ScopedObjectAccess& soa, Class* c,
230 const char* name, const char* sig, const char* kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700231 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700232 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
Elliott Hughes91250e02011-12-13 22:30:35 -0800233 "no %s method \"%s.%s%s\"", kind, ClassHelper(c).GetDescriptor(), name, sig);
Elliott Hughes14134a12011-09-30 16:55:51 -0700234}
235
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700236static jmethodID FindMethodID(ScopedObjectAccess& soa, jclass jni_class,
237 const char* name, const char* sig, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700238 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700239 Class* c = soa.Decode<Class*>(jni_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700240 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700241 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700242 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700243
Mathieu Chartier66f19252012-09-18 08:57:04 -0700244 AbstractMethod* method = NULL;
Elliott Hughescdf53122011-08-19 15:46:09 -0700245 if (is_static) {
246 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700247 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700248 method = c->FindVirtualMethod(name, sig);
249 if (method == NULL) {
250 // No virtual method matching the signature. Search declared
251 // private methods and constructors.
252 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700253 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700254 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700255
Elliott Hughescdf53122011-08-19 15:46:09 -0700256 if (method == NULL || method->IsStatic() != is_static) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700257 ThrowNoSuchMethodError(soa, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700258 return NULL;
259 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700260
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700261 return soa.EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700262}
263
Ian Rogersef28b142012-11-30 14:22:18 -0800264static ClassLoader* GetClassLoader(const ScopedObjectAccess& soa)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef28b142012-11-30 14:22:18 -0800266 AbstractMethod* method = soa.Self()->GetCurrentMethod();
267 if (method == NULL ||
268 method == soa.DecodeMethod(WellKnownClasses::java_lang_Runtime_nativeLoad)) {
269 return soa.Self()->GetClassLoaderOverride();
Brian Carlstrom00fae582011-10-28 01:16:28 -0700270 }
271 return method->GetDeclaringClass()->GetClassLoader();
272}
273
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700274static jfieldID FindFieldID(const ScopedObjectAccess& soa, jclass jni_class, const char* name,
275 const char* sig, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700277 Class* c = soa.Decode<Class*>(jni_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700278 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700279 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700280 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700281
282 Field* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283 Class* field_type;
284 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
285 if (sig[1] != '\0') {
Ian Rogersef28b142012-11-30 14:22:18 -0800286 ClassLoader* cl = GetClassLoader(soa);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700288 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700290 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700291 if (field_type == NULL) {
292 // Failed to find type from the signature of the field.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700293 DCHECK(soa.Self()->IsExceptionPending());
294 soa.Self()->ClearException();
295 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Ian Rogersb17d08b2011-09-02 16:16:49 -0700296 "no type \"%s\" found and so no field \"%s\" could be found in class "
Elliott Hughes91250e02011-12-13 22:30:35 -0800297 "\"%s\" or its superclasses", sig, name, ClassHelper(c).GetDescriptor());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700298 return NULL;
299 }
300 if (is_static) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800301 field = c->FindStaticField(name, ClassHelper(field_type).GetDescriptor());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800303 field = c->FindInstanceField(name, ClassHelper(field_type).GetDescriptor());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700305 if (field == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700306 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Elliott Hughescdf53122011-08-19 15:46:09 -0700307 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses", sig,
Elliott Hughes91250e02011-12-13 22:30:35 -0800308 name, ClassHelper(c).GetDescriptor());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700309 return NULL;
310 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 return soa.EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700312}
313
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314static void PinPrimitiveArray(const ScopedObjectAccess& soa, const Array* array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700315 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700316 JavaVMExt* vm = soa.Vm();
Ian Rogers50b35e22012-10-04 10:09:15 -0700317 MutexLock mu(soa.Self(), vm->pins_lock);
Elliott Hughes75770752011-08-24 17:52:38 -0700318 vm->pin_table.Add(array);
319}
320
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700321static void UnpinPrimitiveArray(const ScopedObjectAccess& soa, const Array* array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700322 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700323 JavaVMExt* vm = soa.Vm();
Ian Rogers50b35e22012-10-04 10:09:15 -0700324 MutexLock mu(soa.Self(), vm->pins_lock);
Elliott Hughes75770752011-08-24 17:52:38 -0700325 vm->pin_table.Remove(array);
326}
327
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700328static void ThrowAIOOBE(ScopedObjectAccess& soa, Array* array, jsize start,
329 jsize length, const char* identifier)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700331 std::string type(PrettyTypeOf(array));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700332 soa.Self()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Elliott Hughes814e4032011-08-23 12:07:56 -0700333 "%s offset=%d length=%d %s.length=%d",
334 type.c_str(), start, length, identifier, array->GetLength());
335}
Ian Rogers0571d352011-11-03 19:51:38 -0700336
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700337static void ThrowSIOOBE(ScopedObjectAccess& soa, jsize start, jsize length,
338 jsize array_length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700340 soa.Self()->ThrowNewExceptionF("Ljava/lang/StringIndexOutOfBoundsException;",
Elliott Hughesb465ab02011-08-24 11:21:21 -0700341 "offset=%d length=%d string.length()=%d", start, length, array_length);
342}
Elliott Hughes814e4032011-08-23 12:07:56 -0700343
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700344int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700345 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700346 // Turn the const char* into a java.lang.String.
347 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
348 if (msg != NULL && s.get() == NULL) {
349 return JNI_ERR;
Elliott Hughes814e4032011-08-23 12:07:56 -0700350 }
Elliott Hughes814e4032011-08-23 12:07:56 -0700351
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700352 // Choose an appropriate constructor and set up the arguments.
353 jvalue args[2];
354 const char* signature;
355 if (msg == NULL && cause == NULL) {
356 signature = "()V";
357 } else if (msg != NULL && cause == NULL) {
358 signature = "(Ljava/lang/String;)V";
359 args[0].l = s.get();
360 } else if (msg == NULL && cause != NULL) {
361 signature = "(Ljava/lang/Throwable;)V";
362 args[0].l = cause;
Elliott Hughes814e4032011-08-23 12:07:56 -0700363 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700364 signature = "(Ljava/lang/String;Ljava/lang/Throwable;)V";
365 args[0].l = s.get();
366 args[1].l = cause;
Elliott Hughes814e4032011-08-23 12:07:56 -0700367 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700368 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
369 if (mid == NULL) {
Ian Rogersef28b142012-11-30 14:22:18 -0800370 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 LOG(ERROR) << "No <init>" << signature << " in "
372 << PrettyClass(soa.Decode<Class*>(exception_class));
373 return JNI_ERR;
374 }
Elliott Hughes814e4032011-08-23 12:07:56 -0700375
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700376 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(exception_class, mid, args)));
377 if (exception.get() == NULL) {
378 return JNI_ERR;
379 }
Elliott Hughesa4f94742012-05-29 16:28:38 -0700380
Ian Rogersef28b142012-11-30 14:22:18 -0800381 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 soa.Self()->SetException(soa.Decode<Throwable*>(exception.get()));
Elliott Hughesa4f94742012-05-29 16:28:38 -0700383
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700384 return JNI_OK;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700385}
386
Elliott Hughes462c9442012-03-23 18:47:50 -0700387static jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) {
Elliott Hughes75770752011-08-24 17:52:38 -0700388 if (vm == NULL || p_env == NULL) {
389 return JNI_ERR;
390 }
391
Elliott Hughes462c9442012-03-23 18:47:50 -0700392 // Return immediately if we're already attached.
Elliott Hughescac6cc72011-11-03 20:31:21 -0700393 Thread* self = Thread::Current();
394 if (self != NULL) {
395 *p_env = self->GetJniEnv();
396 return JNI_OK;
397 }
398
399 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
400
401 // No threads allowed in zygote mode.
402 if (runtime->IsZygote()) {
403 LOG(ERROR) << "Attempt to attach a thread in the zygote";
404 return JNI_ERR;
405 }
406
Elliott Hughes462c9442012-03-23 18:47:50 -0700407 JavaVMAttachArgs* args = static_cast<JavaVMAttachArgs*>(raw_args);
408 const char* thread_name = NULL;
Ian Rogers365c1022012-06-22 15:05:28 -0700409 jobject thread_group = NULL;
Elliott Hughes462c9442012-03-23 18:47:50 -0700410 if (args != NULL) {
Elliott Hughes83a25322013-03-14 11:18:53 -0700411 if (IsBadJniVersion(args->version)) {
412 LOG(ERROR) << "Bad JNI version passed to "
413 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": "
414 << args->version;
415 return JNI_EVERSION;
Brian Carlstrom86922152013-03-12 00:59:36 -0700416 }
Elliott Hughes462c9442012-03-23 18:47:50 -0700417 thread_name = args->name;
Ian Rogers365c1022012-06-22 15:05:28 -0700418 thread_group = args->group;
Elliott Hughes75770752011-08-24 17:52:38 -0700419 }
Elliott Hughes75770752011-08-24 17:52:38 -0700420
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800421 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700422 *p_env = NULL;
423 return JNI_ERR;
424 } else {
425 *p_env = Thread::Current()->GetJniEnv();
426 return JNI_OK;
427 }
Elliott Hughes75770752011-08-24 17:52:38 -0700428}
429
Elliott Hughes79082e32011-08-25 12:07:32 -0700430class SharedLibrary {
431 public:
432 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
433 : path_(path),
434 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700435 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700436 jni_on_load_lock_("JNI_OnLoad lock"),
Ian Rogersc604d732012-10-14 16:09:54 -0700437 jni_on_load_cond_("JNI_OnLoad condition variable", jni_on_load_lock_),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700438 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700439 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700440 }
441
Elliott Hughes79082e32011-08-25 12:07:32 -0700442 Object* GetClassLoader() {
443 return class_loader_;
444 }
445
446 std::string GetPath() {
447 return path_;
448 }
449
450 /*
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700451 * Check the result of an earlier call to JNI_OnLoad on this library.
452 * If the call has not yet finished in another thread, wait for it.
Elliott Hughes79082e32011-08-25 12:07:32 -0700453 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700454 bool CheckOnLoadResult()
455 LOCKS_EXCLUDED(jni_on_load_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700456 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700457 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458 self->TransitionFromRunnableToSuspended(kWaitingForJniOnLoad);
459 bool okay;
460 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700461 MutexLock mu(self, jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700462
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700463 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
464 // Check this so we don't end up waiting for ourselves. We need to return "true" so the
465 // caller can continue.
466 LOG(INFO) << *self << " recursive attempt to load library " << "\"" << path_ << "\"";
467 okay = true;
468 } else {
469 while (jni_on_load_result_ == kPending) {
470 VLOG(jni) << "[" << *self << " waiting for \"" << path_ << "\" " << "JNI_OnLoad...]";
Ian Rogersc604d732012-10-14 16:09:54 -0700471 jni_on_load_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700472 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700473
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700474 okay = (jni_on_load_result_ == kOkay);
475 VLOG(jni) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
476 << (okay ? "succeeded" : "failed") << "]";
477 }
478 }
479 self->TransitionFromSuspendedToRunnable();
Elliott Hughes79082e32011-08-25 12:07:32 -0700480 return okay;
481 }
482
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700483 void SetResult(bool result) LOCKS_EXCLUDED(jni_on_load_lock_) {
Ian Rogersc604d732012-10-14 16:09:54 -0700484 Thread* self = Thread::Current();
485 MutexLock mu(self, jni_on_load_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700486
Elliott Hughes79082e32011-08-25 12:07:32 -0700487 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700488 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700489
490 // Broadcast a wakeup to anybody sleeping on the condition variable.
Ian Rogersc604d732012-10-14 16:09:54 -0700491 jni_on_load_cond_.Broadcast(self);
Elliott Hughes79082e32011-08-25 12:07:32 -0700492 }
493
494 void* FindSymbol(const std::string& symbol_name) {
495 return dlsym(handle_, symbol_name.c_str());
496 }
497
498 private:
499 enum JNI_OnLoadState {
500 kPending,
501 kFailed,
502 kOkay,
503 };
504
505 // Path to library "/system/lib/libjni.so".
506 std::string path_;
507
508 // The void* returned by dlopen(3).
509 void* handle_;
510
511 // The ClassLoader this library is associated with.
512 Object* class_loader_;
513
514 // Guards remaining items.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700515 Mutex jni_on_load_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Elliott Hughes79082e32011-08-25 12:07:32 -0700516 // Wait for JNI_OnLoad in other thread.
Ian Rogersc604d732012-10-14 16:09:54 -0700517 ConditionVariable jni_on_load_cond_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700518 // Recursive invocation guard.
Elliott Hughesf8349362012-06-18 15:00:06 -0700519 uint32_t jni_on_load_thread_id_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700520 // Result of earlier JNI_OnLoad call.
Elliott Hughesf8349362012-06-18 15:00:06 -0700521 JNI_OnLoadState jni_on_load_result_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700522};
523
Elliott Hughes79082e32011-08-25 12:07:32 -0700524// This exists mainly to keep implementation details out of the header file.
525class Libraries {
526 public:
527 Libraries() {
528 }
529
530 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700531 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700532 }
533
Elliott Hughesae80b492012-04-24 10:43:17 -0700534 void Dump(std::ostream& os) const {
535 bool first = true;
536 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
537 if (!first) {
538 os << ' ';
539 }
540 first = false;
541 os << it->first;
542 }
543 }
544
545 size_t size() const {
546 return libraries_.size();
547 }
548
Elliott Hughes79082e32011-08-25 12:07:32 -0700549 SharedLibrary* Get(const std::string& path) {
Ian Rogers712462a2012-04-12 16:32:29 -0700550 It it = libraries_.find(path);
551 return (it == libraries_.end()) ? NULL : it->second;
Elliott Hughes79082e32011-08-25 12:07:32 -0700552 }
553
554 void Put(const std::string& path, SharedLibrary* library) {
Elliott Hughesa0e18062012-04-13 15:59:59 -0700555 libraries_.Put(path, library);
Elliott Hughes79082e32011-08-25 12:07:32 -0700556 }
557
558 // See section 11.3 "Linking Native Methods" of the JNI spec.
Mathieu Chartier66f19252012-09-18 08:57:04 -0700559 void* FindNativeMethod(const AbstractMethod* m, std::string& detail)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700560 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700561 std::string jni_short_name(JniShortName(m));
562 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700563 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700564 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
565 SharedLibrary* library = it->second;
566 if (library->GetClassLoader() != declaring_class_loader) {
567 // We only search libraries loaded by the appropriate ClassLoader.
568 continue;
569 }
570 // Try the short name then the long name...
571 void* fn = library->FindSymbol(jni_short_name);
572 if (fn == NULL) {
573 fn = library->FindSymbol(jni_long_name);
574 }
575 if (fn != NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800576 VLOG(jni) << "[Found native code for " << PrettyMethod(m)
577 << " in \"" << library->GetPath() << "\"]";
Elliott Hughes79082e32011-08-25 12:07:32 -0700578 return fn;
579 }
580 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700581 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700582 detail += PrettyMethod(m);
Brian Carlstrom92827a52011-10-10 15:50:01 -0700583 detail += " (tried " + jni_short_name + " and " + jni_long_name + ")";
Elliott Hughes79082e32011-08-25 12:07:32 -0700584 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700585 return NULL;
586 }
587
588 private:
Elliott Hughesae80b492012-04-24 10:43:17 -0700589 typedef SafeMap<std::string, SharedLibrary*>::const_iterator It; // TODO: C++0x auto
Elliott Hughes79082e32011-08-25 12:07:32 -0700590
Elliott Hughesa0e18062012-04-13 15:59:59 -0700591 SafeMap<std::string, SharedLibrary*> libraries_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700592};
593
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700594JValue InvokeWithJValues(const ScopedObjectAccess& soa, jobject obj, jmethodID mid,
595 jvalue* args) {
596 Object* receiver = soa.Decode<Object*>(obj);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700597 AbstractMethod* method = soa.DecodeMethod(mid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700598 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800599 JValue result;
600 JValue float_result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700601 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800602 arg_array.BuildArgArray(soa, receiver, args);
603 InvokeWithArgArray(soa, method, &arg_array, &result, &float_result);
604 if (mh.IsReturnFloatOrDouble()) {
605 return float_result;
606 } else {
607 return result;
608 }
Elliott Hughesd07986f2011-12-06 18:27:45 -0800609}
610
Elliott Hughescdf53122011-08-19 15:46:09 -0700611class JNI {
612 public:
Ian Rogers25e8b912012-09-07 11:31:36 -0700613 static jint GetVersion(JNIEnv*) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700614 return JNI_VERSION_1_6;
615 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700616
Ian Rogers25e8b912012-09-07 11:31:36 -0700617 static jclass DefineClass(JNIEnv*, const char*, jobject, const jbyte*, jsize) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700618 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700619 return NULL;
620 }
621
Elliott Hughescdf53122011-08-19 15:46:09 -0700622 static jclass FindClass(JNIEnv* env, const char* name) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700623 ScopedObjectAccess soa(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700624 Runtime* runtime = Runtime::Current();
625 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700626 std::string descriptor(NormalizeJniClassDescriptor(name));
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700627 Class* c = NULL;
628 if (runtime->IsStarted()) {
Ian Rogersef28b142012-11-30 14:22:18 -0800629 ClassLoader* cl = GetClassLoader(soa);
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800630 c = class_linker->FindClass(descriptor.c_str(), cl);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700631 } else {
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800632 c = class_linker->FindSystemClass(descriptor.c_str());
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700633 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700634 return soa.AddLocalReference<jclass>(c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700635 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700636
Elliott Hughescdf53122011-08-19 15:46:09 -0700637 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700638 ScopedObjectAccess soa(env);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700639 AbstractMethod* method = soa.Decode<AbstractMethod*>(java_method);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700640 return soa.EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700641 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700642
Elliott Hughescdf53122011-08-19 15:46:09 -0700643 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700644 ScopedObjectAccess soa(env);
645 Field* field = soa.Decode<Field*>(java_field);
646 return soa.EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700647 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700648
Elliott Hughescdf53122011-08-19 15:46:09 -0700649 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700650 ScopedObjectAccess soa(env);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700651 AbstractMethod* method = soa.DecodeMethod(mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700652 return soa.AddLocalReference<jobject>(method);
Elliott Hughescdf53122011-08-19 15:46:09 -0700653 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700654
Elliott Hughescdf53122011-08-19 15:46:09 -0700655 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700656 ScopedObjectAccess soa(env);
657 Field* field = soa.DecodeField(fid);
658 return soa.AddLocalReference<jobject>(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700659 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700660
Elliott Hughes37f7a402011-08-22 18:56:01 -0700661 static jclass GetObjectClass(JNIEnv* env, jobject java_object) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700662 ScopedObjectAccess soa(env);
663 Object* o = soa.Decode<Object*>(java_object);
664 return soa.AddLocalReference<jclass>(o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700665 }
666
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700667 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700668 ScopedObjectAccess soa(env);
669 Class* c = soa.Decode<Class*>(java_class);
670 return soa.AddLocalReference<jclass>(c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700671 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700672
Elliott Hughes37f7a402011-08-22 18:56:01 -0700673 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700674 ScopedObjectAccess soa(env);
675 Class* c1 = soa.Decode<Class*>(java_class1);
676 Class* c2 = soa.Decode<Class*>(java_class2);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700677 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700678 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700679
Elliott Hughese84278b2012-03-22 10:06:53 -0700680 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass java_class) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700681 ScopedObjectAccess soa(env);
Elliott Hughes96a98872012-12-19 14:21:15 -0800682 if (java_class == NULL) {
683 JniAbortF("IsInstanceOf", "null class (second argument)");
684 }
Elliott Hughes37f7a402011-08-22 18:56:01 -0700685 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700686 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700687 return JNI_TRUE;
688 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700689 Object* obj = soa.Decode<Object*>(jobj);
690 Class* c = soa.Decode<Class*>(java_class);
Elliott Hughese84278b2012-03-22 10:06:53 -0700691 return obj->InstanceOf(c) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700692 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700693 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700694
Elliott Hughes37f7a402011-08-22 18:56:01 -0700695 static jint Throw(JNIEnv* env, jthrowable java_exception) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700696 ScopedObjectAccess soa(env);
697 Throwable* exception = soa.Decode<Throwable*>(java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700698 if (exception == NULL) {
699 return JNI_ERR;
700 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700701 soa.Self()->SetException(exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700702 return JNI_OK;
703 }
704
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700705 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700706 return ThrowNewException(env, c, msg, NULL);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700707 }
708
709 static jboolean ExceptionCheck(JNIEnv* env) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700710 return static_cast<JNIEnvExt*>(env)->self->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700711 }
712
713 static void ExceptionClear(JNIEnv* env) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700714 static_cast<JNIEnvExt*>(env)->self->ClearException();
Elliott Hughes37f7a402011-08-22 18:56:01 -0700715 }
716
717 static void ExceptionDescribe(JNIEnv* env) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700718 ScopedObjectAccess soa(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700719
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700720 Thread* self = soa.Self();
Elliott Hughes72025e52011-08-23 17:50:30 -0700721 Throwable* original_exception = self->GetException();
722 self->ClearException();
723
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700724 ScopedLocalRef<jthrowable> exception(env, soa.AddLocalReference<jthrowable>(original_exception));
Elliott Hughes72025e52011-08-23 17:50:30 -0700725 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
726 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
727 if (mid == NULL) {
728 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Elliott Hughes54e7df12011-09-16 11:47:04 -0700729 << PrettyTypeOf(original_exception);
Elliott Hughes72025e52011-08-23 17:50:30 -0700730 } else {
731 env->CallVoidMethod(exception.get(), mid);
732 if (self->IsExceptionPending()) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700733 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(self->GetException())
Elliott Hughes72025e52011-08-23 17:50:30 -0700734 << " thrown while calling printStackTrace";
735 self->ClearException();
736 }
737 }
738
739 self->SetException(original_exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700740 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700741
Elliott Hughescdf53122011-08-19 15:46:09 -0700742 static jthrowable ExceptionOccurred(JNIEnv* env) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700743 ScopedObjectAccess soa(env);
744 Object* exception = soa.Self()->GetException();
745 return soa.AddLocalReference<jthrowable>(exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700746 }
747
Ian Rogers25e8b912012-09-07 11:31:36 -0700748 static void FatalError(JNIEnv*, const char* msg) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700749 LOG(FATAL) << "JNI FatalError called: " << msg;
750 }
751
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700752 static jint PushLocalFrame(JNIEnv* env, jint capacity) {
Ian Rogersef28b142012-11-30 14:22:18 -0800753 if (EnsureLocalCapacity(env, capacity, "PushLocalFrame") != JNI_OK) {
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700754 return JNI_ERR;
755 }
Ian Rogersef28b142012-11-30 14:22:18 -0800756 static_cast<JNIEnvExt*>(env)->PushFrame(capacity);
Elliott Hughescdf53122011-08-19 15:46:09 -0700757 return JNI_OK;
758 }
759
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700760 static jobject PopLocalFrame(JNIEnv* env, jobject java_survivor) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700761 ScopedObjectAccess soa(env);
762 Object* survivor = soa.Decode<Object*>(java_survivor);
763 soa.Env()->PopFrame();
764 return soa.AddLocalReference<jobject>(survivor);
Elliott Hughescdf53122011-08-19 15:46:09 -0700765 }
766
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700767 static jint EnsureLocalCapacity(JNIEnv* env, jint desired_capacity) {
Ian Rogersef28b142012-11-30 14:22:18 -0800768 return EnsureLocalCapacity(env, desired_capacity, "EnsureLocalCapacity");
Elliott Hughes72025e52011-08-23 17:50:30 -0700769 }
770
Elliott Hughescdf53122011-08-19 15:46:09 -0700771 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700772 if (obj == NULL) {
773 return NULL;
774 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700775 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700776 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700777 IndirectReferenceTable& globals = vm->globals;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700778 Object* decoded_obj = soa.Decode<Object*>(obj);
Ian Rogers50b35e22012-10-04 10:09:15 -0700779 MutexLock mu(soa.Self(), vm->globals_lock);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700780 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, decoded_obj);
Elliott Hughescdf53122011-08-19 15:46:09 -0700781 return reinterpret_cast<jobject>(ref);
782 }
783
784 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700785 if (obj == NULL) {
786 return;
787 }
Ian Rogersef28b142012-11-30 14:22:18 -0800788 JavaVMExt* vm = reinterpret_cast<JNIEnvExt*>(env)->vm;
Elliott Hughescdf53122011-08-19 15:46:09 -0700789 IndirectReferenceTable& globals = vm->globals;
Ian Rogersef28b142012-11-30 14:22:18 -0800790 Thread* self = reinterpret_cast<JNIEnvExt*>(env)->self;
791 MutexLock mu(self, vm->globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -0700792
793 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
794 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
795 << "failed to find entry";
796 }
797 }
798
799 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700800 ScopedObjectAccess soa(env);
801 return AddWeakGlobalReference(soa, soa.Decode<Object*>(obj));
Elliott Hughescdf53122011-08-19 15:46:09 -0700802 }
803
804 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700805 if (obj == NULL) {
806 return;
807 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700808 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700809 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700810 IndirectReferenceTable& weak_globals = vm->weak_globals;
Ian Rogers50b35e22012-10-04 10:09:15 -0700811 MutexLock mu(soa.Self(), vm->weak_globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -0700812
813 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
814 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
815 << "failed to find entry";
816 }
817 }
818
819 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700820 if (obj == NULL) {
821 return NULL;
822 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700823 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700824 IndirectReferenceTable& locals = soa.Env()->locals;
Elliott Hughescdf53122011-08-19 15:46:09 -0700825
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700826 uint32_t cookie = soa.Env()->local_ref_cookie;
827 IndirectRef ref = locals.Add(cookie, soa.Decode<Object*>(obj));
Elliott Hughescdf53122011-08-19 15:46:09 -0700828 return reinterpret_cast<jobject>(ref);
829 }
830
831 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700832 if (obj == NULL) {
833 return;
834 }
Ian Rogersef28b142012-11-30 14:22:18 -0800835 IndirectReferenceTable& locals = reinterpret_cast<JNIEnvExt*>(env)->locals;
Elliott Hughescdf53122011-08-19 15:46:09 -0700836
Ian Rogersef28b142012-11-30 14:22:18 -0800837 uint32_t cookie = reinterpret_cast<JNIEnvExt*>(env)->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700838 if (!locals.Remove(cookie, obj)) {
839 // Attempting to delete a local reference that is not in the
840 // topmost local reference frame is a no-op. DeleteLocalRef returns
841 // void and doesn't throw any exceptions, but we should probably
842 // complain about it so the user will notice that things aren't
843 // going quite the way they expect.
844 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
845 << "failed to find entry";
846 }
847 }
848
849 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700850 ScopedObjectAccess soa(env);
Ian Rogers120f1c72012-09-28 17:17:10 -0700851 return (soa.Decode<Object*>(obj1) == soa.Decode<Object*>(obj2)) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700852 }
853
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700854 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700855 ScopedObjectAccess soa(env);
856 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700857 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700858 return NULL;
859 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700860 return soa.AddLocalReference<jobject>(c->AllocObject(soa.Self()));
Elliott Hughescdf53122011-08-19 15:46:09 -0700861 }
862
Elliott Hughese84278b2012-03-22 10:06:53 -0700863 static jobject NewObject(JNIEnv* env, jclass c, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700864 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700865 va_start(args, mid);
Elliott Hughese84278b2012-03-22 10:06:53 -0700866 jobject result = NewObjectV(env, c, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700867 va_end(args);
868 return result;
869 }
870
Elliott Hughes72025e52011-08-23 17:50:30 -0700871 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700872 ScopedObjectAccess soa(env);
873 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700874 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700875 return NULL;
876 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700877 Object* result = c->AllocObject(soa.Self());
Elliott Hughes30646832011-10-13 16:59:46 -0700878 if (result == NULL) {
879 return NULL;
880 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700881 jobject local_result = soa.AddLocalReference<jobject>(result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700882 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700883 if (!soa.Self()->IsExceptionPending()) {
Ian Rogers5d4bdc22011-11-02 22:15:43 -0700884 return local_result;
885 } else {
886 return NULL;
887 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700888 }
889
Elliott Hughes72025e52011-08-23 17:50:30 -0700890 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700891 ScopedObjectAccess soa(env);
892 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700893 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700894 return NULL;
895 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700896 Object* result = c->AllocObject(soa.Self());
Elliott Hughes30646832011-10-13 16:59:46 -0700897 if (result == NULL) {
898 return NULL;
899 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700900 jobject local_result = soa.AddLocalReference<jobjectArray>(result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700901 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700902 if (!soa.Self()->IsExceptionPending()) {
Ian Rogers5d4bdc22011-11-02 22:15:43 -0700903 return local_result;
904 } else {
905 return NULL;
906 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700907 }
908
Elliott Hughescdf53122011-08-19 15:46:09 -0700909 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700910 ScopedObjectAccess soa(env);
911 return FindMethodID(soa, c, name, sig, false);
Elliott Hughescdf53122011-08-19 15:46:09 -0700912 }
913
914 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700915 ScopedObjectAccess soa(env);
916 return FindMethodID(soa, c, name, sig, true);
Elliott Hughescdf53122011-08-19 15:46:09 -0700917 }
918
Elliott Hughes72025e52011-08-23 17:50:30 -0700919 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -0700920 va_list ap;
921 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -0700922 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700923 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -0700924 va_end(ap);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700925 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -0700926 }
927
Elliott Hughes72025e52011-08-23 17:50:30 -0700928 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700929 ScopedObjectAccess soa(env);
930 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args));
931 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -0700932 }
933
Elliott Hughes72025e52011-08-23 17:50:30 -0700934 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700935 ScopedObjectAccess soa(env);
936 JValue result(InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args));
937 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -0700938 }
939
Elliott Hughes72025e52011-08-23 17:50:30 -0700940 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -0700941 va_list ap;
942 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -0700943 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700944 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -0700945 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700946 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -0700947 }
948
Elliott Hughes72025e52011-08-23 17:50:30 -0700949 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700950 ScopedObjectAccess soa(env);
951 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -0700952 }
953
Elliott Hughes72025e52011-08-23 17:50:30 -0700954 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700955 ScopedObjectAccess soa(env);
956 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -0700957 }
958
Elliott Hughes72025e52011-08-23 17:50:30 -0700959 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700960 ScopedObjectAccess soa(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700961 va_list ap;
962 va_start(ap, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700963 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -0700964 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700965 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -0700966 }
967
Elliott Hughes72025e52011-08-23 17:50:30 -0700968 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700969 ScopedObjectAccess soa(env);
970 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -0700971 }
972
Elliott Hughes72025e52011-08-23 17:50:30 -0700973 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700974 ScopedObjectAccess soa(env);
975 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -0700976 }
977
Elliott Hughes72025e52011-08-23 17:50:30 -0700978 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -0700979 va_list ap;
980 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -0700981 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700982 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -0700983 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700984 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -0700985 }
986
Elliott Hughes72025e52011-08-23 17:50:30 -0700987 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700988 ScopedObjectAccess soa(env);
989 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -0700990 }
991
Elliott Hughes72025e52011-08-23 17:50:30 -0700992 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700993 ScopedObjectAccess soa(env);
994 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -0700995 }
996
Elliott Hughes72025e52011-08-23 17:50:30 -0700997 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -0700998 va_list ap;
999 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001000 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001001 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001002 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001003 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001004 }
1005
Elliott Hughes72025e52011-08-23 17:50:30 -07001006 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001007 ScopedObjectAccess soa(env);
1008 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001009 }
1010
Elliott Hughes72025e52011-08-23 17:50:30 -07001011 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001012 ScopedObjectAccess soa(env);
1013 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001014 }
1015
Elliott Hughes72025e52011-08-23 17:50:30 -07001016 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001017 ScopedObjectAccess soa(env);
Elliott Hughes72025e52011-08-23 17:50:30 -07001018 va_list ap;
1019 va_start(ap, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001020 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001021 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001022 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001023 }
1024
Elliott Hughes72025e52011-08-23 17:50:30 -07001025 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001026 ScopedObjectAccess soa(env);
1027 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001028 }
1029
Elliott Hughes72025e52011-08-23 17:50:30 -07001030 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001031 ScopedObjectAccess soa(env);
1032 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001033 }
1034
Elliott Hughes72025e52011-08-23 17:50:30 -07001035 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001036 va_list ap;
1037 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001038 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001039 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001040 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001041 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001042 }
1043
Elliott Hughes72025e52011-08-23 17:50:30 -07001044 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001045 ScopedObjectAccess soa(env);
1046 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001047 }
1048
Elliott Hughes72025e52011-08-23 17:50:30 -07001049 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001050 ScopedObjectAccess soa(env);
1051 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001052 }
1053
Elliott Hughes72025e52011-08-23 17:50:30 -07001054 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001055 va_list ap;
1056 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001057 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001058 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001059 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001060 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001061 }
1062
Elliott Hughes72025e52011-08-23 17:50:30 -07001063 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001064 ScopedObjectAccess soa(env);
1065 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001066 }
1067
Elliott Hughes72025e52011-08-23 17:50:30 -07001068 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001069 ScopedObjectAccess soa(env);
1070 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001071 }
1072
Elliott Hughes72025e52011-08-23 17:50:30 -07001073 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001074 va_list ap;
1075 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001076 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001077 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001078 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001079 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001080 }
1081
Elliott Hughes72025e52011-08-23 17:50:30 -07001082 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001083 ScopedObjectAccess soa(env);
1084 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001085 }
1086
Elliott Hughes72025e52011-08-23 17:50:30 -07001087 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001088 ScopedObjectAccess soa(env);
1089 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001090 }
1091
Elliott Hughes72025e52011-08-23 17:50:30 -07001092 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001093 va_list ap;
1094 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001095 ScopedObjectAccess soa(env);
Ian Rogers1b09b092012-08-20 15:35:52 -07001096 InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001097 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001098 }
1099
Elliott Hughes72025e52011-08-23 17:50:30 -07001100 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001101 ScopedObjectAccess soa(env);
1102 InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001103 }
1104
Elliott Hughes72025e52011-08-23 17:50:30 -07001105 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001106 ScopedObjectAccess soa(env);
1107 InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001108 }
1109
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001110 static jobject CallNonvirtualObjectMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001111 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001112 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001113 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001114 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
1115 jobject local_result = soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001116 va_end(ap);
1117 return local_result;
1118 }
1119
1120 static jobject CallNonvirtualObjectMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001121 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001122 ScopedObjectAccess soa(env);
1123 JValue result(InvokeWithVarArgs(soa, obj, mid, args));
1124 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001125 }
1126
1127 static jobject CallNonvirtualObjectMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001128 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001129 ScopedObjectAccess soa(env);
1130 JValue result(InvokeWithJValues(soa, obj, mid, args));
1131 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001132 }
1133
1134 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001135 jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001136 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001137 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001138 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001139 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001140 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001141 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001142 }
1143
1144 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001145 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001146 ScopedObjectAccess soa(env);
1147 return InvokeWithVarArgs(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001148 }
1149
1150 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001151 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001152 ScopedObjectAccess soa(env);
1153 return InvokeWithJValues(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001154 }
1155
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001156 static jbyte CallNonvirtualByteMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001157 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001158 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001159 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001160 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001161 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001162 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001163 }
1164
1165 static jbyte CallNonvirtualByteMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001166 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001167 ScopedObjectAccess soa(env);
1168 return InvokeWithVarArgs(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001169 }
1170
1171 static jbyte CallNonvirtualByteMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001172 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001173 ScopedObjectAccess soa(env);
1174 return InvokeWithJValues(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001175 }
1176
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001177 static jchar CallNonvirtualCharMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001178 ScopedObjectAccess soa(env);
Elliott Hughescdf53122011-08-19 15:46:09 -07001179 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001180 va_start(ap, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001181 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001182 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001183 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001184 }
1185
1186 static jchar CallNonvirtualCharMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001187 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001188 ScopedObjectAccess soa(env);
1189 return InvokeWithVarArgs(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001190 }
1191
1192 static jchar CallNonvirtualCharMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001193 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001194 ScopedObjectAccess soa(env);
1195 return InvokeWithJValues(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001196 }
1197
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001198 static jshort CallNonvirtualShortMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001199 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001200 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001201 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001202 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001203 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001204 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001205 }
1206
1207 static jshort CallNonvirtualShortMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001208 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001209 ScopedObjectAccess soa(env);
1210 return InvokeWithVarArgs(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001211 }
1212
1213 static jshort CallNonvirtualShortMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001214 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001215 ScopedObjectAccess soa(env);
1216 return InvokeWithJValues(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001217 }
1218
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001219 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001220 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001221 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001222 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001223 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001224 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001225 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001226 }
1227
1228 static jint CallNonvirtualIntMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001229 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001230 ScopedObjectAccess soa(env);
1231 return InvokeWithVarArgs(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001232 }
1233
1234 static jint CallNonvirtualIntMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001235 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001236 ScopedObjectAccess soa(env);
1237 return InvokeWithJValues(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001238 }
1239
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001240 static jlong CallNonvirtualLongMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001241 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001242 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001243 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001244 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001245 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001246 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001247 }
1248
1249 static jlong CallNonvirtualLongMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001250 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001251 ScopedObjectAccess soa(env);
1252 return InvokeWithVarArgs(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001253 }
1254
1255 static jlong CallNonvirtualLongMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001256 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001257 ScopedObjectAccess soa(env);
1258 return InvokeWithJValues(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001259 }
1260
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001261 static jfloat CallNonvirtualFloatMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001262 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001263 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001264 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001265 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001266 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001267 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001268 }
1269
1270 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001271 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001272 ScopedObjectAccess soa(env);
1273 return InvokeWithVarArgs(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001274 }
1275
1276 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001277 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001278 ScopedObjectAccess soa(env);
1279 return InvokeWithJValues(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001280 }
1281
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001282 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001283 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001284 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001285 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001286 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001287 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001288 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001289 }
1290
1291 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001292 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001293 ScopedObjectAccess soa(env);
1294 return InvokeWithVarArgs(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001295 }
1296
1297 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001298 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001299 ScopedObjectAccess soa(env);
1300 return InvokeWithJValues(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001301 }
1302
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001303 static void CallNonvirtualVoidMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001304 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001305 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001306 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001307 InvokeWithVarArgs(soa, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001308 va_end(ap);
1309 }
1310
1311 static void CallNonvirtualVoidMethodV(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001312 jobject obj, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001313 ScopedObjectAccess soa(env);
1314 InvokeWithVarArgs(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001315 }
1316
1317 static void CallNonvirtualVoidMethodA(JNIEnv* env,
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001318 jobject obj, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001319 ScopedObjectAccess soa(env);
1320 InvokeWithJValues(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001321 }
1322
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001323 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001324 ScopedObjectAccess soa(env);
1325 return FindFieldID(soa, c, name, sig, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07001326 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001327
1328
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001329 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001330 ScopedObjectAccess soa(env);
1331 return FindFieldID(soa, c, name, sig, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07001332 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001333
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001334 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001335 ScopedObjectAccess soa(env);
1336 Object* o = soa.Decode<Object*>(obj);
1337 Field* f = soa.DecodeField(fid);
1338 return soa.AddLocalReference<jobject>(f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001339 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001340
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001341 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001342 ScopedObjectAccess soa(env);
1343 Field* f = soa.DecodeField(fid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001344 return soa.AddLocalReference<jobject>(f->GetObject(f->GetDeclaringClass()));
Elliott Hughescdf53122011-08-19 15:46:09 -07001345 }
1346
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001347 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001348 ScopedObjectAccess soa(env);
1349 Object* o = soa.Decode<Object*>(java_object);
1350 Object* v = soa.Decode<Object*>(java_value);
1351 Field* f = soa.DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001352 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001353 }
1354
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001355 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001356 ScopedObjectAccess soa(env);
1357 Object* v = soa.Decode<Object*>(java_value);
1358 Field* f = soa.DecodeField(fid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001359 f->SetObject(f->GetDeclaringClass(), v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001360 }
1361
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001362#define GET_PRIMITIVE_FIELD(fn, instance) \
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001363 ScopedObjectAccess soa(env); \
1364 Object* o = soa.Decode<Object*>(instance); \
1365 Field* f = soa.DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001366 return f->fn(o)
1367
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001368#define GET_STATIC_PRIMITIVE_FIELD(fn) \
1369 ScopedObjectAccess soa(env); \
1370 Field* f = soa.DecodeField(fid); \
1371 return f->fn(f->GetDeclaringClass())
1372
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001373#define SET_PRIMITIVE_FIELD(fn, instance, value) \
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001374 ScopedObjectAccess soa(env); \
1375 Object* o = soa.Decode<Object*>(instance); \
1376 Field* f = soa.DecodeField(fid); \
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001377 f->fn(o, value)
1378
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001379#define SET_STATIC_PRIMITIVE_FIELD(fn, value) \
1380 ScopedObjectAccess soa(env); \
1381 Field* f = soa.DecodeField(fid); \
1382 f->fn(f->GetDeclaringClass(), value)
1383
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001384 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
1385 GET_PRIMITIVE_FIELD(GetBoolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001386 }
1387
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001388 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
1389 GET_PRIMITIVE_FIELD(GetByte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001390 }
1391
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001392 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
1393 GET_PRIMITIVE_FIELD(GetChar, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001394 }
1395
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001396 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
1397 GET_PRIMITIVE_FIELD(GetShort, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001398 }
1399
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001400 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
1401 GET_PRIMITIVE_FIELD(GetInt, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001402 }
1403
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001404 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
1405 GET_PRIMITIVE_FIELD(GetLong, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001406 }
1407
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001408 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
1409 GET_PRIMITIVE_FIELD(GetFloat, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001410 }
1411
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001412 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
1413 GET_PRIMITIVE_FIELD(GetDouble, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001414 }
1415
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001416 static jboolean GetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001417 GET_STATIC_PRIMITIVE_FIELD(GetBoolean);
Elliott Hughescdf53122011-08-19 15:46:09 -07001418 }
1419
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001420 static jbyte GetStaticByteField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001421 GET_STATIC_PRIMITIVE_FIELD(GetByte);
Elliott Hughescdf53122011-08-19 15:46:09 -07001422 }
1423
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001424 static jchar GetStaticCharField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001425 GET_STATIC_PRIMITIVE_FIELD(GetChar);
Elliott Hughescdf53122011-08-19 15:46:09 -07001426 }
1427
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001428 static jshort GetStaticShortField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001429 GET_STATIC_PRIMITIVE_FIELD(GetShort);
Elliott Hughescdf53122011-08-19 15:46:09 -07001430 }
1431
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001432 static jint GetStaticIntField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001433 GET_STATIC_PRIMITIVE_FIELD(GetInt);
Elliott Hughescdf53122011-08-19 15:46:09 -07001434 }
1435
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001436 static jlong GetStaticLongField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001437 GET_STATIC_PRIMITIVE_FIELD(GetLong);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001438 }
1439
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001440 static jfloat GetStaticFloatField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001441 GET_STATIC_PRIMITIVE_FIELD(GetFloat);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001442 }
1443
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001444 static jdouble GetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001445 GET_STATIC_PRIMITIVE_FIELD(GetDouble);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001446 }
1447
1448 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
1449 SET_PRIMITIVE_FIELD(SetBoolean, obj, v);
1450 }
1451
1452 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
1453 SET_PRIMITIVE_FIELD(SetByte, obj, v);
1454 }
1455
1456 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
1457 SET_PRIMITIVE_FIELD(SetChar, obj, v);
1458 }
1459
1460 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
1461 SET_PRIMITIVE_FIELD(SetFloat, obj, v);
1462 }
1463
1464 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
1465 SET_PRIMITIVE_FIELD(SetDouble, obj, v);
1466 }
1467
1468 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
1469 SET_PRIMITIVE_FIELD(SetInt, obj, v);
1470 }
1471
1472 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
1473 SET_PRIMITIVE_FIELD(SetLong, obj, v);
1474 }
1475
1476 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
1477 SET_PRIMITIVE_FIELD(SetShort, obj, v);
1478 }
1479
1480 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001481 SET_STATIC_PRIMITIVE_FIELD(SetBoolean, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001482 }
1483
1484 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001485 SET_STATIC_PRIMITIVE_FIELD(SetByte, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001486 }
1487
1488 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001489 SET_STATIC_PRIMITIVE_FIELD(SetChar, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001490 }
1491
1492 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001493 SET_STATIC_PRIMITIVE_FIELD(SetFloat, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001494 }
1495
1496 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001497 SET_STATIC_PRIMITIVE_FIELD(SetDouble, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001498 }
1499
1500 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001501 SET_STATIC_PRIMITIVE_FIELD(SetInt, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001502 }
1503
1504 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001505 SET_STATIC_PRIMITIVE_FIELD(SetLong, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001506 }
1507
1508 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001509 SET_STATIC_PRIMITIVE_FIELD(SetShort, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001510 }
1511
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001512 static jobject CallStaticObjectMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001513 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001514 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001515 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001516 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
1517 jobject local_result = soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001518 va_end(ap);
1519 return local_result;
1520 }
1521
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001522 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001523 ScopedObjectAccess soa(env);
1524 JValue result(InvokeWithVarArgs(soa, NULL, mid, args));
1525 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001526 }
1527
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001528 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001529 ScopedObjectAccess soa(env);
1530 JValue result(InvokeWithJValues(soa, NULL, mid, args));
1531 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001532 }
1533
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001534 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001535 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001536 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001537 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001538 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001539 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001540 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001541 }
1542
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001543 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001544 ScopedObjectAccess soa(env);
1545 return InvokeWithVarArgs(soa, NULL, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001546 }
1547
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001548 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001549 ScopedObjectAccess soa(env);
1550 return InvokeWithJValues(soa, NULL, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001551 }
1552
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001553 static jbyte CallStaticByteMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001554 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001555 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001556 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001557 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001558 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001559 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001560 }
1561
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001562 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001563 ScopedObjectAccess soa(env);
1564 return InvokeWithVarArgs(soa, NULL, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001565 }
1566
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001567 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001568 ScopedObjectAccess soa(env);
1569 return InvokeWithJValues(soa, NULL, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001570 }
1571
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001572 static jchar CallStaticCharMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001573 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001574 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001575 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001576 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001577 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001578 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001579 }
1580
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001581 static jchar CallStaticCharMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001582 ScopedObjectAccess soa(env);
1583 return InvokeWithVarArgs(soa, NULL, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001584 }
1585
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001586 static jchar CallStaticCharMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001587 ScopedObjectAccess soa(env);
1588 return InvokeWithJValues(soa, NULL, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001589 }
1590
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001591 static jshort CallStaticShortMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001592 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001593 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001594 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001595 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001596 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001597 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001598 }
1599
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001600 static jshort CallStaticShortMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001601 ScopedObjectAccess soa(env);
1602 return InvokeWithVarArgs(soa, NULL, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001603 }
1604
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001605 static jshort CallStaticShortMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606 ScopedObjectAccess soa(env);
1607 return InvokeWithJValues(soa, NULL, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001608 }
1609
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001610 static jint CallStaticIntMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001611 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001612 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001613 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001614 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001615 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001616 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001617 }
1618
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001619 static jint CallStaticIntMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001620 ScopedObjectAccess soa(env);
1621 return InvokeWithVarArgs(soa, NULL, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001622 }
1623
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001624 static jint CallStaticIntMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001625 ScopedObjectAccess soa(env);
1626 return InvokeWithJValues(soa, NULL, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001627 }
1628
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001629 static jlong CallStaticLongMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001630 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001631 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001632 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001633 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001634 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001635 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001636 }
1637
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001638 static jlong CallStaticLongMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001639 ScopedObjectAccess soa(env);
1640 return InvokeWithVarArgs(soa, NULL, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001641 }
1642
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001643 static jlong CallStaticLongMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001644 ScopedObjectAccess soa(env);
1645 return InvokeWithJValues(soa, NULL, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001646 }
1647
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001648 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001649 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001650 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001651 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001652 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001653 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001654 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001655 }
1656
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001657 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001658 ScopedObjectAccess soa(env);
1659 return InvokeWithVarArgs(soa, NULL, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001660 }
1661
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001662 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001663 ScopedObjectAccess soa(env);
1664 return InvokeWithJValues(soa, NULL, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001665 }
1666
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001667 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001668 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001669 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001670 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001671 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001672 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001673 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001674 }
1675
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001676 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001677 ScopedObjectAccess soa(env);
1678 return InvokeWithVarArgs(soa, NULL, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001679 }
1680
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001681 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001682 ScopedObjectAccess soa(env);
1683 return InvokeWithJValues(soa, NULL, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001684 }
1685
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001686 static void CallStaticVoidMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001687 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001688 va_start(ap, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001689 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001690 InvokeWithVarArgs(soa, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001691 va_end(ap);
1692 }
1693
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001694 static void CallStaticVoidMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001695 ScopedObjectAccess soa(env);
1696 InvokeWithVarArgs(soa, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001697 }
1698
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001699 static void CallStaticVoidMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001700 ScopedObjectAccess soa(env);
1701 InvokeWithJValues(soa, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001702 }
1703
Elliott Hughes814e4032011-08-23 12:07:56 -07001704 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001705 ScopedObjectAccess soa(env);
Ian Rogers50b35e22012-10-04 10:09:15 -07001706 String* result = String::AllocFromUtf16(soa.Self(), char_count, chars);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001707 return soa.AddLocalReference<jstring>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001708 }
1709
1710 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001711 if (utf == NULL) {
1712 return NULL;
1713 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001714 ScopedObjectAccess soa(env);
Ian Rogers50b35e22012-10-04 10:09:15 -07001715 String* result = String::AllocFromModifiedUtf8(soa.Self(), utf);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001716 return soa.AddLocalReference<jstring>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001717 }
1718
Elliott Hughes814e4032011-08-23 12:07:56 -07001719 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001720 ScopedObjectAccess soa(env);
1721 return soa.Decode<String*>(java_string)->GetLength();
Elliott Hughes814e4032011-08-23 12:07:56 -07001722 }
1723
1724 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001725 ScopedObjectAccess soa(env);
1726 return soa.Decode<String*>(java_string)->GetUtfLength();
Elliott Hughes814e4032011-08-23 12:07:56 -07001727 }
1728
Elliott Hughesb465ab02011-08-24 11:21:21 -07001729 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, jchar* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001730 ScopedObjectAccess soa(env);
1731 String* s = soa.Decode<String*>(java_string);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001732 if (start < 0 || length < 0 || start + length > s->GetLength()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001733 ThrowSIOOBE(soa, start, length, s->GetLength());
Elliott Hughesb465ab02011-08-24 11:21:21 -07001734 } else {
1735 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1736 memcpy(buf, chars + start, length * sizeof(jchar));
1737 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001738 }
1739
Elliott Hughesb465ab02011-08-24 11:21:21 -07001740 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length, char* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001741 ScopedObjectAccess soa(env);
1742 String* s = soa.Decode<String*>(java_string);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001743 if (start < 0 || length < 0 || start + length > s->GetLength()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001744 ThrowSIOOBE(soa, start, length, s->GetLength());
Elliott Hughesb465ab02011-08-24 11:21:21 -07001745 } else {
1746 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1747 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1748 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001749 }
1750
Elliott Hughes75770752011-08-24 17:52:38 -07001751 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001752 ScopedObjectAccess soa(env);
1753 String* s = soa.Decode<String*>(java_string);
Elliott Hughes75770752011-08-24 17:52:38 -07001754 const CharArray* chars = s->GetCharArray();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001755 PinPrimitiveArray(soa, chars);
Elliott Hughes75770752011-08-24 17:52:38 -07001756 if (is_copy != NULL) {
1757 *is_copy = JNI_FALSE;
1758 }
1759 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07001760 }
1761
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001762 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar*) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001763 ScopedObjectAccess soa(env);
1764 UnpinPrimitiveArray(soa, soa.Decode<String*>(java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07001765 }
1766
Elliott Hughes75770752011-08-24 17:52:38 -07001767 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes75770752011-08-24 17:52:38 -07001768 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001769 }
1770
Elliott Hughes75770752011-08-24 17:52:38 -07001771 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001772 ScopedObjectAccess soa(env);
Elliott Hughes75770752011-08-24 17:52:38 -07001773 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07001774 }
1775
Elliott Hughes75770752011-08-24 17:52:38 -07001776 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes75770752011-08-24 17:52:38 -07001777 if (java_string == NULL) {
1778 return NULL;
1779 }
1780 if (is_copy != NULL) {
1781 *is_copy = JNI_TRUE;
1782 }
Ian Rogersef28b142012-11-30 14:22:18 -08001783 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001784 String* s = soa.Decode<String*>(java_string);
Elliott Hughes75770752011-08-24 17:52:38 -07001785 size_t byte_count = s->GetUtfLength();
1786 char* bytes = new char[byte_count + 1];
Elliott Hughes418dfe72011-10-06 18:56:27 -07001787 CHECK(bytes != NULL); // bionic aborts anyway.
Elliott Hughes75770752011-08-24 17:52:38 -07001788 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
1789 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
1790 bytes[byte_count] = '\0';
1791 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001792 }
1793
Elliott Hughes75770752011-08-24 17:52:38 -07001794 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughes75770752011-08-24 17:52:38 -07001795 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07001796 }
1797
Elliott Hughesbd935992011-08-22 11:59:34 -07001798 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001799 ScopedObjectAccess soa(env);
1800 Object* obj = soa.Decode<Object*>(java_array);
Elliott Hughes96a98872012-12-19 14:21:15 -08001801 if (!obj->IsArrayInstance()) {
1802 JniAbortF("GetArrayLength", "not an array: %s", PrettyTypeOf(obj).c_str());
1803 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001804 Array* array = obj->AsArray();
1805 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07001806 }
1807
Elliott Hughes814e4032011-08-23 12:07:56 -07001808 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001809 ScopedObjectAccess soa(env);
1810 ObjectArray<Object>* array = soa.Decode<ObjectArray<Object>*>(java_array);
1811 return soa.AddLocalReference<jobject>(array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07001812 }
1813
1814 static void SetObjectArrayElement(JNIEnv* env,
1815 jobjectArray java_array, jsize index, jobject java_value) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001816 ScopedObjectAccess soa(env);
1817 ObjectArray<Object>* array = soa.Decode<ObjectArray<Object>*>(java_array);
1818 Object* value = soa.Decode<Object*>(java_value);
Elliott Hughescdf53122011-08-19 15:46:09 -07001819 array->Set(index, value);
1820 }
1821
1822 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001823 ScopedObjectAccess soa(env);
1824 return NewPrimitiveArray<jbooleanArray, BooleanArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001825 }
1826
1827 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001828 ScopedObjectAccess soa(env);
1829 return NewPrimitiveArray<jbyteArray, ByteArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001830 }
1831
1832 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001833 ScopedObjectAccess soa(env);
1834 return NewPrimitiveArray<jcharArray, CharArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001835 }
1836
1837 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001838 ScopedObjectAccess soa(env);
1839 return NewPrimitiveArray<jdoubleArray, DoubleArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001840 }
1841
1842 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001843 ScopedObjectAccess soa(env);
1844 return NewPrimitiveArray<jfloatArray, FloatArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001845 }
1846
1847 static jintArray NewIntArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001848 ScopedObjectAccess soa(env);
1849 return NewPrimitiveArray<jintArray, IntArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001850 }
1851
1852 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001853 ScopedObjectAccess soa(env);
1854 return NewPrimitiveArray<jlongArray, LongArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001855 }
1856
1857 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001858 ScopedObjectAccess soa(env);
Elliott Hughes96a98872012-12-19 14:21:15 -08001859 if (length < 0) {
1860 JniAbortF("NewObjectArray", "negative array length: %d", length);
1861 }
Elliott Hughescdf53122011-08-19 15:46:09 -07001862
1863 // Compute the array class corresponding to the given element class.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001864 Class* element_class = soa.Decode<Class*>(element_jclass);
Elliott Hughescdf53122011-08-19 15:46:09 -07001865 std::string descriptor;
1866 descriptor += "[";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001867 descriptor += ClassHelper(element_class).GetDescriptor();
Elliott Hughescdf53122011-08-19 15:46:09 -07001868
1869 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07001870 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
1871 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001872 return NULL;
1873 }
1874
Elliott Hughes75770752011-08-24 17:52:38 -07001875 // Allocate and initialize if necessary.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001876 Class* array_class = soa.Decode<Class*>(java_array_class.get());
Ian Rogers50b35e22012-10-04 10:09:15 -07001877 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(soa.Self(), array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07001878 if (initial_element != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001879 Object* initial_object = soa.Decode<Object*>(initial_element);
Elliott Hughes75770752011-08-24 17:52:38 -07001880 for (jsize i = 0; i < length; ++i) {
1881 result->Set(i, initial_object);
1882 }
1883 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001884 return soa.AddLocalReference<jobjectArray>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001885 }
1886
1887 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001888 ScopedObjectAccess soa(env);
1889 return NewPrimitiveArray<jshortArray, ShortArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07001890 }
1891
Ian Rogersa15e67d2012-02-28 13:51:55 -08001892 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray java_array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001893 ScopedObjectAccess soa(env);
1894 Array* array = soa.Decode<Array*>(java_array);
1895 PinPrimitiveArray(soa, array);
Ian Rogersa15e67d2012-02-28 13:51:55 -08001896 if (is_copy != NULL) {
1897 *is_copy = JNI_FALSE;
1898 }
1899 return array->GetRawData(array->GetClass()->GetComponentSize());
Elliott Hughesb465ab02011-08-24 11:21:21 -07001900 }
1901
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001902 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001903 ReleasePrimitiveArray(env, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001904 }
1905
Elliott Hughes75770752011-08-24 17:52:38 -07001906 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001907 ScopedObjectAccess soa(env);
1908 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001909 }
1910
Elliott Hughes75770752011-08-24 17:52:38 -07001911 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001912 ScopedObjectAccess soa(env);
1913 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001914 }
1915
Elliott Hughes75770752011-08-24 17:52:38 -07001916 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001917 ScopedObjectAccess soa(env);
1918 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001919 }
1920
Elliott Hughes75770752011-08-24 17:52:38 -07001921 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001922 ScopedObjectAccess soa(env);
1923 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001924 }
1925
Elliott Hughes75770752011-08-24 17:52:38 -07001926 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001927 ScopedObjectAccess soa(env);
1928 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001929 }
1930
Elliott Hughes75770752011-08-24 17:52:38 -07001931 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001932 ScopedObjectAccess soa(env);
1933 return GetPrimitiveArray<jintArray, jint*, IntArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001934 }
1935
Elliott Hughes75770752011-08-24 17:52:38 -07001936 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001937 ScopedObjectAccess soa(env);
1938 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001939 }
1940
Elliott Hughes75770752011-08-24 17:52:38 -07001941 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001942 ScopedObjectAccess soa(env);
1943 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07001944 }
1945
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001946 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001947 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001948 }
1949
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001950 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001951 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001952 }
1953
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001954 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001955 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001956 }
1957
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001958 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001959 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001960 }
1961
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001962 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001963 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001964 }
1965
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001966 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001967 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001968 }
1969
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001970 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001971 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001972 }
1973
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001974 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08001975 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07001976 }
1977
Elliott Hughes814e4032011-08-23 12:07:56 -07001978 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, jboolean* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001979 ScopedObjectAccess soa(env);
1980 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07001981 }
1982
Elliott Hughes814e4032011-08-23 12:07:56 -07001983 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, jbyte* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001984 ScopedObjectAccess soa(env);
1985 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07001986 }
1987
Elliott Hughes814e4032011-08-23 12:07:56 -07001988 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, jchar* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001989 ScopedObjectAccess soa(env);
1990 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07001991 }
1992
Elliott Hughes814e4032011-08-23 12:07:56 -07001993 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, jdouble* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001994 ScopedObjectAccess soa(env);
1995 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07001996 }
1997
Elliott Hughes814e4032011-08-23 12:07:56 -07001998 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, jfloat* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001999 ScopedObjectAccess soa(env);
2000 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002001 }
2002
Elliott Hughes814e4032011-08-23 12:07:56 -07002003 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, jint* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002004 ScopedObjectAccess soa(env);
2005 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002006 }
2007
Elliott Hughes814e4032011-08-23 12:07:56 -07002008 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, jlong* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002009 ScopedObjectAccess soa(env);
2010 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002011 }
2012
Elliott Hughes814e4032011-08-23 12:07:56 -07002013 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, jshort* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002014 ScopedObjectAccess soa(env);
2015 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002016 }
2017
Elliott Hughes814e4032011-08-23 12:07:56 -07002018 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length, const jboolean* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002019 ScopedObjectAccess soa(env);
2020 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002021 }
2022
Elliott Hughes814e4032011-08-23 12:07:56 -07002023 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length, const jbyte* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002024 ScopedObjectAccess soa(env);
2025 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002026 }
2027
Elliott Hughes814e4032011-08-23 12:07:56 -07002028 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length, const jchar* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002029 ScopedObjectAccess soa(env);
2030 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002031 }
2032
Elliott Hughes814e4032011-08-23 12:07:56 -07002033 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length, const jdouble* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002034 ScopedObjectAccess soa(env);
2035 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002036 }
2037
Elliott Hughes814e4032011-08-23 12:07:56 -07002038 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length, const jfloat* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002039 ScopedObjectAccess soa(env);
2040 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002041 }
2042
Elliott Hughes814e4032011-08-23 12:07:56 -07002043 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length, const jint* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002044 ScopedObjectAccess soa(env);
2045 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002046 }
2047
Elliott Hughes814e4032011-08-23 12:07:56 -07002048 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length, const jlong* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002049 ScopedObjectAccess soa(env);
2050 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002051 }
2052
Elliott Hughes814e4032011-08-23 12:07:56 -07002053 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length, const jshort* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002054 ScopedObjectAccess soa(env);
2055 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002056 }
2057
Elliott Hughes5174fe62011-08-23 15:12:35 -07002058 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002059 return RegisterNativeMethods(env, java_class, methods, method_count, true);
2060 }
2061
2062 static jint RegisterNativeMethods(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, size_t method_count, bool return_errors) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002063 ScopedObjectAccess soa(env);
2064 Class* c = soa.Decode<Class*>(java_class);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002065
Elliott Hughesc8fece32013-01-02 11:27:23 -08002066 for (size_t i = 0; i < method_count; ++i) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002067 const char* name = methods[i].name;
2068 const char* sig = methods[i].signature;
2069
2070 if (*sig == '!') {
2071 // TODO: fast jni. it's too noisy to log all these.
2072 ++sig;
2073 }
2074
Mathieu Chartier66f19252012-09-18 08:57:04 -07002075 AbstractMethod* m = c->FindDirectMethod(name, sig);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002076 if (m == NULL) {
2077 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002078 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002079 if (m == NULL) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002080 LOG(return_errors ? ERROR : FATAL) << "Failed to register native method "
2081 << PrettyDescriptor(c) << "." << name << sig;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002082 ThrowNoSuchMethodError(soa, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002083 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002084 } else if (!m->IsNative()) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002085 LOG(return_errors ? ERROR : FATAL) << "Failed to register non-native method "
2086 << PrettyDescriptor(c) << "." << name << sig
2087 << " as native";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002088 ThrowNoSuchMethodError(soa, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002089 return JNI_ERR;
2090 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002091
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002092 VLOG(jni) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002093
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002094 m->RegisterNative(soa.Self(), methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002095 }
2096 return JNI_OK;
2097 }
2098
Elliott Hughes5174fe62011-08-23 15:12:35 -07002099 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002100 ScopedObjectAccess soa(env);
2101 Class* c = soa.Decode<Class*>(java_class);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002102
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002103 VLOG(jni) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002104
2105 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002106 AbstractMethod* m = c->GetDirectMethod(i);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002107 if (m->IsNative()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002108 m->UnregisterNative(soa.Self());
Elliott Hughes5174fe62011-08-23 15:12:35 -07002109 }
2110 }
2111 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002112 AbstractMethod* m = c->GetVirtualMethod(i);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002113 if (m->IsNative()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002114 m->UnregisterNative(soa.Self());
Elliott Hughes5174fe62011-08-23 15:12:35 -07002115 }
2116 }
2117
2118 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002119 }
2120
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002121 static jint MonitorEnter(JNIEnv* env, jobject java_object)
2122 EXCLUSIVE_LOCK_FUNCTION(monitor_lock_) {
2123 ScopedObjectAccess soa(env);
2124 Object* o = soa.Decode<Object*>(java_object);
2125 o->MonitorEnter(soa.Self());
2126 if (soa.Self()->IsExceptionPending()) {
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002127 return JNI_ERR;
2128 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002129 soa.Env()->monitors.Add(o);
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002130 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002131 }
2132
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002133 static jint MonitorExit(JNIEnv* env, jobject java_object)
2134 UNLOCK_FUNCTION(monitor_lock_) {
2135 ScopedObjectAccess soa(env);
2136 Object* o = soa.Decode<Object*>(java_object);
2137 o->MonitorExit(soa.Self());
2138 if (soa.Self()->IsExceptionPending()) {
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002139 return JNI_ERR;
2140 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002141 soa.Env()->monitors.Remove(o);
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002142 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002143 }
2144
2145 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002146 Runtime* runtime = Runtime::Current();
2147 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002148 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002149 } else {
2150 *vm = NULL;
2151 }
2152 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2153 }
2154
Elliott Hughescdf53122011-08-19 15:46:09 -07002155 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002156 if (capacity < 0) {
2157 JniAbortF("NewDirectByteBuffer", "negative buffer capacity: %d", capacity);
2158 }
Elliott Hughes11a796e2012-12-19 14:42:57 -08002159 if (address == NULL && capacity != 0) {
2160 JniAbortF("NewDirectByteBuffer", "non-zero capacity for NULL pointer: %d", capacity);
Elliott Hughes96a98872012-12-19 14:21:15 -08002161 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002162
Elliott Hughes96a98872012-12-19 14:21:15 -08002163 // At the moment, the Java side is limited to 32 bits.
Elliott Hughesb465ab02011-08-24 11:21:21 -07002164 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2165 CHECK_LE(capacity, 0xffffffff);
2166 jint address_arg = reinterpret_cast<jint>(address);
2167 jint capacity_arg = static_cast<jint>(capacity);
2168
Elliott Hugheseac76672012-05-24 21:56:51 -07002169 jobject result = env->NewObject(WellKnownClasses::java_nio_ReadWriteDirectByteBuffer,
2170 WellKnownClasses::java_nio_ReadWriteDirectByteBuffer_init,
2171 address_arg, capacity_arg);
Ian Rogersef28b142012-11-30 14:22:18 -08002172 return static_cast<JNIEnvExt*>(env)->self->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002173 }
2174
Elliott Hughesb465ab02011-08-24 11:21:21 -07002175 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Elliott Hugheseac76672012-05-24 21:56:51 -07002176 return reinterpret_cast<void*>(env->GetIntField(java_buffer, WellKnownClasses::java_nio_ReadWriteDirectByteBuffer_effectiveDirectAddress));
Elliott Hughescdf53122011-08-19 15:46:09 -07002177 }
2178
Elliott Hughesb465ab02011-08-24 11:21:21 -07002179 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hugheseac76672012-05-24 21:56:51 -07002180 return static_cast<jlong>(env->GetIntField(java_buffer, WellKnownClasses::java_nio_ReadWriteDirectByteBuffer_capacity));
Elliott Hughescdf53122011-08-19 15:46:09 -07002181 }
2182
Elliott Hughesb465ab02011-08-24 11:21:21 -07002183 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002184 if (java_object == NULL) {
2185 JniAbortF("GetObjectRefType", "null object");
2186 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002187
2188 // Do we definitely know what kind of reference this is?
2189 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2190 IndirectRefKind kind = GetIndirectRefKind(ref);
2191 switch (kind) {
2192 case kLocal:
Ian Rogersef28b142012-11-30 14:22:18 -08002193 if (static_cast<JNIEnvExt*>(env)->locals.Get(ref) != kInvalidIndirectRefObject) {
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002194 return JNILocalRefType;
2195 }
2196 return JNIInvalidRefType;
Elliott Hughesb465ab02011-08-24 11:21:21 -07002197 case kGlobal:
2198 return JNIGlobalRefType;
2199 case kWeakGlobal:
2200 return JNIWeakGlobalRefType;
2201 case kSirtOrInvalid:
2202 // Is it in a stack IRT?
Ian Rogersef28b142012-11-30 14:22:18 -08002203 if (static_cast<JNIEnvExt*>(env)->self->SirtContains(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002204 return JNILocalRefType;
2205 }
2206
Ian Rogersef28b142012-11-30 14:22:18 -08002207 if (!static_cast<JNIEnvExt*>(env)->vm->work_around_app_jni_bugs) {
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002208 return JNIInvalidRefType;
2209 }
2210
Elliott Hughesb465ab02011-08-24 11:21:21 -07002211 // If we're handing out direct pointers, check whether it's a direct pointer
2212 // to a local reference.
Ian Rogersef28b142012-11-30 14:22:18 -08002213 {
2214 ScopedObjectAccess soa(env);
2215 if (soa.Decode<Object*>(java_object) == reinterpret_cast<Object*>(java_object)) {
2216 if (soa.Env()->locals.ContainsDirectPointer(reinterpret_cast<Object*>(java_object))) {
2217 return JNILocalRefType;
2218 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002219 }
2220 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002221 return JNIInvalidRefType;
2222 }
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08002223 LOG(FATAL) << "IndirectRefKind[" << kind << "]";
2224 return JNIInvalidRefType;
Elliott Hughescdf53122011-08-19 15:46:09 -07002225 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002226
2227 private:
Ian Rogersef28b142012-11-30 14:22:18 -08002228 static jint EnsureLocalCapacity(JNIEnv* env, jint desired_capacity,
2229 const char* caller) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002230 // TODO: we should try to expand the table if necessary.
2231 if (desired_capacity < 1 || desired_capacity > static_cast<jint>(kLocalsMax)) {
2232 LOG(ERROR) << "Invalid capacity given to " << caller << ": " << desired_capacity;
2233 return JNI_ERR;
2234 }
2235 // TODO: this isn't quite right, since "capacity" includes holes.
Ian Rogersef28b142012-11-30 14:22:18 -08002236 size_t capacity = static_cast<JNIEnvExt*>(env)->locals.Capacity();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002237 bool okay = (static_cast<jint>(kLocalsMax - capacity) >= desired_capacity);
2238 if (!okay) {
Ian Rogersef28b142012-11-30 14:22:18 -08002239 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002240 soa.Self()->ThrowOutOfMemoryError(caller);
2241 }
2242 return okay ? JNI_OK : JNI_ERR;
2243 }
2244
2245 template<typename JniT, typename ArtT>
2246 static JniT NewPrimitiveArray(const ScopedObjectAccess& soa, jsize length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002247 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002248 if (length < 0) {
2249 JniAbortF("NewPrimitiveArray", "negative array length: %d", length);
2250 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002251 ArtT* result = ArtT::Alloc(soa.Self(), length);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002252 return soa.AddLocalReference<JniT>(result);
2253 }
2254
2255 template <typename ArrayT, typename CArrayT, typename ArtArrayT>
2256 static CArrayT GetPrimitiveArray(ScopedObjectAccess& soa, ArrayT java_array,
2257 jboolean* is_copy)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002258 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002259 ArtArrayT* array = soa.Decode<ArtArrayT*>(java_array);
2260 PinPrimitiveArray(soa, array);
2261 if (is_copy != NULL) {
2262 *is_copy = JNI_FALSE;
2263 }
2264 return array->GetData();
2265 }
2266
2267 template <typename ArrayT>
Ian Rogersef28b142012-11-30 14:22:18 -08002268 static void ReleasePrimitiveArray(JNIEnv* env, ArrayT java_array, jint mode) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002269 if (mode != JNI_COMMIT) {
Ian Rogersef28b142012-11-30 14:22:18 -08002270 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002271 Array* array = soa.Decode<Array*>(java_array);
2272 UnpinPrimitiveArray(soa, array);
2273 }
2274 }
2275
2276 template <typename JavaArrayT, typename JavaT, typename ArrayT>
2277 static void GetPrimitiveArrayRegion(ScopedObjectAccess& soa, JavaArrayT java_array,
2278 jsize start, jsize length, JavaT* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002279 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002280 ArrayT* array = soa.Decode<ArrayT*>(java_array);
2281 if (start < 0 || length < 0 || start + length > array->GetLength()) {
2282 ThrowAIOOBE(soa, array, start, length, "src");
2283 } else {
2284 JavaT* data = array->GetData();
2285 memcpy(buf, data + start, length * sizeof(JavaT));
2286 }
2287 }
2288
2289 template <typename JavaArrayT, typename JavaT, typename ArrayT>
2290 static void SetPrimitiveArrayRegion(ScopedObjectAccess& soa, JavaArrayT java_array,
2291 jsize start, jsize length, const JavaT* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002292 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002293 ArrayT* array = soa.Decode<ArrayT*>(java_array);
2294 if (start < 0 || length < 0 || start + length > array->GetLength()) {
2295 ThrowAIOOBE(soa, array, start, length, "dst");
2296 } else {
2297 JavaT* data = array->GetData();
2298 memcpy(data + start, buf, length * sizeof(JavaT));
2299 }
2300 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002301};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002302
Elliott Hughes88c5c352012-03-15 18:49:48 -07002303const JNINativeInterface gJniNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002304 NULL, // reserved0.
2305 NULL, // reserved1.
2306 NULL, // reserved2.
2307 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002308 JNI::GetVersion,
2309 JNI::DefineClass,
2310 JNI::FindClass,
2311 JNI::FromReflectedMethod,
2312 JNI::FromReflectedField,
2313 JNI::ToReflectedMethod,
2314 JNI::GetSuperclass,
2315 JNI::IsAssignableFrom,
2316 JNI::ToReflectedField,
2317 JNI::Throw,
2318 JNI::ThrowNew,
2319 JNI::ExceptionOccurred,
2320 JNI::ExceptionDescribe,
2321 JNI::ExceptionClear,
2322 JNI::FatalError,
2323 JNI::PushLocalFrame,
2324 JNI::PopLocalFrame,
2325 JNI::NewGlobalRef,
2326 JNI::DeleteGlobalRef,
2327 JNI::DeleteLocalRef,
2328 JNI::IsSameObject,
2329 JNI::NewLocalRef,
2330 JNI::EnsureLocalCapacity,
2331 JNI::AllocObject,
2332 JNI::NewObject,
2333 JNI::NewObjectV,
2334 JNI::NewObjectA,
2335 JNI::GetObjectClass,
2336 JNI::IsInstanceOf,
2337 JNI::GetMethodID,
2338 JNI::CallObjectMethod,
2339 JNI::CallObjectMethodV,
2340 JNI::CallObjectMethodA,
2341 JNI::CallBooleanMethod,
2342 JNI::CallBooleanMethodV,
2343 JNI::CallBooleanMethodA,
2344 JNI::CallByteMethod,
2345 JNI::CallByteMethodV,
2346 JNI::CallByteMethodA,
2347 JNI::CallCharMethod,
2348 JNI::CallCharMethodV,
2349 JNI::CallCharMethodA,
2350 JNI::CallShortMethod,
2351 JNI::CallShortMethodV,
2352 JNI::CallShortMethodA,
2353 JNI::CallIntMethod,
2354 JNI::CallIntMethodV,
2355 JNI::CallIntMethodA,
2356 JNI::CallLongMethod,
2357 JNI::CallLongMethodV,
2358 JNI::CallLongMethodA,
2359 JNI::CallFloatMethod,
2360 JNI::CallFloatMethodV,
2361 JNI::CallFloatMethodA,
2362 JNI::CallDoubleMethod,
2363 JNI::CallDoubleMethodV,
2364 JNI::CallDoubleMethodA,
2365 JNI::CallVoidMethod,
2366 JNI::CallVoidMethodV,
2367 JNI::CallVoidMethodA,
2368 JNI::CallNonvirtualObjectMethod,
2369 JNI::CallNonvirtualObjectMethodV,
2370 JNI::CallNonvirtualObjectMethodA,
2371 JNI::CallNonvirtualBooleanMethod,
2372 JNI::CallNonvirtualBooleanMethodV,
2373 JNI::CallNonvirtualBooleanMethodA,
2374 JNI::CallNonvirtualByteMethod,
2375 JNI::CallNonvirtualByteMethodV,
2376 JNI::CallNonvirtualByteMethodA,
2377 JNI::CallNonvirtualCharMethod,
2378 JNI::CallNonvirtualCharMethodV,
2379 JNI::CallNonvirtualCharMethodA,
2380 JNI::CallNonvirtualShortMethod,
2381 JNI::CallNonvirtualShortMethodV,
2382 JNI::CallNonvirtualShortMethodA,
2383 JNI::CallNonvirtualIntMethod,
2384 JNI::CallNonvirtualIntMethodV,
2385 JNI::CallNonvirtualIntMethodA,
2386 JNI::CallNonvirtualLongMethod,
2387 JNI::CallNonvirtualLongMethodV,
2388 JNI::CallNonvirtualLongMethodA,
2389 JNI::CallNonvirtualFloatMethod,
2390 JNI::CallNonvirtualFloatMethodV,
2391 JNI::CallNonvirtualFloatMethodA,
2392 JNI::CallNonvirtualDoubleMethod,
2393 JNI::CallNonvirtualDoubleMethodV,
2394 JNI::CallNonvirtualDoubleMethodA,
2395 JNI::CallNonvirtualVoidMethod,
2396 JNI::CallNonvirtualVoidMethodV,
2397 JNI::CallNonvirtualVoidMethodA,
2398 JNI::GetFieldID,
2399 JNI::GetObjectField,
2400 JNI::GetBooleanField,
2401 JNI::GetByteField,
2402 JNI::GetCharField,
2403 JNI::GetShortField,
2404 JNI::GetIntField,
2405 JNI::GetLongField,
2406 JNI::GetFloatField,
2407 JNI::GetDoubleField,
2408 JNI::SetObjectField,
2409 JNI::SetBooleanField,
2410 JNI::SetByteField,
2411 JNI::SetCharField,
2412 JNI::SetShortField,
2413 JNI::SetIntField,
2414 JNI::SetLongField,
2415 JNI::SetFloatField,
2416 JNI::SetDoubleField,
2417 JNI::GetStaticMethodID,
2418 JNI::CallStaticObjectMethod,
2419 JNI::CallStaticObjectMethodV,
2420 JNI::CallStaticObjectMethodA,
2421 JNI::CallStaticBooleanMethod,
2422 JNI::CallStaticBooleanMethodV,
2423 JNI::CallStaticBooleanMethodA,
2424 JNI::CallStaticByteMethod,
2425 JNI::CallStaticByteMethodV,
2426 JNI::CallStaticByteMethodA,
2427 JNI::CallStaticCharMethod,
2428 JNI::CallStaticCharMethodV,
2429 JNI::CallStaticCharMethodA,
2430 JNI::CallStaticShortMethod,
2431 JNI::CallStaticShortMethodV,
2432 JNI::CallStaticShortMethodA,
2433 JNI::CallStaticIntMethod,
2434 JNI::CallStaticIntMethodV,
2435 JNI::CallStaticIntMethodA,
2436 JNI::CallStaticLongMethod,
2437 JNI::CallStaticLongMethodV,
2438 JNI::CallStaticLongMethodA,
2439 JNI::CallStaticFloatMethod,
2440 JNI::CallStaticFloatMethodV,
2441 JNI::CallStaticFloatMethodA,
2442 JNI::CallStaticDoubleMethod,
2443 JNI::CallStaticDoubleMethodV,
2444 JNI::CallStaticDoubleMethodA,
2445 JNI::CallStaticVoidMethod,
2446 JNI::CallStaticVoidMethodV,
2447 JNI::CallStaticVoidMethodA,
2448 JNI::GetStaticFieldID,
2449 JNI::GetStaticObjectField,
2450 JNI::GetStaticBooleanField,
2451 JNI::GetStaticByteField,
2452 JNI::GetStaticCharField,
2453 JNI::GetStaticShortField,
2454 JNI::GetStaticIntField,
2455 JNI::GetStaticLongField,
2456 JNI::GetStaticFloatField,
2457 JNI::GetStaticDoubleField,
2458 JNI::SetStaticObjectField,
2459 JNI::SetStaticBooleanField,
2460 JNI::SetStaticByteField,
2461 JNI::SetStaticCharField,
2462 JNI::SetStaticShortField,
2463 JNI::SetStaticIntField,
2464 JNI::SetStaticLongField,
2465 JNI::SetStaticFloatField,
2466 JNI::SetStaticDoubleField,
2467 JNI::NewString,
2468 JNI::GetStringLength,
2469 JNI::GetStringChars,
2470 JNI::ReleaseStringChars,
2471 JNI::NewStringUTF,
2472 JNI::GetStringUTFLength,
2473 JNI::GetStringUTFChars,
2474 JNI::ReleaseStringUTFChars,
2475 JNI::GetArrayLength,
2476 JNI::NewObjectArray,
2477 JNI::GetObjectArrayElement,
2478 JNI::SetObjectArrayElement,
2479 JNI::NewBooleanArray,
2480 JNI::NewByteArray,
2481 JNI::NewCharArray,
2482 JNI::NewShortArray,
2483 JNI::NewIntArray,
2484 JNI::NewLongArray,
2485 JNI::NewFloatArray,
2486 JNI::NewDoubleArray,
2487 JNI::GetBooleanArrayElements,
2488 JNI::GetByteArrayElements,
2489 JNI::GetCharArrayElements,
2490 JNI::GetShortArrayElements,
2491 JNI::GetIntArrayElements,
2492 JNI::GetLongArrayElements,
2493 JNI::GetFloatArrayElements,
2494 JNI::GetDoubleArrayElements,
2495 JNI::ReleaseBooleanArrayElements,
2496 JNI::ReleaseByteArrayElements,
2497 JNI::ReleaseCharArrayElements,
2498 JNI::ReleaseShortArrayElements,
2499 JNI::ReleaseIntArrayElements,
2500 JNI::ReleaseLongArrayElements,
2501 JNI::ReleaseFloatArrayElements,
2502 JNI::ReleaseDoubleArrayElements,
2503 JNI::GetBooleanArrayRegion,
2504 JNI::GetByteArrayRegion,
2505 JNI::GetCharArrayRegion,
2506 JNI::GetShortArrayRegion,
2507 JNI::GetIntArrayRegion,
2508 JNI::GetLongArrayRegion,
2509 JNI::GetFloatArrayRegion,
2510 JNI::GetDoubleArrayRegion,
2511 JNI::SetBooleanArrayRegion,
2512 JNI::SetByteArrayRegion,
2513 JNI::SetCharArrayRegion,
2514 JNI::SetShortArrayRegion,
2515 JNI::SetIntArrayRegion,
2516 JNI::SetLongArrayRegion,
2517 JNI::SetFloatArrayRegion,
2518 JNI::SetDoubleArrayRegion,
2519 JNI::RegisterNatives,
2520 JNI::UnregisterNatives,
2521 JNI::MonitorEnter,
2522 JNI::MonitorExit,
2523 JNI::GetJavaVM,
2524 JNI::GetStringRegion,
2525 JNI::GetStringUTFRegion,
2526 JNI::GetPrimitiveArrayCritical,
2527 JNI::ReleasePrimitiveArrayCritical,
2528 JNI::GetStringCritical,
2529 JNI::ReleaseStringCritical,
2530 JNI::NewWeakGlobalRef,
2531 JNI::DeleteWeakGlobalRef,
2532 JNI::ExceptionCheck,
2533 JNI::NewDirectByteBuffer,
2534 JNI::GetDirectBufferAddress,
2535 JNI::GetDirectBufferCapacity,
2536 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002537};
2538
Elliott Hughes75770752011-08-24 17:52:38 -07002539JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002540 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002541 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002542 local_ref_cookie(IRT_FIRST_SEGMENT),
2543 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002544 check_jni(false),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002545 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002546 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002547 functions = unchecked_functions = &gJniNativeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002548 if (vm->check_jni) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002549 SetCheckJniEnabled(true);
Elliott Hughesa2501992011-08-26 19:39:54 -07002550 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002551 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2552 // errors will ensue.
2553 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2554 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002555}
2556
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002557JNIEnvExt::~JNIEnvExt() {
2558}
2559
Elliott Hughes88c5c352012-03-15 18:49:48 -07002560void JNIEnvExt::SetCheckJniEnabled(bool enabled) {
2561 check_jni = enabled;
2562 functions = enabled ? GetCheckJniNativeInterface() : &gJniNativeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002563}
2564
Elliott Hughes73e66f72012-05-09 09:34:45 -07002565void JNIEnvExt::DumpReferenceTables(std::ostream& os) {
2566 locals.Dump(os);
2567 monitors.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002568}
2569
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002570void JNIEnvExt::PushFrame(int /*capacity*/) {
2571 // TODO: take 'capacity' into account.
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002572 stacked_local_ref_cookies.push_back(local_ref_cookie);
2573 local_ref_cookie = locals.GetSegmentState();
2574}
2575
2576void JNIEnvExt::PopFrame() {
2577 locals.SetSegmentState(local_ref_cookie);
2578 local_ref_cookie = stacked_local_ref_cookies.back();
2579 stacked_local_ref_cookies.pop_back();
2580}
2581
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002582Offset JNIEnvExt::SegmentStateOffset() {
2583 return Offset(OFFSETOF_MEMBER(JNIEnvExt, locals) +
2584 IndirectReferenceTable::SegmentStateOffset().Int32Value());
2585}
2586
Carl Shapiroea4dca82011-08-01 13:45:38 -07002587// JNI Invocation interface.
2588
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002589extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, void** p_env, void* vm_args) {
2590 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
Elliott Hughes83a25322013-03-14 11:18:53 -07002591 if (IsBadJniVersion(args->version)) {
2592 LOG(ERROR) << "Bad JNI version passed to CreateJavaVM: " << args->version;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002593 return JNI_EVERSION;
2594 }
2595 Runtime::Options options;
2596 for (int i = 0; i < args->nOptions; ++i) {
2597 JavaVMOption* option = &args->options[i];
Elliott Hughesf1a5adc2012-02-10 18:09:35 -08002598 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002599 }
2600 bool ignore_unrecognized = args->ignoreUnrecognized;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002601 if (!Runtime::Create(options, ignore_unrecognized)) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002602 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002603 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002604 Runtime* runtime = Runtime::Current();
Brian Carlstrombd86bcc2013-03-10 20:26:16 -07002605 bool started = runtime->Start();
2606 if (!started) {
2607 delete Thread::Current()->GetJniEnv();
2608 delete runtime->GetJavaVM();
2609 LOG(WARNING) << "CreateJavaVM failed";
2610 return JNI_ERR;
2611 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002612 *p_env = Thread::Current()->GetJniEnv();
2613 *p_vm = runtime->GetJavaVM();
2614 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002615}
2616
Elliott Hughesf2682d52011-08-15 16:37:04 -07002617extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002618 Runtime* runtime = Runtime::Current();
2619 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002620 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002621 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002622 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002623 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002624 }
2625 return JNI_OK;
2626}
2627
2628// Historically unsupported.
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002629extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* /*vm_args*/) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002630 return JNI_ERR;
2631}
2632
Elliott Hughescdf53122011-08-19 15:46:09 -07002633class JII {
2634 public:
2635 static jint DestroyJavaVM(JavaVM* vm) {
2636 if (vm == NULL) {
2637 return JNI_ERR;
Elliott Hughescdf53122011-08-19 15:46:09 -07002638 }
Elliott Hughes6a144332012-04-03 13:07:11 -07002639 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2640 delete raw_vm->runtime;
2641 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002642 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002643
Elliott Hughescdf53122011-08-19 15:46:09 -07002644 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002645 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002646 }
2647
2648 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002649 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002650 }
2651
2652 static jint DetachCurrentThread(JavaVM* vm) {
Brian Carlstrom4d571432012-05-16 00:21:41 -07002653 if (vm == NULL || Thread::Current() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002654 return JNI_ERR;
Elliott Hughescdf53122011-08-19 15:46:09 -07002655 }
Elliott Hughes6a144332012-04-03 13:07:11 -07002656 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2657 Runtime* runtime = raw_vm->runtime;
2658 runtime->DetachCurrentThread();
2659 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002660 }
2661
2662 static jint GetEnv(JavaVM* vm, void** env, jint version) {
Elliott Hughes83a25322013-03-14 11:18:53 -07002663 if (IsBadJniVersion(version)) {
2664 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version;
Elliott Hughescdf53122011-08-19 15:46:09 -07002665 return JNI_EVERSION;
2666 }
2667 if (vm == NULL || env == NULL) {
2668 return JNI_ERR;
2669 }
2670 Thread* thread = Thread::Current();
2671 if (thread == NULL) {
2672 *env = NULL;
2673 return JNI_EDETACHED;
2674 }
2675 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002676 return JNI_OK;
2677 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002678};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002679
Elliott Hughes88c5c352012-03-15 18:49:48 -07002680const JNIInvokeInterface gJniInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002681 NULL, // reserved0
2682 NULL, // reserved1
2683 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002684 JII::DestroyJavaVM,
2685 JII::AttachCurrentThread,
2686 JII::DetachCurrentThread,
2687 JII::GetEnv,
2688 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002689};
2690
Elliott Hughesa0957642011-09-02 14:27:33 -07002691JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002692 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002693 check_jni_abort_hook(NULL),
Elliott Hughesb264f082012-04-06 17:10:10 -07002694 check_jni_abort_hook_data(NULL),
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002695 check_jni(false),
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002696 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002697 trace(options->jni_trace_),
Elliott Hughesc2dc62d2012-01-17 20:06:12 -08002698 work_around_app_jni_bugs(false),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002699 pins_lock("JNI pin table lock"),
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002700 pin_table("pin table", kPinTableInitial, kPinTableMax),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002701 globals_lock("JNI global reference table lock"),
Elliott Hughesbb1e8f02011-10-18 14:14:25 -07002702 globals(gGlobalsInitial, gGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002703 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002704 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002705 libraries_lock("JNI shared libraries map lock", kLoadLibraryLock),
Elliott Hughes79082e32011-08-25 12:07:32 -07002706 libraries(new Libraries) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002707 functions = unchecked_functions = &gJniInvokeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002708 if (options->check_jni_) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002709 SetCheckJniEnabled(true);
Elliott Hughesa2501992011-08-26 19:39:54 -07002710 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07002711}
2712
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002713JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07002714 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07002715}
2716
Elliott Hughes88c5c352012-03-15 18:49:48 -07002717void JavaVMExt::SetCheckJniEnabled(bool enabled) {
2718 check_jni = enabled;
2719 functions = enabled ? GetCheckJniInvokeInterface() : &gJniInvokeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002720}
2721
Elliott Hughesae80b492012-04-24 10:43:17 -07002722void JavaVMExt::DumpForSigQuit(std::ostream& os) {
2723 os << "JNI: CheckJNI is " << (check_jni ? "on" : "off");
2724 if (force_copy) {
2725 os << " (with forcecopy)";
2726 }
2727 os << "; workarounds are " << (work_around_app_jni_bugs ? "on" : "off");
Ian Rogers50b35e22012-10-04 10:09:15 -07002728 Thread* self = Thread::Current();
Elliott Hughesae80b492012-04-24 10:43:17 -07002729 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002730 MutexLock mu(self, pins_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07002731 os << "; pins=" << pin_table.Size();
2732 }
2733 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002734 MutexLock mu(self, globals_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07002735 os << "; globals=" << globals.Capacity();
2736 }
2737 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002738 MutexLock mu(self, weak_globals_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07002739 if (weak_globals.Capacity() > 0) {
2740 os << " (plus " << weak_globals.Capacity() << " weak)";
2741 }
2742 }
2743 os << '\n';
2744
2745 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002746 MutexLock mu(self, libraries_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07002747 os << "Libraries: " << Dumpable<Libraries>(*libraries) << " (" << libraries->size() << ")\n";
2748 }
2749}
2750
Elliott Hughes73e66f72012-05-09 09:34:45 -07002751void JavaVMExt::DumpReferenceTables(std::ostream& os) {
Ian Rogers50b35e22012-10-04 10:09:15 -07002752 Thread* self = Thread::Current();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002753 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002754 MutexLock mu(self, globals_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07002755 globals.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002756 }
2757 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002758 MutexLock mu(self, weak_globals_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07002759 weak_globals.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002760 }
2761 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002762 MutexLock mu(self, pins_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07002763 pin_table.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002764 }
2765}
2766
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002767bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader,
2768 std::string& detail) {
Elliott Hughes75770752011-08-24 17:52:38 -07002769 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07002770
2771 // See if we've already loaded this library. If we have, and the class loader
2772 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07002773 // TODO: for better results we should canonicalize the pathname (or even compare
2774 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07002775 SharedLibrary* library;
Ian Rogers50b35e22012-10-04 10:09:15 -07002776 Thread* self = Thread::Current();
Elliott Hughes79082e32011-08-25 12:07:32 -07002777 {
2778 // TODO: move the locking (and more of this logic) into Libraries.
Ian Rogers50b35e22012-10-04 10:09:15 -07002779 MutexLock mu(self, libraries_lock);
Elliott Hughes79082e32011-08-25 12:07:32 -07002780 library = libraries->Get(path);
2781 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002782 if (library != NULL) {
2783 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07002784 // The library will be associated with class_loader. The JNI
2785 // spec says we can't load the same library into more than one
2786 // class loader.
2787 StringAppendF(&detail, "Shared library \"%s\" already opened by "
2788 "ClassLoader %p; can't open in ClassLoader %p",
2789 path.c_str(), library->GetClassLoader(), class_loader);
2790 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002791 return false;
2792 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002793 VLOG(jni) << "[Shared library \"" << path << "\" already loaded in "
2794 << "ClassLoader " << class_loader << "]";
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002795 if (!library->CheckOnLoadResult()) {
Elliott Hughes75770752011-08-24 17:52:38 -07002796 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
2797 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07002798 return false;
2799 }
2800 return true;
2801 }
2802
2803 // Open the shared library. Because we're using a full path, the system
2804 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
2805 // resolve this library's dependencies though.)
2806
2807 // Failures here are expected when java.library.path has several entries
2808 // and we have to hunt for the lib.
2809
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002810 // Below we dlopen but there is no paired dlclose, this would be necessary if we supported
2811 // class unloading. Libraries will only be unloaded when the reference count (incremented by
2812 // dlopen) becomes zero from dlclose.
2813
Elliott Hughescdf53122011-08-19 15:46:09 -07002814 // This can execute slowly for a large library on a busy system, so we
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002815 // want to switch from kRunnable while it executes. This allows the GC to ignore us.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002816 self->TransitionFromRunnableToSuspended(kWaitingForJniOnLoad);
2817 void* handle = dlopen(path.empty() ? NULL : path.c_str(), RTLD_LAZY);
2818 self->TransitionFromSuspendedToRunnable();
Elliott Hughescdf53122011-08-19 15:46:09 -07002819
Elliott Hughes84b2f142012-09-27 09:16:28 -07002820 VLOG(jni) << "[Call to dlopen(\"" << path << "\", RTLD_LAZY) returned " << handle << "]";
Elliott Hughescdf53122011-08-19 15:46:09 -07002821
2822 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07002823 detail = dlerror();
Elliott Hughes84b2f142012-09-27 09:16:28 -07002824 LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07002825 return false;
2826 }
2827
2828 // Create a new entry.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002829 // TODO: move the locking (and more of this logic) into Libraries.
2830 bool created_library = false;
Elliott Hughescdf53122011-08-19 15:46:09 -07002831 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002832 MutexLock mu(self, libraries_lock);
Elliott Hughes79082e32011-08-25 12:07:32 -07002833 library = libraries->Get(path);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002834 if (library == NULL) { // We won race to get libraries_lock
2835 library = new SharedLibrary(path, handle, class_loader);
2836 libraries->Put(path, library);
2837 created_library = true;
Elliott Hughescdf53122011-08-19 15:46:09 -07002838 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002839 }
2840 if (!created_library) {
2841 LOG(INFO) << "WOW: we lost a race to add shared library: "
2842 << "\"" << path << "\" ClassLoader=" << class_loader;
2843 return library->CheckOnLoadResult();
Elliott Hughescdf53122011-08-19 15:46:09 -07002844 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002845
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002846 VLOG(jni) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
Elliott Hughes79082e32011-08-25 12:07:32 -07002847
2848 bool result = true;
2849 void* sym = dlsym(handle, "JNI_OnLoad");
2850 if (sym == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002851 VLOG(jni) << "[No JNI_OnLoad found in \"" << path << "\"]";
Elliott Hughes79082e32011-08-25 12:07:32 -07002852 } else {
2853 // Call JNI_OnLoad. We have to override the current class
2854 // loader, which will always be "null" since the stuff at the
2855 // top of the stack is around Runtime.loadLibrary(). (See
2856 // the comments in the JNI FindClass function.)
2857 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
2858 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Ian Rogers365c1022012-06-22 15:05:28 -07002859 ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07002860 self->SetClassLoaderOverride(class_loader);
2861
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002862 int version = 0;
2863 {
Elliott Hughes34e06962012-04-09 13:55:55 -07002864 ScopedThreadStateChange tsc(self, kNative);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002865 VLOG(jni) << "[Calling JNI_OnLoad in \"" << path << "\"]";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07002866 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07002867 }
Elliott Hughes79082e32011-08-25 12:07:32 -07002868
Brian Carlstromaded5f72011-10-07 17:15:04 -07002869 self->SetClassLoaderOverride(old_class_loader);
Elliott Hughes79082e32011-08-25 12:07:32 -07002870
Elliott Hughes83a25322013-03-14 11:18:53 -07002871 if (IsBadJniVersion(version)) {
2872 LOG(ERROR) << "Bad JNI version returned from JNI_OnLoad in \"" << path << "\": " << version;
Elliott Hughes79082e32011-08-25 12:07:32 -07002873 // It's unwise to call dlclose() here, but we can mark it
2874 // as bad and ensure that future load attempts will fail.
2875 // We don't know how far JNI_OnLoad got, so there could
2876 // be some partially-initialized stuff accessible through
2877 // newly-registered native method calls. We could try to
2878 // unregister them, but that doesn't seem worthwhile.
2879 result = false;
2880 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002881 VLOG(jni) << "[Returned " << (result ? "successfully" : "failure")
2882 << " from JNI_OnLoad in \"" << path << "\"]";
Elliott Hughes79082e32011-08-25 12:07:32 -07002883 }
2884 }
2885
2886 library->SetResult(result);
2887 return result;
2888}
2889
Mathieu Chartier66f19252012-09-18 08:57:04 -07002890void* JavaVMExt::FindCodeForNativeMethod(AbstractMethod* m) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002891 CHECK(m->IsNative());
2892
2893 Class* c = m->GetDeclaringClass();
2894
2895 // If this is a static method, it could be called before the class
2896 // has been initialized.
2897 if (m->IsStatic()) {
Ian Rogers0045a292012-03-31 21:08:41 -07002898 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07002899 return NULL;
2900 }
2901 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07002902 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07002903 }
2904
Brian Carlstrom16192862011-09-12 17:50:06 -07002905 std::string detail;
2906 void* native_method;
Ian Rogers50b35e22012-10-04 10:09:15 -07002907 Thread* self = Thread::Current();
Brian Carlstrom16192862011-09-12 17:50:06 -07002908 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002909 MutexLock mu(self, libraries_lock);
Brian Carlstrom16192862011-09-12 17:50:06 -07002910 native_method = libraries->FindNativeMethod(m, detail);
2911 }
2912 // throwing can cause libraries_lock to be reacquired
2913 if (native_method == NULL) {
Ian Rogers50b35e22012-10-04 10:09:15 -07002914 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07002915 }
2916 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07002917}
2918
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002919void JavaVMExt::VisitRoots(RootVisitor* visitor, void* arg) {
Ian Rogers50b35e22012-10-04 10:09:15 -07002920 Thread* self = Thread::Current();
Elliott Hughes410c0c82011-09-01 17:58:25 -07002921 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002922 MutexLock mu(self, globals_lock);
Elliott Hughes410c0c82011-09-01 17:58:25 -07002923 globals.VisitRoots(visitor, arg);
2924 }
2925 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002926 MutexLock mu(self, pins_lock);
Elliott Hughes410c0c82011-09-01 17:58:25 -07002927 pin_table.VisitRoots(visitor, arg);
2928 }
2929 // The weak_globals table is visited by the GC itself (because it mutates the table).
2930}
2931
Elliott Hughesc8fece32013-01-02 11:27:23 -08002932void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
2933 size_t method_count) {
2934 ScopedLocalRef<jclass> c(env, env->FindClass(jni_class_name));
2935 if (c.get() == NULL) {
2936 LOG(FATAL) << "Couldn't find class: " << jni_class_name;
2937 }
2938 JNI::RegisterNativeMethods(env, c.get(), methods, method_count, false);
2939}
2940
Ian Rogersdf20fe02011-07-20 20:34:16 -07002941} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07002942
2943std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
2944 switch (rhs) {
2945 case JNIInvalidRefType:
2946 os << "JNIInvalidRefType";
2947 return os;
2948 case JNILocalRefType:
2949 os << "JNILocalRefType";
2950 return os;
2951 case JNIGlobalRefType:
2952 os << "JNIGlobalRefType";
2953 return os;
2954 case JNIWeakGlobalRefType:
2955 os << "JNIWeakGlobalRefType";
2956 return os;
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08002957 default:
Shih-wei Liao24782c62012-01-08 12:46:11 -08002958 LOG(FATAL) << "jobjectRefType[" << static_cast<int>(rhs) << "]";
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08002959 return os;
Elliott Hughesb465ab02011-08-24 11:21:21 -07002960 }
2961}