blob: 21d0b43f95d90e14c26ace620b7f27df6c6fe4c0 [file] [log] [blame]
Mathieu Chartier8d562102014-03-12 17:42:10 -07001/*
2 * Copyright (C) 2014 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
17#ifndef ART_RUNTIME_GC_COLLECTOR_IMMUNE_REGION_H_
18#define ART_RUNTIME_GC_COLLECTOR_IMMUNE_REGION_H_
19
20#include "base/macros.h"
21#include "base/mutex.h"
22#include "gc/space/space-inl.h"
23
24namespace art {
25namespace mirror {
26class Object;
27} // namespace mirror
28namespace gc {
29namespace space {
30class ContinuousSpace;
31} // namespace space
32
33namespace collector {
34
35// An immune region is a continuous region of memory for which all objects contained are assumed to
36// be marked. This is used as an optimization in the GC to avoid needing to test the mark bitmap of
37// the zygote, image spaces, and sometimes non moving spaces. Doing the ContainsObject check is
38// faster than doing a bitmap read. There is no support for discontinuous spaces and you need to be
39// careful that your immune region doesn't contain any large objects.
40class ImmuneRegion {
41 public:
42 ImmuneRegion();
43 void Reset();
44 bool AddContinuousSpace(space::ContinuousSpace* space)
45 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
46 bool ContainsSpace(const space::ContinuousSpace* space) const;
47 // Returns true if an object is inside of the immune region (assumed to be marked).
48 bool ContainsObject(const mirror::Object* obj) const ALWAYS_INLINE {
49 return obj >= begin_ && obj < end_;
50 }
51
52 private:
53 bool IsEmpty() const {
54 return begin_ == end_;
55 }
56
57 mirror::Object* begin_;
58 mirror::Object* end_;
59};
60
61} // namespace collector
62} // namespace gc
63} // namespace art
64
65#endif // ART_RUNTIME_GC_COLLECTOR_IMMUNE_REGION_H_