[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
|
---|
[2210cfc] | 12 | // Last Modified On : Sun Jan 9 19:06:45 2022
|
---|
| 13 | // Update Count : 48
|
---|
[8def349] | 14 | //
|
---|
| 15 |
|
---|
[73abe95] | 16 | #include "bits/containers.hfa"
|
---|
| 17 | #include "bits/defs.hfa"
|
---|
| 18 | #include "bits/locks.hfa"
|
---|
[3e2b9c9] | 19 | #include "kernel/fwd.hfa"
|
---|
[78b3f52] | 20 |
|
---|
[0cf5b79] | 21 | #ifdef __cforall
|
---|
[82f4063] | 22 | #include "containers/list.hfa"
|
---|
[5c81105] | 23 | extern "C" {
|
---|
| 24 | #endif
|
---|
| 25 |
|
---|
| 26 | #if ! defined(__CFA_INVOKE_PRIVATE__)
|
---|
[78b3f52] | 27 | #ifndef _INVOKE_H_
|
---|
| 28 | #define _INVOKE_H_
|
---|
| 29 |
|
---|
[eaf269d] | 30 | enum { DEFAULT_STACK_SIZE = 65000 };
|
---|
| 31 |
|
---|
[80ec409] | 32 | struct __cfaehm_try_resume_node;
|
---|
| 33 | struct __cfaehm_base_exception_t;
|
---|
| 34 | struct exception_context_t {
|
---|
| 35 | struct __cfaehm_try_resume_node * top_resume;
|
---|
| 36 | struct __cfaehm_base_exception_t * current_exception;
|
---|
| 37 | };
|
---|
| 38 |
|
---|
[b2f6113] | 39 | struct __stack_context_t {
|
---|
| 40 | void * SP;
|
---|
| 41 | void * FP;
|
---|
| 42 | };
|
---|
| 43 |
|
---|
| 44 | // low adresses : +----------------------+ <- start of allocation
|
---|
| 45 | // | optional guard page |
|
---|
| 46 | // +----------------------+ <- __stack_t.limit
|
---|
| 47 | // | |
|
---|
| 48 | // | /\ /\ /\ |
|
---|
| 49 | // | || || || |
|
---|
| 50 | // | |
|
---|
| 51 | // | program stack |
|
---|
| 52 | // | |
|
---|
| 53 | // __stack_info_t.storage -> +----------------------+ <- __stack_t.base
|
---|
| 54 | // | __stack_t |
|
---|
| 55 | // high adresses : +----------------------+ <- end of allocation
|
---|
| 56 |
|
---|
| 57 | struct __stack_t {
|
---|
| 58 | // stack grows towards stack limit
|
---|
| 59 | void * limit;
|
---|
| 60 |
|
---|
| 61 | // base of stack
|
---|
| 62 | void * base;
|
---|
[80ec409] | 63 |
|
---|
| 64 | // Information for exception handling.
|
---|
| 65 | struct exception_context_t exception_context;
|
---|
[b2f6113] | 66 | };
|
---|
| 67 |
|
---|
| 68 | struct __stack_info_t {
|
---|
| 69 | // pointer to stack
|
---|
| 70 | struct __stack_t * storage;
|
---|
[025278e] | 71 | };
|
---|
| 72 |
|
---|
[3ea8ad1] | 73 | enum __Coroutine_State { Halted, Start, Primed, Blocked, Ready, Active, Cancelled, Halting };
|
---|
[025278e] | 74 |
|
---|
[e84ab3d] | 75 | struct coroutine$ {
|
---|
[c7a900a] | 76 | // context that is switch during a __cfactx_switch
|
---|
[b2f6113] | 77 | struct __stack_context_t context;
|
---|
| 78 |
|
---|
[76e069f] | 79 | // stack information of the coroutine
|
---|
[b2f6113] | 80 | struct __stack_info_t stack;
|
---|
[76e069f] | 81 |
|
---|
[e8e457e] | 82 | // textual name for coroutine/task
|
---|
[76e069f] | 83 | const char * name;
|
---|
| 84 |
|
---|
| 85 | // current execution status for coroutine
|
---|
[ff79d5e] | 86 | enum __Coroutine_State state;
|
---|
[b2f6113] | 87 |
|
---|
[76e069f] | 88 | // first coroutine to resume this one
|
---|
[e84ab3d] | 89 | struct coroutine$ * starter;
|
---|
[76e069f] | 90 |
|
---|
| 91 | // last coroutine to resume this one
|
---|
[e84ab3d] | 92 | struct coroutine$ * last;
|
---|
[76e069f] | 93 |
|
---|
| 94 | // If non-null stack must be unwound with this exception
|
---|
| 95 | struct _Unwind_Exception * cancellation;
|
---|
| 96 |
|
---|
[025278e] | 97 | };
|
---|
[038110a] | 98 | // Wrapper for gdb
|
---|
[e84ab3d] | 99 | struct cfathread_coroutine_t { struct coroutine$ debug; };
|
---|
[025278e] | 100 |
|
---|
[e84ab3d] | 101 | static inline struct __stack_t * __get_stack( struct coroutine$ * cor ) {
|
---|
[80ec409] | 102 | return (struct __stack_t*)(((uintptr_t)cor->stack.storage) & ((uintptr_t)-2));
|
---|
| 103 | }
|
---|
[210b8b3] | 104 |
|
---|
[f23b685] | 105 | // struct which calls the monitor is accepting
|
---|
[025278e] | 106 | struct __waitfor_mask_t {
|
---|
| 107 | // the index of the accepted function, -1 if none
|
---|
| 108 | short * accepted;
|
---|
| 109 |
|
---|
| 110 | // list of acceptable functions, null if any
|
---|
[b1672e1] | 111 | __cfa_anonymous_object( __small_array_t(struct __acceptable_t) );
|
---|
[025278e] | 112 | };
|
---|
| 113 |
|
---|
[e84ab3d] | 114 | struct monitor$ {
|
---|
[025278e] | 115 | // spinlock to protect internal data
|
---|
[ea7d2b0] | 116 | struct __spinlock_t lock;
|
---|
[025278e] | 117 |
|
---|
| 118 | // current owner of the monitor
|
---|
[e84ab3d] | 119 | struct thread$ * owner;
|
---|
[025278e] | 120 |
|
---|
| 121 | // queue of threads that are blocked waiting for the monitor
|
---|
[e84ab3d] | 122 | __queue_t(struct thread$) entry_queue;
|
---|
[025278e] | 123 |
|
---|
| 124 | // stack of conditions to run next once we exit the monitor
|
---|
[0cf5b79] | 125 | __stack_t(struct __condition_criterion_t) signal_stack;
|
---|
[025278e] | 126 |
|
---|
| 127 | // monitor routines can be called recursively, we need to keep track of that
|
---|
| 128 | unsigned int recursion;
|
---|
| 129 |
|
---|
| 130 | // mask used to know if some thread is waiting for something while holding the monitor
|
---|
| 131 | struct __waitfor_mask_t mask;
|
---|
| 132 |
|
---|
| 133 | // node used to signal the dtor in a waitfor dtor
|
---|
| 134 | struct __condition_node_t * dtor_node;
|
---|
| 135 | };
|
---|
[038110a] | 136 | // Wrapper for gdb
|
---|
[e84ab3d] | 137 | struct cfathread_monitor_t { struct monitor$ debug; };
|
---|
[025278e] | 138 |
|
---|
| 139 | struct __monitor_group_t {
|
---|
| 140 | // currently held monitors
|
---|
[e84ab3d] | 141 | __cfa_anonymous_object( __small_array_t(monitor$*) );
|
---|
[025278e] | 142 |
|
---|
| 143 | // last function that acquired monitors
|
---|
[c1a9c86] | 144 | fptr_t func;
|
---|
[025278e] | 145 | };
|
---|
| 146 |
|
---|
[b798713] | 147 | // Link lists fields
|
---|
| 148 | // instrusive link field for threads
|
---|
| 149 | struct __thread_desc_link {
|
---|
[e84ab3d] | 150 | struct thread$ * next;
|
---|
[1b143de] | 151 | volatile unsigned long long ts;
|
---|
[b798713] | 152 | };
|
---|
| 153 |
|
---|
[e84ab3d] | 154 | struct thread$ {
|
---|
[025278e] | 155 | // Core threading fields
|
---|
[c7a900a] | 156 | // context that is switch during a __cfactx_switch
|
---|
[e8e457e] | 157 | struct __stack_context_t context;
|
---|
| 158 |
|
---|
[d3ba775] | 159 | // Link lists fields
|
---|
| 160 | // instrusive link field for threads
|
---|
| 161 | struct __thread_desc_link link;
|
---|
| 162 |
|
---|
[e8e457e] | 163 | // current execution status for coroutine
|
---|
[6a77224] | 164 | // Possible values are:
|
---|
| 165 | // - TICKET_BLOCKED (-1) thread is blocked
|
---|
| 166 | // - TICKET_RUNNING ( 0) thread is running
|
---|
| 167 | // - TICKET_UNBLOCK ( 1) thread should ignore next block
|
---|
[ff79d5e] | 168 | volatile int ticket;
|
---|
| 169 | enum __Coroutine_State state:8;
|
---|
| 170 | enum __Preemption_Reason preempted:8;
|
---|
[e8e457e] | 171 |
|
---|
[ab5baab] | 172 | bool corctx_flag;
|
---|
| 173 |
|
---|
[5c1a531] | 174 | //SKULLDUGGERY errno is not save in the thread data structure because returnToKernel appears to be the only function to require saving and restoring it
|
---|
| 175 |
|
---|
[37ba662] | 176 | // pointer to the cluster on which the thread is running
|
---|
| 177 | struct cluster * curr_cluster;
|
---|
| 178 |
|
---|
[24e321c] | 179 | // preferred ready-queue or CPU
|
---|
[d3ba775] | 180 | unsigned preferred;
|
---|
[37ba662] | 181 |
|
---|
[025278e] | 182 | // coroutine body used to store context
|
---|
[e84ab3d] | 183 | struct coroutine$ self_cor;
|
---|
[025278e] | 184 |
|
---|
[82c948c] | 185 | // current active context
|
---|
[e84ab3d] | 186 | struct coroutine$ * curr_cor;
|
---|
[82c948c] | 187 |
|
---|
[025278e] | 188 | // monitor body used for mutual exclusion
|
---|
[e84ab3d] | 189 | struct monitor$ self_mon;
|
---|
[025278e] | 190 |
|
---|
| 191 | // pointer to monitor with sufficient lifetime for current monitors
|
---|
[e84ab3d] | 192 | struct monitor$ * self_mon_p;
|
---|
[025278e] | 193 |
|
---|
| 194 | // monitors currently held by this thread
|
---|
| 195 | struct __monitor_group_t monitors;
|
---|
| 196 |
|
---|
[c131a02] | 197 | // used to put threads on user data structures
|
---|
| 198 | struct {
|
---|
[e84ab3d] | 199 | struct thread$ * next;
|
---|
| 200 | struct thread$ * back;
|
---|
[c131a02] | 201 | } seqable;
|
---|
| 202 |
|
---|
[82f4063] | 203 | // used to put threads on dlist data structure
|
---|
[e84ab3d] | 204 | __cfa_dlink(thread$);
|
---|
[82f4063] | 205 |
|
---|
[de94a60] | 206 | struct {
|
---|
[e84ab3d] | 207 | struct thread$ * next;
|
---|
| 208 | struct thread$ * prev;
|
---|
[de94a60] | 209 | } node;
|
---|
[ae66348] | 210 |
|
---|
[89eff25] | 211 | struct processor * last_proc;
|
---|
| 212 |
|
---|
[2210cfc] | 213 | uint32_t random_state; // fast random numbers
|
---|
| 214 |
|
---|
[b4b63e8] | 215 | #if defined( __CFA_WITH_VERIFY__ )
|
---|
[ac12f1f] | 216 | void * canary;
|
---|
[ae66348] | 217 | #endif
|
---|
[212c2187] | 218 | };
|
---|
[82f4063] | 219 | #ifdef __cforall
|
---|
[e84ab3d] | 220 | P9_EMBEDDED( thread$, dlink(thread$) )
|
---|
[82f4063] | 221 | #endif
|
---|
[038110a] | 222 | // Wrapper for gdb
|
---|
[e84ab3d] | 223 | struct cfathread_thread_t { struct thread$ debug; };
|
---|
[212c2187] | 224 |
|
---|
[ae66348] | 225 | #ifdef __CFA_DEBUG__
|
---|
[e84ab3d] | 226 | void __cfaabi_dbg_record_thrd(thread$ & this, bool park, const char prev_name[]);
|
---|
[ae66348] | 227 | #else
|
---|
| 228 | #define __cfaabi_dbg_record_thrd(x, y, z)
|
---|
| 229 | #endif
|
---|
| 230 |
|
---|
[212c2187] | 231 | #ifdef __cforall
|
---|
| 232 | extern "Cforall" {
|
---|
[6a490b2] | 233 |
|
---|
[e84ab3d] | 234 | static inline thread$ *& get_next( thread$ & this ) __attribute__((const)) {
|
---|
[b798713] | 235 | return this.link.next;
|
---|
[0cf5b79] | 236 | }
|
---|
| 237 |
|
---|
[e84ab3d] | 238 | static inline [thread$ *&, thread$ *& ] __get( thread$ & this ) __attribute__((const)) {
|
---|
[de94a60] | 239 | return this.node.[next, prev];
|
---|
| 240 | }
|
---|
| 241 |
|
---|
[e84ab3d] | 242 | static inline thread$ * volatile & ?`next ( thread$ * this ) __attribute__((const)) {
|
---|
[d3314ae] | 243 | return this->seqable.next;
|
---|
[304de00] | 244 | }
|
---|
| 245 |
|
---|
[e84ab3d] | 246 | static inline thread$ *& Back( thread$ * this ) __attribute__((const)) {
|
---|
[c131a02] | 247 | return this->seqable.back;
|
---|
| 248 | }
|
---|
| 249 |
|
---|
[e84ab3d] | 250 | static inline thread$ *& Next( thread$ * this ) __attribute__((const)) {
|
---|
[82f4063] | 251 | return this->seqable.next;
|
---|
[c131a02] | 252 | }
|
---|
| 253 |
|
---|
[e84ab3d] | 254 | static inline bool listed( thread$ * this ) {
|
---|
[c131a02] | 255 | return this->seqable.next != 0p;
|
---|
| 256 | }
|
---|
| 257 |
|
---|
[0cf5b79] | 258 | static inline void ?{}(__monitor_group_t & this) {
|
---|
[121be3e] | 259 | (this.data){0p};
|
---|
[0cf5b79] | 260 | (this.size){0};
|
---|
| 261 | (this.func){NULL};
|
---|
| 262 | }
|
---|
| 263 |
|
---|
[e84ab3d] | 264 | static inline void ?{}(__monitor_group_t & this, struct monitor$ ** data, __lock_size_t size, fptr_t func) {
|
---|
[0cf5b79] | 265 | (this.data){data};
|
---|
| 266 | (this.size){size};
|
---|
| 267 | (this.func){func};
|
---|
[025278e] | 268 | }
|
---|
| 269 |
|
---|
[8c50aed] | 270 | static inline bool ?==?( const __monitor_group_t & lhs, const __monitor_group_t & rhs ) __attribute__((const)) {
|
---|
[0cf5b79] | 271 | if( (lhs.data != 0) != (rhs.data != 0) ) return false;
|
---|
[025278e] | 272 | if( lhs.size != rhs.size ) return false;
|
---|
| 273 | if( lhs.func != rhs.func ) return false;
|
---|
| 274 |
|
---|
| 275 | // Check that all the monitors match
|
---|
| 276 | for( int i = 0; i < lhs.size; i++ ) {
|
---|
| 277 | // If not a match, check next function
|
---|
| 278 | if( lhs[i] != rhs[i] ) return false;
|
---|
| 279 | }
|
---|
| 280 |
|
---|
| 281 | return true;
|
---|
| 282 | }
|
---|
[0cf5b79] | 283 |
|
---|
| 284 | static inline void ?=?(__monitor_group_t & lhs, const __monitor_group_t & rhs) {
|
---|
| 285 | lhs.data = rhs.data;
|
---|
| 286 | lhs.size = rhs.size;
|
---|
| 287 | lhs.func = rhs.func;
|
---|
| 288 | }
|
---|
[025278e] | 289 | }
|
---|
| 290 | #endif
|
---|
[b18830e] | 291 |
|
---|
[5c81105] | 292 | #endif //_INVOKE_H_
|
---|
| 293 | #else //! defined(__CFA_INVOKE_PRIVATE__)
|
---|
| 294 | #ifndef _INVOKE_PRIVATE_H_
|
---|
| 295 | #define _INVOKE_PRIVATE_H_
|
---|
[b227f68] | 296 |
|
---|
[025278e] | 297 | struct machine_context_t {
|
---|
| 298 | void *SP;
|
---|
| 299 | void *FP;
|
---|
| 300 | void *PC;
|
---|
| 301 | };
|
---|
| 302 |
|
---|
| 303 | // assembler routines that performs the context switch
|
---|
[c7a900a] | 304 | extern void __cfactx_invoke_stub( void );
|
---|
| 305 | extern void __cfactx_switch( struct __stack_context_t * from, struct __stack_context_t * to ) asm ("__cfactx_switch");
|
---|
[212c2187] | 306 | // void CtxStore ( void * this ) asm ("CtxStore");
|
---|
| 307 | // void CtxRet ( void * dst ) asm ("CtxRet");
|
---|
[025278e] | 308 |
|
---|
[5c81105] | 309 | #endif //_INVOKE_PRIVATE_H_
|
---|
| 310 | #endif //! defined(__CFA_INVOKE_PRIVATE__)
|
---|
[0cf5b79] | 311 | #ifdef __cforall
|
---|
[5c81105] | 312 | }
|
---|
| 313 | #endif
|
---|
[6b0b624] | 314 |
|
---|
| 315 | // Local Variables: //
|
---|
| 316 | // mode: c //
|
---|
| 317 | // tab-width: 4 //
|
---|
| 318 | // End: //
|
---|