Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp575 const uint64_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
580 if (Sec64->VirtualAddress <= RelocAddress && in getRelocationOffset()
581 RelocAddress < Sec64->VirtualAddress + Sec64->SectionSize) { in getRelocationOffset()
582 return RelocAddress - Sec64->VirtualAddress; in getRelocationOffset()
589 const uint32_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
594 if (Sec32->VirtualAddress <= RelocAddress && in getRelocationOffset()
595 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) { in getRelocationOffset()
596 return RelocAddress - Sec32->VirtualAddress; in getRelocationOffset()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp7784 uint64_t RelocAddress = Reloc.getOffset(); in printMachOCompactUnwindSection() local
7786 uint32_t EntryIdx = RelocAddress / EntrySize; in printMachOCompactUnwindSection()
7787 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize; in printMachOCompactUnwindSection()