HomeSort by relevance Sort by last modified time
    Searched refs:SymInfo (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 455 const auto &SymInfo = pos->second;
457 if (SymInfo.getSectionID() == AbsoluteSymbolSection)
459 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset();
RuntimeDyldChecker.cpp 854 const auto &SymInfo = pos->second;
855 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID());
857 SymInfo.getOffset(),
858 getRTDyld().Sections[SymInfo.getSectionID()].getSize() -
859 SymInfo.getOffset());
    [all...]
RuntimeDyldMachO.cpp 109 const auto &SymInfo = SI->second;
110 Value.SectionID = SymInfo.getSectionID();
111 Value.Offset = SymInfo.getOffset() + RE.Addend;
RuntimeDyld.cpp 687 const auto &SymInfo = Loc->second;
688 RECopy.Addend += SymInfo.getOffset();
689 Relocations[SymInfo.getSectionID()].push_back(RECopy);
829 const auto &SymInfo = Loc->second;
830 Addr = getSectionLoadAddress(SymInfo.getSectionID()) +
831 SymInfo.getOffset();
    [all...]
RuntimeDyldELF.cpp     [all...]

Completed in 67 milliseconds