Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 1 | /* |
| 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 | #include "bit_vector.h" |
| 18 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 19 | #include <sstream> |
| 20 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 21 | #include "allocator.h" |
| 22 | #include "bit_vector-inl.h" |
| 23 | |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 24 | namespace art { |
| 25 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 26 | // The number of words necessary to encode bits. |
| 27 | static constexpr uint32_t BitsToWords(uint32_t bits) { |
| 28 | return RoundUp(bits, 32) / 32; |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | // TODO: replace excessive argument defaulting when we are at gcc 4.7 |
| 32 | // or later on host with delegating constructor support. Specifically, |
| 33 | // starts_bits and storage_size/storage are mutually exclusive. |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 34 | BitVector::BitVector(uint32_t start_bits, |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 35 | bool expandable, |
| 36 | Allocator* allocator, |
| 37 | uint32_t storage_size, |
| 38 | uint32_t* storage) |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 39 | : storage_(storage), |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 40 | storage_size_(storage_size), |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 41 | allocator_(allocator), |
| 42 | expandable_(expandable) { |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 43 | COMPILE_ASSERT(sizeof(*storage_) == kWordBytes, check_word_bytes); |
| 44 | COMPILE_ASSERT(sizeof(*storage_) * 8u == kWordBits, check_word_bits); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 45 | if (storage_ == nullptr) { |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 46 | storage_size_ = BitsToWords(start_bits); |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 47 | storage_ = static_cast<uint32_t*>(allocator_->Alloc(storage_size_ * kWordBytes)); |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | |
| 51 | BitVector::~BitVector() { |
| 52 | allocator_->Free(storage_); |
| 53 | } |
| 54 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 55 | bool BitVector::SameBitsSet(const BitVector *src) const { |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 56 | int our_highest = GetHighestBitSet(); |
| 57 | int src_highest = src->GetHighestBitSet(); |
| 58 | |
| 59 | // If the highest bit set is different, we are different. |
| 60 | if (our_highest != src_highest) { |
Jean Christophe Beyler | b5c9b40 | 2014-04-30 14:52:00 -0700 | [diff] [blame] | 61 | return false; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | // If the highest bit set is -1, both are cleared, we are the same. |
| 65 | // If the highest bit set is 0, both have a unique bit set, we are the same. |
Jean Christophe Beyler | b5c9b40 | 2014-04-30 14:52:00 -0700 | [diff] [blame] | 66 | if (our_highest <= 0) { |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 67 | return true; |
| 68 | } |
| 69 | |
Jean Christophe Beyler | b5c9b40 | 2014-04-30 14:52:00 -0700 | [diff] [blame] | 70 | // Get the highest bit set's cell's index |
| 71 | // No need of highest + 1 here because it can't be 0 so BitsToWords will work here. |
| 72 | int our_highest_index = BitsToWords(our_highest); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 73 | |
| 74 | // This memcmp is enough: we know that the highest bit set is the same for both: |
| 75 | // - Therefore, min_size goes up to at least that, we are thus comparing at least what we need to, but not less. |
| 76 | // ie. we are comparing all storage cells that could have difference, if both vectors have cells above our_highest_index, |
| 77 | // they are automatically at 0. |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 78 | return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 79 | } |
| 80 | |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 81 | void BitVector::Intersect(const BitVector* src) { |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 82 | uint32_t src_storage_size = src->storage_size_; |
| 83 | |
| 84 | // Get the minimum size between us and source. |
| 85 | uint32_t min_size = (storage_size_ < src_storage_size) ? storage_size_ : src_storage_size; |
| 86 | |
| 87 | uint32_t idx; |
| 88 | for (idx = 0; idx < min_size; idx++) { |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 89 | storage_[idx] &= src->GetRawStorageWord(idx); |
| 90 | } |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 91 | |
| 92 | // Now, due to this being an intersection, there are two possibilities: |
| 93 | // - Either src was larger than us: we don't care, all upper bits would thus be 0. |
| 94 | // - Either we are larger than src: we don't care, all upper bits would have been 0 too. |
| 95 | // So all we need to do is set all remaining bits to 0. |
| 96 | for (; idx < storage_size_; idx++) { |
| 97 | storage_[idx] = 0; |
| 98 | } |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 101 | bool BitVector::Union(const BitVector* src) { |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 102 | // Get the highest bit to determine how much we need to expand. |
| 103 | int highest_bit = src->GetHighestBitSet(); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 104 | bool changed = false; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 105 | |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 106 | // If src has no bit set, we are done: there is no need for a union with src. |
| 107 | if (highest_bit == -1) { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 108 | return changed; |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | // Update src_size to how many cells we actually care about: where the bit is + 1. |
| 112 | uint32_t src_size = BitsToWords(highest_bit + 1); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 113 | |
| 114 | // Is the storage size smaller than src's? |
| 115 | if (storage_size_ < src_size) { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 116 | changed = true; |
| 117 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 118 | EnsureSize(highest_bit); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 119 | |
| 120 | // Paranoid: storage size should be big enough to hold this bit now. |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 121 | DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 122 | } |
| 123 | |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 124 | for (uint32_t idx = 0; idx < src_size; idx++) { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 125 | uint32_t existing = storage_[idx]; |
| 126 | uint32_t update = existing | src->GetRawStorageWord(idx); |
| 127 | if (existing != update) { |
| 128 | changed = true; |
| 129 | storage_[idx] = update; |
| 130 | } |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 131 | } |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 132 | return changed; |
| 133 | } |
| 134 | |
| 135 | bool BitVector::UnionIfNotIn(const BitVector* union_with, const BitVector* not_in) { |
| 136 | // Get the highest bit to determine how much we need to expand. |
| 137 | int highest_bit = union_with->GetHighestBitSet(); |
| 138 | bool changed = false; |
| 139 | |
| 140 | // If src has no bit set, we are done: there is no need for a union with src. |
| 141 | if (highest_bit == -1) { |
| 142 | return changed; |
| 143 | } |
| 144 | |
| 145 | // Update union_with_size to how many cells we actually care about: where the bit is + 1. |
| 146 | uint32_t union_with_size = BitsToWords(highest_bit + 1); |
| 147 | |
| 148 | // Is the storage size smaller than src's? |
| 149 | if (storage_size_ < union_with_size) { |
Nicolas Geoffray | b556761 | 2014-10-22 10:25:24 +0100 | [diff] [blame] | 150 | EnsureSize(highest_bit); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 151 | |
| 152 | // Paranoid: storage size should be big enough to hold this bit now. |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 153 | DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | uint32_t not_in_size = not_in->GetStorageSize(); |
| 157 | |
| 158 | uint32_t idx = 0; |
| 159 | for (; idx < std::min(not_in_size, union_with_size); idx++) { |
| 160 | uint32_t existing = storage_[idx]; |
| 161 | uint32_t update = existing | |
| 162 | (union_with->GetRawStorageWord(idx) & ~not_in->GetRawStorageWord(idx)); |
| 163 | if (existing != update) { |
| 164 | changed = true; |
| 165 | storage_[idx] = update; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | for (; idx < union_with_size; idx++) { |
| 170 | uint32_t existing = storage_[idx]; |
| 171 | uint32_t update = existing | union_with->GetRawStorageWord(idx); |
| 172 | if (existing != update) { |
| 173 | changed = true; |
| 174 | storage_[idx] = update; |
| 175 | } |
| 176 | } |
| 177 | return changed; |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 180 | void BitVector::Subtract(const BitVector *src) { |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 181 | uint32_t src_size = src->storage_size_; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 182 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 183 | // We only need to operate on bytes up to the smaller of the sizes of the two operands. |
| 184 | unsigned int min_size = (storage_size_ > src_size) ? src_size : storage_size_; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 185 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 186 | // Difference until max, we know both accept it: |
| 187 | // There is no need to do more: |
| 188 | // If we are bigger than src, the upper bits are unchanged. |
| 189 | // If we are smaller than src, the non-existant upper bits are 0 and thus can't get subtracted. |
| 190 | for (uint32_t idx = 0; idx < min_size; idx++) { |
| 191 | storage_[idx] &= (~(src->GetRawStorageWord(idx))); |
| 192 | } |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 193 | } |
| 194 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 195 | uint32_t BitVector::NumSetBits() const { |
| 196 | uint32_t count = 0; |
| 197 | for (uint32_t word = 0; word < storage_size_; word++) { |
Vladimir Marko | 8194963 | 2014-05-02 11:53:22 +0100 | [diff] [blame] | 198 | count += POPCOUNT(storage_[word]); |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 199 | } |
| 200 | return count; |
| 201 | } |
| 202 | |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 203 | uint32_t BitVector::NumSetBits(uint32_t end) const { |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 204 | DCHECK_LE(end, storage_size_ * kWordBits); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 205 | return NumSetBits(storage_, end); |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 208 | void BitVector::SetInitialBits(uint32_t num_bits) { |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 209 | // If num_bits is 0, clear everything. |
| 210 | if (num_bits == 0) { |
| 211 | ClearAllBits(); |
| 212 | return; |
| 213 | } |
| 214 | |
| 215 | // Set the highest bit we want to set to get the BitVector allocated if need be. |
| 216 | SetBit(num_bits - 1); |
| 217 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 218 | uint32_t idx; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 219 | // We can set every storage element with -1. |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 220 | for (idx = 0; idx < WordIndex(num_bits); idx++) { |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 221 | storage_[idx] = -1; |
| 222 | } |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 223 | |
| 224 | // Handle the potentially last few bits. |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 225 | uint32_t rem_num_bits = num_bits & 0x1f; |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 226 | if (rem_num_bits != 0) { |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 227 | storage_[idx] = (1 << rem_num_bits) - 1; |
Vladimir Marko | 4812d43 | 2014-03-11 12:42:25 +0000 | [diff] [blame] | 228 | ++idx; |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 229 | } |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 230 | |
| 231 | // Now set the upper ones to 0. |
| 232 | for (; idx < storage_size_; idx++) { |
| 233 | storage_[idx] = 0; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | int BitVector::GetHighestBitSet() const { |
| 238 | unsigned int max = storage_size_; |
| 239 | for (int idx = max - 1; idx >= 0; idx--) { |
| 240 | // If not 0, we have more work: check the bits. |
| 241 | uint32_t value = storage_[idx]; |
| 242 | |
| 243 | if (value != 0) { |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 244 | // Return highest bit set in value plus bits from previous storage indexes. |
| 245 | return 31 - CLZ(value) + (idx * kWordBits); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 246 | } |
| 247 | } |
| 248 | |
| 249 | // All zero, therefore return -1. |
| 250 | return -1; |
| 251 | } |
| 252 | |
| 253 | void BitVector::Copy(const BitVector *src) { |
| 254 | // Get highest bit set, we only need to copy till then. |
| 255 | int highest_bit = src->GetHighestBitSet(); |
| 256 | |
| 257 | // If nothing is set, clear everything. |
| 258 | if (highest_bit == -1) { |
| 259 | ClearAllBits(); |
| 260 | return; |
| 261 | } |
| 262 | |
| 263 | // Set upper bit to ensure right size before copy. |
| 264 | SetBit(highest_bit); |
| 265 | |
| 266 | // Now set until highest bit's storage. |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 267 | uint32_t size = 1 + (highest_bit / kWordBits); |
| 268 | memcpy(storage_, src->GetRawStorage(), kWordBytes * size); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 269 | |
| 270 | // Set upper bits to 0. |
| 271 | uint32_t left = storage_size_ - size; |
| 272 | |
| 273 | if (left > 0) { |
Vladimir Marko | a5b8fde | 2014-05-23 15:16:44 +0100 | [diff] [blame] | 274 | memset(storage_ + size, 0, kWordBytes * left); |
Jean Christophe Beyler | ad0d30a | 2014-01-16 09:00:18 -0800 | [diff] [blame] | 275 | } |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 278 | uint32_t BitVector::NumSetBits(const uint32_t* storage, uint32_t end) { |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 279 | uint32_t word_end = WordIndex(end); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 280 | uint32_t partial_word_bits = end & 0x1f; |
| 281 | |
| 282 | uint32_t count = 0u; |
| 283 | for (uint32_t word = 0u; word < word_end; word++) { |
Vladimir Marko | 8194963 | 2014-05-02 11:53:22 +0100 | [diff] [blame] | 284 | count += POPCOUNT(storage[word]); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 285 | } |
| 286 | if (partial_word_bits != 0u) { |
Vladimir Marko | 8194963 | 2014-05-02 11:53:22 +0100 | [diff] [blame] | 287 | count += POPCOUNT(storage[word_end] & ~(0xffffffffu << partial_word_bits)); |
Vladimir Marko | d3c5beb | 2014-04-11 16:32:51 +0100 | [diff] [blame] | 288 | } |
| 289 | return count; |
| 290 | } |
| 291 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 292 | void BitVector::Dump(std::ostream& os, const char *prefix) const { |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 293 | std::ostringstream buffer; |
Jean Christophe Beyler | 520f37b | 2014-05-22 15:43:50 -0700 | [diff] [blame] | 294 | DumpHelper(prefix, buffer); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 295 | os << buffer.str() << std::endl; |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Jean Christophe Beyler | 520f37b | 2014-05-22 15:43:50 -0700 | [diff] [blame] | 298 | void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 299 | // Initialize it. |
| 300 | if (prefix != nullptr) { |
| 301 | buffer << prefix; |
| 302 | } |
| 303 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 304 | buffer << '('; |
Jean Christophe Beyler | 014d77a | 2014-06-02 11:21:21 -0700 | [diff] [blame] | 305 | for (size_t i = 0; i < storage_size_ * kWordBits; i++) { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 306 | buffer << IsBitSet(i); |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 307 | } |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 308 | buffer << ')'; |
Jean Christophe Beyler | 5afa08f | 2014-04-15 15:54:35 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Ian Rogers | e77493c | 2014-08-20 15:08:45 -0700 | [diff] [blame] | 311 | void BitVector::EnsureSize(uint32_t idx) { |
| 312 | if (idx >= storage_size_ * kWordBits) { |
| 313 | DCHECK(expandable_) << "Attempted to expand a non-expandable bitmap to position " << idx; |
| 314 | |
| 315 | /* Round up to word boundaries for "idx+1" bits */ |
| 316 | uint32_t new_size = BitsToWords(idx + 1); |
| 317 | DCHECK_GT(new_size, storage_size_); |
| 318 | uint32_t *new_storage = |
| 319 | static_cast<uint32_t*>(allocator_->Alloc(new_size * kWordBytes)); |
| 320 | memcpy(new_storage, storage_, storage_size_ * kWordBytes); |
| 321 | // Zero out the new storage words. |
| 322 | memset(&new_storage[storage_size_], 0, (new_size - storage_size_) * kWordBytes); |
| 323 | // TOTO: collect stats on space wasted because of resize. |
| 324 | storage_ = new_storage; |
| 325 | storage_size_ = new_size; |
| 326 | } |
| 327 | } |
| 328 | |
Brian Carlstrom | 413e89f | 2013-10-21 23:53:49 -0700 | [diff] [blame] | 329 | } // namespace art |