Lines Matching refs:ES
49 ExecutionSession ES(std::make_unique<UnsupportedExecutorProcessControl>()); in testSetProcessAllSections() local
50 auto &JD = ES.createBareJITDylib("main"); in testSetProcessAllSections()
51 auto Foo = ES.intern("foo"); in testSetProcessAllSections()
53 RTDyldObjectLinkingLayer ObjLayer(ES, [&NonAllocSectionSeen]() { in testSetProcessAllSections()
63 ES.lookup(LookupKind::Static, makeJITDylibSearchOrder(&JD), in testSetProcessAllSections()
67 if (auto Err = ES.endSession()) in testSetProcessAllSections()
68 ES.reportError(std::move(Err)); in testSetProcessAllSections()
156 ExecutionSession ES{std::make_unique<UnsupportedExecutorProcessControl>()}; in TEST() local
157 auto &JD = ES.createBareJITDylib("main"); in TEST()
158 auto Foo = ES.intern("foo"); in TEST()
160 ES, []() { return std::make_unique<SectionMemoryManager>(); }); in TEST()
161 IRCompileLayer CompileLayer(ES, ObjLayer, in TEST()
167 ES.lookup( in TEST()
173 if (auto Err = ES.endSession()) in TEST()
174 ES.reportError(std::move(Err)); in TEST()
226 ExecutionSession ES{std::make_unique<UnsupportedExecutorProcessControl>()}; in TEST() local
227 auto &JD = ES.createBareJITDylib("main"); in TEST()
228 auto Foo = ES.intern("foo"); in TEST()
230 ES, []() { return std::make_unique<SectionMemoryManager>(); }); in TEST()
231 IRCompileLayer CompileLayer(ES, ObjLayer, in TEST()
237 ES.lookup( in TEST()
243 if (auto Err = ES.endSession()) in TEST()
244 ES.reportError(std::move(Err)); in TEST()