Skip to content

Commit d95605c

Browse files
committed
[libc++] Introduce a standalone __scope_guard and use it in <string>
1 parent 6b21cf8 commit d95605c

File tree

5 files changed

+61
-12
lines changed

5 files changed

+61
-12
lines changed

libcxx/include/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,7 @@ set(files
881881
__utility/priority_tag.h
882882
__utility/private_constructor_tag.h
883883
__utility/rel_ops.h
884+
__utility/scope_guard.h
884885
__utility/small_buffer.h
885886
__utility/swap.h
886887
__utility/to_underlying.h

libcxx/include/__flat_map/flat_map.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
#include <__type_traits/maybe_const.h>
6161
#include <__utility/exception_guard.h>
6262
#include <__utility/pair.h>
63+
#include <__utility/scope_guard.h>
6364
#include <__vector/vector.h>
6465
#include <initializer_list>
6566
#include <stdexcept>

libcxx/include/__utility/exception_guard.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,6 @@ _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __exception_guard<_Rollback> __make_exce
137137
return __exception_guard<_Rollback>(std::move(__rollback));
138138
}
139139

140-
template <class _Rollback>
141-
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __exception_guard_exceptions<_Rollback>
142-
__make_scope_guard(_Rollback __rollback) {
143-
return __exception_guard_exceptions<_Rollback>(std::move(__rollback));
144-
}
145-
146140
_LIBCPP_END_NAMESPACE_STD
147141

148142
_LIBCPP_POP_MACROS
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// -*- C++ -*-
2+
//===----------------------------------------------------------------------===//
3+
//
4+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5+
// See https://llvm.org/LICENSE.txt for license information.
6+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7+
//
8+
//===----------------------------------------------------------------------===//
9+
10+
#ifndef _LIBCPP___UTILITY_SCOPE_GUARD_H
11+
#define _LIBCPP___UTILITY_SCOPE_GUARD_H
12+
13+
#include <__config>
14+
#include <__utility/move.h>
15+
16+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
17+
# pragma GCC system_header
18+
#endif
19+
20+
_LIBCPP_PUSH_MACROS
21+
#include <__undef_macros>
22+
23+
_LIBCPP_BEGIN_NAMESPACE_STD
24+
25+
template <class _Func>
26+
class __scope_guard {
27+
_Func __func_;
28+
29+
public:
30+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __scope_guard(_Func __func) : __func_(std::move(__func)) {}
31+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__scope_guard() { __func_(); }
32+
33+
__scope_guard(const __scope_guard&) = delete;
34+
__scope_guard& operator=(const __scope_guard&) = delete;
35+
};
36+
37+
template <class _Func>
38+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __scope_guard<_Func> __make_scope_guard(_Func __func) {
39+
return __scope_guard<_Func>(std::move(__func));
40+
}
41+
42+
_LIBCPP_END_NAMESPACE_STD
43+
44+
_LIBCPP_POP_MACROS
45+
46+
#endif // _LIBCPP___UTILITY_SCOPE_GUARD_H

libcxx/include/string

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ basic_string<char32_t> operator""s( const char32_t *str, size_t len );
638638
#include <__utility/forward.h>
639639
#include <__utility/is_pointer_in_range.h>
640640
#include <__utility/move.h>
641+
#include <__utility/scope_guard.h>
641642
#include <__utility/swap.h>
642643
#include <__utility/unreachable.h>
643644
#include <climits>
@@ -929,6 +930,13 @@ private:
929930

930931
_LIBCPP_COMPRESSED_PAIR(__rep, __rep_, allocator_type, __alloc_);
931932

