Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: src/heap/spaces.h

Issue 1409363003: [heap] Add concurrency-safe refilling to compaction spaces (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/heap/spaces.h
diff --git a/src/heap/spaces.h b/src/heap/spaces.h
index 6df3fe7876cf42baccbc2d7097e20ba59a6c31b4..04dcdd2110471f617d251cde6b9b5b75695e3e8b 100644
--- a/src/heap/spaces.h
+++ b/src/heap/spaces.h
@@ -2121,8 +2121,7 @@ class PagedSpace : public Space {
// If sweeping is still in progress try to sweep unswept pages. If that is
// not successful, wait for the sweeper threads and re-try free-list
// allocation.
- MUST_USE_RESULT HeapObject* WaitForSweeperThreadsAndRetryAllocation(
- int size_in_bytes);
+ MUST_USE_RESULT virtual HeapObject* SweepAndRetry(int size_in_bytes);
// Slow path of AllocateRaw. This function is space-dependent.
MUST_USE_RESULT HeapObject* SlowAllocateRaw(int size_in_bytes);
@@ -2838,6 +2837,8 @@ class CompactionSpace : public PagedSpace {
protected:
// The space is temporary and not included in any snapshots.
virtual bool snapshotable() override { return false; }
+
+ MUST_USE_RESULT virtual HeapObject* SweepAndRetry(int size_in_bytes) override;
};

Powered by Google App Engine
This is Rietveld 408576698