Home
last modified time | relevance | path

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

/art/dex2oat/linker/x86/
Drelative_patcher_x86.cc29 uint32_t anchor_literal_offset = patch.PcInsnOffset(); in PatchPcRelativeReference() local
33 DCHECK_GE(anchor_literal_offset, 5u); in PatchPcRelativeReference()
34 DCHECK_LT(anchor_literal_offset, code->size()); in PatchPcRelativeReference()
35 DCHECK_EQ((*code)[anchor_literal_offset - 5u], 0xe8u); in PatchPcRelativeReference()
36 DCHECK_EQ((*code)[anchor_literal_offset - 4u], 0x00u); in PatchPcRelativeReference()
37 DCHECK_EQ((*code)[anchor_literal_offset - 3u], 0x00u); in PatchPcRelativeReference()
38 DCHECK_EQ((*code)[anchor_literal_offset - 2u], 0x00u); in PatchPcRelativeReference()
39 DCHECK_EQ((*code)[anchor_literal_offset - 1u], 0x00u); in PatchPcRelativeReference()
40 DCHECK_EQ((*code)[anchor_literal_offset] & 0xf8u, 0x58u); in PatchPcRelativeReference()
52 uint32_t anchor_offset = patch_offset - literal_offset + anchor_literal_offset; in PatchPcRelativeReference()