Home
last modified time | relevance | path

Searched refs:IncrExecutor (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp428 if (IncrExecutor) { in ~Interpreter()
429 if (llvm::Error Err = IncrExecutor->cleanUp()) in ~Interpreter()
534 if (!IncrExecutor) { in getExecutionEngine()
539 return IncrExecutor->GetExecutionEngine(); in getExecutionEngine()
646 if (IncrExecutor) in CreateExecutor()
673 IncrExecutor = std::move(Executor); in CreateExecutor()
678 void Interpreter::ResetExecutor() { IncrExecutor.reset(); } in ResetExecutor()
689 if (!IncrExecutor) { in Execute()
695 if (auto Err = IncrExecutor->addModule(T)) in Execute()
698 if (auto Err = IncrExecutor->runCtors()) in Execute()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h95 std::unique_ptr<IncrementalExecutor> IncrExecutor; variable