blob: 3d2f0deac54b677f4006079a25dd9ed7a1941543 [file] [log] [blame]
Brian Carlstrom413e89f2013-10-21 23:53:49 -07001/*
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 Rogerse77493c2014-08-20 15:08:45 -070019#include "allocator.h"
20#include "bit_vector-inl.h"
21
Brian Carlstrom413e89f2013-10-21 23:53:49 -070022namespace art {
23
Ian Rogerse77493c2014-08-20 15:08:45 -070024// The number of words necessary to encode bits.
25static constexpr uint32_t BitsToWords(uint32_t bits) {
26 return RoundUp(bits, 32) / 32;
Brian Carlstrom413e89f2013-10-21 23:53:49 -070027}
28
29// TODO: replace excessive argument defaulting when we are at gcc 4.7
30// or later on host with delegating constructor support. Specifically,
31// starts_bits and storage_size/storage are mutually exclusive.
Brian Carlstromba150c32013-08-27 17:31:03 -070032BitVector::BitVector(uint32_t start_bits,
Brian Carlstrom413e89f2013-10-21 23:53:49 -070033 bool expandable,
34 Allocator* allocator,
35 uint32_t storage_size,
36 uint32_t* storage)
Ian Rogerse77493c2014-08-20 15:08:45 -070037 : storage_(storage),
Brian Carlstrom413e89f2013-10-21 23:53:49 -070038 storage_size_(storage_size),
Ian Rogerse77493c2014-08-20 15:08:45 -070039 allocator_(allocator),
40 expandable_(expandable) {
Vladimir Markoa5b8fde2014-05-23 15:16:44 +010041 COMPILE_ASSERT(sizeof(*storage_) == kWordBytes, check_word_bytes);
42 COMPILE_ASSERT(sizeof(*storage_) * 8u == kWordBits, check_word_bits);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080043 if (storage_ == nullptr) {
Brian Carlstrom413e89f2013-10-21 23:53:49 -070044 storage_size_ = BitsToWords(start_bits);
Vladimir Markoa5b8fde2014-05-23 15:16:44 +010045 storage_ = static_cast<uint32_t*>(allocator_->Alloc(storage_size_ * kWordBytes));
Brian Carlstrom413e89f2013-10-21 23:53:49 -070046 }
47}
48
49BitVector::~BitVector() {
50 allocator_->Free(storage_);
51}
52
Ian Rogerse77493c2014-08-20 15:08:45 -070053bool BitVector::SameBitsSet(const BitVector *src) const {
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080054 int our_highest = GetHighestBitSet();
55 int src_highest = src->GetHighestBitSet();
56
57 // If the highest bit set is different, we are different.
58 if (our_highest != src_highest) {
Jean Christophe Beylerb5c9b402014-04-30 14:52:00 -070059 return false;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080060 }
61
62 // If the highest bit set is -1, both are cleared, we are the same.
63 // If the highest bit set is 0, both have a unique bit set, we are the same.
Jean Christophe Beylerb5c9b402014-04-30 14:52:00 -070064 if (our_highest <= 0) {
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080065 return true;
66 }
67
Jean Christophe Beylerb5c9b402014-04-30 14:52:00 -070068 // Get the highest bit set's cell's index
69 // No need of highest + 1 here because it can't be 0 so BitsToWords will work here.
70 int our_highest_index = BitsToWords(our_highest);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080071
72 // This memcmp is enough: we know that the highest bit set is the same for both:
73 // - Therefore, min_size goes up to at least that, we are thus comparing at least what we need to, but not less.
74 // ie. we are comparing all storage cells that could have difference, if both vectors have cells above our_highest_index,
75 // they are automatically at 0.
Vladimir Markoa5b8fde2014-05-23 15:16:44 +010076 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080077}
78
Brian Carlstrom413e89f2013-10-21 23:53:49 -070079void BitVector::Intersect(const BitVector* src) {
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080080 uint32_t src_storage_size = src->storage_size_;
81
82 // Get the minimum size between us and source.
83 uint32_t min_size = (storage_size_ < src_storage_size) ? storage_size_ : src_storage_size;
84
85 uint32_t idx;
86 for (idx = 0; idx < min_size; idx++) {
Brian Carlstrom413e89f2013-10-21 23:53:49 -070087 storage_[idx] &= src->GetRawStorageWord(idx);
88 }
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -080089
90 // Now, due to this being an intersection, there are two possibilities:
91 // - Either src was larger than us: we don't care, all upper bits would thus be 0.
92 // - Either we are larger than src: we don't care, all upper bits would have been 0 too.
93 // So all we need to do is set all remaining bits to 0.
94 for (; idx < storage_size_; idx++) {
95 storage_[idx] = 0;
96 }
Brian Carlstrom413e89f2013-10-21 23:53:49 -070097}
98
Nicolas Geoffray804d0932014-05-02 08:46:00 +010099bool BitVector::Union(const BitVector* src) {
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700100 // Get the highest bit to determine how much we need to expand.
101 int highest_bit = src->GetHighestBitSet();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100102 bool changed = false;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800103
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700104 // If src has no bit set, we are done: there is no need for a union with src.
105 if (highest_bit == -1) {
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100106 return changed;
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700107 }
108
109 // Update src_size to how many cells we actually care about: where the bit is + 1.
110 uint32_t src_size = BitsToWords(highest_bit + 1);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800111
112 // Is the storage size smaller than src's?
113 if (storage_size_ < src_size) {
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100114 changed = true;
115
Ian Rogerse77493c2014-08-20 15:08:45 -0700116 EnsureSize(highest_bit);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800117
118 // Paranoid: storage size should be big enough to hold this bit now.
Vladimir Markoa5b8fde2014-05-23 15:16:44 +0100119 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800120 }
121
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700122 for (uint32_t idx = 0; idx < src_size; idx++) {
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100123 uint32_t existing = storage_[idx];
124 uint32_t update = existing | src->GetRawStorageWord(idx);
125 if (existing != update) {
126 changed = true;
127 storage_[idx] = update;
128 }
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700129 }
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100130 return changed;
131}
132
133bool BitVector::UnionIfNotIn(const BitVector* union_with, const BitVector* not_in) {
134 // Get the highest bit to determine how much we need to expand.
135 int highest_bit = union_with->GetHighestBitSet();
136 bool changed = false;
137
138 // If src has no bit set, we are done: there is no need for a union with src.
139 if (highest_bit == -1) {
140 return changed;
141 }
142
143 // Update union_with_size to how many cells we actually care about: where the bit is + 1.
144 uint32_t union_with_size = BitsToWords(highest_bit + 1);
145
146 // Is the storage size smaller than src's?
147 if (storage_size_ < union_with_size) {
148 changed = true;
149
150 // Set it to reallocate.
151 SetBit(highest_bit);
152
153 // Paranoid: storage size should be big enough to hold this bit now.
Vladimir Markoa5b8fde2014-05-23 15:16:44 +0100154 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits);
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100155 }
156
157 uint32_t not_in_size = not_in->GetStorageSize();
158
159 uint32_t idx = 0;
160 for (; idx < std::min(not_in_size, union_with_size); idx++) {
161 uint32_t existing = storage_[idx];
162 uint32_t update = existing |
163 (union_with->GetRawStorageWord(idx) & ~not_in->GetRawStorageWord(idx));
164 if (existing != update) {
165 changed = true;
166 storage_[idx] = update;
167 }
168 }
169
170 for (; idx < union_with_size; idx++) {
171 uint32_t existing = storage_[idx];
172 uint32_t update = existing | union_with->GetRawStorageWord(idx);
173 if (existing != update) {
174 changed = true;
175 storage_[idx] = update;
176 }
177 }
178 return changed;
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700179}
180
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800181void BitVector::Subtract(const BitVector *src) {
Ian Rogerse77493c2014-08-20 15:08:45 -0700182 uint32_t src_size = src->storage_size_;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800183
Ian Rogerse77493c2014-08-20 15:08:45 -0700184 // We only need to operate on bytes up to the smaller of the sizes of the two operands.
185 unsigned int min_size = (storage_size_ > src_size) ? src_size : storage_size_;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800186
Ian Rogerse77493c2014-08-20 15:08:45 -0700187 // Difference until max, we know both accept it:
188 // There is no need to do more:
189 // If we are bigger than src, the upper bits are unchanged.
190 // If we are smaller than src, the non-existant upper bits are 0 and thus can't get subtracted.
191 for (uint32_t idx = 0; idx < min_size; idx++) {
192 storage_[idx] &= (~(src->GetRawStorageWord(idx)));
193 }
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800194}
195
Brian Carlstromba150c32013-08-27 17:31:03 -0700196uint32_t BitVector::NumSetBits() const {
197 uint32_t count = 0;
198 for (uint32_t word = 0; word < storage_size_; word++) {
Vladimir Marko81949632014-05-02 11:53:22 +0100199 count += POPCOUNT(storage_[word]);
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700200 }
201 return count;
202}
203
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100204uint32_t BitVector::NumSetBits(uint32_t end) const {
Vladimir Markoa5b8fde2014-05-23 15:16:44 +0100205 DCHECK_LE(end, storage_size_ * kWordBits);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100206 return NumSetBits(storage_, end);
Brian Carlstromba150c32013-08-27 17:31:03 -0700207}
208
Brian Carlstromba150c32013-08-27 17:31:03 -0700209void BitVector::SetInitialBits(uint32_t num_bits) {
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800210 // If num_bits is 0, clear everything.
211 if (num_bits == 0) {
212 ClearAllBits();
213 return;
214 }
215
216 // Set the highest bit we want to set to get the BitVector allocated if need be.
217 SetBit(num_bits - 1);
218
Brian Carlstromba150c32013-08-27 17:31:03 -0700219 uint32_t idx;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800220 // We can set every storage element with -1.
Ian Rogerse77493c2014-08-20 15:08:45 -0700221 for (idx = 0; idx < WordIndex(num_bits); idx++) {
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700222 storage_[idx] = -1;
223 }
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800224
225 // Handle the potentially last few bits.
Brian Carlstromba150c32013-08-27 17:31:03 -0700226 uint32_t rem_num_bits = num_bits & 0x1f;
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800227 if (rem_num_bits != 0) {
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700228 storage_[idx] = (1 << rem_num_bits) - 1;
Vladimir Marko4812d432014-03-11 12:42:25 +0000229 ++idx;
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700230 }
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800231
232 // Now set the upper ones to 0.
233 for (; idx < storage_size_; idx++) {
234 storage_[idx] = 0;
235 }
236}
237
238int BitVector::GetHighestBitSet() const {
239 unsigned int max = storage_size_;
240 for (int idx = max - 1; idx >= 0; idx--) {
241 // If not 0, we have more work: check the bits.
242 uint32_t value = storage_[idx];
243
244 if (value != 0) {
Ian Rogerse77493c2014-08-20 15:08:45 -0700245 // Return highest bit set in value plus bits from previous storage indexes.
246 return 31 - CLZ(value) + (idx * kWordBits);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800247 }
248 }
249
250 // All zero, therefore return -1.
251 return -1;
252}
253
254void BitVector::Copy(const BitVector *src) {
255 // Get highest bit set, we only need to copy till then.
256 int highest_bit = src->GetHighestBitSet();
257
258 // If nothing is set, clear everything.
259 if (highest_bit == -1) {
260 ClearAllBits();
261 return;
262 }
263
264 // Set upper bit to ensure right size before copy.
265 SetBit(highest_bit);
266
267 // Now set until highest bit's storage.
Vladimir Markoa5b8fde2014-05-23 15:16:44 +0100268 uint32_t size = 1 + (highest_bit / kWordBits);
269 memcpy(storage_, src->GetRawStorage(), kWordBytes * size);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800270
271 // Set upper bits to 0.
272 uint32_t left = storage_size_ - size;
273
274 if (left > 0) {
Vladimir Markoa5b8fde2014-05-23 15:16:44 +0100275 memset(storage_ + size, 0, kWordBytes * left);
Jean Christophe Beylerad0d30a2014-01-16 09:00:18 -0800276 }
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700277}
278
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100279uint32_t BitVector::NumSetBits(const uint32_t* storage, uint32_t end) {
Ian Rogerse77493c2014-08-20 15:08:45 -0700280 uint32_t word_end = WordIndex(end);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100281 uint32_t partial_word_bits = end & 0x1f;
282
283 uint32_t count = 0u;
284 for (uint32_t word = 0u; word < word_end; word++) {
Vladimir Marko81949632014-05-02 11:53:22 +0100285 count += POPCOUNT(storage[word]);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100286 }
287 if (partial_word_bits != 0u) {
Vladimir Marko81949632014-05-02 11:53:22 +0100288 count += POPCOUNT(storage[word_end] & ~(0xffffffffu << partial_word_bits));
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100289 }
290 return count;
291}
292
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100293void BitVector::Dump(std::ostream& os, const char *prefix) const {
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700294 std::ostringstream buffer;
Jean Christophe Beyler520f37b2014-05-22 15:43:50 -0700295 DumpHelper(prefix, buffer);
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100296 os << buffer.str() << std::endl;
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700297}
298
Jean Christophe Beyler520f37b2014-05-22 15:43:50 -0700299void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const {
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700300 // Initialize it.
301 if (prefix != nullptr) {
302 buffer << prefix;
303 }
304
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100305 buffer << '(';
Jean Christophe Beyler014d77a2014-06-02 11:21:21 -0700306 for (size_t i = 0; i < storage_size_ * kWordBits; i++) {
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100307 buffer << IsBitSet(i);
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700308 }
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100309 buffer << ')';
Jean Christophe Beyler5afa08f2014-04-15 15:54:35 -0700310}
311
Ian Rogerse77493c2014-08-20 15:08:45 -0700312void BitVector::EnsureSize(uint32_t idx) {
313 if (idx >= storage_size_ * kWordBits) {
314 DCHECK(expandable_) << "Attempted to expand a non-expandable bitmap to position " << idx;
315
316 /* Round up to word boundaries for "idx+1" bits */
317 uint32_t new_size = BitsToWords(idx + 1);
318 DCHECK_GT(new_size, storage_size_);
319 uint32_t *new_storage =
320 static_cast<uint32_t*>(allocator_->Alloc(new_size * kWordBytes));
321 memcpy(new_storage, storage_, storage_size_ * kWordBytes);
322 // Zero out the new storage words.
323 memset(&new_storage[storage_size_], 0, (new_size - storage_size_) * kWordBytes);
324 // TOTO: collect stats on space wasted because of resize.
325 storage_ = new_storage;
326 storage_size_ = new_size;
327 }
328}
329
Brian Carlstrom413e89f2013-10-21 23:53:49 -0700330} // namespace art