Home
last modified time | relevance | path

Searched refs:WasmIncrementalExecutor (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DWasm.cpp61 WasmIncrementalExecutor::WasmIncrementalExecutor( in WasmIncrementalExecutor() function in clang::WasmIncrementalExecutor
65 llvm::Error WasmIncrementalExecutor::addModule(PartialTranslationUnit &PTU) { in addModule()
131 llvm::Error WasmIncrementalExecutor::removeModule(PartialTranslationUnit &PTU) { in removeModule()
136 llvm::Error WasmIncrementalExecutor::runCtors() const { in runCtors()
141 llvm::Error WasmIncrementalExecutor::cleanUp() { in cleanUp()
147 WasmIncrementalExecutor::~WasmIncrementalExecutor() = default;
H A DWasm.h24 class WasmIncrementalExecutor : public IncrementalExecutor {
26 WasmIncrementalExecutor(llvm::orc::ThreadSafeContext &TSC);
33 ~WasmIncrementalExecutor() override;
H A DInterpreter.cpp439 auto Executor = std::make_unique<WasmIncrementalExecutor>(*TSCtx); in CreateExecutor()