Home
last modified time | relevance | path

Searched refs:maybe_constructor (Results 1 - 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Dmap-inl.h796 Object maybe_constructor = constructor_or_back_pointer(cage_base); in DEF_GETTER() local
798 while (ConcurrentIsMap(cage_base, maybe_constructor)) { in DEF_GETTER()
799 maybe_constructor = in DEF_GETTER()
800 Map::cast(maybe_constructor).constructor_or_back_pointer(cage_base); in DEF_GETTER()
802 return maybe_constructor; in DEF_GETTER()
806 Object maybe_constructor = constructor_or_back_pointer(isolate); in TryGetConstructor() local
808 while (maybe_constructor.IsMap(isolate)) { in TryGetConstructor()
810 maybe_constructor = in TryGetConstructor()
811 Map::cast(maybe_constructor).constructor_or_back_pointer(isolate); in TryGetConstructor()
813 return maybe_constructor; in TryGetConstructor()
[all...]
H A Dmap.cc1300 Object maybe_constructor = map->GetConstructor(); in EnsureInitialMap() local
1301 DCHECK((maybe_constructor.IsJSFunction() && in EnsureInitialMap()
1302 *map == JSFunction::cast(maybe_constructor).initial_map()) || in EnsureInitialMap()
1874 Handle<Object> maybe_constructor(map->GetConstructor(), isolate); in TransitionToDataProperty()
1876 maybe_constructor->IsJSFunction() && in TransitionToDataProperty()
1877 !JSFunction::cast(*maybe_constructor).shared().native()) { in TransitionToDataProperty()
1879 Handle<JSFunction>::cast(maybe_constructor); in TransitionToDataProperty()
H A Djs-objects.cc560 Handle<Object> maybe_constructor(receiver->map().GetConstructor(), isolate); in GetConstructorHelper()
561 if (maybe_constructor->IsJSFunction()) { in GetConstructorHelper()
563 Handle<JSFunction>::cast(maybe_constructor); in GetConstructorHelper()
601 auto maybe_constructor = JSReceiver::GetDataProperty( in GetConstructorHelper() local
603 if (maybe_constructor->IsJSFunction()) { in GetConstructorHelper()
604 auto constructor = Handle<JSFunction>::cast(maybe_constructor); in GetConstructorHelper()
2279 Object maybe_constructor = map().GetConstructor(); in IsCodeLike() local
2280 if (!maybe_constructor.IsJSFunction()) return false; in IsCodeLike()
2281 if (!JSFunction::cast(maybe_constructor).shared().IsApiFunction()) { in IsCodeLike()
2284 Object instance_template = JSFunction::cast(maybe_constructor) in IsCodeLike()
4747 Object maybe_constructor = new_map->GetConstructor(); OptimizeAsPrototype() local
[all...]
H A Dobjects.cc6765 Object maybe_constructor = receiver->map().GetConstructor(); in Get() local
6766 if (maybe_constructor.IsFunctionTemplateInfo()) { in Get()
6768 FunctionTemplateInfo::cast(maybe_constructor).GetAccessCheckInfo(); in Get()
6773 if (!maybe_constructor.IsJSFunction()) return AccessCheckInfo(); in Get()
6774 JSFunction constructor = JSFunction::cast(maybe_constructor); in Get()
/third_party/node/deps/v8/src/heap/
H A Dmemory-measurement.cc384 Object maybe_constructor = map.TryGetConstructor(isolate, kMaxSteps); in InferForJSObject() local
385 if (maybe_constructor.IsJSFunction()) { in InferForJSObject()
386 return InferForJSFunction(isolate, JSFunction::cast(maybe_constructor), in InferForJSObject()
/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.cc782 JSFunction maybe_constructor = GetConstructor(heap_->isolate(), obj); in ExtractLocation() local
784 if (!maybe_constructor.is_null()) { in ExtractLocation()
785 ExtractLocationForJSFunction(entry, maybe_constructor); in ExtractLocation()
1867 MaybeHandle<JSFunction> maybe_constructor = in GetConstructor() local
1870 if (maybe_constructor.is_null()) return JSFunction(); in GetConstructor()
1872 return *maybe_constructor.ToHandleChecked(); in GetConstructor()
/third_party/node/deps/v8/src/compiler/
H A Djs-heap-broker.cc616 MaybeHandle<JSObject> maybe_constructor = nexus.GetConstructorFeedback(); in ReadFeedbackForInstanceOf() local
618 if (maybe_constructor.ToHandle(&constructor)) { in ReadFeedbackForInstanceOf()

Completed in 32 milliseconds