Lines Matching defs:CurScope
158 /// CurScope - Innermost of the current nested scopes for 'defvar' variables.
159 std::unique_ptr<TGVarScope> CurScope;
202 CurScope = std::make_unique<TGVarScope>(std::move(CurScope));
206 return CurScope.get();
209 CurScope = std::make_unique<TGVarScope>(std::move(CurScope), Rec);
210 return CurScope.get();
213 CurScope = std::make_unique<TGVarScope>(std::move(CurScope), Loop);
214 return CurScope.get();
217 CurScope = std::make_unique<TGVarScope>(std::move(CurScope), Multiclass);
218 return CurScope.get();
221 assert(ExpectedStackTop == CurScope.get() &&
223 CurScope = CurScope->extractParent();