source: libcfa/src/concurrency/invoke.h@ 73e30dcf

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 73e30dcf was ac2b598, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Changed descriptors for concurrency to use $ prefix instead of trailing _desc

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[8def349]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// invoke.h --
8//
9// Author : Thierry Delisle
10// Created On : Tue Jan 17 12:27:26 2016
[6b0b624]11// Last Modified By : Peter A. Buhr
[09d4b22]12// Last Modified On : Thu Dec 5 16:26:03 2019
13// Update Count : 44
[8def349]14//
15
[73abe95]16#include "bits/containers.hfa"
17#include "bits/defs.hfa"
18#include "bits/locks.hfa"
[78b3f52]19
[0cf5b79]20#ifdef __cforall
[5c81105]21extern "C" {
22#endif
23
24#if ! defined(__CFA_INVOKE_PRIVATE__)
[78b3f52]25#ifndef _INVOKE_H_
26#define _INVOKE_H_
27
[597c34a3]28#ifdef __ARM_ARCH
29 // function prototypes are only really used by these macros on ARM
30 void disable_global_interrupts();
31 void enable_global_interrupts();
32
33 #define TL_GET( member ) ( { __typeof__( kernelTLS.member ) target; \
34 disable_global_interrupts(); \
35 target = kernelTLS.member; \
36 enable_global_interrupts(); \
37 target; } )
38 #define TL_SET( member, value ) disable_global_interrupts(); \
39 kernelTLS.member = value; \
40 enable_global_interrupts();
41#else
42 #define TL_GET( member ) kernelTLS.member
43 #define TL_SET( member, value ) kernelTLS.member = value;
44#endif
45
[0cf5b79]46 #ifdef __cforall
[025278e]47 extern "Cforall" {
[21184e3]48 extern __attribute__((aligned(128))) thread_local struct KernelThreadData {
[ac2b598]49 struct $thread * volatile this_thread;
[b10affd]50 struct processor * volatile this_processor;
51
52 struct {
53 volatile unsigned short disable_count;
54 volatile bool enabled;
55 volatile bool in_progress;
56 } preemption_state;
[21184e3]57
58 uint32_t rand_seed;
[afc2427]59 } kernelTLS __attribute__ ((tls_model ( "initial-exec" )));
[025278e]60 }
[4c1b48f3]61 #endif
[025278e]62
[b2f6113]63 struct __stack_context_t {
64 void * SP;
65 void * FP;
66 };
67
68 // low adresses : +----------------------+ <- start of allocation
69 // | optional guard page |
70 // +----------------------+ <- __stack_t.limit
71 // | |
72 // | /\ /\ /\ |
73 // | || || || |
74 // | |
75 // | program stack |
76 // | |
77 // __stack_info_t.storage -> +----------------------+ <- __stack_t.base
78 // | __stack_t |
79 // high adresses : +----------------------+ <- end of allocation
80
81 struct __stack_t {
82 // stack grows towards stack limit
83 void * limit;
84
85 // base of stack
86 void * base;
87 };
88
89 struct __stack_info_t {
90 // pointer to stack
91 struct __stack_t * storage;
[025278e]92 };
93
[b0c7419]94 enum coroutine_state { Halted, Start, Primed, Inactive, Active, Rerun };
95 enum __Preemption_Reason { __NO_PREEMPTION, __ALARM_PREEMPTION, __POLL_PREEMPTION, __MANUAL_PREEMPTION };
[025278e]96
[ac2b598]97 struct $coroutine {
[c7a900a]98 // context that is switch during a __cfactx_switch
[b2f6113]99 struct __stack_context_t context;
100
[76e069f]101 // stack information of the coroutine
[b2f6113]102 struct __stack_info_t stack;
[76e069f]103
[e8e457e]104 // textual name for coroutine/task
[76e069f]105 const char * name;
106
107 // current execution status for coroutine
108 enum coroutine_state state;
[b2f6113]109
[76e069f]110 // first coroutine to resume this one
[ac2b598]111 struct $coroutine * starter;
[76e069f]112
113 // last coroutine to resume this one
[ac2b598]114 struct $coroutine * last;
[76e069f]115
116 // If non-null stack must be unwound with this exception
117 struct _Unwind_Exception * cancellation;
118
[025278e]119 };
120
[f23b685]121 // struct which calls the monitor is accepting
[025278e]122 struct __waitfor_mask_t {
123 // the index of the accepted function, -1 if none
124 short * accepted;
125
126 // list of acceptable functions, null if any
[b1672e1]127 __cfa_anonymous_object( __small_array_t(struct __acceptable_t) );
[025278e]128 };
129
[ac2b598]130 struct $monitor {
[025278e]131 // spinlock to protect internal data
[ea7d2b0]132 struct __spinlock_t lock;
[025278e]133
134 // current owner of the monitor
[ac2b598]135 struct $thread * owner;
[025278e]136
137 // queue of threads that are blocked waiting for the monitor
[ac2b598]138 __queue_t(struct $thread) entry_queue;
[025278e]139
140 // stack of conditions to run next once we exit the monitor
[0cf5b79]141 __stack_t(struct __condition_criterion_t) signal_stack;
[025278e]142
143 // monitor routines can be called recursively, we need to keep track of that
144 unsigned int recursion;
145
146 // mask used to know if some thread is waiting for something while holding the monitor
147 struct __waitfor_mask_t mask;
148
149 // node used to signal the dtor in a waitfor dtor
150 struct __condition_node_t * dtor_node;
151 };
152
153 struct __monitor_group_t {
154 // currently held monitors
[ac2b598]155 __cfa_anonymous_object( __small_array_t($monitor*) );
[025278e]156
157 // last function that acquired monitors
[c1a9c86]158 fptr_t func;
[025278e]159 };
160
[ac2b598]161 struct $thread {
[025278e]162 // Core threading fields
[c7a900a]163 // context that is switch during a __cfactx_switch
[e8e457e]164 struct __stack_context_t context;
165
166 // current execution status for coroutine
[9f575ea]167 volatile int state;
[3381ed7]168 enum __Preemption_Reason preempted;
[e8e457e]169
[5c1a531]170 //SKULLDUGGERY errno is not save in the thread data structure because returnToKernel appears to be the only function to require saving and restoring it
171
[025278e]172 // coroutine body used to store context
[ac2b598]173 struct $coroutine self_cor;
[025278e]174
[82c948c]175 // current active context
[ac2b598]176 struct $coroutine * curr_cor;
[82c948c]177
[025278e]178 // monitor body used for mutual exclusion
[ac2b598]179 struct $monitor self_mon;
[025278e]180
181 // pointer to monitor with sufficient lifetime for current monitors
[ac2b598]182 struct $monitor * self_mon_p;
[025278e]183
[de6319f]184 // pointer to the cluster on which the thread is running
185 struct cluster * curr_cluster;
186
[025278e]187 // monitors currently held by this thread
188 struct __monitor_group_t monitors;
189
190 // Link lists fields
191 // instrusive link field for threads
[ac2b598]192 struct $thread * next;
[f7d6bb0]193
[de94a60]194 struct {
[ac2b598]195 struct $thread * next;
196 struct $thread * prev;
[de94a60]197 } node;
[212c2187]198 };
199
200 #ifdef __cforall
201 extern "Cforall" {
[ac2b598]202 static inline $thread *& get_next( $thread & this ) __attribute__((const)) {
[0cf5b79]203 return this.next;
204 }
205
[ac2b598]206 static inline [$thread *&, $thread *& ] __get( $thread & this ) __attribute__((const)) {
[de94a60]207 return this.node.[next, prev];
208 }
209
[0cf5b79]210 static inline void ?{}(__monitor_group_t & this) {
[121be3e]211 (this.data){0p};
[0cf5b79]212 (this.size){0};
213 (this.func){NULL};
214 }
215
[ac2b598]216 static inline void ?{}(__monitor_group_t & this, struct $monitor ** data, __lock_size_t size, fptr_t func) {
[0cf5b79]217 (this.data){data};
218 (this.size){size};
219 (this.func){func};
[025278e]220 }
221
[8c50aed]222 static inline bool ?==?( const __monitor_group_t & lhs, const __monitor_group_t & rhs ) __attribute__((const)) {
[0cf5b79]223 if( (lhs.data != 0) != (rhs.data != 0) ) return false;
[025278e]224 if( lhs.size != rhs.size ) return false;
225 if( lhs.func != rhs.func ) return false;
226
227 // Check that all the monitors match
228 for( int i = 0; i < lhs.size; i++ ) {
229 // If not a match, check next function
230 if( lhs[i] != rhs[i] ) return false;
231 }
232
233 return true;
234 }
[0cf5b79]235
236 static inline void ?=?(__monitor_group_t & lhs, const __monitor_group_t & rhs) {
237 lhs.data = rhs.data;
238 lhs.size = rhs.size;
239 lhs.func = rhs.func;
240 }
[025278e]241 }
242 #endif
[b18830e]243
[5c81105]244#endif //_INVOKE_H_
245#else //! defined(__CFA_INVOKE_PRIVATE__)
246#ifndef _INVOKE_PRIVATE_H_
247#define _INVOKE_PRIVATE_H_
[b227f68]248
[025278e]249 struct machine_context_t {
250 void *SP;
251 void *FP;
252 void *PC;
253 };
254
255 // assembler routines that performs the context switch
[c7a900a]256 extern void __cfactx_invoke_stub( void );
257 extern void __cfactx_switch( struct __stack_context_t * from, struct __stack_context_t * to ) asm ("__cfactx_switch");
[212c2187]258 // void CtxStore ( void * this ) asm ("CtxStore");
259 // void CtxRet ( void * dst ) asm ("CtxRet");
[025278e]260
[5c81105]261#endif //_INVOKE_PRIVATE_H_
262#endif //! defined(__CFA_INVOKE_PRIVATE__)
[0cf5b79]263#ifdef __cforall
[5c81105]264}
265#endif
[6b0b624]266
267// Local Variables: //
268// mode: c //
269// tab-width: 4 //
270// End: //
Note: See TracBrowser for help on using the repository browser.