/art/runtime/entrypoints/ |
entrypoint_utils.cc | 20 #include "dex_file-inl.h" 113 const DexFile& dex_file = *referring_class->GetDexCache()->GetDexFile(); local 114 fields_class = class_linker->ResolveType(dex_file, 115 dex_file.GetFieldId(field_idx).class_idx_, 218 const DexFile& dex_file = *referring_class->GetDexCache()->GetDexFile(); local 219 methods_class = class_linker->ResolveType(dex_file, 220 dex_file.GetMethodId(method_idx).class_idx_,
|
/art/compiler/dex/quick/ |
codegen_util.cc | 18 #include "dex_file-inl.h" 125 << PrettyMethod(cu_->method_idx, *cu_->dex_file); 247 << PrettyMethod(cu_->method_idx, *cu_->dex_file); 272 cu_->dex_file->GetMethodId(cu_->method_idx); 273 std::string signature(cu_->dex_file->GetMethodSignature(method_id)); 274 std::string name(cu_->dex_file->GetMethodName(method_id)); 275 std::string descriptor(cu_->dex_file->GetMethodDeclaringClassDescriptor(method_id)); 364 cu_->compiler_driver->AddCodePatch(cu_->dex_file, 371 const DexFile::MethodId& id = cu_->dex_file->GetMethodId(target); 380 cu_->compiler_driver->AddMethodPatch(cu_->dex_file, [all...] |
gen_invoke.cc | 18 #include "dex_file-inl.h" 349 CHECK_EQ(cu->dex_file, target_method.dex_file); 363 CHECK_EQ(cu->dex_file, target_method.dex_file); 392 CHECK_EQ(cu->dex_file, target_method.dex_file); 406 CHECK_EQ(cu->dex_file, target_method.dex_file); 506 CHECK_EQ(cu->dex_file, target_method.dex_file) [all...] |
/art/runtime/ |
utils.cc | 27 #include "dex_file-inl.h" 302 std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type) { 303 if (field_idx >= dex_file.NumFieldIds()) { 306 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx); 309 result += dex_file.GetFieldTypeDescriptor(field_id); 312 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id)); 314 result += dex_file.GetFieldName(field_id); 318 std::string PrettyType(uint32_t type_idx, const DexFile& dex_file) { 319 if (type_idx >= dex_file.NumTypeIds()) { 322 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx) [all...] |
intern_table.cc | 102 const DexFile* dex_file = dex_cache->GetDexFile(); local 104 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str()); 106 uint32_t string_idx = dex_file->GetIndexForStringId(*string_id);
|
oat.h | 23 #include "dex_file.h"
|
utils.h | 200 std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type = true); 206 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true); 217 std::string PrettyType(uint32_t type_idx, const DexFile& dex_file);
|
/art/compiler/ |
elf_writer_mclinker.cc | 242 const DexFile& dex_file = it.GetDexFile(); local 245 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx)); 353 const DexFile& dex_file = it.GetDexFile(); local 359 mirror::DexCache* dex_cache = linker->FindDexCache(dex_file); 362 method = linker->ResolveMethod(dex_file, method_idx, dex_cache, NULL, NULL, invoke_type); 366 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx));
|
image_test.cc | 54 for (const DexFile* dex_file : class_linker->GetBootClassPath()) { 55 dex_file->EnableWrite();
|
/art/compiler/jni/quick/ |
jni_compiler.cc | 25 #include "dex_file-inl.h" 57 const DexFile& dex_file) { 62 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); 488 const art::DexFile& dex_file) { 489 return ArtJniCompileMethodInternal(compiler, access_flags, method_idx, dex_file);
|
/art/runtime/entrypoints/quick/ |
quick_trampoline_entrypoints.cc | 19 #include "dex_file-inl.h" 452 const DexFile* dex_file; local 459 dex_file = &mh.GetDexFile(); 517 dex_file = &MethodHelper(called).GetDexFile(); 522 dex_file->GetMethodShorty(dex_file->GetMethodId(dex_method_idx), &shorty_len);
|
quick_dexcache_entrypoints.cc | 20 #include "dex_file-inl.h"
|
quick_jni_entrypoints.cc | 17 #include "dex_file-inl.h"
|
/art/compiler/sea_ir/types/ |
type_inference_visitor.h | 21 #include "dex_file-inl.h"
|
type_inference.h | 21 #include "dex_file-inl.h"
|
/art/dex2oat/ |
dex2oat.cc | 33 #include "dex_file-inl.h" 371 const DexFile* dex_file = DexFile::Open(parsed[i], parsed[i]); local 372 if (dex_file == NULL) { 375 dex_files.push_back(dex_file); 424 const DexFile* dex_file = DexFile::Open(dex_filename, dex_location); local 425 if (dex_file == NULL) { 429 dex_files.push_back(dex_file); 915 const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_location); local 944 const DexFile* dex_file = dex_files[i]; local [all...] |
/art/runtime/native/ |
java_lang_reflect_Array.cc | 19 #include "dex_file-inl.h"
|
java_lang_Class.cc | 18 #include "dex_file-inl.h"
|
/libcore/luni/src/test/java/dalvik/system/ |
DexClassLoaderTest.java | 40 private static final File DEX_FILE = new File(TMP_DIR, DEX_NAME); 70 copyResource(cl, DEX_NAME, DEX_FILE); 109 case ONE_DEX: file1 = DEX_FILE; file2 = null; break; 111 case TWO_DEX: file1 = DEX_FILE; file2 = DEX2_FILE; break;
|
/art/compiler/sea_ir/code_gen/ |
code_gen.h | 150 const art::DexFile& dex_file): CodeGenPassVisitor(code_gen_data), dex_file_(dex_file) { }
|
/art/compiler/sea_ir/ir/ |
sea.cc | 52 SeaGraph* SeaGraph::GetGraph(const art::DexFile& dex_file) { 53 return new SeaGraph(dex_file); 194 const art::DexFile& dex_file, uint16_t class_def_idx, 398 const art::DexFile& dex_file) { 403 CodeGenVisitor code_gen_visitor(code_gen_prepass_visitor.GetData(), dex_file); 413 uint32_t method_idx, uint32_t method_access_flags, const art::DexFile& dex_file) { 415 BuildMethodSeaGraph(code_item, dex_file, class_def_idx, method_idx, method_access_flags); 431 CodeGenData* cgd = GenerateLLVM(function_name, dex_file);
|
/art/compiler/dex/ |
dex_to_dex_compiler.cc | 19 #include "dex_file-inl.h" 281 const art::DexFile& dex_file, 285 dex_file, code_item, class_def_idx, method_idx, access_flags);
|
mir_graph.cc | 19 #include "dex_file-inl.h" 430 LOG(INFO) << PrettyMethod(cu_->method_idx, *cu_->dex_file); 507 uint32_t method_idx, jobject class_loader, const DexFile& dex_file) { 514 dex_file, current_code_item_, class_def_idx, method_idx, access_flags)); 535 cu_->dex_file = &dex_file; 540 cu_->shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); 712 std::string fname(PrettyMethod(cu_->method_idx, *cu_->dex_file)); [all...] |
/art/runtime/mirror/ |
throwable.cc | 21 #include "dex_file-inl.h"
|
/cts/tools/dex-tools/src/dex/reader/ |
TypeFormatter.java | 107 builder.append("----------------DEX_FILE--------------\n\n");
|