Commit 2c66a0ef authored by Omer Katz's avatar Omer Katz Committed by Commit Bot

Reland "cppgc: Use tracing scopes"

This reverts commit 64bf4c53.

Reason for revert: fix in patchset 2

Original change's description:
> Revert "cppgc: Use tracing scopes"
>
> This reverts commit 548fe208.
>
> Reason for revert: Issues on Mac64: https://ci.chromium.org/p/v8/builders/ci/V8%20Mac64%20-%20debug/31710
>
> Original change's description:
> > cppgc: Use tracing scopes
> >
> > The scopes themselves mostly have the same coverage as current scopes in
> > blink. A few exception due to encapsulation exist and are highlighted as
> > comments on the CL.
> >
> > Bug: chromium:1056170
> > Change-Id: I48af2cfdfd53a8caa1ab5d805d377f6f13a825bc
> > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2540552
> > Commit-Queue: Omer Katz <omerkatz@chromium.org>
> > Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
> > Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
> > Cr-Commit-Position: refs/heads/master@{#71285}
>
> TBR=ulan@chromium.org,mlippautz@chromium.org,omerkatz@chromium.org
>
> Change-Id: I20dce9309dcaeff6ea61bdc51df3a2f62c2a103f
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: chromium:1056170
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2550782
> Reviewed-by: Clemens Backes <clemensb@chromium.org>
> Commit-Queue: Clemens Backes <clemensb@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#71289}

TBR=ulan@chromium.org,mlippautz@chromium.org,clemensb@chromium.org,omerkatz@chromium.org

# Not skipping CQ checks because this is a reland.

Bug: chromium:1056170
Change-Id: I9c57cdb3b0d310366cdf3e6fbcd1254fdc363163
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2550666
Auto-Submit: Omer Katz <omerkatz@chromium.org>
Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71305}
parent 3055139a
...@@ -206,16 +206,26 @@ void CppHeap::TracePrologue(TraceFlags flags) { ...@@ -206,16 +206,26 @@ void CppHeap::TracePrologue(TraceFlags flags) {
} }
bool CppHeap::AdvanceTracing(double deadline_in_ms) { bool CppHeap::AdvanceTracing(double deadline_in_ms) {
// TODO(chromium:1056170): Replace std::numeric_limits<size_t>::max() with a v8::base::TimeDelta deadline =
// proper deadline when unified heap transitions to bytes-based deadline. is_in_final_pause_
marking_done_ = marker_->AdvanceMarkingWithMaxDuration( ? v8::base::TimeDelta::Max()
v8::base::TimeDelta::FromMillisecondsD(deadline_in_ms)); : v8::base::TimeDelta::FromMillisecondsD(deadline_in_ms);
cppgc::internal::StatsCollector::EnabledScope stats_scope(
AsBase(),
is_in_final_pause_
? cppgc::internal::StatsCollector::kAtomicPauseMarkTransitiveClosure
: cppgc::internal::StatsCollector::kUnifiedMarkingStep);
// TODO(chromium:1056170): Replace when unified heap transitions to
// bytes-based deadline.
marking_done_ = marker_->AdvanceMarkingWithMaxDuration(deadline);
DCHECK_IMPLIES(is_in_final_pause_, marking_done_);
return marking_done_; return marking_done_;
} }
bool CppHeap::IsTracingDone() { return marking_done_; } bool CppHeap::IsTracingDone() { return marking_done_; }
void CppHeap::EnterFinalPause(EmbedderStackState stack_state) { void CppHeap::EnterFinalPause(EmbedderStackState stack_state) {
is_in_final_pause_ = true;
marker_->EnterAtomicPause(stack_state); marker_->EnterAtomicPause(stack_state);
if (compactor_.CancelIfShouldNotCompact( if (compactor_.CancelIfShouldNotCompact(
UnifiedHeapMarker::MarkingConfig::MarkingType::kAtomic, UnifiedHeapMarker::MarkingConfig::MarkingType::kAtomic,
...@@ -225,30 +235,40 @@ void CppHeap::EnterFinalPause(EmbedderStackState stack_state) { ...@@ -225,30 +235,40 @@ void CppHeap::EnterFinalPause(EmbedderStackState stack_state) {
} }
void CppHeap::TraceEpilogue(TraceSummary* trace_summary) { void CppHeap::TraceEpilogue(TraceSummary* trace_summary) {
CHECK(is_in_final_pause_);
CHECK(marking_done_); CHECK(marking_done_);
{ {
// Weakness callbacks and pre-finalizers are forbidden from allocating
// objects.
cppgc::internal::ObjectAllocator::NoAllocationScope no_allocation_scope_( cppgc::internal::ObjectAllocator::NoAllocationScope no_allocation_scope_(
object_allocator_); object_allocator_);
marker_->LeaveAtomicPause(); marker_->LeaveAtomicPause();
prefinalizer_handler()->InvokePreFinalizers(); is_in_final_pause_ = false;
} }
marker_.reset(); {
// TODO(chromium:1056170): replace build flag with dedicated flag. cppgc::internal::StatsCollector::EnabledScope stats(
AsBase(), cppgc::internal::StatsCollector::kAtomicPauseSweepAndCompact);
{
cppgc::internal::ObjectAllocator::NoAllocationScope no_allocation_scope_(
object_allocator_);
prefinalizer_handler()->InvokePreFinalizers();
}
marker_.reset();
// TODO(chromium:1056170): replace build flag with dedicated flag.
#if DEBUG #if DEBUG
UnifiedHeapMarkingVerifier verifier(*this); UnifiedHeapMarkingVerifier verifier(*this);
verifier.Run(cppgc::Heap::StackState::kNoHeapPointers); verifier.Run(cppgc::Heap::StackState::kNoHeapPointers);
#endif #endif
cppgc::internal::Sweeper::SweepingConfig::CompactableSpaceHandling
compactable_space_handling = compactor_.CompactSpacesIfEnabled(); {
{ NoGCScope no_gc(*this);
NoGCScope no_gc(*this); cppgc::internal::Sweeper::SweepingConfig::CompactableSpaceHandling
const cppgc::internal::Sweeper::SweepingConfig sweeping_config{ compactable_space_handling = compactor_.CompactSpacesIfEnabled();
cppgc::internal::Sweeper::SweepingConfig::SweepingType:: const cppgc::internal::Sweeper::SweepingConfig sweeping_config{
kIncrementalAndConcurrent, cppgc::internal::Sweeper::SweepingConfig::SweepingType::
compactable_space_handling}; kIncrementalAndConcurrent,
sweeper().Start(sweeping_config); compactable_space_handling};
sweeper().Start(sweeping_config);
}
} }
sweeper().NotifyDoneIfNeeded(); sweeper().NotifyDoneIfNeeded();
} }
......
...@@ -58,6 +58,7 @@ class V8_EXPORT_PRIVATE CppHeap final : public cppgc::internal::HeapBase, ...@@ -58,6 +58,7 @@ class V8_EXPORT_PRIVATE CppHeap final : public cppgc::internal::HeapBase,
Isolate& isolate_; Isolate& isolate_;
bool marking_done_ = false; bool marking_done_ = false;
bool is_in_final_pause_ = false;
}; };
} // namespace internal } // namespace internal
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "src/heap/cppgc/heap-page.h" #include "src/heap/cppgc/heap-page.h"
#include "src/heap/cppgc/heap-space.h" #include "src/heap/cppgc/heap-space.h"
#include "src/heap/cppgc/raw-heap.h" #include "src/heap/cppgc/raw-heap.h"
#include "src/heap/cppgc/stats-collector.h"
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
...@@ -483,6 +484,9 @@ bool Compactor::CancelIfShouldNotCompact( ...@@ -483,6 +484,9 @@ bool Compactor::CancelIfShouldNotCompact(
Compactor::CompactableSpaceHandling Compactor::CompactSpacesIfEnabled() { Compactor::CompactableSpaceHandling Compactor::CompactSpacesIfEnabled() {
if (!is_enabled_) return CompactableSpaceHandling::kSweep; if (!is_enabled_) return CompactableSpaceHandling::kSweep;
StatsCollector::DisabledScope stats_scope(
*heap_.heap(), StatsCollector::kAtomicPauseCompaction);
MovableReferences movable_references(*heap_.heap()); MovableReferences movable_references(*heap_.heap());
CompactionWorklists::MovableReferencesWorklist::Local local( CompactionWorklists::MovableReferencesWorklist::Local local(
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include "src/heap/cppgc/liveness-broker.h" #include "src/heap/cppgc/liveness-broker.h"
#include "src/heap/cppgc/marking-state.h" #include "src/heap/cppgc/marking-state.h"
#include "src/heap/cppgc/marking-visitor.h" #include "src/heap/cppgc/marking-visitor.h"
#include "src/heap/cppgc/stats-collector.h"
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
...@@ -71,6 +72,9 @@ ConcurrentMarkingTask::ConcurrentMarkingTask( ...@@ -71,6 +72,9 @@ ConcurrentMarkingTask::ConcurrentMarkingTask(
: concurrent_marker_(concurrent_marker) {} : concurrent_marker_(concurrent_marker) {}
void ConcurrentMarkingTask::Run(JobDelegate* job_delegate) { void ConcurrentMarkingTask::Run(JobDelegate* job_delegate) {
StatsCollector::EnabledConcurrentScope stats_scope(
concurrent_marker_.heap(), StatsCollector::kConcurrentMarkingStep);
if (!HasWorkForConcurrentMarking(concurrent_marker_.marking_worklists())) if (!HasWorkForConcurrentMarking(concurrent_marker_.marking_worklists()))
return; return;
ConcurrentMarkingState concurrent_marking_state( ConcurrentMarkingState concurrent_marking_state(
...@@ -144,16 +148,22 @@ void ConcurrentMarkingTask::ProcessWorklists( ...@@ -144,16 +148,22 @@ void ConcurrentMarkingTask::ProcessWorklists(
return; return;
} }
if (!DrainWorklistWithYielding( {
job_delegate, concurrent_marking_state, StatsCollector::DisabledConcurrentScope stats_scope(
concurrent_marker_.incremental_marking_schedule(), concurrent_marker_.heap(),
concurrent_marking_state.ephemeron_pairs_for_processing_worklist(), StatsCollector::kConcurrentMarkInvokeEphemeronCallbacks);
[&concurrent_marking_state]( if (!DrainWorklistWithYielding(
const MarkingWorklists::EphemeronPairItem& item) { job_delegate, concurrent_marking_state,
concurrent_marking_state.ProcessEphemeron(item.key, concurrent_marker_.incremental_marking_schedule(),
item.value_desc); concurrent_marking_state
})) { .ephemeron_pairs_for_processing_worklist(),
return; [&concurrent_marking_state](
const MarkingWorklists::EphemeronPairItem& item) {
concurrent_marking_state.ProcessEphemeron(item.key,
item.value_desc);
})) {
return;
}
} }
} while ( } while (
!concurrent_marking_state.marking_worklist().IsLocalAndGlobalEmpty()); !concurrent_marking_state.marking_worklist().IsLocalAndGlobalEmpty());
......
...@@ -69,7 +69,7 @@ HeapBase::HeapBase( ...@@ -69,7 +69,7 @@ HeapBase::HeapBase(
stats_collector_(std::make_unique<StatsCollector>()), stats_collector_(std::make_unique<StatsCollector>()),
stack_(std::make_unique<heap::base::Stack>( stack_(std::make_unique<heap::base::Stack>(
v8::base::Stack::GetStackStart())), v8::base::Stack::GetStackStart())),
prefinalizer_handler_(std::make_unique<PreFinalizerHandler>()), prefinalizer_handler_(std::make_unique<PreFinalizerHandler>(*this)),
compactor_(raw_heap_), compactor_(raw_heap_),
object_allocator_(&raw_heap_, page_backend_.get(), object_allocator_(&raw_heap_, page_backend_.get(),
stats_collector_.get()), stats_collector_.get()),
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "src/heap/cppgc/marker.h" #include "src/heap/cppgc/marker.h"
#include "src/heap/cppgc/marking-verifier.h" #include "src/heap/cppgc/marking-verifier.h"
#include "src/heap/cppgc/prefinalizer-handler.h" #include "src/heap/cppgc/prefinalizer-handler.h"
#include "src/heap/cppgc/stats-collector.h"
namespace cppgc { namespace cppgc {
...@@ -155,20 +156,28 @@ void Heap::FinalizeGarbageCollection(Config::StackState stack_state) { ...@@ -155,20 +156,28 @@ void Heap::FinalizeGarbageCollection(Config::StackState stack_state) {
config_.stack_state = stack_state; config_.stack_state = stack_state;
DCHECK(marker_); DCHECK(marker_);
{ {
// Pre finalizers are forbidden from allocating objects. Note that this also // This guards atomic pause marking, meaning that no internal method or
// guard atomic pause marking below, meaning that no internal method or
// external callbacks are allowed to allocate new objects. // external callbacks are allowed to allocate new objects.
ObjectAllocator::NoAllocationScope no_allocation_scope_(object_allocator_); ObjectAllocator::NoAllocationScope no_allocation_scope_(object_allocator_);
marker_->FinishMarking(stack_state); marker_->FinishMarking(stack_state);
prefinalizer_handler_->InvokePreFinalizers();
} }
marker_.reset(); {
// TODO(chromium:1056170): replace build flag with dedicated flag. StatsCollector::EnabledScope stats(
*this, StatsCollector::kAtomicPauseSweepAndCompact);
{
// Pre finalizers are forbidden from allocating objects.
ObjectAllocator::NoAllocationScope no_allocation_scope_(
object_allocator_);
prefinalizer_handler_->InvokePreFinalizers();
}
marker_.reset();
// TODO(chromium:1056170): replace build flag with dedicated flag.
#if DEBUG #if DEBUG
MarkingVerifier verifier(*this); MarkingVerifier verifier(*this);
verifier.Run(stack_state); verifier.Run(stack_state);
#endif #endif
{
NoGCScope no_gc(*this); NoGCScope no_gc(*this);
const Sweeper::SweepingConfig sweeping_config{ const Sweeper::SweepingConfig sweeping_config{
config_.sweeping_type, config_.sweeping_type,
...@@ -182,5 +191,13 @@ void Heap::PostGarbageCollection() { gc_in_progress_ = false; } ...@@ -182,5 +191,13 @@ void Heap::PostGarbageCollection() { gc_in_progress_ = false; }
void Heap::DisableHeapGrowingForTesting() { growing_.DisableForTesting(); } void Heap::DisableHeapGrowingForTesting() { growing_.DisableForTesting(); }
void Heap::FinalizeIncrementalGarbageCollectionIfNeeded(
Config::StackState stack_state) {
StatsCollector::EnabledScope stats_scope(
*this, StatsCollector::kIncrementalMarkingFinalize);
FinalizeGarbageCollection(stack_state);
}
} // namespace internal } // namespace internal
} // namespace cppgc } // namespace cppgc
...@@ -44,10 +44,7 @@ class V8_EXPORT_PRIVATE Heap final : public HeapBase, ...@@ -44,10 +44,7 @@ class V8_EXPORT_PRIVATE Heap final : public HeapBase,
void StartGarbageCollection(Config); void StartGarbageCollection(Config);
void FinalizeGarbageCollection(Config::StackState); void FinalizeGarbageCollection(Config::StackState);
void FinalizeIncrementalGarbageCollectionIfNeeded( void FinalizeIncrementalGarbageCollectionIfNeeded(Config::StackState) final;
Config::StackState stack_state) final {
FinalizeGarbageCollection(stack_state);
}
void PostGarbageCollection() final; void PostGarbageCollection() final;
......
This diff is collapsed.
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
#include <unordered_set> #include <unordered_set>
#include "src/heap/cppgc/stats-collector.h"
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
...@@ -19,6 +21,8 @@ void MutatorMarkingState::FlushNotFullyConstructedObjects() { ...@@ -19,6 +21,8 @@ void MutatorMarkingState::FlushNotFullyConstructedObjects() {
} }
void MutatorMarkingState::FlushDiscoveredEphemeronPairs() { void MutatorMarkingState::FlushDiscoveredEphemeronPairs() {
StatsCollector::EnabledScope stats_scope(
heap_, StatsCollector::kMarkFlushEphemeronPairs);
discovered_ephemeron_pairs_worklist_.Publish(); discovered_ephemeron_pairs_worklist_.Publish();
if (!discovered_ephemeron_pairs_worklist_.IsGlobalEmpty()) { if (!discovered_ephemeron_pairs_worklist_.IsGlobalEmpty()) {
ephemeron_pairs_for_processing_worklist_.Merge( ephemeron_pairs_for_processing_worklist_.Merge(
......
...@@ -120,9 +120,7 @@ class MarkingStateBase { ...@@ -120,9 +120,7 @@ class MarkingStateBase {
return movable_slots_worklist_.get(); return movable_slots_worklist_.get();
} }
#ifdef DEBUG
HeapBase& heap_; HeapBase& heap_;
#endif // DEBUG
MarkingWorklists::MarkingWorklist::Local marking_worklist_; MarkingWorklists::MarkingWorklist::Local marking_worklist_;
MarkingWorklists::NotFullyConstructedWorklist& MarkingWorklists::NotFullyConstructedWorklist&
...@@ -150,9 +148,7 @@ MarkingStateBase::MarkingStateBase(HeapBase& heap, ...@@ -150,9 +148,7 @@ MarkingStateBase::MarkingStateBase(HeapBase& heap,
MarkingWorklists& marking_worklists, MarkingWorklists& marking_worklists,
CompactionWorklists* compaction_worklists) CompactionWorklists* compaction_worklists)
: :
#ifdef DEBUG
heap_(heap), heap_(heap),
#endif // DEBUG
marking_worklist_(marking_worklists.marking_worklist()), marking_worklist_(marking_worklists.marking_worklist()),
not_fully_constructed_worklist_( not_fully_constructed_worklist_(
*marking_worklists.not_fully_constructed_worklist()), *marking_worklists.not_fully_constructed_worklist()),
......
...@@ -134,7 +134,11 @@ void* ObjectAllocator::OutOfLineAllocateImpl(NormalPageSpace* space, ...@@ -134,7 +134,11 @@ void* ObjectAllocator::OutOfLineAllocateImpl(NormalPageSpace* space,
// 3. Lazily sweep pages of this heap until we find a freed area for // 3. Lazily sweep pages of this heap until we find a freed area for
// this allocation or we finish sweeping all pages of this heap. // this allocation or we finish sweeping all pages of this heap.
// TODO(chromium:1056170): Add lazy sweep. // {
// StatsCollector::EnabledScope stats_scope(
// *space->raw_heap()->heap(), StatsCollector::kLazySweepOnAllocation);
// // TODO(chromium:1056170): Add lazy sweep.
// }
// 4. Complete sweeping. // 4. Complete sweeping.
raw_heap_->heap()->sweeper().FinishIfRunning(); raw_heap_->heap()->sweeper().FinishIfRunning();
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "src/heap/cppgc/heap-page.h" #include "src/heap/cppgc/heap-page.h"
#include "src/heap/cppgc/heap.h" #include "src/heap/cppgc/heap.h"
#include "src/heap/cppgc/liveness-broker.h" #include "src/heap/cppgc/liveness-broker.h"
#include "src/heap/cppgc/stats-collector.h"
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
...@@ -29,9 +30,11 @@ bool PreFinalizerRegistrationDispatcher::PreFinalizer::operator==( ...@@ -29,9 +30,11 @@ bool PreFinalizerRegistrationDispatcher::PreFinalizer::operator==(
return (object == other.object) && (callback == other.callback); return (object == other.object) && (callback == other.callback);
} }
PreFinalizerHandler::PreFinalizerHandler() PreFinalizerHandler::PreFinalizerHandler(HeapBase& heap)
: heap_(heap)
#ifdef DEBUG #ifdef DEBUG
: creation_thread_id_(v8::base::OS::GetCurrentThreadId()) ,
creation_thread_id_(v8::base::OS::GetCurrentThreadId())
#endif #endif
{ {
} }
...@@ -45,6 +48,9 @@ void PreFinalizerHandler::RegisterPrefinalizer(PreFinalizer pre_finalizer) { ...@@ -45,6 +48,9 @@ void PreFinalizerHandler::RegisterPrefinalizer(PreFinalizer pre_finalizer) {
} }
void PreFinalizerHandler::InvokePreFinalizers() { void PreFinalizerHandler::InvokePreFinalizers() {
StatsCollector::DisabledScope stats_scope(
heap_, StatsCollector::kInvokePreFinalizers);
DCHECK(CurrentThreadIsCreationThread()); DCHECK(CurrentThreadIsCreationThread());
LivenessBroker liveness_broker = LivenessBrokerFactory::Create(); LivenessBroker liveness_broker = LivenessBrokerFactory::Create();
ordered_pre_finalizers_.erase( ordered_pre_finalizers_.erase(
......
...@@ -12,12 +12,14 @@ ...@@ -12,12 +12,14 @@
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
class HeapBase;
class PreFinalizerHandler final { class PreFinalizerHandler final {
public: public:
using PreFinalizer = using PreFinalizer =
cppgc::internal::PreFinalizerRegistrationDispatcher::PreFinalizer; cppgc::internal::PreFinalizerRegistrationDispatcher::PreFinalizer;
PreFinalizerHandler(); explicit PreFinalizerHandler(HeapBase& heap);
void RegisterPrefinalizer(PreFinalizer pre_finalizer); void RegisterPrefinalizer(PreFinalizer pre_finalizer);
...@@ -33,6 +35,7 @@ class PreFinalizerHandler final { ...@@ -33,6 +35,7 @@ class PreFinalizerHandler final {
// back-to-front. // back-to-front.
std::vector<PreFinalizer> ordered_pre_finalizers_; std::vector<PreFinalizer> ordered_pre_finalizers_;
HeapBase& heap_;
#ifdef DEBUG #ifdef DEBUG
int creation_thread_id_; int creation_thread_id_;
#endif #endif
......
...@@ -19,11 +19,42 @@ ...@@ -19,11 +19,42 @@
namespace cppgc { namespace cppgc {
namespace internal { namespace internal {
#define CPPGC_FOR_ALL_SCOPES(V) \ #define CPPGC_FOR_ALL_SCOPES(V) \
V(MainThreadScopeForTests1) \ V(AtomicPauseCompaction) \
V(MainThreadScopeForTests2) V(AtomicPauseMarkEpilogue) \
V(AtomicPauseMarkPrologue) \
#define CPPGC_FOR_ALL_CONCURRENT_SCOPES(V) V(ConcurrentThreadScopeForTests) V(AtomicPauseMarkRoots) \
V(AtomicPauseMarkTransitiveClosure) \
V(AtomicPauseSweepAndCompact) \
V(CompleteSweep) \
V(IncrementalMarkingFinalize) \
V(IncrementalMarkingStartMarking) \
V(IncrementalMarkingStep) \
V(IncrementalMarkingWithDeadline) \
V(InvokePreFinalizers) \
V(LazySweepInIdle) \
V(LazySweepOnAllocation) \
V(MarkBailOutObjects) \
V(MarkInvokeEphemeronCallbacks) \
V(MarkFlushEphemeronPairs) \
V(MarkProcessWorklists) \
V(MarkProcessMarkingWorklist) \
V(MarkProcessWriteBarrierWorklist) \
V(MarkProcessNotFullyconstructeddWorklist) \
V(MarkNotFullyConstructedObjects) \
V(MarkWeakProcessing) \
V(UnifiedMarkingStep) \
V(VisitCrossThreadPersistents) \
V(VisitPersistentRoots) \
V(VisitPersistents) \
V(VisitRoots) \
V(VisitStackRoots) \
V(VisitRememberedSets)
#define CPPGC_FOR_ALL_CONCURRENT_SCOPES(V) \
V(ConcurrentMarkInvokeEphemeronCallbacks) \
V(ConcurrentMarkingStep) \
V(ConcurrentSweepingStep)
// Sink for various time and memory statistics. // Sink for various time and memory statistics.
class V8_EXPORT_PRIVATE StatsCollector final { class V8_EXPORT_PRIVATE StatsCollector final {
......
...@@ -392,9 +392,13 @@ class ConcurrentSweepTask final : public cppgc::JobTask, ...@@ -392,9 +392,13 @@ class ConcurrentSweepTask final : public cppgc::JobTask,
friend class HeapVisitor<ConcurrentSweepTask>; friend class HeapVisitor<ConcurrentSweepTask>;
public: public:
explicit ConcurrentSweepTask(SpaceStates* states) : states_(states) {} explicit ConcurrentSweepTask(HeapBase& heap, SpaceStates* states)
: heap_(heap), states_(states) {}
void Run(cppgc::JobDelegate* delegate) final { void Run(cppgc::JobDelegate* delegate) final {
StatsCollector::EnabledConcurrentScope stats_scope(
heap_, StatsCollector::kConcurrentSweepingStep);
for (SpaceState& state : *states_) { for (SpaceState& state : *states_) {
while (auto page = state.unswept_pages.Pop()) { while (auto page = state.unswept_pages.Pop()) {
Traverse(*page); Traverse(*page);
...@@ -438,6 +442,7 @@ class ConcurrentSweepTask final : public cppgc::JobTask, ...@@ -438,6 +442,7 @@ class ConcurrentSweepTask final : public cppgc::JobTask,
return true; return true;
} }
HeapBase& heap_;
SpaceStates* states_; SpaceStates* states_;
std::atomic_bool is_completed_{false}; std::atomic_bool is_completed_{false};
}; };
...@@ -518,12 +523,16 @@ class Sweeper::SweeperImpl final { ...@@ -518,12 +523,16 @@ class Sweeper::SweeperImpl final {
void FinishIfRunning() { void FinishIfRunning() {
if (!is_in_progress_) return; if (!is_in_progress_) return;
if (concurrent_sweeper_handle_ && concurrent_sweeper_handle_->IsValid() && {
concurrent_sweeper_handle_->UpdatePriorityEnabled()) { StatsCollector::EnabledScope stats_scope(*heap_->heap(),
concurrent_sweeper_handle_->UpdatePriority( StatsCollector::kCompleteSweep);
cppgc::TaskPriority::kUserBlocking); if (concurrent_sweeper_handle_ && concurrent_sweeper_handle_->IsValid() &&
concurrent_sweeper_handle_->UpdatePriorityEnabled()) {
concurrent_sweeper_handle_->UpdatePriority(
cppgc::TaskPriority::kUserBlocking);
}
Finish();
} }
Finish();
NotifyDone(); NotifyDone();
} }
...@@ -587,9 +596,16 @@ class Sweeper::SweeperImpl final { ...@@ -587,9 +596,16 @@ class Sweeper::SweeperImpl final {
MutatorThreadSweeper sweeper(&sweeper_->space_states_, MutatorThreadSweeper sweeper(&sweeper_->space_states_,
sweeper_->platform_); sweeper_->platform_);
const bool sweep_complete = bool sweep_complete;
sweeper.SweepWithDeadline(deadline_in_seconds); {
StatsCollector::EnabledScope stats_scope(
*sweeper_->heap_->heap(), StatsCollector::kLazySweepInIdle,
"idleDeltaInSeconds",
(deadline_in_seconds -
sweeper_->platform_->MonotonicallyIncreasingTime()));
sweep_complete = sweeper.SweepWithDeadline(deadline_in_seconds);
}
if (sweep_complete) { if (sweep_complete) {
sweeper_->FinalizeSweep(); sweeper_->FinalizeSweep();
sweeper_->NotifyDone(); sweeper_->NotifyDone();
...@@ -620,7 +636,7 @@ class Sweeper::SweeperImpl final { ...@@ -620,7 +636,7 @@ class Sweeper::SweeperImpl final {
concurrent_sweeper_handle_ = platform_->PostJob( concurrent_sweeper_handle_ = platform_->PostJob(
cppgc::TaskPriority::kUserVisible, cppgc::TaskPriority::kUserVisible,
std::make_unique<ConcurrentSweepTask>(&space_states_)); std::make_unique<ConcurrentSweepTask>(*heap_->heap(), &space_states_));
} }
void CancelSweepers() { void CancelSweepers() {
......
...@@ -82,7 +82,7 @@ enum CategoryGroupEnabledFlags { ...@@ -82,7 +82,7 @@ enum CategoryGroupEnabledFlags {
// Implementation detail: trace event macros create temporary variables // Implementation detail: trace event macros create temporary variables
// to keep instrumentation overhead low. These macros give each temporary // to keep instrumentation overhead low. These macros give each temporary
// variable a unique name based on the line number to prevent name collisions. // variable a unique name based on the line number to prevent name collisions.
#define INTERNAL_TRACE_EVENT_UID3(a, b) trace_event_unique_##a##b #define INTERNAL_TRACE_EVENT_UID3(a, b) cppgc_trace_event_unique_##a##b
#define INTERNAL_TRACE_EVENT_UID2(a, b) INTERNAL_TRACE_EVENT_UID3(a, b) #define INTERNAL_TRACE_EVENT_UID2(a, b) INTERNAL_TRACE_EVENT_UID3(a, b)
#define INTERNAL_TRACE_EVENT_UID(name_prefix) \ #define INTERNAL_TRACE_EVENT_UID(name_prefix) \
INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__) INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__)
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include "include/cppgc/allocation.h" #include "include/cppgc/allocation.h"
#include "include/cppgc/custom-space.h" #include "include/cppgc/custom-space.h"
#include "include/cppgc/persistent.h" #include "include/cppgc/persistent.h"
#include "src/heap/cppgc/garbage-collector.h"
#include "src/heap/cppgc/heap-object-header.h" #include "src/heap/cppgc/heap-object-header.h"
#include "src/heap/cppgc/heap-page.h" #include "src/heap/cppgc/heap-page.h"
#include "src/heap/cppgc/marker.h" #include "src/heap/cppgc/marker.h"
...@@ -125,7 +126,12 @@ namespace internal { ...@@ -125,7 +126,12 @@ namespace internal {
TEST_F(CompactorTest, NothingToCompact) { TEST_F(CompactorTest, NothingToCompact) {
StartCompaction(); StartCompaction();
heap()->stats_collector()->NotifyMarkingStarted(
GarbageCollector::Config::CollectionType::kMajor,
GarbageCollector::Config::IsForcedGC::kNotForced);
heap()->stats_collector()->NotifyMarkingCompleted(0);
FinishCompaction(); FinishCompaction();
heap()->stats_collector()->NotifySweepingCompleted();
} }
TEST_F(CompactorTest, CancelledNothingToCompact) { TEST_F(CompactorTest, CancelledNothingToCompact) {
......
...@@ -78,7 +78,7 @@ class CppgcTracingScopesTest : public testing::TestWithHeap { ...@@ -78,7 +78,7 @@ class CppgcTracingScopesTest : public testing::TestWithHeap {
Heap::From(GetHeap())->stats_collector()->NotifySweepingCompleted(); Heap::From(GetHeap())->stats_collector()->NotifySweepingCompleted();
} }
void ResetTestTracingController(const char* expected_name = nullptr) { void ResetDelegatingTracingController(const char* expected_name = nullptr) {
DelegatingTracingControllerImpl::AddTraceEvent_callcount = 0u; DelegatingTracingControllerImpl::AddTraceEvent_callcount = 0u;
DelegatingTracingControllerImpl::stored_num_args = 0; DelegatingTracingControllerImpl::stored_num_args = 0;
DelegatingTracingControllerImpl::stored_arg_names.clear(); DelegatingTracingControllerImpl::stored_arg_names.clear();
...@@ -104,10 +104,10 @@ class CppgcTracingScopesTest : public testing::TestWithHeap { ...@@ -104,10 +104,10 @@ class CppgcTracingScopesTest : public testing::TestWithHeap {
TEST_F(CppgcTracingScopesTest, DisabledScope) { TEST_F(CppgcTracingScopesTest, DisabledScope) {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::DisabledScope scope( StatsCollector::DisabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1); *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist);
} }
EXPECT_EQ(0u, DelegatingTracingControllerImpl::AddTraceEvent_callcount); EXPECT_EQ(0u, DelegatingTracingControllerImpl::AddTraceEvent_callcount);
EndGC(); EndGC();
...@@ -116,20 +116,21 @@ TEST_F(CppgcTracingScopesTest, DisabledScope) { ...@@ -116,20 +116,21 @@ TEST_F(CppgcTracingScopesTest, DisabledScope) {
TEST_F(CppgcTracingScopesTest, EnabledScope) { TEST_F(CppgcTracingScopesTest, EnabledScope) {
{ {
StartGC(); StartGC();
ResetTestTracingController("CppGC.MainThreadScopeForTests1"); ResetDelegatingTracingController("CppGC.MarkProcessMarkingWorklist");
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1); *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist);
} }
EXPECT_EQ(2u, DelegatingTracingControllerImpl::AddTraceEvent_callcount); EXPECT_EQ(2u, DelegatingTracingControllerImpl::AddTraceEvent_callcount);
EndGC(); EndGC();
} }
{ {
StartGC(); StartGC();
ResetTestTracingController("CppGC.MainThreadScopeForTests2"); ResetDelegatingTracingController("CppGC.MarkProcessWriteBarrierWorklist");
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests2); *Heap::From(GetHeap()),
StatsCollector::kMarkProcessWriteBarrierWorklist);
} }
EXPECT_EQ(2u, DelegatingTracingControllerImpl::AddTraceEvent_callcount); EXPECT_EQ(2u, DelegatingTracingControllerImpl::AddTraceEvent_callcount);
EndGC(); EndGC();
...@@ -140,20 +141,20 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) { ...@@ -140,20 +141,20 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) {
// Scopes always add 2 arguments: epoch and is_forced_gc. // Scopes always add 2 arguments: epoch and is_forced_gc.
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1); *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist);
} }
EXPECT_EQ(2, DelegatingTracingControllerImpl::stored_num_args); EXPECT_EQ(2, DelegatingTracingControllerImpl::stored_num_args);
EndGC(); EndGC();
} }
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1, *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist,
"arg1", 1); "arg1", 1);
} }
EXPECT_EQ(3, DelegatingTracingControllerImpl::stored_num_args); EXPECT_EQ(3, DelegatingTracingControllerImpl::stored_num_args);
...@@ -161,10 +162,10 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) { ...@@ -161,10 +162,10 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) {
} }
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1, *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist,
"arg1", 1, "arg2", 2); "arg1", 1, "arg2", 2);
} }
EXPECT_EQ(4, DelegatingTracingControllerImpl::stored_num_args); EXPECT_EQ(4, DelegatingTracingControllerImpl::stored_num_args);
...@@ -175,10 +176,10 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) { ...@@ -175,10 +176,10 @@ TEST_F(CppgcTracingScopesTest, EnabledScopeWithArgs) {
TEST_F(CppgcTracingScopesTest, CheckScopeArgs) { TEST_F(CppgcTracingScopesTest, CheckScopeArgs) {
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1, *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist,
"uint_arg", 13u, "bool_arg", false); "uint_arg", 13u, "bool_arg", false);
} }
FindArgument("uint_arg", TRACE_VALUE_TYPE_UINT, 13); FindArgument("uint_arg", TRACE_VALUE_TYPE_UINT, 13);
...@@ -187,10 +188,10 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) { ...@@ -187,10 +188,10 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) {
} }
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1, *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist,
"neg_int_arg", -5, "pos_int_arg", 7); "neg_int_arg", -5, "pos_int_arg", 7);
} }
FindArgument("neg_int_arg", TRACE_VALUE_TYPE_INT, -5); FindArgument("neg_int_arg", TRACE_VALUE_TYPE_INT, -5);
...@@ -199,12 +200,12 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) { ...@@ -199,12 +200,12 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) {
} }
{ {
StartGC(); StartGC();
ResetTestTracingController(); ResetDelegatingTracingController();
double double_value = 1.2; double double_value = 1.2;
const char* string_value = "test"; const char* string_value = "test";
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
*Heap::From(GetHeap()), StatsCollector::kMainThreadScopeForTests1, *Heap::From(GetHeap()), StatsCollector::kMarkProcessMarkingWorklist,
"string_arg", string_value, "double_arg", double_value); "string_arg", string_value, "double_arg", double_value);
} }
FindArgument("string_arg", TRACE_VALUE_TYPE_STRING, FindArgument("string_arg", TRACE_VALUE_TYPE_STRING,
...@@ -216,10 +217,14 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) { ...@@ -216,10 +217,14 @@ TEST_F(CppgcTracingScopesTest, CheckScopeArgs) {
} }
TEST_F(CppgcTracingScopesTest, InitalScopesAreZero) { TEST_F(CppgcTracingScopesTest, InitalScopesAreZero) {
StartGC(); StatsCollector* stats_collector = Heap::From(GetHeap())->stats_collector();
EndGC(); stats_collector->NotifyMarkingStarted(
GarbageCollector::Config::CollectionType::kMajor,
GarbageCollector::Config::IsForcedGC::kNotForced);
stats_collector->NotifyMarkingCompleted(0);
stats_collector->NotifySweepingCompleted();
const StatsCollector::Event& event = const StatsCollector::Event& event =
Heap::From(GetHeap())->stats_collector()->GetPreviousEventForTesting(); stats_collector->GetPreviousEventForTesting();
for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) { for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) {
EXPECT_TRUE(event.scope_data[i].IsZero()); EXPECT_TRUE(event.scope_data[i].IsZero());
} }
...@@ -230,7 +235,10 @@ TEST_F(CppgcTracingScopesTest, InitalScopesAreZero) { ...@@ -230,7 +235,10 @@ TEST_F(CppgcTracingScopesTest, InitalScopesAreZero) {
TEST_F(CppgcTracingScopesTest, TestIndividualScopes) { TEST_F(CppgcTracingScopesTest, TestIndividualScopes) {
for (int scope_id = 0; scope_id < StatsCollector::kNumScopeIds; ++scope_id) { for (int scope_id = 0; scope_id < StatsCollector::kNumScopeIds; ++scope_id) {
StartGC(); StatsCollector* stats_collector = Heap::From(GetHeap())->stats_collector();
stats_collector->NotifyMarkingStarted(
GarbageCollector::Config::CollectionType::kMajor,
GarbageCollector::Config::IsForcedGC::kNotForced);
DelegatingTracingControllerImpl::check_expectations = false; DelegatingTracingControllerImpl::check_expectations = false;
{ {
StatsCollector::EnabledScope scope( StatsCollector::EnabledScope scope(
...@@ -241,9 +249,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualScopes) { ...@@ -241,9 +249,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualScopes) {
// Force time to progress before destroying scope. // Force time to progress before destroying scope.
} }
} }
EndGC(); stats_collector->NotifyMarkingCompleted(0);
stats_collector->NotifySweepingCompleted();
const StatsCollector::Event& event = const StatsCollector::Event& event =
Heap::From(GetHeap())->stats_collector()->GetPreviousEventForTesting(); stats_collector->GetPreviousEventForTesting();
for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) { for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) {
if (i == scope_id) if (i == scope_id)
EXPECT_LT(v8::base::TimeDelta(), event.scope_data[i]); EXPECT_LT(v8::base::TimeDelta(), event.scope_data[i]);
...@@ -259,7 +268,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualScopes) { ...@@ -259,7 +268,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualScopes) {
TEST_F(CppgcTracingScopesTest, TestIndividualConcurrentScopes) { TEST_F(CppgcTracingScopesTest, TestIndividualConcurrentScopes) {
for (int scope_id = 0; scope_id < StatsCollector::kNumConcurrentScopeIds; for (int scope_id = 0; scope_id < StatsCollector::kNumConcurrentScopeIds;
++scope_id) { ++scope_id) {
StartGC(); StatsCollector* stats_collector = Heap::From(GetHeap())->stats_collector();
stats_collector->NotifyMarkingStarted(
GarbageCollector::Config::CollectionType::kMajor,
GarbageCollector::Config::IsForcedGC::kNotForced);
DelegatingTracingControllerImpl::check_expectations = false; DelegatingTracingControllerImpl::check_expectations = false;
{ {
StatsCollector::EnabledConcurrentScope scope( StatsCollector::EnabledConcurrentScope scope(
...@@ -270,9 +282,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualConcurrentScopes) { ...@@ -270,9 +282,10 @@ TEST_F(CppgcTracingScopesTest, TestIndividualConcurrentScopes) {
// Force time to progress before destroying scope. // Force time to progress before destroying scope.
} }
} }
EndGC(); stats_collector->NotifyMarkingCompleted(0);
stats_collector->NotifySweepingCompleted();
const StatsCollector::Event& event = const StatsCollector::Event& event =
Heap::From(GetHeap())->stats_collector()->GetPreviousEventForTesting(); stats_collector->GetPreviousEventForTesting();
for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) { for (int i = 0; i < StatsCollector::kNumScopeIds; ++i) {
EXPECT_TRUE(event.scope_data[i].IsZero()); EXPECT_TRUE(event.scope_data[i].IsZero());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment