Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Interpreter/
H A DInterpreter.cpp203 if (IncrExecutor) in getExecutionEngine()
204 return IncrExecutor->getExecutionEngine(); in getExecutionEngine()
215 if (!IncrExecutor) { in Execute()
219 IncrExecutor = std::make_unique<IncrementalExecutor>(*TSCtx, Err, TI); in Execute()
225 if (auto Err = IncrExecutor->addModule(T)) in Execute()
228 if (auto Err = IncrExecutor->runCtors()) in Execute()
236 if (!IncrExecutor) in getSymbolAddress()
246 if (!IncrExecutor) in getSymbolAddress()
256 if (!IncrExecutor) in getSymbolAddressFromLinkerName()
272 if (IncrExecutor) { in Undo()
[all …]
/llvm-project-15.0.7/clang/include/clang/Interpreter/
H A DInterpreter.h51 std::unique_ptr<IncrementalExecutor> IncrExecutor; variable