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

ADTast-experimentalpthread-emulationqualifiedEnum
Last change on this file since c715e5f was b035046, checked in by Thierry Delisle <tdelisle@…>, 2 years ago

changed some MAX to ULLONG_MAX to avoid the memory access where possible and removed some -1u I missed last time

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