Lines Matching refs:Session
289 operator<<(raw_ostream &OS, const Session::MemoryRegionInfo &MRI) { in operator <<()
298 operator<<(raw_ostream &OS, const Session::SymbolInfoMap &SIM) { in operator <<()
306 operator<<(raw_ostream &OS, const Session::FileInfo &FI) { in operator <<()
317 operator<<(raw_ostream &OS, const Session::FileInfoMap &FIM) { in operator <<()
323 static Error applyHarnessPromotions(Session &S, LinkGraph &G) { in applyHarnessPromotions()
725 getTestObjectFileInterface(Session &S, MemoryBufferRef O) { in getTestObjectFileInterface()
791 static Error loadProcessSymbols(Session &S) { in loadProcessSymbols()
803 static Error loadDylibs(Session &S) { in loadDylibs()
986 Expected<std::unique_ptr<Session>> Session::Create(Triple TT) { in Create()
1013 std::unique_ptr<Session> S(new Session(std::move(EPC), Err)); in Create()
1019 Session::~Session() { in ~Session()
1024 Session::Session(std::unique_ptr<ExecutorProcessControl> EPC, Error &Err) in Session() function in llvm::Session
1032 JITLinkSessionPlugin(Session &S) : S(S) {} in Session()
1048 Session &S; in Session()
1133 void Session::dumpSessionInfo(raw_ostream &OS) { in dumpSessionInfo()
1137 void Session::modifyPassConfig(const Triple &TT, in modifyPassConfig()
1188 Expected<Session::FileInfo &> Session::findFileInfo(StringRef FileName) { in findFileInfo()
1196 Expected<Session::MemoryRegionInfo &>
1197 Session::findSectionInfo(StringRef FileName, StringRef SectionName) { in findSectionInfo()
1210 Expected<Session::MemoryRegionInfo &>
1211 Session::findStubInfo(StringRef FileName, StringRef TargetName) { in findStubInfo()
1224 Expected<Session::MemoryRegionInfo &>
1225 Session::findGOTEntryInfo(StringRef FileName, StringRef TargetName) { in findGOTEntryInfo()
1238 bool Session::isSymbolRegistered(StringRef SymbolName) { in isSymbolRegistered()
1242 Expected<Session::MemoryRegionInfo &>
1243 Session::findSymbolInfo(StringRef SymbolName, Twine ErrorMsgStem) { in findSymbolInfo()
1367 static void addPhonyExternalsGenerator(Session &S) { in addPhonyExternalsGenerator()
1371 static Error createJITDylibs(Session &S, in createJITDylibs()
1404 static Error addAbsoluteSymbols(Session &S, in addAbsoluteSymbols()
1440 static Error addAliases(Session &S, in addAliases()
1467 static Error addTestHarnesses(Session &S) { in addTestHarnesses()
1480 static Error addObjects(Session &S, in addObjects()
1529 static Error addLibraries(Session &S, in addLibraries()
1770 static Error addSessionInputs(Session &S) { in addSessionInputs()
1874 static Error runChecks(Session &S) { in runChecks()
1930 static void dumpSessionStats(Session &S) { in dumpSessionStats()
1943 static Expected<JITEvaluatedSymbol> getMainEntryPoint(Session &S) { in getMainEntryPoint()
1947 static Expected<JITEvaluatedSymbol> getOrcRuntimeEntryPoint(Session &S) { in getOrcRuntimeEntryPoint()
1955 static Expected<JITEvaluatedSymbol> getEntryPoint(Session &S) { in getEntryPoint()
1985 static Expected<int> runWithRuntime(Session &S, ExecutorAddr EntryPointAddr) { in runWithRuntime()
2002 static Expected<int> runWithoutRuntime(Session &S, in runWithoutRuntime()
2033 auto S = ExitOnErr(Session::Create(getFirstFileTriple())); in main()