source: libcfa/src/concurrency/thread.cfa@ 015925a

ADT ast-experimental pthread-emulation qualifiedEnum
Last change on this file since 015925a was 015925a, checked in by caparsons <caparson@…>, 3 years ago

fixed new/delete issue by switching to malloc/free

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