Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeExprGen.h36 template <class Emitter> class VariableScope; variable
161 friend class VariableScope<Emitter>;
225 VariableScope<Emitter> *VarScope = nullptr;
241 template <class Emitter> class VariableScope {
243 virtual ~VariableScope() { Ctx->VarScope = this->Parent; } in ~VariableScope()
264 VariableScope *getParent() { return Parent; } in getParent()
267 VariableScope(ByteCodeExprGen<Emitter> *Ctx) in VariableScope() function
275 VariableScope *Parent;
282 template <class Emitter> class LocalScope : public VariableScope<Emitter> {
284 LocalScope(ByteCodeExprGen<Emitter> *Ctx) : VariableScope<Emitter>(Ctx) {} in LocalScope()
H A DByteCodeExprGen.cpp569 for (VariableScope<Emitter> *C = VarScope; C; C = C->getParent()) in emitCleanup()