Fix incorrect assertion when deallocating big block
commit442581353dede7eefd73e3592b17313f2aa0220d
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Nov 2018 22:57:48 +0000 (13 22:57 +0000)
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Nov 2018 22:57:48 +0000 (13 22:57 +0000)
tree5c1a34d3f20bf1fa6257f6e8a0b1c51e3dc04f6f
parentca476f5993622d3421142680ac9ff9bab9410126
Fix incorrect assertion when deallocating big block

Since a big_block rounds up the size to a multiple of big_block::min it
is wrong to assert that the supplied number of bytes equals the
big_block's size(). Add big_block::alloc_size(size_t) to calculate the
allocated size consistently, and add comments to the code.

* src/c++17/memory_resource.cc (big_block): Improve comments.
(big_block::all_ones): Remove.
(big_block::big_block(size_t, size_t)): Use alloc_size.
(big_block::size()): Add comment, replace all_ones with equivalent
expression.
(big_block::align()): Shift value of correct type.
(big_block::alloc_size(size_t)): New function to round up size.
(__pool_resource::allocate(size_t, size_t)): Add comment.
(__pool_resource::deallocate(void*, size_t, size_t)): Likewise. Fix
incorrect assertion by using big_block::alloc_size(size_t).
* testsuite/20_util/unsynchronized_pool_resource/allocate.cc: Add
more tests for unpooled allocations.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266088 138bc75d-0d04-0410-961f-82ee72b054a4
libstdc++-v3/ChangeLog
libstdc++-v3/src/c++17/memory_resource.cc
libstdc++-v3/testsuite/20_util/unsynchronized_pool_resource/allocate.cc