Home
last modified time | relevance | path

Searched refs:ExecutorProcessControl (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.h26 class ExecutorProcessControl; variable
81 CreateWithABI(ExecutorProcessControl &EPC);
85 Create(ExecutorProcessControl &EPC);
94 ExecutorProcessControl &getExecutorProcessControl() const { return EPC; } in getExecutorProcessControl()
145 EPCIndirectionUtils(ExecutorProcessControl &EPC,
151 ExecutorProcessControl &EPC;
216 EPCIndirectionUtils::CreateWithABI(ExecutorProcessControl &EPC) { in CreateWithABI()
H A DEPCGenericDylibManager.h42 CreateWithDefaultBootstrapSymbols(ExecutorProcessControl &EPC);
46 EPCGenericDylibManager(ExecutorProcessControl &EPC, SymbolAddrs SAs) in EPCGenericDylibManager()
82 ExecutorProcessControl &EPC;
H A DEPCGenericMemoryAccess.h9 // Implements ExecutorProcessControl::MemoryAccess by making calls to
10 // ExecutorProcessControl::callWrapperAsync.
12 // This simplifies the implementaton of new ExecutorProcessControl instances,
26 class EPCGenericMemoryAccess : public ExecutorProcessControl::MemoryAccess {
40 EPCGenericMemoryAccess(ExecutorProcessControl &EPC, FuncAddrs FAs) in EPCGenericMemoryAccess()
86 ExecutorProcessControl &EPC;
H A DEPCGenericRTDyldMemoryManager.h41 CreateWithDefaultBootstrapSymbols(ExecutorProcessControl &EPC);
45 EPCGenericRTDyldMemoryManager(ExecutorProcessControl &EPC, SymbolAddrs SAs);
113 ExecutorProcessControl &EPC;
H A DExecutorProcessControl.h38 class ExecutorProcessControl {
49 friend class ExecutorProcessControl; variable
190 ExecutorProcessControl(std::shared_ptr<SymbolStringPool> SSP, in ExecutorProcessControl() function
194 virtual ~ExecutorProcessControl();
435 class InProcessMemoryAccess : public ExecutorProcessControl::MemoryAccess {
463 class UnsupportedExecutorProcessControl : public ExecutorProcessControl,
470 : ExecutorProcessControl(
511 class SelfExecutorProcessControl : public ExecutorProcessControl,
H A DMemoryMapper.h134 SharedMemoryMapper(ExecutorProcessControl &EPC, SymbolAddrs SAs,
138 Create(ExecutorProcessControl &EPC, SymbolAddrs SAs);
162 ExecutorProcessControl &EPC;
H A DEPCDynamicLibrarySearchGenerator.h10 // via the ExecutorProcessControl class.
23 class ExecutorProcessControl; variable
68 ExecutorProcessControl &EPC;
H A DEPCGenericJITLinkMemoryManager.h10 // ExecutorProcessControl::callWrapperAsync.
12 // This simplifies the implementaton of new ExecutorProcessControl instances,
39 EPCGenericJITLinkMemoryManager(ExecutorProcessControl &EPC, SymbolAddrs SAs) in EPCGenericJITLinkMemoryManager()
60 ExecutorProcessControl &EPC;
H A DSimpleRemoteEPC.h31 class SimpleRemoteEPC : public ExecutorProcessControl,
99 : ExecutorProcessControl(std::move(SSP), std::move(D)) {} in SimpleRemoteEPC()
H A DLookupAndRecordAddrs.h63 ExecutorProcessControl &EPC, tpctypes::DylibHandle H,
H A DLLJIT.h33 class ExecutorProcessControl; variable
315 std::unique_ptr<ExecutorProcessControl> EPC;
339 setExecutorProcessControl(std::unique_ptr<ExecutorProcessControl> EPC) { in setExecutorProcessControl()
H A DCore.h1459 ExecutionSession(std::unique_ptr<ExecutorProcessControl> EPC);
1471 ExecutorProcessControl &getExecutorProcessControl() { return *EPC; } in getExecutorProcessControl()
1858 std::unique_ptr<ExecutorProcessControl> EPC;
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Debugging/
H A DVTuneSupportPlugin.h29 VTuneSupportPlugin(ExecutorProcessControl &EPC, ExecutorAddr RegisterImplAddr, in VTuneSupportPlugin()
46 Create(ExecutorProcessControl &EPC, JITDylib &JD, bool EmitDebugInfo,
50 ExecutorProcessControl &EPC;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.cpp44 ExecutorProcessControl::LookupRequest> {
49 static size_t size(const ExecutorProcessControl::LookupRequest &LR) { in size()
54 const ExecutorProcessControl::LookupRequest &LR) { in serialize()
64 ExecutorProcessControl &EPC) { in CreateWithDefaultBootstrapSymbols()
H A DExecutorProcessControl.cpp24 ExecutorProcessControl::MemoryAccess::~MemoryAccess() = default;
26 ExecutorProcessControl::~ExecutorProcessControl() = default;
32 : ExecutorProcessControl(std::move(SSP), std::move(D)), in SelfExecutorProcessControl()
89 ExecutorProcessControl::SymbolLookupCompleteFn Complete) { in lookupSymbolsAsync()
H A DLookupAndRecordAddrs.cpp55 ExecutorProcessControl &EPC, tpctypes::DylibHandle H, in lookupAndRecordAddrs()
63 ExecutorProcessControl::LookupRequest LR(H, Symbols); in lookupAndRecordAddrs()
H A DEPCDynamicLibrarySearchGenerator.cpp51 ExecutorProcessControl::LookupRequest Request(H, LookupSymbols); in tryToGenerate()
H A DEPCGenericRTDyldMemoryManager.cpp24 ExecutorProcessControl &EPC) { in CreateWithDefaultBootstrapSymbols()
39 ExecutorProcessControl &EPC, SymbolAddrs SAs) in EPCGenericRTDyldMemoryManager()
H A DEPCIndirectionUtils.cpp235 EPCIndirectionUtils::Create(ExecutorProcessControl &EPC) { in Create()
338 EPCIndirectionUtils::EPCIndirectionUtils(ExecutorProcessControl &EPC, in EPCIndirectionUtils()
H A DMemoryMapper.cpp197 SharedMemoryMapper::SharedMemoryMapper(ExecutorProcessControl &EPC, in SharedMemoryMapper()
206 SharedMemoryMapper::Create(ExecutorProcessControl &EPC, SymbolAddrs SAs) { in Create()
H A DSimpleRemoteEPC.cpp229 Expected<std::unique_ptr<ExecutorProcessControl::MemoryAccess>>
H A DCore.cpp1604 ExecutionSession::ExecutionSession(std::unique_ptr<ExecutorProcessControl> EPC) in ExecutionSession()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A DForwardingMemoryManager.h93 Create(orc::ExecutorProcessControl &EPC) { in Create()
H A Dlli.cpp417 Expected<std::unique_ptr<orc::ExecutorProcessControl>> launchRemote();
709 std::unique_ptr<orc::ExecutorProcessControl> EPC = ExitOnErr(launchRemote()); in main()
1025 std::unique_ptr<orc::ExecutorProcessControl> EPC = nullptr; in runOrcJIT()
1208 Expected<std::unique_ptr<orc::ExecutorProcessControl>> launchRemote() { in launchRemote()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DVTuneSupportPlugin.cpp169 VTuneSupportPlugin::Create(ExecutorProcessControl &EPC, JITDylib &JD, in Create()

12