Daily bump.
[official-gcc.git] / libstdc++-v3 / include / debug / safe_local_iterator.tcc
blob6d546ec040c4ce893355c7414a28d387ab204d27
1 // Debugging iterator implementation (out of line) -*- C++ -*-
3 // Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 //
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)
9 // any later version.
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 debug/safe_local_iterator.tcc
26  *  This file is a GNU debug extension to the Standard C++ Library.
27  */
29 #ifndef _GLIBCXX_DEBUG_SAFE_LOCAL_ITERATOR_TCC
30 #define _GLIBCXX_DEBUG_SAFE_LOCAL_ITERATOR_TCC 1
32 namespace __gnu_debug
34   template<typename _Iterator, typename _Sequence>
35     typename _Distance_traits<_Iterator>::__type
36     _Safe_local_iterator<_Iterator, _Sequence>::
37     _M_get_distance_to(const _Safe_local_iterator& __rhs) const
38     {
39       if (base() == __rhs.base())
40         return { 0, __dp_exact };
42       if (_M_is_begin())
43         {
44           if (__rhs._M_is_end())
45             return
46               {
47                 _M_get_sequence()->bucket_size(bucket()),
48                 __dp_exact
49               };
51           return { 1, __dp_sign };
52         }
54       if (_M_is_end())
55         {
56           if (__rhs._M_is_begin())
57             return
58               {
59                 -_M_get_sequence()->bucket_size(bucket()),
60                 __dp_exact
61               };
63           return { -1, __dp_sign };
64         }
66       if (__rhs._M_is_begin())
67         return { -1, __dp_sign };
69       if (__rhs._M_is_end())
70         return { 1, __dp_sign };
72       return { 1, __dp_equality };
73     }
75   template<typename _Iterator, typename _Sequence>
76     bool
77     _Safe_local_iterator<_Iterator, _Sequence>::
78     _M_valid_range(const _Safe_local_iterator& __rhs,
79                 std::pair<difference_type, _Distance_precision>& __dist) const
80     {
81       if (_M_value_initialized() && __rhs._M_value_initialized())
82         {
83           __dist = { 0, __dp_exact };
84           return true;
85         }
87       if (_M_singular() || __rhs._M_singular() || !_M_can_compare(__rhs))
88         return false;
90       if (bucket() != __rhs.bucket())
91         return false;
93       /* Determine if we can order the iterators without the help of
94          the container */
95       __dist = _M_get_distance_to(__rhs);
96       switch (__dist.second)
97         {
98         case __dp_equality:
99           if (__dist.first == 0)
100             return true;
101           break;
103         case __dp_sign:
104         case __dp_exact:
105           return __dist.first >= 0;
106         }
108       // Assume that this is a valid range; we can't check anything else
109       return true;
110     }
111 } // namespace __gnu_debug
113 #endif