Searched refs:target_dex_file (Results 1 – 14 of 14) sorted by relevance
/art/compiler/ |
D | compiled_method.h | 134 const DexFile* target_dex_file, in RelativeMethodPatch() argument 137 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch() 144 const DexFile* target_dex_file, in MethodBssEntryPatch() argument 147 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch() 154 const DexFile* target_dex_file, in CodePatch() argument 156 LinkerPatch patch(literal_offset, Type::kCall, target_dex_file); in CodePatch() 162 const DexFile* target_dex_file, in RelativeCodePatch() argument 164 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch() 170 const DexFile* target_dex_file, in RelativeTypePatch() argument 173 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch() [all …]
|
D | oat_writer.cc | 1521 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() argument 1523 return (target_dex_file == dex_file_) in GetDexCache() 1525 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()
|
/art/runtime/ |
D | vdex_file.cc | 256 void VdexFile::FullyUnquickenDexFile(const DexFile& target_dex_file, in FullyUnquickenDexFile() argument 267 for (uint32_t i = 0; i < target_dex_file.NumClassDefs(); ++i) { in FullyUnquickenDexFile() 268 const DexFile::ClassDef& class_def = target_dex_file.GetClassDef(i); in FullyUnquickenDexFile() 269 const uint8_t* class_data = target_dex_file.GetClassData(class_def); in FullyUnquickenDexFile() 271 for (ClassDataItemIterator class_it(target_dex_file, class_data); in FullyUnquickenDexFile()
|
D | vdex_file.h | 151 void FullyUnquickenDexFile(const DexFile& target_dex_file,
|
/art/compiler/optimizing/ |
D | code_generator_mips.h | 597 : target_dex_file(dex_file), in PcRelativePatchInfo() 603 const DexFile& target_dex_file; member 645 : target_dex_file(dex_file), index(idx) { } in JitPatchInfo() 648 const DexFile& target_dex_file; member
|
D | code_generator_mips64.h | 560 : target_dex_file(dex_file), in PcRelativePatchInfo() 565 const DexFile& target_dex_file; member
|
D | code_generator_x86.h | 613 const DexFile& target_dex_file, in X86PcRelativePatchInfo() 615 : PatchInfo(target_dex_file, target_index), in X86PcRelativePatchInfo()
|
D | code_generator.h | 576 PatchInfo(const DexFile& target_dex_file, uint32_t target_index) in PatchInfo() 577 : dex_file(target_dex_file), index(target_index) { } in PatchInfo()
|
D | code_generator_arm64.h | 761 : target_dex_file(dex_file), offset_or_index(off_or_idx), label(), pc_insn_label() { } in PcRelativePatchInfo() 763 const DexFile& target_dex_file; member
|
D | code_generator_arm_vixl.h | 565 : target_dex_file(dex_file), offset_or_index(off_or_idx) { } in PcRelativePatchInfo() 568 const DexFile& target_dex_file; member
|
D | code_generator_mips.cc | 1635 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches() 1817 const auto it = jit_string_roots_.find(StringReference(&info.target_dex_file, in EmitJitRootPatches() 1824 const auto it = jit_class_roots_.find(TypeReference(&info.target_dex_file, in EmitJitRootPatches()
|
D | code_generator_arm64.cc | 4746 &info.target_dex_file, in EmitPcRelativeLinkerPatches()
|
D | code_generator_mips64.cc | 1540 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
|
D | code_generator_arm_vixl.cc | 9252 const DexFile& dex_file = info.target_dex_file; in EmitPcRelativeLinkerPatches()
|