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