Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/interception/
H A Dinterception_win.cc403 static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) { in GetInstructionSize() argument
500 if (rel_offset) in GetInstructionSize()
501 *rel_offset = 2; in GetInstructionSize()
543 if (rel_offset) in GetInstructionSize()
544 *rel_offset = 3; in GetInstructionSize()
625 size_t rel_offset = 0; in CopyInstructions() local
626 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); in CopyInstructions()
629 if (rel_offset) { in CopyInstructions()
631 uptr relocated_offset = *(u32*)(to + cursor + rel_offset) - delta; in CopyInstructions()
636 *(u32*)(to + cursor + rel_offset) = relocated_offset; in CopyInstructions()
/freebsd-12.1/contrib/binutils/binutils/
H A Dobjdump.c1309 bfd_vma rel_offset, in disassemble_bytes() argument
1444 - (rel_offset + addr_offset); in disassemble_bytes()
1605 && (**relppp)->address < rel_offset + addr_offset + octets / opb) in disassemble_bytes()
1618 objdump_print_value (section->vma - rel_offset + q->address, in disassemble_bytes()
1685 bfd_vma rel_offset; in disassemble_section() local
1712 rel_offset = section->vma; in disassemble_section()
1718 rel_offset = 0; in disassemble_section()
1775 && (*rel_pp)->address < rel_offset + addr_offset) in disassemble_section()
1880 rel_offset, &rel_pp, rel_ppend); in disassemble_section()
H A Dreadelf.c690 unsigned long rel_offset, in slurp_rela_relocs() argument
762 unsigned long rel_offset, in slurp_rel_relocs() argument
837 unsigned long rel_offset, in dump_relocations() argument
4648 unsigned long rel_offset; in process_relocs() local
4668 rel_offset = dynamic_info [dynamic_relocations [i].reloc]; in process_relocs()
4690 name, rel_offset, rel_size); in process_relocs()
4693 offset_from_vma (file, rel_offset, rel_size), in process_relocs()
4717 rel_offset = section->sh_offset; in process_relocs()
4733 rel_offset, (unsigned long) (rel_size / section->sh_entsize)); in process_relocs()
4769 dump_relocations (file, rel_offset, rel_size, in process_relocs()
[all …]
H A DChangeLog-020329 * objdump.c (disassemble_bytes): Subtract rel_offset from printed
31 (disassemble_section): Set rel_offset to section->vma instead of
422 (disassemble_bytes): Add rel_offset parameter. Simplify reloc skipping
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1017 uint64_t rel_offset; in GetImageInfoAddress() local
1018 rel_offset = target->ReadUnsignedIntegerFromMemory( in GetImageInfoAddress()
1020 if (error.Success() && rel_offset != UINT64_MAX) { in GetImageInfoAddress()
1023 dyn_base + (offset - GetAddressByteSize()) + rel_offset; in GetImageInfoAddress()