source: libcfa/src/concurrency/coroutine.hfa @ 121be3e

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 121be3e was 121be3e, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

change NULL to 0p

  • Property mode set to 100644
File size: 6.2 KB
RevLine 
[6a3d2e7]1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[75a17f1]7// coroutine --
[6a3d2e7]8//
9// Author           : Thierry Delisle
10// Created On       : Mon Nov 28 12:27:26 2016
[91c389a]11// Last Modified By : Peter A. Buhr
[121be3e]12// Last Modified On : Tue Dec  3 22:47:58 2019
13// Update Count     : 10
[6a3d2e7]14//
15
[6b0b624]16#pragma once
[6a3d2e7]17
[91c389a]18#include <assert.h>
[6a3d2e7]19#include "invoke.h"
20
21//-----------------------------------------------------------------------------
22// Coroutine trait
23// Anything that implements this trait can be resumed.
24// Anything that is resumed is a coroutine.
25trait is_coroutine(dtype T) {
[83a071f9]26      void main(T & this);
27      coroutine_desc * get_coroutine(T & this);
[6a3d2e7]28};
29
[83a071f9]30#define DECL_COROUTINE(X) static inline coroutine_desc* get_coroutine(X& this) { return &this.__cor; } void main(X& this)
[c84e80a]31
[6a3d2e7]32//-----------------------------------------------------------------------------
33// Ctors and dtors
[de6319f]34// void ?{}( coStack_t & this );
35// void ^?{}( coStack_t & this );
36
37void ?{}( coroutine_desc & this, const char * name, void * storage, size_t storageSize );
38void ^?{}( coroutine_desc & this );
39
[121be3e]40static inline void ?{}( coroutine_desc & this)                                       { this{ "Anonymous Coroutine", 0p, 0 }; }
41static inline void ?{}( coroutine_desc & this, size_t stackSize)                     { this{ "Anonymous Coroutine", 0p, stackSize }; }
[de6319f]42static inline void ?{}( coroutine_desc & this, void * storage, size_t storageSize )  { this{ "Anonymous Coroutine", storage, storageSize }; }
[121be3e]43static inline void ?{}( coroutine_desc & this, const char * name)                    { this{ name, 0p, 0 }; }
44static inline void ?{}( coroutine_desc & this, const char * name, size_t stackSize ) { this{ name, 0p, stackSize }; }
[6a3d2e7]45
46//-----------------------------------------------------------------------------
47// Public coroutine API
[76d3ca6]48static inline void suspend(void);
[6a3d2e7]49
50forall(dtype T | is_coroutine(T))
[10248ae0]51static inline T & resume(T & cor);
[6a3d2e7]52
53forall(dtype T | is_coroutine(T))
[83a071f9]54void prime(T & cor);
[6a3d2e7]55
[d4e68a6]56static inline struct coroutine_desc * active_coroutine() { return TL_GET( this_thread )->curr_cor; }
57
[6a3d2e7]58//-----------------------------------------------------------------------------
59// PRIVATE exposed because of inline
60
61// Start coroutine routines
62extern "C" {
63      forall(dtype T | is_coroutine(T))
[8118303]64      void CtxInvokeCoroutine(T * this);
[6a3d2e7]65
66      forall(dtype T | is_coroutine(T))
[8118303]67      void CtxStart(T * this, void ( *invoke)(T *));
[3c06bba]68
69        extern void _CtxCoroutine_Unwind(struct _Unwind_Exception * storage, struct coroutine_desc *) __attribute__ ((__noreturn__));
70
71        extern void CtxSwitch( struct __stack_context_t * from, struct __stack_context_t * to ) asm ("CtxSwitch");
[6a3d2e7]72}
73
74// Private wrappers for context switch and stack creation
[3c06bba]75// Wrapper for co
76static inline void CoroutineCtxSwitch(coroutine_desc* src, coroutine_desc* dst) {
77        // set state of current coroutine to inactive
78        src->state = src->state == Halted ? Halted : Inactive;
79
80        // set new coroutine that task is executing
81        TL_GET( this_thread )->curr_cor = dst;
82
83        // context switch to specified coroutine
84        verify( dst->context.SP );
85        CtxSwitch( &src->context, &dst->context );
86        // when CtxSwitch returns we are back in the src coroutine
87
88        // set state of new coroutine to active
89        src->state = Active;
90
[121be3e]91        if( unlikely(src->cancellation != 0p) ) {
[3c06bba]92                _CtxCoroutine_Unwind(src->cancellation, src);
93        }
94}
95
[b2f6113]96extern void __stack_prepare   ( __stack_info_t * this, size_t size /* ignored if storage already allocated */);
[6a3d2e7]97
98// Suspend implementation inlined for performance
[76d3ca6]99static inline void suspend(void) {
[14a61b5]100        // optimization : read TLS once and reuse it
101        // Safety note: this is preemption safe since if
102        // preemption occurs after this line, the pointer
103        // will also migrate which means this value will
104        // stay in syn with the TLS
[212c2187]105        coroutine_desc * src = TL_GET( this_thread )->curr_cor;
[6a3d2e7]106
107        assertf( src->last != 0,
[8def349]108                "Attempt to suspend coroutine \"%.256s\" (%p) that has never been resumed.\n"
[6a3d2e7]109                "Possible cause is a suspend executed in a member called by a coroutine user rather than by the coroutine main.",
110                src->name, src );
[ee897e4b]111        assertf( src->last->state != Halted,
[8def349]112                "Attempt by coroutine \"%.256s\" (%p) to suspend back to terminated coroutine \"%.256s\" (%p).\n"
[6a3d2e7]113                "Possible cause is terminated coroutine's main routine has already returned.",
114                src->name, src, src->last->name, src->last );
115
[0c92c9f]116        CoroutineCtxSwitch( src, src->last );
[6a3d2e7]117}
118
119// Resume implementation inlined for performance
120forall(dtype T | is_coroutine(T))
[aa00626]121static inline T & resume(T & cor) {
[14a61b5]122        // optimization : read TLS once and reuse it
123        // Safety note: this is preemption safe since if
124        // preemption occurs after this line, the pointer
125        // will also migrate which means this value will
126        // stay in syn with the TLS
[212c2187]127        coroutine_desc * src = TL_GET( this_thread )->curr_cor;
[c3acb841]128        coroutine_desc * dst = get_coroutine(cor);
[6a3d2e7]129
[121be3e]130        if( unlikely(dst->context.SP == 0p) ) {
[b2f6113]131                __stack_prepare(&dst->stack, 65000);
[83a071f9]132                CtxStart(&cor, CtxInvokeCoroutine);
[6a3d2e7]133        }
134
[4aa2fb2]135        // not resuming self ?
[6a3d2e7]136        if ( src != dst ) {
[ee897e4b]137                assertf( dst->state != Halted ,
[6a3d2e7]138                        "Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n"
139                        "Possible cause is terminated coroutine's main routine has already returned.",
140                        src->name, src, dst->name, dst );
141
[4aa2fb2]142                // set last resumer
[6a3d2e7]143                dst->last = src;
[b462670]144                dst->starter = dst->starter ? dst->starter : src;
[14a61b5]145        }
[6a3d2e7]146
[4aa2fb2]147        // always done for performance testing
[0c92c9f]148        CoroutineCtxSwitch( src, dst );
[aa00626]149
150        return cor;
[6a3d2e7]151}
152
[c3acb841]153static inline void resume(coroutine_desc * dst) {
[14a61b5]154        // optimization : read TLS once and reuse it
155        // Safety note: this is preemption safe since if
156        // preemption occurs after this line, the pointer
157        // will also migrate which means this value will
158        // stay in syn with the TLS
[212c2187]159        coroutine_desc * src = TL_GET( this_thread )->curr_cor;
[77e6fcb]160
[4aa2fb2]161        // not resuming self ?
[77e6fcb]162        if ( src != dst ) {
[ee897e4b]163                assertf( dst->state != Halted ,
[77e6fcb]164                        "Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n"
165                        "Possible cause is terminated coroutine's main routine has already returned.",
166                        src->name, src, dst->name, dst );
167
[4aa2fb2]168                // set last resumer
[77e6fcb]169                dst->last = src;
[14a61b5]170        }
[77e6fcb]171
[4aa2fb2]172        // always done for performance testing
[77e6fcb]173        CoroutineCtxSwitch( src, dst );
174}
175
[6a3d2e7]176// Local Variables: //
177// mode: c //
178// tab-width: 4 //
179// End: //
Note: See TracBrowser for help on using the repository browser.