Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h102 struct VisitState { struct
103 explicit VisitState(unsigned N) : VisitNumber(N, 0) { in VisitState() function
119 std::unique_ptr<VisitState> NextState; argument
123 std::unique_ptr<VisitState> FirstVisitState;
125 std::unique_ptr<VisitState> allocateVisitState();
126 void returnVisitState(std::unique_ptr<VisitState> State);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp287 std::unique_ptr<ModuleManager::VisitState> ModuleManager::allocateVisitState() { in allocateVisitState()
296 return std::make_unique<VisitState>(size()); in allocateVisitState()
299 void ModuleManager::returnVisitState(std::unique_ptr<VisitState> State) { in returnVisitState()