diff options
| author | 2013-09-19 02:56:49 -0700 | |
|---|---|---|
| committer | 2013-09-21 22:00:10 -0700 | |
| commit | ee39a10e45a6a0880e8b829525c40d6055818560 (patch) | |
| tree | 88cf2b0765ffc8cc96aa2f895254fbf799d0eb40 /compiler/dex/frontend.h | |
| parent | 7d690ba929a2a02e2b6344749561d49e2c0d55d2 (diff) | |
Use class def index from java.lang.Class.
Bug: 10244719
This removes the computation of the dex file index, when necessary this is
computed by searching the dex file. Its only necessary in
dalvik.system.DexFile.defineClassNative and DexFile::FindInClassPath, the
latter not showing up significantly in profiling with this change.
(cherry-picked from 8b2c0b9abc3f520495f4387ea040132ba85cae69)
Change-Id: I20c73a3b17d86286428ab0fd21bc13f51f36c85c
Diffstat (limited to 'compiler/dex/frontend.h')
| -rw-r--r-- | compiler/dex/frontend.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/frontend.h b/compiler/dex/frontend.h index bafa46892c..6c33d109e3 100644 --- a/compiler/dex/frontend.h +++ b/compiler/dex/frontend.h @@ -117,7 +117,7 @@ extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver,                                                   const art::DexFile::CodeItem* code_item,                                                   uint32_t access_flags,                                                   art::InvokeType invoke_type, -                                                 uint32_t class_dex_idx, +                                                 uint16_t class_def_idx,                                                   uint32_t method_idx,                                                   jobject class_loader,                                                   const art::DexFile& dex_file);  |