Home
last modified time | relevance | path

Searched refs:target_dex_file (Results 1 – 14 of 14) sorted by relevance

/art/compiler/
Dcompiled_method.h134 const DexFile* target_dex_file, in RelativeMethodPatch() argument
137 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch()
144 const DexFile* target_dex_file, in MethodBssEntryPatch() argument
147 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch()
154 const DexFile* target_dex_file, in CodePatch() argument
156 LinkerPatch patch(literal_offset, Type::kCall, target_dex_file); in CodePatch()
162 const DexFile* target_dex_file, in RelativeCodePatch() argument
164 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
170 const DexFile* target_dex_file, in RelativeTypePatch() argument
173 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
[all …]
Doat_writer.cc1521 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument
1523 return (target_dex_file == dex_file_) in GetDexCache()
1525 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()
/art/runtime/
Dvdex_file.cc256 void VdexFile::FullyUnquickenDexFile(const DexFile& target_dex_file, in FullyUnquickenDexFile() argument
267 for (uint32_t i = 0; i < target_dex_file.NumClassDefs(); ++i) { in FullyUnquickenDexFile()
268 const DexFile::ClassDef& class_def = target_dex_file.GetClassDef(i); in FullyUnquickenDexFile()
269 const uint8_t* class_data = target_dex_file.GetClassData(class_def); in FullyUnquickenDexFile()
271 for (ClassDataItemIterator class_it(target_dex_file, class_data); in FullyUnquickenDexFile()
Dvdex_file.h151 void FullyUnquickenDexFile(const DexFile& target_dex_file,
/art/compiler/optimizing/
Dcode_generator_mips.h597 : target_dex_file(dex_file), in PcRelativePatchInfo()
603 const DexFile& target_dex_file; member
645 : target_dex_file(dex_file), index(idx) { } in JitPatchInfo()
648 const DexFile& target_dex_file; member
Dcode_generator_mips64.h560 : target_dex_file(dex_file), in PcRelativePatchInfo()
565 const DexFile& target_dex_file; member
Dcode_generator_x86.h613 const DexFile& target_dex_file, in X86PcRelativePatchInfo()
615 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
Dcode_generator.h576 PatchInfo(const DexFile& target_dex_file, uint32_t target_index) in PatchInfo()
577 : dex_file(target_dex_file), index(target_index) { } in PatchInfo()
Dcode_generator_arm64.h761 : target_dex_file(dex_file), offset_or_index(off_or_idx), label(), pc_insn_label() { } in PcRelativePatchInfo()
763 const DexFile& target_dex_file; member
Dcode_generator_arm_vixl.h565 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo()
568 const DexFile& target_dex_file; member
Dcode_generator_mips.cc1635 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
1817 const auto it = jit_string_roots_.find(StringReference(&info.target_dex_file, in EmitJitRootPatches()
1824 const auto it = jit_class_roots_.find(TypeReference(&info.target_dex_file, in EmitJitRootPatches()
Dcode_generator_arm64.cc4746 &info.target_dex_file, in EmitPcRelativeLinkerPatches()
Dcode_generator_mips64.cc1540 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
Dcode_generator_arm_vixl.cc9252 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()