Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h455 const auto &SymInfo = pos->second; in getSymbolLocalAddress() local
457 if (SymInfo.getSectionID() == AbsoluteSymbolSection) in getSymbolLocalAddress()
459 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset(); in getSymbolLocalAddress()
DRuntimeDyldChecker.cpp854 const auto &SymInfo = pos->second; in getSubsectionStartingAt() local
855 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID()); in getSubsectionStartingAt()
857 SymInfo.getOffset(), in getSubsectionStartingAt()
858 getRTDyld().Sections[SymInfo.getSectionID()].getSize() - in getSubsectionStartingAt()
859 SymInfo.getOffset()); in getSubsectionStartingAt()
889 const auto &SymInfo = GSTEntry.second; in registerStubMap() local
890 if (SymInfo.getSectionID() == StubMapEntry.first.SectionID && in registerStubMap()
891 SymInfo.getOffset() == in registerStubMap()
DRuntimeDyld.cpp687 const auto &SymInfo = Loc->second; in addRelocationForSymbol() local
688 RECopy.Addend += SymInfo.getOffset(); in addRelocationForSymbol()
689 Relocations[SymInfo.getSectionID()].push_back(RECopy); in addRelocationForSymbol()
829 const auto &SymInfo = Loc->second; in resolveExternalSymbols() local
830 Addr = getSectionLoadAddress(SymInfo.getSectionID()) + in resolveExternalSymbols()
831 SymInfo.getOffset(); in resolveExternalSymbols()
DRuntimeDyldMachO.cpp109 const auto &SymInfo = SI->second; in getRelocationValueRef() local
110 Value.SectionID = SymInfo.getSectionID(); in getRelocationValueRef()
111 Value.Offset = SymInfo.getOffset() + RE.Addend; in getRelocationValueRef()
DRuntimeDyldELF.cpp1196 const auto &SymInfo = gsi->second; in processRelocationRef() local
1197 Value.SectionID = SymInfo.getSectionID(); in processRelocationRef()
1198 Value.Offset = SymInfo.getOffset(); in processRelocationRef()
1199 Value.Addend = SymInfo.getOffset() + Addend; in processRelocationRef()