[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
|
---|
[121be3e] | 12 | // Last Modified On : Wed Dec 4 09:17:49 2019
|
---|
| 13 | // Update Count : 9
|
---|
[78b3f52] | 14 | //
|
---|
| 15 |
|
---|
[2026bb6] | 16 | #define __cforall_thread__
|
---|
| 17 |
|
---|
[58b6d1b] | 18 | #include "thread.hfa"
|
---|
[78b3f52] | 19 |
|
---|
[73abe95] | 20 | #include "kernel_private.hfa"
|
---|
[8118303] | 21 |
|
---|
| 22 | #define __CFA_INVOKE_PRIVATE__
|
---|
| 23 | #include "invoke.h"
|
---|
| 24 |
|
---|
| 25 | //-----------------------------------------------------------------------------
|
---|
| 26 | // Thread ctors and dtors
|
---|
[ac2b598] | 27 | void ?{}($thread & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
|
---|
[121be3e] | 28 | context{ 0p, 0p };
|
---|
[de6319f] | 29 | self_cor{ name, storage, storageSize };
|
---|
[ff79d5e] | 30 | ticket = 1;
|
---|
[e8e457e] | 31 | state = Start;
|
---|
[3381ed7] | 32 | preempted = __NO_PREEMPTION;
|
---|
[82c948c] | 33 | curr_cor = &self_cor;
|
---|
[65deb18] | 34 | self_mon.owner = &this;
|
---|
| 35 | self_mon.recursion = 1;
|
---|
| 36 | self_mon_p = &self_mon;
|
---|
[de6319f] | 37 | curr_cluster = &cl;
|
---|
[b798713] | 38 | link.next = 0p;
|
---|
| 39 | link.prev = 0p;
|
---|
[d72c074] | 40 | link.preferred = -1;
|
---|
[b4b63e8] | 41 | #if defined( __CFA_WITH_VERIFY__ )
|
---|
| 42 | canary = 0x0D15EA5E0D15EA5E;
|
---|
| 43 | #endif
|
---|
[de94a60] | 44 |
|
---|
[121be3e] | 45 | node.next = 0p;
|
---|
| 46 | node.prev = 0p;
|
---|
[a1a17a74] | 47 | doregister(curr_cluster, this);
|
---|
[5ea06d6] | 48 |
|
---|
[65deb18] | 49 | monitors{ &self_mon_p, 1, (fptr_t)0 };
|
---|
[8118303] | 50 | }
|
---|
| 51 |
|
---|
[ac2b598] | 52 | void ^?{}($thread& this) with( this ) {
|
---|
[b4b63e8] | 53 | #if defined( __CFA_WITH_VERIFY__ )
|
---|
| 54 | canary = 0xDEADDEADDEADDEAD;
|
---|
| 55 | #endif
|
---|
[a1a17a74] | 56 | unregister(curr_cluster, this);
|
---|
[65deb18] | 57 | ^self_cor{};
|
---|
[8118303] | 58 | }
|
---|
| 59 |
|
---|
| 60 | //-----------------------------------------------------------------------------
|
---|
| 61 | // Starting and stopping threads
|
---|
[0c92c9f] | 62 | forall( dtype T | is_thread(T) )
|
---|
[09f357ec] | 63 | void __thrd_start( T & this, void (*main_p)(T &) ) {
|
---|
[ac2b598] | 64 | $thread * this_thrd = get_thread(this);
|
---|
[8118303] | 65 |
|
---|
[1c273d0] | 66 | disable_interrupts();
|
---|
[c7a900a] | 67 | __cfactx_start(main_p, get_coroutine(this), this, __cfactx_invoke_thread);
|
---|
[09f357ec] | 68 |
|
---|
[e8e457e] | 69 | this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
|
---|
| 70 | verify( this_thrd->context.SP );
|
---|
[8118303] | 71 |
|
---|
[9b1dcc2] | 72 | __schedule_thread( (__processor_id_t *)kernelTLS.this_processor, this_thrd);
|
---|
[36982fc] | 73 | enable_interrupts( __cfaabi_dbg_ctx );
|
---|
[8118303] | 74 | }
|
---|
| 75 |
|
---|
[8c50aed] | 76 | //-----------------------------------------------------------------------------
|
---|
| 77 | // Support for threads that don't ues the thread keyword
|
---|
[242a902] | 78 | forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T&); } )
|
---|
[65deb18] | 79 | void ?{}( scoped(T)& this ) with( this ) {
|
---|
| 80 | handle{};
|
---|
[09f357ec] | 81 | __thrd_start(handle, main);
|
---|
[bd98b58] | 82 | }
|
---|
| 83 |
|
---|
[242a902] | 84 | forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
|
---|
[65deb18] | 85 | void ?{}( scoped(T)& this, P params ) with( this ) {
|
---|
| 86 | handle{ params };
|
---|
[09f357ec] | 87 | __thrd_start(handle, main);
|
---|
[8118303] | 88 | }
|
---|
| 89 |
|
---|
[9f1695b] | 90 | forall( dtype T | sized(T) | is_thread(T) )
|
---|
[65deb18] | 91 | void ^?{}( scoped(T)& this ) with( this ) {
|
---|
| 92 | ^handle{};
|
---|
[44264c5] | 93 | }
|
---|
| 94 |
|
---|
[78b3f52] | 95 | // Local Variables: //
|
---|
| 96 | // mode: c //
|
---|
| 97 | // tab-width: 4 //
|
---|
[6a3d2e7] | 98 | // End: //
|
---|