Home
last modified time | relevance | path

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

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