Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bitv internal nbits counter silently overflows for huge bitvs on 32-bit platforms #16958

Closed
huonw opened this issue Sep 3, 2014 · 3 comments · Fixed by #19216
Closed

Bitv internal nbits counter silently overflows for huge bitvs on 32-bit platforms #16958

huonw opened this issue Sep 3, 2014 · 3 comments · Fixed by #19216

Comments

@huonw
Copy link
Member

huonw commented Sep 3, 2014

use std::collections::Bitv;
fn main() {
let mut bitv = Bitv::with_capacity((!0u32) as uint, false);

bitv.grow(1, true);

println!("{}", bitv.get(0));
}
task '<main>' failed at 'assertion failed: i < self.nbits', ...

since the grow is wrapping the internal (32-bit) uint. (A naive bit counter for a bit vector needs 3 additional bits over a uint to be guaranteed to work always.)

@huonw huonw added the A-libs label Sep 3, 2014
@Gankra
Copy link
Contributor

Gankra commented Sep 3, 2014

But bitv has to return its size as a uint, right? What do we do when the size is uint::MAX+1 and someone asks for it? (This issue may go away if libcollections traits go away)

@huonw
Copy link
Member Author

huonw commented Sep 4, 2014

Oh, yeah; and indexing wouldn't work with a uint. One solution would be switching everything to u64 (which still works on 64-bit platforms since the address space is only 48/47 bits), another would just be making this an error in grow.

@Gankra
Copy link
Contributor

Gankra commented Sep 4, 2014

I think the more reasonable solution would be to error in grow for now. If people demand those last few bits of the 32-bit memory space then we can reconsider. Although maybe @aturon has a different opinion for how to handle collection indexing?

Gankra added a commit to Gankra/rust that referenced this issue Nov 22, 2014
Part of rust-lang#18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes rust-lang#16958

[breaking-change]
tbu- pushed a commit to tbu-/rust that referenced this issue Dec 15, 2014
Part of rust-lang#18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes rust-lang#16958

[breaking-change]
Gankra added a commit to Gankra/rust that referenced this issue Dec 20, 2014
Part of rust-lang#18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes rust-lang#16958

[breaking-change]
bors added a commit that referenced this issue Dec 22, 2014
Part of #18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes #16958

[breaking-change]
alexcrichton added a commit to alexcrichton/rust that referenced this issue Dec 22, 2014
Part of rust-lang#18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes rust-lang#16958

[breaking-change]
bors added a commit that referenced this issue Dec 22, 2014
Part of #18424

This commit changes the semantics of `reserve` and `capacity` for Bitv and BitvSet to match conventions. It also introduces the notion of `reserve_index` and `reserve_index_exact` for collections with maximum-index-based capacity semantics.

Deprecates free function constructors in favour of functions on Bitv itself.

Changes `Bitv::pop` to return an Option rather than panicking.

Deprecates and renames several methods in favour of conventions.

Marks several blessed methods as unstable.

This commit also substantially refactors Bitv and BitvSet's implementations. The new implementation is simpler, cleaner, better documented, and more robust against overflows. It also reduces coupling between Bitv and BitvSet. Tests have been seperated into seperate submodules.

Fixes #16958

[breaking-change]
bors added a commit to rust-lang-ci/rust that referenced this issue Mar 31, 2024
fix: lifetime length are not added in count of params in highlight

I found these two instances easily but I wonder how many such instances are there.

Fixes rust-lang#16958
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants