blob: 185a9b7facd47e60b6e779e50c8b0ca30d0f5a1d [file] [log] [blame]
Ian Rogersb0fa5dc2014-04-28 16:47:08 -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_ALLOCATOR_TYPE_H_
18#define ART_RUNTIME_GC_ALLOCATOR_TYPE_H_
19
Mathieu Chartier3cf22532015-07-09 15:15:09 -070020#include <iosfwd>
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070021
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070022namespace art {
23namespace gc {
24
25// Different types of allocators.
26enum AllocatorType {
27 kAllocatorTypeBumpPointer, // Use BumpPointer allocator, has entrypoints.
28 kAllocatorTypeTLAB, // Use TLAB allocator, has entrypoints.
29 kAllocatorTypeRosAlloc, // Use RosAlloc allocator, has entrypoints.
30 kAllocatorTypeDlMalloc, // Use dlmalloc allocator, has entrypoints.
31 kAllocatorTypeNonMoving, // Special allocator for non moving objects, doesn't have entrypoints.
32 kAllocatorTypeLOS, // Large object space, also doesn't have entrypoints.
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -080033 kAllocatorTypeRegion,
34 kAllocatorTypeRegionTLAB,
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070035};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070036std::ostream& operator<<(std::ostream& os, const AllocatorType& rhs);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070037
38} // namespace gc
39} // namespace art
40
41#endif // ART_RUNTIME_GC_ALLOCATOR_TYPE_H_