source: libcfa/src/concurrency/thread.cfa @ 3830c84

ADTast-experimental
Last change on this file since 3830c84 was f5f2768, checked in by Peter A. Buhr <pabuhr@…>, 18 months ago

make _GNU_SOURCE default, change IO to use SOCKADDR_ARG and CONST_SOCKADDR_ARG, move sys/socket.h to first include because of anonymous naming problem

  • Property mode set to 100644
File size: 7.2 KB
RevLine 
[78b3f52]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// thread.c --
[78b3f52]8//
9// Author           : Thierry Delisle
[f07e037]10// Created On       : Tue Jan 17 12:27:26 2017
[6b0b624]11// Last Modified By : Peter A. Buhr
[f5f2768]12// Last Modified On : Mon Jan  9 08:42:33 2023
13// Update Count     : 103
[78b3f52]14//
15
[2026bb6]16#define __cforall_thread__
17
[58b6d1b]18#include "thread.hfa"
[78b3f52]19
[ab8c6a6]20#include "exception.hfa"
[b035046]21#include "kernel/private.hfa"
22#include "limits.hfa"
[8118303]23
24#define __CFA_INVOKE_PRIVATE__
25#include "invoke.h"
26
[dd46fd3]27extern size_t __global_random_seed;
28extern size_t __global_random_prime;
[d2ad151]29extern bool __global_random_mask;
[2210cfc]30
[c18bf9e]31#pragma GCC visibility push(default)
32
[8118303]33//-----------------------------------------------------------------------------
34// Thread ctors and dtors
[2210cfc]35void ?{}( thread$ & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
[121be3e]36        context{ 0p, 0p };
[de6319f]37        self_cor{ name, storage, storageSize };
[6a77224]38        ticket = TICKET_RUNNING;
[e8e457e]39        state = Start;
[3381ed7]40        preempted = __NO_PREEMPTION;
[ab5baab]41        corctx_flag = false;
[82c948c]42        curr_cor = &self_cor;
[65deb18]43        self_mon.owner = &this;
44        self_mon.recursion = 1;
45        self_mon_p = &self_mon;
[de6319f]46        curr_cluster = &cl;
[15c93d8]47        rdy_link.next = 0p;
48        rdy_link.ts   = MAX;
[1553a55]49        user_link.next = 0p;
50        user_link.prev = 0p;
51        cltr_link.next = 0p;
52        cltr_link.prev = 0p;
[24e321c]53        preferred = ready_queue_new_preferred();
[89eff25]54        last_proc = 0p;
[dd46fd3]55        PRNG_SET_SEED( random_state, __global_random_mask ? __global_random_prime : __global_random_prime ^ rdtscl() );
[b4b63e8]56        #if defined( __CFA_WITH_VERIFY__ )
[878cfcc]57                executing = 0p;
[ac12f1f]58                canary = 0x0D15EA5E0D15EA5Ep;
[b4b63e8]59        #endif
[de94a60]60
[015925a]61        clh_node = malloc( );
62        *clh_node = false;
[f835806]63
64        doregister(curr_cluster, this);
[65deb18]65        monitors{ &self_mon_p, 1, (fptr_t)0 };
[8118303]66}
67
[e84ab3d]68void ^?{}(thread$& this) with( this ) {
[b4b63e8]69        #if defined( __CFA_WITH_VERIFY__ )
[ac12f1f]70                canary = 0xDEADDEADDEADDEADp;
[b4b63e8]71        #endif
[015925a]72        free(clh_node);
[a1a17a74]73        unregister(curr_cluster, this);
[65deb18]74        ^self_cor{};
[8118303]75}
76
[fd54fef]77forall(T &)
[ab8c6a6]78void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src) {
79        dst->virtual_table = src->virtual_table;
80        dst->the_thread = src->the_thread;
81        dst->the_exception = src->the_exception;
82}
83
[fd54fef]84forall(T &)
[ab8c6a6]85const char * msg(ThreadCancelled(T) *) {
[ecfd758]86        return "ThreadCancelled(...)";
[ab8c6a6]87}
88
[fd54fef]89forall(T &)
[ab8c6a6]90static void default_thread_cancel_handler(ThreadCancelled(T) & ) {
[ecfd758]91        // Improve this error message, can I do formatting?
[ab8c6a6]92        abort( "Unhandled thread cancellation.\n" );
93}
94
[c3b9d639]95forall(T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled(T))
96    | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[ab8c6a6]97void ?{}( thread_dtor_guard_t & this,
[8edbe40]98                T & thrd, void(*cancelHandler)(ThreadCancelled(T) &)) {
[e84ab3d]99        monitor$ * m = get_monitor(thrd);
100        thread$ * desc = get_thread(thrd);
[3ea8ad1]101
102        // Setup the monitor guard
[ab8c6a6]103        void (*dtor)(T& mutex this) = ^?{};
[8edbe40]104        bool join = cancelHandler != (void(*)(ThreadCancelled(T)&))0;
[ab8c6a6]105        (this.mg){&m, (void(*)())dtor, join};
[342be43]106
[3ea8ad1]107
108        /* paranoid */ verifyf( Halted == desc->state || Cancelled == desc->state, "Expected thread to be Halted or Cancelled, was %d\n", (int)desc->state );
109
[342be43]110        // After the guard set-up and any wait, check for cancellation.
111        struct _Unwind_Exception * cancellation = desc->self_cor.cancellation;
112        if ( likely( 0p == cancellation ) ) {
113                return;
114        } else if ( Cancelled == desc->state ) {
115                return;
116        }
117        desc->state = Cancelled;
[8edbe40]118        void(*defaultResumptionHandler)(ThreadCancelled(T) &) =
[fcd0b9d7]119                join ? cancelHandler : default_thread_cancel_handler;
[342be43]120
121        // TODO: Remove explitate vtable set once trac#186 is fixed.
[8edbe40]122        ThreadCancelled(T) except;
123        except.virtual_table = &_default_vtable;
[342be43]124        except.the_thread = &thrd;
125        except.the_exception = __cfaehm_cancellation_exception( cancellation );
[ecfd758]126        // Why is this cast required?
[8edbe40]127        throwResume (ThreadCancelled(T) &)except;
[342be43]128
129        except.the_exception->virtual_table->free( except.the_exception );
130        free( cancellation );
131        desc->self_cor.cancellation = 0p;
[ab8c6a6]132}
133
134void ^?{}( thread_dtor_guard_t & this ) {
135        ^(this.mg){};
136}
137
[8118303]138//-----------------------------------------------------------------------------
139// Starting and stopping threads
[fd54fef]140forall( T & | is_thread(T) )
[09f357ec]141void __thrd_start( T & this, void (*main_p)(T &) ) {
[e84ab3d]142        thread$ * this_thrd = get_thread(this);
[8118303]143
[1c273d0]144        disable_interrupts();
[c7a900a]145        __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread);
[09f357ec]146
[e8e457e]147        this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
[ac5816d]148        /* paranoid */ verify( this_thrd->context.SP );
[8118303]149
[24e321c]150        schedule_thread$( this_thrd, UNPARK_LOCAL );
[a3821fa]151        enable_interrupts();
[8118303]152}
153
[8c50aed]154//-----------------------------------------------------------------------------
155// Support for threads that don't ues the thread keyword
[fd54fef]156forall( T & | sized(T) | is_thread(T) | { void ?{}(T&); } )
[65deb18]157void ?{}( scoped(T)& this ) with( this ) {
158        handle{};
[09f357ec]159        __thrd_start(handle, main);
[bd98b58]160}
161
[fd54fef]162forall( T &, P... | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
[65deb18]163void ?{}( scoped(T)& this, P params ) with( this ) {
164        handle{ params };
[09f357ec]165        __thrd_start(handle, main);
[8118303]166}
167
[fd54fef]168forall( T & | sized(T) | is_thread(T) )
[65deb18]169void ^?{}( scoped(T)& this ) with( this ) {
170        ^handle{};
[44264c5]171}
172
[ab8c6a6]173//-----------------------------------------------------------------------------
[c3b9d639]174forall(T & | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled(T))
175        | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[ab8c6a6]176T & join( T & this ) {
177        thread_dtor_guard_t guard = { this, defaultResumptionHandler };
178        return this;
179}
180
[a167c70c]181//-----------------------------------------------------------------------------
182bool migrate( thread$ * thrd, struct cluster & cl ) {
183        monitor$ * tmon = get_monitor(thrd);
184        monitor$ * __monitors[] = { tmon };
185        monitor_guard_t __guard = { __monitors, 1 };
186        {
187                // if nothing needs to be done, return false
188                if( thrd->curr_cluster == &cl ) return false;
189
190                // are we migrating ourself?
191                const bool local = thrd == active_thread();
192
193                /* paranoid */ verify( !local || &cl != active_cluster() );
194                /* paranoid */ verify( !local || thrd->curr_cluster == active_cluster() );
195                /* paranoid */ verify( !local || thrd->curr_cluster == active_processor()->cltr );
196                /* paranoid */ verify( local || tmon->signal_stack.top->owner->waiting_thread == thrd );
197                /* paranoid */ verify( local || tmon->signal_stack.top );
198
199                // make sure we aren't interrupted while doing this
200                // not as important if we aren't local
201                disable_interrupts();
202
203                // actually move the thread
204                unregister( thrd->curr_cluster, *thrd );
205                thrd->curr_cluster = &cl;
206                doregister( thrd->curr_cluster, *thrd );
207
208                // restore interrupts
209                enable_interrupts();
210
211                // if this is the local thread, we are still running on the old cluster
212                if(local) yield();
213
214                /* paranoid */ verify( !local || &cl == active_cluster() );
215                /* paranoid */ verify( !local || thrd->curr_cluster == active_cluster() );
216                /* paranoid */ verify( !local || thrd->curr_cluster == active_processor()->cltr );
217                /* paranoid */ verify(  local || tmon->signal_stack.top );
218                /* paranoid */ verify(  local || tmon->signal_stack.top->owner->waiting_thread == thrd );
219
220                return true;
221        }
222}
223
[5d1ebb9]224//-----------------------------------------------------------------------------
[2210cfc]225
[20cf96d]226void set_seed( size_t seed ) {
[dd46fd3]227        PRNG_STATE_T & state = active_thread()->random_state;
228        PRNG_SET_SEED( state, seed );
[261e107]229        __global_random_seed = seed;
[dd46fd3]230        __global_random_prime = seed;
[c655650]231        __global_random_mask = true;
[00f5fde]232} // set_seed
[12b5e94a]233
[20cf96d]234size_t prng( void ) {                                                                   // [0,UINT_MAX]
[25ef81d]235        return PRNG_NAME( active_thread()->random_state );
[12b5e94a]236} // prng
[2210cfc]237
[78b3f52]238// Local Variables: //
239// mode: c //
240// tab-width: 4 //
[6a3d2e7]241// End: //
Note: See TracBrowser for help on using the repository browser.