[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 |
|
---|
[bd98b58] | 25 | extern "C" {
|
---|
[8fcbb4c] | 26 | #include <fenv.h>
|
---|
[bd98b58] | 27 | #include <stddef.h>
|
---|
| 28 | }
|
---|
| 29 |
|
---|
[b10affd] | 30 | //extern volatile thread_local processor * this_processor;
|
---|
[8118303] | 31 |
|
---|
| 32 | //-----------------------------------------------------------------------------
|
---|
| 33 | // Thread ctors and dtors
|
---|
[de6319f] | 34 | void ?{}(thread_desc & 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 };
|
---|
[e8e457e] | 37 | state = Start;
|
---|
[82c948c] | 38 | curr_cor = &self_cor;
|
---|
[65deb18] | 39 | self_mon.owner = &this;
|
---|
| 40 | self_mon.recursion = 1;
|
---|
| 41 | self_mon_p = &self_mon;
|
---|
[de6319f] | 42 | curr_cluster = &cl;
|
---|
[121be3e] | 43 | next = 0p;
|
---|
[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 |
|
---|
[65deb18] | 52 | void ^?{}(thread_desc& this) with( this ) {
|
---|
[a1a17a74] | 53 | unregister(curr_cluster, this);
|
---|
[65deb18] | 54 | ^self_cor{};
|
---|
[8118303] | 55 | }
|
---|
| 56 |
|
---|
[242a902] | 57 | forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T&); } )
|
---|
[65deb18] | 58 | void ?{}( scoped(T)& this ) with( this ) {
|
---|
| 59 | handle{};
|
---|
| 60 | __thrd_start(handle);
|
---|
[8118303] | 61 | }
|
---|
| 62 |
|
---|
[242a902] | 63 | forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
|
---|
[65deb18] | 64 | void ?{}( scoped(T)& this, P params ) with( this ) {
|
---|
| 65 | handle{ params };
|
---|
| 66 | __thrd_start(handle);
|
---|
[8118303] | 67 | }
|
---|
| 68 |
|
---|
[9f1695b] | 69 | forall( dtype T | sized(T) | is_thread(T) )
|
---|
[65deb18] | 70 | void ^?{}( scoped(T)& this ) with( this ) {
|
---|
| 71 | ^handle{};
|
---|
[8118303] | 72 | }
|
---|
| 73 |
|
---|
| 74 | //-----------------------------------------------------------------------------
|
---|
| 75 | // Starting and stopping threads
|
---|
[0c92c9f] | 76 | forall( dtype T | is_thread(T) )
|
---|
[83a071f9] | 77 | void __thrd_start( T& this ) {
|
---|
[e8e457e] | 78 | thread_desc * this_thrd = get_thread(this);
|
---|
| 79 | thread_desc * curr_thrd = TL_GET( this_thread );
|
---|
[8118303] | 80 |
|
---|
[1c273d0] | 81 | disable_interrupts();
|
---|
[83a071f9] | 82 | CtxStart(&this, CtxInvokeThread);
|
---|
[e8e457e] | 83 | this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP];
|
---|
| 84 | verify( this_thrd->context.SP );
|
---|
| 85 | CtxSwitch( &curr_thrd->context, &this_thrd->context );
|
---|
[8118303] | 86 |
|
---|
[e8e457e] | 87 | ScheduleThread(this_thrd);
|
---|
[36982fc] | 88 | enable_interrupts( __cfaabi_dbg_ctx );
|
---|
[8118303] | 89 | }
|
---|
| 90 |
|
---|
[b69ea6b] | 91 | extern "C" {
|
---|
[14a61b5] | 92 | // KERNEL ONLY
|
---|
[e8e457e] | 93 | void __finish_creation(thread_desc * this) {
|
---|
| 94 | // set new coroutine that the processor is executing
|
---|
| 95 | // and context switch to it
|
---|
| 96 | verify( kernelTLS.this_thread != this );
|
---|
| 97 | verify( kernelTLS.this_thread->context.SP );
|
---|
| 98 | CtxSwitch( &this->context, &kernelTLS.this_thread->context );
|
---|
[b69ea6b] | 99 | }
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[bd98b58] | 102 | void yield( void ) {
|
---|
[14a61b5] | 103 | // Safety note : This could cause some false positives due to preemption
|
---|
[afd550c] | 104 | verify( TL_GET( preemption_state.enabled ) );
|
---|
[b10affd] | 105 | BlockInternal( TL_GET( this_thread ) );
|
---|
[14a61b5] | 106 | // Safety note : This could cause some false positives due to preemption
|
---|
[afd550c] | 107 | verify( TL_GET( preemption_state.enabled ) );
|
---|
[bd98b58] | 108 | }
|
---|
| 109 |
|
---|
[44264c5] | 110 | void yield( unsigned times ) {
|
---|
| 111 | for( unsigned i = 0; i < times; i++ ) {
|
---|
| 112 | yield();
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[78b3f52] | 116 | // Local Variables: //
|
---|
| 117 | // mode: c //
|
---|
| 118 | // tab-width: 4 //
|
---|
[6a3d2e7] | 119 | // End: //
|
---|