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

Unified Diff: src/heap/heap.h

Issue 1913083002: [heap] Uncommit pooled pages concurrently (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments Created 4 years, 8 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/deoptimizer.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index f93329402142e0af400d642561b5f2dc24ac724b..66feadc6b84368b7ef13bea9f5ebd36283f1de86 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -778,11 +778,6 @@ class Heap {
inline bool OldGenerationAllocationLimitReached();
- void QueueMemoryChunkForFree(MemoryChunk* chunk);
- void FreeQueuedChunks(MemoryChunk* list_head);
- void FreeQueuedChunks();
- void WaitUntilUnmappingOfFreeChunksCompleted();
-
// Completely clear the Instanceof cache (to stop it keeping objects alive
// around a GC).
inline void CompletelyClearInstanceofCache();
@@ -1390,7 +1385,6 @@ class Heap {
private:
class PretenuringScope;
- class UnmapFreeMemoryTask;
// External strings table is a place where all external strings are
// registered. We need to keep track of such strings to properly
@@ -2208,12 +2202,6 @@ class Heap {
ExternalStringTable external_string_table_;
- MemoryChunk* chunks_queued_for_free_;
-
- size_t concurrent_unmapping_tasks_active_;
-
- base::Semaphore pending_unmapping_tasks_semaphore_;
-
base::Mutex relocation_mutex_;
int gc_callbacks_depth_;
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698