Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Object/
H A DXCOFFObjectFile.cpp523 const uint64_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
528 if (Sec64->VirtualAddress <= RelocAddress && in getRelocationOffset()
529 RelocAddress < Sec64->VirtualAddress + Sec64->SectionSize) { in getRelocationOffset()
530 return RelocAddress - Sec64->VirtualAddress; in getRelocationOffset()
537 const uint32_t RelocAddress = Reloc->VirtualAddress; in getRelocationOffset() local
542 if (Sec32->VirtualAddress <= RelocAddress && in getRelocationOffset()
543 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) { in getRelocationOffset()
544 return RelocAddress - Sec32->VirtualAddress; in getRelocationOffset()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp7933 uint64_t RelocAddress = Reloc.getOffset(); in printMachOCompactUnwindSection() local
7935 uint32_t EntryIdx = RelocAddress / EntrySize; in printMachOCompactUnwindSection()
7936 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize; in printMachOCompactUnwindSection()