Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-generator.cc33 outer_(generator_->execution_context()), in ContextScope()
100 context_(generator->execution_context()) { in ControlScope()
355 ContextScope* context = generator()->execution_context(); in PerformCommand()
817 DCHECK_EQ(0, execution_context()->ContextChainDepth(variable->scope())); in VisitVariableDeclaration()
818 builder()->LoadTheHole().StoreContextSlot(execution_context()->reg(), in VisitVariableDeclaration()
864 DCHECK_EQ(0, execution_context()->ContextChainDepth(variable->scope())); in VisitFunctionDeclaration()
866 builder()->StoreContextSlot(execution_context()->reg(), variable->index(), in VisitFunctionDeclaration()
1827 int depth = execution_context()->ContextChainDepth(variable->scope()); in BuildVariableLoad()
1828 ContextScope* context = execution_context()->Previous(depth); in BuildVariableLoad()
1834 context_reg = execution_context()->reg(); in BuildVariableLoad()
[all …]
Dbytecode-generator.h182 inline ContextScope* execution_context() const { return execution_context_; } in execution_context() function
/external/v8/src/compiler/
Dast-graph-builder.h142 ContextScope* execution_context() const { return execution_context_; } in execution_context() function
Dast-graph-builder.cc116 outer_(builder->execution_context()), in ContextScope()