Home
last modified time | relevance | path

Searched refs:pc_insn_offset (Results 1 – 8 of 8) sorted by relevance

/art/compiler/linker/
Dlinker_patch.h69 uint32_t pc_insn_offset, in IntrinsicReferencePatch() argument
73 patch.pc_insn_offset_ = pc_insn_offset; in IntrinsicReferencePatch()
78 uint32_t pc_insn_offset, in BootImageRelRoPatch() argument
82 patch.pc_insn_offset_ = pc_insn_offset; in BootImageRelRoPatch()
88 uint32_t pc_insn_offset, in RelativeMethodPatch() argument
92 patch.pc_insn_offset_ = pc_insn_offset; in RelativeMethodPatch()
98 uint32_t pc_insn_offset, in MethodBssEntryPatch() argument
102 patch.pc_insn_offset_ = pc_insn_offset; in MethodBssEntryPatch()
108 uint32_t pc_insn_offset, in RelativeJniEntrypointPatch() argument
112 patch.pc_insn_offset_ = pc_insn_offset; in RelativeJniEntrypointPatch()
[all …]
/art/dex2oat/linker/riscv64/
Drelative_patcher_riscv64.cc70 uint32_t pc_insn_offset = patch.PcInsnOffset(); in PatchPcRelativeReference() local
71 uint32_t disp = target_offset - (patch_offset - literal_offset + pc_insn_offset); in PatchPcRelativeReference()
72 if (literal_offset == pc_insn_offset) { in PatchPcRelativeReference()
75 << literal_offset << ", " << pc_insn_offset << ", 0x" << std::hex << insn; in PatchPcRelativeReference()
84 DCHECK_EQ(GetInsn(code, pc_insn_offset) & 0x00000fffu, in PatchPcRelativeReference()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc214 uint32_t pc_insn_offset = patch.PcInsnOffset(); in PatchPcRelativeReference() local
215 uint32_t disp = target_offset - ((patch_offset - literal_offset + pc_insn_offset) & ~0xfffu); in PatchPcRelativeReference()
218 if (literal_offset == pc_insn_offset) { in PatchPcRelativeReference()
221 << literal_offset << ", " << pc_insn_offset << ", 0x" << std::hex << insn; in PatchPcRelativeReference()
286 uint32_t adrp = GetInsn(code, pc_insn_offset); in PatchPcRelativeReference()
293 uint32_t b_offset = patch_offset - literal_offset + pc_insn_offset; in PatchPcRelativeReference()
/art/compiler/optimizing/
Dcode_generator_arm64.cc5364 uint32_t pc_insn_offset, in NoDexFileAdapter() argument
5367 return Factory(literal_offset, pc_insn_offset, boot_image_offset); in NoDexFileAdapter()
Dcode_generator_riscv64.cc6683 uint32_t pc_insn_offset, in NoDexFileAdapter() argument
6686 return Factory(literal_offset, pc_insn_offset, boot_image_offset); in NoDexFileAdapter()
Dcode_generator_x86_64.cc1445 uint32_t pc_insn_offset, in NoDexFileAdapter() argument
1448 return Factory(literal_offset, pc_insn_offset, boot_image_offset); in NoDexFileAdapter()
Dcode_generator_x86.cc5848 uint32_t pc_insn_offset, in NoDexFileAdapter() argument
5851 return Factory(literal_offset, pc_insn_offset, boot_image_offset); in NoDexFileAdapter()
Dcode_generator_arm_vixl.cc9884 uint32_t pc_insn_offset, in NoDexFileAdapter() argument
9887 return Factory(literal_offset, pc_insn_offset, boot_image_offset); in NoDexFileAdapter()