blob: 41ab0cc8073936d24fbdb8dbedee660e49d5ed15 [file] [log] [blame]
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080017#ifndef ART_SRC_GC_STICKY_MARK_SWEEP_H_
18#define ART_SRC_GC_STICKY_MARK_SWEEP_H_
Mathieu Chartier2b82db42012-11-14 17:29:05 -080019
Elliott Hughes76160052012-12-12 16:31:20 -080020#include "base/macros.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080021#include "locks.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080022#include "partial_mark_sweep.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080023
24namespace art {
25
Mathieu Chartier2b82db42012-11-14 17:29:05 -080026class StickyMarkSweep : public PartialMarkSweep {
27 public:
28 virtual GcType GetGcType() const {
29 return kGcTypeSticky;
30 }
31
32 explicit StickyMarkSweep(Heap* heap, bool is_concurrent);
33 ~StickyMarkSweep();
34protected:
35 virtual void BindBitmaps()
36 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
37
38 virtual void MarkReachableObjects()
39 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
40 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
41
42 virtual void Sweep(TimingLogger& timings, bool swap_bitmaps)
43 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
44
45 DISALLOW_COPY_AND_ASSIGN(StickyMarkSweep);
46};
47
48} // namespace art
49
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#endif // ART_SRC_GC_STICKY_MARK_SWEEP_H_