source: src/libcfa/concurrency/thread.c@ a40d503

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since a40d503 was c2b9f21, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Removed libhdr, moved its content to bits

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[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
12// Last Modified On : Fri Jul 21 22:34:46 2017
13// Update Count : 1
[78b3f52]14//
15
[75a17f1]16#include "thread"
[78b3f52]17
[75f3522]18#include "kernel_private.h"
[8118303]19
20#define __CFA_INVOKE_PRIVATE__
21#include "invoke.h"
22
[bd98b58]23extern "C" {
[8fcbb4c]24 #include <fenv.h>
[bd98b58]25 #include <stddef.h>
26}
27
[4e6fb8e]28extern volatile thread_local processor * this_processor;
[8118303]29
30//-----------------------------------------------------------------------------
31// Thread ctors and dtors
32
[242a902]33void ?{}(thread_desc& this) {
[b18830e]34 (this.self_cor){};
35 this.self_cor.name = "Anonymous Coroutine";
36 this.self_mon.owner = &this;
37 this.self_mon.recursion = 1;
38 this.self_mon_p = &this.self_mon;
[242a902]39 this.next = NULL;
[5ea06d6]40
[b18830e]41 (this.monitors){ &this.self_mon_p, 1, (fptr_t)0 };
[8118303]42}
43
[242a902]44void ^?{}(thread_desc& this) {
[b18830e]45 ^(this.self_cor){};
[8118303]46}
47
[242a902]48forall( dtype T | sized(T) | is_thread(T) | { void ?{}(T&); } )
49void ?{}( scoped(T)& this ) {
50 (this.handle){};
[83a071f9]51 __thrd_start(this.handle);
[8118303]52}
53
[242a902]54forall( dtype T, ttype P | sized(T) | is_thread(T) | { void ?{}(T&, P); } )
55void ?{}( scoped(T)& this, P params ) {
56 (this.handle){ params };
[83a071f9]57 __thrd_start(this.handle);
[8118303]58}
59
[9f1695b]60forall( dtype T | sized(T) | is_thread(T) )
[242a902]61void ^?{}( scoped(T)& this ) {
62 ^(this.handle){};
[8118303]63}
64
65//-----------------------------------------------------------------------------
66// Starting and stopping threads
[0c92c9f]67forall( dtype T | is_thread(T) )
[83a071f9]68void __thrd_start( T& this ) {
[c3acb841]69 coroutine_desc* thrd_c = get_coroutine(this);
[348006f]70 thread_desc* thrd_h = get_thread (this);
[1c273d0]71 thrd_c->last = this_coroutine;
[8118303]72
[36982fc]73 // __cfaabi_dbg_print_safe("Thread start : %p (t %p, c %p)\n", this, thrd_c, thrd_h);
[8118303]74
[1c273d0]75 disable_interrupts();
[8118303]76 create_stack(&thrd_c->stack, thrd_c->stack.size);
[1c273d0]77 this_coroutine = thrd_c;
[83a071f9]78 CtxStart(&this, CtxInvokeThread);
[1c273d0]79 assert( thrd_c->last->stack.context );
[8118303]80 CtxSwitch( thrd_c->last->stack.context, thrd_c->stack.context );
81
[75f3522]82 ScheduleThread(thrd_h);
[36982fc]83 enable_interrupts( __cfaabi_dbg_ctx );
[8118303]84}
85
[bd98b58]86void yield( void ) {
[3175147]87 BlockInternal( this_thread );
[bd98b58]88}
89
[44264c5]90void yield( unsigned times ) {
91 for( unsigned i = 0; i < times; i++ ) {
92 yield();
93 }
94}
95
[c3acb841]96void ThreadCtxSwitch(coroutine_desc* src, coroutine_desc* dst) {
[0c92c9f]97 // set state of current coroutine to inactive
[1c273d0]98 src->state = src->state == Halted ? Halted : Inactive;
[75f3522]99 dst->state = Active;
[0c92c9f]100
[75f3522]101 //update the last resumer
102 dst->last = src;
[0c92c9f]103
[75f3522]104 // set new coroutine that the processor is executing
105 // and context switch to it
[1c273d0]106 this_coroutine = dst;
107 assert( src->stack.context );
[0c92c9f]108 CtxSwitch( src->stack.context, dst->stack.context );
[1c273d0]109 this_coroutine = src;
[0c92c9f]110
111 // set state of new coroutine to active
[1c273d0]112 dst->state = dst->state == Halted ? Halted : Inactive;
[0c92c9f]113 src->state = Active;
114}
115
[78b3f52]116// Local Variables: //
117// mode: c //
118// tab-width: 4 //
[6a3d2e7]119// End: //
Note: See TracBrowser for help on using the repository browser.