source: libcfa/src/concurrency/thread.cfa@ 77adaee

ADT ast-experimental enum pthread-emulation qualifiedEnum
Last change on this file since 77adaee was 708ae38, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Some more cleanup and grow/shrink now readjusts io timestamps.
(They are still unused).

  • Property mode set to 100644
File size: 5.5 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
[708ae38]21#include "kernel/private.hfa"
[ab8c6a6]22#include "exception.hfa"
[8118303]23
24#define __CFA_INVOKE_PRIVATE__
25#include "invoke.h"
26
[c655650]27extern uint32_t __global_random_seed, __global_random_prime, __global_random_mask;
[2210cfc]28
[8118303]29//-----------------------------------------------------------------------------
30// Thread ctors and dtors
[2210cfc]31void ?{}( thread$ & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
[121be3e]32 context{ 0p, 0p };
[de6319f]33 self_cor{ name, storage, storageSize };
[6a77224]34 ticket = TICKET_RUNNING;
[e8e457e]35 state = Start;
[3381ed7]36 preempted = __NO_PREEMPTION;
[ab5baab]37 corctx_flag = false;
[82c948c]38 curr_cor = &self_cor;
[65deb18]39 self_mon.owner = &this;
40 self_mon.recursion = 1;
41 self_mon_p = &self_mon;
[de6319f]42 curr_cluster = &cl;
[b798713]43 link.next = 0p;
[ef94ae7]44 link.ts = -1llu;
[24e321c]45 preferred = ready_queue_new_preferred();
[89eff25]46 last_proc = 0p;
[c655650]47 random_state = __global_random_mask ? __global_random_prime : __global_random_prime ^ rdtscl();
[b4b63e8]48 #if defined( __CFA_WITH_VERIFY__ )
[ac12f1f]49 canary = 0x0D15EA5E0D15EA5Ep;
[b4b63e8]50 #endif
[de94a60]51
[c131a02]52 seqable.next = 0p;
53 seqable.back = 0p;
54
[121be3e]55 node.next = 0p;
56 node.prev = 0p;
[a1a17a74]57 doregister(curr_cluster, this);
[5ea06d6]58
[65deb18]59 monitors{ &self_mon_p, 1, (fptr_t)0 };
[8118303]60}
61
[e84ab3d]62void ^?{}(thread$& this) with( this ) {
[b4b63e8]63 #if defined( __CFA_WITH_VERIFY__ )
[ac12f1f]64 canary = 0xDEADDEADDEADDEADp;
[b4b63e8]65 #endif
[a1a17a74]66 unregister(curr_cluster, this);
[65deb18]67 ^self_cor{};
[8118303]68}
69
[fd54fef]70forall(T &)
[ab8c6a6]71void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src) {
72 dst->virtual_table = src->virtual_table;
73 dst->the_thread = src->the_thread;
74 dst->the_exception = src->the_exception;
75}
76
[fd54fef]77forall(T &)
[ab8c6a6]78const char * msg(ThreadCancelled(T) *) {
[ecfd758]79 return "ThreadCancelled(...)";
[ab8c6a6]80}
81
[fd54fef]82forall(T &)
[ab8c6a6]83static void default_thread_cancel_handler(ThreadCancelled(T) & ) {
[ecfd758]84 // Improve this error message, can I do formatting?
[ab8c6a6]85 abort( "Unhandled thread cancellation.\n" );
86}
87
[8edbe40]88forall(T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled, (T))
[5456537]89 | { EHM_DEFAULT_VTABLE(ThreadCancelled, (T)); })
[ab8c6a6]90void ?{}( thread_dtor_guard_t & this,
[8edbe40]91 T & thrd, void(*cancelHandler)(ThreadCancelled(T) &)) {
[e84ab3d]92 monitor$ * m = get_monitor(thrd);
93 thread$ * desc = get_thread(thrd);
[3ea8ad1]94
95 // Setup the monitor guard
[ab8c6a6]96 void (*dtor)(T& mutex this) = ^?{};
[8edbe40]97 bool join = cancelHandler != (void(*)(ThreadCancelled(T)&))0;
[ab8c6a6]98 (this.mg){&m, (void(*)())dtor, join};
[342be43]99
[3ea8ad1]100
101 /* paranoid */ verifyf( Halted == desc->state || Cancelled == desc->state, "Expected thread to be Halted or Cancelled, was %d\n", (int)desc->state );
102
[342be43]103 // After the guard set-up and any wait, check for cancellation.
104 struct _Unwind_Exception * cancellation = desc->self_cor.cancellation;
105 if ( likely( 0p == cancellation ) ) {
106 return;
107 } else if ( Cancelled == desc->state ) {
108 return;
109 }
110 desc->state = Cancelled;
[8edbe40]111 void(*defaultResumptionHandler)(ThreadCancelled(T) &) =
[fcd0b9d7]112 join ? cancelHandler : default_thread_cancel_handler;
[342be43]113
114 // TODO: Remove explitate vtable set once trac#186 is fixed.
[8edbe40]115 ThreadCancelled(T) except;
116 except.virtual_table = &_default_vtable;
[342be43]117 except.the_thread = &thrd;
118 except.the_exception = __cfaehm_cancellation_exception( cancellation );
[ecfd758]119 // Why is this cast required?
[8edbe40]120 throwResume (ThreadCancelled(T) &)except;
[342be43]121
122 except.the_exception->virtual_table->free( except.the_exception );
123 free( cancellation );
124 desc->self_cor.cancellation = 0p;
[ab8c6a6]125}
126
127void ^?{}( thread_dtor_guard_t & this ) {
128 ^(this.mg){};
129}
130
[8118303]131//-----------------------------------------------------------------------------
132// Starting and stopping threads
[fd54fef]133forall( T & | is_thread(T) )
[09f357ec]134void __thrd_start( T & this, void (*main_p)(T &) ) {
[e84ab3d]135 thread$ * this_thrd = get_thread(this);
[8118303]136
[1c273d0]137 disable_interrupts();
[c7a900a]138 __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread);
[09f357ec]139
[e8e457e]140 this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
[ac5816d]141 /* paranoid */ verify( this_thrd->context.SP );
[8118303]142
[24e321c]143 schedule_thread$( this_thrd, UNPARK_LOCAL );
[a3821fa]144 enable_interrupts();
[8118303]145}
146
[8c50aed]147//-----------------------------------------------------------------------------
148// Support for threads that don't ues the thread keyword
[fd54fef]149forall( T & | sized(T) | is_thread(T) | { void ?{}(T&); } )
[65deb18]150void ?{}( scoped(T)& this ) with( this ) {
151 handle{};
[09f357ec]152 __thrd_start(handle, main);
[bd98b58]153}
154
[fd54fef]155forall( T &, P... | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
[65deb18]156void ?{}( scoped(T)& this, P params ) with( this ) {
157 handle{ params };
[09f357ec]158 __thrd_start(handle, main);
[8118303]159}
160
[fd54fef]161forall( T & | sized(T) | is_thread(T) )
[65deb18]162void ^?{}( scoped(T)& this ) with( this ) {
163 ^handle{};
[44264c5]164}
165
[ab8c6a6]166//-----------------------------------------------------------------------------
[8edbe40]167forall(T & | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled, (T))
[5456537]168 | { EHM_DEFAULT_VTABLE(ThreadCancelled, (T)); })
[ab8c6a6]169T & join( T & this ) {
170 thread_dtor_guard_t guard = { this, defaultResumptionHandler };
171 return this;
172}
173
[5d1ebb9]174//-----------------------------------------------------------------------------
[2210cfc]175#define GENERATOR LCG
176
[00f5fde]177void set_seed( uint32_t seed ) {
[0ebbca4]178 uint32_t & state = active_thread()->random_state;
179 state = __global_random_seed = seed;
180 GENERATOR( state );
181 __global_random_prime = state;
[c655650]182 __global_random_mask = true;
[00f5fde]183} // set_seed
[12b5e94a]184
185uint32_t prng( void ) { // [0,UINT_MAX]
186 uint32_t & state = active_thread()->random_state;
187 return GENERATOR( state );
188} // prng
[2210cfc]189
[78b3f52]190// Local Variables: //
191// mode: c //
192// tab-width: 4 //
[6a3d2e7]193// End: //
Note: See TracBrowser for help on using the repository browser.