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.h637 const DexFile* target_dex_file, in X86PcRelativePatchInfo()
639 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
Dcode_generator.h677 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo()
680 const DexFile* target_dex_file; member
Dcode_generator_arm_vixl.h569 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo()
573 const DexFile* target_dex_file; member
Dcode_generator_x86_64.cc1177 Factory(literal_offset, info.target_dex_file, info.label.Position(), info.offset_or_index)); in EmitPcRelativeLinkerPatches()
1183 const DexFile* target_dex_file, in NoDexFileAdapter() argument
1186 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
7749 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
7755 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm64.cc4564 info.target_dex_file, in EmitPcRelativeLinkerPatches()
4572 const DexFile* target_dex_file, in NoDexFileAdapter() argument
4575 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
4618 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
Dcode_generator_x86.cc5192 info.target_dex_file, in EmitPcRelativeLinkerPatches()
5200 const DexFile* target_dex_file, in NoDexFileAdapter() argument
5203 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
8530 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
8536 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm_vixl.cc9170 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
9187 const DexFile* target_dex_file, in NoDexFileAdapter() argument
9190 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
9233 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
/art/dex2oat/linker/
Doat_writer.cc1933 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument
1935 return (target_dex_file == dex_file_) in GetDexCache()
1937 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()