| [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] | 28 | extern 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] | 34 | void ?{}( 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__ ) | 
|---|
| [ac12f1f] | 52 | canary = 0x0D15EA5E0D15EA5Ep; | 
|---|
| [b4b63e8] | 53 | #endif | 
|---|
| [de94a60] | 54 |  | 
|---|
| [121be3e] | 55 | node.next = 0p; | 
|---|
|  | 56 | node.prev = 0p; | 
|---|
| [5ea06d6] | 57 |  | 
|---|
| [015925a] | 58 | clh_node = malloc( ); | 
|---|
|  | 59 | *clh_node = false; | 
|---|
| [f835806] | 60 |  | 
|---|
|  | 61 | doregister(curr_cluster, this); | 
|---|
| [65deb18] | 62 | monitors{ &self_mon_p, 1, (fptr_t)0 }; | 
|---|
| [8118303] | 63 | } | 
|---|
|  | 64 |  | 
|---|
| [e84ab3d] | 65 | void ^?{}(thread$& this) with( this ) { | 
|---|
| [b4b63e8] | 66 | #if defined( __CFA_WITH_VERIFY__ ) | 
|---|
| [ac12f1f] | 67 | canary = 0xDEADDEADDEADDEADp; | 
|---|
| [b4b63e8] | 68 | #endif | 
|---|
| [015925a] | 69 | free(clh_node); | 
|---|
| [a1a17a74] | 70 | unregister(curr_cluster, this); | 
|---|
| [65deb18] | 71 | ^self_cor{}; | 
|---|
| [8118303] | 72 | } | 
|---|
|  | 73 |  | 
|---|
| [fd54fef] | 74 | forall(T &) | 
|---|
| [ab8c6a6] | 75 | void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src) { | 
|---|
|  | 76 | dst->virtual_table = src->virtual_table; | 
|---|
|  | 77 | dst->the_thread = src->the_thread; | 
|---|
|  | 78 | dst->the_exception = src->the_exception; | 
|---|
|  | 79 | } | 
|---|
|  | 80 |  | 
|---|
| [fd54fef] | 81 | forall(T &) | 
|---|
| [ab8c6a6] | 82 | const char * msg(ThreadCancelled(T) *) { | 
|---|
| [ecfd758] | 83 | return "ThreadCancelled(...)"; | 
|---|
| [ab8c6a6] | 84 | } | 
|---|
|  | 85 |  | 
|---|
| [fd54fef] | 86 | forall(T &) | 
|---|
| [ab8c6a6] | 87 | static void default_thread_cancel_handler(ThreadCancelled(T) & ) { | 
|---|
| [ecfd758] | 88 | // Improve this error message, can I do formatting? | 
|---|
| [ab8c6a6] | 89 | abort( "Unhandled thread cancellation.\n" ); | 
|---|
|  | 90 | } | 
|---|
|  | 91 |  | 
|---|
| [c3b9d639] | 92 | forall(T & | is_thread(T) | IS_EXCEPTION(ThreadCancelled(T)) | 
|---|
|  | 93 | | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); }) | 
|---|
| [ab8c6a6] | 94 | void ?{}( thread_dtor_guard_t & this, | 
|---|
| [8edbe40] | 95 | T & thrd, void(*cancelHandler)(ThreadCancelled(T) &)) { | 
|---|
| [e84ab3d] | 96 | monitor$ * m = get_monitor(thrd); | 
|---|
|  | 97 | thread$ * desc = get_thread(thrd); | 
|---|
| [3ea8ad1] | 98 |  | 
|---|
|  | 99 | // Setup the monitor guard | 
|---|
| [ab8c6a6] | 100 | void (*dtor)(T& mutex this) = ^?{}; | 
|---|
| [8edbe40] | 101 | bool join = cancelHandler != (void(*)(ThreadCancelled(T)&))0; | 
|---|
| [ab8c6a6] | 102 | (this.mg){&m, (void(*)())dtor, join}; | 
|---|
| [342be43] | 103 |  | 
|---|
| [3ea8ad1] | 104 |  | 
|---|
|  | 105 | /* paranoid */ verifyf( Halted == desc->state || Cancelled == desc->state, "Expected thread to be Halted or Cancelled, was %d\n", (int)desc->state ); | 
|---|
|  | 106 |  | 
|---|
| [342be43] | 107 | // After the guard set-up and any wait, check for cancellation. | 
|---|
|  | 108 | struct _Unwind_Exception * cancellation = desc->self_cor.cancellation; | 
|---|
|  | 109 | if ( likely( 0p == cancellation ) ) { | 
|---|
|  | 110 | return; | 
|---|
|  | 111 | } else if ( Cancelled == desc->state ) { | 
|---|
|  | 112 | return; | 
|---|
|  | 113 | } | 
|---|
|  | 114 | desc->state = Cancelled; | 
|---|
| [8edbe40] | 115 | void(*defaultResumptionHandler)(ThreadCancelled(T) &) = | 
|---|
| [fcd0b9d7] | 116 | join ? cancelHandler : default_thread_cancel_handler; | 
|---|
| [342be43] | 117 |  | 
|---|
|  | 118 | // TODO: Remove explitate vtable set once trac#186 is fixed. | 
|---|
| [8edbe40] | 119 | ThreadCancelled(T) except; | 
|---|
|  | 120 | except.virtual_table = &_default_vtable; | 
|---|
| [342be43] | 121 | except.the_thread = &thrd; | 
|---|
|  | 122 | except.the_exception = __cfaehm_cancellation_exception( cancellation ); | 
|---|
| [ecfd758] | 123 | // Why is this cast required? | 
|---|
| [8edbe40] | 124 | throwResume (ThreadCancelled(T) &)except; | 
|---|
| [342be43] | 125 |  | 
|---|
|  | 126 | except.the_exception->virtual_table->free( except.the_exception ); | 
|---|
|  | 127 | free( cancellation ); | 
|---|
|  | 128 | desc->self_cor.cancellation = 0p; | 
|---|
| [ab8c6a6] | 129 | } | 
|---|
|  | 130 |  | 
|---|
|  | 131 | void ^?{}( thread_dtor_guard_t & this ) { | 
|---|
|  | 132 | ^(this.mg){}; | 
|---|
|  | 133 | } | 
|---|
|  | 134 |  | 
|---|
| [8118303] | 135 | //----------------------------------------------------------------------------- | 
|---|
|  | 136 | // Starting and stopping threads | 
|---|
| [fd54fef] | 137 | forall( T & | is_thread(T) ) | 
|---|
| [09f357ec] | 138 | void __thrd_start( T & this, void (*main_p)(T &) ) { | 
|---|
| [e84ab3d] | 139 | thread$ * this_thrd = get_thread(this); | 
|---|
| [8118303] | 140 |  | 
|---|
| [1c273d0] | 141 | disable_interrupts(); | 
|---|
| [c7a900a] | 142 | __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread); | 
|---|
| [09f357ec] | 143 |  | 
|---|
| [e8e457e] | 144 | this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP]; | 
|---|
| [ac5816d] | 145 | /* paranoid */ verify( this_thrd->context.SP ); | 
|---|
| [8118303] | 146 |  | 
|---|
| [24e321c] | 147 | schedule_thread$( this_thrd, UNPARK_LOCAL ); | 
|---|
| [a3821fa] | 148 | enable_interrupts(); | 
|---|
| [8118303] | 149 | } | 
|---|
|  | 150 |  | 
|---|
| [8c50aed] | 151 | //----------------------------------------------------------------------------- | 
|---|
|  | 152 | // Support for threads that don't ues the thread keyword | 
|---|
| [fd54fef] | 153 | forall( T & | sized(T) | is_thread(T) | { void ?{}(T&); } ) | 
|---|
| [65deb18] | 154 | void ?{}( scoped(T)& this ) with( this ) { | 
|---|
|  | 155 | handle{}; | 
|---|
| [09f357ec] | 156 | __thrd_start(handle, main); | 
|---|
| [bd98b58] | 157 | } | 
|---|
|  | 158 |  | 
|---|
| [fd54fef] | 159 | forall( T &, P... | sized(T) | is_thread(T) | { void ?{}(T&, P); } ) | 
|---|
| [65deb18] | 160 | void ?{}( scoped(T)& this, P params ) with( this ) { | 
|---|
|  | 161 | handle{ params }; | 
|---|
| [09f357ec] | 162 | __thrd_start(handle, main); | 
|---|
| [8118303] | 163 | } | 
|---|
|  | 164 |  | 
|---|
| [fd54fef] | 165 | forall( T & | sized(T) | is_thread(T) ) | 
|---|
| [65deb18] | 166 | void ^?{}( scoped(T)& this ) with( this ) { | 
|---|
|  | 167 | ^handle{}; | 
|---|
| [44264c5] | 168 | } | 
|---|
|  | 169 |  | 
|---|
| [ab8c6a6] | 170 | //----------------------------------------------------------------------------- | 
|---|
| [c3b9d639] | 171 | forall(T & | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled(T)) | 
|---|
|  | 172 | | { EHM_DEFAULT_VTABLE(ThreadCancelled(T)); }) | 
|---|
| [ab8c6a6] | 173 | T & join( T & this ) { | 
|---|
|  | 174 | thread_dtor_guard_t guard = { this, defaultResumptionHandler }; | 
|---|
|  | 175 | return this; | 
|---|
|  | 176 | } | 
|---|
|  | 177 |  | 
|---|
| [5d1ebb9] | 178 | //----------------------------------------------------------------------------- | 
|---|
| [2210cfc] | 179 | #define GENERATOR LCG | 
|---|
|  | 180 |  | 
|---|
| [00f5fde] | 181 | void set_seed( uint32_t seed ) { | 
|---|
| [0ebbca4] | 182 | uint32_t & state = active_thread()->random_state; | 
|---|
|  | 183 | state = __global_random_seed = seed; | 
|---|
|  | 184 | GENERATOR( state ); | 
|---|
|  | 185 | __global_random_prime = state; | 
|---|
| [c655650] | 186 | __global_random_mask = true; | 
|---|
| [00f5fde] | 187 | } // set_seed | 
|---|
| [12b5e94a] | 188 |  | 
|---|
|  | 189 | uint32_t prng( void ) {                                                                 // [0,UINT_MAX] | 
|---|
|  | 190 | uint32_t & state = active_thread()->random_state; | 
|---|
|  | 191 | return GENERATOR( state ); | 
|---|
|  | 192 | } // prng | 
|---|
| [2210cfc] | 193 |  | 
|---|
| [78b3f52] | 194 | // Local Variables: // | 
|---|
|  | 195 | // mode: c // | 
|---|
|  | 196 | // tab-width: 4 // | 
|---|
| [6a3d2e7] | 197 | // End: // | 
|---|