Home
last modified time | relevance | path

Searched refs:GCType (Results 1 - 18 of 18) sorted by relevance

/third_party/node/src/
H A Dnode_perf.h66 NODE_PERFORMANCE_GC_MAJOR = v8::GCType::kGCTypeMarkSweepCompact,
67 NODE_PERFORMANCE_GC_MINOR = v8::GCType::kGCTypeScavenge,
68 NODE_PERFORMANCE_GC_INCREMENTAL = v8::GCType::kGCTypeIncrementalMarking,
69 NODE_PERFORMANCE_GC_WEAKCB = v8::GCType::kGCTypeProcessWeakCallbacks
H A Dnode_v8.cc216 static const char* GetGCTypeName(v8::GCType gc_type) { in GetGCTypeName()
218 case v8::GCType::kGCTypeScavenge: in GetGCTypeName()
220 case v8::GCType::kGCTypeMarkSweepCompact: in GetGCTypeName()
222 case v8::GCType::kGCTypeIncrementalMarking: in GetGCTypeName()
224 case v8::GCType::kGCTypeProcessWeakCallbacks: in GetGCTypeName()
274 v8::GCType gc_type, in BeforeGCCallback()
292 v8::GCType gc_type, in AfterGCCallback()
H A Dnode_win32_etw_provider.h73 INLINE void NODE_GC_START(v8::GCType type,
76 INLINE void NODE_GC_DONE(v8::GCType type,
H A Dnode_dtrace.cc56 using v8::GCType;
253 GCType type, in dtrace_gc_start()
262 GCType type, in dtrace_gc_done()
H A Dnode_win32_etw_provider-inl.h173 void NODE_GC_START(v8::GCType type, in NODE_GC_START()
184 void NODE_GC_DONE(v8::GCType type, in NODE_GC_DONE()
H A Dnode_perf.cc23 using v8::GCType;
117 GCType type, in MarkGarbageCollectionStart()
159 GCType type, in MarkGarbageCollectionEnd()
/third_party/node/deps/v8/src/heap/
H A Dheap-layout-tracer.h20 v8::GCType gc_type,
23 v8::GCType gc_type,
H A Dheap-layout-tracer.cc19 v8::GCType gc_type, in GCProloguePrintHeapLayout()
31 v8::GCType gc_type, in GCEpiloguePrintHeapLayout()
H A Dheap.h457 static inline const char* CollectorName(v8::GCType gc_type) { in CollectorName()
1453 GCType gc_type_filter, void* data);
1458 GCType gc_type_filter, void* data);
1462 void CallGCPrologueCallbacks(GCType gc_type, GCCallbackFlags flags);
1463 void CallGCEpilogueCallbacks(GCType gc_type, GCCallbackFlags flags);
1700 GCCallbackTuple(v8::Isolate::GCCallbackWithData callback, GCType gc_type, in GCCallbackTuple()
1707 GCType gc_type;
H A Dheap.cc1748 static GCType GetGCTypeFromGarbageCollector(GarbageCollector collector) { in GetGCTypeFromGarbageCollector()
1791 GCType gc_type = GetGCTypeFromGarbageCollector(collector); in CollectGarbage()
2564 void Heap::CallGCPrologueCallbacks(GCType gc_type, GCCallbackFlags flags) { in CallGCPrologueCallbacks()
2574 void Heap::CallGCEpilogueCallbacks(GCType gc_type, GCCallbackFlags flags) { in CallGCEpilogueCallbacks()
5763 v8::GCType gc_type = kGCTypeMarkSweepCompact; in SetUp()
5765 gc_type = static_cast<v8::GCType>(gc_type | kGCTypeScavenge | in SetUp()
6206 GCType gc_type, void* data) { in AddGCPrologueCallback()
6229 GCType gc_type, void* data) { in AddGCEpilogueCallback()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-isolate.h904 using GCCallback = void (*)(Isolate* isolate, GCType type,
906 using GCCallbackWithData = void (*)(Isolate* isolate, GCType type,
914 * It is possible to specify the GCType filter for your callback. But it is
916 * different GCType filters.
919 GCType gc_type_filter = kGCTypeAll);
921 GCType gc_type_filter = kGCTypeAll);
1044 * It is possible to specify the GCType filter for your callback. But it is
1046 * different GCType filters.
1049 GCType gc_type_filter = kGCTypeAll);
1051 GCType gc_type_filte
[all...]
H A Dv8-callbacks.h151 enum GCType { enum
186 using GCCallback = void (*)(GCType type, GCCallbackFlags flags);
/third_party/node/deps/v8/include/
H A Dv8-isolate.h904 using GCCallback = void (*)(Isolate* isolate, GCType type,
906 using GCCallbackWithData = void (*)(Isolate* isolate, GCType type,
914 * It is possible to specify the GCType filter for your callback. But it is
916 * different GCType filters.
919 GCType gc_type_filter = kGCTypeAll);
921 GCType gc_type_filter = kGCTypeAll);
1063 * It is possible to specify the GCType filter for your callback. But it is
1065 * different GCType filters.
1068 GCType gc_type_filter = kGCTypeAll);
1070 GCType gc_type_filte
[all...]
H A Dv8-callbacks.h149 enum GCType { enum
184 using GCCallback = void (*)(GCType type, GCCallbackFlags flags);
/third_party/node/deps/v8/src/handles/
H A Dglobal-handles.cc1378 GCType::kGCTypeProcessWeakCallbacks, kNoGCCallbackFlags); in InvokeSecondPassPhantomCallbacksFromTask()
1381 GCType::kGCTypeProcessWeakCallbacks, kNoGCCallbackFlags); in InvokeSecondPassPhantomCallbacksFromTask()
1505 GCType::kGCTypeProcessWeakCallbacks, kNoGCCallbackFlags); in InvokeOrScheduleSecondPassPhantomCallbacks()
1508 GCType::kGCTypeProcessWeakCallbacks, kNoGCCallbackFlags); in InvokeOrScheduleSecondPassPhantomCallbacks()
/third_party/node/deps/v8/src/web-snapshot/
H A Dweb-snapshot.h293 static void UpdatePointersCallback(v8::Isolate* isolate, v8::GCType type, in UpdatePointersCallback()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-engine.cc1030 auto callback = [](v8::Isolate* v8_isolate, v8::GCType type, in AddIsolate()
/third_party/node/deps/v8/src/api/
H A Dapi.cc8447 GCType gc_type) { in AddGCPrologueCallback()
8459 GCType gc_type) { in AddGCEpilogueCallback()
8470 static void CallGCCallbackWithoutData(Isolate* isolate, GCType type, in CallGCCallbackWithoutData()
8475 void Isolate::AddGCPrologueCallback(GCCallback callback, GCType gc_type) { in AddGCPrologueCallback()
8485 void Isolate::AddGCEpilogueCallback(GCCallback callback, GCType gc_type) { in AddGCEpilogueCallback()

Completed in 52 milliseconds