Home
last modified time | relevance | path

Searched refs:VarScope (Results 1 – 9 of 9) sorted by relevance

/external/bcc/src/cc/frontends/b/
Dscope.h83 typedef Scope<VariableDeclStmtNode> VarScope; typedef
100 void push_var(VarScope *scope) { in push_var()
109 VarScope *old = current_var_scope_; in pop_var()
129 VarScope* enter_var_scope() { in enter_var_scope()
130 current_var_scope_ = new VarScope(current_var_scope_, next_var_id()); in enter_var_scope()
137 VarScope* exit_var_scope() { in exit_var_scope()
155 void set_current(VarScope* s) { current_var_scope_ = s; } in set_current()
156 VarScope* current_var() const { return current_var_scope_; } in current_var()
157 VarScope* top_var() const { return top_var_scope_; } in top_var()
175 VarScope* current_var_scope_;
[all …]
Dcodegen_llvm.h102 StatusTuple lookup_var(Node *n, const std::string &name, Scopes::VarScope *scope,
Dnode.h340 Scopes::VarScope* scope_;
Dparser.yy55 Scopes::VarScope *var_scope;
Dcodegen_llvm.cc349 StatusTuple CodegenLLVM::lookup_var(Node *n, const string &name, Scopes::VarScope *scope, in lookup_var()
/external/llvm-project/clang/lib/AST/Interp/
DByteCodeExprGen.h225 VariableScope<Emitter> *VarScope = nullptr; variable
243 virtual ~VariableScope() { Ctx->VarScope = this->Parent; } in ~VariableScope()
268 : Ctx(Ctx), Parent(Ctx->VarScope) { in VariableScope()
269 Ctx->VarScope = this; in VariableScope()
DByteCodeExprGen.cpp431 VarScope->add(Local, IsExtended); in allocateLocalPrimitive()
459 VarScope->add(Local, IsExtended); in allocateLocal()
569 for (VariableScope<Emitter> *C = VarScope; C; C = C->getParent()) in emitCleanup()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1378 CodeGenFunction::OMPPrivateScope VarScope(*this); in EmitOMPLinearClauseFinal() local
1379 VarScope.addPrivate(OrigVD, [OrigAddr]() -> Address { return OrigAddr; }); in EmitOMPLinearClauseFinal()
1380 (void)VarScope.Privatize(); in EmitOMPLinearClauseFinal()
1576 OMPPrivateScope VarScope(*this); in EmitOMPSimdFinal() local
1577 VarScope.addPrivate(OrigVD, in EmitOMPSimdFinal()
1579 (void)VarScope.Privatize(); in EmitOMPSimdFinal()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1983 CodeGenFunction::OMPPrivateScope VarScope(*this); in EmitOMPLinearClauseFinal() local
1984 VarScope.addPrivate(OrigVD, [OrigAddr]() { return OrigAddr; }); in EmitOMPLinearClauseFinal()
1985 (void)VarScope.Privatize(); in EmitOMPLinearClauseFinal()
2235 OMPPrivateScope VarScope(*this); in EmitOMPSimdFinal() local
2236 VarScope.addPrivate(OrigVD, [OrigAddr]() { return OrigAddr; }); in EmitOMPSimdFinal()
2237 (void)VarScope.Privatize(); in EmitOMPSimdFinal()