diff options
author | 2011-09-03 12:25:21 -0700 | |
---|---|---|
committer | 2011-09-06 15:28:47 -0700 | |
commit | 69b15fb098162f19a4c20e6dccdcead04d9c77f0 (patch) | |
tree | 84fdfc26f560fb618b652a0aff98347f875a2653 /src/class_loader.cc | |
parent | 109bd6a38d0cd7c4b7797a9f2db8324c797d1368 (diff) |
Working dex2oat and oatexec
adb shell dex2oatd --dex-file=/system/framework/core.jar --image=/system/framework/boot.oat --base=0x50000000 "'--method=Ljava/lang/System;logI(Ljava/lang/String;)V'" "'--method=Ljava/lang/System;log(CLjava/lang/String;Ljava/lang/Throwable;)V'"
adb shell dex2oatd --boot-dex-file=/system/framework/core.jar --boot=/system/framework/boot.oat --dex-file=/system/framework/art-test-dex-HelloWorld.jar --image=/system/framework/art-test-dex-HelloWorld.oat
adb shell oatexecd -Xbootclasspath:/system/framework/core.jar -Xbootimage:/system/framework/boot.oat -classpath /system/framework/art-test-dex-HelloWorld.jar -Ximage:/system/framework/art-test-dex-HelloWorld.oat HelloWorld
09-05 17:58:18.912 2385 2385 I System : Hello, world!
Change-Id: I53e534068584f0c3a837313e4d517a0e4a7154fc
Diffstat (limited to 'src/class_loader.cc')
-rw-r--r-- | src/class_loader.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/class_loader.cc b/src/class_loader.cc index 97691362c4..8f8e829761 100644 --- a/src/class_loader.cc +++ b/src/class_loader.cc @@ -18,6 +18,7 @@ const std::vector<const DexFile*>& ClassLoader::GetClassPath(const ClassLoader* Class* PathClassLoader::dalvik_system_PathClassLoader_ = NULL; const PathClassLoader* PathClassLoader::Alloc(std::vector<const DexFile*> dex_files) { + DCHECK(dalvik_system_PathClassLoader_ != NULL); PathClassLoader* p = down_cast<PathClassLoader*>(dalvik_system_PathClassLoader_->AllocObject()); p->SetClassPath(dex_files); return p; |