Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/api/
Dapi-natives.h21 class TemplateInfo; variable
48 static void AddDataProperty(Isolate* isolate, Handle<TemplateInfo> info,
52 static void AddDataProperty(Isolate* isolate, Handle<TemplateInfo> info,
56 static void AddAccessorProperty(Isolate* isolate, Handle<TemplateInfo> info,
62 static void AddNativeDataProperty(Isolate* isolate, Handle<TemplateInfo> info,
Dapi-natives.cc292 DCHECK_NE(serial_number, TemplateInfo::kDoNotCache); in ProbeInstantiationsCache()
293 if (serial_number == TemplateInfo::kUncached) { in ProbeInstantiationsCache()
297 if (serial_number < TemplateInfo::kFastTemplateInstantiationsCacheSize) { in ProbeInstantiationsCache()
305 (serial_number < TemplateInfo::kSlowTemplateInstantiationsCacheSize)) { in ProbeInstantiationsCache()
318 Handle<TemplateInfo> data, in CacheTemplateInstantiation()
321 DCHECK_NE(TemplateInfo::kDoNotCache, data->serial_number()); in CacheTemplateInstantiation()
324 if (serial_number == TemplateInfo::kUncached) { in CacheTemplateInstantiation()
328 if (serial_number < TemplateInfo::kFastTemplateInstantiationsCacheSize) { in CacheTemplateInstantiation()
339 TemplateInfo::kSlowTemplateInstantiationsCacheSize)) { in CacheTemplateInstantiation()
350 data->set_serial_number(TemplateInfo::kDoNotCache); in CacheTemplateInstantiation()
[all …]
Dapi.h98 V(Template, TemplateInfo) \
Dapi.cc1168 static void InitializeTemplate(i::TemplateInfo that, int type, in InitializeTemplate()
1173 do_not_cache ? i::TemplateInfo::kDoNotCache : i::TemplateInfo::kUncached; in InitializeTemplate()
1193 templ->set_serial_number(i::TemplateInfo::kDoNotCache); in Set()
/third_party/node/deps/v8/src/objects/
Dtemplates.h23 class TemplateInfo : public TorqueGeneratedTemplateInfo<TemplateInfo, Struct> {
46 TQ_OBJECT_CONSTRUCTORS(TemplateInfo)
64 TemplateInfo> {
200 TemplateInfo> {
Dtemplates-inl.h22 TQ_OBJECT_CONSTRUCTORS_IMPL(TemplateInfo)
27 NEVER_READ_ONLY_SPACE_IMPL(TemplateInfo) in TQ_OBJECT_CONSTRUCTORS_IMPL()
109 bool TemplateInfo::should_cache() const { in should_cache()
112 bool TemplateInfo::is_cached() const { return serial_number() > kUncached; } in is_cached()
Dtemplates.tq6 extern class TemplateInfo extends Struct {
41 extern class FunctionTemplateInfo extends TemplateInfo {
77 extern class ObjectTemplateInfo extends TemplateInfo {
Dobject-list-macros.h64 class TemplateInfo; variable
233 V(TemplateInfo) \
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc5507 TemplateInfo::kFastTemplateInstantiationsCacheSize); in InstallABunchOfRandomThings()