Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp273 if (IncrExecutor) { in ~Interpreter()
274 if (llvm::Error Err = IncrExecutor->cleanUp()) in ~Interpreter()
363 if (!IncrExecutor) { in getExecutionEngine()
368 return IncrExecutor->GetExecutionEngine(); in getExecutionEngine()
418 if (IncrExecutor) in CreateExecutor()
445 IncrExecutor = std::move(Executor); in CreateExecutor()
450 void Interpreter::ResetExecutor() { IncrExecutor.reset(); } in ResetExecutor()
454 if (!IncrExecutor) { in Execute()
460 if (auto Err = IncrExecutor->addModule(T)) in Execute()
463 if (auto Err = IncrExecutor->runCtors()) in Execute()
[all …]
/src/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h94 std::unique_ptr<IncrementalExecutor> IncrExecutor; variable