blob: 64c0bcd8f85175554483bf0163b72bec5f2254fb [file] [log] [blame]
Mathieu Chartier2b82db42012-11-14 17:29:05 -08001/*
2 * Copyright (C) 2011 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_PARTIAL_MARK_SWEEP_H_
18#define ART_SRC_GC_PARTIAL_MARK_SWEEP_H_
Mathieu Chartier2b82db42012-11-14 17:29:05 -080019
20#include "locks.h"
21#include "mark_sweep.h"
Mathieu Chartier2b82db42012-11-14 17:29:05 -080022
23namespace art {
24
Mathieu Chartier2b82db42012-11-14 17:29:05 -080025class PartialMarkSweep : public MarkSweep {
26 public:
27 virtual GcType GetGcType() const {
28 return kGcTypePartial;
29 }
30
31 explicit PartialMarkSweep(Heap* heap, bool is_concurrent);
32 ~PartialMarkSweep();
33
34protected:
35 virtual void BindBitmaps()
36 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
37
38 DISALLOW_COPY_AND_ASSIGN(PartialMarkSweep);
39};
40
41} // namespace art
42
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#endif // ART_SRC_GC_PARTIAL_MARK_SWEEP_H_