blob: 390a2fdad12c58e6dbaadd039aae45247fd8923e [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 Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/accounting/card_table-inl.h"
Jeff Hao3dd9f762013-07-08 13:09:25 -070032#include "interpreter/interpreter.h"
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070033#include "invoke_arg_array_builder.h"
Carl Shapiroea4dca82011-08-01 13:45:38 -070034#include "jni.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_field-inl.h"
36#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/class-inl.h"
38#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/object-inl.h"
40#include "mirror/object_array-inl.h"
41#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080042#include "object_utils.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070043#include "runtime.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070044#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045#include "scoped_thread_state_change.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "ScopedLocalRef.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070047#include "thread.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048#include "utf.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070049#include "UniquePtr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070050#include "well_known_classes.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070051
Brian Carlstromea46f952013-07-30 01:26:50 -070052using ::art::mirror::ArtField;
53using ::art::mirror::ArtMethod;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070054using ::art::mirror::Array;
55using ::art::mirror::BooleanArray;
56using ::art::mirror::ByteArray;
57using ::art::mirror::CharArray;
58using ::art::mirror::Class;
59using ::art::mirror::ClassLoader;
60using ::art::mirror::DoubleArray;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070061using ::art::mirror::FloatArray;
62using ::art::mirror::IntArray;
63using ::art::mirror::LongArray;
64using ::art::mirror::Object;
65using ::art::mirror::ObjectArray;
66using ::art::mirror::ShortArray;
67using ::art::mirror::String;
68using ::art::mirror::Throwable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069
Elliott Hughesbb1e8f02011-10-18 14:14:25 -070070namespace art {
71
Brian Carlstrom7934ac22013-07-26 10:54:15 -070072static const size_t kMonitorsInitial = 32; // Arbitrary.
73static const size_t kMonitorsMax = 4096; // Arbitrary sanity check.
Elliott Hughes2ced6a52011-10-16 18:44:48 -070074
Brian Carlstrom7934ac22013-07-26 10:54:15 -070075static const size_t kLocalsInitial = 64; // Arbitrary.
76static const size_t kLocalsMax = 512; // Arbitrary sanity check.
Elliott Hughes2ced6a52011-10-16 18:44:48 -070077
Brian Carlstrom7934ac22013-07-26 10:54:15 -070078static const size_t kPinTableInitial = 16; // Arbitrary.
79static const size_t kPinTableMax = 1024; // Arbitrary sanity check.
Elliott Hughes2ced6a52011-10-16 18:44:48 -070080
Brian Carlstrom7934ac22013-07-26 10:54:15 -070081static size_t gGlobalsInitial = 512; // Arbitrary.
82static size_t gGlobalsMax = 51200; // Arbitrary sanity check. (Must fit in 16 bits.)
Elliott Hughes2ced6a52011-10-16 18:44:48 -070083
Brian Carlstrom7934ac22013-07-26 10:54:15 -070084static const size_t kWeakGlobalsInitial = 16; // Arbitrary.
85static const size_t kWeakGlobalsMax = 51200; // Arbitrary sanity check. (Must fit in 16 bits.)
Ian Rogersdf20fe02011-07-20 20:34:16 -070086
Ian Rogers00f7d0e2012-07-19 15:28:27 -070087static jweak AddWeakGlobalReference(ScopedObjectAccess& soa, Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -070088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughescdf53122011-08-19 15:46:09 -070089 if (obj == NULL) {
90 return NULL;
91 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070092 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -070093 IndirectReferenceTable& weak_globals = vm->weak_globals;
Ian Rogers50b35e22012-10-04 10:09:15 -070094 MutexLock mu(soa.Self(), vm->weak_globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -070095 IndirectRef ref = weak_globals.Add(IRT_FIRST_SEGMENT, obj);
96 return reinterpret_cast<jweak>(ref);
97}
98
Jeff Hao19c5d372013-03-15 14:33:43 -070099static bool IsBadJniVersion(int version) {
100 // We don't support JNI_VERSION_1_1. These are the only other valid versions.
101 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6;
102}
103
Brian Carlstromea46f952013-07-30 01:26:50 -0700104static void CheckMethodArguments(ArtMethod* m, uint32_t* args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700105 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesb264f082012-04-06 17:10:10 -0700106 MethodHelper mh(m);
Ian Rogers50b35e22012-10-04 10:09:15 -0700107 const DexFile::TypeList* params = mh.GetParameterTypeList();
108 if (params == NULL) {
109 return; // No arguments so nothing to check.
110 }
Jeff Hao5d917302013-02-27 17:57:33 -0800111 uint32_t offset = 0;
Ian Rogers50b35e22012-10-04 10:09:15 -0700112 uint32_t num_params = params->Size();
Elliott Hughesb264f082012-04-06 17:10:10 -0700113 size_t error_count = 0;
Jeff Hao5d917302013-02-27 17:57:33 -0800114 if (!m->IsStatic()) {
115 offset = 1;
116 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700117 for (uint32_t i = 0; i < num_params; i++) {
118 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
119 Class* param_type = mh.GetClassFromTypeIdx(type_idx);
120 if (param_type == NULL) {
121 Thread* self = Thread::Current();
122 CHECK(self->IsExceptionPending());
123 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
124 << mh.GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 << self->GetException(NULL)->Dump();
Ian Rogers50b35e22012-10-04 10:09:15 -0700126 self->ClearException();
127 ++error_count;
128 } else if (!param_type->IsPrimitive()) {
129 // TODO: check primitives are in range.
Jeff Hao5d917302013-02-27 17:57:33 -0800130 Object* argument = reinterpret_cast<Object*>(args[i + offset]);
Ian Rogers50b35e22012-10-04 10:09:15 -0700131 if (argument != NULL && !argument->InstanceOf(param_type)) {
Elliott Hughesb264f082012-04-06 17:10:10 -0700132 LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
133 << PrettyTypeOf(argument) << " as argument " << (i + 1) << " to " << PrettyMethod(m);
134 ++error_count;
135 }
Jeff Hao5d917302013-02-27 17:57:33 -0800136 } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
137 offset++;
Elliott Hughesb264f082012-04-06 17:10:10 -0700138 }
139 }
140 if (error_count > 0) {
141 // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
142 // with an argument.
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700143 JniAbortF(NULL, "bad arguments passed to %s (see above for details)", PrettyMethod(m).c_str());
Elliott Hughesb264f082012-04-06 17:10:10 -0700144 }
145}
Elliott Hughesb264f082012-04-06 17:10:10 -0700146
Brian Carlstromea46f952013-07-30 01:26:50 -0700147void InvokeWithArgArray(const ScopedObjectAccess& soa, ArtMethod* method,
Jeff Hao6474d192013-03-26 14:08:09 -0700148 ArgArray* arg_array, JValue* result, char result_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700149 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Hao3dd9f762013-07-08 13:09:25 -0700150 uint32_t* args = arg_array->GetArray();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700151 if (UNLIKELY(soa.Env()->check_jni)) {
Jeff Hao3dd9f762013-07-08 13:09:25 -0700152 CheckMethodArguments(method, args);
Elliott Hughes4cacde82012-04-11 18:32:27 -0700153 }
Sebastien Hertz7d658cf2013-07-09 10:56:11 +0200154 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, result_type);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700155}
156
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700157static JValue InvokeWithVarArgs(const ScopedObjectAccess& soa, jobject obj,
158 jmethodID mid, va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700159 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700160 ArtMethod* method = soa.DecodeMethod(mid);
Jeff Hao7a549462013-03-18 19:04:24 -0700161 Object* receiver = method->IsStatic() ? NULL : soa.Decode<Object*>(obj);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700162 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800163 JValue result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700164 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800165 arg_array.BuildArgArray(soa, receiver, args);
Jeff Hao6474d192013-03-26 14:08:09 -0700166 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty()[0]);
167 return result;
Elliott Hughes72025e52011-08-23 17:50:30 -0700168}
169
Brian Carlstromea46f952013-07-30 01:26:50 -0700170static ArtMethod* FindVirtualMethod(Object* receiver, ArtMethod* method)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700171 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom30b94452011-08-25 21:35:26 -0700172 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
Elliott Hughes72025e52011-08-23 17:50:30 -0700173}
174
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700175static JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccess& soa,
176 jobject obj, jmethodID mid, jvalue* args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700178 Object* receiver = soa.Decode<Object*>(obj);
Brian Carlstromea46f952013-07-30 01:26:50 -0700179 ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700180 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800181 JValue result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700182 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800183 arg_array.BuildArgArray(soa, receiver, args);
Jeff Hao6474d192013-03-26 14:08:09 -0700184 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty()[0]);
185 return result;
Elliott Hughes72025e52011-08-23 17:50:30 -0700186}
187
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700188static JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccess& soa,
189 jobject obj, jmethodID mid, va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700190 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700191 Object* receiver = soa.Decode<Object*>(obj);
Brian Carlstromea46f952013-07-30 01:26:50 -0700192 ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700193 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800194 JValue 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);
Jeff Hao6474d192013-03-26 14:08:09 -0700197 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty()[0]);
198 return result;
Carl Shapiroea4dca82011-08-01 13:45:38 -0700199}
200
Elliott Hughes6b436852011-08-12 10:16:44 -0700201// Section 12.3.2 of the JNI spec describes JNI class descriptors. They're
202// separated with slashes but aren't wrapped with "L;" like regular descriptors
203// (i.e. "a/b/C" rather than "La/b/C;"). Arrays of reference types are an
204// exception; there the "L;" must be present ("[La/b/C;"). Historically we've
205// supported names with dots too (such as "a.b.C").
Ian Rogers0571d352011-11-03 19:51:38 -0700206static std::string NormalizeJniClassDescriptor(const char* name) {
Elliott Hughes6b436852011-08-12 10:16:44 -0700207 std::string result;
208 // Add the missing "L;" if necessary.
209 if (name[0] == '[') {
210 result = name;
211 } else {
212 result += 'L';
213 result += name;
214 result += ';';
215 }
216 // Rewrite '.' as '/' for backwards compatibility.
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700217 if (result.find('.') != std::string::npos) {
218 LOG(WARNING) << "Call to JNI FindClass with dots in name: "
219 << "\"" << name << "\"";
220 std::replace(result.begin(), result.end(), '.', '/');
Elliott Hughes6b436852011-08-12 10:16:44 -0700221 }
222 return result;
223}
224
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700225static void ThrowNoSuchMethodError(ScopedObjectAccess& soa, Class* c,
226 const char* name, const char* sig, const char* kind)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800228 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
229 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchMethodError;",
230 "no %s method \"%s.%s%s\"",
231 kind, ClassHelper(c).GetDescriptor(), name, sig);
Elliott Hughes14134a12011-09-30 16:55:51 -0700232}
233
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700234static jmethodID FindMethodID(ScopedObjectAccess& soa, jclass jni_class,
235 const char* name, const char* sig, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700237 Class* c = soa.Decode<Class*>(jni_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700238 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700239 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700240 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700241
Brian Carlstromea46f952013-07-30 01:26:50 -0700242 ArtMethod* method = NULL;
Elliott Hughescdf53122011-08-19 15:46:09 -0700243 if (is_static) {
244 method = c->FindDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700245 } else {
Elliott Hughescdf53122011-08-19 15:46:09 -0700246 method = c->FindVirtualMethod(name, sig);
247 if (method == NULL) {
248 // No virtual method matching the signature. Search declared
249 // private methods and constructors.
250 method = c->FindDeclaredDirectMethod(name, sig);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700251 }
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700252 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700253
Elliott Hughescdf53122011-08-19 15:46:09 -0700254 if (method == NULL || method->IsStatic() != is_static) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700255 ThrowNoSuchMethodError(soa, c, name, sig, is_static ? "static" : "non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -0700256 return NULL;
257 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700258
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700259 return soa.EncodeMethod(method);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700260}
261
Ian Rogersef28b142012-11-30 14:22:18 -0800262static ClassLoader* GetClassLoader(const ScopedObjectAccess& soa)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700263 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700264 ArtMethod* method = soa.Self()->GetCurrentMethod(NULL);
Ian Rogersef28b142012-11-30 14:22:18 -0800265 if (method == NULL ||
266 method == soa.DecodeMethod(WellKnownClasses::java_lang_Runtime_nativeLoad)) {
267 return soa.Self()->GetClassLoaderOverride();
Brian Carlstrom00fae582011-10-28 01:16:28 -0700268 }
269 return method->GetDeclaringClass()->GetClassLoader();
270}
271
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700272static jfieldID FindFieldID(const ScopedObjectAccess& soa, jclass jni_class, const char* name,
273 const char* sig, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700274 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700275 Class* c = soa.Decode<Class*>(jni_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700276 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700277 return NULL;
Carl Shapiro83ab4f32011-08-15 20:21:39 -0700278 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700279
Brian Carlstromea46f952013-07-30 01:26:50 -0700280 ArtField* field = NULL;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700281 Class* field_type;
282 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
283 if (sig[1] != '\0') {
Ian Rogersef28b142012-11-30 14:22:18 -0800284 ClassLoader* cl = GetClassLoader(soa);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285 field_type = class_linker->FindClass(sig, cl);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700286 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287 field_type = class_linker->FindPrimitiveClass(*sig);
Carl Shapiro9b9ba282011-08-14 15:30:39 -0700288 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289 if (field_type == NULL) {
290 // Failed to find type from the signature of the field.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700291 DCHECK(soa.Self()->IsExceptionPending());
Ian Rogers62d6c772013-02-27 08:32:07 -0800292 ThrowLocation throw_location;
Brian Carlstromea46f952013-07-30 01:26:50 -0700293 SirtRef<Throwable> cause(soa.Self(), soa.Self()->GetException(&throw_location));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700294 soa.Self()->ClearException();
Ian Rogers62d6c772013-02-27 08:32:07 -0800295 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchFieldError;",
296 "no type \"%s\" found and so no field \"%s\" could be found in class "
297 "\"%s\" or its superclasses", sig, name,
298 ClassHelper(c).GetDescriptor());
299 soa.Self()->GetException(NULL)->SetCause(cause.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300 return NULL;
301 }
302 if (is_static) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800303 field = c->FindStaticField(name, ClassHelper(field_type).GetDescriptor());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800305 field = c->FindInstanceField(name, ClassHelper(field_type).GetDescriptor());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700306 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700307 if (field == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
309 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchFieldError;",
310 "no \"%s\" field \"%s\" in class \"%s\" or its superclasses",
311 sig, name, ClassHelper(c).GetDescriptor());
Elliott Hughes8a26c5c2011-08-15 18:35:43 -0700312 return NULL;
313 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314 return soa.EncodeField(field);
Carl Shapiroea4dca82011-08-01 13:45:38 -0700315}
316
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317static void PinPrimitiveArray(const ScopedObjectAccess& soa, const Array* array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700318 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319 JavaVMExt* vm = soa.Vm();
Ian Rogers50b35e22012-10-04 10:09:15 -0700320 MutexLock mu(soa.Self(), vm->pins_lock);
Elliott Hughes75770752011-08-24 17:52:38 -0700321 vm->pin_table.Add(array);
322}
323
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700324static void UnpinPrimitiveArray(const ScopedObjectAccess& soa, const Array* array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700325 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700326 JavaVMExt* vm = soa.Vm();
Ian Rogers50b35e22012-10-04 10:09:15 -0700327 MutexLock mu(soa.Self(), vm->pins_lock);
Elliott Hughes75770752011-08-24 17:52:38 -0700328 vm->pin_table.Remove(array);
329}
330
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700331static void ThrowAIOOBE(ScopedObjectAccess& soa, Array* array, jsize start,
332 jsize length, const char* identifier)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700334 std::string type(PrettyTypeOf(array));
Ian Rogers62d6c772013-02-27 08:32:07 -0800335 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
336 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
337 "%s offset=%d length=%d %s.length=%d",
338 type.c_str(), start, length, identifier, array->GetLength());
Elliott Hughes814e4032011-08-23 12:07:56 -0700339}
Ian Rogers0571d352011-11-03 19:51:38 -0700340
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700341static void ThrowSIOOBE(ScopedObjectAccess& soa, jsize start, jsize length,
342 jsize array_length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800344 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
345 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/StringIndexOutOfBoundsException;",
346 "offset=%d length=%d string.length()=%d", start, length,
347 array_length);
Elliott Hughesb465ab02011-08-24 11:21:21 -0700348}
Elliott Hughes814e4032011-08-23 12:07:56 -0700349
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700350int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700351 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700352 // Turn the const char* into a java.lang.String.
353 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
354 if (msg != NULL && s.get() == NULL) {
355 return JNI_ERR;
Elliott Hughes814e4032011-08-23 12:07:56 -0700356 }
Elliott Hughes814e4032011-08-23 12:07:56 -0700357
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700358 // Choose an appropriate constructor and set up the arguments.
359 jvalue args[2];
360 const char* signature;
361 if (msg == NULL && cause == NULL) {
362 signature = "()V";
363 } else if (msg != NULL && cause == NULL) {
364 signature = "(Ljava/lang/String;)V";
365 args[0].l = s.get();
366 } else if (msg == NULL && cause != NULL) {
367 signature = "(Ljava/lang/Throwable;)V";
368 args[0].l = cause;
Elliott Hughes814e4032011-08-23 12:07:56 -0700369 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700370 signature = "(Ljava/lang/String;Ljava/lang/Throwable;)V";
371 args[0].l = s.get();
372 args[1].l = cause;
Elliott Hughes814e4032011-08-23 12:07:56 -0700373 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
375 if (mid == NULL) {
Ian Rogersef28b142012-11-30 14:22:18 -0800376 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377 LOG(ERROR) << "No <init>" << signature << " in "
378 << PrettyClass(soa.Decode<Class*>(exception_class));
379 return JNI_ERR;
380 }
Elliott Hughes814e4032011-08-23 12:07:56 -0700381
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 ScopedLocalRef<jthrowable> exception(env, reinterpret_cast<jthrowable>(env->NewObjectA(exception_class, mid, args)));
383 if (exception.get() == NULL) {
384 return JNI_ERR;
385 }
Ian Rogersef28b142012-11-30 14:22:18 -0800386 ScopedObjectAccess soa(env);
Ian Rogers62d6c772013-02-27 08:32:07 -0800387 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
388 soa.Self()->SetException(throw_location, soa.Decode<Throwable*>(exception.get()));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700389 return JNI_OK;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700390}
391
Elliott Hughes462c9442012-03-23 18:47:50 -0700392static jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) {
Elliott Hughes75770752011-08-24 17:52:38 -0700393 if (vm == NULL || p_env == NULL) {
394 return JNI_ERR;
395 }
396
Elliott Hughes462c9442012-03-23 18:47:50 -0700397 // Return immediately if we're already attached.
Elliott Hughescac6cc72011-11-03 20:31:21 -0700398 Thread* self = Thread::Current();
399 if (self != NULL) {
400 *p_env = self->GetJniEnv();
401 return JNI_OK;
402 }
403
404 Runtime* runtime = reinterpret_cast<JavaVMExt*>(vm)->runtime;
405
406 // No threads allowed in zygote mode.
407 if (runtime->IsZygote()) {
408 LOG(ERROR) << "Attempt to attach a thread in the zygote";
409 return JNI_ERR;
410 }
411
Elliott Hughes462c9442012-03-23 18:47:50 -0700412 JavaVMAttachArgs* args = static_cast<JavaVMAttachArgs*>(raw_args);
413 const char* thread_name = NULL;
Ian Rogers365c1022012-06-22 15:05:28 -0700414 jobject thread_group = NULL;
Elliott Hughes462c9442012-03-23 18:47:50 -0700415 if (args != NULL) {
Elliott Hughes83a25322013-03-14 11:18:53 -0700416 if (IsBadJniVersion(args->version)) {
417 LOG(ERROR) << "Bad JNI version passed to "
418 << (as_daemon ? "AttachCurrentThreadAsDaemon" : "AttachCurrentThread") << ": "
419 << args->version;
420 return JNI_EVERSION;
Brian Carlstrom86922152013-03-12 00:59:36 -0700421 }
Elliott Hughes462c9442012-03-23 18:47:50 -0700422 thread_name = args->name;
Ian Rogers365c1022012-06-22 15:05:28 -0700423 thread_group = args->group;
Elliott Hughes75770752011-08-24 17:52:38 -0700424 }
Elliott Hughes75770752011-08-24 17:52:38 -0700425
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800426 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group, !runtime->IsCompiler())) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700427 *p_env = NULL;
428 return JNI_ERR;
429 } else {
430 *p_env = Thread::Current()->GetJniEnv();
431 return JNI_OK;
432 }
Elliott Hughes75770752011-08-24 17:52:38 -0700433}
434
Elliott Hughes79082e32011-08-25 12:07:32 -0700435class SharedLibrary {
436 public:
437 SharedLibrary(const std::string& path, void* handle, Object* class_loader)
438 : path_(path),
439 handle_(handle),
Shih-wei Liao31384c52011-09-06 15:27:45 -0700440 class_loader_(class_loader),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700441 jni_on_load_lock_("JNI_OnLoad lock"),
Ian Rogersc604d732012-10-14 16:09:54 -0700442 jni_on_load_cond_("JNI_OnLoad condition variable", jni_on_load_lock_),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700443 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()),
Elliott Hughes79082e32011-08-25 12:07:32 -0700444 jni_on_load_result_(kPending) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700445 }
446
Elliott Hughes79082e32011-08-25 12:07:32 -0700447 Object* GetClassLoader() {
448 return class_loader_;
449 }
450
451 std::string GetPath() {
452 return path_;
453 }
454
455 /*
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700456 * Check the result of an earlier call to JNI_OnLoad on this library.
457 * If the call has not yet finished in another thread, wait for it.
Elliott Hughes79082e32011-08-25 12:07:32 -0700458 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459 bool CheckOnLoadResult()
460 LOCKS_EXCLUDED(jni_on_load_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700461 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700462 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700463 self->TransitionFromRunnableToSuspended(kWaitingForJniOnLoad);
464 bool okay;
465 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700466 MutexLock mu(self, jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700467
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700468 if (jni_on_load_thread_id_ == self->GetThinLockId()) {
469 // Check this so we don't end up waiting for ourselves. We need to return "true" so the
470 // caller can continue.
471 LOG(INFO) << *self << " recursive attempt to load library " << "\"" << path_ << "\"";
472 okay = true;
473 } else {
474 while (jni_on_load_result_ == kPending) {
475 VLOG(jni) << "[" << *self << " waiting for \"" << path_ << "\" " << "JNI_OnLoad...]";
Ian Rogersc604d732012-10-14 16:09:54 -0700476 jni_on_load_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700477 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700478
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700479 okay = (jni_on_load_result_ == kOkay);
480 VLOG(jni) << "[Earlier JNI_OnLoad for \"" << path_ << "\" "
481 << (okay ? "succeeded" : "failed") << "]";
482 }
483 }
484 self->TransitionFromSuspendedToRunnable();
Elliott Hughes79082e32011-08-25 12:07:32 -0700485 return okay;
486 }
487
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700488 void SetResult(bool result) LOCKS_EXCLUDED(jni_on_load_lock_) {
Ian Rogersc604d732012-10-14 16:09:54 -0700489 Thread* self = Thread::Current();
490 MutexLock mu(self, jni_on_load_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700491
Elliott Hughes79082e32011-08-25 12:07:32 -0700492 jni_on_load_result_ = result ? kOkay : kFailed;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700493 jni_on_load_thread_id_ = 0;
Elliott Hughes79082e32011-08-25 12:07:32 -0700494
495 // Broadcast a wakeup to anybody sleeping on the condition variable.
Ian Rogersc604d732012-10-14 16:09:54 -0700496 jni_on_load_cond_.Broadcast(self);
Elliott Hughes79082e32011-08-25 12:07:32 -0700497 }
498
499 void* FindSymbol(const std::string& symbol_name) {
500 return dlsym(handle_, symbol_name.c_str());
501 }
502
503 private:
504 enum JNI_OnLoadState {
505 kPending,
506 kFailed,
507 kOkay,
508 };
509
510 // Path to library "/system/lib/libjni.so".
511 std::string path_;
512
513 // The void* returned by dlopen(3).
514 void* handle_;
515
516 // The ClassLoader this library is associated with.
517 Object* class_loader_;
518
519 // Guards remaining items.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520 Mutex jni_on_load_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Elliott Hughes79082e32011-08-25 12:07:32 -0700521 // Wait for JNI_OnLoad in other thread.
Ian Rogersc604d732012-10-14 16:09:54 -0700522 ConditionVariable jni_on_load_cond_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700523 // Recursive invocation guard.
Elliott Hughesf8349362012-06-18 15:00:06 -0700524 uint32_t jni_on_load_thread_id_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700525 // Result of earlier JNI_OnLoad call.
Elliott Hughesf8349362012-06-18 15:00:06 -0700526 JNI_OnLoadState jni_on_load_result_ GUARDED_BY(jni_on_load_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700527};
528
Elliott Hughes79082e32011-08-25 12:07:32 -0700529// This exists mainly to keep implementation details out of the header file.
530class Libraries {
531 public:
532 Libraries() {
533 }
534
535 ~Libraries() {
Elliott Hughesc31664f2011-09-29 15:58:28 -0700536 STLDeleteValues(&libraries_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700537 }
538
Elliott Hughesae80b492012-04-24 10:43:17 -0700539 void Dump(std::ostream& os) const {
540 bool first = true;
541 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
542 if (!first) {
543 os << ' ';
544 }
545 first = false;
546 os << it->first;
547 }
548 }
549
550 size_t size() const {
551 return libraries_.size();
552 }
553
Elliott Hughes79082e32011-08-25 12:07:32 -0700554 SharedLibrary* Get(const std::string& path) {
Ian Rogers712462a2012-04-12 16:32:29 -0700555 It it = libraries_.find(path);
556 return (it == libraries_.end()) ? NULL : it->second;
Elliott Hughes79082e32011-08-25 12:07:32 -0700557 }
558
559 void Put(const std::string& path, SharedLibrary* library) {
Elliott Hughesa0e18062012-04-13 15:59:59 -0700560 libraries_.Put(path, library);
Elliott Hughes79082e32011-08-25 12:07:32 -0700561 }
562
563 // See section 11.3 "Linking Native Methods" of the JNI spec.
Brian Carlstromea46f952013-07-30 01:26:50 -0700564 void* FindNativeMethod(const ArtMethod* m, std::string& detail)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700565 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700566 std::string jni_short_name(JniShortName(m));
567 std::string jni_long_name(JniLongName(m));
Elliott Hughes4b093bf2011-08-25 13:34:29 -0700568 const ClassLoader* declaring_class_loader = m->GetDeclaringClass()->GetClassLoader();
Elliott Hughes79082e32011-08-25 12:07:32 -0700569 for (It it = libraries_.begin(); it != libraries_.end(); ++it) {
570 SharedLibrary* library = it->second;
571 if (library->GetClassLoader() != declaring_class_loader) {
572 // We only search libraries loaded by the appropriate ClassLoader.
573 continue;
574 }
575 // Try the short name then the long name...
576 void* fn = library->FindSymbol(jni_short_name);
577 if (fn == NULL) {
578 fn = library->FindSymbol(jni_long_name);
579 }
580 if (fn != NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800581 VLOG(jni) << "[Found native code for " << PrettyMethod(m)
582 << " in \"" << library->GetPath() << "\"]";
Elliott Hughes79082e32011-08-25 12:07:32 -0700583 return fn;
584 }
585 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700586 detail += "No implementation found for ";
Elliott Hughesa2501992011-08-26 19:39:54 -0700587 detail += PrettyMethod(m);
Brian Carlstrom92827a52011-10-10 15:50:01 -0700588 detail += " (tried " + jni_short_name + " and " + jni_long_name + ")";
Elliott Hughes79082e32011-08-25 12:07:32 -0700589 LOG(ERROR) << detail;
Elliott Hughes79082e32011-08-25 12:07:32 -0700590 return NULL;
591 }
592
593 private:
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700594 typedef SafeMap<std::string, SharedLibrary*>::const_iterator It; // TODO: C++0x auto
Elliott Hughes79082e32011-08-25 12:07:32 -0700595
Elliott Hughesa0e18062012-04-13 15:59:59 -0700596 SafeMap<std::string, SharedLibrary*> libraries_;
Elliott Hughes79082e32011-08-25 12:07:32 -0700597};
598
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700599JValue InvokeWithJValues(const ScopedObjectAccess& soa, jobject obj, jmethodID mid,
600 jvalue* args) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700601 ArtMethod* method = soa.DecodeMethod(mid);
Jeff Hao7a549462013-03-18 19:04:24 -0700602 Object* receiver = method->IsStatic() ? NULL : soa.Decode<Object*>(obj);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700603 MethodHelper mh(method);
Jeff Hao5d917302013-02-27 17:57:33 -0800604 JValue result;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700605 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Jeff Hao5d917302013-02-27 17:57:33 -0800606 arg_array.BuildArgArray(soa, receiver, args);
Jeff Hao6474d192013-03-26 14:08:09 -0700607 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty()[0]);
608 return result;
Elliott Hughesd07986f2011-12-06 18:27:45 -0800609}
610
Ian Rogersbc939662013-08-15 10:26:54 -0700611#define CHECK_NON_NULL_ARGUMENT(fn, value) \
612 if (UNLIKELY(value == NULL)) { \
613 JniAbortF(#fn, #value " == null"); \
614 }
615
Elliott Hughescdf53122011-08-19 15:46:09 -0700616class JNI {
617 public:
Ian Rogers25e8b912012-09-07 11:31:36 -0700618 static jint GetVersion(JNIEnv*) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700619 return JNI_VERSION_1_6;
620 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700621
Ian Rogers25e8b912012-09-07 11:31:36 -0700622 static jclass DefineClass(JNIEnv*, const char*, jobject, const jbyte*, jsize) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700623 LOG(WARNING) << "JNI DefineClass is not supported";
Elliott Hughesf2682d52011-08-15 16:37:04 -0700624 return NULL;
625 }
626
Elliott Hughescdf53122011-08-19 15:46:09 -0700627 static jclass FindClass(JNIEnv* env, const char* name) {
Ian Rogersbc939662013-08-15 10:26:54 -0700628 CHECK_NON_NULL_ARGUMENT(FindClass, name);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700629 Runtime* runtime = Runtime::Current();
630 ClassLinker* class_linker = runtime->GetClassLinker();
Elliott Hughescdf53122011-08-19 15:46:09 -0700631 std::string descriptor(NormalizeJniClassDescriptor(name));
Brian Carlstromea46f952013-07-30 01:26:50 -0700632 ScopedObjectAccess soa(env);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700633 Class* c = NULL;
634 if (runtime->IsStarted()) {
Ian Rogersef28b142012-11-30 14:22:18 -0800635 ClassLoader* cl = GetClassLoader(soa);
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800636 c = class_linker->FindClass(descriptor.c_str(), cl);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700637 } else {
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800638 c = class_linker->FindSystemClass(descriptor.c_str());
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700639 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700640 return soa.AddLocalReference<jclass>(c);
Ian Rogers4dd71f12011-08-16 14:16:02 -0700641 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700642
Elliott Hughescdf53122011-08-19 15:46:09 -0700643 static jmethodID FromReflectedMethod(JNIEnv* env, jobject java_method) {
Ian Rogersbc939662013-08-15 10:26:54 -0700644 CHECK_NON_NULL_ARGUMENT(FromReflectedMethod, java_method);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700645 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -0700646 jobject art_method = env->GetObjectField(java_method,
647 WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod);
648 ArtMethod* method = soa.Decode<ArtMethod*>(art_method);
649 DCHECK(method != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700650 return soa.EncodeMethod(method);
Elliott Hughesf2682d52011-08-15 16:37:04 -0700651 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700652
Elliott Hughescdf53122011-08-19 15:46:09 -0700653 static jfieldID FromReflectedField(JNIEnv* env, jobject java_field) {
Ian Rogersbc939662013-08-15 10:26:54 -0700654 CHECK_NON_NULL_ARGUMENT(FromReflectedField, java_field);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -0700656 jobject art_field = env->GetObjectField(java_field,
657 WellKnownClasses::java_lang_reflect_Field_artField);
658 ArtField* field = soa.Decode<ArtField*>(art_field);
659 DCHECK(field != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 return soa.EncodeField(field);
Elliott Hughescdf53122011-08-19 15:46:09 -0700661 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700662
Elliott Hughescdf53122011-08-19 15:46:09 -0700663 static jobject ToReflectedMethod(JNIEnv* env, jclass, jmethodID mid, jboolean) {
Ian Rogersbc939662013-08-15 10:26:54 -0700664 CHECK_NON_NULL_ARGUMENT(ToReflectedMethod, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700665 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -0700666 ArtMethod* m = soa.DecodeMethod(mid);
667 jobject art_method = soa.AddLocalReference<jobject>(m);
668 jobject reflect_method = env->AllocObject(WellKnownClasses::java_lang_reflect_Method);
669 if (env->ExceptionCheck()) {
670 return NULL;
671 }
672 SetObjectField(env,
673 reflect_method,
674 WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod,
675 art_method);
676 return reflect_method;
Elliott Hughescdf53122011-08-19 15:46:09 -0700677 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700678
Elliott Hughescdf53122011-08-19 15:46:09 -0700679 static jobject ToReflectedField(JNIEnv* env, jclass, jfieldID fid, jboolean) {
Ian Rogersbc939662013-08-15 10:26:54 -0700680 CHECK_NON_NULL_ARGUMENT(ToReflectedField, fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700681 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -0700682 ArtField* f = soa.DecodeField(fid);
683 jobject art_field = soa.AddLocalReference<jobject>(f);
684 jobject reflect_field = env->AllocObject(WellKnownClasses::java_lang_reflect_Field);
685 if (env->ExceptionCheck()) {
686 return NULL;
687 }
688 SetObjectField(env,
689 reflect_field,
690 WellKnownClasses::java_lang_reflect_Field_artField,
691 art_field);
692 return reflect_field;
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 jclass GetObjectClass(JNIEnv* env, jobject java_object) {
Ian Rogersbc939662013-08-15 10:26:54 -0700696 CHECK_NON_NULL_ARGUMENT(GetObjectClass, java_object);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697 ScopedObjectAccess soa(env);
698 Object* o = soa.Decode<Object*>(java_object);
699 return soa.AddLocalReference<jclass>(o->GetClass());
Elliott Hughes37f7a402011-08-22 18:56:01 -0700700 }
701
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700702 static jclass GetSuperclass(JNIEnv* env, jclass java_class) {
Ian Rogersbc939662013-08-15 10:26:54 -0700703 CHECK_NON_NULL_ARGUMENT(GetSuperclass, java_class);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700704 ScopedObjectAccess soa(env);
705 Class* c = soa.Decode<Class*>(java_class);
706 return soa.AddLocalReference<jclass>(c->GetSuperClass());
Elliott Hughescdf53122011-08-19 15:46:09 -0700707 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700708
Elliott Hughes37f7a402011-08-22 18:56:01 -0700709 static jboolean IsAssignableFrom(JNIEnv* env, jclass java_class1, jclass java_class2) {
Ian Rogersbc939662013-08-15 10:26:54 -0700710 CHECK_NON_NULL_ARGUMENT(IsAssignableFrom, java_class1);
711 CHECK_NON_NULL_ARGUMENT(IsAssignableFrom, java_class2);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700712 ScopedObjectAccess soa(env);
713 Class* c1 = soa.Decode<Class*>(java_class1);
714 Class* c2 = soa.Decode<Class*>(java_class2);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700715 return c1->IsAssignableFrom(c2) ? JNI_TRUE : JNI_FALSE;
Elliott Hughescdf53122011-08-19 15:46:09 -0700716 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700717
Elliott Hughese84278b2012-03-22 10:06:53 -0700718 static jboolean IsInstanceOf(JNIEnv* env, jobject jobj, jclass java_class) {
Ian Rogersbc939662013-08-15 10:26:54 -0700719 CHECK_NON_NULL_ARGUMENT(IsInstanceOf, java_class);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700720 if (jobj == NULL) {
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700721 // Note: JNI is different from regular Java instanceof in this respect
Elliott Hughes37f7a402011-08-22 18:56:01 -0700722 return JNI_TRUE;
723 } else {
Brian Carlstromea46f952013-07-30 01:26:50 -0700724 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700725 Object* obj = soa.Decode<Object*>(jobj);
726 Class* c = soa.Decode<Class*>(java_class);
Elliott Hughese84278b2012-03-22 10:06:53 -0700727 return obj->InstanceOf(c) ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700728 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700729 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700730
Elliott Hughes37f7a402011-08-22 18:56:01 -0700731 static jint Throw(JNIEnv* env, jthrowable java_exception) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700732 ScopedObjectAccess soa(env);
733 Throwable* exception = soa.Decode<Throwable*>(java_exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700734 if (exception == NULL) {
735 return JNI_ERR;
736 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800737 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
738 soa.Self()->SetException(throw_location, exception);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700739 return JNI_OK;
740 }
741
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700742 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) {
Ian Rogersbc939662013-08-15 10:26:54 -0700743 CHECK_NON_NULL_ARGUMENT(ThrowNew, c);
Elliott Hughesa4f94742012-05-29 16:28:38 -0700744 return ThrowNewException(env, c, msg, NULL);
Elliott Hughes37f7a402011-08-22 18:56:01 -0700745 }
746
747 static jboolean ExceptionCheck(JNIEnv* env) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700748 return static_cast<JNIEnvExt*>(env)->self->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
Elliott Hughes37f7a402011-08-22 18:56:01 -0700749 }
750
751 static void ExceptionClear(JNIEnv* env) {
Ian Rogers120f1c72012-09-28 17:17:10 -0700752 static_cast<JNIEnvExt*>(env)->self->ClearException();
Elliott Hughes37f7a402011-08-22 18:56:01 -0700753 }
754
755 static void ExceptionDescribe(JNIEnv* env) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700756 ScopedObjectAccess soa(env);
Elliott Hughes72025e52011-08-23 17:50:30 -0700757
Brian Carlstromea46f952013-07-30 01:26:50 -0700758 SirtRef<Object> old_throw_this_object(soa.Self(), NULL);
759 SirtRef<ArtMethod> old_throw_method(soa.Self(), NULL);
760 SirtRef<Throwable> old_exception(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -0800761 uint32_t old_throw_dex_pc;
762 {
763 ThrowLocation old_throw_location;
Brian Carlstromea46f952013-07-30 01:26:50 -0700764 Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Ian Rogers62d6c772013-02-27 08:32:07 -0800765 old_throw_this_object.reset(old_throw_location.GetThis());
766 old_throw_method.reset(old_throw_location.GetMethod());
767 old_exception.reset(old_exception_obj);
768 old_throw_dex_pc = old_throw_location.GetDexPc();
769 soa.Self()->ClearException();
770 }
771 ScopedLocalRef<jthrowable> exception(env, soa.AddLocalReference<jthrowable>(old_exception.get()));
Elliott Hughes72025e52011-08-23 17:50:30 -0700772 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
773 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
774 if (mid == NULL) {
775 LOG(WARNING) << "JNI WARNING: no printStackTrace()V in "
Ian Rogers62d6c772013-02-27 08:32:07 -0800776 << PrettyTypeOf(old_exception.get());
Elliott Hughes72025e52011-08-23 17:50:30 -0700777 } else {
778 env->CallVoidMethod(exception.get(), mid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800779 if (soa.Self()->IsExceptionPending()) {
780 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(soa.Self()->GetException(NULL))
Elliott Hughes72025e52011-08-23 17:50:30 -0700781 << " thrown while calling printStackTrace";
Ian Rogers62d6c772013-02-27 08:32:07 -0800782 soa.Self()->ClearException();
Elliott Hughes72025e52011-08-23 17:50:30 -0700783 }
784 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800785 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
786 old_throw_dex_pc);
Elliott Hughes72025e52011-08-23 17:50:30 -0700787
Ian Rogers62d6c772013-02-27 08:32:07 -0800788 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughescdf53122011-08-19 15:46:09 -0700789 }
Carl Shapiroea4dca82011-08-01 13:45:38 -0700790
Elliott Hughescdf53122011-08-19 15:46:09 -0700791 static jthrowable ExceptionOccurred(JNIEnv* env) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700792 ScopedObjectAccess soa(env);
Ian Rogers62d6c772013-02-27 08:32:07 -0800793 Object* exception = soa.Self()->GetException(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700794 return soa.AddLocalReference<jthrowable>(exception);
Elliott Hughescdf53122011-08-19 15:46:09 -0700795 }
796
Ian Rogers25e8b912012-09-07 11:31:36 -0700797 static void FatalError(JNIEnv*, const char* msg) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700798 LOG(FATAL) << "JNI FatalError called: " << msg;
799 }
800
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700801 static jint PushLocalFrame(JNIEnv* env, jint capacity) {
Ian Rogersef28b142012-11-30 14:22:18 -0800802 if (EnsureLocalCapacity(env, capacity, "PushLocalFrame") != JNI_OK) {
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700803 return JNI_ERR;
804 }
Ian Rogersef28b142012-11-30 14:22:18 -0800805 static_cast<JNIEnvExt*>(env)->PushFrame(capacity);
Elliott Hughescdf53122011-08-19 15:46:09 -0700806 return JNI_OK;
807 }
808
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700809 static jobject PopLocalFrame(JNIEnv* env, jobject java_survivor) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700810 ScopedObjectAccess soa(env);
811 Object* survivor = soa.Decode<Object*>(java_survivor);
812 soa.Env()->PopFrame();
813 return soa.AddLocalReference<jobject>(survivor);
Elliott Hughescdf53122011-08-19 15:46:09 -0700814 }
815
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700816 static jint EnsureLocalCapacity(JNIEnv* env, jint desired_capacity) {
Ian Rogersef28b142012-11-30 14:22:18 -0800817 return EnsureLocalCapacity(env, desired_capacity, "EnsureLocalCapacity");
Elliott Hughes72025e52011-08-23 17:50:30 -0700818 }
819
Elliott Hughescdf53122011-08-19 15:46:09 -0700820 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700821 if (obj == NULL) {
822 return NULL;
823 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700824 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700825 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700826 IndirectReferenceTable& globals = vm->globals;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700827 Object* decoded_obj = soa.Decode<Object*>(obj);
Ian Rogers50b35e22012-10-04 10:09:15 -0700828 MutexLock mu(soa.Self(), vm->globals_lock);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700829 IndirectRef ref = globals.Add(IRT_FIRST_SEGMENT, decoded_obj);
Elliott Hughescdf53122011-08-19 15:46:09 -0700830 return reinterpret_cast<jobject>(ref);
831 }
832
833 static void DeleteGlobalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700834 if (obj == NULL) {
835 return;
836 }
Ian Rogersef28b142012-11-30 14:22:18 -0800837 JavaVMExt* vm = reinterpret_cast<JNIEnvExt*>(env)->vm;
Elliott Hughescdf53122011-08-19 15:46:09 -0700838 IndirectReferenceTable& globals = vm->globals;
Ian Rogersef28b142012-11-30 14:22:18 -0800839 Thread* self = reinterpret_cast<JNIEnvExt*>(env)->self;
840 MutexLock mu(self, vm->globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -0700841
842 if (!globals.Remove(IRT_FIRST_SEGMENT, obj)) {
843 LOG(WARNING) << "JNI WARNING: DeleteGlobalRef(" << obj << ") "
844 << "failed to find entry";
845 }
846 }
847
848 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700849 ScopedObjectAccess soa(env);
850 return AddWeakGlobalReference(soa, soa.Decode<Object*>(obj));
Elliott Hughescdf53122011-08-19 15:46:09 -0700851 }
852
853 static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700854 if (obj == NULL) {
855 return;
856 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700857 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700858 JavaVMExt* vm = soa.Vm();
Elliott Hughescdf53122011-08-19 15:46:09 -0700859 IndirectReferenceTable& weak_globals = vm->weak_globals;
Ian Rogers50b35e22012-10-04 10:09:15 -0700860 MutexLock mu(soa.Self(), vm->weak_globals_lock);
Elliott Hughescdf53122011-08-19 15:46:09 -0700861
862 if (!weak_globals.Remove(IRT_FIRST_SEGMENT, obj)) {
863 LOG(WARNING) << "JNI WARNING: DeleteWeakGlobalRef(" << obj << ") "
864 << "failed to find entry";
865 }
866 }
867
868 static jobject NewLocalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700869 if (obj == NULL) {
870 return NULL;
871 }
Ian Rogers25e8b912012-09-07 11:31:36 -0700872 ScopedObjectAccess soa(env);
Elliott Hughes9dcd45c2013-07-29 14:40:52 -0700873 return soa.AddLocalReference<jobject>(soa.Decode<Object*>(obj));
Elliott Hughescdf53122011-08-19 15:46:09 -0700874 }
875
876 static void DeleteLocalRef(JNIEnv* env, jobject obj) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700877 if (obj == NULL) {
878 return;
879 }
Ian Rogersef28b142012-11-30 14:22:18 -0800880 IndirectReferenceTable& locals = reinterpret_cast<JNIEnvExt*>(env)->locals;
Elliott Hughescdf53122011-08-19 15:46:09 -0700881
Ian Rogersef28b142012-11-30 14:22:18 -0800882 uint32_t cookie = reinterpret_cast<JNIEnvExt*>(env)->local_ref_cookie;
Elliott Hughescdf53122011-08-19 15:46:09 -0700883 if (!locals.Remove(cookie, obj)) {
884 // Attempting to delete a local reference that is not in the
885 // topmost local reference frame is a no-op. DeleteLocalRef returns
886 // void and doesn't throw any exceptions, but we should probably
887 // complain about it so the user will notice that things aren't
888 // going quite the way they expect.
889 LOG(WARNING) << "JNI WARNING: DeleteLocalRef(" << obj << ") "
890 << "failed to find entry";
891 }
892 }
893
894 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700895 if (obj1 == obj2) {
896 return JNI_TRUE;
897 } else {
898 ScopedObjectAccess soa(env);
899 return (soa.Decode<Object*>(obj1) == soa.Decode<Object*>(obj2)) ? JNI_TRUE : JNI_FALSE;
900 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700901 }
902
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700903 static jobject AllocObject(JNIEnv* env, jclass java_class) {
Ian Rogersbc939662013-08-15 10:26:54 -0700904 CHECK_NON_NULL_ARGUMENT(AllocObject, java_class);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700905 ScopedObjectAccess soa(env);
906 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700907 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700908 return NULL;
909 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700910 return soa.AddLocalReference<jobject>(c->AllocObject(soa.Self()));
Elliott Hughescdf53122011-08-19 15:46:09 -0700911 }
912
Ian Rogersbc939662013-08-15 10:26:54 -0700913 static jobject NewObject(JNIEnv* env, jclass java_class, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -0700914 va_list args;
Elliott Hughes72025e52011-08-23 17:50:30 -0700915 va_start(args, mid);
Ian Rogersbc939662013-08-15 10:26:54 -0700916 CHECK_NON_NULL_ARGUMENT(NewObject, java_class);
917 CHECK_NON_NULL_ARGUMENT(NewObject, mid);
918 jobject result = NewObjectV(env, java_class, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -0700919 va_end(args);
920 return result;
921 }
922
Elliott Hughes72025e52011-08-23 17:50:30 -0700923 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -0700924 CHECK_NON_NULL_ARGUMENT(NewObjectV, java_class);
925 CHECK_NON_NULL_ARGUMENT(NewObjectV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700926 ScopedObjectAccess soa(env);
927 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700928 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700929 return NULL;
930 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700931 Object* result = c->AllocObject(soa.Self());
Elliott Hughes30646832011-10-13 16:59:46 -0700932 if (result == NULL) {
933 return NULL;
934 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700935 jobject local_result = soa.AddLocalReference<jobject>(result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700936 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700937 if (!soa.Self()->IsExceptionPending()) {
Ian Rogers5d4bdc22011-11-02 22:15:43 -0700938 return local_result;
939 } else {
940 return NULL;
941 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700942 }
943
Elliott Hughes72025e52011-08-23 17:50:30 -0700944 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -0700945 CHECK_NON_NULL_ARGUMENT(NewObjectA, java_class);
946 CHECK_NON_NULL_ARGUMENT(NewObjectA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700947 ScopedObjectAccess soa(env);
948 Class* c = soa.Decode<Class*>(java_class);
Ian Rogers0045a292012-03-31 21:08:41 -0700949 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes885c3bd2011-08-22 16:59:20 -0700950 return NULL;
951 }
Ian Rogers50b35e22012-10-04 10:09:15 -0700952 Object* result = c->AllocObject(soa.Self());
Elliott Hughes30646832011-10-13 16:59:46 -0700953 if (result == NULL) {
954 return NULL;
955 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700956 jobject local_result = soa.AddLocalReference<jobjectArray>(result);
Elliott Hughes72025e52011-08-23 17:50:30 -0700957 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700958 if (!soa.Self()->IsExceptionPending()) {
Ian Rogers5d4bdc22011-11-02 22:15:43 -0700959 return local_result;
960 } else {
961 return NULL;
962 }
Elliott Hughescdf53122011-08-19 15:46:09 -0700963 }
964
Ian Rogersbc939662013-08-15 10:26:54 -0700965 static jmethodID GetMethodID(JNIEnv* env, jclass java_class, const char* name, const char* sig) {
966 CHECK_NON_NULL_ARGUMENT(GetMethodID, java_class);
967 CHECK_NON_NULL_ARGUMENT(GetMethodID, name);
968 CHECK_NON_NULL_ARGUMENT(GetMethodID, sig);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700969 ScopedObjectAccess soa(env);
Ian Rogersbc939662013-08-15 10:26:54 -0700970 return FindMethodID(soa, java_class, name, sig, false);
Elliott Hughescdf53122011-08-19 15:46:09 -0700971 }
972
Ian Rogersbc939662013-08-15 10:26:54 -0700973 static jmethodID GetStaticMethodID(JNIEnv* env, jclass java_class, const char* name,
974 const char* sig) {
975 CHECK_NON_NULL_ARGUMENT(GetStaticMethodID, java_class);
976 CHECK_NON_NULL_ARGUMENT(GetStaticMethodID, name);
977 CHECK_NON_NULL_ARGUMENT(GetStaticMethodID, sig);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700978 ScopedObjectAccess soa(env);
Ian Rogersbc939662013-08-15 10:26:54 -0700979 return FindMethodID(soa, java_class, name, sig, true);
Elliott Hughescdf53122011-08-19 15:46:09 -0700980 }
981
Elliott Hughes72025e52011-08-23 17:50:30 -0700982 static jobject CallObjectMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -0700983 va_list ap;
984 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -0700985 CHECK_NON_NULL_ARGUMENT(CallObjectMethod, obj);
986 CHECK_NON_NULL_ARGUMENT(CallObjectMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -0700987 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700988 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -0700989 va_end(ap);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700990 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -0700991 }
992
Elliott Hughes72025e52011-08-23 17:50:30 -0700993 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -0700994 CHECK_NON_NULL_ARGUMENT(CallObjectMethodV, obj);
995 CHECK_NON_NULL_ARGUMENT(CallObjectMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700996 ScopedObjectAccess soa(env);
997 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args));
998 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -0700999 }
1000
Elliott Hughes72025e52011-08-23 17:50:30 -07001001 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001002 CHECK_NON_NULL_ARGUMENT(CallObjectMethodA, obj);
1003 CHECK_NON_NULL_ARGUMENT(CallObjectMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001004 ScopedObjectAccess soa(env);
1005 JValue result(InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args));
1006 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001007 }
1008
Elliott Hughes72025e52011-08-23 17:50:30 -07001009 static jboolean CallBooleanMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001010 va_list ap;
1011 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001012 CHECK_NON_NULL_ARGUMENT(CallBooleanMethod, obj);
1013 CHECK_NON_NULL_ARGUMENT(CallBooleanMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001014 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001015 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001016 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001017 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001018 }
1019
Elliott Hughes72025e52011-08-23 17:50:30 -07001020 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001021 CHECK_NON_NULL_ARGUMENT(CallBooleanMethodV, obj);
1022 CHECK_NON_NULL_ARGUMENT(CallBooleanMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001023 ScopedObjectAccess soa(env);
1024 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001025 }
1026
Elliott Hughes72025e52011-08-23 17:50:30 -07001027 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001028 CHECK_NON_NULL_ARGUMENT(CallBooleanMethodA, obj);
1029 CHECK_NON_NULL_ARGUMENT(CallBooleanMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001030 ScopedObjectAccess soa(env);
1031 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001032 }
1033
Elliott Hughes72025e52011-08-23 17:50:30 -07001034 static jbyte CallByteMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001035 va_list ap;
1036 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001037 CHECK_NON_NULL_ARGUMENT(CallByteMethod, obj);
1038 CHECK_NON_NULL_ARGUMENT(CallByteMethod, mid);
1039 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001040 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001041 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001042 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001043 }
1044
Elliott Hughes72025e52011-08-23 17:50:30 -07001045 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001046 CHECK_NON_NULL_ARGUMENT(CallByteMethodV, obj);
1047 CHECK_NON_NULL_ARGUMENT(CallByteMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001048 ScopedObjectAccess soa(env);
1049 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001050 }
1051
Elliott Hughes72025e52011-08-23 17:50:30 -07001052 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001053 CHECK_NON_NULL_ARGUMENT(CallByteMethodA, obj);
1054 CHECK_NON_NULL_ARGUMENT(CallByteMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001055 ScopedObjectAccess soa(env);
1056 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001057 }
1058
Elliott Hughes72025e52011-08-23 17:50:30 -07001059 static jchar CallCharMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001060 va_list ap;
1061 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001062 CHECK_NON_NULL_ARGUMENT(CallCharMethod, obj);
1063 CHECK_NON_NULL_ARGUMENT(CallCharMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001064 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001065 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001066 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001067 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001068 }
1069
Elliott Hughes72025e52011-08-23 17:50:30 -07001070 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001071 CHECK_NON_NULL_ARGUMENT(CallCharMethodV, obj);
1072 CHECK_NON_NULL_ARGUMENT(CallCharMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001073 ScopedObjectAccess soa(env);
1074 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001075 }
1076
Elliott Hughes72025e52011-08-23 17:50:30 -07001077 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001078 CHECK_NON_NULL_ARGUMENT(CallCharMethodA, obj);
1079 CHECK_NON_NULL_ARGUMENT(CallCharMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001080 ScopedObjectAccess soa(env);
1081 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001082 }
1083
Elliott Hughes72025e52011-08-23 17:50:30 -07001084 static jdouble CallDoubleMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001085 va_list ap;
1086 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001087 CHECK_NON_NULL_ARGUMENT(CallDoubleMethod, obj);
1088 CHECK_NON_NULL_ARGUMENT(CallDoubleMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001089 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001090 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001091 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001092 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001093 }
1094
Elliott Hughes72025e52011-08-23 17:50:30 -07001095 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001096 CHECK_NON_NULL_ARGUMENT(CallDoubleMethodV, obj);
1097 CHECK_NON_NULL_ARGUMENT(CallDoubleMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001098 ScopedObjectAccess soa(env);
1099 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001100 }
1101
Elliott Hughes72025e52011-08-23 17:50:30 -07001102 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001103 CHECK_NON_NULL_ARGUMENT(CallDoubleMethodA, obj);
1104 CHECK_NON_NULL_ARGUMENT(CallDoubleMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001105 ScopedObjectAccess soa(env);
1106 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001107 }
1108
Elliott Hughes72025e52011-08-23 17:50:30 -07001109 static jfloat CallFloatMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001110 va_list ap;
1111 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001112 CHECK_NON_NULL_ARGUMENT(CallFloatMethod, obj);
1113 CHECK_NON_NULL_ARGUMENT(CallFloatMethod, mid);
1114 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001115 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001116 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001117 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001118 }
1119
Elliott Hughes72025e52011-08-23 17:50:30 -07001120 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001121 CHECK_NON_NULL_ARGUMENT(CallFloatMethodV, obj);
1122 CHECK_NON_NULL_ARGUMENT(CallFloatMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001123 ScopedObjectAccess soa(env);
1124 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001125 }
1126
Elliott Hughes72025e52011-08-23 17:50:30 -07001127 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001128 CHECK_NON_NULL_ARGUMENT(CallFloatMethodA, obj);
1129 CHECK_NON_NULL_ARGUMENT(CallFloatMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001130 ScopedObjectAccess soa(env);
1131 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001132 }
1133
Elliott Hughes72025e52011-08-23 17:50:30 -07001134 static jint CallIntMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001135 va_list ap;
1136 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001137 CHECK_NON_NULL_ARGUMENT(CallIntMethod, obj);
1138 CHECK_NON_NULL_ARGUMENT(CallIntMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001139 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001140 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001141 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001142 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001143 }
1144
Elliott Hughes72025e52011-08-23 17:50:30 -07001145 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001146 CHECK_NON_NULL_ARGUMENT(CallIntMethodV, obj);
1147 CHECK_NON_NULL_ARGUMENT(CallIntMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001148 ScopedObjectAccess soa(env);
1149 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001150 }
1151
Elliott Hughes72025e52011-08-23 17:50:30 -07001152 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001153 CHECK_NON_NULL_ARGUMENT(CallIntMethodA, obj);
1154 CHECK_NON_NULL_ARGUMENT(CallIntMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001155 ScopedObjectAccess soa(env);
1156 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001157 }
1158
Elliott Hughes72025e52011-08-23 17:50:30 -07001159 static jlong CallLongMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001160 va_list ap;
1161 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001162 CHECK_NON_NULL_ARGUMENT(CallLongMethod, obj);
1163 CHECK_NON_NULL_ARGUMENT(CallLongMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001164 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001165 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001166 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001167 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001168 }
1169
Elliott Hughes72025e52011-08-23 17:50:30 -07001170 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001171 CHECK_NON_NULL_ARGUMENT(CallLongMethodV, obj);
1172 CHECK_NON_NULL_ARGUMENT(CallLongMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001173 ScopedObjectAccess soa(env);
1174 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001175 }
1176
Elliott Hughes72025e52011-08-23 17:50:30 -07001177 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001178 CHECK_NON_NULL_ARGUMENT(CallLongMethodA, obj);
1179 CHECK_NON_NULL_ARGUMENT(CallLongMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001180 ScopedObjectAccess soa(env);
1181 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001182 }
1183
Elliott Hughes72025e52011-08-23 17:50:30 -07001184 static jshort CallShortMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001185 va_list ap;
1186 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001187 CHECK_NON_NULL_ARGUMENT(CallShortMethod, obj);
1188 CHECK_NON_NULL_ARGUMENT(CallShortMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001189 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001190 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap));
Elliott Hughes72025e52011-08-23 17:50:30 -07001191 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001192 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001193 }
1194
Elliott Hughes72025e52011-08-23 17:50:30 -07001195 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001196 CHECK_NON_NULL_ARGUMENT(CallShortMethodV, obj);
1197 CHECK_NON_NULL_ARGUMENT(CallShortMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001198 ScopedObjectAccess soa(env);
1199 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001200 }
1201
Elliott Hughes72025e52011-08-23 17:50:30 -07001202 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001203 CHECK_NON_NULL_ARGUMENT(CallShortMethodA, obj);
1204 CHECK_NON_NULL_ARGUMENT(CallShortMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001205 ScopedObjectAccess soa(env);
1206 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001207 }
1208
Elliott Hughes72025e52011-08-23 17:50:30 -07001209 static void CallVoidMethod(JNIEnv* env, jobject obj, jmethodID mid, ...) {
Elliott Hughes72025e52011-08-23 17:50:30 -07001210 va_list ap;
1211 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001212 CHECK_NON_NULL_ARGUMENT(CallVoidMethod, obj);
1213 CHECK_NON_NULL_ARGUMENT(CallVoidMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001214 ScopedObjectAccess soa(env);
Ian Rogers1b09b092012-08-20 15:35:52 -07001215 InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, ap);
Elliott Hughes72025e52011-08-23 17:50:30 -07001216 va_end(ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001217 }
1218
Elliott Hughes72025e52011-08-23 17:50:30 -07001219 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001220 CHECK_NON_NULL_ARGUMENT(CallVoidMethodV, obj);
1221 CHECK_NON_NULL_ARGUMENT(CallVoidMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001222 ScopedObjectAccess soa(env);
1223 InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001224 }
1225
Elliott Hughes72025e52011-08-23 17:50:30 -07001226 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001227 CHECK_NON_NULL_ARGUMENT(CallVoidMethodA, obj);
1228 CHECK_NON_NULL_ARGUMENT(CallVoidMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001229 ScopedObjectAccess soa(env);
1230 InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001231 }
1232
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001233 static jobject CallNonvirtualObjectMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001234 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001235 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001236 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethod, obj);
1237 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001238 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001239 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
1240 jobject local_result = soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001241 va_end(ap);
1242 return local_result;
1243 }
1244
Ian Rogersbc939662013-08-15 10:26:54 -07001245 static jobject CallNonvirtualObjectMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1246 va_list args) {
1247 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethodV, obj);
1248 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001249 ScopedObjectAccess soa(env);
1250 JValue result(InvokeWithVarArgs(soa, obj, mid, args));
1251 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001252 }
1253
Ian Rogersbc939662013-08-15 10:26:54 -07001254 static jobject CallNonvirtualObjectMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1255 jvalue* args) {
1256 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethodA, obj);
1257 CHECK_NON_NULL_ARGUMENT(CallNonvirtualObjectMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001258 ScopedObjectAccess soa(env);
1259 JValue result(InvokeWithJValues(soa, obj, mid, args));
1260 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001261 }
1262
Ian Rogersbc939662013-08-15 10:26:54 -07001263 static jboolean CallNonvirtualBooleanMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1264 ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001265 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001266 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001267 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethod, obj);
1268 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001269 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001270 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001271 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001272 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001273 }
1274
Ian Rogersbc939662013-08-15 10:26:54 -07001275 static jboolean CallNonvirtualBooleanMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1276 va_list args) {
1277 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethodV, obj);
1278 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001279 ScopedObjectAccess soa(env);
1280 return InvokeWithVarArgs(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001281 }
1282
Ian Rogersbc939662013-08-15 10:26:54 -07001283 static jboolean CallNonvirtualBooleanMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1284 jvalue* args) {
1285 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethodA, obj);
1286 CHECK_NON_NULL_ARGUMENT(CallNonvirtualBooleanMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001287 ScopedObjectAccess soa(env);
1288 return InvokeWithJValues(soa, obj, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001289 }
1290
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001291 static jbyte CallNonvirtualByteMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001292 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001293 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001294 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethod, obj);
1295 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001296 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001297 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001298 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001299 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001300 }
1301
Ian Rogersbc939662013-08-15 10:26:54 -07001302 static jbyte CallNonvirtualByteMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1303 va_list args) {
1304 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethodV, obj);
1305 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001306 ScopedObjectAccess soa(env);
1307 return InvokeWithVarArgs(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001308 }
1309
Ian Rogersbc939662013-08-15 10:26:54 -07001310 static jbyte CallNonvirtualByteMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1311 jvalue* args) {
1312 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethodA, obj);
1313 CHECK_NON_NULL_ARGUMENT(CallNonvirtualByteMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001314 ScopedObjectAccess soa(env);
1315 return InvokeWithJValues(soa, obj, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001316 }
1317
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001318 static jchar CallNonvirtualCharMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001319 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001320 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001321 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethod, obj);
1322 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethod, mid);
1323 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001324 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001325 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001326 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001327 }
1328
Ian Rogersbc939662013-08-15 10:26:54 -07001329 static jchar CallNonvirtualCharMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1330 va_list args) {
1331 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethodV, obj);
1332 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001333 ScopedObjectAccess soa(env);
1334 return InvokeWithVarArgs(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001335 }
1336
Ian Rogersbc939662013-08-15 10:26:54 -07001337 static jchar CallNonvirtualCharMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1338 jvalue* args) {
1339 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethodA, obj);
1340 CHECK_NON_NULL_ARGUMENT(CallNonvirtualCharMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001341 ScopedObjectAccess soa(env);
1342 return InvokeWithJValues(soa, obj, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001343 }
1344
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001345 static jshort CallNonvirtualShortMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001346 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001347 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001348 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethod, obj);
1349 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001350 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001351 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001352 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001353 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001354 }
1355
Ian Rogersbc939662013-08-15 10:26:54 -07001356 static jshort CallNonvirtualShortMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1357 va_list args) {
1358 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethodV, obj);
1359 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001360 ScopedObjectAccess soa(env);
1361 return InvokeWithVarArgs(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001362 }
1363
Ian Rogersbc939662013-08-15 10:26:54 -07001364 static jshort CallNonvirtualShortMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1365 jvalue* args) {
1366 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethodA, obj);
1367 CHECK_NON_NULL_ARGUMENT(CallNonvirtualShortMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001368 ScopedObjectAccess soa(env);
1369 return InvokeWithJValues(soa, obj, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001370 }
1371
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001372 static jint CallNonvirtualIntMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001373 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001374 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001375 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethod, obj);
1376 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001377 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001378 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001379 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001380 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001381 }
1382
Ian Rogersbc939662013-08-15 10:26:54 -07001383 static jint CallNonvirtualIntMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1384 va_list args) {
1385 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethodV, obj);
1386 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001387 ScopedObjectAccess soa(env);
1388 return InvokeWithVarArgs(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001389 }
1390
Ian Rogersbc939662013-08-15 10:26:54 -07001391 static jint CallNonvirtualIntMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1392 jvalue* args) {
1393 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethodA, obj);
1394 CHECK_NON_NULL_ARGUMENT(CallNonvirtualIntMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001395 ScopedObjectAccess soa(env);
1396 return InvokeWithJValues(soa, obj, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001397 }
1398
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001399 static jlong CallNonvirtualLongMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001400 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001401 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001402 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethod, obj);
1403 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001404 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001405 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001406 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001407 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001408 }
1409
Ian Rogersbc939662013-08-15 10:26:54 -07001410 static jlong CallNonvirtualLongMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1411 va_list args) {
1412 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethodV, obj);
1413 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001414 ScopedObjectAccess soa(env);
1415 return InvokeWithVarArgs(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001416 }
1417
Ian Rogersbc939662013-08-15 10:26:54 -07001418 static jlong CallNonvirtualLongMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1419 jvalue* args) {
1420 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethodA, obj);
1421 CHECK_NON_NULL_ARGUMENT(CallNonvirtualLongMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001422 ScopedObjectAccess soa(env);
1423 return InvokeWithJValues(soa, obj, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001424 }
1425
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001426 static jfloat CallNonvirtualFloatMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001427 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001428 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001429 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethod, obj);
1430 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001431 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001432 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001433 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001434 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001435 }
1436
Ian Rogersbc939662013-08-15 10:26:54 -07001437 static jfloat CallNonvirtualFloatMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1438 va_list args) {
1439 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethodV, obj);
1440 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001441 ScopedObjectAccess soa(env);
1442 return InvokeWithVarArgs(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001443 }
1444
Ian Rogersbc939662013-08-15 10:26:54 -07001445 static jfloat CallNonvirtualFloatMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1446 jvalue* args) {
1447 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethodA, obj);
1448 CHECK_NON_NULL_ARGUMENT(CallNonvirtualFloatMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001449 ScopedObjectAccess soa(env);
1450 return InvokeWithJValues(soa, obj, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001451 }
1452
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001453 static jdouble CallNonvirtualDoubleMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001454 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001455 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001456 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethod, obj);
1457 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001458 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001459 JValue result(InvokeWithVarArgs(soa, obj, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001460 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001461 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001462 }
1463
Ian Rogersbc939662013-08-15 10:26:54 -07001464 static jdouble CallNonvirtualDoubleMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1465 va_list args) {
1466 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethodV, obj);
1467 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001468 ScopedObjectAccess soa(env);
1469 return InvokeWithVarArgs(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001470 }
1471
Ian Rogersbc939662013-08-15 10:26:54 -07001472 static jdouble CallNonvirtualDoubleMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1473 jvalue* args) {
1474 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethodA, obj);
1475 CHECK_NON_NULL_ARGUMENT(CallNonvirtualDoubleMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001476 ScopedObjectAccess soa(env);
1477 return InvokeWithJValues(soa, obj, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001478 }
1479
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001480 static void CallNonvirtualVoidMethod(JNIEnv* env, jobject obj, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001481 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001482 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001483 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethod, obj);
1484 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001485 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001486 InvokeWithVarArgs(soa, obj, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001487 va_end(ap);
1488 }
1489
Brian Carlstromea46f952013-07-30 01:26:50 -07001490 static void CallNonvirtualVoidMethodV(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1491 va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001492 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethodV, obj);
1493 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001494 ScopedObjectAccess soa(env);
1495 InvokeWithVarArgs(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001496 }
1497
Ian Rogersbc939662013-08-15 10:26:54 -07001498 static void CallNonvirtualVoidMethodA(JNIEnv* env, jobject obj, jclass, jmethodID mid,
1499 jvalue* args) {
1500 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethodA, obj);
1501 CHECK_NON_NULL_ARGUMENT(CallNonvirtualVoidMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001502 ScopedObjectAccess soa(env);
1503 InvokeWithJValues(soa, obj, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001504 }
1505
Ian Rogersbc939662013-08-15 10:26:54 -07001506 static jfieldID GetFieldID(JNIEnv* env, jclass java_class, const char* name, const char* sig) {
1507 CHECK_NON_NULL_ARGUMENT(GetFieldID, java_class);
1508 CHECK_NON_NULL_ARGUMENT(GetFieldID, name);
1509 CHECK_NON_NULL_ARGUMENT(GetFieldID, sig);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001510 ScopedObjectAccess soa(env);
Ian Rogersbc939662013-08-15 10:26:54 -07001511 return FindFieldID(soa, java_class, name, sig, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07001512 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001513
Ian Rogersbc939662013-08-15 10:26:54 -07001514 static jfieldID GetStaticFieldID(JNIEnv* env, jclass java_class, const char* name,
1515 const char* sig) {
1516 CHECK_NON_NULL_ARGUMENT(GetStaticFieldID, java_class);
1517 CHECK_NON_NULL_ARGUMENT(GetStaticFieldID, name);
1518 CHECK_NON_NULL_ARGUMENT(GetFieldID, sig);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001519 ScopedObjectAccess soa(env);
Ian Rogersbc939662013-08-15 10:26:54 -07001520 return FindFieldID(soa, java_class, name, sig, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07001521 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001522
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001523 static jobject GetObjectField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001524 CHECK_NON_NULL_ARGUMENT(GetObjectField, obj);
1525 CHECK_NON_NULL_ARGUMENT(GetObjectField, fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001526 ScopedObjectAccess soa(env);
1527 Object* o = soa.Decode<Object*>(obj);
Brian Carlstromea46f952013-07-30 01:26:50 -07001528 ArtField* f = soa.DecodeField(fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001529 return soa.AddLocalReference<jobject>(f->GetObject(o));
Elliott Hughescdf53122011-08-19 15:46:09 -07001530 }
Carl Shapiroea4dca82011-08-01 13:45:38 -07001531
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001532 static jobject GetStaticObjectField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001533 CHECK_NON_NULL_ARGUMENT(GetStaticObjectField, fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001534 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -07001535 ArtField* f = soa.DecodeField(fid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001536 return soa.AddLocalReference<jobject>(f->GetObject(f->GetDeclaringClass()));
Elliott Hughescdf53122011-08-19 15:46:09 -07001537 }
1538
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001539 static void SetObjectField(JNIEnv* env, jobject java_object, jfieldID fid, jobject java_value) {
Ian Rogersbc939662013-08-15 10:26:54 -07001540 CHECK_NON_NULL_ARGUMENT(SetObjectField, java_object);
1541 CHECK_NON_NULL_ARGUMENT(SetObjectField, fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001542 ScopedObjectAccess soa(env);
1543 Object* o = soa.Decode<Object*>(java_object);
1544 Object* v = soa.Decode<Object*>(java_value);
Brian Carlstromea46f952013-07-30 01:26:50 -07001545 ArtField* f = soa.DecodeField(fid);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001546 f->SetObject(o, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001547 }
1548
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001549 static void SetStaticObjectField(JNIEnv* env, jclass, jfieldID fid, jobject java_value) {
Ian Rogersbc939662013-08-15 10:26:54 -07001550 CHECK_NON_NULL_ARGUMENT(SetStaticObjectField, fid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001551 ScopedObjectAccess soa(env);
1552 Object* v = soa.Decode<Object*>(java_value);
Brian Carlstromea46f952013-07-30 01:26:50 -07001553 ArtField* f = soa.DecodeField(fid);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001554 f->SetObject(f->GetDeclaringClass(), v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001555 }
1556
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001557#define GET_PRIMITIVE_FIELD(fn, instance) \
Ian Rogersbc939662013-08-15 10:26:54 -07001558 CHECK_NON_NULL_ARGUMENT(Get #fn Field, instance); \
1559 CHECK_NON_NULL_ARGUMENT(Get #fn Field, fid); \
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001560 ScopedObjectAccess soa(env); \
1561 Object* o = soa.Decode<Object*>(instance); \
Brian Carlstromea46f952013-07-30 01:26:50 -07001562 ArtField* f = soa.DecodeField(fid); \
Ian Rogersbc939662013-08-15 10:26:54 -07001563 return f->Get ##fn (o)
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001564
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001565#define GET_STATIC_PRIMITIVE_FIELD(fn) \
Ian Rogersbc939662013-08-15 10:26:54 -07001566 CHECK_NON_NULL_ARGUMENT(GetStatic #fn Field, fid); \
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001567 ScopedObjectAccess soa(env); \
Brian Carlstromea46f952013-07-30 01:26:50 -07001568 ArtField* f = soa.DecodeField(fid); \
Ian Rogersbc939662013-08-15 10:26:54 -07001569 return f->Get ##fn (f->GetDeclaringClass())
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001570
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001571#define SET_PRIMITIVE_FIELD(fn, instance, value) \
Ian Rogersbc939662013-08-15 10:26:54 -07001572 CHECK_NON_NULL_ARGUMENT(Set #fn Field, instance); \
1573 CHECK_NON_NULL_ARGUMENT(Set #fn Field, fid); \
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001574 ScopedObjectAccess soa(env); \
1575 Object* o = soa.Decode<Object*>(instance); \
Brian Carlstromea46f952013-07-30 01:26:50 -07001576 ArtField* f = soa.DecodeField(fid); \
Ian Rogersbc939662013-08-15 10:26:54 -07001577 f->Set ##fn(o, value)
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001578
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001579#define SET_STATIC_PRIMITIVE_FIELD(fn, value) \
Ian Rogersbc939662013-08-15 10:26:54 -07001580 CHECK_NON_NULL_ARGUMENT(SetStatic #fn Field, fid); \
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001581 ScopedObjectAccess soa(env); \
Brian Carlstromea46f952013-07-30 01:26:50 -07001582 ArtField* f = soa.DecodeField(fid); \
Ian Rogersbc939662013-08-15 10:26:54 -07001583 f->Set ##fn(f->GetDeclaringClass(), value)
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001584
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001585 static jboolean GetBooleanField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001586 GET_PRIMITIVE_FIELD(Boolean, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001587 }
1588
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001589 static jbyte GetByteField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001590 GET_PRIMITIVE_FIELD(Byte, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001591 }
1592
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001593 static jchar GetCharField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001594 GET_PRIMITIVE_FIELD(Char, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001595 }
1596
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001597 static jshort GetShortField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001598 GET_PRIMITIVE_FIELD(Short, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001599 }
1600
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001601 static jint GetIntField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001602 GET_PRIMITIVE_FIELD(Int, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001603 }
1604
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001605 static jlong GetLongField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001606 GET_PRIMITIVE_FIELD(Long, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001607 }
1608
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001609 static jfloat GetFloatField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001610 GET_PRIMITIVE_FIELD(Float, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001611 }
1612
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001613 static jdouble GetDoubleField(JNIEnv* env, jobject obj, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001614 GET_PRIMITIVE_FIELD(Double, obj);
Elliott Hughescdf53122011-08-19 15:46:09 -07001615 }
1616
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001617 static jboolean GetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001618 GET_STATIC_PRIMITIVE_FIELD(Boolean);
Elliott Hughescdf53122011-08-19 15:46:09 -07001619 }
1620
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001621 static jbyte GetStaticByteField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001622 GET_STATIC_PRIMITIVE_FIELD(Byte);
Elliott Hughescdf53122011-08-19 15:46:09 -07001623 }
1624
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001625 static jchar GetStaticCharField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001626 GET_STATIC_PRIMITIVE_FIELD(Char);
Elliott Hughescdf53122011-08-19 15:46:09 -07001627 }
1628
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001629 static jshort GetStaticShortField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001630 GET_STATIC_PRIMITIVE_FIELD(Short);
Elliott Hughescdf53122011-08-19 15:46:09 -07001631 }
1632
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001633 static jint GetStaticIntField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001634 GET_STATIC_PRIMITIVE_FIELD(Int);
Elliott Hughescdf53122011-08-19 15:46:09 -07001635 }
1636
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001637 static jlong GetStaticLongField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001638 GET_STATIC_PRIMITIVE_FIELD(Long);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001639 }
1640
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001641 static jfloat GetStaticFloatField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001642 GET_STATIC_PRIMITIVE_FIELD(Float);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001643 }
1644
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001645 static jdouble GetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid) {
Ian Rogersbc939662013-08-15 10:26:54 -07001646 GET_STATIC_PRIMITIVE_FIELD(Double);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001647 }
1648
1649 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001650 SET_PRIMITIVE_FIELD(Boolean, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001651 }
1652
1653 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001654 SET_PRIMITIVE_FIELD(Byte, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001655 }
1656
1657 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001658 SET_PRIMITIVE_FIELD(Char, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001659 }
1660
1661 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001662 SET_PRIMITIVE_FIELD(Float, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001663 }
1664
1665 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001666 SET_PRIMITIVE_FIELD(Double, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001667 }
1668
1669 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001670 SET_PRIMITIVE_FIELD(Int, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001671 }
1672
1673 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001674 SET_PRIMITIVE_FIELD(Long, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001675 }
1676
1677 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001678 SET_PRIMITIVE_FIELD(Short, obj, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001679 }
1680
1681 static void SetStaticBooleanField(JNIEnv* env, jclass, jfieldID fid, jboolean v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001682 SET_STATIC_PRIMITIVE_FIELD(Boolean, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001683 }
1684
1685 static void SetStaticByteField(JNIEnv* env, jclass, jfieldID fid, jbyte v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001686 SET_STATIC_PRIMITIVE_FIELD(Byte, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001687 }
1688
1689 static void SetStaticCharField(JNIEnv* env, jclass, jfieldID fid, jchar v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001690 SET_STATIC_PRIMITIVE_FIELD(Char, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001691 }
1692
1693 static void SetStaticFloatField(JNIEnv* env, jclass, jfieldID fid, jfloat v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001694 SET_STATIC_PRIMITIVE_FIELD(Float, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001695 }
1696
1697 static void SetStaticDoubleField(JNIEnv* env, jclass, jfieldID fid, jdouble v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001698 SET_STATIC_PRIMITIVE_FIELD(Double, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001699 }
1700
1701 static void SetStaticIntField(JNIEnv* env, jclass, jfieldID fid, jint v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001702 SET_STATIC_PRIMITIVE_FIELD(Int, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001703 }
1704
1705 static void SetStaticLongField(JNIEnv* env, jclass, jfieldID fid, jlong v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001706 SET_STATIC_PRIMITIVE_FIELD(Long, v);
Elliott Hughes885c3bd2011-08-22 16:59:20 -07001707 }
1708
1709 static void SetStaticShortField(JNIEnv* env, jclass, jfieldID fid, jshort v) {
Ian Rogersbc939662013-08-15 10:26:54 -07001710 SET_STATIC_PRIMITIVE_FIELD(Short, v);
Elliott Hughescdf53122011-08-19 15:46:09 -07001711 }
1712
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001713 static jobject CallStaticObjectMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001714 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001715 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001716 CHECK_NON_NULL_ARGUMENT(CallStaticObjectMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001717 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001718 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
1719 jobject local_result = soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001720 va_end(ap);
1721 return local_result;
1722 }
1723
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001724 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001725 CHECK_NON_NULL_ARGUMENT(CallStaticObjectMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001726 ScopedObjectAccess soa(env);
1727 JValue result(InvokeWithVarArgs(soa, NULL, mid, args));
1728 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001729 }
1730
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001731 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001732 CHECK_NON_NULL_ARGUMENT(CallStaticObjectMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001733 ScopedObjectAccess soa(env);
1734 JValue result(InvokeWithJValues(soa, NULL, mid, args));
1735 return soa.AddLocalReference<jobject>(result.GetL());
Elliott Hughescdf53122011-08-19 15:46:09 -07001736 }
1737
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001738 static jboolean CallStaticBooleanMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001739 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001740 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001741 CHECK_NON_NULL_ARGUMENT(CallStaticBooleanMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001742 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001743 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001744 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001745 return result.GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001746 }
1747
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001748 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001749 CHECK_NON_NULL_ARGUMENT(CallStaticBooleanMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001750 ScopedObjectAccess soa(env);
1751 return InvokeWithVarArgs(soa, NULL, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001752 }
1753
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001754 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001755 CHECK_NON_NULL_ARGUMENT(CallStaticBooleanMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001756 ScopedObjectAccess soa(env);
1757 return InvokeWithJValues(soa, NULL, mid, args).GetZ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001758 }
1759
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001760 static jbyte CallStaticByteMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001761 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001762 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001763 CHECK_NON_NULL_ARGUMENT(CallStaticByteMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001764 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001765 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001766 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001767 return result.GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001768 }
1769
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001770 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001771 CHECK_NON_NULL_ARGUMENT(CallStaticByteMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001772 ScopedObjectAccess soa(env);
1773 return InvokeWithVarArgs(soa, NULL, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001774 }
1775
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001776 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001777 CHECK_NON_NULL_ARGUMENT(CallStaticByteMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001778 ScopedObjectAccess soa(env);
1779 return InvokeWithJValues(soa, NULL, mid, args).GetB();
Elliott Hughescdf53122011-08-19 15:46:09 -07001780 }
1781
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001782 static jchar CallStaticCharMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001783 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001784 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001785 CHECK_NON_NULL_ARGUMENT(CallStaticCharMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001786 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001787 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001788 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001789 return result.GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001790 }
1791
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001792 static jchar CallStaticCharMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001793 CHECK_NON_NULL_ARGUMENT(CallStaticCharMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001794 ScopedObjectAccess soa(env);
1795 return InvokeWithVarArgs(soa, NULL, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001796 }
1797
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001798 static jchar CallStaticCharMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001799 CHECK_NON_NULL_ARGUMENT(CallStaticCharMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001800 ScopedObjectAccess soa(env);
1801 return InvokeWithJValues(soa, NULL, mid, args).GetC();
Elliott Hughescdf53122011-08-19 15:46:09 -07001802 }
1803
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001804 static jshort CallStaticShortMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001805 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001806 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001807 CHECK_NON_NULL_ARGUMENT(CallStaticShortMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001808 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001809 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001810 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001811 return result.GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001812 }
1813
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001814 static jshort CallStaticShortMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001815 CHECK_NON_NULL_ARGUMENT(CallStaticShortMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001816 ScopedObjectAccess soa(env);
1817 return InvokeWithVarArgs(soa, NULL, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001818 }
1819
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001820 static jshort CallStaticShortMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001821 CHECK_NON_NULL_ARGUMENT(CallStaticShortMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001822 ScopedObjectAccess soa(env);
1823 return InvokeWithJValues(soa, NULL, mid, args).GetS();
Elliott Hughescdf53122011-08-19 15:46:09 -07001824 }
1825
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001826 static jint CallStaticIntMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001827 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001828 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001829 CHECK_NON_NULL_ARGUMENT(CallStaticIntMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001830 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001831 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001832 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001833 return result.GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001834 }
1835
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001836 static jint CallStaticIntMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001837 CHECK_NON_NULL_ARGUMENT(CallStaticIntMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001838 ScopedObjectAccess soa(env);
1839 return InvokeWithVarArgs(soa, NULL, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001840 }
1841
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001842 static jint CallStaticIntMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001843 CHECK_NON_NULL_ARGUMENT(CallStaticIntMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001844 ScopedObjectAccess soa(env);
1845 return InvokeWithJValues(soa, NULL, mid, args).GetI();
Elliott Hughescdf53122011-08-19 15:46:09 -07001846 }
1847
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001848 static jlong CallStaticLongMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001849 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001850 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001851 CHECK_NON_NULL_ARGUMENT(CallStaticLongMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001852 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001853 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001854 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001855 return result.GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001856 }
1857
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001858 static jlong CallStaticLongMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001859 CHECK_NON_NULL_ARGUMENT(CallStaticLongMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001860 ScopedObjectAccess soa(env);
1861 return InvokeWithVarArgs(soa, NULL, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001862 }
1863
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001864 static jlong CallStaticLongMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001865 CHECK_NON_NULL_ARGUMENT(CallStaticLongMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001866 ScopedObjectAccess soa(env);
1867 return InvokeWithJValues(soa, NULL, mid, args).GetJ();
Elliott Hughescdf53122011-08-19 15:46:09 -07001868 }
1869
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001870 static jfloat CallStaticFloatMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001871 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001872 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001873 CHECK_NON_NULL_ARGUMENT(CallStaticFloatMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001874 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001875 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001876 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001877 return result.GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001878 }
1879
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001880 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001881 CHECK_NON_NULL_ARGUMENT(CallStaticFloatMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001882 ScopedObjectAccess soa(env);
1883 return InvokeWithVarArgs(soa, NULL, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001884 }
1885
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001886 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001887 CHECK_NON_NULL_ARGUMENT(CallStaticFloatMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001888 ScopedObjectAccess soa(env);
1889 return InvokeWithJValues(soa, NULL, mid, args).GetF();
Elliott Hughescdf53122011-08-19 15:46:09 -07001890 }
1891
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001892 static jdouble CallStaticDoubleMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001893 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001894 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001895 CHECK_NON_NULL_ARGUMENT(CallStaticDoubleMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001896 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001897 JValue result(InvokeWithVarArgs(soa, NULL, mid, ap));
Elliott Hughescdf53122011-08-19 15:46:09 -07001898 va_end(ap);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07001899 return result.GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001900 }
1901
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001902 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001903 CHECK_NON_NULL_ARGUMENT(CallStaticDoubleMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001904 ScopedObjectAccess soa(env);
1905 return InvokeWithVarArgs(soa, NULL, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001906 }
1907
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001908 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001909 CHECK_NON_NULL_ARGUMENT(CallStaticDoubleMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001910 ScopedObjectAccess soa(env);
1911 return InvokeWithJValues(soa, NULL, mid, args).GetD();
Elliott Hughescdf53122011-08-19 15:46:09 -07001912 }
1913
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001914 static void CallStaticVoidMethod(JNIEnv* env, jclass, jmethodID mid, ...) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001915 va_list ap;
Elliott Hughes72025e52011-08-23 17:50:30 -07001916 va_start(ap, mid);
Ian Rogersbc939662013-08-15 10:26:54 -07001917 CHECK_NON_NULL_ARGUMENT(CallStaticVoidMethod, mid);
Ian Rogers25e8b912012-09-07 11:31:36 -07001918 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001919 InvokeWithVarArgs(soa, NULL, mid, ap);
Elliott Hughescdf53122011-08-19 15:46:09 -07001920 va_end(ap);
1921 }
1922
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001923 static void CallStaticVoidMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001924 CHECK_NON_NULL_ARGUMENT(CallStaticVoidMethodV, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001925 ScopedObjectAccess soa(env);
1926 InvokeWithVarArgs(soa, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001927 }
1928
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001929 static void CallStaticVoidMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
Ian Rogersbc939662013-08-15 10:26:54 -07001930 CHECK_NON_NULL_ARGUMENT(CallStaticVoidMethodA, mid);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001931 ScopedObjectAccess soa(env);
1932 InvokeWithJValues(soa, NULL, mid, args);
Elliott Hughescdf53122011-08-19 15:46:09 -07001933 }
1934
Elliott Hughes814e4032011-08-23 12:07:56 -07001935 static jstring NewString(JNIEnv* env, const jchar* chars, jsize char_count) {
Ian Rogersbc939662013-08-15 10:26:54 -07001936 if (UNLIKELY(chars == NULL && char_count > 0)) { \
1937 JniAbortF("NewString", "char == null && char_count > 0"); \
1938 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001939 ScopedObjectAccess soa(env);
Ian Rogers50b35e22012-10-04 10:09:15 -07001940 String* result = String::AllocFromUtf16(soa.Self(), char_count, chars);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001941 return soa.AddLocalReference<jstring>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001942 }
1943
1944 static jstring NewStringUTF(JNIEnv* env, const char* utf) {
Elliott Hughescdf53122011-08-19 15:46:09 -07001945 if (utf == NULL) {
1946 return NULL;
1947 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001948 ScopedObjectAccess soa(env);
Ian Rogers50b35e22012-10-04 10:09:15 -07001949 String* result = String::AllocFromModifiedUtf8(soa.Self(), utf);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001950 return soa.AddLocalReference<jstring>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07001951 }
1952
Elliott Hughes814e4032011-08-23 12:07:56 -07001953 static jsize GetStringLength(JNIEnv* env, jstring java_string) {
Ian Rogersbc939662013-08-15 10:26:54 -07001954 CHECK_NON_NULL_ARGUMENT(GetStringLength, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001955 ScopedObjectAccess soa(env);
1956 return soa.Decode<String*>(java_string)->GetLength();
Elliott Hughes814e4032011-08-23 12:07:56 -07001957 }
1958
1959 static jsize GetStringUTFLength(JNIEnv* env, jstring java_string) {
Ian Rogersbc939662013-08-15 10:26:54 -07001960 CHECK_NON_NULL_ARGUMENT(GetStringLength, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001961 ScopedObjectAccess soa(env);
1962 return soa.Decode<String*>(java_string)->GetUtfLength();
Elliott Hughes814e4032011-08-23 12:07:56 -07001963 }
1964
Ian Rogersbc939662013-08-15 10:26:54 -07001965 static void GetStringRegion(JNIEnv* env, jstring java_string, jsize start, jsize length,
1966 jchar* buf) {
1967 CHECK_NON_NULL_ARGUMENT(GetStringRegion, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001968 ScopedObjectAccess soa(env);
1969 String* s = soa.Decode<String*>(java_string);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001970 if (start < 0 || length < 0 || start + length > s->GetLength()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001971 ThrowSIOOBE(soa, start, length, s->GetLength());
Elliott Hughesb465ab02011-08-24 11:21:21 -07001972 } else {
Ian Rogersbc939662013-08-15 10:26:54 -07001973 CHECK_NON_NULL_ARGUMENT(GetStringRegion, buf);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001974 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1975 memcpy(buf, chars + start, length * sizeof(jchar));
1976 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001977 }
1978
Ian Rogersbc939662013-08-15 10:26:54 -07001979 static void GetStringUTFRegion(JNIEnv* env, jstring java_string, jsize start, jsize length,
1980 char* buf) {
1981 CHECK_NON_NULL_ARGUMENT(GetStringUTFRegion, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001982 ScopedObjectAccess soa(env);
1983 String* s = soa.Decode<String*>(java_string);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001984 if (start < 0 || length < 0 || start + length > s->GetLength()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001985 ThrowSIOOBE(soa, start, length, s->GetLength());
Elliott Hughesb465ab02011-08-24 11:21:21 -07001986 } else {
Ian Rogersbc939662013-08-15 10:26:54 -07001987 CHECK_NON_NULL_ARGUMENT(GetStringUTFRegion, buf);
Elliott Hughesb465ab02011-08-24 11:21:21 -07001988 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset();
1989 ConvertUtf16ToModifiedUtf8(buf, chars + start, length);
1990 }
Elliott Hughes814e4032011-08-23 12:07:56 -07001991 }
1992
Elliott Hughes75770752011-08-24 17:52:38 -07001993 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07001994 CHECK_NON_NULL_ARGUMENT(GetStringUTFRegion, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001995 ScopedObjectAccess soa(env);
1996 String* s = soa.Decode<String*>(java_string);
Elliott Hughes75770752011-08-24 17:52:38 -07001997 const CharArray* chars = s->GetCharArray();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001998 PinPrimitiveArray(soa, chars);
Elliott Hughes75770752011-08-24 17:52:38 -07001999 if (is_copy != NULL) {
2000 *is_copy = JNI_FALSE;
2001 }
2002 return chars->GetData() + s->GetOffset();
Elliott Hughes814e4032011-08-23 12:07:56 -07002003 }
2004
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002005 static void ReleaseStringChars(JNIEnv* env, jstring java_string, const jchar*) {
Ian Rogersbc939662013-08-15 10:26:54 -07002006 CHECK_NON_NULL_ARGUMENT(GetStringUTFRegion, java_string);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002007 ScopedObjectAccess soa(env);
2008 UnpinPrimitiveArray(soa, soa.Decode<String*>(java_string)->GetCharArray());
Elliott Hughescdf53122011-08-19 15:46:09 -07002009 }
2010
Elliott Hughes75770752011-08-24 17:52:38 -07002011 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes75770752011-08-24 17:52:38 -07002012 return GetStringChars(env, java_string, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002013 }
2014
Elliott Hughes75770752011-08-24 17:52:38 -07002015 static void ReleaseStringCritical(JNIEnv* env, jstring java_string, const jchar* chars) {
Elliott Hughes75770752011-08-24 17:52:38 -07002016 return ReleaseStringChars(env, java_string, chars);
Elliott Hughescdf53122011-08-19 15:46:09 -07002017 }
2018
Elliott Hughes75770752011-08-24 17:52:38 -07002019 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
Elliott Hughes75770752011-08-24 17:52:38 -07002020 if (java_string == NULL) {
2021 return NULL;
2022 }
2023 if (is_copy != NULL) {
2024 *is_copy = JNI_TRUE;
2025 }
Ian Rogersef28b142012-11-30 14:22:18 -08002026 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002027 String* s = soa.Decode<String*>(java_string);
Elliott Hughes75770752011-08-24 17:52:38 -07002028 size_t byte_count = s->GetUtfLength();
2029 char* bytes = new char[byte_count + 1];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002030 CHECK(bytes != NULL); // bionic aborts anyway.
Elliott Hughes75770752011-08-24 17:52:38 -07002031 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
2032 ConvertUtf16ToModifiedUtf8(bytes, chars, s->GetLength());
2033 bytes[byte_count] = '\0';
2034 return bytes;
Elliott Hughesb465ab02011-08-24 11:21:21 -07002035 }
2036
Elliott Hughes75770752011-08-24 17:52:38 -07002037 static void ReleaseStringUTFChars(JNIEnv* env, jstring, const char* chars) {
Elliott Hughes75770752011-08-24 17:52:38 -07002038 delete[] chars;
Elliott Hughesb465ab02011-08-24 11:21:21 -07002039 }
2040
Elliott Hughesbd935992011-08-22 11:59:34 -07002041 static jsize GetArrayLength(JNIEnv* env, jarray java_array) {
Ian Rogersbc939662013-08-15 10:26:54 -07002042 CHECK_NON_NULL_ARGUMENT(GetArrayLength, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002043 ScopedObjectAccess soa(env);
2044 Object* obj = soa.Decode<Object*>(java_array);
Brian Carlstromea46f952013-07-30 01:26:50 -07002045 if (UNLIKELY(!obj->IsArrayInstance())) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002046 JniAbortF("GetArrayLength", "not an array: %s", PrettyTypeOf(obj).c_str());
2047 }
Elliott Hughesbd935992011-08-22 11:59:34 -07002048 Array* array = obj->AsArray();
2049 return array->GetLength();
Elliott Hughescdf53122011-08-19 15:46:09 -07002050 }
2051
Elliott Hughes814e4032011-08-23 12:07:56 -07002052 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) {
Ian Rogersbc939662013-08-15 10:26:54 -07002053 CHECK_NON_NULL_ARGUMENT(GetObjectArrayElement, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002054 ScopedObjectAccess soa(env);
2055 ObjectArray<Object>* array = soa.Decode<ObjectArray<Object>*>(java_array);
2056 return soa.AddLocalReference<jobject>(array->Get(index));
Elliott Hughescdf53122011-08-19 15:46:09 -07002057 }
2058
Ian Rogersbc939662013-08-15 10:26:54 -07002059 static void SetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index,
2060 jobject java_value) {
2061 CHECK_NON_NULL_ARGUMENT(SetObjectArrayElement, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002062 ScopedObjectAccess soa(env);
2063 ObjectArray<Object>* array = soa.Decode<ObjectArray<Object>*>(java_array);
2064 Object* value = soa.Decode<Object*>(java_value);
Elliott Hughescdf53122011-08-19 15:46:09 -07002065 array->Set(index, value);
2066 }
2067
2068 static jbooleanArray NewBooleanArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002069 ScopedObjectAccess soa(env);
2070 return NewPrimitiveArray<jbooleanArray, BooleanArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002071 }
2072
2073 static jbyteArray NewByteArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002074 ScopedObjectAccess soa(env);
2075 return NewPrimitiveArray<jbyteArray, ByteArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002076 }
2077
2078 static jcharArray NewCharArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002079 ScopedObjectAccess soa(env);
2080 return NewPrimitiveArray<jcharArray, CharArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002081 }
2082
2083 static jdoubleArray NewDoubleArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002084 ScopedObjectAccess soa(env);
2085 return NewPrimitiveArray<jdoubleArray, DoubleArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002086 }
2087
2088 static jfloatArray NewFloatArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002089 ScopedObjectAccess soa(env);
2090 return NewPrimitiveArray<jfloatArray, FloatArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002091 }
2092
2093 static jintArray NewIntArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002094 ScopedObjectAccess soa(env);
2095 return NewPrimitiveArray<jintArray, IntArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002096 }
2097
2098 static jlongArray NewLongArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002099 ScopedObjectAccess soa(env);
2100 return NewPrimitiveArray<jlongArray, LongArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002101 }
2102
2103 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass element_jclass, jobject initial_element) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002104 if (length < 0) {
2105 JniAbortF("NewObjectArray", "negative array length: %d", length);
2106 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002107
2108 // Compute the array class corresponding to the given element class.
Brian Carlstromea46f952013-07-30 01:26:50 -07002109 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002110 Class* element_class = soa.Decode<Class*>(element_jclass);
Elliott Hughescdf53122011-08-19 15:46:09 -07002111 std::string descriptor;
2112 descriptor += "[";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002113 descriptor += ClassHelper(element_class).GetDescriptor();
Elliott Hughescdf53122011-08-19 15:46:09 -07002114
2115 // Find the class.
Elliott Hughes75770752011-08-24 17:52:38 -07002116 ScopedLocalRef<jclass> java_array_class(env, FindClass(env, descriptor.c_str()));
2117 if (java_array_class.get() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002118 return NULL;
2119 }
2120
Elliott Hughes75770752011-08-24 17:52:38 -07002121 // Allocate and initialize if necessary.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002122 Class* array_class = soa.Decode<Class*>(java_array_class.get());
Ian Rogers50b35e22012-10-04 10:09:15 -07002123 ObjectArray<Object>* result = ObjectArray<Object>::Alloc(soa.Self(), array_class, length);
Elliott Hughes75770752011-08-24 17:52:38 -07002124 if (initial_element != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002125 Object* initial_object = soa.Decode<Object*>(initial_element);
Elliott Hughes75770752011-08-24 17:52:38 -07002126 for (jsize i = 0; i < length; ++i) {
2127 result->Set(i, initial_object);
2128 }
2129 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 return soa.AddLocalReference<jobjectArray>(result);
Elliott Hughescdf53122011-08-19 15:46:09 -07002131 }
2132
2133 static jshortArray NewShortArray(JNIEnv* env, jsize length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002134 ScopedObjectAccess soa(env);
2135 return NewPrimitiveArray<jshortArray, ShortArray>(soa, length);
Elliott Hughescdf53122011-08-19 15:46:09 -07002136 }
2137
Ian Rogersa15e67d2012-02-28 13:51:55 -08002138 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray java_array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002139 CHECK_NON_NULL_ARGUMENT(GetPrimitiveArrayCritical, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002140 ScopedObjectAccess soa(env);
2141 Array* array = soa.Decode<Array*>(java_array);
2142 PinPrimitiveArray(soa, array);
Ian Rogersa15e67d2012-02-28 13:51:55 -08002143 if (is_copy != NULL) {
2144 *is_copy = JNI_FALSE;
2145 }
2146 return array->GetRawData(array->GetClass()->GetComponentSize());
Elliott Hughesb465ab02011-08-24 11:21:21 -07002147 }
2148
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002149 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void*, jint mode) {
Ian Rogersbc939662013-08-15 10:26:54 -07002150 CHECK_NON_NULL_ARGUMENT(ReleasePrimitiveArrayCritical, array);
Ian Rogersef28b142012-11-30 14:22:18 -08002151 ReleasePrimitiveArray(env, array, mode);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002152 }
2153
Elliott Hughes75770752011-08-24 17:52:38 -07002154 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002155 CHECK_NON_NULL_ARGUMENT(GetBooleanArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002156 ScopedObjectAccess soa(env);
2157 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002158 }
2159
Elliott Hughes75770752011-08-24 17:52:38 -07002160 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002161 CHECK_NON_NULL_ARGUMENT(GetByteArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002162 ScopedObjectAccess soa(env);
2163 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002164 }
2165
Elliott Hughes75770752011-08-24 17:52:38 -07002166 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002167 CHECK_NON_NULL_ARGUMENT(GetCharArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002168 ScopedObjectAccess soa(env);
2169 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002170 }
2171
Elliott Hughes75770752011-08-24 17:52:38 -07002172 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002173 CHECK_NON_NULL_ARGUMENT(GetDoubleArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002174 ScopedObjectAccess soa(env);
2175 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002176 }
2177
Elliott Hughes75770752011-08-24 17:52:38 -07002178 static jfloat* GetFloatArrayElements(JNIEnv* env, jfloatArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002179 CHECK_NON_NULL_ARGUMENT(GetFloatArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002180 ScopedObjectAccess soa(env);
2181 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002182 }
2183
Elliott Hughes75770752011-08-24 17:52:38 -07002184 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002185 CHECK_NON_NULL_ARGUMENT(GetIntArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002186 ScopedObjectAccess soa(env);
2187 return GetPrimitiveArray<jintArray, jint*, IntArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002188 }
2189
Elliott Hughes75770752011-08-24 17:52:38 -07002190 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002191 CHECK_NON_NULL_ARGUMENT(GetLongArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002192 ScopedObjectAccess soa(env);
2193 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002194 }
2195
Elliott Hughes75770752011-08-24 17:52:38 -07002196 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
Ian Rogersbc939662013-08-15 10:26:54 -07002197 CHECK_NON_NULL_ARGUMENT(GetShortArrayElements, array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002198 ScopedObjectAccess soa(env);
2199 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(soa, array, is_copy);
Elliott Hughescdf53122011-08-19 15:46:09 -07002200 }
2201
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002202 static void ReleaseBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002203 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002204 }
2205
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002206 static void ReleaseByteArrayElements(JNIEnv* env, jbyteArray array, jbyte*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002207 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002208 }
2209
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002210 static void ReleaseCharArrayElements(JNIEnv* env, jcharArray array, jchar*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002211 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002212 }
2213
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002214 static void ReleaseDoubleArrayElements(JNIEnv* env, jdoubleArray array, jdouble*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002215 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002216 }
2217
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002218 static void ReleaseFloatArrayElements(JNIEnv* env, jfloatArray array, jfloat*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002219 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002220 }
2221
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002222 static void ReleaseIntArrayElements(JNIEnv* env, jintArray array, jint*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002223 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002224 }
2225
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002226 static void ReleaseLongArrayElements(JNIEnv* env, jlongArray array, jlong*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002227 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002228 }
2229
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002230 static void ReleaseShortArrayElements(JNIEnv* env, jshortArray array, jshort*, jint mode) {
Ian Rogersef28b142012-11-30 14:22:18 -08002231 ReleasePrimitiveArray(env, array, mode);
Elliott Hughescdf53122011-08-19 15:46:09 -07002232 }
2233
Ian Rogersbc939662013-08-15 10:26:54 -07002234 static void GetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length,
2235 jboolean* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002236 ScopedObjectAccess soa(env);
2237 GetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002238 }
2239
Ian Rogersbc939662013-08-15 10:26:54 -07002240 static void GetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length,
2241 jbyte* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002242 ScopedObjectAccess soa(env);
2243 GetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002244 }
2245
Ian Rogersbc939662013-08-15 10:26:54 -07002246 static void GetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length,
2247 jchar* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002248 ScopedObjectAccess soa(env);
2249 GetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002250 }
2251
Ian Rogersbc939662013-08-15 10:26:54 -07002252 static void GetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length,
2253 jdouble* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002254 ScopedObjectAccess soa(env);
2255 GetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002256 }
2257
Ian Rogersbc939662013-08-15 10:26:54 -07002258 static void GetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length,
2259 jfloat* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002260 ScopedObjectAccess soa(env);
2261 GetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002262 }
2263
Ian Rogersbc939662013-08-15 10:26:54 -07002264 static void GetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length,
2265 jint* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002266 ScopedObjectAccess soa(env);
2267 GetPrimitiveArrayRegion<jintArray, jint, IntArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002268 }
2269
Ian Rogersbc939662013-08-15 10:26:54 -07002270 static void GetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length,
2271 jlong* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002272 ScopedObjectAccess soa(env);
2273 GetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002274 }
2275
Ian Rogersbc939662013-08-15 10:26:54 -07002276 static void GetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length,
2277 jshort* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002278 ScopedObjectAccess soa(env);
2279 GetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002280 }
2281
Ian Rogersbc939662013-08-15 10:26:54 -07002282 static void SetBooleanArrayRegion(JNIEnv* env, jbooleanArray array, jsize start, jsize length,
2283 const jboolean* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002284 ScopedObjectAccess soa(env);
2285 SetPrimitiveArrayRegion<jbooleanArray, jboolean, BooleanArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002286 }
2287
Ian Rogersbc939662013-08-15 10:26:54 -07002288 static void SetByteArrayRegion(JNIEnv* env, jbyteArray array, jsize start, jsize length,
2289 const jbyte* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002290 ScopedObjectAccess soa(env);
2291 SetPrimitiveArrayRegion<jbyteArray, jbyte, ByteArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002292 }
2293
Ian Rogersbc939662013-08-15 10:26:54 -07002294 static void SetCharArrayRegion(JNIEnv* env, jcharArray array, jsize start, jsize length,
2295 const jchar* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002296 ScopedObjectAccess soa(env);
2297 SetPrimitiveArrayRegion<jcharArray, jchar, CharArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002298 }
2299
Ian Rogersbc939662013-08-15 10:26:54 -07002300 static void SetDoubleArrayRegion(JNIEnv* env, jdoubleArray array, jsize start, jsize length,
2301 const jdouble* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002302 ScopedObjectAccess soa(env);
2303 SetPrimitiveArrayRegion<jdoubleArray, jdouble, DoubleArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002304 }
2305
Ian Rogersbc939662013-08-15 10:26:54 -07002306 static void SetFloatArrayRegion(JNIEnv* env, jfloatArray array, jsize start, jsize length,
2307 const jfloat* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002308 ScopedObjectAccess soa(env);
2309 SetPrimitiveArrayRegion<jfloatArray, jfloat, FloatArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002310 }
2311
Ian Rogersbc939662013-08-15 10:26:54 -07002312 static void SetIntArrayRegion(JNIEnv* env, jintArray array, jsize start, jsize length,
2313 const jint* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002314 ScopedObjectAccess soa(env);
2315 SetPrimitiveArrayRegion<jintArray, jint, IntArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002316 }
2317
Ian Rogersbc939662013-08-15 10:26:54 -07002318 static void SetLongArrayRegion(JNIEnv* env, jlongArray array, jsize start, jsize length,
2319 const jlong* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002320 ScopedObjectAccess soa(env);
2321 SetPrimitiveArrayRegion<jlongArray, jlong, LongArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002322 }
2323
Ian Rogersbc939662013-08-15 10:26:54 -07002324 static void SetShortArrayRegion(JNIEnv* env, jshortArray array, jsize start, jsize length,
2325 const jshort* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002326 ScopedObjectAccess soa(env);
2327 SetPrimitiveArrayRegion<jshortArray, jshort, ShortArray>(soa, array, start, length, buf);
Elliott Hughescdf53122011-08-19 15:46:09 -07002328 }
2329
Ian Rogersbc939662013-08-15 10:26:54 -07002330 static jint RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods,
2331 jint method_count) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002332 return RegisterNativeMethods(env, java_class, methods, method_count, true);
2333 }
2334
Ian Rogersbc939662013-08-15 10:26:54 -07002335 static jint RegisterNativeMethods(JNIEnv* env, jclass java_class, const JNINativeMethod* methods,
2336 jint method_count, bool return_errors) {
2337 if (UNLIKELY(method_count < 0)) {
2338 JniAbortF("RegisterNatives", "method_cound == %d", method_count);
2339 return JNI_ERR; // Not reached.
2340 }
2341 CHECK_NON_NULL_ARGUMENT(RegisterNatives, java_class);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002342 ScopedObjectAccess soa(env);
2343 Class* c = soa.Decode<Class*>(java_class);
Ian Rogersbc939662013-08-15 10:26:54 -07002344 if (UNLIKELY(method_count == 0)) {
2345 LOG(WARNING) << "JNI RegisterNativeMethods: attempt to register 0 native methods for "
2346 << PrettyDescriptor(c);
2347 return JNI_OK;
2348 }
2349 CHECK_NON_NULL_ARGUMENT(RegisterNatives, methods);
2350 for (jint i = 0; i < method_count; ++i) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002351 const char* name = methods[i].name;
2352 const char* sig = methods[i].signature;
2353
2354 if (*sig == '!') {
2355 // TODO: fast jni. it's too noisy to log all these.
2356 ++sig;
2357 }
2358
Brian Carlstromea46f952013-07-30 01:26:50 -07002359 ArtMethod* m = c->FindDirectMethod(name, sig);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002360 if (m == NULL) {
2361 m = c->FindVirtualMethod(name, sig);
Elliott Hughescdf53122011-08-19 15:46:09 -07002362 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002363 if (m == NULL) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002364 LOG(return_errors ? ERROR : FATAL) << "Failed to register native method "
Ian Rogersbc939662013-08-15 10:26:54 -07002365 << PrettyDescriptor(c) << "." << name << sig;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002366 ThrowNoSuchMethodError(soa, c, name, sig, "static or non-static");
Elliott Hughescdf53122011-08-19 15:46:09 -07002367 return JNI_ERR;
Elliott Hughes5174fe62011-08-23 15:12:35 -07002368 } else if (!m->IsNative()) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08002369 LOG(return_errors ? ERROR : FATAL) << "Failed to register non-native method "
Ian Rogersbc939662013-08-15 10:26:54 -07002370 << PrettyDescriptor(c) << "." << name << sig
2371 << " as native";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002372 ThrowNoSuchMethodError(soa, c, name, sig, "native");
Elliott Hughescdf53122011-08-19 15:46:09 -07002373 return JNI_ERR;
2374 }
Elliott Hughes5174fe62011-08-23 15:12:35 -07002375
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002376 VLOG(jni) << "[Registering JNI native method " << PrettyMethod(m) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002377
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002378 m->RegisterNative(soa.Self(), methods[i].fnPtr);
Elliott Hughescdf53122011-08-19 15:46:09 -07002379 }
2380 return JNI_OK;
2381 }
2382
Elliott Hughes5174fe62011-08-23 15:12:35 -07002383 static jint UnregisterNatives(JNIEnv* env, jclass java_class) {
Ian Rogersbc939662013-08-15 10:26:54 -07002384 CHECK_NON_NULL_ARGUMENT(UnregisterNatives, java_class);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002385 ScopedObjectAccess soa(env);
2386 Class* c = soa.Decode<Class*>(java_class);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002387
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002388 VLOG(jni) << "[Unregistering JNI native methods for " << PrettyClass(c) << "]";
Elliott Hughes5174fe62011-08-23 15:12:35 -07002389
2390 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07002391 ArtMethod* m = c->GetDirectMethod(i);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002392 if (m->IsNative()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002393 m->UnregisterNative(soa.Self());
Elliott Hughes5174fe62011-08-23 15:12:35 -07002394 }
2395 }
2396 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07002397 ArtMethod* m = c->GetVirtualMethod(i);
Elliott Hughes5174fe62011-08-23 15:12:35 -07002398 if (m->IsNative()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002399 m->UnregisterNative(soa.Self());
Elliott Hughes5174fe62011-08-23 15:12:35 -07002400 }
2401 }
2402
2403 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002404 }
2405
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002406 static jint MonitorEnter(JNIEnv* env, jobject java_object)
2407 EXCLUSIVE_LOCK_FUNCTION(monitor_lock_) {
Ian Rogersbc939662013-08-15 10:26:54 -07002408 CHECK_NON_NULL_ARGUMENT(MonitorEnter, java_object);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002409 ScopedObjectAccess soa(env);
2410 Object* o = soa.Decode<Object*>(java_object);
2411 o->MonitorEnter(soa.Self());
2412 if (soa.Self()->IsExceptionPending()) {
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002413 return JNI_ERR;
2414 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002415 soa.Env()->monitors.Add(o);
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002416 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002417 }
2418
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002419 static jint MonitorExit(JNIEnv* env, jobject java_object)
2420 UNLOCK_FUNCTION(monitor_lock_) {
Ian Rogersbc939662013-08-15 10:26:54 -07002421 CHECK_NON_NULL_ARGUMENT(MonitorExit, java_object);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002422 ScopedObjectAccess soa(env);
2423 Object* o = soa.Decode<Object*>(java_object);
2424 o->MonitorExit(soa.Self());
2425 if (soa.Self()->IsExceptionPending()) {
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002426 return JNI_ERR;
2427 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002428 soa.Env()->monitors.Remove(o);
Elliott Hughesab7b9dc2012-03-27 13:16:29 -07002429 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002430 }
2431
2432 static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
Ian Rogersbc939662013-08-15 10:26:54 -07002433 CHECK_NON_NULL_ARGUMENT(GetJavaVM, vm);
Elliott Hughescdf53122011-08-19 15:46:09 -07002434 Runtime* runtime = Runtime::Current();
2435 if (runtime != NULL) {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002436 *vm = runtime->GetJavaVM();
Elliott Hughescdf53122011-08-19 15:46:09 -07002437 } else {
2438 *vm = NULL;
2439 }
2440 return (*vm != NULL) ? JNI_OK : JNI_ERR;
2441 }
2442
Elliott Hughescdf53122011-08-19 15:46:09 -07002443 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002444 if (capacity < 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002445 JniAbortF("NewDirectByteBuffer", "negative buffer capacity: %lld", capacity);
Elliott Hughes96a98872012-12-19 14:21:15 -08002446 }
Elliott Hughes11a796e2012-12-19 14:42:57 -08002447 if (address == NULL && capacity != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002448 JniAbortF("NewDirectByteBuffer", "non-zero capacity for NULL pointer: %lld", capacity);
Elliott Hughes96a98872012-12-19 14:21:15 -08002449 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002450
Elliott Hughes96a98872012-12-19 14:21:15 -08002451 // At the moment, the Java side is limited to 32 bits.
Elliott Hughesb465ab02011-08-24 11:21:21 -07002452 CHECK_LE(reinterpret_cast<uintptr_t>(address), 0xffffffff);
2453 CHECK_LE(capacity, 0xffffffff);
Elliott Hughesb5681212013-03-29 17:29:22 -07002454 jlong address_arg = reinterpret_cast<jlong>(address);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002455 jint capacity_arg = static_cast<jint>(capacity);
2456
Elliott Hughesaecb5f32013-03-28 08:27:38 -07002457 jobject result = env->NewObject(WellKnownClasses::java_nio_DirectByteBuffer,
2458 WellKnownClasses::java_nio_DirectByteBuffer_init,
Elliott Hugheseac76672012-05-24 21:56:51 -07002459 address_arg, capacity_arg);
Ian Rogersef28b142012-11-30 14:22:18 -08002460 return static_cast<JNIEnvExt*>(env)->self->IsExceptionPending() ? NULL : result;
Elliott Hughescdf53122011-08-19 15:46:09 -07002461 }
2462
Elliott Hughesb465ab02011-08-24 11:21:21 -07002463 static void* GetDirectBufferAddress(JNIEnv* env, jobject java_buffer) {
Jeff Hao534f2b62013-07-10 15:29:36 -07002464 return reinterpret_cast<void*>(env->GetLongField(java_buffer, WellKnownClasses::java_nio_DirectByteBuffer_effectiveDirectAddress));
Elliott Hughescdf53122011-08-19 15:46:09 -07002465 }
2466
Elliott Hughesb465ab02011-08-24 11:21:21 -07002467 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject java_buffer) {
Elliott Hughesaecb5f32013-03-28 08:27:38 -07002468 return static_cast<jlong>(env->GetIntField(java_buffer, WellKnownClasses::java_nio_DirectByteBuffer_capacity));
Elliott Hughescdf53122011-08-19 15:46:09 -07002469 }
2470
Elliott Hughesb465ab02011-08-24 11:21:21 -07002471 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject java_object) {
Ian Rogersbc939662013-08-15 10:26:54 -07002472 CHECK_NON_NULL_ARGUMENT(GetObjectRefType, java_object);
Elliott Hughesb465ab02011-08-24 11:21:21 -07002473
2474 // Do we definitely know what kind of reference this is?
2475 IndirectRef ref = reinterpret_cast<IndirectRef>(java_object);
2476 IndirectRefKind kind = GetIndirectRefKind(ref);
2477 switch (kind) {
2478 case kLocal:
Ian Rogersef28b142012-11-30 14:22:18 -08002479 if (static_cast<JNIEnvExt*>(env)->locals.Get(ref) != kInvalidIndirectRefObject) {
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002480 return JNILocalRefType;
2481 }
2482 return JNIInvalidRefType;
Elliott Hughesb465ab02011-08-24 11:21:21 -07002483 case kGlobal:
2484 return JNIGlobalRefType;
2485 case kWeakGlobal:
2486 return JNIWeakGlobalRefType;
2487 case kSirtOrInvalid:
2488 // Is it in a stack IRT?
Ian Rogersef28b142012-11-30 14:22:18 -08002489 if (static_cast<JNIEnvExt*>(env)->self->SirtContains(java_object)) {
Elliott Hughesb465ab02011-08-24 11:21:21 -07002490 return JNILocalRefType;
2491 }
2492
Ian Rogersef28b142012-11-30 14:22:18 -08002493 if (!static_cast<JNIEnvExt*>(env)->vm->work_around_app_jni_bugs) {
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07002494 return JNIInvalidRefType;
2495 }
2496
Elliott Hughesb465ab02011-08-24 11:21:21 -07002497 // If we're handing out direct pointers, check whether it's a direct pointer
2498 // to a local reference.
Ian Rogersef28b142012-11-30 14:22:18 -08002499 {
2500 ScopedObjectAccess soa(env);
2501 if (soa.Decode<Object*>(java_object) == reinterpret_cast<Object*>(java_object)) {
2502 if (soa.Env()->locals.ContainsDirectPointer(reinterpret_cast<Object*>(java_object))) {
2503 return JNILocalRefType;
2504 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002505 }
2506 }
Elliott Hughesb465ab02011-08-24 11:21:21 -07002507 return JNIInvalidRefType;
2508 }
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08002509 LOG(FATAL) << "IndirectRefKind[" << kind << "]";
2510 return JNIInvalidRefType;
Elliott Hughescdf53122011-08-19 15:46:09 -07002511 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002512
2513 private:
Ian Rogersef28b142012-11-30 14:22:18 -08002514 static jint EnsureLocalCapacity(JNIEnv* env, jint desired_capacity,
2515 const char* caller) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002516 // TODO: we should try to expand the table if necessary.
2517 if (desired_capacity < 1 || desired_capacity > static_cast<jint>(kLocalsMax)) {
2518 LOG(ERROR) << "Invalid capacity given to " << caller << ": " << desired_capacity;
2519 return JNI_ERR;
2520 }
2521 // TODO: this isn't quite right, since "capacity" includes holes.
Ian Rogersef28b142012-11-30 14:22:18 -08002522 size_t capacity = static_cast<JNIEnvExt*>(env)->locals.Capacity();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002523 bool okay = (static_cast<jint>(kLocalsMax - capacity) >= desired_capacity);
2524 if (!okay) {
Ian Rogersef28b142012-11-30 14:22:18 -08002525 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002526 soa.Self()->ThrowOutOfMemoryError(caller);
2527 }
2528 return okay ? JNI_OK : JNI_ERR;
2529 }
2530
2531 template<typename JniT, typename ArtT>
2532 static JniT NewPrimitiveArray(const ScopedObjectAccess& soa, jsize length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002533 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes96a98872012-12-19 14:21:15 -08002534 if (length < 0) {
2535 JniAbortF("NewPrimitiveArray", "negative array length: %d", length);
2536 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002537 ArtT* result = ArtT::Alloc(soa.Self(), length);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002538 return soa.AddLocalReference<JniT>(result);
2539 }
2540
2541 template <typename ArrayT, typename CArrayT, typename ArtArrayT>
2542 static CArrayT GetPrimitiveArray(ScopedObjectAccess& soa, ArrayT java_array,
2543 jboolean* is_copy)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002544 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002545 ArtArrayT* array = soa.Decode<ArtArrayT*>(java_array);
2546 PinPrimitiveArray(soa, array);
2547 if (is_copy != NULL) {
2548 *is_copy = JNI_FALSE;
2549 }
2550 return array->GetData();
2551 }
2552
2553 template <typename ArrayT>
Ian Rogersef28b142012-11-30 14:22:18 -08002554 static void ReleasePrimitiveArray(JNIEnv* env, ArrayT java_array, jint mode) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002555 if (mode != JNI_COMMIT) {
Ian Rogersef28b142012-11-30 14:22:18 -08002556 ScopedObjectAccess soa(env);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002557 Array* array = soa.Decode<Array*>(java_array);
2558 UnpinPrimitiveArray(soa, array);
2559 }
2560 }
2561
2562 template <typename JavaArrayT, typename JavaT, typename ArrayT>
2563 static void GetPrimitiveArrayRegion(ScopedObjectAccess& soa, JavaArrayT java_array,
2564 jsize start, jsize length, JavaT* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002565 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersbc939662013-08-15 10:26:54 -07002566 CHECK_NON_NULL_ARGUMENT(GetPrimitiveArrayRegion, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002567 ArrayT* array = soa.Decode<ArrayT*>(java_array);
2568 if (start < 0 || length < 0 || start + length > array->GetLength()) {
2569 ThrowAIOOBE(soa, array, start, length, "src");
2570 } else {
Ian Rogersbc939662013-08-15 10:26:54 -07002571 CHECK_NON_NULL_ARGUMENT(GetPrimitiveArrayRegion, buf);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002572 JavaT* data = array->GetData();
2573 memcpy(buf, data + start, length * sizeof(JavaT));
2574 }
2575 }
2576
2577 template <typename JavaArrayT, typename JavaT, typename ArrayT>
2578 static void SetPrimitiveArrayRegion(ScopedObjectAccess& soa, JavaArrayT java_array,
2579 jsize start, jsize length, const JavaT* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002580 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersbc939662013-08-15 10:26:54 -07002581 CHECK_NON_NULL_ARGUMENT(SetPrimitiveArrayRegion, java_array);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002582 ArrayT* array = soa.Decode<ArrayT*>(java_array);
2583 if (start < 0 || length < 0 || start + length > array->GetLength()) {
2584 ThrowAIOOBE(soa, array, start, length, "dst");
2585 } else {
Ian Rogersbc939662013-08-15 10:26:54 -07002586 CHECK_NON_NULL_ARGUMENT(SetPrimitiveArrayRegion, buf);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002587 JavaT* data = array->GetData();
2588 memcpy(data + start, buf, length * sizeof(JavaT));
2589 }
2590 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002591};
Carl Shapiroea4dca82011-08-01 13:45:38 -07002592
Elliott Hughes88c5c352012-03-15 18:49:48 -07002593const JNINativeInterface gJniNativeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002594 NULL, // reserved0.
2595 NULL, // reserved1.
2596 NULL, // reserved2.
2597 NULL, // reserved3.
Elliott Hughescdf53122011-08-19 15:46:09 -07002598 JNI::GetVersion,
2599 JNI::DefineClass,
2600 JNI::FindClass,
2601 JNI::FromReflectedMethod,
2602 JNI::FromReflectedField,
2603 JNI::ToReflectedMethod,
2604 JNI::GetSuperclass,
2605 JNI::IsAssignableFrom,
2606 JNI::ToReflectedField,
2607 JNI::Throw,
2608 JNI::ThrowNew,
2609 JNI::ExceptionOccurred,
2610 JNI::ExceptionDescribe,
2611 JNI::ExceptionClear,
2612 JNI::FatalError,
2613 JNI::PushLocalFrame,
2614 JNI::PopLocalFrame,
2615 JNI::NewGlobalRef,
2616 JNI::DeleteGlobalRef,
2617 JNI::DeleteLocalRef,
2618 JNI::IsSameObject,
2619 JNI::NewLocalRef,
2620 JNI::EnsureLocalCapacity,
2621 JNI::AllocObject,
2622 JNI::NewObject,
2623 JNI::NewObjectV,
2624 JNI::NewObjectA,
2625 JNI::GetObjectClass,
2626 JNI::IsInstanceOf,
2627 JNI::GetMethodID,
2628 JNI::CallObjectMethod,
2629 JNI::CallObjectMethodV,
2630 JNI::CallObjectMethodA,
2631 JNI::CallBooleanMethod,
2632 JNI::CallBooleanMethodV,
2633 JNI::CallBooleanMethodA,
2634 JNI::CallByteMethod,
2635 JNI::CallByteMethodV,
2636 JNI::CallByteMethodA,
2637 JNI::CallCharMethod,
2638 JNI::CallCharMethodV,
2639 JNI::CallCharMethodA,
2640 JNI::CallShortMethod,
2641 JNI::CallShortMethodV,
2642 JNI::CallShortMethodA,
2643 JNI::CallIntMethod,
2644 JNI::CallIntMethodV,
2645 JNI::CallIntMethodA,
2646 JNI::CallLongMethod,
2647 JNI::CallLongMethodV,
2648 JNI::CallLongMethodA,
2649 JNI::CallFloatMethod,
2650 JNI::CallFloatMethodV,
2651 JNI::CallFloatMethodA,
2652 JNI::CallDoubleMethod,
2653 JNI::CallDoubleMethodV,
2654 JNI::CallDoubleMethodA,
2655 JNI::CallVoidMethod,
2656 JNI::CallVoidMethodV,
2657 JNI::CallVoidMethodA,
2658 JNI::CallNonvirtualObjectMethod,
2659 JNI::CallNonvirtualObjectMethodV,
2660 JNI::CallNonvirtualObjectMethodA,
2661 JNI::CallNonvirtualBooleanMethod,
2662 JNI::CallNonvirtualBooleanMethodV,
2663 JNI::CallNonvirtualBooleanMethodA,
2664 JNI::CallNonvirtualByteMethod,
2665 JNI::CallNonvirtualByteMethodV,
2666 JNI::CallNonvirtualByteMethodA,
2667 JNI::CallNonvirtualCharMethod,
2668 JNI::CallNonvirtualCharMethodV,
2669 JNI::CallNonvirtualCharMethodA,
2670 JNI::CallNonvirtualShortMethod,
2671 JNI::CallNonvirtualShortMethodV,
2672 JNI::CallNonvirtualShortMethodA,
2673 JNI::CallNonvirtualIntMethod,
2674 JNI::CallNonvirtualIntMethodV,
2675 JNI::CallNonvirtualIntMethodA,
2676 JNI::CallNonvirtualLongMethod,
2677 JNI::CallNonvirtualLongMethodV,
2678 JNI::CallNonvirtualLongMethodA,
2679 JNI::CallNonvirtualFloatMethod,
2680 JNI::CallNonvirtualFloatMethodV,
2681 JNI::CallNonvirtualFloatMethodA,
2682 JNI::CallNonvirtualDoubleMethod,
2683 JNI::CallNonvirtualDoubleMethodV,
2684 JNI::CallNonvirtualDoubleMethodA,
2685 JNI::CallNonvirtualVoidMethod,
2686 JNI::CallNonvirtualVoidMethodV,
2687 JNI::CallNonvirtualVoidMethodA,
2688 JNI::GetFieldID,
2689 JNI::GetObjectField,
2690 JNI::GetBooleanField,
2691 JNI::GetByteField,
2692 JNI::GetCharField,
2693 JNI::GetShortField,
2694 JNI::GetIntField,
2695 JNI::GetLongField,
2696 JNI::GetFloatField,
2697 JNI::GetDoubleField,
2698 JNI::SetObjectField,
2699 JNI::SetBooleanField,
2700 JNI::SetByteField,
2701 JNI::SetCharField,
2702 JNI::SetShortField,
2703 JNI::SetIntField,
2704 JNI::SetLongField,
2705 JNI::SetFloatField,
2706 JNI::SetDoubleField,
2707 JNI::GetStaticMethodID,
2708 JNI::CallStaticObjectMethod,
2709 JNI::CallStaticObjectMethodV,
2710 JNI::CallStaticObjectMethodA,
2711 JNI::CallStaticBooleanMethod,
2712 JNI::CallStaticBooleanMethodV,
2713 JNI::CallStaticBooleanMethodA,
2714 JNI::CallStaticByteMethod,
2715 JNI::CallStaticByteMethodV,
2716 JNI::CallStaticByteMethodA,
2717 JNI::CallStaticCharMethod,
2718 JNI::CallStaticCharMethodV,
2719 JNI::CallStaticCharMethodA,
2720 JNI::CallStaticShortMethod,
2721 JNI::CallStaticShortMethodV,
2722 JNI::CallStaticShortMethodA,
2723 JNI::CallStaticIntMethod,
2724 JNI::CallStaticIntMethodV,
2725 JNI::CallStaticIntMethodA,
2726 JNI::CallStaticLongMethod,
2727 JNI::CallStaticLongMethodV,
2728 JNI::CallStaticLongMethodA,
2729 JNI::CallStaticFloatMethod,
2730 JNI::CallStaticFloatMethodV,
2731 JNI::CallStaticFloatMethodA,
2732 JNI::CallStaticDoubleMethod,
2733 JNI::CallStaticDoubleMethodV,
2734 JNI::CallStaticDoubleMethodA,
2735 JNI::CallStaticVoidMethod,
2736 JNI::CallStaticVoidMethodV,
2737 JNI::CallStaticVoidMethodA,
2738 JNI::GetStaticFieldID,
2739 JNI::GetStaticObjectField,
2740 JNI::GetStaticBooleanField,
2741 JNI::GetStaticByteField,
2742 JNI::GetStaticCharField,
2743 JNI::GetStaticShortField,
2744 JNI::GetStaticIntField,
2745 JNI::GetStaticLongField,
2746 JNI::GetStaticFloatField,
2747 JNI::GetStaticDoubleField,
2748 JNI::SetStaticObjectField,
2749 JNI::SetStaticBooleanField,
2750 JNI::SetStaticByteField,
2751 JNI::SetStaticCharField,
2752 JNI::SetStaticShortField,
2753 JNI::SetStaticIntField,
2754 JNI::SetStaticLongField,
2755 JNI::SetStaticFloatField,
2756 JNI::SetStaticDoubleField,
2757 JNI::NewString,
2758 JNI::GetStringLength,
2759 JNI::GetStringChars,
2760 JNI::ReleaseStringChars,
2761 JNI::NewStringUTF,
2762 JNI::GetStringUTFLength,
2763 JNI::GetStringUTFChars,
2764 JNI::ReleaseStringUTFChars,
2765 JNI::GetArrayLength,
2766 JNI::NewObjectArray,
2767 JNI::GetObjectArrayElement,
2768 JNI::SetObjectArrayElement,
2769 JNI::NewBooleanArray,
2770 JNI::NewByteArray,
2771 JNI::NewCharArray,
2772 JNI::NewShortArray,
2773 JNI::NewIntArray,
2774 JNI::NewLongArray,
2775 JNI::NewFloatArray,
2776 JNI::NewDoubleArray,
2777 JNI::GetBooleanArrayElements,
2778 JNI::GetByteArrayElements,
2779 JNI::GetCharArrayElements,
2780 JNI::GetShortArrayElements,
2781 JNI::GetIntArrayElements,
2782 JNI::GetLongArrayElements,
2783 JNI::GetFloatArrayElements,
2784 JNI::GetDoubleArrayElements,
2785 JNI::ReleaseBooleanArrayElements,
2786 JNI::ReleaseByteArrayElements,
2787 JNI::ReleaseCharArrayElements,
2788 JNI::ReleaseShortArrayElements,
2789 JNI::ReleaseIntArrayElements,
2790 JNI::ReleaseLongArrayElements,
2791 JNI::ReleaseFloatArrayElements,
2792 JNI::ReleaseDoubleArrayElements,
2793 JNI::GetBooleanArrayRegion,
2794 JNI::GetByteArrayRegion,
2795 JNI::GetCharArrayRegion,
2796 JNI::GetShortArrayRegion,
2797 JNI::GetIntArrayRegion,
2798 JNI::GetLongArrayRegion,
2799 JNI::GetFloatArrayRegion,
2800 JNI::GetDoubleArrayRegion,
2801 JNI::SetBooleanArrayRegion,
2802 JNI::SetByteArrayRegion,
2803 JNI::SetCharArrayRegion,
2804 JNI::SetShortArrayRegion,
2805 JNI::SetIntArrayRegion,
2806 JNI::SetLongArrayRegion,
2807 JNI::SetFloatArrayRegion,
2808 JNI::SetDoubleArrayRegion,
2809 JNI::RegisterNatives,
2810 JNI::UnregisterNatives,
2811 JNI::MonitorEnter,
2812 JNI::MonitorExit,
2813 JNI::GetJavaVM,
2814 JNI::GetStringRegion,
2815 JNI::GetStringUTFRegion,
2816 JNI::GetPrimitiveArrayCritical,
2817 JNI::ReleasePrimitiveArrayCritical,
2818 JNI::GetStringCritical,
2819 JNI::ReleaseStringCritical,
2820 JNI::NewWeakGlobalRef,
2821 JNI::DeleteWeakGlobalRef,
2822 JNI::ExceptionCheck,
2823 JNI::NewDirectByteBuffer,
2824 JNI::GetDirectBufferAddress,
2825 JNI::GetDirectBufferCapacity,
2826 JNI::GetObjectRefType,
Carl Shapiroea4dca82011-08-01 13:45:38 -07002827};
2828
Elliott Hughes75770752011-08-24 17:52:38 -07002829JNIEnvExt::JNIEnvExt(Thread* self, JavaVMExt* vm)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002830 : self(self),
Elliott Hughes75770752011-08-24 17:52:38 -07002831 vm(vm),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002832 local_ref_cookie(IRT_FIRST_SEGMENT),
2833 locals(kLocalsInitial, kLocalsMax, kLocal),
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002834 check_jni(false),
Elliott Hughesbbd76712011-08-17 10:25:24 -07002835 critical(false),
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002836 monitors("monitors", kMonitorsInitial, kMonitorsMax) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002837 functions = unchecked_functions = &gJniNativeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002838 if (vm->check_jni) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002839 SetCheckJniEnabled(true);
Elliott Hughesa2501992011-08-26 19:39:54 -07002840 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -07002841 // The JniEnv local reference values must be at a consistent offset or else cross-compilation
2842 // errors will ensue.
2843 CHECK_EQ(JNIEnvExt::LocalRefCookieOffset().Int32Value(), 12);
2844 CHECK_EQ(JNIEnvExt::SegmentStateOffset().Int32Value(), 16);
Elliott Hughes40ef99e2011-08-11 17:44:34 -07002845}
2846
Elliott Hughesc1674ed2011-08-25 18:09:09 -07002847JNIEnvExt::~JNIEnvExt() {
2848}
2849
Elliott Hughes88c5c352012-03-15 18:49:48 -07002850void JNIEnvExt::SetCheckJniEnabled(bool enabled) {
2851 check_jni = enabled;
2852 functions = enabled ? GetCheckJniNativeInterface() : &gJniNativeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002853}
2854
Elliott Hughes73e66f72012-05-09 09:34:45 -07002855void JNIEnvExt::DumpReferenceTables(std::ostream& os) {
2856 locals.Dump(os);
2857 monitors.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002858}
2859
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002860void JNIEnvExt::PushFrame(int /*capacity*/) {
2861 // TODO: take 'capacity' into account.
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002862 stacked_local_ref_cookies.push_back(local_ref_cookie);
2863 local_ref_cookie = locals.GetSegmentState();
2864}
2865
2866void JNIEnvExt::PopFrame() {
2867 locals.SetSegmentState(local_ref_cookie);
2868 local_ref_cookie = stacked_local_ref_cookies.back();
2869 stacked_local_ref_cookies.pop_back();
2870}
2871
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002872Offset JNIEnvExt::SegmentStateOffset() {
2873 return Offset(OFFSETOF_MEMBER(JNIEnvExt, locals) +
2874 IndirectReferenceTable::SegmentStateOffset().Int32Value());
2875}
2876
Carl Shapiroea4dca82011-08-01 13:45:38 -07002877// JNI Invocation interface.
2878
Brian Carlstrombddf9762013-05-14 11:35:37 -07002879extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, JNIEnv** p_env, void* vm_args) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002880 const JavaVMInitArgs* args = static_cast<JavaVMInitArgs*>(vm_args);
Elliott Hughes83a25322013-03-14 11:18:53 -07002881 if (IsBadJniVersion(args->version)) {
2882 LOG(ERROR) << "Bad JNI version passed to CreateJavaVM: " << args->version;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002883 return JNI_EVERSION;
2884 }
2885 Runtime::Options options;
2886 for (int i = 0; i < args->nOptions; ++i) {
2887 JavaVMOption* option = &args->options[i];
Elliott Hughesf1a5adc2012-02-10 18:09:35 -08002888 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002889 }
2890 bool ignore_unrecognized = args->ignoreUnrecognized;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002891 if (!Runtime::Create(options, ignore_unrecognized)) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002892 return JNI_ERR;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002893 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002894 Runtime* runtime = Runtime::Current();
Brian Carlstrombd86bcc2013-03-10 20:26:16 -07002895 bool started = runtime->Start();
2896 if (!started) {
2897 delete Thread::Current()->GetJniEnv();
2898 delete runtime->GetJavaVM();
2899 LOG(WARNING) << "CreateJavaVM failed";
2900 return JNI_ERR;
2901 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07002902 *p_env = Thread::Current()->GetJniEnv();
2903 *p_vm = runtime->GetJavaVM();
2904 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002905}
2906
Elliott Hughesf2682d52011-08-15 16:37:04 -07002907extern "C" jint JNI_GetCreatedJavaVMs(JavaVM** vms, jsize, jsize* vm_count) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002908 Runtime* runtime = Runtime::Current();
2909 if (runtime == NULL) {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002910 *vm_count = 0;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002911 } else {
Elliott Hughesf2682d52011-08-15 16:37:04 -07002912 *vm_count = 1;
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002913 vms[0] = runtime->GetJavaVM();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002914 }
2915 return JNI_OK;
2916}
2917
2918// Historically unsupported.
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002919extern "C" jint JNI_GetDefaultJavaVMInitArgs(void* /*vm_args*/) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002920 return JNI_ERR;
2921}
2922
Elliott Hughescdf53122011-08-19 15:46:09 -07002923class JII {
2924 public:
2925 static jint DestroyJavaVM(JavaVM* vm) {
2926 if (vm == NULL) {
2927 return JNI_ERR;
Elliott Hughescdf53122011-08-19 15:46:09 -07002928 }
Elliott Hughes6a144332012-04-03 13:07:11 -07002929 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2930 delete raw_vm->runtime;
2931 return JNI_OK;
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002932 }
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002933
Elliott Hughescdf53122011-08-19 15:46:09 -07002934 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002935 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
Elliott Hughescdf53122011-08-19 15:46:09 -07002936 }
2937
2938 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughes75770752011-08-24 17:52:38 -07002939 return JII_AttachCurrentThread(vm, p_env, thr_args, true);
Elliott Hughescdf53122011-08-19 15:46:09 -07002940 }
2941
2942 static jint DetachCurrentThread(JavaVM* vm) {
Brian Carlstrom4d571432012-05-16 00:21:41 -07002943 if (vm == NULL || Thread::Current() == NULL) {
Elliott Hughescdf53122011-08-19 15:46:09 -07002944 return JNI_ERR;
Elliott Hughescdf53122011-08-19 15:46:09 -07002945 }
Elliott Hughes6a144332012-04-03 13:07:11 -07002946 JavaVMExt* raw_vm = reinterpret_cast<JavaVMExt*>(vm);
2947 Runtime* runtime = raw_vm->runtime;
2948 runtime->DetachCurrentThread();
2949 return JNI_OK;
Elliott Hughescdf53122011-08-19 15:46:09 -07002950 }
2951
2952 static jint GetEnv(JavaVM* vm, void** env, jint version) {
Elliott Hughes83a25322013-03-14 11:18:53 -07002953 if (IsBadJniVersion(version)) {
2954 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version;
Elliott Hughescdf53122011-08-19 15:46:09 -07002955 return JNI_EVERSION;
2956 }
2957 if (vm == NULL || env == NULL) {
2958 return JNI_ERR;
2959 }
2960 Thread* thread = Thread::Current();
2961 if (thread == NULL) {
2962 *env = NULL;
2963 return JNI_EDETACHED;
2964 }
2965 *env = thread->GetJniEnv();
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002966 return JNI_OK;
2967 }
Elliott Hughescdf53122011-08-19 15:46:09 -07002968};
Carl Shapiro2ed144c2011-07-26 16:52:08 -07002969
Elliott Hughes88c5c352012-03-15 18:49:48 -07002970const JNIInvokeInterface gJniInvokeInterface = {
Carl Shapiroea4dca82011-08-01 13:45:38 -07002971 NULL, // reserved0
2972 NULL, // reserved1
2973 NULL, // reserved2
Elliott Hughescdf53122011-08-19 15:46:09 -07002974 JII::DestroyJavaVM,
2975 JII::AttachCurrentThread,
2976 JII::DetachCurrentThread,
2977 JII::GetEnv,
2978 JII::AttachCurrentThreadAsDaemon
Carl Shapiroea4dca82011-08-01 13:45:38 -07002979};
2980
Elliott Hughesa0957642011-09-02 14:27:33 -07002981JavaVMExt::JavaVMExt(Runtime* runtime, Runtime::ParsedOptions* options)
Elliott Hughes69f5bc62011-08-24 09:26:14 -07002982 : runtime(runtime),
Elliott Hughesa2501992011-08-26 19:39:54 -07002983 check_jni_abort_hook(NULL),
Elliott Hughesb264f082012-04-06 17:10:10 -07002984 check_jni_abort_hook_data(NULL),
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002985 check_jni(false),
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002986 force_copy(false), // TODO: add a way to enable this
Elliott Hughesa0957642011-09-02 14:27:33 -07002987 trace(options->jni_trace_),
Elliott Hughesc2dc62d2012-01-17 20:06:12 -08002988 work_around_app_jni_bugs(false),
Ian Rogers62d6c772013-02-27 08:32:07 -08002989 pins_lock("JNI pin table lock", kPinTableLock),
Elliott Hughes2ced6a52011-10-16 18:44:48 -07002990 pin_table("pin table", kPinTableInitial, kPinTableMax),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002991 globals_lock("JNI global reference table lock"),
Elliott Hughesbb1e8f02011-10-18 14:14:25 -07002992 globals(gGlobalsInitial, gGlobalsMax, kGlobal),
Elliott Hughes8daa0922011-09-11 13:46:25 -07002993 weak_globals_lock("JNI weak global reference table lock"),
Elliott Hughes79082e32011-08-25 12:07:32 -07002994 weak_globals(kWeakGlobalsInitial, kWeakGlobalsMax, kWeakGlobal),
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002995 libraries_lock("JNI shared libraries map lock", kLoadLibraryLock),
Elliott Hughes79082e32011-08-25 12:07:32 -07002996 libraries(new Libraries) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002997 functions = unchecked_functions = &gJniInvokeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07002998 if (options->check_jni_) {
Elliott Hughes88c5c352012-03-15 18:49:48 -07002999 SetCheckJniEnabled(true);
Elliott Hughesa2501992011-08-26 19:39:54 -07003000 }
Elliott Hughesf2682d52011-08-15 16:37:04 -07003001}
3002
Elliott Hughesde69d7f2011-08-18 16:49:37 -07003003JavaVMExt::~JavaVMExt() {
Elliott Hughes79082e32011-08-25 12:07:32 -07003004 delete libraries;
Elliott Hughesde69d7f2011-08-18 16:49:37 -07003005}
3006
Elliott Hughes88c5c352012-03-15 18:49:48 -07003007void JavaVMExt::SetCheckJniEnabled(bool enabled) {
3008 check_jni = enabled;
3009 functions = enabled ? GetCheckJniInvokeInterface() : &gJniInvokeInterface;
Elliott Hughes4ffd3132011-10-24 12:06:42 -07003010}
3011
Elliott Hughesae80b492012-04-24 10:43:17 -07003012void JavaVMExt::DumpForSigQuit(std::ostream& os) {
3013 os << "JNI: CheckJNI is " << (check_jni ? "on" : "off");
3014 if (force_copy) {
3015 os << " (with forcecopy)";
3016 }
3017 os << "; workarounds are " << (work_around_app_jni_bugs ? "on" : "off");
Ian Rogers50b35e22012-10-04 10:09:15 -07003018 Thread* self = Thread::Current();
Elliott Hughesae80b492012-04-24 10:43:17 -07003019 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003020 MutexLock mu(self, pins_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07003021 os << "; pins=" << pin_table.Size();
3022 }
3023 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003024 MutexLock mu(self, globals_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07003025 os << "; globals=" << globals.Capacity();
3026 }
3027 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003028 MutexLock mu(self, weak_globals_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07003029 if (weak_globals.Capacity() > 0) {
3030 os << " (plus " << weak_globals.Capacity() << " weak)";
3031 }
3032 }
3033 os << '\n';
3034
3035 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003036 MutexLock mu(self, libraries_lock);
Elliott Hughesae80b492012-04-24 10:43:17 -07003037 os << "Libraries: " << Dumpable<Libraries>(*libraries) << " (" << libraries->size() << ")\n";
3038 }
3039}
3040
Elliott Hughes73e66f72012-05-09 09:34:45 -07003041void JavaVMExt::DumpReferenceTables(std::ostream& os) {
Ian Rogers50b35e22012-10-04 10:09:15 -07003042 Thread* self = Thread::Current();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003043 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003044 MutexLock mu(self, globals_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07003045 globals.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003046 }
3047 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003048 MutexLock mu(self, weak_globals_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07003049 weak_globals.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003050 }
3051 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003052 MutexLock mu(self, pins_lock);
Elliott Hughes73e66f72012-05-09 09:34:45 -07003053 pin_table.Dump(os);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003054 }
3055}
3056
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003057bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader,
3058 std::string& detail) {
Elliott Hughes75770752011-08-24 17:52:38 -07003059 detail.clear();
Elliott Hughescdf53122011-08-19 15:46:09 -07003060
3061 // See if we've already loaded this library. If we have, and the class loader
3062 // matches, return successfully without doing anything.
Elliott Hughes75770752011-08-24 17:52:38 -07003063 // TODO: for better results we should canonicalize the pathname (or even compare
3064 // inodes). This implementation is fine if everybody is using System.loadLibrary.
Elliott Hughes79082e32011-08-25 12:07:32 -07003065 SharedLibrary* library;
Ian Rogers50b35e22012-10-04 10:09:15 -07003066 Thread* self = Thread::Current();
Elliott Hughes79082e32011-08-25 12:07:32 -07003067 {
3068 // TODO: move the locking (and more of this logic) into Libraries.
Ian Rogers50b35e22012-10-04 10:09:15 -07003069 MutexLock mu(self, libraries_lock);
Elliott Hughes79082e32011-08-25 12:07:32 -07003070 library = libraries->Get(path);
3071 }
Elliott Hughescdf53122011-08-19 15:46:09 -07003072 if (library != NULL) {
3073 if (library->GetClassLoader() != class_loader) {
Elliott Hughes75770752011-08-24 17:52:38 -07003074 // The library will be associated with class_loader. The JNI
3075 // spec says we can't load the same library into more than one
3076 // class loader.
3077 StringAppendF(&detail, "Shared library \"%s\" already opened by "
3078 "ClassLoader %p; can't open in ClassLoader %p",
3079 path.c_str(), library->GetClassLoader(), class_loader);
3080 LOG(WARNING) << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07003081 return false;
3082 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003083 VLOG(jni) << "[Shared library \"" << path << "\" already loaded in "
3084 << "ClassLoader " << class_loader << "]";
Elliott Hughes1bac54f2012-03-16 12:48:31 -07003085 if (!library->CheckOnLoadResult()) {
Elliott Hughes75770752011-08-24 17:52:38 -07003086 StringAppendF(&detail, "JNI_OnLoad failed on a previous attempt "
3087 "to load \"%s\"", path.c_str());
Elliott Hughescdf53122011-08-19 15:46:09 -07003088 return false;
3089 }
3090 return true;
3091 }
3092
3093 // Open the shared library. Because we're using a full path, the system
3094 // doesn't have to search through LD_LIBRARY_PATH. (It may do so to
3095 // resolve this library's dependencies though.)
3096
3097 // Failures here are expected when java.library.path has several entries
3098 // and we have to hunt for the lib.
3099
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003100 // Below we dlopen but there is no paired dlclose, this would be necessary if we supported
3101 // class unloading. Libraries will only be unloaded when the reference count (incremented by
3102 // dlopen) becomes zero from dlclose.
3103
Elliott Hughescdf53122011-08-19 15:46:09 -07003104 // This can execute slowly for a large library on a busy system, so we
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003105 // want to switch from kRunnable while it executes. This allows the GC to ignore us.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003106 self->TransitionFromRunnableToSuspended(kWaitingForJniOnLoad);
3107 void* handle = dlopen(path.empty() ? NULL : path.c_str(), RTLD_LAZY);
3108 self->TransitionFromSuspendedToRunnable();
Elliott Hughescdf53122011-08-19 15:46:09 -07003109
Elliott Hughes84b2f142012-09-27 09:16:28 -07003110 VLOG(jni) << "[Call to dlopen(\"" << path << "\", RTLD_LAZY) returned " << handle << "]";
Elliott Hughescdf53122011-08-19 15:46:09 -07003111
3112 if (handle == NULL) {
Elliott Hughes75770752011-08-24 17:52:38 -07003113 detail = dlerror();
Elliott Hughes84b2f142012-09-27 09:16:28 -07003114 LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << detail;
Elliott Hughescdf53122011-08-19 15:46:09 -07003115 return false;
3116 }
3117
3118 // Create a new entry.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003119 // TODO: move the locking (and more of this logic) into Libraries.
3120 bool created_library = false;
Elliott Hughescdf53122011-08-19 15:46:09 -07003121 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003122 MutexLock mu(self, libraries_lock);
Elliott Hughes79082e32011-08-25 12:07:32 -07003123 library = libraries->Get(path);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003124 if (library == NULL) { // We won race to get libraries_lock
3125 library = new SharedLibrary(path, handle, class_loader);
3126 libraries->Put(path, library);
3127 created_library = true;
Elliott Hughescdf53122011-08-19 15:46:09 -07003128 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003129 }
3130 if (!created_library) {
3131 LOG(INFO) << "WOW: we lost a race to add shared library: "
3132 << "\"" << path << "\" ClassLoader=" << class_loader;
3133 return library->CheckOnLoadResult();
Elliott Hughescdf53122011-08-19 15:46:09 -07003134 }
Elliott Hughes79082e32011-08-25 12:07:32 -07003135
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003136 VLOG(jni) << "[Added shared library \"" << path << "\" for ClassLoader " << class_loader << "]";
Elliott Hughes79082e32011-08-25 12:07:32 -07003137
Elliott Hughes79353722013-08-02 16:52:18 -07003138 bool was_successful = false;
Elliott Hughes79082e32011-08-25 12:07:32 -07003139 void* sym = dlsym(handle, "JNI_OnLoad");
3140 if (sym == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003141 VLOG(jni) << "[No JNI_OnLoad found in \"" << path << "\"]";
Elliott Hughes85affca2013-08-02 17:48:52 -07003142 was_successful = true;
Elliott Hughes79082e32011-08-25 12:07:32 -07003143 } else {
3144 // Call JNI_OnLoad. We have to override the current class
3145 // loader, which will always be "null" since the stuff at the
3146 // top of the stack is around Runtime.loadLibrary(). (See
3147 // the comments in the JNI FindClass function.)
3148 typedef int (*JNI_OnLoadFn)(JavaVM*, void*);
3149 JNI_OnLoadFn jni_on_load = reinterpret_cast<JNI_OnLoadFn>(sym);
Ian Rogers365c1022012-06-22 15:05:28 -07003150 ClassLoader* old_class_loader = self->GetClassLoaderOverride();
Elliott Hughes79082e32011-08-25 12:07:32 -07003151 self->SetClassLoaderOverride(class_loader);
3152
Elliott Hughesad7c2a32011-08-31 11:58:10 -07003153 int version = 0;
3154 {
Elliott Hughes34e06962012-04-09 13:55:55 -07003155 ScopedThreadStateChange tsc(self, kNative);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003156 VLOG(jni) << "[Calling JNI_OnLoad in \"" << path << "\"]";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07003157 version = (*jni_on_load)(this, NULL);
Elliott Hughes79082e32011-08-25 12:07:32 -07003158 }
Elliott Hughes79082e32011-08-25 12:07:32 -07003159
Brian Carlstromaded5f72011-10-07 17:15:04 -07003160 self->SetClassLoaderOverride(old_class_loader);
Elliott Hughes79082e32011-08-25 12:07:32 -07003161
Elliott Hughes79353722013-08-02 16:52:18 -07003162 if (version == JNI_ERR) {
3163 StringAppendF(&detail, "JNI_ERR returned from JNI_OnLoad in \"%s\"", path.c_str());
3164 } else if (IsBadJniVersion(version)) {
Brian Carlstrom75fe90c2013-06-26 22:26:16 -07003165 StringAppendF(&detail, "Bad JNI version returned from JNI_OnLoad in \"%s\": %d",
3166 path.c_str(), version);
Elliott Hughes79082e32011-08-25 12:07:32 -07003167 // It's unwise to call dlclose() here, but we can mark it
3168 // as bad and ensure that future load attempts will fail.
3169 // We don't know how far JNI_OnLoad got, so there could
3170 // be some partially-initialized stuff accessible through
3171 // newly-registered native method calls. We could try to
3172 // unregister them, but that doesn't seem worthwhile.
Elliott Hughes79353722013-08-02 16:52:18 -07003173 } else {
3174 was_successful = true;
Elliott Hughes79082e32011-08-25 12:07:32 -07003175 }
Elliott Hughes79353722013-08-02 16:52:18 -07003176 VLOG(jni) << "[Returned " << (was_successful ? "successfully" : "failure")
Brian Carlstrom75fe90c2013-06-26 22:26:16 -07003177 << " from JNI_OnLoad in \"" << path << "\"]";
Elliott Hughes79082e32011-08-25 12:07:32 -07003178 }
3179
Elliott Hughes79353722013-08-02 16:52:18 -07003180 library->SetResult(was_successful);
3181 return was_successful;
Elliott Hughes79082e32011-08-25 12:07:32 -07003182}
3183
Brian Carlstromea46f952013-07-30 01:26:50 -07003184void* JavaVMExt::FindCodeForNativeMethod(ArtMethod* m) {
Elliott Hughes79082e32011-08-25 12:07:32 -07003185 CHECK(m->IsNative());
3186
3187 Class* c = m->GetDeclaringClass();
3188
3189 // If this is a static method, it could be called before the class
3190 // has been initialized.
3191 if (m->IsStatic()) {
Ian Rogers0045a292012-03-31 21:08:41 -07003192 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Elliott Hughes79082e32011-08-25 12:07:32 -07003193 return NULL;
3194 }
3195 } else {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07003196 CHECK(c->GetStatus() >= Class::kStatusInitializing) << c->GetStatus() << " " << PrettyMethod(m);
Elliott Hughes79082e32011-08-25 12:07:32 -07003197 }
3198
Brian Carlstrom16192862011-09-12 17:50:06 -07003199 std::string detail;
3200 void* native_method;
Ian Rogers50b35e22012-10-04 10:09:15 -07003201 Thread* self = Thread::Current();
Brian Carlstrom16192862011-09-12 17:50:06 -07003202 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003203 MutexLock mu(self, libraries_lock);
Brian Carlstrom16192862011-09-12 17:50:06 -07003204 native_method = libraries->FindNativeMethod(m, detail);
3205 }
Ian Rogers62d6c772013-02-27 08:32:07 -08003206 // Throwing can cause libraries_lock to be reacquired.
Brian Carlstrom16192862011-09-12 17:50:06 -07003207 if (native_method == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003208 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
3209 self->ThrowNewException(throw_location, "Ljava/lang/UnsatisfiedLinkError;", detail.c_str());
Brian Carlstrom16192862011-09-12 17:50:06 -07003210 }
3211 return native_method;
Elliott Hughescdf53122011-08-19 15:46:09 -07003212}
3213
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003214void JavaVMExt::VisitRoots(RootVisitor* visitor, void* arg) {
Ian Rogers50b35e22012-10-04 10:09:15 -07003215 Thread* self = Thread::Current();
Elliott Hughes410c0c82011-09-01 17:58:25 -07003216 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003217 MutexLock mu(self, globals_lock);
Elliott Hughes410c0c82011-09-01 17:58:25 -07003218 globals.VisitRoots(visitor, arg);
3219 }
3220 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003221 MutexLock mu(self, pins_lock);
Elliott Hughes410c0c82011-09-01 17:58:25 -07003222 pin_table.VisitRoots(visitor, arg);
3223 }
3224 // The weak_globals table is visited by the GC itself (because it mutates the table).
3225}
3226
Elliott Hughesc8fece32013-01-02 11:27:23 -08003227void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
Ian Rogersbc939662013-08-15 10:26:54 -07003228 jint method_count) {
Elliott Hughesc8fece32013-01-02 11:27:23 -08003229 ScopedLocalRef<jclass> c(env, env->FindClass(jni_class_name));
3230 if (c.get() == NULL) {
3231 LOG(FATAL) << "Couldn't find class: " << jni_class_name;
3232 }
3233 JNI::RegisterNativeMethods(env, c.get(), methods, method_count, false);
3234}
3235
Ian Rogersdf20fe02011-07-20 20:34:16 -07003236} // namespace art
Elliott Hughesb465ab02011-08-24 11:21:21 -07003237
3238std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) {
3239 switch (rhs) {
3240 case JNIInvalidRefType:
3241 os << "JNIInvalidRefType";
3242 return os;
3243 case JNILocalRefType:
3244 os << "JNILocalRefType";
3245 return os;
3246 case JNIGlobalRefType:
3247 os << "JNIGlobalRefType";
3248 return os;
3249 case JNIWeakGlobalRefType:
3250 os << "JNIWeakGlobalRefType";
3251 return os;
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08003252 default:
Shih-wei Liao24782c62012-01-08 12:46:11 -08003253 LOG(FATAL) << "jobjectRefType[" << static_cast<int>(rhs) << "]";
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08003254 return os;
Elliott Hughesb465ab02011-08-24 11:21:21 -07003255 }
3256}