Home
last modified time | relevance | path

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

/external/bcc/src/cc/frontends/b/
Dscope.h88 current_var_scope_(nullptr), top_var_scope_(nullptr), in Scopes()
103 scope->parent_ = current_var_scope_; in push_var()
104 current_var_scope_ = scope; in push_var()
107 if (current_var_scope_ == top_var_scope_) in pop_var()
109 VarScope *old = current_var_scope_; in pop_var()
110 current_var_scope_ = old->parent_; in pop_var()
130 current_var_scope_ = new VarScope(current_var_scope_, next_var_id()); in enter_var_scope()
132 top_var_scope_ = current_var_scope_; in enter_var_scope()
134 return current_var_scope_; in enter_var_scope()
138 current_var_scope_ = current_var_scope_->parent_; in exit_var_scope()
[all …]