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

Unified Diff: src/heap.h

Issue 6088012: Separate markbits from heap object map words into bitmaps. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: profiler related code reenabled Created 9 years, 11 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 | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
diff --git a/src/heap.h b/src/heap.h
index 154a4f1c1f286b793697f1b6678debfb38ad8a42..eaf6e1191ea6cdfc7cf8dc19e34134ff7c0eba35 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -867,6 +867,7 @@ class Heap : public AllStatic {
// Returns whether the object resides in new space.
static inline bool InNewSpace(Object* object);
+ static inline bool InNewSpace(Address addr);
static inline bool InFromSpace(Object* object);
static inline bool InToSpace(Object* object);
@@ -1942,10 +1943,6 @@ class GCTracer BASE_EMBEDDED {
// cleared. Will be zero on a scavenge collection.
int marked_count_;
- // The count from the end of the previous full GC. Will be zero if there
- // was no previous full GC.
- int previous_marked_count_;
-
// Amounts of time spent in different scopes during GC.
double scopes_[Scope::kNumberOfScopes];
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698