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

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since ab8c6a6 was ab8c6a6, checked in by Andrew Beach <ajbeach@…>, 5 years ago

Thread Cancellation, a test for it and a required fix to Specialization.

  • Property mode set to 100644
File size: 4.6 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 : Wed Dec 4 09:17:49 2019
13// Update Count : 9
14//
15
16#define __cforall_thread__
17
18#include "thread.hfa"
19
20#include "kernel_private.hfa"
21#include "exception.hfa"
22
23#define __CFA_INVOKE_PRIVATE__
24#include "invoke.h"
25
26//-----------------------------------------------------------------------------
27// Thread ctors and dtors
28void ?{}($thread & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
29 context{ 0p, 0p };
30 self_cor{ name, storage, storageSize };
31 ticket = 1;
32 state = Start;
33 preempted = __NO_PREEMPTION;
34 curr_cor = &self_cor;
35 self_mon.owner = &this;
36 self_mon.recursion = 1;
37 self_mon_p = &self_mon;
38 curr_cluster = &cl;
39 link.next = 0p;
40 link.prev = 0p;
41 link.preferred = -1;
42 #if defined( __CFA_WITH_VERIFY__ )
43 canary = 0x0D15EA5E0D15EA5E;
44 #endif
45
46 node.next = 0p;
47 node.prev = 0p;
48 doregister(curr_cluster, this);
49
50 monitors{ &self_mon_p, 1, (fptr_t)0 };
51}
52
53void ^?{}($thread& this) with( this ) {
54 #if defined( __CFA_WITH_VERIFY__ )
55 canary = 0xDEADDEADDEADDEAD;
56 #endif
57 unregister(curr_cluster, this);
58 ^self_cor{};
59}
60
61FORALL_DATA_INSTANCE(ThreadCancelled, (dtype thread_t), (thread_t))
62
63forall(dtype T)
64void copy(ThreadCancelled(T) * dst, ThreadCancelled(T) * src) {
65 dst->virtual_table = src->virtual_table;
66 dst->the_thread = src->the_thread;
67 dst->the_exception = src->the_exception;
68}
69
70forall(dtype T)
71const char * msg(ThreadCancelled(T) *) {
72 return "ThreadCancelled";
73}
74
75struct __cfaehm_node {
76 struct _Unwind_Exception unwind_exception;
77 struct __cfaehm_node * next;
78 int handler_index;
79};
80
81forall(dtype T)
82static void default_thread_cancel_handler(ThreadCancelled(T) & ) {
83 abort( "Unhandled thread cancellation.\n" );
84}
85
86forall(dtype T | is_thread(T) | IS_EXCEPTION(ThreadCancelled, (T)))
87void ?{}( thread_dtor_guard_t & this,
88 T & thrd, void(*defaultResumptionHandler)(ThreadCancelled(T) &)) {
89 $monitor * m = get_monitor(thrd);
90 void (*dtor)(T& mutex this) = ^?{};
91 bool join = defaultResumptionHandler != (void(*)(ThreadCancelled(T)&))0;
92 (this.mg){&m, (void(*)())dtor, join};
93 {
94 $thread * desc = get_thread(thrd);
95 struct _Unwind_Exception * cancellation = desc->self_cor.cancellation;
96 if ( likely(0p == cancellation) ) {
97 return;
98 } else if ( Cancelled == desc->state ) {
99 return;
100 }
101 desc->state = Cancelled;
102 if (!join) {
103 defaultResumptionHandler = default_thread_cancel_handler;
104 }
105 ThreadCancelled(T) except;
106 // TODO: Remove explitate vtable set once trac#186 is fixed.
107 except.virtual_table = &get_exception_vtable(&except);
108 except.the_thread = &thrd;
109 except.the_exception = (exception_t *)(1 + (__cfaehm_node *)cancellation);
110 throwResume except;
111
112 except.the_exception->virtual_table->free( except.the_exception );
113 free( cancellation );
114 desc->self_cor.cancellation = 0p;
115 }
116}
117
118void ^?{}( thread_dtor_guard_t & this ) {
119 ^(this.mg){};
120}
121
122//-----------------------------------------------------------------------------
123// Starting and stopping threads
124forall( dtype T | is_thread(T) )
125void __thrd_start( T & this, void (*main_p)(T &) ) {
126 $thread * this_thrd = get_thread(this);
127
128 disable_interrupts();
129 __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread);
130
131 this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
132 verify( this_thrd->context.SP );
133
134 __schedule_thread( (__processor_id_t *)kernelTLS.this_processor, this_thrd);
135 enable_interrupts( __cfaabi_dbg_ctx );
136}
137
138//-----------------------------------------------------------------------------
139// Support for threads that don't ues the thread keyword
140forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T&); } )
141void ?{}( scoped(T)& this ) with( this ) {
142 handle{};
143 __thrd_start(handle, main);
144}
145
146forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
147void ?{}( scoped(T)& this, P params ) with( this ) {
148 handle{ params };
149 __thrd_start(handle, main);
150}
151
152forall( dtype T | sized(T) | is_thread(T) )
153void ^?{}( scoped(T)& this ) with( this ) {
154 ^handle{};
155}
156
157//-----------------------------------------------------------------------------
158forall(dtype T | is_thread(T) | IS_RESUMPTION_EXCEPTION(ThreadCancelled, (T)))
159T & join( T & this ) {
160 thread_dtor_guard_t guard = { this, defaultResumptionHandler };
161 return this;
162}
163
164// Local Variables: //
165// mode: c //
166// tab-width: 4 //
167// End: //
Note: See TracBrowser for help on using the repository browser.