Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp239 if (IncrExecutor) { in ~Interpreter()
330 if (!IncrExecutor) { in getExecutionEngine()
335 return IncrExecutor->GetExecutionEngine(); in getExecutionEngine()
375 IncrExecutor = std::move(Executor); in CreateExecutor()
382 if (!IncrExecutor) { in Execute()
388 if (auto Err = IncrExecutor->addModule(T)) in Execute()
391 if (auto Err = IncrExecutor->runCtors()) in Execute()
418 if (!IncrExecutor) in getSymbolAddress()
428 if (!IncrExecutor) in getSymbolAddress()
438 if (!IncrExecutor) in getSymbolAddressFromLinkerName()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h79 std::unique_ptr<IncrementalExecutor> IncrExecutor; variable