]> gcc.gnu.org Git - gcc.git/commit
libstdc++: Remove unnecessary tag dispatching in std::vector
authorJonathan Wakely <jwakely@redhat.com>
Tue, 29 Nov 2022 15:19:33 +0000 (15:19 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 29 Nov 2022 16:01:08 +0000 (16:01 +0000)
commit81cf0354d5f81f2c7600a3bc7ae4600757286995
treefa96fc6258e2224bec647c6c0b6a6ddff53fc89b
parent0ded30b361d2b1e43048b640e9ad6fef161fe9a9
libstdc++: Remove unnecessary tag dispatching in std::vector

There's no need to call a _M_xxx_dispatch function with a
statically-known __false_type tag, we can just directly call the
function that should be dispatched to. This will compile a tiny bit
faster and save a function call with optimization or inlining turned
off.

Also add the always_inline attribute to the __iterator_category helper
used for dispatching on the iterator category.

libstdc++-v3/ChangeLog:

* include/bits/stl_iterator_base_types.h (__iterator_category):
Add always_inline attribute.
* include/bits/stl_vector.h (assign(Iter, Iter)): Call
_M_assign_aux directly, instead of _M_assign_dispatch.
(insert(const_iterator, Iter, Iter)): Call _M_range_insert
directly instead of _M_insert_dispatch.
libstdc++-v3/include/bits/stl_iterator_base_types.h
libstdc++-v3/include/bits/stl_vector.h
This page took 0.059365 seconds and 5 git commands to generate.