blob: 908f038ff2fff74a85b9d129919ca6466ce8d116 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -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
17#ifndef ART_SRC_GC_GC_TYPE_H_
18#define ART_SRC_GC_GC_TYPE_H_
19
20namespace art {
21
22// The ordering of the enum matters, it is used to determine which GCs are run first.
23enum GcType {
24 // No Gc
25 kGcTypeNone,
26 // Sticky mark bits "generational" GC.
27 kGcTypeSticky,
28 // Partial GC, over only the alloc space.
29 kGcTypePartial,
30 // Full GC
31 kGcTypeFull,
32 // Number of different Gc types.
33 kGcTypeMax,
34};
35std::ostream& operator<<(std::ostream& os, const GcType& policy);
36
37} // namespace art
38
39#endif // ART_SRC_GC_GC_TYPE_H_