blob: cb7828b9a4d1eb69af79504ab5e0275ee2547026 [file] [log] [blame]
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001/*
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 Hugheseac76672012-05-24 21:56:51 -070017#include <limits.h>
18
Elliott Hughes7ede61e2011-09-14 18:18:06 -070019#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080020#include "common_throws.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070021#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070022#include "dex_file-inl.h"
Brian Carlstrome8104522013-10-15 21:56:36 -070023#include "gc/accounting/card_table-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070024#include "gc/allocator/dlmalloc.h"
Mathieu Chartier82353312013-07-18 10:47:51 -070025#include "gc/heap.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "gc/space/dlmalloc_space.h"
Brian Carlstrome8104522013-10-15 21:56:36 -070027#include "intern_table.h"
Elliott Hughes7ede61e2011-09-14 18:18:06 -070028#include "jni_internal.h"
Brian Carlstrome8104522013-10-15 21:56:36 -070029#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "mirror/class-inl.h"
Brian Carlstrome8104522013-10-15 21:56:36 -070031#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032#include "mirror/object-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080033#include "object_utils.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070034#include "scoped_thread_state_change.h"
Elliott Hughes7ede61e2011-09-14 18:18:06 -070035#include "thread.h"
Elliott Hughes88c5c352012-03-15 18:49:48 -070036#include "thread_list.h"
Elliott Hughes7ede61e2011-09-14 18:18:06 -070037#include "toStringArray.h"
38
Elliott Hughes7ede61e2011-09-14 18:18:06 -070039namespace art {
40
Elliott Hughes0512f022012-03-15 22:10:52 -070041static jfloat VMRuntime_getTargetHeapUtilization(JNIEnv*, jobject) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080042 return Runtime::Current()->GetHeap()->GetTargetHeapUtilization();
Elliott Hughes7ede61e2011-09-14 18:18:06 -070043}
44
Elliott Hughes0512f022012-03-15 22:10:52 -070045static void VMRuntime_nativeSetTargetHeapUtilization(JNIEnv*, jobject, jfloat target) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080046 Runtime::Current()->GetHeap()->SetTargetHeapUtilization(target);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070047}
48
Elliott Hughes0512f022012-03-15 22:10:52 -070049static void VMRuntime_startJitCompilation(JNIEnv*, jobject) {
Elliott Hughes7ede61e2011-09-14 18:18:06 -070050}
51
Elliott Hughes0512f022012-03-15 22:10:52 -070052static void VMRuntime_disableJitCompilation(JNIEnv*, jobject) {
Elliott Hughes7ede61e2011-09-14 18:18:06 -070053}
54
Brian Carlstrome8104522013-10-15 21:56:36 -070055static jobject VMRuntime_newNonMovableArray(JNIEnv* env,
56 jobject,
57 jclass javaElementClass,
58 jint length) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070059 ScopedObjectAccess soa(env);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070060#ifdef MOVING_GARBAGE_COLLECTOR
61 // TODO: right now, we don't have a copying collector, so there's no need
62 // to do anything special here, but we ought to pass the non-movability
63 // through to the allocator.
64 UNIMPLEMENTED(FATAL);
65#endif
66
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067 mirror::Class* element_class = soa.Decode<mirror::Class*>(javaElementClass);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070068 if (element_class == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -080069 ThrowNullPointerException(NULL, "element class == null");
Elliott Hughes7ede61e2011-09-14 18:18:06 -070070 return NULL;
71 }
72 if (length < 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -080073 ThrowNegativeArraySizeException(length);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070074 return NULL;
75 }
76
77 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
78 std::string descriptor;
79 descriptor += "[";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080080 descriptor += ClassHelper(element_class).GetDescriptor();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081 mirror::Class* array_class = class_linker->FindClass(descriptor.c_str(), NULL);
82 mirror::Array* result = mirror::Array::Alloc(soa.Self(), array_class, length);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070083 return soa.AddLocalReference<jobject>(result);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070084}
85
Elliott Hughes0512f022012-03-15 22:10:52 -070086static jlong VMRuntime_addressOf(JNIEnv* env, jobject, jobject javaArray) {
Ian Rogersa15e67d2012-02-28 13:51:55 -080087 if (javaArray == NULL) { // Most likely allocation failed
88 return 0;
89 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070090 ScopedObjectAccess soa(env);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 mirror::Array* array = soa.Decode<mirror::Array*>(javaArray);
Elliott Hughes7ede61e2011-09-14 18:18:06 -070092 if (!array->IsArrayInstance()) {
Ian Rogers62d6c772013-02-27 08:32:07 -080093 ThrowIllegalArgumentException(NULL, "not an array");
Elliott Hughes7ede61e2011-09-14 18:18:06 -070094 return 0;
95 }
96 // TODO: we should also check that this is a non-movable array.
Ian Rogersa15e67d2012-02-28 13:51:55 -080097 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize()));
Elliott Hughes7ede61e2011-09-14 18:18:06 -070098}
99
Elliott Hughes0512f022012-03-15 22:10:52 -0700100static void VMRuntime_clearGrowthLimit(JNIEnv*, jobject) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800101 Runtime::Current()->GetHeap()->ClearGrowthLimit();
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700102}
103
Elliott Hughes0512f022012-03-15 22:10:52 -0700104static jboolean VMRuntime_isDebuggerActive(JNIEnv*, jobject) {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700105 return Dbg::IsDebuggerActive();
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700106}
107
Elliott Hughes0512f022012-03-15 22:10:52 -0700108static jobjectArray VMRuntime_properties(JNIEnv* env, jobject) {
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700109 return toStringArray(env, Runtime::Current()->GetProperties());
110}
111
Brian Carlstrom7d5ffb52012-02-01 14:27:54 -0800112// This is for backward compatibility with dalvik which returned the
113// meaningless "." when no boot classpath or classpath was
114// specified. Unfortunately, some tests were using java.class.path to
115// lookup relative file locations, so they are counting on this to be
116// ".", presumably some applications or libraries could have as well.
Elliott Hughes0512f022012-03-15 22:10:52 -0700117static const char* DefaultToDot(const std::string& class_path) {
Brian Carlstrom7d5ffb52012-02-01 14:27:54 -0800118 return class_path.empty() ? "." : class_path.c_str();
119}
120
Elliott Hughes0512f022012-03-15 22:10:52 -0700121static jstring VMRuntime_bootClassPath(JNIEnv* env, jobject) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800122 return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetBootClassPathString()));
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700123}
124
Elliott Hughes0512f022012-03-15 22:10:52 -0700125static jstring VMRuntime_classPath(JNIEnv* env, jobject) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800126 return env->NewStringUTF(DefaultToDot(Runtime::Current()->GetClassPathString()));
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700127}
128
Elliott Hughes0512f022012-03-15 22:10:52 -0700129static jstring VMRuntime_vmVersion(JNIEnv* env, jobject) {
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700130 return env->NewStringUTF(Runtime::Current()->GetVersion());
131}
132
Brian Carlstromcef450c2013-06-28 14:38:26 -0700133static jstring VMRuntime_vmLibrary(JNIEnv* env, jobject) {
134 return env->NewStringUTF(kIsDebugBuild ? "libartd.so" : "libart.so");
135}
136
Ian Rogers50b35e22012-10-04 10:09:15 -0700137static void VMRuntime_setTargetSdkVersion(JNIEnv* env, jobject, jint targetSdkVersion) {
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700138 // This is the target SDK version of the app we're about to run.
Elliott Hughesc2dc62d2012-01-17 20:06:12 -0800139 // Note that targetSdkVersion may be CUR_DEVELOPMENT (10000).
140 // Note that targetSdkVersion may be 0, meaning "current".
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700141 if (targetSdkVersion > 0 && targetSdkVersion <= 13 /* honeycomb-mr2 */) {
Elliott Hughes88c5c352012-03-15 18:49:48 -0700142 Runtime* runtime = Runtime::Current();
143 JavaVMExt* vm = runtime->GetJavaVM();
Elliott Hughes88c5c352012-03-15 18:49:48 -0700144 if (vm->check_jni) {
Ian Rogers1a4d6d82013-08-13 20:07:05 -0700145 LOG(INFO) << "CheckJNI enabled: not enabling JNI app bug workarounds.";
146 } else {
147 LOG(INFO) << "Turning on JNI app bug workarounds for target SDK version "
148 << targetSdkVersion << "...";
149
150 vm->work_around_app_jni_bugs = true;
Ian Rogers475a6442012-02-21 15:39:39 -0800151 }
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700152 }
153}
154
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700155static void VMRuntime_registerNativeAllocation(JNIEnv* env, jobject, jint bytes) {
156 ScopedObjectAccess soa(env);
157 if (bytes < 0) {
158 ThrowRuntimeException("allocation size negative %d", bytes);
159 return;
160 }
161 Runtime::Current()->GetHeap()->RegisterNativeAllocation(bytes);
162}
163
164static void VMRuntime_registerNativeFree(JNIEnv* env, jobject, jint bytes) {
165 ScopedObjectAccess soa(env);
166 if (bytes < 0) {
167 ThrowRuntimeException("allocation size negative %d", bytes);
168 return;
169 }
170 Runtime::Current()->GetHeap()->RegisterNativeFree(bytes);
171}
172
Mathieu Chartier3056d0c2012-10-19 10:49:56 -0700173static void VMRuntime_trimHeap(JNIEnv*, jobject) {
Ian Rogers48931882013-01-22 14:35:16 -0800174 uint64_t start_ns = NanoTime();
175
Elliott Hughes9eebd3b2012-06-08 13:56:31 -0700176 // Trim the managed heap.
Ian Rogers1d54e732013-05-02 21:10:01 -0700177 gc::Heap* heap = Runtime::Current()->GetHeap();
178 gc::space::DlMallocSpace* alloc_space = heap->GetAllocSpace();
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700179 size_t alloc_space_size = alloc_space->Size();
Ian Rogers48931882013-01-22 14:35:16 -0800180 float managed_utilization =
Ian Rogers1d54e732013-05-02 21:10:01 -0700181 static_cast<float>(alloc_space->GetBytesAllocated()) / alloc_space_size;
Ian Rogers48931882013-01-22 14:35:16 -0800182 size_t managed_reclaimed = heap->Trim();
183
184 uint64_t gc_heap_end_ns = NanoTime();
185
Mathieu Chartierfd678be2012-08-30 14:50:54 -0700186 // Trim the native heap.
187 dlmalloc_trim(0);
Ian Rogers48931882013-01-22 14:35:16 -0800188 size_t native_reclaimed = 0;
Ian Rogers1d54e732013-05-02 21:10:01 -0700189 dlmalloc_inspect_all(DlmallocMadviseCallback, &native_reclaimed);
Ian Rogers48931882013-01-22 14:35:16 -0800190
191 uint64_t end_ns = NanoTime();
192
193 LOG(INFO) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
194 << ", advised=" << PrettySize(managed_reclaimed) << ") and native (duration="
195 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
196 << ") heaps. Managed heap utilization of " << static_cast<int>(100 * managed_utilization)
197 << "%.";
Elliott Hughes8cf5bc02012-02-02 16:32:16 -0800198}
199
Ian Rogers81d425b2012-09-27 16:03:43 -0700200static void VMRuntime_concurrentGC(JNIEnv* env, jobject) {
201 Thread* self = static_cast<JNIEnvExt*>(env)->self;
202 Runtime::Current()->GetHeap()->ConcurrentGC(self);
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700203}
204
Brian Carlstrome8104522013-10-15 21:56:36 -0700205typedef std::map<std::string, mirror::String*> StringTable;
206
207static void PreloadDexCachesStringsVisitor(const mirror::Object* root, void* arg) {
208 StringTable& table = *reinterpret_cast<StringTable*>(arg);
209 mirror::String* string = const_cast<mirror::Object*>(root)->AsString();
210 // LOG(INFO) << "VMRuntime.preloadDexCaches interned=" << string->ToModifiedUtf8();
211 table[string->ToModifiedUtf8()] = string;
212}
213
214// Based on ClassLinker::ResolveString.
215static void PreloadDexCachesResolveString(mirror::DexCache* dex_cache,
216 uint32_t string_idx,
217 StringTable& strings)
218 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
219 mirror::String* string = dex_cache->GetResolvedString(string_idx);
220 if (string != NULL) {
221 return;
222 }
223 const DexFile* dex_file = dex_cache->GetDexFile();
224 uint32_t utf16Size;
225 const char* utf8 = dex_file->StringDataAndLengthByIdx(string_idx, &utf16Size);
226 string = strings[utf8];
227 if (string == NULL) {
228 return;
229 }
230 // LOG(INFO) << "VMRuntime.preloadDexCaches resolved string=" << utf8;
231 dex_cache->SetResolvedString(string_idx, string);
232}
233
234// Based on ClassLinker::ResolveType.
235static void PreloadDexCachesResolveType(mirror::DexCache* dex_cache, uint32_t type_idx)
236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
237 mirror::Class* klass = dex_cache->GetResolvedType(type_idx);
238 if (klass != NULL) {
239 return;
240 }
241 const DexFile* dex_file = dex_cache->GetDexFile();
242 const char* class_name = dex_file->StringByTypeIdx(type_idx);
243 ClassLinker* linker = Runtime::Current()->GetClassLinker();
244 if (class_name[1] == '\0') {
245 klass = linker->FindPrimitiveClass(class_name[0]);
246 } else {
247 klass = linker->LookupClass(class_name, NULL);
248 }
249 if (klass == NULL) {
250 return;
251 }
252 // LOG(INFO) << "VMRuntime.preloadDexCaches resolved klass=" << class_name;
253 dex_cache->SetResolvedType(type_idx, klass);
254 // Skip uninitialized classes because filled static storage entry implies it is initialized.
255 if (!klass->IsInitialized()) {
256 // LOG(INFO) << "VMRuntime.preloadDexCaches uninitialized klass=" << class_name;
257 return;
258 }
259 // LOG(INFO) << "VMRuntime.preloadDexCaches static storage klass=" << class_name;
260 dex_cache->GetInitializedStaticStorage()->Set(type_idx, klass);
261}
262
263// Based on ClassLinker::ResolveField.
264static void PreloadDexCachesResolveField(mirror::DexCache* dex_cache,
265 uint32_t field_idx,
266 bool is_static)
267 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
268 mirror::ArtField* field = dex_cache->GetResolvedField(field_idx);
269 if (field != NULL) {
270 return;
271 }
272 const DexFile* dex_file = dex_cache->GetDexFile();
273 const DexFile::FieldId& field_id = dex_file->GetFieldId(field_idx);
274 mirror::Class* klass = dex_cache->GetResolvedType(field_id.class_idx_);
275 if (klass == NULL) {
276 return;
277 }
278 if (is_static) {
279 field = klass->FindStaticField(dex_cache, field_idx);
280 } else {
281 field = klass->FindInstanceField(dex_cache, field_idx);
282 }
283 if (field == NULL) {
284 return;
285 }
286 // LOG(INFO) << "VMRuntime.preloadDexCaches resolved field " << PrettyField(field);
287 dex_cache->SetResolvedField(field_idx, field);
288}
289
290// Based on ClassLinker::ResolveMethod.
291static void PreloadDexCachesResolveMethod(mirror::DexCache* dex_cache,
292 uint32_t method_idx,
293 InvokeType invoke_type)
294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
295 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(method_idx);
296 if (method != NULL) {
297 return;
298 }
299 const DexFile* dex_file = dex_cache->GetDexFile();
300 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx);
301 mirror::Class* klass = dex_cache->GetResolvedType(method_id.class_idx_);
302 if (klass == NULL) {
303 return;
304 }
305 switch (invoke_type) {
306 case kDirect:
307 case kStatic:
308 method = klass->FindDirectMethod(dex_cache, method_idx);
309 break;
310 case kInterface:
311 method = klass->FindInterfaceMethod(dex_cache, method_idx);
312 break;
313 case kSuper:
314 case kVirtual:
315 method = klass->FindVirtualMethod(dex_cache, method_idx);
316 break;
317 default:
318 LOG(FATAL) << "Unreachable - invocation type: " << invoke_type;
319 }
320 if (method == NULL) {
321 return;
322 }
323 // LOG(INFO) << "VMRuntime.preloadDexCaches resolved method " << PrettyMethod(method);
324 dex_cache->SetResolvedMethod(method_idx, method);
325}
326
327struct DexCacheStats {
328 uint32_t num_strings;
329 uint32_t num_types;
330 uint32_t num_fields;
331 uint32_t num_methods;
332 uint32_t num_static_storage;
333 DexCacheStats() : num_strings(0),
334 num_types(0),
335 num_fields(0),
336 num_methods(0),
337 num_static_storage(0) {}
338};
339
340static const bool kPreloadDexCachesEnabled = true;
341
342// Disabled because it takes a long time (extra half second) but
343// gives almost no benefit in terms of saving private dirty pages.
344static const bool kPreloadDexCachesStrings = false;
345
346static const bool kPreloadDexCachesTypes = true;
347static const bool kPreloadDexCachesFieldsAndMethods = true;
348
349static const bool kPreloadDexCachesCollectStats = true;
350
351static void PreloadDexCachesStatsTotal(DexCacheStats* total) {
352 if (!kPreloadDexCachesCollectStats) {
353 return;
354 }
355
356 ClassLinker* linker = Runtime::Current()->GetClassLinker();
357 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath();
358 for (size_t i = 0; i< boot_class_path.size(); i++) {
359 const DexFile* dex_file = boot_class_path[i];
360 CHECK(dex_file != NULL);
361 total->num_strings += dex_file->NumStringIds();
362 total->num_fields += dex_file->NumFieldIds();
363 total->num_methods += dex_file->NumMethodIds();
364 total->num_types += dex_file->NumTypeIds();
365 total->num_static_storage += dex_file->NumTypeIds();
366 }
367}
368
369static void PreloadDexCachesStatsFilled(DexCacheStats* filled)
370 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
371 if (!kPreloadDexCachesCollectStats) {
372 return;
373 }
374 ClassLinker* linker = Runtime::Current()->GetClassLinker();
375 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath();
376 for (size_t i = 0; i< boot_class_path.size(); i++) {
377 const DexFile* dex_file = boot_class_path[i];
378 CHECK(dex_file != NULL);
379 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file);
380 for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
381 mirror::String* string = dex_cache->GetResolvedString(i);
382 if (string != NULL) {
383 filled->num_strings++;
384 }
385 }
386 for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) {
387 mirror::Class* klass = dex_cache->GetResolvedType(i);
388 if (klass != NULL) {
389 filled->num_types++;
390 }
391 }
392 for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) {
393 mirror::ArtField* field = dex_cache->GetResolvedField(i);
394 if (field != NULL) {
395 filled->num_fields++;
396 }
397 }
398 for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) {
399 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(i);
400 if (method != NULL) {
401 filled->num_methods++;
402 }
403 }
404 for (size_t i = 0; i < dex_cache->NumInitializedStaticStorage(); i++) {
405 mirror::StaticStorageBase* klass = dex_cache->GetInitializedStaticStorage()->Get(i);
406 if (klass != NULL) {
407 filled->num_static_storage++;
408 }
409 }
410 }
411}
412
413// TODO: http://b/11309598 This code was ported over based on the
414// Dalvik version. However, ART has similar code in other places such
415// as the CompilerDriver. This code could probably be refactored to
416// serve both uses.
417static void VMRuntime_preloadDexCaches(JNIEnv* env, jobject) {
418 if (!kPreloadDexCachesEnabled) {
419 return;
420 }
421
422 ScopedObjectAccess soa(env);
423
424 DexCacheStats total;
425 DexCacheStats before;
426 if (kPreloadDexCachesCollectStats) {
427 LOG(INFO) << "VMRuntime.preloadDexCaches starting";
428 PreloadDexCachesStatsTotal(&total);
429 PreloadDexCachesStatsFilled(&before);
430 }
431
432 Runtime* runtime = Runtime::Current();
433 ClassLinker* linker = runtime->GetClassLinker();
434
435 // We use a std::map to avoid heap allocating StringObjects to lookup in gDvm.literalStrings
436 StringTable strings;
437 if (kPreloadDexCachesStrings) {
438 runtime->GetInternTable()->VisitRoots(PreloadDexCachesStringsVisitor, &strings, false, false);
439 }
440
441 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath();
442 for (size_t i = 0; i< boot_class_path.size(); i++) {
443 const DexFile* dex_file = boot_class_path[i];
444 CHECK(dex_file != NULL);
445 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file);
446
447 if (kPreloadDexCachesStrings) {
448 for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
449 PreloadDexCachesResolveString(dex_cache, i, strings);
450 }
451 }
452
453 if (kPreloadDexCachesTypes) {
454 for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) {
455 PreloadDexCachesResolveType(dex_cache, i);
456 }
457 }
458
459 if (kPreloadDexCachesFieldsAndMethods) {
460 for (size_t class_def_index = 0;
461 class_def_index < dex_file->NumClassDefs();
462 class_def_index++) {
463 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
464 const byte* class_data = dex_file->GetClassData(class_def);
465 if (class_data == NULL) {
466 continue;
467 }
468 ClassDataItemIterator it(*dex_file, class_data);
469 for (; it.HasNextStaticField(); it.Next()) {
470 uint32_t field_idx = it.GetMemberIndex();
471 PreloadDexCachesResolveField(dex_cache, field_idx, true);
472 }
473 for (; it.HasNextInstanceField(); it.Next()) {
474 uint32_t field_idx = it.GetMemberIndex();
475 PreloadDexCachesResolveField(dex_cache, field_idx, false);
476 }
477 for (; it.HasNextDirectMethod(); it.Next()) {
478 uint32_t method_idx = it.GetMemberIndex();
479 InvokeType invoke_type = it.GetMethodInvokeType(class_def);
480 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
481 }
482 for (; it.HasNextVirtualMethod(); it.Next()) {
483 uint32_t method_idx = it.GetMemberIndex();
484 InvokeType invoke_type = it.GetMethodInvokeType(class_def);
485 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
486 }
487 }
488 }
489 }
490
491 if (kPreloadDexCachesCollectStats) {
492 DexCacheStats after;
493 PreloadDexCachesStatsFilled(&after);
494 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
495 total.num_strings, before.num_strings, after.num_strings);
496 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
497 total.num_types, before.num_types, after.num_types);
498 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
499 total.num_fields, before.num_fields, after.num_fields);
500 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
501 total.num_methods, before.num_methods, after.num_methods);
502 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches storage total=%d before=%d after=%d",
503 total.num_static_storage,
504 before.num_static_storage,
505 after.num_static_storage);
506 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches finished");
507 }
508}
509
Elliott Hughes0512f022012-03-15 22:10:52 -0700510static JNINativeMethod gMethods[] = {
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700511 NATIVE_METHOD(VMRuntime, addressOf, "(Ljava/lang/Object;)J"),
512 NATIVE_METHOD(VMRuntime, bootClassPath, "()Ljava/lang/String;"),
513 NATIVE_METHOD(VMRuntime, classPath, "()Ljava/lang/String;"),
514 NATIVE_METHOD(VMRuntime, clearGrowthLimit, "()V"),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700515 NATIVE_METHOD(VMRuntime, concurrentGC, "()V"),
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700516 NATIVE_METHOD(VMRuntime, disableJitCompilation, "()V"),
517 NATIVE_METHOD(VMRuntime, getTargetHeapUtilization, "()F"),
518 NATIVE_METHOD(VMRuntime, isDebuggerActive, "()Z"),
519 NATIVE_METHOD(VMRuntime, nativeSetTargetHeapUtilization, "(F)V"),
520 NATIVE_METHOD(VMRuntime, newNonMovableArray, "(Ljava/lang/Class;I)Ljava/lang/Object;"),
521 NATIVE_METHOD(VMRuntime, properties, "()[Ljava/lang/String;"),
522 NATIVE_METHOD(VMRuntime, setTargetSdkVersion, "(I)V"),
Mathieu Chartier987ccff2013-07-08 11:05:21 -0700523 NATIVE_METHOD(VMRuntime, registerNativeAllocation, "(I)V"),
524 NATIVE_METHOD(VMRuntime, registerNativeFree, "(I)V"),
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700525 NATIVE_METHOD(VMRuntime, startJitCompilation, "()V"),
Elliott Hughes8cf5bc02012-02-02 16:32:16 -0800526 NATIVE_METHOD(VMRuntime, trimHeap, "()V"),
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700527 NATIVE_METHOD(VMRuntime, vmVersion, "()Ljava/lang/String;"),
Brian Carlstromcef450c2013-06-28 14:38:26 -0700528 NATIVE_METHOD(VMRuntime, vmLibrary, "()Ljava/lang/String;"),
Brian Carlstrome8104522013-10-15 21:56:36 -0700529 NATIVE_METHOD(VMRuntime, preloadDexCaches, "()V"),
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700530};
531
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700532void register_dalvik_system_VMRuntime(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700533 REGISTER_NATIVE_METHODS("dalvik/system/VMRuntime");
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700534}
535
536} // namespace art