Lines Matching refs:IncrExecutor
203 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()
251 return IncrExecutor->getSymbolAddress(IRName, IncrementalExecutor::IRName); in getSymbolAddress()
256 if (!IncrExecutor) in getSymbolAddressFromLinkerName()
261 return IncrExecutor->getSymbolAddress(Name, IncrementalExecutor::LinkerName); in getSymbolAddressFromLinkerName()
272 if (IncrExecutor) { in Undo()
273 if (llvm::Error Err = IncrExecutor->removeModule(PTUs.back())) in Undo()