Lines Matching refs:outer_
37 outer_(generator_->execution_context()), in ContextScope()
40 DCHECK(scope->NeedsContext() || outer_ == nullptr); in ContextScope()
41 if (outer_) { in ContextScope()
42 depth_ = outer_->depth_ + 1; in ContextScope()
47 outer_->set_register(outer_context_reg); in ContextScope()
54 if (outer_) { in ~ContextScope()
56 generator_->builder()->PopContext(outer_->reg()); in ~ContextScope()
57 outer_->set_register(register_); in ~ContextScope()
59 generator_->set_execution_context(outer_); in ~ContextScope()
76 previous = previous->outer_; in Previous()
90 ContextScope* outer_; member in v8::internal::interpreter::BASE_EMBEDDED
100 : generator_(generator), outer_(generator->execution_control()), in ControlScope()
144 ControlScope* outer() const { return outer_; } in outer()
149 ControlScope* outer_; member in v8::internal::interpreter::BASE_EMBEDDED
569 outer_(generator->execution_result()), in ExpressionResultScope()
577 generator_->set_execution_result(outer_); in ~ExpressionResultScope()
604 ExpressionResultScope* outer_; member in v8::internal::interpreter::BytecodeGenerator::ExpressionResultScope