1 // Profiling multimap implementation -*- C++ -*-
3 // Copyright (C) 2009-2018 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file profile/multimap.h
26 * This file is a GNU profile extension to the Standard C++ Library.
29 #ifndef _GLIBCXX_PROFILE_MULTIMAP_H
30 #define _GLIBCXX_PROFILE_MULTIMAP_H 1
32 #include <profile/base.h>
33 #include <profile/ordered_base.h>
35 namespace std
_GLIBCXX_VISIBILITY(default)
39 /// Class std::multimap wrapper with performance instrumentation.
40 template<typename _Key
, typename _Tp
, typename _Compare
= std::less
<_Key
>,
41 typename _Allocator
= std::allocator
<std::pair
<const _Key
, _Tp
> > >
43 : public _GLIBCXX_STD_C::multimap
<_Key
, _Tp
, _Compare
, _Allocator
>,
44 public _Ordered_profile
<map
<_Key
, _Tp
, _Compare
, _Allocator
> >
46 typedef _GLIBCXX_STD_C::multimap
<_Key
, _Tp
, _Compare
, _Allocator
> _Base
;
48 typedef typename
_Base::iterator _Base_iterator
;
49 typedef typename
_Base::const_iterator _Base_const_iterator
;
53 typedef _Key key_type
;
54 typedef _Tp mapped_type
;
55 typedef std::pair
<const _Key
, _Tp
> value_type
;
56 typedef _Compare key_compare
;
57 typedef typename
_Base::reference reference
;
58 typedef typename
_Base::const_reference const_reference
;
60 typedef __iterator_tracker
<_Base_iterator
,
62 typedef __iterator_tracker
<_Base_const_iterator
,
63 multimap
> const_iterator
;
64 typedef std::reverse_iterator
<iterator
> reverse_iterator
;
65 typedef std::reverse_iterator
<const_iterator
> const_reverse_iterator
;
67 typedef typename
_Base::size_type size_type
;
68 typedef typename
_Base::difference_type difference_type
;
70 // 23.3.1.1 construct/copy/destroy:
72 #if __cplusplus < 201103L
75 multimap(const multimap
& __x
)
80 multimap(const multimap
&) = default;
81 multimap(multimap
&&) = default;
82 ~multimap() = default;
85 explicit multimap(const _Compare
& __comp
,
86 const _Allocator
& __a
= _Allocator())
87 : _Base(__comp
, __a
) { }
89 #if __cplusplus >= 201103L
90 template<typename _InputIterator
,
91 typename
= std::_RequireInputIter
<_InputIterator
>>
93 template<typename _InputIterator
>
95 multimap(_InputIterator __first
, _InputIterator __last
,
96 const _Compare
& __comp
= _Compare(),
97 const _Allocator
& __a
= _Allocator())
98 : _Base(__first
, __last
, __comp
, __a
) { }
100 #if __cplusplus >= 201103L
101 multimap(initializer_list
<value_type
> __l
,
102 const _Compare
& __c
= _Compare(),
103 const _Allocator
& __a
= _Allocator())
104 : _Base(__l
, __c
, __a
) { }
107 multimap(const _Allocator
& __a
)
110 multimap(const multimap
& __x
, const _Allocator
& __a
)
111 : _Base(__x
, __a
) { }
113 multimap(multimap
&& __x
, const _Allocator
& __a
)
114 noexcept( noexcept(_Base(std::move(__x
), __a
)) )
115 : _Base(std::move(__x
), __a
) { }
117 multimap(initializer_list
<value_type
> __l
, const _Allocator
& __a
)
118 : _Base(__l
, __a
) { }
120 template<typename _InputIterator
>
121 multimap(_InputIterator __first
, _InputIterator __last
,
122 const _Allocator
& __a
)
123 : _Base(__first
, __last
, __a
) { }
126 multimap(const _Base
& __x
)
129 #if __cplusplus < 201103L
131 operator=(const multimap
& __x
)
133 this->_M_profile_destruct();
135 this->_M_profile_construct();
140 operator=(const multimap
&) = default;
143 operator=(multimap
&&) = default;
146 operator=(initializer_list
<value_type
> __l
)
148 this->_M_profile_destruct();
150 this->_M_profile_construct();
157 begin() _GLIBCXX_NOEXCEPT
158 { return iterator(_Base::begin(), this); }
161 begin() const _GLIBCXX_NOEXCEPT
162 { return const_iterator(_Base::begin(), this); }
165 end() _GLIBCXX_NOEXCEPT
166 { return iterator(_Base::end(), this); }
169 end() const _GLIBCXX_NOEXCEPT
170 { return const_iterator(_Base::end(), this); }
172 #if __cplusplus >= 201103L
174 cbegin() const noexcept
175 { return const_iterator(_Base::cbegin(), this); }
178 cend() const noexcept
179 { return const_iterator(_Base::cend(), this); }
183 rbegin() _GLIBCXX_NOEXCEPT
185 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
186 return reverse_iterator(end());
189 const_reverse_iterator
190 rbegin() const _GLIBCXX_NOEXCEPT
192 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
193 return const_reverse_iterator(end());
197 rend() _GLIBCXX_NOEXCEPT
199 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
200 return reverse_iterator(begin());
203 const_reverse_iterator
204 rend() const _GLIBCXX_NOEXCEPT
206 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
207 return const_reverse_iterator(begin());
210 #if __cplusplus >= 201103L
211 const_reverse_iterator
212 crbegin() const noexcept
214 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
215 return const_reverse_iterator(cend());
218 const_reverse_iterator
219 crend() const noexcept
221 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
222 return const_reverse_iterator(cbegin());
227 #if __cplusplus >= 201103L
228 template<typename
... _Args
>
230 emplace(_Args
&&... __args
)
232 __profcxx_map2umap_insert(this->_M_map2umap_info
, this->size(), 1);
233 return iterator(_Base::emplace(std::forward
<_Args
>(__args
)...), this);
236 template<typename
... _Args
>
238 emplace_hint(const_iterator __pos
, _Args
&&... __args
)
240 auto size_before
= this->size();
242 = _Base::emplace_hint(__pos
.base(), std::forward
<_Args
>(__args
)...);
243 __profcxx_map2umap_insert(this->_M_map2umap_info
,
244 size_before
, _M_hint_used(__pos
.base(), __res
) ? 0 : 1);
245 return iterator(__res
, this);
250 insert(const value_type
& __x
)
252 __profcxx_map2umap_insert(this->_M_map2umap_info
, this->size(), 1);
253 return iterator(_Base::insert(__x
), this);
256 #if __cplusplus >= 201103L
257 template<typename _Pair
, typename
= typename
258 std::enable_if
<std::is_constructible
<value_type
,
259 _Pair
&&>::value
>::type
>
263 __profcxx_map2umap_insert(this->_M_map2umap_info
, this->size(), 1);
264 return iterator(_Base::insert(std::forward
<_Pair
>(__x
)), this);
268 #if __cplusplus >= 201103L
270 insert(std::initializer_list
<value_type
> __list
)
271 { insert(__list
.begin(), __list
.end()); }
275 #if __cplusplus >= 201103L
276 insert(const_iterator __pos
, const value_type
& __x
)
278 insert(iterator __pos
, const value_type
& __x
)
281 size_type size_before
= this->size();
282 _Base_iterator __res
= _Base::insert(__pos
.base(), __x
);
283 __profcxx_map2umap_insert(this->_M_map2umap_info
,
284 size_before
, _M_hint_used(__pos
.base(), __res
) ? 0 : 1);
285 return iterator(__res
, this);
288 #if __cplusplus >= 201103L
289 template<typename _Pair
, typename
= typename
290 std::enable_if
<std::is_constructible
<value_type
,
291 _Pair
&&>::value
>::type
>
293 insert(const_iterator __pos
, _Pair
&& __x
)
295 size_type size_before
= this->size();
296 auto __res
= _Base::insert(__pos
.base(), std::forward
<_Pair
>(__x
));
297 __profcxx_map2umap_insert(this->_M_map2umap_info
,
298 size_before
, _M_hint_used(__pos
.base(), __res
) ? 0 : 1);
299 return iterator(__res
, this);
303 template<typename _InputIterator
>
305 insert(_InputIterator __first
, _InputIterator __last
)
307 for (; __first
!= __last
; ++__first
)
311 #if __cplusplus >= 201103L
313 erase(const_iterator __pos
)
315 __profcxx_map2umap_erase(this->_M_map2umap_info
, this->size(), 1);
316 return iterator(_Base::erase(__pos
.base()), this);
320 erase(iterator __pos
)
322 __profcxx_map2umap_erase(this->_M_map2umap_info
, this->size(), 1);
323 return iterator(_Base::erase(__pos
.base()), this);
327 erase(iterator __pos
)
329 __profcxx_map2umap_erase(this->_M_map2umap_info
, this->size(), 1);
330 _Base::erase(__pos
.base());
335 erase(const key_type
& __x
)
337 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
338 __profcxx_map2umap_erase(this->_M_map2umap_info
, this->size(), 1);
339 return _Base::erase(__x
);
342 #if __cplusplus >= 201103L
344 erase(const_iterator __first
, const_iterator __last
)
346 if (__first
!= __last
)
349 for (; __first
!= __last
;)
350 __ret
= erase(__first
++);
354 return iterator(_Base::erase(__first
.base(), __last
.base()), this);
358 erase(iterator __first
, iterator __last
)
360 for (; __first
!= __last
;)
367 _GLIBCXX_NOEXCEPT_IF( noexcept(declval
<_Base
&>().swap(__x
)) )
369 std::swap(this->_M_map2umap_info
, __x
._M_map2umap_info
);
374 clear() _GLIBCXX_NOEXCEPT
376 this->_M_profile_destruct();
378 this->_M_profile_construct();
381 // 23.3.1.3 multimap operations:
383 find(const key_type
& __x
)
385 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
386 return iterator(_Base::find(__x
), this);
389 #if __cplusplus > 201103L
390 template<typename _Kt
,
392 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
396 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
397 return { _Base::find(__x
), this };
402 find(const key_type
& __x
) const
404 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
405 return const_iterator(_Base::find(__x
), this);
408 #if __cplusplus > 201103L
409 template<typename _Kt
,
411 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
413 find(const _Kt
& __x
) const
415 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
416 return { _Base::find(__x
), this };
421 count(const key_type
& __x
) const
423 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
424 return _Base::count(__x
);
427 #if __cplusplus > 201103L
428 template<typename _Kt
,
430 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
432 count(const _Kt
& __x
) const
434 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
435 return _Base::count(__x
);
440 lower_bound(const key_type
& __x
)
442 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
443 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
444 return iterator(_Base::lower_bound(__x
), this);
447 #if __cplusplus > 201103L
448 template<typename _Kt
,
450 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
452 lower_bound(const _Kt
& __x
)
454 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
455 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
456 return { _Base::lower_bound(__x
), this };
461 lower_bound(const key_type
& __x
) const
463 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
464 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
465 return const_iterator(_Base::lower_bound(__x
), this);
468 #if __cplusplus > 201103L
469 template<typename _Kt
,
471 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
473 lower_bound(const _Kt
& __x
) const
475 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
476 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
477 return { _Base::lower_bound(__x
), this };
482 upper_bound(const key_type
& __x
)
484 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
485 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
486 return iterator(_Base::upper_bound(__x
), this);
489 #if __cplusplus > 201103L
490 template<typename _Kt
,
492 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
494 upper_bound(const _Kt
& __x
)
496 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
497 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
498 return { _Base::upper_bound(__x
), this };
503 upper_bound(const key_type
& __x
) const
505 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
506 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
507 return const_iterator(_Base::upper_bound(__x
), this);
510 #if __cplusplus > 201103L
511 template<typename _Kt
,
513 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
515 upper_bound(const _Kt
& __x
) const
517 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
518 __profcxx_map2umap_invalidate(this->_M_map2umap_info
);
519 return { _Base::upper_bound(__x
), this };
523 std::pair
<iterator
,iterator
>
524 equal_range(const key_type
& __x
)
526 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
527 std::pair
<_Base_iterator
, _Base_iterator
> __base_ret
528 = _Base::equal_range(__x
);
529 return std::make_pair(iterator(__base_ret
.first
, this),
530 iterator(__base_ret
.second
, this));
533 #if __cplusplus > 201103L
534 template<typename _Kt
,
536 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
537 std::pair
<iterator
, iterator
>
538 equal_range(const _Kt
& __x
)
540 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
541 auto __res
= _Base::equal_range(__x
);
542 return { { __res
.first
, this }, { __res
.second
, this } };
546 std::pair
<const_iterator
,const_iterator
>
547 equal_range(const key_type
& __x
) const
549 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
550 std::pair
<_Base_const_iterator
, _Base_const_iterator
> __base_ret
551 = _Base::equal_range(__x
);
552 return std::make_pair(const_iterator(__base_ret
.first
, this),
553 const_iterator(__base_ret
.second
, this));
556 #if __cplusplus > 201103L
557 template<typename _Kt
,
559 typename __has_is_transparent
<_Compare
, _Kt
>::type
>
560 std::pair
<const_iterator
, const_iterator
>
561 equal_range(const _Kt
& __x
) const
563 __profcxx_map2umap_find(this->_M_map2umap_info
, this->size());
564 auto __res
= _Base::equal_range(__x
);
565 return { { __res
.first
, this }, { __res
.second
, this } };
570 _M_base() _GLIBCXX_NOEXCEPT
{ return *this; }
573 _M_base() const _GLIBCXX_NOEXCEPT
{ return *this; }
576 /** If hint is used we consider that the map and unordered_map
577 * operations have equivalent insertion cost so we do not update metrics
579 * Note that to find out if hint has been used is libstdc++
580 * implementation dependent.
583 _M_hint_used(_Base_const_iterator __hint
, _Base_iterator __res
)
585 return (__hint
== __res
586 || (__hint
== _M_base().end() && ++__res
== _M_base().end())
587 || (__hint
!= _M_base().end() && (++__hint
== __res
588 || ++__res
== --__hint
)));
591 template<typename _K1
, typename _T1
, typename _C1
, typename _A1
>
593 operator==(const multimap
<_K1
, _T1
, _C1
, _A1
>&,
594 const multimap
<_K1
, _T1
, _C1
, _A1
>&);
596 template<typename _K1
, typename _T1
, typename _C1
, typename _A1
>
598 operator<(const multimap
<_K1
, _T1
, _C1
, _A1
>&,
599 const multimap
<_K1
, _T1
, _C1
, _A1
>&);
602 template<typename _Key
, typename _Tp
,
603 typename _Compare
, typename _Allocator
>
605 operator==(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
606 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
608 __profcxx_map2umap_invalidate(__lhs
._M_map2umap_info
);
609 __profcxx_map2umap_invalidate(__rhs
._M_map2umap_info
);
610 return __lhs
._M_base() == __rhs
._M_base();
613 template<typename _Key
, typename _Tp
,
614 typename _Compare
, typename _Allocator
>
616 operator<(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
617 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
619 __profcxx_map2umap_invalidate(__lhs
._M_map2umap_info
);
620 __profcxx_map2umap_invalidate(__rhs
._M_map2umap_info
);
621 return __lhs
._M_base() < __rhs
._M_base();
624 template<typename _Key
, typename _Tp
,
625 typename _Compare
, typename _Allocator
>
627 operator!=(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
628 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
629 { return !(__lhs
== __rhs
); }
631 template<typename _Key
, typename _Tp
,
632 typename _Compare
, typename _Allocator
>
634 operator<=(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
635 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
636 { return !(__rhs
< __lhs
); }
638 template<typename _Key
, typename _Tp
,
639 typename _Compare
, typename _Allocator
>
641 operator>=(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
642 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
643 { return !(__lhs
< __rhs
); }
645 template<typename _Key
, typename _Tp
,
646 typename _Compare
, typename _Allocator
>
648 operator>(const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
649 const multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
650 { return __rhs
< __lhs
; }
652 template<typename _Key
, typename _Tp
,
653 typename _Compare
, typename _Allocator
>
655 swap(multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __lhs
,
656 multimap
<_Key
, _Tp
, _Compare
, _Allocator
>& __rhs
)
657 _GLIBCXX_NOEXCEPT_IF(noexcept(__lhs
.swap(__rhs
)))
658 { __lhs
.swap(__rhs
); }
660 } // namespace __profile