Index: src/mark-compact.h |
diff --git a/src/mark-compact.h b/src/mark-compact.h |
index bcbc05606190cb7efb149e298dfd3893ef8ddf28..fe6ca487fe374d03841dd72344dec210adc1cfcc 100644 |
--- a/src/mark-compact.h |
+++ b/src/mark-compact.h |
@@ -528,7 +528,7 @@ class MarkCompactCollector { |
// Prepares for GC by resetting relocation info in old and map spaces and |
// choosing spaces to compact. |
- void Prepare(GCTracer* tracer); |
+ void Prepare(); |
// Performs a global garbage collection. |
void CollectGarbage(); |
@@ -542,10 +542,6 @@ class MarkCompactCollector { |
void AbortCompaction(); |
- // During a full GC, there is a stack-allocated GCTracer that is used for |
- // bookkeeping information. Return a pointer to that tracer. |
- GCTracer* tracer() { return tracer_; } |
- |
#ifdef DEBUG |
// Checks whether performing mark-compact collection. |
bool in_use() { return state_ > PREPARE_GC; } |
@@ -745,10 +741,6 @@ class MarkCompactCollector { |
bool sequential_sweeping_; |
- // A pointer to the current stack-allocated GC tracer object during a full |
- // collection (NULL before and after). |
- GCTracer* tracer_; |
- |
SlotsBufferAllocator slots_buffer_allocator_; |
SlotsBuffer* migration_slots_buffer_; |