Home
last modified time | relevance | path

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

/art/compiler/linker/
Dlinker_patch.h81 const DexFile* target_dex_file, in RelativeMethodPatch() argument
84 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch()
91 const DexFile* target_dex_file, in MethodBssEntryPatch() argument
94 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch()
101 const DexFile* target_dex_file, in RelativeJniEntrypointPatch() argument
104 LinkerPatch patch(literal_offset, Type::kJniEntrypointRelative, target_dex_file); in RelativeJniEntrypointPatch()
111 const DexFile* target_dex_file, in RelativeCodePatch() argument
113 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
119 const DexFile* target_dex_file, in RelativeTypePatch() argument
122 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86.h691 const DexFile* target_dex_file, in X86PcRelativePatchInfo()
693 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
Dcode_generator.h712 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo()
715 const DexFile* target_dex_file; member
Dcode_generator_arm_vixl.h603 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo()
607 const DexFile* target_dex_file; member
Dcode_generator_x86_64.cc1287 Factory(literal_offset, info.target_dex_file, info.label.Position(), info.offset_or_index)); in EmitPcRelativeLinkerPatches()
1293 const DexFile* target_dex_file, in NoDexFileAdapter() argument
1296 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
8011 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
8017 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm64.cc5030 info.target_dex_file, in EmitPcRelativeLinkerPatches()
5038 const DexFile* target_dex_file, in NoDexFileAdapter() argument
5041 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
5093 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
Dcode_generator_x86.cc5547 info.target_dex_file, in EmitPcRelativeLinkerPatches()
5555 const DexFile* target_dex_file, in NoDexFileAdapter() argument
5558 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
8985 StringReference string_reference(info.target_dex_file, dex::StringIndex(info.offset_or_index)); in EmitJitRootPatches()
8991 TypeReference type_reference(info.target_dex_file, dex::TypeIndex(info.offset_or_index)); in EmitJitRootPatches()
Dcode_generator_arm_vixl.cc9536 const DexFile* dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
9553 const DexFile* target_dex_file, in NoDexFileAdapter() argument
9556 DCHECK(target_dex_file == nullptr); // Unused for these patches, should be null. in NoDexFileAdapter()
9605 DCHECK(info.target_dex_file == nullptr); in EmitLinkerPatches()
/art/dex2oat/linker/
Doat_writer.cc1983 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument
1985 return (target_dex_file == dex_file_) in GetDexCache()
1987 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()