Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-object.cc315 Handle<Context> script_context(isolate->context()->script_context(), isolate); in RUNTIME_FUNCTION() local
316 DCHECK(script_context->IsScriptContext()); in RUNTIME_FUNCTION()
317 DCHECK(script_context->get(slot)->IsPropertyCell()); in RUNTIME_FUNCTION()
320 Handle<ScopeInfo> scope_info(script_context->scope_info(), isolate); in RUNTIME_FUNCTION()
322 Handle<JSGlobalObject> global_object(script_context->global_object(), in RUNTIME_FUNCTION()
332 script_context->set(slot, *cell); in RUNTIME_FUNCTION()
336 script_context->set(slot, isolate->heap()->empty_property_cell()); in RUNTIME_FUNCTION()
350 Handle<Context> script_context(isolate->context()->script_context(), isolate); in StoreGlobalViaContext() local
351 DCHECK(script_context->IsScriptContext()); in StoreGlobalViaContext()
352 DCHECK(script_context->get(slot)->IsPropertyCell()); in StoreGlobalViaContext()
[all …]
Druntime-scopes.cc749 Handle<ScriptContextTable> script_context) { in FindNameClash() argument
755 if (ScriptContextTable::Lookup(script_context, name, &lookup)) { in FindNameClash()
879 Context* host = Context::cast(isolate->context())->script_context(); in RUNTIME_FUNCTION()
901 previous->script_context()->set(index, *context); in RUNTIME_FUNCTION()
/external/v8/src/
Dcontexts.cc17 Handle<ScriptContextTable> table, Handle<Context> script_context) { in Extend() argument
34 DCHECK(script_context->IsScriptContext()); in Extend()
35 result->set(used + kFirstContextSlot, *script_context); in Extend()
126 Context* Context::script_context() { in script_context() function in v8::internal::Context
Dcontexts.h324 Handle<Context> script_context);
464 Context* script_context();
Dcode-stubs-hydrogen.cc750 HValue* script_context = BuildGetScriptContext(context_index); in BuildCodeStub() local
751 return Add<HLoadNamedField>(script_context, nullptr, in BuildCodeStub()
766 HValue* script_context = BuildGetScriptContext(context_index); in BuildCodeStub() local
767 Add<HStoreNamedField>(script_context, in BuildCodeStub()
/external/v8/src/compiler/
Djs-global-object-specialization.cc285 Handle<Context> script_context = ScriptContextTable::GetContext( in LookupInScriptContextTable() local
287 result->context = script_context; in LookupInScriptContextTable()
/external/v8/src/debug/
Ddebug-scopes.cc754 Handle<Context> script_context = ScriptContextTable::GetContext( in SetScriptVariableValue() local
756 script_context->set(lookup_result.slot_index, *new_value); in SetScriptVariableValue()
/external/v8/src/crankshaft/
Dhydrogen.cc3293 HValue* script_context = context(); in BuildGetParentContext() local
3297 Push(script_context); in BuildGetParentContext()
3304 script_context = Pop(); in BuildGetParentContext()
3306 script_context = Add<HLoadNamedField>( in BuildGetParentContext()
3307 script_context, nullptr, in BuildGetParentContext()
3316 Push(script_context); // The result. in BuildGetParentContext()
3321 Push(script_context); in BuildGetParentContext()
3327 script_context = Pop(); in BuildGetParentContext()
3331 script_context = Add<HLoadNamedField>( in BuildGetParentContext()
3332 script_context, nullptr, in BuildGetParentContext()
[all …]
/external/v8/src/ic/
Dic.cc1506 Handle<Context> script_context = ScriptContextTable::GetContext( in Store() local
1513 FixedArray::get(script_context, lookup_result.slot_index); in Store()
1527 script_context->set(lookup_result.slot_index, *value); in Store()
/external/v8/src/heap/
Dheap.cc2394 ALLOCATE_VARSIZE_MAP(FIXED_ARRAY_TYPE, script_context) in CreateInitialMaps()