/third_party/node/deps/v8/src/objects/ |
H A D | contexts.cc | 314 VariableLookupResult lookup_result; in Lookup() local 315 int slot_index = scope_info.ContextSlotIndex(name, &lookup_result); in Lookup() 331 slot_index, static_cast<uint8_t>(lookup_result.mode)); in Lookup() 334 *variable_mode = lookup_result.mode; in Lookup() 335 *init_flag = lookup_result.init_flag; in Lookup() 336 *attributes = GetAttributesForMode(lookup_result.mode); in Lookup()
|
H A D | scope-info.cc | 952 VariableLookupResult* lookup_result) { in ContextSlotIndex() 955 DCHECK_NOT_NULL(lookup_result); in ContextSlotIndex() 964 lookup_result->mode = ContextLocalMode(index); in ContextSlotIndex() 965 lookup_result->is_static_flag = ContextLocalIsStaticFlag(index); in ContextSlotIndex() 966 lookup_result->init_flag = ContextLocalInitFlag(index); in ContextSlotIndex() 967 lookup_result->maybe_assigned_flag = ContextLocalMaybeAssignedFlag(index); in ContextSlotIndex() 968 lookup_result->is_repl_mode = IsReplModeScope(); in ContextSlotIndex() 978 VariableLookupResult lookup_result; in ContextSlotIndex() local 979 return ContextSlotIndex(name, &lookup_result); in ContextSlotIndex() 951 ContextSlotIndex(Handle<String> name, VariableLookupResult* lookup_result) ContextSlotIndex() argument
|
H A D | scope-info.h | 192 VariableLookupResult* lookup_result);
|
/third_party/node/deps/v8/src/ast/ |
H A D | scopes.cc | 970 VariableLookupResult lookup_result; in LookupInScopeInfo() local 974 index = scope_info.ContextSlotIndex(name->string(), &lookup_result); in LookupInScopeInfo() 980 index = scope_info.ModuleIndex(name_handle, &lookup_result.mode, in LookupInScopeInfo() 981 &lookup_result.init_flag, in LookupInScopeInfo() 982 &lookup_result.maybe_assigned_flag); in LookupInScopeInfo() 1001 zone(), this, name, lookup_result.mode, NORMAL_VARIABLE, in LookupInScopeInfo() 1002 lookup_result.init_flag, lookup_result.maybe_assigned_flag, in LookupInScopeInfo() 2761 VariableLookupResult lookup_result; in NewHomeObjectVariableProxy() local 2762 int index = scope_info_->ContextSlotIndex(name->string(), &lookup_result); in NewHomeObjectVariableProxy() 2921 VariableLookupResult lookup_result; LookupPrivateNameInScopeInfo() local [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | identity-map.cc | 175 auto lookup_result = LookupOrInsert(key); in FindOrInsertEntry() local 176 return {&values_[lookup_result.first], lookup_result.second}; in FindOrInsertEntry()
|
/third_party/node/deps/v8/src/ic/ |
H A D | ic.cc | 533 VariableLookupResult lookup_result; in Load() local 534 if (script_contexts->Lookup(str_name, &lookup_result)) { in Load() 536 isolate(), script_contexts, lookup_result.context_index); in Load() 538 Handle<Object> result(script_context->get(lookup_result.slot_index), in Load() 556 lookup_result.context_index, lookup_result.slot_index, in Load() 557 (lookup_result.mode == VariableMode::kConst && in Load() 558 !lookup_result.is_repl_mode))) { in Load() 1696 VariableLookupResult lookup_result; in Store() local 1697 if (script_contexts->Lookup(str_name, &lookup_result)) { in Store() 2967 VariableLookupResult lookup_result; RUNTIME_FUNCTION() local [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | load-elimination.cc | 928 FieldInfo const* lookup_result = in ReduceLoadField() local 930 if (!lookup_result && access.const_field_info.IsConst()) { in ReduceLoadField() 933 lookup_result = in ReduceLoadField() 936 if (lookup_result) { in ReduceLoadField() 939 Node* replacement = lookup_result->value; in ReduceLoadField() 940 if (IsCompatible(representation, lookup_result->representation) && in ReduceLoadField() 995 FieldInfo const* lookup_result = in ReduceStoreField() local 998 if (lookup_result && in ReduceStoreField() 1012 !lookup_result->name.is_null() && in ReduceStoreField() 1013 !IsCompatible(representation, lookup_result in ReduceStoreField() [all...] |
H A D | csa-load-elimination.cc | 349 FieldInfo lookup_result = half_state->Lookup(object, offset); in ReduceLoadFromObject() local 350 if (!lookup_result.IsEmpty()) { in ReduceLoadFromObject() 353 MachineRepresentation from = lookup_result.representation; in ReduceLoadFromObject() 355 !lookup_result.value->IsDead()) { in ReduceLoadFromObject() 357 TruncateAndExtend(lookup_result.value, from, access.machine_type); in ReduceLoadFromObject()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_instruction.cpp | 176 const auto lookup_result = in CheckRequiredCapabilities() local 178 if (lookup_result == SPV_SUCCESS) { in CheckRequiredCapabilities()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_instruction.cpp | 176 const auto lookup_result = in CheckRequiredCapabilities() local 178 if (lookup_result == SPV_SUCCESS) { in CheckRequiredCapabilities()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_instruction.cpp | 170 const auto lookup_result = in CheckRequiredCapabilities() local 172 if (lookup_result == SPV_SUCCESS) { in CheckRequiredCapabilities()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-scopes.cc | 1098 VariableLookupResult lookup_result; in SetScriptVariableValue() local 1099 if (script_contexts->Lookup(variable_name, &lookup_result)) { in SetScriptVariableValue() 1101 isolate_, script_contexts, lookup_result.context_index); in SetScriptVariableValue() 1102 script_context->set(lookup_result.slot_index, *new_value); in SetScriptVariableValue()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-scopes.cc | 878 VariableLookupResult lookup_result; in RUNTIME_FUNCTION() local 879 bool found = script_contexts->Lookup(name, &lookup_result); in RUNTIME_FUNCTION() 882 isolate, script_contexts, lookup_result.context_index); in RUNTIME_FUNCTION() 884 script_context->set(lookup_result.slot_index, *value); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | gcmole.cc | 137 clang::DeclContext::lookup_result result = in Resolve()
|