source: libcfa/src/concurrency/thread.cfa@ fa2e183

ADT ast-experimental
Last change on this file since fa2e183 was a167c70c, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Added thread support for migrating between clusters.

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