/art/compiler/linker/ |
D | linker_patch.h | 78 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/ |
D | vdex_file.cc | 308 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()
|
D | vdex_file.h | 325 void UnquickenDexFile(const DexFile& target_dex_file, 367 void UnquickenDexFile(const DexFile& target_dex_file,
|
/art/compiler/optimizing/ |
D | code_generator_x86.h | 667 const DexFile* target_dex_file, in X86PcRelativePatchInfo() 669 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
|
D | code_generator.h | 707 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo() 710 const DexFile* target_dex_file; member
|
D | code_generator_arm_vixl.h | 600 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo() 604 const DexFile* target_dex_file; member
|
D | code_generator_x86_64.cc | 1229 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()
|
D | code_generator_arm64.cc | 4830 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()
|
D | code_generator_x86.cc | 5288 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()
|
D | code_generator_arm_vixl.cc | 9372 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/ |
D | oat_writer.cc | 1944 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()
|