Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
Mathieu Chartier | b666f48 | 2015-02-18 14:33:14 -0800 | [diff] [blame] | 20 | #include "base/arena_object.h" |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 21 | #include "base/bit_vector.h" |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 22 | |
| 23 | namespace art { |
| 24 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 25 | class ArenaAllocator; |
| 26 | class ScopedArenaAllocator; |
| 27 | |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 28 | // Type of growable bitmap for memory tuning. |
| 29 | enum OatBitMapKind { |
| 30 | kBitMapMisc = 0, |
| 31 | kBitMapUse, |
| 32 | kBitMapDef, |
| 33 | kBitMapLiveIn, |
| 34 | kBitMapBMatrix, |
| 35 | kBitMapDominators, |
| 36 | kBitMapIDominated, |
| 37 | kBitMapDomFrontier, |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 38 | kBitMapRegisterV, |
| 39 | kBitMapTempSSARegisterV, |
| 40 | kBitMapNullCheck, |
Vladimir Marko | bfea9c2 | 2014-01-17 17:49:33 +0000 | [diff] [blame] | 41 | kBitMapClInitCheck, |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 42 | kBitMapPredecessors, |
| 43 | kNumBitMapKinds |
| 44 | }; |
| 45 | |
| 46 | std::ostream& operator<<(std::ostream& os, const OatBitMapKind& kind); |
| 47 | |
| 48 | /* |
| 49 | * A BitVector implementation that uses Arena allocation. |
| 50 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 51 | class ArenaBitVector : public BitVector, public ArenaObject<kArenaAllocGrowableBitMap> { |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 52 | public: |
| 53 | ArenaBitVector(ArenaAllocator* arena, uint32_t start_bits, bool expandable, |
| 54 | OatBitMapKind kind = kBitMapMisc); |
| 55 | ArenaBitVector(ScopedArenaAllocator* arena, uint32_t start_bits, bool expandable, |
| 56 | OatBitMapKind kind = kBitMapMisc); |
| 57 | ~ArenaBitVector() {} |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 58 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 59 | private: |
| 60 | const OatBitMapKind kind_; // for memory use tuning. TODO: currently unused. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 61 | |
| 62 | DISALLOW_COPY_AND_ASSIGN(ArenaBitVector); |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | |
| 66 | } // namespace art |
| 67 | |
| 68 | #endif // ART_COMPILER_UTILS_ARENA_BIT_VECTOR_H_ |