Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-generator.cc34 outer_(generator_->execution_context()), in ContextScope()
101 context_(generator->execution_context()) { in ControlScope()
370 ContextScope* context = generator()->execution_context(); in PerformCommand()
909 DCHECK_EQ(0, execution_context()->ContextChainDepth(variable->scope())); in VisitVariableDeclaration()
910 builder()->LoadTheHole().StoreContextSlot(execution_context()->reg(), in VisitVariableDeclaration()
956 DCHECK_EQ(0, execution_context()->ContextChainDepth(variable->scope())); in VisitFunctionDeclaration()
958 builder()->StoreContextSlot(execution_context()->reg(), variable->index(), in VisitFunctionDeclaration()
1957 int depth = execution_context()->ContextChainDepth(variable->scope()); in BuildVariableLoad()
1958 ContextScope* context = execution_context()->Previous(depth); in BuildVariableLoad()
1964 context_reg = execution_context()->reg(); in BuildVariableLoad()
[all …]
Dbytecode-generator.h186 inline ContextScope* execution_context() const { return execution_context_; } in execution_context() function
/external/v8/src/compiler/
Dast-graph-builder.h131 ContextScope* execution_context() const { return execution_context_; } in execution_context() function
Dast-graph-builder.cc118 outer_(builder->execution_context()), in ContextScope()