blob: 34f1ca9129cce485a871e859912559287316643c [file] [log] [blame]
Nicolas Geoffray0e336432014-02-26 18:24:38 +00001/*
2 * Copyright (C) 2013 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_COMPILER_UTILS_ARENA_BIT_VECTOR_H_
18#define ART_COMPILER_UTILS_ARENA_BIT_VECTOR_H_
19
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070020#include "arena_object.h"
Nicolas Geoffray0e336432014-02-26 18:24:38 +000021#include "base/bit_vector.h"
Nicolas Geoffray0e336432014-02-26 18:24:38 +000022
23namespace art {
24
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070025class ArenaAllocator;
26class ScopedArenaAllocator;
27
Nicolas Geoffray0e336432014-02-26 18:24:38 +000028// Type of growable bitmap for memory tuning.
29enum OatBitMapKind {
30 kBitMapMisc = 0,
31 kBitMapUse,
32 kBitMapDef,
33 kBitMapLiveIn,
34 kBitMapBMatrix,
35 kBitMapDominators,
36 kBitMapIDominated,
37 kBitMapDomFrontier,
38 kBitMapPhi,
39 kBitMapTmpBlocks,
40 kBitMapInputBlocks,
41 kBitMapRegisterV,
42 kBitMapTempSSARegisterV,
43 kBitMapNullCheck,
Vladimir Markobfea9c22014-01-17 17:49:33 +000044 kBitMapClInitCheck,
Nicolas Geoffray0e336432014-02-26 18:24:38 +000045 kBitMapTmpBlockV,
46 kBitMapPredecessors,
47 kNumBitMapKinds
48};
49
50std::ostream& operator<<(std::ostream& os, const OatBitMapKind& kind);
51
52/*
53 * A BitVector implementation that uses Arena allocation.
54 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070055class ArenaBitVector : public BitVector, public ArenaObject<kArenaAllocGrowableBitMap> {
Ian Rogerse77493c2014-08-20 15:08:45 -070056 public:
57 ArenaBitVector(ArenaAllocator* arena, uint32_t start_bits, bool expandable,
58 OatBitMapKind kind = kBitMapMisc);
59 ArenaBitVector(ScopedArenaAllocator* arena, uint32_t start_bits, bool expandable,
60 OatBitMapKind kind = kBitMapMisc);
61 ~ArenaBitVector() {}
Nicolas Geoffray0e336432014-02-26 18:24:38 +000062
Ian Rogerse77493c2014-08-20 15:08:45 -070063 private:
64 const OatBitMapKind kind_; // for memory use tuning. TODO: currently unused.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070065
66 DISALLOW_COPY_AND_ASSIGN(ArenaBitVector);
Nicolas Geoffray0e336432014-02-26 18:24:38 +000067};
68
69
70} // namespace art
71
72#endif // ART_COMPILER_UTILS_ARENA_BIT_VECTOR_H_