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

Unified Diff: src/heap/spaces.h

Issue 1405273003: Revert of "[heap] Divide available memory upon compaction tasks" (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
« no previous file with comments | « src/heap/mark-compact.cc ('k') | src/heap/spaces.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/spaces.h
diff --git a/src/heap/spaces.h b/src/heap/spaces.h
index 6df3fe7876cf42baccbc2d7097e20ba59a6c31b4..058ac89c9609b22bfc632add20635f3ddf5b0346 100644
--- a/src/heap/spaces.h
+++ b/src/heap/spaces.h
@@ -19,7 +19,6 @@
namespace v8 {
namespace internal {
-class CompactionSpaceCollection;
class Isolate;
// -----------------------------------------------------------------------------
@@ -1749,14 +1748,6 @@
large_list_.available() + huge_list_.available();
}
- // The method tries to find a {FreeSpace} node of at least {size_in_bytes}
- // size in the free list category exactly matching the size. If no suitable
- // node could be found, the method falls back to retrieving a {FreeSpace}
- // from the large or huge free list category.
- //
- // Can be used concurrently.
- MUST_USE_RESULT FreeSpace* TryRemoveMemory(intptr_t hint_size_in_bytes);
-
bool IsEmpty() {
return small_list_.IsEmpty() && medium_list_.IsEmpty() &&
large_list_.IsEmpty() && huge_list_.IsEmpty();
@@ -1868,8 +1859,6 @@
class PagedSpace : public Space {
public:
- static const intptr_t kCompactionMemoryWanted = 500 * KB;
-
// Creates a space with an id.
PagedSpace(Heap* heap, AllocationSpace id, Executability executable);
@@ -2071,26 +2060,15 @@
// Return size of allocatable area on a page in this space.
inline int AreaSize() { return area_size_; }
- virtual bool is_local() { return false; }
-
// Merges {other} into the current space. Note that this modifies {other},
// e.g., removes its bump pointer area and resets statistics.
void MergeCompactionSpace(CompactionSpace* other);
- void DivideUponCompactionSpaces(CompactionSpaceCollection** other, int num,
- intptr_t limit = kCompactionMemoryWanted);
-
- // Refills the free list from the corresponding free list filled by the
- // sweeper.
- virtual void RefillFreeList();
+ void MoveOverFreeMemory(PagedSpace* other);
+
+ virtual bool is_local() { return false; }
protected:
- void AddMemory(Address start, intptr_t size);
-
- FreeSpace* TryRemoveMemory(intptr_t size_in_bytes);
-
- void MoveOverFreeMemory(PagedSpace* other);
-
// PagedSpaces that should be included in snapshots have different, i.e.,
// smaller, initial pages.
virtual bool snapshotable() { return true; }
@@ -2151,9 +2129,6 @@
friend class MarkCompactCollector;
friend class PageIterator;
-
- // Used in cctest.
- friend class HeapTester;
};
@@ -2831,13 +2806,11 @@
Free(start, size_in_bytes);
}
- virtual bool is_local() override { return true; }
-
- virtual void RefillFreeList() override;
+ virtual bool is_local() { return true; }
protected:
// The space is temporary and not included in any snapshots.
- virtual bool snapshotable() override { return false; }
+ virtual bool snapshotable() { return false; }
};
« no previous file with comments | « src/heap/mark-compact.cc ('k') | src/heap/spaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698