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

Unified Diff: src/heap.h

Issue 7639020: Perform TODO(gc) cleanup for TODO-lockdown. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 4 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.h
diff --git a/src/heap.h b/src/heap.h
index 1ee2841b12b6066e43ac0bb4679e96a0180944c2..d2ccdb87935b3d9ef43fc5913e25955cd0bdd54d 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -903,7 +903,6 @@ class Heap {
inline bool CollectGarbage(AllocationSpace space);
static const int kNoGCFlags = 0;
- // TODO(gc) we are ignoring this flag
static const int kForceCompactionMask = 1;
static const int kMakeHeapIterableMask = 2;
@@ -967,7 +966,7 @@ class Heap {
// Heap root getters. We have versions with and without type::cast() here.
// You can't use type::cast during GC because the assert fails.
- // TODO(gc): Try removing the unchecked accessors, now that GC marking does
+ // TODO(1490): Try removing the unchecked accessors, now that GC marking does
// not corrupt the stack.
#define ROOT_ACCESSOR(type, name, camel_name) \
type* name() { \
@@ -1362,7 +1361,6 @@ class Heap {
return &marking_;
}
- // TODO(gc) Rename to IncrementalMarker after merge.
IncrementalMarking* incremental_marking() {
return &incremental_marking_;
}
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/heap.cc » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698