Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-generator.cc29 outer_(generator_->execution_context()), in ContextScope()
479 builder()->LoadTheHole().StoreContextSlot(execution_context()->reg(), in VisitVariableDeclaration()
510 DCHECK_EQ(0, execution_context()->ContextChainDepth(variable->scope())); in VisitFunctionDeclaration()
512 builder()->StoreContextSlot(execution_context()->reg(), in VisitFunctionDeclaration()
1219 int depth = execution_context()->ContextChainDepth(variable->scope()); in VisitVariableLoad()
1220 ContextScope* context = execution_context()->Previous(depth); in VisitVariableLoad()
1232 ->LoadAccumulatorWithRegister(execution_context()->reg()) in VisitVariableLoad()
1294 int depth = execution_context()->ContextChainDepth(variable->scope()); in VisitVariableAssignment()
1295 ContextScope* context = execution_context()->Previous(depth); in VisitVariableAssignment()
1309 .LoadAccumulatorWithRegister(execution_context()->reg()) in VisitVariableAssignment()
[all …]
Dbytecode-generator.h115 inline ContextScope* execution_context() const { return execution_context_; } in execution_context() function
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/swf/
Dlayer1.py330 execution_context=None): argument
354 'executionContext': execution_context,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/swf/
Dtest_layer1_workflow_execution.py75 execution_context=None)
/external/v8/src/compiler/
Dast-graph-builder.h135 ContextScope* execution_context() const { return execution_context_; } in execution_context() function
Dast-graph-builder.cc115 outer_(builder->execution_context()), in ContextScope()