Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-heap-broker.cc86 bool const has_prototype; member in v8::internal::compiler::JSFunctionData
334 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()
Dcompilation-dependencies.cc59 DCHECK(function_.has_prototype()); in PrototypePropertyDependency()
66 return function->has_prototype_slot() && function->has_prototype() && in IsValid()
Djs-heap-broker.h182 bool has_prototype() const;
Djs-native-context-specialization.cc1109 if (!function.map().has_prototype_slot() || !function.has_prototype() || in ReduceJSLoadNamed()
/external/v8/src/heap/
Dfactory.cc3889 bool has_prototype = IsFunctionModeWithPrototype(function_mode); in CreateSloppyFunctionMap() local
3890 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() local
3967 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()
/external/v8/src/
Daccessors.cc314 if (!function->has_prototype()) { in GetFunctionPrototype()
Dobjects-inl.h2433 bool JSFunction::has_prototype() { in has_prototype() function
2457 DCHECK(has_prototype()); in prototype()
Dobjects-printer.cc1331 if (has_prototype()) { in JSFunctionPrint()
Dobjects.h3297 inline bool has_prototype();