Home
last modified time | relevance | path

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

/art/compiler/linker/
Dlinker_patch.h78 const DexFile* target_dex_file, in RelativeMethodPatch() argument
81 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch()
88 const DexFile* target_dex_file, in MethodBssEntryPatch() argument
91 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch()
98 const DexFile* target_dex_file, in RelativeCodePatch() argument
100 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
106 const DexFile* target_dex_file, in RelativeTypePatch() argument
109 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
116 const DexFile* target_dex_file, in TypeBssEntryPatch() argument
119 LinkerPatch patch(literal_offset, Type::kTypeBssEntry, target_dex_file); in TypeBssEntryPatch()
[all …]
/art/runtime/
Dvdex_file.cc308 void VdexFile::UnquickenDexFile(const DexFile& target_dex_file, in UnquickenDexFile() argument
312 target_dex_file, source_dex_file.Begin(), decompile_return_instruction); in UnquickenDexFile()
315 void VdexFile::UnquickenDexFile(const DexFile& target_dex_file, in UnquickenDexFile() argument
328 for (ClassAccessor class_accessor : target_dex_file.GetClasses()) { in UnquickenDexFile()
337 target_dex_file, in UnquickenDexFile()
Dvdex_file.h325 void UnquickenDexFile(const DexFile& target_dex_file,
367 void UnquickenDexFile(const DexFile& target_dex_file,
/art/compiler/optimizing/
Dcode_generator_x86.h667 const DexFile* target_dex_file, in X86PcRelativePatchInfo()
669 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
Dcode_generator.h707 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo()
710 const DexFile* target_dex_file; member
Dcode_generator_arm_vixl.h600 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo()
604 const DexFile* target_dex_file; member
Dcode_generator_x86_64.cc1229 Factory(literal_offset, info.target_dex_file, info.label.Position(), info.offset_or_index)); in EmitPcRelativeLinkerPatches()
1235 const DexFile* target_dex_file, in NoDexFileAdapter() argument
1238 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
7872 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
7878 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm64.cc4830 info.target_dex_file, in EmitPcRelativeLinkerPatches()
4838 const DexFile* target_dex_file, in NoDexFileAdapter() argument
4841 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
4884 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
Dcode_generator_x86.cc5288 info.target_dex_file, in EmitPcRelativeLinkerPatches()
5296 const DexFile* target_dex_file, in NoDexFileAdapter() argument
5299 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
8647 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
8653 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm_vixl.cc9372 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
9389 const DexFile* target_dex_file, in NoDexFileAdapter() argument
9392 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
9435 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
/art/dex2oat/linker/
Doat_writer.cc1944 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument
1946 return (target_dex_file == dex_file_) in GetDexCache()
1948 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()