cpp

Coverage Report

Created: 2024-03-13 14:13

/home/andy/git/oilshell/oil/mycpp/mark_sweep_heap.h
Line
Count
Source (jump to first uncovered line)
1
#ifndef MARKSWEEP_HEAP_H
2
#define MARKSWEEP_HEAP_H
3
4
#include <stdlib.h>
5
6
#include <vector>
7
8
#include "mycpp/common.h"
9
#include "mycpp/gc_obj.h"
10
11
class MarkSet {
12
 public:
13
203
  MarkSet() : bits_() {
14
203
  }
15
16
  // ReInit() must be called at the start of MarkObjects().  Allocate() should
17
  // keep track of the maximum object ID.
18
355
  void ReInit(int max_obj_id) {
19
    // https://stackoverflow.com/questions/8848575/fastest-way-to-reset-every-value-of-stdvectorint-to-0
20
355
    std::fill(bits_.begin(), bits_.end(), 0);
21
355
    int max_byte_index = (max_obj_id >> 3) + 1;  // round up
22
    // log("ReInit max_byte_index %d", max_byte_index);
23
355
    bits_.resize(max_byte_index);
24
355
  }
25
26
  // Called by MarkObjects()
27
118
  void Mark(int obj_id) {
28
118
    DCHECK(obj_id >= 0);
29
    // log("obj id %d", obj_id);
30
118
    DCHECK(!IsMarked(obj_id));
31
0
    int byte_index = obj_id >> 3;  // 8 bits per byte
32
118
    int bit_index = obj_id & 0b111;
33
    // log("byte_index %d %d", byte_index, bit_index);
34
118
    bits_[byte_index] |= (1 << bit_index);
35
118
  }
36
37
  // Called by Sweep()
38
113k
  bool IsMarked(int obj_id) {
39
113k
    DCHECK(obj_id >= 0);
40
0
    int byte_index = obj_id >> 3;
41
113k
    int bit_index = obj_id & 0b111;
42
113k
    return bits_[byte_index] & (1 << bit_index);
43
113k
  }
44
45
2
  void Debug() {
46
2
    int n = bits_.size();
47
2
    dprintf(2, "[ ");
48
8
    for (int i = 0; i < n; ++i) {
49
6
      dprintf(2, "%02x ", bits_[i]);
50
6
    }
51
2
    dprintf(2, "] (%d bytes) \n", n);
52
2
    dprintf(2, "[ ");
53
2
    int num_bits = 0;
54
8
    for (int i = 0; i < n; ++i) {
55
54
      for (int j = 0; j < 8; ++j) {
56
48
        int bit = (bits_[i] & (1 << j)) != 0;
57
48
        dprintf(2, "%d", bit);
58
48
        num_bits += bit;
59
48
      }
60
6
    }
61
2
    dprintf(2, " ] (%d bits set)\n", num_bits);
62
2
  }
63
64
  std::vector<uint8_t> bits_;  // bit vector indexed by obj_id
65
};
66
67
// A simple Pool allocator for allocating small objects. It maintains an ever
68
// growing number of Blocks each consisting of a number of fixed size Cells.
69
// Memory is handed out one Cell at a time.
70
// Note: within the context of the Pool allocator we refer to object IDs as cell
71
// IDs because in addition to identifying an object they're also used to index
72
// into the Cell storage.
73
template <int CellsPerBlock, size_t CellSize>
74
class Pool {
75
 public:
76
  static constexpr size_t kMaxObjSize = CellSize;
77
  static constexpr int kBlockSize = CellSize * CellsPerBlock;
78
79
136
  Pool() = default;
_ZN4PoolILi682ELm24EEC2Ev
Line
Count
Source
79
65
  Pool() = default;
_ZN4PoolILi341ELm48EEC2Ev
Line
Count
Source
79
65
  Pool() = default;
_ZN4PoolILi2ELm32EEC2Ev
Line
Count
Source
79
4
  Pool() = default;
_ZN4PoolILi1ELm32EEC2Ev
Line
Count
Source
79
2
  Pool() = default;
80
81
8.46k
  void* Allocate(int* obj_id) {
82
8.46k
    num_allocated_++;
83
84
8.46k
    if (!free_list_) {
85
      // Allocate a new Block and add every new Cell to the free list.
86
125
      Block* block = static_cast<Block*>(malloc(sizeof(Block)));
87
125
      blocks_.push_back(block);
88
125
      bytes_allocated_ += kBlockSize;
89
125
      num_free_ += CellsPerBlock;
90
91
      // The starting cell_id for Cells in this block.
92
125
      int cell_id = (blocks_.size() - 1) * CellsPerBlock;
93
58.6k
      for (Cell& cell : block->cells) {
94
58.6k
        FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
95
58.6k
        free_cell->id = cell_id++;
96
58.6k
        free_cell->next = free_list_;
97
58.6k
        free_list_ = free_cell;
98
58.6k
      }
99
125
    }
100
101
8.46k
    FreeCell* cell = free_list_;
102
8.46k
    free_list_ = free_list_->next;
103
8.46k
    num_free_--;
104
8.46k
    *obj_id = cell->id;
105
8.46k
    return cell;
106
8.46k
  }
_ZN4PoolILi682ELm24EE8AllocateEPi
Line
Count
Source
81
5.69k
  void* Allocate(int* obj_id) {
82
5.69k
    num_allocated_++;
83
84
5.69k
    if (!free_list_) {
85
      // Allocate a new Block and add every new Cell to the free list.
86
57
      Block* block = static_cast<Block*>(malloc(sizeof(Block)));
87
57
      blocks_.push_back(block);
88
57
      bytes_allocated_ += kBlockSize;
89
57
      num_free_ += CellsPerBlock;
90
91
      // The starting cell_id for Cells in this block.
92
57
      int cell_id = (blocks_.size() - 1) * CellsPerBlock;
93
38.8k
      for (Cell& cell : block->cells) {
94
38.8k
        FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
95
38.8k
        free_cell->id = cell_id++;
96
38.8k
        free_cell->next = free_list_;
97
38.8k
        free_list_ = free_cell;
98
38.8k
      }
99
57
    }
100
101
5.69k
    FreeCell* cell = free_list_;
102
5.69k
    free_list_ = free_list_->next;
103
5.69k
    num_free_--;
104
5.69k
    *obj_id = cell->id;
105
5.69k
    return cell;
106
5.69k
  }
_ZN4PoolILi341ELm48EE8AllocateEPi
Line
Count
Source
81
2.75k
  void* Allocate(int* obj_id) {
82
2.75k
    num_allocated_++;
83
84
2.75k
    if (!free_list_) {
85
      // Allocate a new Block and add every new Cell to the free list.
86
58
      Block* block = static_cast<Block*>(malloc(sizeof(Block)));
87
58
      blocks_.push_back(block);
88
58
      bytes_allocated_ += kBlockSize;
89
58
      num_free_ += CellsPerBlock;
90
91
      // The starting cell_id for Cells in this block.
92
58
      int cell_id = (blocks_.size() - 1) * CellsPerBlock;
93
19.7k
      for (Cell& cell : block->cells) {
94
19.7k
        FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
95
19.7k
        free_cell->id = cell_id++;
96
19.7k
        free_cell->next = free_list_;
97
19.7k
        free_list_ = free_cell;
98
19.7k
      }
99
58
    }
100
101
2.75k
    FreeCell* cell = free_list_;
102
2.75k
    free_list_ = free_list_->next;
103
2.75k
    num_free_--;
104
2.75k
    *obj_id = cell->id;
105
2.75k
    return cell;
106
2.75k
  }
_ZN4PoolILi2ELm32EE8AllocateEPi
Line
Count
Source
81
14
  void* Allocate(int* obj_id) {
82
14
    num_allocated_++;
83
84
14
    if (!free_list_) {
85
      // Allocate a new Block and add every new Cell to the free list.
86
6
      Block* block = static_cast<Block*>(malloc(sizeof(Block)));
87
6
      blocks_.push_back(block);
88
6
      bytes_allocated_ += kBlockSize;
89
6
      num_free_ += CellsPerBlock;
90
91
      // The starting cell_id for Cells in this block.
92
6
      int cell_id = (blocks_.size() - 1) * CellsPerBlock;
93
12
      for (Cell& cell : block->cells) {
94
12
        FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
95
12
        free_cell->id = cell_id++;
96
12
        free_cell->next = free_list_;
97
12
        free_list_ = free_cell;
98
12
      }
99
6
    }
100
101
14
    FreeCell* cell = free_list_;
102
14
    free_list_ = free_list_->next;
103
14
    num_free_--;
104
14
    *obj_id = cell->id;
105
14
    return cell;
106
14
  }
_ZN4PoolILi1ELm32EE8AllocateEPi
Line
Count
Source
81
4
  void* Allocate(int* obj_id) {
82
4
    num_allocated_++;
83
84
4
    if (!free_list_) {
85
      // Allocate a new Block and add every new Cell to the free list.
86
4
      Block* block = static_cast<Block*>(malloc(sizeof(Block)));
87
4
      blocks_.push_back(block);
88
4
      bytes_allocated_ += kBlockSize;
89
4
      num_free_ += CellsPerBlock;
90
91
      // The starting cell_id for Cells in this block.
92
4
      int cell_id = (blocks_.size() - 1) * CellsPerBlock;
93
4
      for (Cell& cell : block->cells) {
94
4
        FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
95
4
        free_cell->id = cell_id++;
96
4
        free_cell->next = free_list_;
97
4
        free_list_ = free_cell;
98
4
      }
99
4
    }
100
101
4
    FreeCell* cell = free_list_;
102
4
    free_list_ = free_list_->next;
103
4
    num_free_--;
104
4
    *obj_id = cell->id;
105
4
    return cell;
106
4
  }
107
108
236
  void PrepareForGc() {
109
236
    DCHECK(!gc_underway_);
110
0
    gc_underway_ = true;
111
236
    mark_set_.ReInit(blocks_.size() * CellsPerBlock);
112
236
  }
_ZN4PoolILi682ELm24EE12PrepareForGcEv
Line
Count
Source
108
115
  void PrepareForGc() {
109
115
    DCHECK(!gc_underway_);
110
0
    gc_underway_ = true;
111
115
    mark_set_.ReInit(blocks_.size() * CellsPerBlock);
112
115
  }
_ZN4PoolILi341ELm48EE12PrepareForGcEv
Line
Count
Source
108
115
  void PrepareForGc() {
109
115
    DCHECK(!gc_underway_);
110
0
    gc_underway_ = true;
111
115
    mark_set_.ReInit(blocks_.size() * CellsPerBlock);
112
115
  }
_ZN4PoolILi2ELm32EE12PrepareForGcEv
Line
Count
Source
108
4
  void PrepareForGc() {
109
4
    DCHECK(!gc_underway_);
110
0
    gc_underway_ = true;
111
4
    mark_set_.ReInit(blocks_.size() * CellsPerBlock);
112
4
  }
_ZN4PoolILi1ELm32EE12PrepareForGcEv
Line
Count
Source
108
2
  void PrepareForGc() {
109
2
    DCHECK(!gc_underway_);
110
0
    gc_underway_ = true;
111
2
    mark_set_.ReInit(blocks_.size() * CellsPerBlock);
112
2
  }
113
114
122
  bool IsMarked(int cell_id) {
115
122
    DCHECK(gc_underway_);
116
0
    return mark_set_.IsMarked(cell_id);
117
122
  }
_ZN4PoolILi682ELm24EE8IsMarkedEi
Line
Count
Source
114
112
  bool IsMarked(int cell_id) {
115
112
    DCHECK(gc_underway_);
116
0
    return mark_set_.IsMarked(cell_id);
117
112
  }
_ZN4PoolILi341ELm48EE8IsMarkedEi
Line
Count
Source
114
10
  bool IsMarked(int cell_id) {
115
10
    DCHECK(gc_underway_);
116
0
    return mark_set_.IsMarked(cell_id);
117
10
  }
118
119
96
  void Mark(int cell_id) {
120
96
    DCHECK(gc_underway_);
121
0
    mark_set_.Mark(cell_id);
122
96
  }
_ZN4PoolILi682ELm24EE4MarkEi
Line
Count
Source
119
84
  void Mark(int cell_id) {
120
84
    DCHECK(gc_underway_);
121
0
    mark_set_.Mark(cell_id);
122
84
  }
_ZN4PoolILi341ELm48EE4MarkEi
Line
Count
Source
119
10
  void Mark(int cell_id) {
120
10
    DCHECK(gc_underway_);
121
0
    mark_set_.Mark(cell_id);
122
10
  }
_ZN4PoolILi1ELm32EE4MarkEi
Line
Count
Source
119
2
  void Mark(int cell_id) {
120
2
    DCHECK(gc_underway_);
121
0
    mark_set_.Mark(cell_id);
122
2
  }
123
124
236
  void Sweep() {
125
236
    DCHECK(gc_underway_);
126
    // Iterate over every Cell linking the free ones into a new free list.
127
0
    num_free_ = 0;
128
236
    free_list_ = nullptr;
129
236
    int cell_id = 0;
130
236
    for (Block* block : blocks_) {
131
111k
      for (Cell& cell : block->cells) {
132
111k
        if (!mark_set_.IsMarked(cell_id)) {
133
111k
          num_free_++;
134
111k
          FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
135
111k
          free_cell->id = cell_id;
136
111k
          free_cell->next = free_list_;
137
111k
          free_list_ = free_cell;
138
111k
        }
139
111k
        cell_id++;
140
111k
      }
141
225
    }
142
236
    gc_underway_ = false;
143
236
  }
_ZN4PoolILi682ELm24EE5SweepEv
Line
Count
Source
124
115
  void Sweep() {
125
115
    DCHECK(gc_underway_);
126
    // Iterate over every Cell linking the free ones into a new free list.
127
0
    num_free_ = 0;
128
115
    free_list_ = nullptr;
129
115
    int cell_id = 0;
130
115
    for (Block* block : blocks_) {
131
74.3k
      for (Cell& cell : block->cells) {
132
74.3k
        if (!mark_set_.IsMarked(cell_id)) {
133
74.2k
          num_free_++;
134
74.2k
          FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
135
74.2k
          free_cell->id = cell_id;
136
74.2k
          free_cell->next = free_list_;
137
74.2k
          free_list_ = free_cell;
138
74.2k
        }
139
74.3k
        cell_id++;
140
74.3k
      }
141
109
    }
142
115
    gc_underway_ = false;
143
115
  }
_ZN4PoolILi341ELm48EE5SweepEv
Line
Count
Source
124
115
  void Sweep() {
125
115
    DCHECK(gc_underway_);
126
    // Iterate over every Cell linking the free ones into a new free list.
127
0
    num_free_ = 0;
128
115
    free_list_ = nullptr;
129
115
    int cell_id = 0;
130
115
    for (Block* block : blocks_) {
131
37.5k
      for (Cell& cell : block->cells) {
132
37.5k
        if (!mark_set_.IsMarked(cell_id)) {
133
37.5k
          num_free_++;
134
37.5k
          FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
135
37.5k
          free_cell->id = cell_id;
136
37.5k
          free_cell->next = free_list_;
137
37.5k
          free_list_ = free_cell;
138
37.5k
        }
139
37.5k
        cell_id++;
140
37.5k
      }
141
110
    }
142
115
    gc_underway_ = false;
143
115
  }
_ZN4PoolILi2ELm32EE5SweepEv
Line
Count
Source
124
4
  void Sweep() {
125
4
    DCHECK(gc_underway_);
126
    // Iterate over every Cell linking the free ones into a new free list.
127
0
    num_free_ = 0;
128
4
    free_list_ = nullptr;
129
4
    int cell_id = 0;
130
4
    for (Block* block : blocks_) {
131
4
      for (Cell& cell : block->cells) {
132
4
        if (!mark_set_.IsMarked(cell_id)) {
133
4
          num_free_++;
134
4
          FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
135
4
          free_cell->id = cell_id;
136
4
          free_cell->next = free_list_;
137
4
          free_list_ = free_cell;
138
4
        }
139
4
        cell_id++;
140
4
      }
141
2
    }
142
4
    gc_underway_ = false;
143
4
  }
_ZN4PoolILi1ELm32EE5SweepEv
Line
Count
Source
124
2
  void Sweep() {
125
2
    DCHECK(gc_underway_);
126
    // Iterate over every Cell linking the free ones into a new free list.
127
0
    num_free_ = 0;
128
2
    free_list_ = nullptr;
129
2
    int cell_id = 0;
130
4
    for (Block* block : blocks_) {
131
4
      for (Cell& cell : block->cells) {
132
4
        if (!mark_set_.IsMarked(cell_id)) {
133
2
          num_free_++;
134
2
          FreeCell* free_cell = reinterpret_cast<FreeCell*>(cell);
135
2
          free_cell->id = cell_id;
136
2
          free_cell->next = free_list_;
137
2
          free_list_ = free_cell;
138
2
        }
139
4
        cell_id++;
140
4
      }
141
4
    }
142
2
    gc_underway_ = false;
143
2
  }
144
145
128
  void Free() {
146
128
    for (Block* block : blocks_) {
147
123
      free(block);
148
123
    }
149
128
    blocks_.clear();
150
128
  }
_ZN4PoolILi682ELm24EE4FreeEv
Line
Count
Source
145
61
  void Free() {
146
61
    for (Block* block : blocks_) {
147
55
      free(block);
148
55
    }
149
61
    blocks_.clear();
150
61
  }
_ZN4PoolILi341ELm48EE4FreeEv
Line
Count
Source
145
61
  void Free() {
146
61
    for (Block* block : blocks_) {
147
58
      free(block);
148
58
    }
149
61
    blocks_.clear();
150
61
  }
_ZN4PoolILi2ELm32EE4FreeEv
Line
Count
Source
145
4
  void Free() {
146
6
    for (Block* block : blocks_) {
147
6
      free(block);
148
6
    }
149
4
    blocks_.clear();
150
4
  }
_ZN4PoolILi1ELm32EE4FreeEv
Line
Count
Source
145
2
  void Free() {
146
4
    for (Block* block : blocks_) {
147
4
      free(block);
148
4
    }
149
2
    blocks_.clear();
150
2
  }
151
152
28
  int num_allocated() {
153
28
    return num_allocated_;
154
28
  }
_ZN4PoolILi682ELm24EE13num_allocatedEv
Line
Count
Source
152
12
  int num_allocated() {
153
12
    return num_allocated_;
154
12
  }
_ZN4PoolILi341ELm48EE13num_allocatedEv
Line
Count
Source
152
12
  int num_allocated() {
153
12
    return num_allocated_;
154
12
  }
_ZN4PoolILi2ELm32EE13num_allocatedEv
Line
Count
Source
152
4
  int num_allocated() {
153
4
    return num_allocated_;
154
4
  }
155
156
16
  int64_t bytes_allocated() {
157
16
    return bytes_allocated_;
158
16
  }
_ZN4PoolILi682ELm24EE15bytes_allocatedEv
Line
Count
Source
156
6
  int64_t bytes_allocated() {
157
6
    return bytes_allocated_;
158
6
  }
_ZN4PoolILi341ELm48EE15bytes_allocatedEv
Line
Count
Source
156
6
  int64_t bytes_allocated() {
157
6
    return bytes_allocated_;
158
6
  }
_ZN4PoolILi2ELm32EE15bytes_allocatedEv
Line
Count
Source
156
4
  int64_t bytes_allocated() {
157
4
    return bytes_allocated_;
158
4
  }
159
160
842
  int num_live() {
161
842
    return blocks_.size() * CellsPerBlock - num_free_;
162
842
  }
_ZN4PoolILi682ELm24EE8num_liveEv
Line
Count
Source
160
417
  int num_live() {
161
417
    return blocks_.size() * CellsPerBlock - num_free_;
162
417
  }
_ZN4PoolILi341ELm48EE8num_liveEv
Line
Count
Source
160
417
  int num_live() {
161
417
    return blocks_.size() * CellsPerBlock - num_free_;
162
417
  }
_ZN4PoolILi2ELm32EE8num_liveEv
Line
Count
Source
160
6
  int num_live() {
161
6
    return blocks_.size() * CellsPerBlock - num_free_;
162
6
  }
_ZN4PoolILi1ELm32EE8num_liveEv
Line
Count
Source
160
2
  int num_live() {
161
2
    return blocks_.size() * CellsPerBlock - num_free_;
162
2
  }
163
164
 private:
165
  using Cell = uint8_t[CellSize];
166
167
  struct Block {
168
    Cell cells[CellsPerBlock];
169
  };
170
171
  // Unused/free cells are tracked via a linked list of FreeCells. The FreeCells
172
  // are stored in the unused Cells, so it takes no extra memory to track them.
173
  struct FreeCell {
174
    int id;
175
    FreeCell* next;
176
  };
177
  static_assert(CellSize >= sizeof(FreeCell), "CellSize is too small");
178
179
  // Whether a GC is underway, for asserting that calls are in order.
180
  bool gc_underway_ = false;
181
182
  FreeCell* free_list_ = nullptr;
183
  int num_free_ = 0;
184
  int num_allocated_ = 0;
185
  int64_t bytes_allocated_ = 0;
186
  std::vector<Block*> blocks_;
187
  MarkSet mark_set_;
188
189
  DISALLOW_COPY_AND_ASSIGN(Pool<CellsPerBlock COMMA CellSize>);
190
};
191
192
class MarkSweepHeap {
193
 public:
194
  // reserve 32 frames to start
195
65
  MarkSweepHeap() {
196
65
  }
197
198
  void Init();  // use default threshold
199
  void Init(int gc_threshold);
200
201
110k
  void PushRoot(RawObject** p) {
202
110k
    roots_.push_back(p);
203
110k
  }
204
205
110k
  void PopRoot() {
206
110k
    roots_.pop_back();
207
110k
  }
208
209
8
  void RootGlobalVar(void* root) {
210
8
    global_roots_.push_back(reinterpret_cast<RawObject*>(root));
211
8
  }
212
213
  void* Allocate(size_t num_bytes, int* obj_id, int* pool_id);
214
215
#if 0
216
  void* Reallocate(void* p, size_t num_bytes);
217
#endif
218
  int MaybeCollect();
219
  int Collect();
220
221
  void MaybeMarkAndPush(RawObject* obj);
222
  void TraceChildren();
223
224
  void Sweep();
225
226
  void PrintStats(int fd);  // public for testing
227
228
  void CleanProcessExit();  // do one last GC, used in unit tests
229
  void ProcessExit();       // main() lets OS clean up, except ASAN variant
230
231
417
  int num_live() {
232
417
    return num_live_
233
417
#ifndef NO_POOL_ALLOC
234
417
           + pool1_.num_live() + pool2_.num_live()
235
417
#endif
236
417
        ;
237
417
  }
238
239
  bool is_initialized_ = true;  // mark/sweep doesn't need to be initialized
240
241
  // Runtime params
242
243
  // Threshold is a number of live objects, since we aren't keeping track of
244
  // total bytes
245
  int gc_threshold_;
246
247
  // Show debug logging
248
  bool gc_verbose_ = false;
249
250
  // Current stats
251
  int num_live_ = 0;
252
  // Should we keep track of sizes?
253
  // int64_t bytes_live_ = 0;
254
255
  // Cumulative stats
256
  int max_survived_ = 0;  // max # live after a collection
257
  int num_allocated_ = 0;
258
  int64_t bytes_allocated_ = 0;  // avoid overflow
259
  int num_gc_points_ = 0;        // manual collection points
260
  int num_collections_ = 0;
261
  int num_growths_;
262
  double max_gc_millis_ = 0.0;
263
  double total_gc_millis_ = 0.0;
264
265
#ifndef NO_POOL_ALLOC
266
  // 16,384 / 24 bytes = 682 cells (rounded), 16,368 bytes
267
  // 16,384 / 48 bytes = 341 cells (rounded), 16,368 bytes
268
  // Conveniently, the glibc malloc header is 16 bytes, giving exactly 16 Ki
269
  // differences
270
  Pool<682, 24> pool1_;
271
  Pool<341, 48> pool2_;
272
#endif
273
274
  std::vector<RawObject**> roots_;
275
  std::vector<RawObject*> global_roots_;
276
277
  // Allocate() appends live objects, and Sweep() compacts it
278
  std::vector<ObjHeader*> live_objs_;
279
  // Allocate lazily frees these, and Sweep() replenishes it
280
  std::vector<ObjHeader*> to_free_;
281
282
  std::vector<ObjHeader*> gray_stack_;
283
  MarkSet mark_set_;
284
285
  int greatest_obj_id_ = 0;
286
287
 private:
288
  void FreeEverything();
289
  void MaybePrintStats();
290
291
  DISALLOW_COPY_AND_ASSIGN(MarkSweepHeap);
292
};
293
294
#endif  // MARKSWEEP_HEAP_H