Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | */ |
| 16 | |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 17 | #include <limits.h> |
| 18 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 19 | #include "class_linker.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 20 | #include "common_throws.h" |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 21 | #include "debugger.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 22 | #include "dex_file-inl.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 23 | #include "gc/allocator/dlmalloc.h" |
Mathieu Chartier | 8235331 | 2013-07-18 10:47:51 -0700 | [diff] [blame] | 24 | #include "gc/heap.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 25 | #include "gc/space/dlmalloc_space.h" |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 26 | #include "jni_internal.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 27 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 28 | #include "mirror/object.h" |
| 29 | #include "mirror/object-inl.h" |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 30 | #include "object_utils.h" |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 31 | #include "scoped_fast_native_object_access.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 32 | #include "scoped_thread_state_change.h" |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 33 | #include "thread.h" |
Elliott Hughes | 88c5c35 | 2012-03-15 18:49:48 -0700 | [diff] [blame] | 34 | #include "thread_list.h" |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 35 | #include "toStringArray.h" |
| 36 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 37 | namespace art { |
| 38 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 39 | static jfloat VMRuntime_getTargetHeapUtilization(JNIEnv*, jobject) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 40 | return Runtime::Current()->GetHeap()->GetTargetHeapUtilization(); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 43 | static void VMRuntime_nativeSetTargetHeapUtilization(JNIEnv*, jobject, jfloat target) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 44 | Runtime::Current()->GetHeap()->SetTargetHeapUtilization(target); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 47 | static void VMRuntime_startJitCompilation(JNIEnv*, jobject) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 50 | static void VMRuntime_disableJitCompilation(JNIEnv*, jobject) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 53 | static jobject VMRuntime_newNonMovableArray(JNIEnv* env, jobject, jclass javaElementClass, jint length) { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 54 | ScopedFastNativeObjectAccess soa(env); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 55 | #ifdef MOVING_GARBAGE_COLLECTOR |
| 56 | // TODO: right now, we don't have a copying collector, so there's no need |
| 57 | // to do anything special here, but we ought to pass the non-movability |
| 58 | // through to the allocator. |
| 59 | UNIMPLEMENTED(FATAL); |
| 60 | #endif |
| 61 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 62 | mirror::Class* element_class = soa.Decode<mirror::Class*>(javaElementClass); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 63 | if (element_class == NULL) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 64 | ThrowNullPointerException(NULL, "element class == null"); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 65 | return NULL; |
| 66 | } |
| 67 | if (length < 0) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 68 | ThrowNegativeArraySizeException(length); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 73 | std::string descriptor; |
| 74 | descriptor += "["; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 75 | descriptor += ClassHelper(element_class).GetDescriptor(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 76 | mirror::Class* array_class = class_linker->FindClass(descriptor.c_str(), NULL); |
| 77 | mirror::Array* result = mirror::Array::Alloc(soa.Self(), array_class, length); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 78 | return soa.AddLocalReference<jobject>(result); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 81 | static jlong VMRuntime_addressOf(JNIEnv* env, jobject, jobject javaArray) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 82 | if (javaArray == NULL) { // Most likely allocation failed |
| 83 | return 0; |
| 84 | } |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 85 | ScopedFastNativeObjectAccess soa(env); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 86 | mirror::Array* array = soa.Decode<mirror::Array*>(javaArray); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 87 | if (!array->IsArrayInstance()) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 88 | ThrowIllegalArgumentException(NULL, "not an array"); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 89 | return 0; |
| 90 | } |
| 91 | // TODO: we should also check that this is a non-movable array. |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 92 | return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize())); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 95 | static void VMRuntime_clearGrowthLimit(JNIEnv*, jobject) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 96 | Runtime::Current()->GetHeap()->ClearGrowthLimit(); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 99 | static jboolean VMRuntime_isDebuggerActive(JNIEnv*, jobject) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 100 | return Dbg::IsDebuggerActive(); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 103 | static jobjectArray VMRuntime_properties(JNIEnv* env, jobject) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 104 | return toStringArray(env, Runtime::Current()->GetProperties()); |
| 105 | } |
| 106 | |
Brian Carlstrom | 7d5ffb5 | 2012-02-01 14:27:54 -0800 | [diff] [blame] | 107 | // This is for backward compatibility with dalvik which returned the |
| 108 | // meaningless "." when no boot classpath or classpath was |
| 109 | // specified. Unfortunately, some tests were using java.class.path to |
| 110 | // lookup relative file locations, so they are counting on this to be |
| 111 | // ".", presumably some applications or libraries could have as well. |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 112 | static const char* DefaultToDot(const std::string& class_path) { |
Brian Carlstrom | 7d5ffb5 | 2012-02-01 14:27:54 -0800 | [diff] [blame] | 113 | return class_path.empty() ? "." : class_path.c_str(); |
| 114 | } |
| 115 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 116 | static jstring VMRuntime_bootClassPath(JNIEnv* env, jobject) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 117 | return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetBootClassPathString())); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 120 | static jstring VMRuntime_classPath(JNIEnv* env, jobject) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 121 | return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetClassPathString())); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 124 | static jstring VMRuntime_vmVersion(JNIEnv* env, jobject) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 125 | return env->NewStringUTF(Runtime::Current()->GetVersion()); |
| 126 | } |
| 127 | |
Brian Carlstrom | cef450c | 2013-06-28 14:38:26 -0700 | [diff] [blame] | 128 | static jstring VMRuntime_vmLibrary(JNIEnv* env, jobject) { |
| 129 | return env->NewStringUTF(kIsDebugBuild ? "libartd.so" : "libart.so"); |
| 130 | } |
| 131 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 132 | static void VMRuntime_setTargetSdkVersion(JNIEnv* env, jobject, jint targetSdkVersion) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 133 | // This is the target SDK version of the app we're about to run. |
Elliott Hughes | c2dc62d | 2012-01-17 20:06:12 -0800 | [diff] [blame] | 134 | // Note that targetSdkVersion may be CUR_DEVELOPMENT (10000). |
| 135 | // Note that targetSdkVersion may be 0, meaning "current". |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 136 | if (targetSdkVersion > 0 && targetSdkVersion <= 13 /* honeycomb-mr2 */) { |
Elliott Hughes | 88c5c35 | 2012-03-15 18:49:48 -0700 | [diff] [blame] | 137 | Runtime* runtime = Runtime::Current(); |
| 138 | JavaVMExt* vm = runtime->GetJavaVM(); |
Elliott Hughes | 88c5c35 | 2012-03-15 18:49:48 -0700 | [diff] [blame] | 139 | if (vm->check_jni) { |
Ian Rogers | 1a4d6d8 | 2013-08-13 20:07:05 -0700 | [diff] [blame] | 140 | LOG(INFO) << "CheckJNI enabled: not enabling JNI app bug workarounds."; |
| 141 | } else { |
| 142 | LOG(INFO) << "Turning on JNI app bug workarounds for target SDK version " |
| 143 | << targetSdkVersion << "..."; |
| 144 | |
| 145 | vm->work_around_app_jni_bugs = true; |
Ian Rogers | 475a644 | 2012-02-21 15:39:39 -0800 | [diff] [blame] | 146 | } |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 147 | } |
| 148 | } |
| 149 | |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 150 | static void VMRuntime_registerNativeAllocation(JNIEnv* env, jobject, jint bytes) { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 151 | if (UNLIKELY(bytes < 0)) { |
| 152 | ScopedObjectAccess soa(env); |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 153 | ThrowRuntimeException("allocation size negative %d", bytes); |
| 154 | return; |
| 155 | } |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 156 | Runtime::Current()->GetHeap()->RegisterNativeAllocation(env, bytes); |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static void VMRuntime_registerNativeFree(JNIEnv* env, jobject, jint bytes) { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 160 | if (UNLIKELY(bytes < 0)) { |
| 161 | ScopedObjectAccess soa(env); |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 162 | ThrowRuntimeException("allocation size negative %d", bytes); |
| 163 | return; |
| 164 | } |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 165 | Runtime::Current()->GetHeap()->RegisterNativeFree(env, bytes); |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Mathieu Chartier | 3056d0c | 2012-10-19 10:49:56 -0700 | [diff] [blame] | 168 | static void VMRuntime_trimHeap(JNIEnv*, jobject) { |
Ian Rogers | 4893188 | 2013-01-22 14:35:16 -0800 | [diff] [blame] | 169 | uint64_t start_ns = NanoTime(); |
| 170 | |
Elliott Hughes | 9eebd3b | 2012-06-08 13:56:31 -0700 | [diff] [blame] | 171 | // Trim the managed heap. |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 172 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Hiroshi Yamauchi | be031ff | 2013-10-08 16:42:37 -0700 | [diff] [blame] | 173 | float managed_utilization = static_cast<float>(heap->GetBytesAllocated()) / heap->GetTotalMemory(); |
Ian Rogers | 4893188 | 2013-01-22 14:35:16 -0800 | [diff] [blame] | 174 | size_t managed_reclaimed = heap->Trim(); |
| 175 | |
| 176 | uint64_t gc_heap_end_ns = NanoTime(); |
| 177 | |
Mathieu Chartier | fd678be | 2012-08-30 14:50:54 -0700 | [diff] [blame] | 178 | // Trim the native heap. |
| 179 | dlmalloc_trim(0); |
Ian Rogers | 4893188 | 2013-01-22 14:35:16 -0800 | [diff] [blame] | 180 | size_t native_reclaimed = 0; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 181 | dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed); |
Ian Rogers | 4893188 | 2013-01-22 14:35:16 -0800 | [diff] [blame] | 182 | |
| 183 | uint64_t end_ns = NanoTime(); |
| 184 | |
| 185 | LOG(INFO) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns) |
| 186 | << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration=" |
| 187 | << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed) |
| 188 | << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization) |
| 189 | << "%."; |
Elliott Hughes | 8cf5bc0 | 2012-02-02 16:32:16 -0800 | [diff] [blame] | 190 | } |
| 191 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 192 | static void VMRuntime_concurrentGC(JNIEnv* env, jobject) { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 193 | Thread* self = ThreadForEnv(env); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 194 | Runtime::Current()->GetHeap()->ConcurrentGC(self); |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 197 | static JNINativeMethod gMethods[] = { |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 198 | NATIVE_METHOD(VMRuntime, addressOf, "!(Ljava/lang/Object;)J"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 199 | NATIVE_METHOD(VMRuntime, bootClassPath, "()Ljava/lang/String;"), |
| 200 | NATIVE_METHOD(VMRuntime, classPath, "()Ljava/lang/String;"), |
| 201 | NATIVE_METHOD(VMRuntime, clearGrowthLimit, "()V"), |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 202 | NATIVE_METHOD(VMRuntime, concurrentGC, "()V"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 203 | NATIVE_METHOD(VMRuntime, disableJitCompilation, "()V"), |
| 204 | NATIVE_METHOD(VMRuntime, getTargetHeapUtilization, "()F"), |
| 205 | NATIVE_METHOD(VMRuntime, isDebuggerActive, "()Z"), |
| 206 | NATIVE_METHOD(VMRuntime, nativeSetTargetHeapUtilization, "(F)V"), |
Ian Rogers | 1eb512d | 2013-10-18 15:42:20 -0700 | [diff] [blame^] | 207 | NATIVE_METHOD(VMRuntime, newNonMovableArray, "!(Ljava/lang/Class;I)Ljava/lang/Object;"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 208 | NATIVE_METHOD(VMRuntime, properties, "()[Ljava/lang/String;"), |
| 209 | NATIVE_METHOD(VMRuntime, setTargetSdkVersion, "(I)V"), |
Mathieu Chartier | 987ccff | 2013-07-08 11:05:21 -0700 | [diff] [blame] | 210 | NATIVE_METHOD(VMRuntime, registerNativeAllocation, "(I)V"), |
| 211 | NATIVE_METHOD(VMRuntime, registerNativeFree, "(I)V"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 212 | NATIVE_METHOD(VMRuntime, startJitCompilation, "()V"), |
Elliott Hughes | 8cf5bc0 | 2012-02-02 16:32:16 -0800 | [diff] [blame] | 213 | NATIVE_METHOD(VMRuntime, trimHeap, "()V"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 214 | NATIVE_METHOD(VMRuntime, vmVersion, "()Ljava/lang/String;"), |
Brian Carlstrom | cef450c | 2013-06-28 14:38:26 -0700 | [diff] [blame] | 215 | NATIVE_METHOD(VMRuntime, vmLibrary, "()Ljava/lang/String;"), |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 216 | }; |
| 217 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 218 | void register_dalvik_system_VMRuntime(JNIEnv* env) { |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 219 | REGISTER_NATIVE_METHODS("dalvik/system/VMRuntime"); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | } // namespace art |