/external/v8/src/objects/ |
D | contexts-inl.h | 28 OBJECT_CONSTRUCTORS_IMPL(ScriptContextTable, FixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument 29 CAST_ACCESSOR(ScriptContextTable) in OBJECT_CONSTRUCTORS_IMPL() 31 int ScriptContextTable::synchronized_used() const { in OBJECT_CONSTRUCTORS_IMPL() 35 void ScriptContextTable::synchronized_set_used(int used) { in synchronized_set_used() 40 Handle<Context> ScriptContextTable::GetContext(Isolate* isolate, in GetContext() 41 Handle<ScriptContextTable> table, in GetContext() 46 Context ScriptContextTable::get_context(int i) const { in get_context() 287 ScriptContextTable script_context_table) { in synchronized_set_script_context_table() 291 ScriptContextTable NativeContext::synchronized_script_context_table() const { in synchronized_script_context_table() 292 return ScriptContextTable::cast(synchronized_get(SCRIPT_CONTEXT_TABLE_INDEX)); in synchronized_script_context_table()
|
D | contexts.cc | 17 Handle<ScriptContextTable> ScriptContextTable::Extend( in Extend() 18 Handle<ScriptContextTable> table, Handle<Context> script_context) { in Extend() 19 Handle<ScriptContextTable> result; in Extend() 29 result = Handle<ScriptContextTable>::cast(copy); in Extend() 50 bool ScriptContextTable::Lookup(Isolate* isolate, ScriptContextTable table, in Lookup() 224 ScriptContextTable script_contexts = in Lookup() 226 ScriptContextTable::LookupResult r; in Lookup() 227 if (ScriptContextTable::Lookup(isolate, script_contexts, *name, &r)) { in Lookup()
|
D | contexts.h | 222 V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) \ 345 class ScriptContextTable : public FixedArray { 347 DECL_CAST(ScriptContextTable) 361 Handle<ScriptContextTable> table, 371 ScriptContextTable table, String name, 375 V8_EXPORT_PRIVATE static Handle<ScriptContextTable> Extend( 376 Handle<ScriptContextTable> table, Handle<Context> script_context); 382 OBJECT_CONSTRUCTORS(ScriptContextTable, FixedArray); 673 ScriptContextTable script_context_table); 674 inline ScriptContextTable synchronized_script_context_table() const;
|
D | object-list-macros.h | 56 class ScriptContextTable; variable 194 V(ScriptContextTable) \
|
/external/v8/src/execution/ |
D | execution.cc | 177 Handle<ScriptContextTable> script_context( in NewScriptContext() 184 ScriptContextTable::LookupResult lookup; in NewScriptContext() 185 if (ScriptContextTable::Lookup(isolate, *script_context, *name, &lookup)) { in NewScriptContext() 187 Handle<Context> context = ScriptContextTable::GetContext( in NewScriptContext() 234 Handle<ScriptContextTable> new_script_context_table = in NewScriptContext() 235 ScriptContextTable::Extend(script_context, result); in NewScriptContext()
|
/external/v8/src/runtime/ |
D | runtime-scopes.cc | 53 Handle<ScriptContextTable> script_contexts( in DeclareGlobal() 55 ScriptContextTable::LookupResult lookup; in DeclareGlobal() 56 if (ScriptContextTable::Lookup(isolate, *script_contexts, *name, &lookup) && in DeclareGlobal() 877 Handle<ScriptContextTable> script_contexts( in RUNTIME_FUNCTION() 880 ScriptContextTable::LookupResult lookup_result; in RUNTIME_FUNCTION() 881 bool found = ScriptContextTable::Lookup(isolate, *script_contexts, *name, in RUNTIME_FUNCTION() 884 Handle<Context> script_context = ScriptContextTable::GetContext( in RUNTIME_FUNCTION()
|
/external/v8/src/compiler/ |
D | heap-refs.h | 33 class ScriptContextTable; variable 89 V(ScriptContextTable) \ 443 V(ScriptContextTable, script_context_table) 489 DEFINE_REF_CONSTRUCTOR(ScriptContextTable, HeapObjectRef) 491 Handle<ScriptContextTable> object() const;
|
D | js-heap-broker.cc | 1061 Handle<ScriptContextTable> object) in ScriptContextTableData() 4853 Handle<Context> context = ScriptContextTable::GetContext( in ReadFeedbackForGlobalAccess()
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 721 Handle<ScriptContextTable> script_contexts( in VisitScriptScope() 727 Handle<Context> context = ScriptContextTable::GetContext( in VisitScriptScope() 1089 Handle<ScriptContextTable> script_contexts( in SetScriptVariableValue() 1092 ScriptContextTable::LookupResult lookup_result; in SetScriptVariableValue() 1093 if (ScriptContextTable::Lookup(isolate_, *script_contexts, *variable_name, in SetScriptVariableValue() 1095 Handle<Context> script_context = ScriptContextTable::GetContext( in SetScriptVariableValue()
|
/external/v8/src/ic/ |
D | ic.cc | 496 Handle<ScriptContextTable> script_contexts( in Load() 499 ScriptContextTable::LookupResult lookup_result; in Load() 500 if (ScriptContextTable::Lookup(isolate(), *script_contexts, *str_name, in Load() 502 Handle<Context> script_context = ScriptContextTable::GetContext( in Load() 1505 Handle<ScriptContextTable> script_contexts( in Store() 1508 ScriptContextTable::LookupResult lookup_result; in Store() 1509 if (ScriptContextTable::Lookup(isolate(), *script_contexts, *str_name, in Store() 1511 Handle<Context> script_context = ScriptContextTable::GetContext( in Store() 2561 Handle<ScriptContextTable> script_contexts( in RUNTIME_FUNCTION() 2564 ScriptContextTable::LookupResult lookup_result; in RUNTIME_FUNCTION() [all …]
|
D | accessor-assembler.cc | 3042 TNode<ScriptContextTable> script_context_table = CAST( in ScriptContextTableLookup() 3047 script_context_table, ScriptContextTable::kUsedSlotIndex))); in ScriptContextTableLookup() 3058 ScriptContextTable::kFirstContextSlotIndex * kTaggedSize)); in ScriptContextTableLookup()
|
/external/v8/src/heap/ |
D | factory.h | 62 class ScriptContextTable; variable 340 Handle<ScriptContextTable> NewScriptContextTable();
|
D | factory.cc | 1084 Handle<ScriptContextTable> Factory::NewScriptContextTable() { in NewScriptContextTable() 1085 Handle<ScriptContextTable> context_table = Handle<ScriptContextTable>::cast( in NewScriptContextTable() 1087 ScriptContextTable::kMinLength)); in NewScriptContextTable()
|
/external/v8/src/init/ |
D | bootstrapper.cc | 1170 Handle<ScriptContextTable> script_contexts( in InstallGlobalThisBinding() 1182 Handle<ScriptContextTable> new_script_contexts = in InstallGlobalThisBinding() 1183 ScriptContextTable::Extend(script_contexts, context); in InstallGlobalThisBinding() 1445 Handle<ScriptContextTable> script_context_table = in InitializeGlobal()
|
/external/v8/src/builtins/ |
D | base.tq | 164 extern class ScriptContextTable extends FixedArray;
|
/external/v8/src/codegen/ |
D | code-stub-assembler.cc | 9536 TNode<ScriptContextTable> script_context_table = CAST( in LoadScriptContext() 9541 ScriptContextTable::kFirstContextSlotIndex * kTaggedSize)); in LoadScriptContext()
|
/external/v8/src/api/ |
D | api.cc | 10264 i::Handle<i::ScriptContextTable> table( in GlobalLexicalScopeNames() 10269 i::ScriptContextTable::GetContext(isolate, table, i); in GlobalLexicalScopeNames()
|