Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/Interp/
H A DByteCodeExprGen.h34 template <class Emitter> class VariableScope; variable
159 friend class VariableScope<Emitter>;
223 VariableScope<Emitter> *VarScope = nullptr;
239 template <class Emitter> class VariableScope {
241 virtual ~VariableScope() { Ctx->VarScope = this->Parent; } in ~VariableScope()
262 VariableScope *getParent() { return Parent; } in getParent()
265 VariableScope(ByteCodeExprGen<Emitter> *Ctx) in VariableScope() function
273 VariableScope *Parent;
280 template <class Emitter> class LocalScope : public VariableScope<Emitter> {
282 LocalScope(ByteCodeExprGen<Emitter> *Ctx) : VariableScope<Emitter>(Ctx) {} in LocalScope()
H A DByteCodeExprGen.cpp569 for (VariableScope<Emitter> *C = VarScope; C; C = C->getParent()) in emitCleanup()