Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h512 uint64_t SectionAddr = 0; in getSymbol() local
514 SectionAddr = getSectionLoadAddress(SymEntry.getSectionID()); in getSymbol()
515 uint64_t TargetAddr = SectionAddr + SymEntry.getOffset(); in getSymbol()
530 uint64_t SectionAddr = 0; in getSymbolTable() local
532 SectionAddr = getSectionLoadAddress(SectionID); in getSymbolTable()
534 JITEvaluatedSymbol(SectionAddr + KV.second.getOffset(), KV.second.getFlags()); in getSymbolTable()
H A DRuntimeDyldChecker.cpp895 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID()); in getSubsectionStartingAt() local
896 return StringRef(reinterpret_cast<const char *>(SectionAddr) + in getSubsectionStartingAt()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1478 uint64_t SectionAddr = Section.getAddress(); in disassembleObject() local
1542 std::make_tuple(SectionAddr, SectionName, in disassembleObject()
1562 uint64_t Start = std::get<0>(Symbols[SI]) - SectionAddr; in disassembleObject()
1577 if (End + SectionAddr < StartAddress || in disassembleObject()
1578 Start + SectionAddr > StopAddress) { in disassembleObject()
1596 if (End + SectionAddr > StopAddress) in disassembleObject()
1597 End = StopAddress - SectionAddr; in disassembleObject()
1642 if (Index + SectionAddr < StartAddress || in disassembleObject()
1643 Index + SectionAddr > StopAddress) { in disassembleObject()
1724 if (((SectionAddr + Index) < StartAddress) || in disassembleObject()
[all …]
H A DMachODump.cpp7429 uint64_t SectionAddr = RelocSection.getAddress(); in findUnwindRelocNameAddend() local
7436 Addend = Addr - SectionAddr; in findUnwindRelocNameAddend()
7460 Addend = Addr - SectionAddr; in findUnwindRelocNameAddend()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp105 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize; in getSectionPtr() local
106 return reinterpret_cast<const char*>(SectionAddr); in getSectionPtr()