933+
// annotate the string with its size() at scope exit. The string has to be in a valid state at that point.
934+
struct __annotate_new_size {
935+
basic_string& __str_;
936+
937+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void operator()() { __str_.__annotate_new(__str_.size()); }
938+
};
939+
932940
// Construct a string with the given allocator and enough storage to hold `__size` characters, but
933941
// don't initialize the characters. The contents of the string, including the null terminator, must be
934942
// initialized separately.
@@ -2171,6 +2179,7 @@ private:
21712179
__alloc_ = __str.__alloc_;
21722180
} else {
21732181
__annotate_delete();
2182+
auto __guard = std::__make_scope_guard(__annotate_new_size(*this));
21742183
allocator_type __a = __str.__alloc_;
21752184
auto __allocation = std::__allocate_at_least(__a, __str.__get_long_cap());
21762185
__begin_lifetime(__allocation.ptr, __allocation.count);
@@ -2180,7 +2189,6 @@ private:
21802189
__set_long_pointer(__allocation.ptr);
21812190
__set_long_cap(__allocation.count);
21822191
__set_long_size(__str.size());
2183-
__annotate_new(__get_long_size());
21842192
}
21852193
}
21862194
}
@@ -2508,6 +2516,7 @@ _LIBCPP_CONSTEXPR_SINCE_CXX20 void basic_string<_CharT, _Traits, _Allocator>::__
25082516
size_type __cap =
25092517
__old_cap < __ms / 2 - __alignment ? __recommend(std::max(__old_cap + __delta_cap, 2 * __old_cap)) : __ms - 1;
25102518
__annotate_delete();
2519+
auto __guard = std::__make_scope_guard(__annotate_new_size(*this));
25112520
auto __allocation = std::__allocate_at_least(__alloc_, __cap + 1);
25122521
pointer __p = __allocation.ptr;
25132522
__begin_lifetime(__p, __allocation.count);
@@ -2526,7 +2535,6 @@ _LIBCPP_CONSTEXPR_SINCE_CXX20 void basic_string<_CharT, _Traits, _Allocator>::__
25262535
__old_sz = __n_copy + __n_add + __sec_cp_sz;
25272536
__set_long_size(__old_sz);
25282537
traits_type::assign(__p[__old_sz], value_type());
2529-
__annotate_new(__old_sz);
25302538
}
25312539

25322540
// __grow_by is deprecated because it does not set the size. It may not update the size when the size is changed, and it
@@ -2550,7 +2558,6 @@ _LIBCPP_DEPRECATED_("use __grow_by_without_replace") basic_string<_CharT, _Trait
25502558
pointer __old_p = __get_pointer();
25512559
size_type __cap =
25522560
__old_cap < __ms / 2 - __alignment ? __recommend(std::max(__old_cap + __delta_cap, 2 * __old_cap)) : __ms - 1;
2553-
__annotate_delete();
25542561
auto __allocation = std::__allocate_at_least(__alloc_, __cap + 1);
25552562
pointer __p = __allocation.ptr;
25562563
__begin_lifetime(__p, __allocation.count);
@@ -2575,11 +2582,12 @@ basic_string<_CharT, _Traits, _Allocator>::__grow_by_without_replace(
25752582
size_type __n_copy,
25762583
size_type __n_del,
25772584
size_type __n_add) {
2585+
__annotate_delete();
2586+
auto __guard = std::__make_scope_guard(__annotate_new_size(*this));
25782587
_LIBCPP_SUPPRESS_DEPRECATED_PUSH
25792588
__grow_by(__old_cap, __delta_cap, __old_sz, __n_copy, __n_del, __n_add);
25802589
_LIBCPP_SUPPRESS_DEPRECATED_POP
25812590
__set_long_size(__old_sz - __n_del + __n_add);
2582-
__annotate_new(__old_sz - __n_del + __n_add);
25832591
}
25842592

25852593
// assign
@@ -3364,6 +3372,7 @@ template <class _CharT, class _Traits, class _Allocator>
33643372
inline _LIBCPP_CONSTEXPR_SINCE_CXX20 void
33653373
basic_string<_CharT, _Traits, _Allocator>::__shrink_or_extend(size_type __target_capacity) {
33663374
__annotate_delete();
3375+
auto __guard = std::__make_scope_guard(__annotate_new_size(*this));
33673376
size_type __cap = capacity();
33683377
size_type __sz = size();
33693378

@@ -3395,7 +3404,6 @@ basic_string<_CharT, _Traits, _Allocator>::__shrink_or_extend(size_type __target
33953404
// due to swapping the elements.
33963405
if (__allocation.count - 1 > __target_capacity) {
33973406
__alloc_traits::deallocate(__alloc_, __allocation.ptr, __allocation.count);
3398-
__annotate_new(__sz); // Undoes the __annotate_delete()
33993407
return;
34003408
}
34013409
__new_data = __allocation.ptr;
@@ -3420,7 +3428,6 @@ basic_string<_CharT, _Traits, _Allocator>::__shrink_or_extend(size_type __target
34203428
__set_long_pointer(__new_data);
34213429
} else
34223430
__set_short_size(__sz);
3423-
__annotate_new(__sz);
34243431
}
34253432

34263433
template <class _CharT, class _Traits, class _Allocator>

0 commit comments

Comments
 (0)