Searched refs:has_prototype (Results 1 – 9 of 9) sorted by relevance
86 bool const has_prototype; member in v8::internal::compiler::JSFunctionData334 has_prototype(object_->has_prototype_slot() && object_->has_prototype()), in JSFunctionData()335 prototype(has_prototype ? GET_OR_CREATE(prototype) : nullptr), in JSFunctionData()1010 BIMODAL_ACCESSOR_C(JSFunction, bool, has_prototype) in BIMODAL_ACCESSOR()
59 DCHECK(function_.has_prototype()); in PrototypePropertyDependency()66 return function->has_prototype_slot() && function->has_prototype() && in IsValid()
182 bool has_prototype() const;
1109 if (!function.map().has_prototype_slot() || !function.has_prototype() || in ReduceJSLoadNamed()
3889 bool has_prototype = IsFunctionModeWithPrototype(function_mode); in CreateSloppyFunctionMap() local3890 int header_size = has_prototype ? JSFunction::kSizeWithPrototype in CreateSloppyFunctionMap()3892 int descriptors_count = has_prototype ? 5 : 4; in CreateSloppyFunctionMap()3899 map->set_has_prototype_slot(has_prototype); in CreateSloppyFunctionMap()3900 map->set_is_constructor(has_prototype); in CreateSloppyFunctionMap()3966 bool has_prototype = IsFunctionModeWithPrototype(function_mode); in CreateStrictFunctionMap() local3967 int header_size = has_prototype ? JSFunction::kSizeWithPrototype in CreateStrictFunctionMap()3978 map->set_has_prototype_slot(has_prototype); in CreateStrictFunctionMap()3979 map->set_is_constructor(has_prototype); in CreateStrictFunctionMap()
314 if (!function->has_prototype()) { in GetFunctionPrototype()
2433 bool JSFunction::has_prototype() { in has_prototype() function2457 DCHECK(has_prototype()); in prototype()
1331 if (has_prototype()) { in JSFunctionPrint()
3297 inline bool has_prototype();