|
void | resize (size_type count) |
| Resizes container, filling any new items with default constructed value_type
|
|
void | resize (size_type count, const value_type &v) |
| Resizes container.
|
|
void | assign (size_type count, const value_type &v) |
| Assigns.
|
|
void | assign (InputIt first, InputIt last) |
| Assigns.
|
|
void | assign (std::initializer_list< value_type > il) |
| Assigns.
|
|
reference | at (size_type i) |
| Item index, bounds checked.
|
|
const_reference | at (size_type i) const |
| Item index, bounds checked.
|
|
reference | operator[] (size_type i) |
| Item index, unchecked.
|
|
const_reference | operator[] (size_type i) const |
| Item index, unchecked.
|
|
reference | front () |
| First element.
|
|
const_reference | front () const |
| First element.
|
|
reference | back () |
| Last element.
|
|
const_reference | back () const |
| Last element.
|
|
pointer | data () noexcept |
| Underlying array.
|
|
const_pointer | data () const noexcept |
| Underlying array.
|
|
iterator | begin () noexcept |
| Iterator to first item.
|
|
const_iterator | begin () const noexcept |
| Iterator to first item.
|
|
const_iterator | cbegin () const noexcept |
| Iterator to first item.
|
|
iterator | end () noexcept |
| Iterator to after last item.
|
|
const_iterator | end () const noexcept |
| Iterator to after last item.
|
|
const_iterator | cend () const noexcept |
| Iterator to after last item.
|
|
reverse_iterator | rbegin () noexcept |
| Iterator to last item.
|
|
const_reverse_iterator | rbegin () const noexcept |
| Iterator to last item.
|
|
const_reverse_iterator | crbegin () const noexcept |
| Iterator to last item.
|
|
reverse_iterator | rend () noexcept |
| Iterator to before first item.
|
|
const_reverse_iterator | rend () const noexcept |
| Iterator to before first item.
|
|
const_reverse_iterator | crend () const noexcept |
| Iterator to before first item.
|
|
bool | empty () const noexcept |
| If empty.
|
|
size_type | size () const noexcept |
| Items in container.
|
|
size_type | max_size () const noexcept |
| Maximum items in container.
|
|
void | reserve (size_type n) |
| Increase capacity.
|
|
size_type | capacity () const noexcept |
| Items can be stored until storage expanded.
|
|
void | shrink_to_fit () |
| Removes unused capacity.
|
|
void | clear () noexcept |
| Clears container.
|
|
iterator | insert (const_iterator pos, const value_type &v) |
| Inserts item.
|
|
iterator | insert (const_iterator pos, value_type &&v) |
| Inserts item.
|
|
iterator | insert (const_iterator pos, size_type count, const value_type &v) |
| Inserts items.
|
|
iterator | insert (const_iterator pos, InputIt first, InputIt last) |
| Inserts items.
|
|
iterator | insert (const_iterator pos, std::initializer_list< value_type > il) |
| Inserts items.
|
|
iterator | emplace (const_iterator pos, Args &&... args) |
| Emplace item.
|
|
iterator | erase (const_iterator pos) |
| Erases item.
|
|
iterator | erase (const_iterator first, const_iterator last) |
| Erases items.
|
|
void | push_back (const value_type &v) |
| Appends item.
|
|
void | push_back (value_type &&v) |
| Appends item.
|
|
reference | emplace_back (Args &&... args) |
| Appends item.
|
|
void | pop_back () |
| Removes last element.
|
|
void | swap (trivial_vector_impl &o) noexcept |
| Swaps.
|
|
template<class T>
class llfio_v2_xxx::algorithm::trivial_vector< T >
Provides a constant time capacity expanding move-only STL vector. Requires T
to be trivially copyable.
As a hand waving estimate for whether this vector implementation may be useful to you, it usually roughly breaks even with std::vector
on recent Intel CPUs at around the L2 cache boundary. So if your vector fits into the L2 cache, this implementation will be no better, but no worse. If your vector fits into the L1 cache, this implementation will be worse, often considerably so.
Note that no STL allocator support is provided as T
must be trivially copyable (for which most STL's simply use memcpy()
anyway instead of the allocator's construct
), and an internal section_handle
is used for the storage in order to implement the constant time capacity resizing.
We also disable the copy constructor, as copying an entire backing file is expensive. Use the iterator based copy constructor if you really want to copy one of these.
The very first item stored reserves a capacity of utils::page_size()/sizeof(T)
on POSIX and 65536/sizeof(T)
on Windows. Capacity is doubled in byte terms thereafter (i.e. 8Kb, 16Kb and so on). As mentioned earlier, the capacity of the vector needs to become reasonably large before going to the kernel to resize the section_handle
and remapping memory becomes faster than memcpy
. For these reasons, this vector implementation is best suited to arrays of unknown in advance, but likely large, sizes.
Benchmarking notes for Skylake 3.1Ghz Intel Core i5 with 2133Mhz DDR3 RAM, L2 256Kb, L3 4Mb:
- OS X with clang 5.0 and libc++
- push_back(): 32768,40,59 65536,36,76 131072,78,159 262144,166,198 524288,284,299 1048576,558,572 2097152,1074,1175 4194304,2201,2394 8388608,4520,5503 16777216,9339,9327 33554432,24853,17754 67108864,55876,40973 134217728,122577,86331 268435456,269004,178751 536870912,586466,330716
- resize(): 8192,9,18 16384,14,20 32768,27,32 65536,66,43 131072,107,59 262144,222,131 524288,445,322 1048576,885,500 2097152,1785,1007 4194304,3623,2133 8388608,7334,4082 16777216,17096,8713 33554432,36890,18421 67108864,73593,40702
- Windows 10 with VS2017.5:
- push_back(): 8192,17,70 16384,22,108 32768,36,117 65536,51,152 131072,174,209 262144,336,309 524288,661,471 1048576,1027,787 2097152,2513,1361 4194304,5948,2595 8388608,9919,4820 16777216,23789,9716 33554432,52997,19558 67108864,86468,39240 134217728,193013,76298 268435456,450059,149644 536870912,983442,318078
- resize(): 8192,9,48 16384,17,44 32768,35,48 65536,62,72 131072,134,114 262144,132,168 524288,505,330 1048576,988,582 2097152,1501,1152 4194304,2972,2231 8388608,6122,4436 16777216,12483,8906 33554432,25203,17847 67108864,52005,53646 134217728,102942,86502 268435456,246367,177999 536870912,405524,294685