Home
last modified time | relevance | path

Searched refs:thread_kind (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dlocal-heap.cc269 ThreadKind thread_kind; in SleepInUnpark() local
273 thread_kind = ThreadKind::kMain; in SleepInUnpark()
276 thread_kind = ThreadKind::kBackground; in SleepInUnpark()
279 TRACE_GC1(heap_->tracer(), scope_id, thread_kind); in SleepInUnpark()
312 ThreadKind thread_kind; in SleepInSafepoint() local
316 thread_kind = ThreadKind::kMain; in SleepInSafepoint()
319 thread_kind = ThreadKind::kBackground; in SleepInSafepoint()
322 TRACE_GC1(heap_->tracer(), scope_id, thread_kind); in SleepInSafepoint()
Dgc-tracer.h39 #define TRACE_GC1(tracer, scope_id, thread_kind) \ argument
41 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \
45 #define TRACE_GC_EPOCH(tracer, scope_id, thread_kind) \ argument
47 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \
96 V8_INLINE Scope(GCTracer* tracer, ScopeId scope, ThreadKind thread_kind);
Dgc-tracer-inl.h32 GCTracer::Scope::Scope(GCTracer* tracer, ScopeId scope, ThreadKind thread_kind) in Scope() argument
35 thread_kind_(thread_kind), in Scope()