Searched refs:target_dex_file (Results 1 – 9 of 9) sorted by relevance
/art/compiler/linker/ |
D | linker_patch.h | 81 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/ |
D | code_generator_x86.h | 691 const DexFile* target_dex_file, in X86PcRelativePatchInfo() 693 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
|
D | code_generator.h | 712 : target_dex_file(dex_file), offset_or_index(off_or_idx), label() { } in PatchInfo() 715 const DexFile* target_dex_file; member
|
D | code_generator_arm_vixl.h | 603 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo() 607 const DexFile* target_dex_file; member
|
D | code_generator_x86_64.cc | 1287 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()
|
D | code_generator_arm64.cc | 5030 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()
|
D | code_generator_x86.cc | 5547 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()
|
D | code_generator_arm_vixl.cc | 9536 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/ |
D | oat_writer.cc | 1983 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()
|