/art/compiler/linker/ |
D | linker_patch.h | 58 const DexFile* target_dex_file, in RelativeMethodPatch() argument 61 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch() 68 const DexFile* target_dex_file, in MethodBssEntryPatch() argument 71 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch() 78 const DexFile* target_dex_file, in CodePatch() argument 80 LinkerPatch patch(literal_offset, Type::kCall, target_dex_file); in CodePatch() 86 const DexFile* target_dex_file, in RelativeCodePatch() argument 88 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch() 94 const DexFile* target_dex_file, in RelativeTypePatch() argument 97 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch() [all …]
|
/art/openjdkjvmti/ |
D | fixed_up_dex_file.cc | 53 static void UnhideApis(const art::DexFile& target_dex_file) { in UnhideApis() argument 54 for (uint32_t i = 0; i < target_dex_file.NumClassDefs(); ++i) { in UnhideApis() 55 const uint8_t* class_data = target_dex_file.GetClassData(target_dex_file.GetClassDef(i)); in UnhideApis() 57 for (art::ClassDataItemIterator class_it(target_dex_file, class_data); in UnhideApis()
|
/art/runtime/ |
D | vdex_file.cc | 267 void VdexFile::UnquickenDexFile(const DexFile& target_dex_file, in UnquickenDexFile() argument 270 UnquickenDexFile(target_dex_file, source_dex_file.Begin(), decompile_return_instruction); in UnquickenDexFile() 273 void VdexFile::UnquickenDexFile(const DexFile& target_dex_file, in UnquickenDexFile() argument 286 for (uint32_t i = 0; i < target_dex_file.NumClassDefs(); ++i) { in UnquickenDexFile() 287 const DexFile::ClassDef& class_def = target_dex_file.GetClassDef(i); in UnquickenDexFile() 288 const uint8_t* class_data = target_dex_file.GetClassData(class_def); in UnquickenDexFile() 290 for (ClassDataItemIterator class_it(target_dex_file, class_data); in UnquickenDexFile() 301 target_dex_file, in UnquickenDexFile()
|
D | vdex_file.h | 291 void UnquickenDexFile(const DexFile& target_dex_file, 307 void UnquickenDexFile(const DexFile& target_dex_file,
|
/art/compiler/optimizing/ |
D | code_generator_x86.h | 612 const DexFile* target_dex_file, in X86PcRelativePatchInfo() 614 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
|
D | code_generator_mips.h | 643 : target_dex_file(dex_file), index(idx) { } in JitPatchInfo() 646 const DexFile& target_dex_file; member
|
D | code_generator.h | 626 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo() 629 const DexFile* target_dex_file; member
|
D | code_generator_arm_vixl.h | 565 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo() 569 const DexFile* target_dex_file; member
|
D | code_generator_x86_64.cc | 1109 Factory(literal_offset, info.target_dex_file, info.label.Position(), info.offset_or_index)); in EmitPcRelativeLinkerPatches() 7162 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches() 7168 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
|
D | code_generator_x86.cc | 4661 info.target_dex_file, in EmitPcRelativeLinkerPatches() 7831 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches() 7837 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
|
D | code_generator_mips.cc | 1586 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches() 1775 StringReference string_reference(&info.target_dex_file, dex::StringIndex(info.index)); in EmitJitRootPatches() 1780 TypeReference type_reference(&info.target_dex_file, dex::TypeIndex(info.index)); in EmitJitRootPatches()
|
D | code_generator_arm64.cc | 4678 info.target_dex_file, in EmitPcRelativeLinkerPatches()
|
D | code_generator_mips64.cc | 1502 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
|
D | code_generator_arm_vixl.cc | 9076 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1961 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument 1963 return (target_dex_file == dex_file_) in GetDexCache() 1965 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()
|