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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 402 const auto &SymInfo = pos->second;
403 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset();
RuntimeDyldMachO.cpp 70 const auto &SymInfo = SI->second;
71 Value.SectionID = SymInfo.getSectionID();
72 Value.Offset = SymInfo.getOffset() + RE.Addend;
RuntimeDyldChecker.cpp 853 const auto &SymInfo = pos->second;
854 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID());
856 SymInfo.getOffset(),
857 getRTDyld().Sections[SymInfo.getSectionID()].Size -
858 SymInfo.getOffset());
    [all...]
RuntimeDyld.cpp 665 const auto &SymInfo = Loc->second;
666 RECopy.Addend += SymInfo.getOffset();
667 Relocations[SymInfo.getSectionID()].push_back(RECopy);
807 const auto &SymInfo = Loc->second;
808 Addr = getSectionLoadAddress(SymInfo.getSectionID()) +
809 SymInfo.getOffset();
    [all...]

Completed in 378 milliseconds