Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Object/
H A DXCOFFObjectFile.cpp571 const uint64_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
576 if (Sec64->VirtualAddress <= RelocAddress && in getRelocationOffset()
577 RelocAddress < Sec64->VirtualAddress + Sec64->SectionSize) { in getRelocationOffset()
578 return RelocAddress - Sec64->VirtualAddress; in getRelocationOffset()
585 const uint32_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
590 if (Sec32->VirtualAddress <= RelocAddress && in getRelocationOffset()
591 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) { in getRelocationOffset()
592 return RelocAddress - Sec32->VirtualAddress; in getRelocationOffset()
/openbsd/gnu/llvm/llvm/tools/llvm-objdump/
H A DMachODump.cpp8194 uint64_t RelocAddress = Reloc.getOffset(); in printMachOCompactUnwindSection() local
8196 uint32_t EntryIdx = RelocAddress / EntrySize; in printMachOCompactUnwindSection()
8197 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize; in printMachOCompactUnwindSection()