This website requires JavaScript.
Explore
Help
Register
Sign In
caio
/
clang-p2996
Watch
1
Star
0
Fork
0
You've already forked clang-p2996
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
b08948399333487e5a194c956fcb251894deefdd
clang-p2996
/
libcxx
/
test
/
containers
History
Marshall Clow
36a60721ce
Added static_assert to std::get<N>(std::array) calls to catch "out of bounds" calls
...
llvm-svn: 170435
2012-12-18 16:46:30 +00:00
..
associative
The rules for emplace in map, multimap, unordered_map and unordered_multimap changed a while back and I'm just now updating to these new rules. In a nutshell, you've got to know you're emplacing to a pair and use one of pair's constructors. I made one extension: If you want to emplace the key and default construct the mapped_type, you can just emplace(key), as opposed to emplace(piecewise_construct, forward_as_tuple(key), forward_as_tuple()).
2012-05-25 22:04:21 +00:00
container.adaptors
noexcept for <stack>. This completes noexcept for Chapter 23 [containers].
2011-06-04 22:09:19 +00:00
container.requirements
license change
2010-11-16 22:09:02 +00:00
containers.general
license change
2010-11-16 22:09:02 +00:00
sequences
Added static_assert to std::get<N>(std::array) calls to catch "out of bounds" calls
2012-12-18 16:46:30 +00:00
unord
This commit establishes a new bucket_count policy in the unordered containers: The policy now allows a power-of-2 number of buckets to be requested (and that request honored) by the client. And if the number of buckets is set to a power of 2, then the constraint of the hash to the number of buckets uses & instead of %. If the client does not specify a number of buckets, then the policy remains unchanged: a prime number of buckets is selected. The growth policy is that the number of buckets is roughly doubled when needed. While growing, either the prime, or the power-of-2 strategy will be preserved. There is a small run time cost for putting in this switch. For very cheap hash functions, e.g. identity for int, the cost can be as high as 18%. However with more typical use cases, e.g. strings, the cost is in the noise level. I've measured cases with very cheap hash functions (int) that using a power-of-2 number of buckets can make look up about twice as fast. However I've also noted that a power-of-2 number of buckets is more susceptible to accidental catastrophic collisions. Though I've also noted that accidental catastrophic collisions are also possible when using a prime number of buckets (but seems far less likely). In short, this patch adds an extra tuning knob for those clients trying to get the last bit of performance squeezed out of their hash containers. Casual users of the hash containers will not notice the introduction of this tuning knob. Those clients who swear by power-of-2 hash containers can now opt-in to that strategy. Clients who prefer a prime number of buckets can continue as they have.
2012-07-06 17:31:14 +00:00
Copyable.h
…
DefaultOnly.h
…
Emplaceable.h
Suppress some warings in the tests.
2011-05-13 23:59:50 +00:00
iterators.h
…
MoveOnly.h
…
NotConstructible.h
…
nothing_to_do.pass.cpp
license change
2010-11-16 22:09:02 +00:00
stack_allocator.h
…
test_allocator.h
…
test_compare.h
…
test_hash.h
…