source: libcfa/src/concurrency/thread.cfa @ 910e1d0

ADTast-experimental
Last change on this file since 910e1d0 was d2ad151, checked in by Peter A. Buhr <pabuhr@…>, 22 months ago

major update of PRNG

  • 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
[d2ad151]12// Last Modified On : Sun Nov 20 17:17:50 2022
13// Update Count     : 80
[78b3f52]14//
15
[2026bb6]16#define __cforall_thread__
[43784ac]17#define _GNU_SOURCE
[2026bb6]18
[58b6d1b]19#include "thread.hfa"
[78b3f52]20
[ab8c6a6]21#include "exception.hfa"
[b035046]22#include "kernel/private.hfa"
23#include "limits.hfa"
[8118303]24
25#define __CFA_INVOKE_PRIVATE__
26#include "invoke.h"
27
[d2ad151]28extern PRNG_ARG_T __global_random_seed, __global_random_prime;
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;
[24e321c]49        preferred = ready_queue_new_preferred();
[89eff25]50        last_proc = 0p;
[c655650]51        random_state = __global_random_mask ? __global_random_prime : __global_random_prime ^ rdtscl();
[b4b63e8]52        #if defined( __CFA_WITH_VERIFY__ )
[878cfcc]53                executing = 0p;
[ac12f1f]54                canary = 0x0D15EA5E0D15EA5Ep;
[b4b63e8]55        #endif
[de94a60]56
[015925a]57        clh_node = malloc( );
58        *clh_node = false;
[f835806]59
60        doregister(curr_cluster, this);
[65deb18]61        monitors{ &self_mon_p, 1, (fptr_t)0 };
[8118303]62}
63
[e84ab3d]64void ^?{}(thread$& this) with( this ) {
[b4b63e8]65        #if defined( __CFA_WITH_VERIFY__ )
[ac12f1f]66                canary = 0xDEADDEADDEADDEADp;
[b4b63e8]67        #endif
[015925a]68        free(clh_node);
[a1a17a74]69        unregister(curr_cluster, this);
[65deb18]70        ^self_cor{};
[8118303]71}
72
[fd54fef]73forall(T &)
[ab8c6a6]74void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src) {
75        dst->virtual_table = src->virtual_table;
76        dst->the_thread = src->the_thread;
77        dst->the_exception = src->the_exception;
78}
79
[fd54fef]80forall(T &)
[ab8c6a6]81const char * msg(ThreadCancelled(T) *) {
[ecfd758]82        return "ThreadCancelled(...)";
[ab8c6a6]83}
84
[fd54fef]85forall(T &)
[ab8c6a6]86static void default_thread_cancel_handler(ThreadCancelled(T) & ) {
[ecfd758]87        // Improve this error message, can I do formatting?
[ab8c6a6]88        abort( "Unhandled thread cancellation.\n" );
89}
90
[c3b9d639]91forall(T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled(T))
92    | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[ab8c6a6]93void ?{}( thread_dtor_guard_t & this,
[8edbe40]94                T & thrd, void(*cancelHandler)(ThreadCancelled(T) &)) {
[e84ab3d]95        monitor$ * m = get_monitor(thrd);
96        thread$ * desc = get_thread(thrd);
[3ea8ad1]97
98        // Setup the monitor guard
[ab8c6a6]99        void (*dtor)(T& mutex this) = ^?{};
[8edbe40]100        bool join = cancelHandler != (void(*)(ThreadCancelled(T)&))0;
[ab8c6a6]101        (this.mg){&m, (void(*)())dtor, join};
[342be43]102
[3ea8ad1]103
104        /* paranoid */ verifyf( Halted == desc->state || Cancelled == desc->state, "Expected thread to be Halted or Cancelled, was %d\n", (int)desc->state );
105
[342be43]106        // After the guard set-up and any wait, check for cancellation.
107        struct _Unwind_Exception * cancellation = desc->self_cor.cancellation;
108        if ( likely( 0p == cancellation ) ) {
109                return;
110        } else if ( Cancelled == desc->state ) {
111                return;
112        }
113        desc->state = Cancelled;
[8edbe40]114        void(*defaultResumptionHandler)(ThreadCancelled(T) &) =
[fcd0b9d7]115                join ? cancelHandler : default_thread_cancel_handler;
[342be43]116
117        // TODO: Remove explitate vtable set once trac#186 is fixed.
[8edbe40]118        ThreadCancelled(T) except;
119        except.virtual_table = &_default_vtable;
[342be43]120        except.the_thread = &thrd;
121        except.the_exception = __cfaehm_cancellation_exception( cancellation );
[ecfd758]122        // Why is this cast required?
[8edbe40]123        throwResume (ThreadCancelled(T) &)except;
[342be43]124
125        except.the_exception->virtual_table->free( except.the_exception );
126        free( cancellation );
127        desc->self_cor.cancellation = 0p;
[ab8c6a6]128}
129
130void ^?{}( thread_dtor_guard_t & this ) {
131        ^(this.mg){};
132}
133
[8118303]134//-----------------------------------------------------------------------------
135// Starting and stopping threads
[fd54fef]136forall( T & | is_thread(T) )
[09f357ec]137void __thrd_start( T & this, void (*main_p)(T &) ) {
[e84ab3d]138        thread$ * this_thrd = get_thread(this);
[8118303]139
[1c273d0]140        disable_interrupts();
[c7a900a]141        __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread);
[09f357ec]142
[e8e457e]143        this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
[ac5816d]144        /* paranoid */ verify( this_thrd->context.SP );
[8118303]145
[24e321c]146        schedule_thread$( this_thrd, UNPARK_LOCAL );
[a3821fa]147        enable_interrupts();
[8118303]148}
149
[8c50aed]150//-----------------------------------------------------------------------------
151// Support for threads that don't ues the thread keyword
[fd54fef]152forall( T & | sized(T) | is_thread(T) | { void ?{}(T&); } )
[65deb18]153void ?{}( scoped(T)& this ) with( this ) {
154        handle{};
[09f357ec]155        __thrd_start(handle, main);
[bd98b58]156}
157
[fd54fef]158forall( T &, P... | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
[65deb18]159void ?{}( scoped(T)& this, P params ) with( this ) {
160        handle{ params };
[09f357ec]161        __thrd_start(handle, main);
[8118303]162}
163
[fd54fef]164forall( T & | sized(T) | is_thread(T) )
[65deb18]165void ^?{}( scoped(T)& this ) with( this ) {
166        ^handle{};
[44264c5]167}
168
[ab8c6a6]169//-----------------------------------------------------------------------------
[c3b9d639]170forall(T & | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled(T))
171        | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); })
[ab8c6a6]172T & join( T & this ) {
173        thread_dtor_guard_t guard = { this, defaultResumptionHandler };
174        return this;
175}
176
[a167c70c]177//-----------------------------------------------------------------------------
178bool migrate( thread$ * thrd, struct cluster & cl ) {
179
180        monitor$ * tmon = get_monitor(thrd);
181        monitor$ * __monitors[] = { tmon };
182        monitor_guard_t __guard = { __monitors, 1 };
183
184
185        {
186                // if nothing needs to be done, return false
187                if( thrd->curr_cluster == &cl ) return false;
188
189                // are we migrating ourself?
190                const bool local = thrd == active_thread();
191
192                /* paranoid */ verify( !local || &cl != active_cluster() );
193                /* paranoid */ verify( !local || thrd->curr_cluster == active_cluster() );
194                /* paranoid */ verify( !local || thrd->curr_cluster == active_processor()->cltr );
195                /* paranoid */ verify( local || tmon->signal_stack.top->owner->waiting_thread == thrd );
196                /* paranoid */ verify( local || tmon->signal_stack.top );
197
198                // make sure we aren't interrupted while doing this
199                // not as important if we aren't local
200                disable_interrupts();
201
202                // actually move the thread
203                unregister( thrd->curr_cluster, *thrd );
204                thrd->curr_cluster = &cl;
205                doregister( thrd->curr_cluster, *thrd );
206
207                // restore interrupts
208                enable_interrupts();
209
210                // if this is the local thread, we are still running on the old cluster
211                if(local) yield();
212
213                /* paranoid */ verify( !local || &cl == active_cluster() );
214                /* paranoid */ verify( !local || thrd->curr_cluster == active_cluster() );
215                /* paranoid */ verify( !local || thrd->curr_cluster == active_processor()->cltr );
216                /* paranoid */ verify(  local || tmon->signal_stack.top );
217                /* paranoid */ verify(  local || tmon->signal_stack.top->owner->waiting_thread == thrd );
218
219                return true;
220        }
221}
222
[5d1ebb9]223//-----------------------------------------------------------------------------
[2210cfc]224
[d2ad151]225void set_seed( uint64_t seed ) {
226        PRNG_ARG_T & state = active_thread()->random_state;
[0ebbca4]227        state = __global_random_seed = seed;
[d2ad151]228        (void)PRNG_NAME( state );                                                       // prime PRNG
[0ebbca4]229        __global_random_prime = state;
[c655650]230        __global_random_mask = true;
[00f5fde]231} // set_seed
[12b5e94a]232
[d2ad151]233uint64_t prng( void ) {                                                                 // [0,UINT_MAX]
234        PRNG_ARG_T & state = active_thread()->random_state;
235        return PRNG_NAME( 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.