Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp234 IncrParser = std::make_unique<IncrementalParser>(*this, std::move(CI), in Interpreter()
289 Interp->InitPTUSize = Interp->IncrParser->getPTUs().size(); in create()
311 **Interp, std::move(DCI), *(*Interp)->IncrParser.get(), in createWithCUDA()
322 return IncrParser->getCI(); in getCompilerInstance()
326 return IncrParser->getCI(); in getCompilerInstance()
347 std::list<PartialTranslationUnit> &PTUs = IncrParser->getPTUs(); in getEffectivePTUSize()
366 return IncrParser->Parse(Code); in Parse()
422 llvm::StringRef MangledName = IncrParser->GetMangledName(GD); in getSymbolAddress()
448 std::list<PartialTranslationUnit> &PTUs = IncrParser->getPTUs(); in Undo()
459 IncrParser->CleanUpPTU(PTUs.back()); in Undo()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h78 std::unique_ptr<IncrementalParser> IncrParser; variable