summaryrefslogtreecommitdiff
path: root/boost/coroutine2/detail/push_control_block.ipp
blob: ebef5092b50bd450b1ce6b39b4fb6f02689bb88a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281

//          Copyright Oliver Kowalke 2014.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

#ifndef BOOST_COROUTINES2_DETAIL_PUSH_CONTROL_BLOCK_IPP
#define BOOST_COROUTINES2_DETAIL_PUSH_CONTROL_BLOCK_IPP

#include <algorithm>
#include <exception>

#include <boost/assert.hpp>
#include <boost/config.hpp>

#include <boost/context/execution_context.hpp>

#include <boost/coroutine2/detail/config.hpp>
#include <boost/coroutine2/detail/forced_unwind.hpp>
#include <boost/coroutine2/detail/state.hpp>

#ifdef BOOST_HAS_ABI_HEADERS
#  include BOOST_ABI_PREFIX
#endif

namespace boost {
namespace coroutines2 {
namespace detail {

// push_coroutine< T >

template< typename T >
template< typename StackAllocator, typename Fn >
push_coroutine< T >::control_block::control_block( context::preallocated palloc, StackAllocator salloc,
                                                   Fn && fn_, bool preserve_fpu_) :
    other( nullptr),
    caller( boost::context::execution_context::current() ),
    callee( palloc, salloc,
            [=,fn=std::forward< Fn >( fn_)] () mutable -> decltype( auto) {
               // create synthesized pull_coroutine< T >
               typename pull_coroutine< T >::control_block synthesized_cb( this);
               pull_coroutine< T > synthesized( & synthesized_cb);
               other = & synthesized_cb;
               try {
                   // call coroutine-fn with synthesized pull_coroutine as argument
                   fn( synthesized);
               } catch ( forced_unwind const&) {
                   // do nothing for unwinding exception
               } catch (...) {
                   // store other exceptions in exception-pointer
                   except = std::current_exception();
               }
               // set termination flags
               state |= static_cast< int >( state_t::complete);
               caller( preserve_fpu);
               BOOST_ASSERT_MSG( false, "push_coroutine is complete");
            }),
    preserve_fpu( preserve_fpu_),
    state( static_cast< int >( state_t::unwind) ),
    except(),
    t( nullptr) {
}

template< typename T >
push_coroutine< T >::control_block::control_block( typename pull_coroutine< T >::control_block * cb) :
    other( cb),
    caller( other->callee),
    callee( other->caller),
    preserve_fpu( other->preserve_fpu),
    state( 0),
    except(),
    t( nullptr) {
}

template< typename T >
push_coroutine< T >::control_block::~control_block() {
    if ( 0 == ( state & static_cast< int >( state_t::complete ) ) &&
         0 != ( state & static_cast< int >( state_t::unwind) ) ) {
        // set early-exit flag
        state |= static_cast< int >( state_t::early_exit);
        callee( preserve_fpu);
    }
}

template< typename T >
void
push_coroutine< T >::control_block::resume( T const& t_) {
    // store data on this stack
    // pass an pointer (address of tmp) to other context
    T tmp( t_);
    t = & tmp;
    callee( preserve_fpu);
    t = nullptr;
    if ( except) {
        std::rethrow_exception( except);
    }
    // test early-exit-flag
    if ( 0 != ( ( other->state) & static_cast< int >( state_t::early_exit) ) ) {
        throw forced_unwind();
    }
}

template< typename T >
void
push_coroutine< T >::control_block::resume( T && t_) {
    // store data on this stack
    // pass an pointer (address of tmp) to other context
    T tmp( std::move( t_) );
    t = & tmp;
    callee( preserve_fpu);
    t = nullptr;
    if ( except) {
        std::rethrow_exception( except);
    }
    // test early-exit-flag
    if ( 0 != ( ( other->state) & static_cast< int >( state_t::early_exit) ) ) {
        throw forced_unwind();
    }
}

template< typename T >
bool
push_coroutine< T >::control_block::valid() const noexcept {
    return 0 == ( state & static_cast< int >( state_t::complete) );
}


// push_coroutine< T & >

template< typename T >
template< typename StackAllocator, typename Fn >
push_coroutine< T & >::control_block::control_block( context::preallocated palloc, StackAllocator salloc,
                                                     Fn && fn_, bool preserve_fpu_) :
    other( nullptr),
    caller( boost::context::execution_context::current() ),
    callee( palloc, salloc,
            [=,fn=std::forward< Fn >( fn_)] () mutable -> decltype( auto) {
               // create synthesized pull_coroutine< T >
               typename pull_coroutine< T & >::control_block synthesized_cb( this);
               pull_coroutine< T & > synthesized( & synthesized_cb);
               other = & synthesized_cb;
               try {
                   // call coroutine-fn with synthesized pull_coroutine as argument
                   fn( synthesized);
               } catch ( forced_unwind const&) {
                   // do nothing for unwinding exception
               } catch (...) {
                   // store other exceptions in exception-pointer
                   except = std::current_exception();
               }
               // set termination flags
               state |= static_cast< int >( state_t::complete);
               caller( preserve_fpu);
               BOOST_ASSERT_MSG( false, "push_coroutine is complete");
            }),
    preserve_fpu( preserve_fpu_),
    state( static_cast< int >( state_t::unwind) ),
    except(),
    t( nullptr) {
}

template< typename T >
push_coroutine< T & >::control_block::control_block( typename pull_coroutine< T & >::control_block * cb) :
    other( cb),
    caller( other->callee),
    callee( other->caller),
    preserve_fpu( other->preserve_fpu),
    state( 0),
    except(),
    t( nullptr) {
}

template< typename T >
push_coroutine< T & >::control_block::~control_block() {
    if ( 0 == ( state & static_cast< int >( state_t::complete ) ) &&
         0 != ( state & static_cast< int >( state_t::unwind) ) ) {
        // set early-exit flag
        state |= static_cast< int >( state_t::early_exit);
        callee( preserve_fpu);
    }
}

template< typename T >
void
push_coroutine< T & >::control_block::resume( T & t_) {
    t = & t_;
    callee( preserve_fpu);
    t = nullptr;
    if ( except) {
        std::rethrow_exception( except);
    }
    // test early-exit-flag
    if ( 0 != ( ( other->state) & static_cast< int >( state_t::early_exit) ) ) {
        throw forced_unwind();
    }
}

template< typename T >
bool
push_coroutine< T & >::control_block::valid() const noexcept {
    return 0 == ( state & static_cast< int >( state_t::complete) );
}


// push_coroutine< void >

template< typename StackAllocator, typename Fn >
push_coroutine< void >::control_block::control_block( context::preallocated palloc, StackAllocator salloc, Fn && fn_, bool preserve_fpu_) :
    other( nullptr),
    caller( boost::context::execution_context::current() ),
    callee( palloc, salloc,
            [=,fn=std::forward< Fn >( fn_)] () mutable -> decltype( auto) {
               // create synthesized pull_coroutine< T >
               typename pull_coroutine< void >::control_block synthesized_cb( this);
               pull_coroutine< void > synthesized( & synthesized_cb);
               other = & synthesized_cb;
               try {
                   // call coroutine-fn with synthesized pull_coroutine as argument
                   fn( synthesized);
               } catch ( forced_unwind const&) {
                   // do nothing for unwinding exception
               } catch (...) {
                   // store other exceptions in exception-pointer
                   except = std::current_exception();
               }
               // set termination flags
               state |= static_cast< int >( state_t::complete);
               caller( preserve_fpu);
               BOOST_ASSERT_MSG( false, "push_coroutine is complete");
            }),
    preserve_fpu( preserve_fpu_),
    state( static_cast< int >( state_t::unwind) ),
    except() {
}

inline
push_coroutine< void >::control_block::control_block( pull_coroutine< void >::control_block * cb) :
    other( cb),
    caller( other->callee),
    callee( other->caller),
    preserve_fpu( other->preserve_fpu),
    state( 0),
    except() {
}

inline
push_coroutine< void >::control_block::~control_block() {
    if ( 0 == ( state & static_cast< int >( state_t::complete ) ) &&
         0 != ( state & static_cast< int >( state_t::unwind) ) ) {
        // set early-exit flag
        state |= static_cast< int >( state_t::early_exit);
        callee( preserve_fpu);
    }
}

inline
void
push_coroutine< void >::control_block::resume() {
    callee( preserve_fpu);
    if ( except) {
        std::rethrow_exception( except);
    }
    // test early-exit-flag
    if ( 0 != ( ( other->state) & static_cast< int >( state_t::early_exit) ) ) {
        throw forced_unwind();
    }
}

inline
bool
push_coroutine< void >::control_block::valid() const noexcept {
    return 0 == ( state & static_cast< int >( state_t::complete) );
}

}}}

#ifdef BOOST_HAS_ABI_HEADERS
#  include BOOST_ABI_SUFFIX
#endif

#endif // BOOST_COROUTINES2_DETAIL_PUSH_CONTROL_BLOCK_IPP