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

Unified Diff: src/heap/heap.h

Issue 1511933002: [cctest] Add tests for aborting compaction of pages (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments; fixed typos Created 5 years 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 | « no previous file | src/heap/heap.cc » ('j') | src/heap/spaces.cc » ('J')
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 f5f66914fcf441c8eafd93c85b84ac0be249f118..26bd11e3ffe50e396a37e0cc31782064f9ae2578 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -2113,6 +2113,9 @@ class Heap {
MUST_USE_RESULT AllocationResult InternalizeString(String* str);
+ void set_force_oom(bool value) { force_oom_ = value; }
+ bool force_oom() { return force_oom_; }
+
// The amount of external memory registered through the API kept alive
// by global handles
int64_t amount_of_external_allocated_memory_;
@@ -2363,6 +2366,9 @@ class Heap {
ArrayBufferTracker* array_buffer_tracker_;
+ // Used for testing purposes.
+ bool force_oom_;
+
// Classes in "heap" can be friends.
friend class AlwaysAllocateScope;
friend class GCCallbacksScope;
@@ -2376,6 +2382,7 @@ class Heap {
friend class NewSpace;
friend class ObjectStatsVisitor;
friend class Page;
+ friend class PagedSpace;
friend class Scavenger;
friend class StoreBuffer;
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | src/heap/spaces.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698