Home
last modified time | relevance | path

Searched refs:holder_map (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/ic/
Dcall-optimization.cc26 Context CallOptimization::GetAccessorContext(Map holder_map) const { in GetAccessorContext()
30 JSFunction constructor = JSFunction::cast(holder_map.GetConstructor()); in GetAccessorContext()
35 Map holder_map) const { in IsCrossContextLazyAccessorPair()
38 return native_context != GetAccessorContext(holder_map); in IsCrossContextLazyAccessorPair()
Dcall-optimization.h20 Context GetAccessorContext(Map holder_map) const;
22 Map holder_map) const;
Dkeyed-store-generic.cc673 TNode<Map> holder_map = var_holder_map.value(); in LookupPropertyOnPrototypeChain() local
674 TNode<Uint16T> instance_type = LoadMapInstanceType(holder_map); in LookupPropertyOnPrototypeChain()
680 TryLookupProperty(holder, holder_map, instance_type, name, &found_fast, in LookupPropertyOnPrototypeChain()
693 LoadPropertyFromFastObject(holder, holder_map, descriptors, name_index, in LookupPropertyOnPrototypeChain()
743 TNode<HeapObject> proto = LoadMapPrototype(holder_map); in LookupPropertyOnPrototypeChain()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-internal-gen.cc1239 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in TF_BUILTIN()
1243 TryGetOwnProperty(context, receiver, CAST(holder), holder_map, in TF_BUILTIN()
1252 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in TF_BUILTIN() argument
1294 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in TF_BUILTIN()
1298 TryGetOwnProperty(context, receiver, CAST(holder), holder_map, in TF_BUILTIN()
1307 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in TF_BUILTIN() argument
Dbuiltins-call-gen.cc661 TNode<Map> holder_map = LoadMap(holder); in GetCompatibleReceiver() local
662 var_holder = LoadMapPrototype(holder_map); in GetCompatibleReceiver()
663 GotoIf(IsJSGlobalProxyMap(holder_map), &holder_loop); in GetCompatibleReceiver()
Dbuiltins-object-gen.cc1032 TNode<Map> holder_map = LoadMap(holder); in TF_BUILTIN() local
1033 TNode<Uint32T> holder_bit_field3 = LoadMapBitField3(holder_map); in TF_BUILTIN()
1037 var_holder = LoadMapPrototype(holder_map); in TF_BUILTIN()
/third_party/node/deps/v8/src/compiler/
Daccess-info.cc623 MapRef receiver_map, NameRef name, MapRef holder_map, in ComputeAccessorDescriptorAccessInfo() argument
628 holder_map.object()->instance_descriptors(kRelaxedLoad)); in ComputeAccessorDescriptorAccessInfo()
630 descriptors->Search(*name.object(), *holder_map.object())); in ComputeAccessorDescriptorAccessInfo()
637 receiver_map, name, holder_map, holder, in ComputeAccessorDescriptorAccessInfo()
/third_party/node/deps/v8/src/objects/
Dlookup.cc1583 Map holder_map = holder->map(); in TryGetPropertyCell() local
1584 if (holder_map.is_access_check_needed()) return {}; in TryGetPropertyCell()
1585 if (holder_map.has_named_interceptor()) return {}; in TryGetPropertyCell()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc9794 TNode<Map> holder_map = LoadMap(holder); in CallGetterIfAccessor() local
9795 TNode<Uint16T> holder_instance_type = LoadMapInstanceType(holder_map); in CallGetterIfAccessor()
9822 GotoIfPrototypeRequiresRuntimeLookup(function, holder_map, if_bailout); in CallGetterIfAccessor()
10161 TNode<Map> holder_map = var_holder_map.value(); in TryPrototypeChainLookup() local
10165 lookup_property_in_holder(CAST(receiver), var_holder.value(), holder_map, in TryPrototypeChainLookup()
10186 TNode<HeapObject> proto = LoadMapPrototype(holder_map); in TryPrototypeChainLookup()
13450 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in HasProperty()
13452 TryHasOwnProperty(holder, holder_map, holder_instance_type, unique_name, in HasProperty()
13459 TNode<Map> holder_map, TNode<Int32T> holder_instance_type, in HasProperty() argument
13461 TryLookupElement(holder, holder_map, holder_instance_type, index, in HasProperty()