mirror of
https://github.com/boostorg/function.git
synced 2026-01-29 07:32:15 +00:00
Compare commits
60 Commits
boost-1.55
...
sandbox-br
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
029639b6ac | ||
|
|
775213a9e6 | ||
|
|
cbb9e7c4da | ||
|
|
7ee94c6975 | ||
|
|
8cde82a568 | ||
|
|
9ea95b071b | ||
|
|
09fc8792fa | ||
|
|
c0d4005441 | ||
|
|
6902f6f943 | ||
|
|
c4f1ce7cb1 | ||
|
|
820ad024fe | ||
|
|
2e19728cdb | ||
|
|
de3b8e7451 | ||
|
|
22c6592a40 | ||
|
|
a1f62de420 | ||
|
|
81c7876588 | ||
|
|
2020d39e2c | ||
|
|
8b63c146ea | ||
|
|
ae534d7342 | ||
|
|
e8247198fa | ||
|
|
ff3244d562 | ||
|
|
68128bfffa | ||
|
|
e10f4eaef9 | ||
|
|
a74e72cce9 | ||
|
|
6f8ec5c8c5 | ||
|
|
678fb133f0 | ||
|
|
821e6d34dd | ||
|
|
529dc74954 | ||
|
|
e8504c1777 | ||
|
|
07800455a8 | ||
|
|
f559986ae8 | ||
|
|
8ca7384121 | ||
|
|
75890fea53 | ||
|
|
da259e8dce | ||
|
|
2fe4cc253f | ||
|
|
f379ef8532 | ||
|
|
ea18f5777b | ||
|
|
d5a86a2d52 | ||
|
|
e3dfa7268a | ||
|
|
bacb5d6752 | ||
|
|
04040ae566 | ||
|
|
fe2d04e954 | ||
|
|
0936dbdd03 | ||
|
|
adb7b0a214 | ||
|
|
cead36cd5b | ||
|
|
81e558491b | ||
|
|
2378ba59e7 | ||
|
|
53b95c386d | ||
|
|
3312c7ffcd | ||
|
|
de27ae9697 | ||
|
|
a7b9940f15 | ||
|
|
e4f165a4e8 | ||
|
|
80a3f47099 | ||
|
|
2a85edbd31 | ||
|
|
5c514ebe35 | ||
|
|
6a3f0df553 | ||
|
|
64c8d10fa8 | ||
|
|
a2a810d2c1 | ||
|
|
d84481361f | ||
|
|
872f12efee |
@@ -13,15 +13,6 @@
|
|||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
|
|
||||||
<listitem><para><bold>Version 1.52.0</bold>: </para>
|
|
||||||
<itemizedlist spacing="compact">
|
|
||||||
<listitem><para>Move constructors and move assignment
|
|
||||||
operators added (only for compilers with C++11 rvalue
|
|
||||||
references support). Original patch
|
|
||||||
contributed by Antony Polukhin.</para></listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem><para><bold>Version 1.37.0</bold>: </para>
|
<listitem><para><bold>Version 1.37.0</bold>: </para>
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem><para>Improved the performance of Boost.Function's
|
<listitem><para>Improved the performance of Boost.Function's
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
<para>A function object <code>f</code> of
|
<para>A function object <code>f</code> of
|
||||||
type <code>F</code> is
|
type <code>F</code> is
|
||||||
<emphasis>stateless</emphasis> if it is a function pointer or if
|
<emphasis>stateless</emphasis> if it is a function pointer or if
|
||||||
<code><classname>boost::is_stateless</classname><F></code>
|
<code><classname>boost::is_stateless</classname><T></code>
|
||||||
is true. The construction of or copy to a Boost.Function object
|
is true. The construction of or copy to a Boost.Function object
|
||||||
from a stateless function object will not cause exceptions to be
|
from a stateless function object will not cause exceptions to be
|
||||||
thrown and will not allocate any storage.
|
thrown and will not allocate any storage.
|
||||||
@@ -203,15 +203,6 @@
|
|||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>functionN</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</constructor>
|
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<template>
|
<template>
|
||||||
<template-type-parameter name="F"/>
|
<template-type-parameter name="F"/>
|
||||||
@@ -245,15 +236,6 @@
|
|||||||
</parameter>
|
</parameter>
|
||||||
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
<copy-assignment>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>functionN</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</copy-assignment>
|
|
||||||
|
|
||||||
<method-group name="modifiers">
|
<method-group name="modifiers">
|
||||||
<method name="swap">
|
<method name="swap">
|
||||||
@@ -625,16 +607,7 @@
|
|||||||
<postconditions><simpara>Contains a copy of the <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>.</simpara></postconditions>
|
<postconditions><simpara>Contains a copy of the <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>.</simpara></postconditions>
|
||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>functionN</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</constructor>
|
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
<paramtype>const <classname>function</classname>&</paramtype>
|
<paramtype>const <classname>function</classname>&</paramtype>
|
||||||
@@ -643,15 +616,6 @@
|
|||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>function</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</constructor>
|
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<template>
|
<template>
|
||||||
<template-type-parameter name="F"/>
|
<template-type-parameter name="F"/>
|
||||||
@@ -681,19 +645,10 @@
|
|||||||
|
|
||||||
<copy-assignment>
|
<copy-assignment>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
<paramtype>const <classname>functionN</classname>&</paramtype>
|
<paramtype>const <classname>function</classname>&</paramtype>
|
||||||
</parameter>
|
</parameter>
|
||||||
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
<copy-assignment>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>functionN</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</copy-assignment>
|
|
||||||
|
|
||||||
<copy-assignment>
|
<copy-assignment>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
@@ -702,15 +657,6 @@
|
|||||||
<postconditions><simpara>If copy construction of the target of <code>f</code> does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. </simpara></postconditions>
|
<postconditions><simpara>If copy construction of the target of <code>f</code> does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. </simpara></postconditions>
|
||||||
<throws><simpara>Will not throw when the target of <code>f</code> is a stateless function object or a reference to the function object. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></throws>
|
<throws><simpara>Will not throw when the target of <code>f</code> is a stateless function object or a reference to the function object. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></throws>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
<copy-assignment>
|
|
||||||
<parameter name="f">
|
|
||||||
<paramtype><classname>function</classname>&&</paramtype>
|
|
||||||
</parameter>
|
|
||||||
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
|
||||||
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
|
||||||
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
|
||||||
</copy-assignment>
|
|
||||||
|
|
||||||
<method-group name="modifiers">
|
<method-group name="modifiers">
|
||||||
<method name="swap">
|
<method name="swap">
|
||||||
|
|||||||
@@ -677,7 +677,7 @@ namespace boost {
|
|||||||
|
|
||||||
vtable_type* get_vtable() const {
|
vtable_type* get_vtable() const {
|
||||||
return reinterpret_cast<vtable_type*>(
|
return reinterpret_cast<vtable_type*>(
|
||||||
reinterpret_cast<std::size_t>(vtable) & ~static_cast<std::size_t>(0x01));
|
reinterpret_cast<std::size_t>(vtable) & ~static_cast<size_t>(0x01));
|
||||||
}
|
}
|
||||||
|
|
||||||
struct clear_type {};
|
struct clear_type {};
|
||||||
@@ -748,14 +748,7 @@ namespace boost {
|
|||||||
{
|
{
|
||||||
this->assign_to_own(f);
|
this->assign_to_own(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
BOOST_FUNCTION_FUNCTION(BOOST_FUNCTION_FUNCTION&& f) : function_base()
|
|
||||||
{
|
|
||||||
this->move_assign(f);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
~BOOST_FUNCTION_FUNCTION() { clear(); }
|
~BOOST_FUNCTION_FUNCTION() { clear(); }
|
||||||
|
|
||||||
result_type operator()(BOOST_FUNCTION_PARMS) const
|
result_type operator()(BOOST_FUNCTION_PARMS) const
|
||||||
@@ -837,26 +830,6 @@ namespace boost {
|
|||||||
BOOST_CATCH_END
|
BOOST_CATCH_END
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
// Move assignment from another BOOST_FUNCTION_FUNCTION
|
|
||||||
BOOST_FUNCTION_FUNCTION& operator=(BOOST_FUNCTION_FUNCTION&& f)
|
|
||||||
{
|
|
||||||
|
|
||||||
if (&f == this)
|
|
||||||
return *this;
|
|
||||||
|
|
||||||
this->clear();
|
|
||||||
BOOST_TRY {
|
|
||||||
this->move_assign(f);
|
|
||||||
} BOOST_CATCH (...) {
|
|
||||||
vtable = 0;
|
|
||||||
BOOST_RETHROW;
|
|
||||||
}
|
|
||||||
BOOST_CATCH_END
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void swap(BOOST_FUNCTION_FUNCTION& other)
|
void swap(BOOST_FUNCTION_FUNCTION& other)
|
||||||
{
|
{
|
||||||
@@ -1090,26 +1063,12 @@ public:
|
|||||||
|
|
||||||
function(const base_type& f) : base_type(static_cast<const base_type&>(f)){}
|
function(const base_type& f) : base_type(static_cast<const base_type&>(f)){}
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
// Move constructors
|
|
||||||
function(self_type&& f): base_type(static_cast<base_type&&>(f)){}
|
|
||||||
function(base_type&& f): base_type(static_cast<base_type&&>(f)){}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
self_type& operator=(const self_type& f)
|
self_type& operator=(const self_type& f)
|
||||||
{
|
{
|
||||||
self_type(f).swap(*this);
|
self_type(f).swap(*this);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
self_type& operator=(self_type&& f)
|
|
||||||
{
|
|
||||||
self_type(static_cast<self_type&&>(f)).swap(*this);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template<typename Functor>
|
template<typename Functor>
|
||||||
#ifndef BOOST_NO_SFINAE
|
#ifndef BOOST_NO_SFINAE
|
||||||
typename enable_if_c<
|
typename enable_if_c<
|
||||||
@@ -1138,14 +1097,6 @@ public:
|
|||||||
self_type(f).swap(*this);
|
self_type(f).swap(*this);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
self_type& operator=(base_type&& f)
|
|
||||||
{
|
|
||||||
self_type(static_cast<base_type&&>(f)).swap(*this);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef BOOST_FUNCTION_PARTIAL_SPEC
|
#undef BOOST_FUNCTION_PARTIAL_SPEC
|
||||||
|
|||||||
@@ -690,95 +690,6 @@ static void test_call()
|
|||||||
test_call_cref(std::plus<int>());
|
test_call_cref(std::plus<int>());
|
||||||
}
|
}
|
||||||
|
|
||||||
struct big_aggregating_structure {
|
|
||||||
int disable_small_objects_optimizations[32];
|
|
||||||
|
|
||||||
big_aggregating_structure()
|
|
||||||
{
|
|
||||||
++ global_int;
|
|
||||||
}
|
|
||||||
|
|
||||||
big_aggregating_structure(const big_aggregating_structure&)
|
|
||||||
{
|
|
||||||
++ global_int;
|
|
||||||
}
|
|
||||||
|
|
||||||
~big_aggregating_structure()
|
|
||||||
{
|
|
||||||
-- global_int;
|
|
||||||
}
|
|
||||||
|
|
||||||
void operator()()
|
|
||||||
{
|
|
||||||
++ global_int;
|
|
||||||
}
|
|
||||||
|
|
||||||
void operator()(int)
|
|
||||||
{
|
|
||||||
++ global_int;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class FunctionT>
|
|
||||||
static void test_move_semantics()
|
|
||||||
{
|
|
||||||
typedef FunctionT f1_type;
|
|
||||||
|
|
||||||
big_aggregating_structure obj;
|
|
||||||
|
|
||||||
f1_type f1 = obj;
|
|
||||||
global_int = 0;
|
|
||||||
f1();
|
|
||||||
|
|
||||||
BOOST_CHECK(!f1.empty());
|
|
||||||
BOOST_CHECK(global_int == 1);
|
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
|
||||||
// Testing rvalue constructors
|
|
||||||
f1_type f2(static_cast<f1_type&&>(f1));
|
|
||||||
BOOST_CHECK(f1.empty());
|
|
||||||
BOOST_CHECK(!f2.empty());
|
|
||||||
BOOST_CHECK(global_int == 1);
|
|
||||||
f2();
|
|
||||||
BOOST_CHECK(global_int == 2);
|
|
||||||
|
|
||||||
f1_type f3(static_cast<f1_type&&>(f2));
|
|
||||||
BOOST_CHECK(f1.empty());
|
|
||||||
BOOST_CHECK(f2.empty());
|
|
||||||
BOOST_CHECK(!f3.empty());
|
|
||||||
BOOST_CHECK(global_int == 2);
|
|
||||||
f3();
|
|
||||||
BOOST_CHECK(global_int == 3);
|
|
||||||
|
|
||||||
// Testing move assignment
|
|
||||||
f1_type f4;
|
|
||||||
BOOST_CHECK(f4.empty());
|
|
||||||
f4 = static_cast<f1_type&&>(f3);
|
|
||||||
BOOST_CHECK(f1.empty());
|
|
||||||
BOOST_CHECK(f2.empty());
|
|
||||||
BOOST_CHECK(f3.empty());
|
|
||||||
BOOST_CHECK(!f4.empty());
|
|
||||||
BOOST_CHECK(global_int == 3);
|
|
||||||
f4();
|
|
||||||
BOOST_CHECK(global_int == 4);
|
|
||||||
|
|
||||||
// Testing self move assignment
|
|
||||||
f4 = static_cast<f1_type&&>(f4);
|
|
||||||
BOOST_CHECK(!f4.empty());
|
|
||||||
BOOST_CHECK(global_int == 4);
|
|
||||||
|
|
||||||
// Testing, that no memory leaked when assigning to nonempty function
|
|
||||||
f4 = obj;
|
|
||||||
BOOST_CHECK(!f4.empty());
|
|
||||||
BOOST_CHECK(global_int == 4);
|
|
||||||
f1_type f5 = obj;
|
|
||||||
BOOST_CHECK(global_int == 5);
|
|
||||||
f4 = static_cast<f1_type&&>(f5);
|
|
||||||
BOOST_CHECK(global_int == 4);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
int test_main(int, char* [])
|
int test_main(int, char* [])
|
||||||
{
|
{
|
||||||
test_zero_args();
|
test_zero_args();
|
||||||
@@ -791,8 +702,6 @@ int test_main(int, char* [])
|
|||||||
test_exception();
|
test_exception();
|
||||||
test_implicit();
|
test_implicit();
|
||||||
test_call();
|
test_call();
|
||||||
test_move_semantics<function<void()> >();
|
|
||||||
test_move_semantics<boost::function0<void> >();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user