Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/objects/
Dcontexts.cc19 Handle<Context> script_context, bool ignore_duplicates, in AddLocalNamesFromContext() argument
25 Handle<ScopeInfo> scope_info(script_context->scope_info(cage_base), isolate); in AddLocalNamesFromContext()
44 Handle<Context> script_context, bool ignore_duplicates) { in Extend() argument
58 DCHECK(script_context->IsScriptContext()); in Extend()
59 ScriptContextTable::AddLocalNamesFromContext(isolate, result, script_context, in Extend()
61 result->set(used + kFirstContextSlotIndex, *script_context, kReleaseStore); in Extend()
152 Context Context::script_context() const { in script_context() function in v8::internal::Context
247 Context script_context = script_contexts.get_context(r.context_index); in Lookup() local
251 reinterpret_cast<void*>(script_context.ptr())); in Lookup()
257 return handle(script_context, isolate); in Lookup()
Dcontexts.h400 Handle<Context> script_context, bool ignore_duplicates,
414 Handle<Context> script_context, bool ignore_duplicates = false);
616 Context script_context() const;
/third_party/node/deps/v8/src/diagnostics/
Dsystem-jit-win.cc77 v8::Isolate* script_context = event->isolate; in EventHandler() local
105 script_context, in EventHandler()
123 script_context, event->code_start, (uint64_t)event->code_len, in EventHandler()
/third_party/node/deps/v8/src/compiler/
Dprocessed-feedback.h76 GlobalAccessFeedback(ContextRef script_context, int slot_index,
86 ContextRef script_context() const;
Djs-heap-broker.cc291 GlobalAccessFeedback::GlobalAccessFeedback(ContextRef script_context, in GlobalAccessFeedback() argument
295 cell_or_context_(script_context), in GlobalAccessFeedback()
316 ContextRef GlobalAccessFeedback::script_context() const { in script_context() function in v8::internal::compiler::GlobalAccessFeedback
335 return script_context().get(slot_index()); in GetConstantHint()
Djs-native-context-specialization.cc992 Node* script_context = jsgraph()->Constant(feedback.script_context()); in ReduceJSLoadGlobal() local
996 script_context, effect); in ReduceJSLoadGlobal()
1024 Node* script_context = jsgraph()->Constant(feedback.script_context()); in ReduceJSStoreGlobal() local
1027 value, script_context, effect, control); in ReduceJSStoreGlobal()
/third_party/node/deps/v8/src/execution/
Dexecution.cc207 Handle<ScriptContextTable> script_context( in NewScriptContext() local
215 if (script_context->Lookup(name, &lookup)) { in NewScriptContext()
218 isolate, script_context, lookup.context_index); in NewScriptContext()
271 ScriptContextTable::Extend(isolate, script_context, result, in NewScriptContext()
/third_party/node/deps/v8/src/ic/
Dic.cc535 Handle<Context> script_context = ScriptContextTable::GetContext( in Load() local
538 Handle<Object> result(script_context->get(lookup_result.slot_index), in Load()
1698 Handle<Context> script_context = ScriptContextTable::GetContext( in Store() local
1704 Handle<Object> previous_value(script_context->get(lookup_result.slot_index), in Store()
1732 script_context->set(lookup_result.slot_index, *value); in Store()
2969 Handle<Context> script_context = ScriptContextTable::GetContext( in RUNTIME_FUNCTION() local
2976 Handle<Object> previous_value(script_context->get(lookup_result.slot_index), in RUNTIME_FUNCTION()
2985 script_context->set(lookup_result.slot_index, *value); in RUNTIME_FUNCTION()
Daccessor-assembler.cc3349 TNode<Context> script_context = LoadScriptContext(context, context_index); in LoadGlobalIC_TryPropertyCellCase() local
3350 TNode<Object> result = LoadContextElement(script_context, slot_index); in LoadGlobalIC_TryPropertyCellCase()
3403 TNode<Context> script_context = CAST(LoadFixedArrayElement( in ScriptContextTableLookup() local
3407 CAST(LoadContextElement(script_context, Context::SCOPE_INFO_INDEX)); in ScriptContextTableLookup()
3414 TNode<Object> result = LoadContextElement(script_context, var_index); in ScriptContextTableLookup()
3815 TNode<Context> script_context = in StoreGlobalIC() local
3817 StoreContextElement(script_context, slot_index, pp->value()); in StoreGlobalIC()
/third_party/node/deps/v8/src/runtime/
Druntime-scopes.cc881 Handle<Context> script_context = ScriptContextTable::GetContext( in RUNTIME_FUNCTION() local
884 script_context->set(lookup_result.slot_index, *value); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/debug/
Ddebug-scopes.cc1100 Handle<Context> script_context = ScriptContextTable::GetContext( in SetScriptVariableValue() local
1102 script_context->set(lookup_result.slot_index, *new_value); in SetScriptVariableValue()
Ddebug-interface.cc1083 i::Handle<i::Context> script_context = in GlobalLexicalScopeNames() local
1085 DCHECK(script_context->IsScriptContext()); in GlobalLexicalScopeNames()
1086 i::Handle<i::ScopeInfo> scope_info(script_context->scope_info(), isolate); in GlobalLexicalScopeNames()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc10668 TNode<Context> script_context = CAST(LoadFixedArrayElement( in LoadScriptContext() local
10671 return script_context; in LoadScriptContext()