source: libcfa/src/concurrency/kernel.cfa@ 13c5e19

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum stuck-waitfor-destruct
Last change on this file since 13c5e19 was 13c5e19, checked in by Thierry Delisle <tdelisle@…>, 6 years ago
  • Moved snzi and subqueues outside of ready_queue.cfa.
  • Added random.hfa with multiple prng.
  • Minor optimizations to ready-queue
  • Stats now track number of local pops( bias pops )
  • Fixed stats for io
  • Fixed calculaton of nprocessors
  • Fixed IO to work with new ready-queue
  • Property mode set to 100644
File size: 37.0 KB
RevLine 
[8118303]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// kernel.c --
8//
9// Author : Thierry Delisle
[75f3522]10// Created On : Tue Jan 17 12:27:26 2017
[6b0b624]11// Last Modified By : Peter A. Buhr
[ada0246d]12// Last Modified On : Tue May 26 22:05:19 2020
13// Update Count : 59
[8118303]14//
15
[2026bb6]16#define __cforall_thread__
[4069faad]17// #define __CFA_DEBUG_PRINT_RUNTIME_CORE__
[2026bb6]18
[8118303]19//C Includes
[c84e80a]20#include <stddef.h>
[214e8da]21#include <errno.h>
[ea8b2f7]22#include <string.h>
[9d944b2]23#include <stdio.h>
[8fcbb4c]24#include <fenv.h>
[58b6d1b]25#include <signal.h>
[9d944b2]26#include <unistd.h>
[27f5f71]27#include <limits.h> // PTHREAD_STACK_MIN
[1a3040c]28#include <sys/mman.h> // mprotect
[ada0246d]29extern "C" {
30#include <sys/resource.h>
[eb2e723]31}
[8118303]32
33//CFA Includes
[58b6d1b]34#include "time.hfa"
[73abe95]35#include "kernel_private.hfa"
36#include "preemption.hfa"
37#include "startup.hfa"
[8118303]38
39//Private includes
40#define __CFA_INVOKE_PRIVATE__
41#include "invoke.h"
42
[4069faad]43
[deca0f5]44//-----------------------------------------------------------------------------
45// Some assembly required
[1805b1b]46#if defined( __i386 )
[deca0f5]47 #define CtxGet( ctx ) \
48 __asm__ volatile ( \
49 "movl %%esp,%0\n"\
50 "movl %%ebp,%1\n"\
51 : "=rm" (ctx.SP),\
52 "=rm" (ctx.FP) \
53 )
54
55 // mxcr : SSE Status and Control bits (control bits are preserved across function calls)
56 // fcw : X87 FPU control word (preserved across function calls)
57 #define __x87_store \
58 uint32_t __mxcr; \
59 uint16_t __fcw; \
60 __asm__ volatile ( \
61 "stmxcsr %0\n" \
62 "fnstcw %1\n" \
63 : "=m" (__mxcr),\
64 "=m" (__fcw) \
65 )
66
67 #define __x87_load \
68 __asm__ volatile ( \
69 "fldcw %1\n" \
70 "ldmxcsr %0\n" \
71 ::"m" (__mxcr),\
72 "m" (__fcw) \
73 )
74
75#elif defined( __x86_64 )
76 #define CtxGet( ctx ) \
77 __asm__ volatile ( \
78 "movq %%rsp,%0\n"\
79 "movq %%rbp,%1\n"\
80 : "=rm" (ctx.SP),\
81 "=rm" (ctx.FP) \
82 )
83
84 #define __x87_store \
85 uint32_t __mxcr; \
86 uint16_t __fcw; \
87 __asm__ volatile ( \
88 "stmxcsr %0\n" \
89 "fnstcw %1\n" \
90 : "=m" (__mxcr),\
91 "=m" (__fcw) \
92 )
93
94 #define __x87_load \
95 __asm__ volatile ( \
96 "fldcw %1\n" \
97 "ldmxcsr %0\n" \
98 :: "m" (__mxcr),\
99 "m" (__fcw) \
100 )
101
102
103#elif defined( __ARM_ARCH )
104#define CtxGet( ctx ) __asm__ ( \
105 "mov %0,%%sp\n" \
106 "mov %1,%%r11\n" \
107 : "=rm" (ctx.SP), "=rm" (ctx.FP) )
108#else
109 #error unknown hardware architecture
110#endif
111
112//-----------------------------------------------------------------------------
[2ac095d]113//Start and stop routine for the kernel, declared first to make sure they run first
[8c50aed]114static void __kernel_startup (void) __attribute__(( constructor( STARTUP_PRIORITY_KERNEL ) ));
115static void __kernel_shutdown(void) __attribute__(( destructor ( STARTUP_PRIORITY_KERNEL ) ));
[2ac095d]116
[92e7631]117//-----------------------------------------------------------------------------
118// Kernel Scheduling logic
119static $thread * __next_thread(cluster * this);
[64a7146]120static bool __has_next_thread(cluster * this);
[92e7631]121static void __run_thread(processor * this, $thread * dst);
122static bool __wake_proc(processor *);
[64a7146]123static bool __wake_one(struct __processor_id_t * id, cluster * cltr);
124static void __halt(processor * this);
[2ac095d]125
[8def349]126//-----------------------------------------------------------------------------
127// Kernel storage
[b388ee81]128KERNEL_STORAGE(cluster, mainCluster);
129KERNEL_STORAGE(processor, mainProcessor);
130KERNEL_STORAGE($thread, mainThread);
131KERNEL_STORAGE(__stack_t, mainThreadCtx);
132KERNEL_STORAGE(__scheduler_RWLock_t, __scheduler_lock);
[8834751]133#if !defined(__CFA_NO_STATISTICS__)
134KERNEL_STORAGE(__stats_t, mainProcStats);
135#endif
[8def349]136
[b388ee81]137cluster * mainCluster;
138processor * mainProcessor;
139$thread * mainThread;
140__scheduler_RWLock_t * __scheduler_lock;
[eb2e723]141
[ea8b2f7]142extern "C" {
[1805b1b]143 struct { __dllist_t(cluster) list; __spinlock_t lock; } __cfa_dbg_global_clusters;
[ea8b2f7]144}
[de94a60]145
[b2f6113]146size_t __page_size = 0;
147
[bd98b58]148//-----------------------------------------------------------------------------
149// Global state
[afc2427]150thread_local struct KernelThreadData kernelTLS __attribute__ ((tls_model ( "initial-exec" ))) = {
[1805b1b]151 NULL, // cannot use 0p
[b10affd]152 NULL,
[8834751]153 NULL,
[21184e3]154 { 1, false, false },
155 6u //this should be seeded better but due to a bug calling rdtsc doesn't work
[b10affd]156};
[c84e80a]157
158//-----------------------------------------------------------------------------
[de6319f]159// Struct to steal stack
[8def349]160struct current_stack_info_t {
[1805b1b]161 __stack_t * storage; // pointer to stack object
162 void * base; // base of stack
163 void * limit; // stack grows towards stack limit
164 void * context; // address of cfa_context_t
[c84e80a]165};
166
[242a902]167void ?{}( current_stack_info_t & this ) {
[b2f6113]168 __stack_context_t ctx;
169 CtxGet( ctx );
170 this.base = ctx.FP;
[8def349]171
172 rlimit r;
[132fad4]173 getrlimit( RLIMIT_STACK, &r);
[69a61d2]174 size_t size = r.rlim_cur;
[8def349]175
[69a61d2]176 this.limit = (void *)(((intptr_t)this.base) - size);
[9236060]177 this.context = &storage_mainThreadCtx;
[8def349]178}
179
[de6319f]180//-----------------------------------------------------------------------------
181// Main thread construction
[8def349]182
[ac2b598]183void ?{}( $coroutine & this, current_stack_info_t * info) with( this ) {
[b2f6113]184 stack.storage = info->storage;
185 with(*stack.storage) {
186 limit = info->limit;
187 base = info->base;
188 }
[ffe2fad]189 __attribute__((may_alias)) intptr_t * istorage = (intptr_t*) &stack.storage;
190 *istorage |= 0x1;
[65deb18]191 name = "Main Thread";
192 state = Start;
[1805b1b]193 starter = 0p;
194 last = 0p;
195 cancellation = 0p;
[8def349]196}
197
[ac2b598]198void ?{}( $thread & this, current_stack_info_t * info) with( this ) {
[ff79d5e]199 ticket = 1;
[e8e457e]200 state = Start;
[65deb18]201 self_cor{ info };
[82c948c]202 curr_cor = &self_cor;
[de6319f]203 curr_cluster = mainCluster;
[82c948c]204 self_mon.owner = &this;
205 self_mon.recursion = 1;
206 self_mon_p = &self_mon;
[b798713]207 link.next = 0p;
208 link.prev = 0p;
[de94a60]209
[1805b1b]210 node.next = 0p;
211 node.prev = 0p;
[a1a17a74]212 doregister(curr_cluster, this);
[82c948c]213
214 monitors{ &self_mon_p, 1, (fptr_t)0 };
[8def349]215}
[c84e80a]216
[8def349]217//-----------------------------------------------------------------------------
218// Processor coroutine
[de6319f]219void ?{}(processorCtx_t & this) {
[39fea2f]220
[8def349]221}
222
[39fea2f]223// Construct the processor context of non-main processors
[c29c342]224static void ?{}(processorCtx_t & this, processor * proc, current_stack_info_t * info) {
[242a902]225 (this.__cor){ info };
226 this.proc = proc;
[8def349]227}
228
[c7a900a]229static void * __invoke_processor(void * arg);
[8c50aed]230
[13c5e19]231void ?{}(processor & this, const char name[], cluster & _cltr) with( this ) {
[de6319f]232 this.name = name;
[13c5e19]233 this.cltr = &_cltr;
[7768b8d]234 id = -1u;
[c40e7c5]235 terminated{ 0 };
[b0c7419]236 destroyer = 0p;
[c40e7c5]237 do_terminate = false;
[1805b1b]238 preemption_alarm = 0p;
[c40e7c5]239 pending_preemption = false;
[094476d]240 runner.proc = &this;
[8def349]241
[92e7631]242 idle{};
[6b4cdd3]243
[4069faad]244 __cfadbg_print_safe(runtime_core, "Kernel : Starting core %p\n", &this);
[8c50aed]245
[c7a900a]246 this.stack = __create_pthread( &this.kernel_thread, __invoke_processor, (void *)&this );
[13c5e19]247 __atomic_fetch_add( &cltr->nprocessors, 1u, __ATOMIC_SEQ_CST );
[8c50aed]248
[4069faad]249 __cfadbg_print_safe(runtime_core, "Kernel : core %p created\n", &this);
[c84e80a]250}
251
[65deb18]252void ^?{}(processor & this) with( this ){
[ea8b2f7]253 if( ! __atomic_load_n(&do_terminate, __ATOMIC_ACQUIRE) ) {
[4069faad]254 __cfadbg_print_safe(runtime_core, "Kernel : core %p signaling termination\n", &this);
[85b1deb]255
256 __atomic_store_n(&do_terminate, true, __ATOMIC_RELAXED);
[92e7631]257 __wake_proc( &this );
[85b1deb]258
[65deb18]259 P( terminated );
[14a61b5]260 verify( kernelTLS.this_processor != &this);
[8def349]261 }
[6b4cdd3]262
[c66f6cb]263 int err = pthread_join( kernel_thread, 0p );
264 if( err != 0 ) abort("KERNEL ERROR: joining processor %p caused error %s\n", &this, strerror(err));
265
[27f5f71]266 free( this.stack );
[13c5e19]267
268 __atomic_fetch_sub( &cltr->nprocessors, 1u, __ATOMIC_SEQ_CST );
[8def349]269}
270
[dd4e2d7]271void ?{}(cluster & this, const char name[], Duration preemption_rate, unsigned io_flags) with( this ) {
[de6319f]272 this.name = name;
273 this.preemption_rate = preemption_rate;
[13c5e19]274 this.nprocessors = 0;
[65deb18]275 ready_queue{};
[de94a60]276
[038be32]277 #if !defined(__CFA_NO_STATISTICS__)
278 print_stats = false;
[8834751]279 stats = alloc();
280 __init_stats( stats );
[038be32]281 #endif
282
[a1a17a74]283 threads{ __get };
[de94a60]284
[b6f2b213]285 __kernel_io_startup( this, io_flags, &this == mainCluster );
[92976d9]286
[de94a60]287 doregister(this);
[8def349]288}
289
[242a902]290void ^?{}(cluster & this) {
[f6660520]291 __kernel_io_shutdown( this, &this == mainCluster );
[92976d9]292
[8834751]293 #if !defined(__CFA_NO_STATISTICS__)
294 if(this.print_stats) {
295 __print_stats( this.stats );
296 }
297 free( this.stats );
298 #endif
299
[de94a60]300 unregister(this);
[c84e80a]301}
302
[75f3522]303//=============================================================================================
304// Kernel Scheduling logic
305//=============================================================================================
[8fcbb4c]306//Main of the processor contexts
[83a071f9]307void main(processorCtx_t & runner) {
[21184e3]308 // Because of a bug, we couldn't initialized the seed on construction
309 // Do it here
[7768b8d]310 kernelTLS.rand_seed ^= rdtscl();
[21184e3]311
[83a071f9]312 processor * this = runner.proc;
[094476d]313 verify(this);
[c81ebf9]314
[4069faad]315 __cfadbg_print_safe(runtime_core, "Kernel : core %p starting\n", this);
[8118303]316
[7768b8d]317 // register the processor unless it's the main thread which is handled in the boot sequence
[b798713]318 if(this != mainProcessor) {
[9b1dcc2]319 this->id = doregister((__processor_id_t*)this);
[64a7146]320 // Lock the RWlock so no-one pushes/pops while we are changing the queue
321 uint_fast32_t last_size = ready_mutate_lock();
322
323 // Adjust the ready queue size
324 ready_queue_grow( this->cltr );
325
326 // Unlock the RWlock
327 ready_mutate_unlock( last_size );
[b798713]328 }
329
[75f3522]330 {
[c81ebf9]331 // Setup preemption data
332 preemption_scope scope = { this };
333
[4069faad]334 __cfadbg_print_safe(runtime_core, "Kernel : core %p started\n", this);
[8118303]335
[ac2b598]336 $thread * readyThread = 0p;
[1a3040c]337 for( unsigned int spin_count = 0; ! __atomic_load_n(&this->do_terminate, __ATOMIC_SEQ_CST); spin_count++ ) {
[92e7631]338 // Try to get the next thread
[8c50aed]339 readyThread = __next_thread( this->cltr );
[75f3522]340
[92e7631]341 // Check if we actually found a thread
342 if( readyThread ) {
[3381ed7]343 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[92e7631]344 /* paranoid */ verifyf( readyThread->state == Ready || readyThread->preempted != __NO_PREEMPTION, "state : %d, preempted %d\n", readyThread->state, readyThread->preempted);
[504a7dc]345 /* paranoid */ verifyf( readyThread->link.next == 0p, "Expected null got %p", readyThread->link.next );
[04b5cef]346 __builtin_prefetch( readyThread->context.SP );
[4e6fb8e]347
[92e7631]348 // We found a thread run it
[8c50aed]349 __run_thread(this, readyThread);
[c81ebf9]350
[3381ed7]351 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[c81ebf9]352 }
[64a7146]353 else {
354 // Block until a thread is ready
355 __halt(this);
356 }
[c81ebf9]357 }
358
[4069faad]359 __cfadbg_print_safe(runtime_core, "Kernel : core %p stopping\n", this);
[c84e80a]360 }
[8118303]361
[4cedd9f]362 V( this->terminated );
[bdeba0b]363
[7768b8d]364 // unregister the processor unless it's the main thread which is handled in the boot sequence
[b798713]365 if(this != mainProcessor) {
[64a7146]366 // Lock the RWlock so no-one pushes/pops while we are changing the queue
367 uint_fast32_t last_size = ready_mutate_lock();
368
369 // Adjust the ready queue size
370 ready_queue_shrink( this->cltr );
371
372 // Make sure we aren't on the idle queue
[68f36f4]373 #if !defined(__CFA_NO_STATISTICS__)
374 bool removed =
375 #endif
[64a7146]376 unsafe_remove( this->cltr->idles, this );
[68f36f4]377
378 #if !defined(__CFA_NO_STATISTICS__)
379 if(removed) __tls_stats()->ready.sleep.exits++;
380 #endif
[64a7146]381
382 // Unlock the RWlock
383 ready_mutate_unlock( last_size );
384
385 // Finally we don't need the read_lock any more
[9b1dcc2]386 unregister((__processor_id_t*)this);
[b798713]387 }
[6a490b2]388 else {
389 // HACK : the coroutine context switch expects this_thread to be set
390 // and it make sense for it to be set in all other cases except here
391 // fake it
392 kernelTLS.this_thread = mainThread;
393 }
[7768b8d]394
[4069faad]395 __cfadbg_print_safe(runtime_core, "Kernel : core %p terminated\n", this);
[c84e80a]396}
397
[5c1a531]398static int * __volatile_errno() __attribute__((noinline));
399static int * __volatile_errno() { asm(""); return &errno; }
400
[14a61b5]401// KERNEL ONLY
[1c273d0]402// runThread runs a thread by context switching
403// from the processor coroutine to the target thread
[ac2b598]404static void __run_thread(processor * this, $thread * thrd_dst) {
405 $coroutine * proc_cor = get_coroutine(this->runner);
[8fcbb4c]406
[14a61b5]407 // Update global state
[e8e457e]408 kernelTLS.this_thread = thrd_dst;
409
[9f575ea]410 // set state of processor coroutine to inactive
411 verify(proc_cor->state == Active);
[ae7be7a]412 proc_cor->state = Blocked;
[e8e457e]413
[9f575ea]414 // Actually run the thread
[3381ed7]415 RUNNING: while(true) {
[ff79d5e]416 thrd_dst->preempted = __NO_PREEMPTION;
417 thrd_dst->state = Active;
[e8e457e]418
[ae66348]419 __cfaabi_dbg_debug_do(
[276ae57e]420 thrd_dst->park_stale = true;
421 thrd_dst->unpark_stale = true;
[ae66348]422 )
[75f3522]423
[3381ed7]424 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[a7b486b]425 /* paranoid */ verify( kernelTLS.this_thread == thrd_dst );
[210b8b3]426 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) < ((uintptr_t)__get_stack(thrd_dst->curr_cor)->base ) || thrd_dst->curr_cor == proc_cor, "ERROR : Destination $thread %p has been corrupted.\n StackPointer too small.\n", thrd_dst ); // add escape condition if we are setting up the processor
427 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) > ((uintptr_t)__get_stack(thrd_dst->curr_cor)->limit) || thrd_dst->curr_cor == proc_cor, "ERROR : Destination $thread %p has been corrupted.\n StackPointer too large.\n", thrd_dst ); // add escape condition if we are setting up the processor
[3381ed7]428
[9f575ea]429 // set context switch to the thread that the processor is executing
430 verify( thrd_dst->context.SP );
[c7a900a]431 __cfactx_switch( &proc_cor->context, &thrd_dst->context );
432 // when __cfactx_switch returns we are back in the processor coroutine
[9f575ea]433
[210b8b3]434 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) > ((uintptr_t)__get_stack(thrd_dst->curr_cor)->limit), "ERROR : Destination $thread %p has been corrupted.\n StackPointer too large.\n", thrd_dst );
435 /* paranoid */ verifyf( ((uintptr_t)thrd_dst->context.SP) < ((uintptr_t)__get_stack(thrd_dst->curr_cor)->base ), "ERROR : Destination $thread %p has been corrupted.\n StackPointer too small.\n", thrd_dst );
[a7b486b]436 /* paranoid */ verify( kernelTLS.this_thread == thrd_dst );
[3381ed7]437 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[75f3522]438
[3381ed7]439
440 // We just finished running a thread, there are a few things that could have happened.
441 // 1 - Regular case : the thread has blocked and now one has scheduled it yet.
442 // 2 - Racy case : the thread has blocked but someone has already tried to schedule it.
443 // 4 - Preempted
444 // In case 1, we may have won a race so we can't write to the state again.
445 // In case 2, we lost the race so we now own the thread.
446
447 if(unlikely(thrd_dst->preempted != __NO_PREEMPTION)) {
448 // The thread was preempted, reschedule it and reset the flag
[9b1dcc2]449 __schedule_thread( (__processor_id_t*)this, thrd_dst );
[3381ed7]450 break RUNNING;
451 }
[75f3522]452
[ff79d5e]453 if(unlikely(thrd_dst->state == Halted)) {
454 // The thread has halted, it should never be scheduled/run again
455 // We may need to wake someone up here since
456 unpark( this->destroyer __cfaabi_dbg_ctx2 );
457 this->destroyer = 0p;
458 break RUNNING;
459 }
460
461 /* paranoid */ verify( thrd_dst->state == Active );
462 thrd_dst->state = Blocked;
463
[3381ed7]464 // set state of processor coroutine to active and the thread to inactive
[ff79d5e]465 int old_ticket = __atomic_fetch_sub(&thrd_dst->ticket, 1, __ATOMIC_SEQ_CST);
466 __cfaabi_dbg_debug_do( thrd_dst->park_result = old_ticket; )
467 switch(old_ticket) {
468 case 1:
[3381ed7]469 // This is case 1, the regular case, nothing more is needed
470 break RUNNING;
[ff79d5e]471 case 2:
[3381ed7]472 // This is case 2, the racy case, someone tried to run this thread before it finished blocking
473 // In this case, just run it again.
474 continue RUNNING;
475 default:
476 // This makes no sense, something is wrong abort
[ff79d5e]477 abort();
[3381ed7]478 }
[9f575ea]479 }
[e8e457e]480
[9f575ea]481 // Just before returning to the processor, set the processor coroutine to active
[e8e457e]482 proc_cor->state = Active;
[ae7be7a]483 kernelTLS.this_thread = 0p;
[82c948c]484}
485
[14a61b5]486// KERNEL_ONLY
[b0c7419]487void returnToKernel() {
[3381ed7]488 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[ac2b598]489 $coroutine * proc_cor = get_coroutine(kernelTLS.this_processor->runner);
490 $thread * thrd_src = kernelTLS.this_thread;
[e8e457e]491
[9f575ea]492 // Run the thread on this processor
493 {
494 int local_errno = *__volatile_errno();
495 #if defined( __i386 ) || defined( __x86_64 )
496 __x87_store;
497 #endif
498 verify( proc_cor->context.SP );
[c7a900a]499 __cfactx_switch( &thrd_src->context, &proc_cor->context );
[9f575ea]500 #if defined( __i386 ) || defined( __x86_64 )
501 __x87_load;
502 #endif
503 *__volatile_errno() = local_errno;
[8fcbb4c]504 }
[deca0f5]505
[3381ed7]506 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[210b8b3]507 /* paranoid */ verifyf( ((uintptr_t)thrd_src->context.SP) < ((uintptr_t)__get_stack(thrd_src->curr_cor)->base ), "ERROR : Returning $thread %p has been corrupted.\n StackPointer too small.\n", thrd_src );
508 /* paranoid */ verifyf( ((uintptr_t)thrd_src->context.SP) > ((uintptr_t)__get_stack(thrd_src->curr_cor)->limit), "ERROR : Returning $thread %p has been corrupted.\n StackPointer too large.\n", thrd_src );
[c84e80a]509}
510
[14a61b5]511// KERNEL_ONLY
[0c92c9f]512// Context invoker for processors
513// This is the entry point for processors (kernel threads)
514// It effectively constructs a coroutine by stealing the pthread stack
[c7a900a]515static void * __invoke_processor(void * arg) {
[8834751]516 #if !defined( __CFA_NO_STATISTICS__ )
517 __stats_t local_stats;
518 __init_stats( &local_stats );
519 kernelTLS.this_stats = &local_stats;
520 #endif
521
[8def349]522 processor * proc = (processor *) arg;
[14a61b5]523 kernelTLS.this_processor = proc;
[1805b1b]524 kernelTLS.this_thread = 0p;
[14a61b5]525 kernelTLS.preemption_state.[enabled, disable_count] = [false, 1];
[8def349]526 // SKULLDUGGERY: We want to create a context for the processor coroutine
527 // which is needed for the 2-step context switch. However, there is no reason
[1c273d0]528 // to waste the perfectly valid stack create by pthread.
[8def349]529 current_stack_info_t info;
[b2f6113]530 __stack_t ctx;
531 info.storage = &ctx;
[094476d]532 (proc->runner){ proc, &info };
[8def349]533
[b2f6113]534 __cfaabi_dbg_print_safe("Coroutine : created stack %p\n", get_coroutine(proc->runner)->stack.storage);
[8fcbb4c]535
[0c92c9f]536 //Set global state
[1805b1b]537 kernelTLS.this_thread = 0p;
[8def349]538
539 //We now have a proper context from which to schedule threads
[4069faad]540 __cfadbg_print_safe(runtime_core, "Kernel : core %p created (%p, %p)\n", proc, &proc->runner, &ctx);
[8def349]541
[1c273d0]542 // SKULLDUGGERY: Since the coroutine doesn't have its own stack, we can't
543 // resume it to start it like it normally would, it will just context switch
544 // back to here. Instead directly call the main since we already are on the
[8def349]545 // appropriate stack.
[094476d]546 get_coroutine(proc->runner)->state = Active;
547 main( proc->runner );
548 get_coroutine(proc->runner)->state = Halted;
[8def349]549
[0c92c9f]550 // Main routine of the core returned, the core is now fully terminated
[4069faad]551 __cfadbg_print_safe(runtime_core, "Kernel : core %p main ended (%p)\n", proc, &proc->runner);
[8def349]552
[8834751]553 #if !defined(__CFA_NO_STATISTICS__)
554 __tally_stats(proc->cltr->stats, &local_stats);
555 #endif
556
[1805b1b]557 return 0p;
[c84e80a]558}
559
[e3fea42]560static void Abort( int ret, const char func[] ) {
[1a3040c]561 if ( ret ) { // pthread routines return errno values
[1805b1b]562 abort( "%s : internal error, error(%d) %s.", func, ret, strerror( ret ) );
[27f5f71]563 } // if
[1805b1b]564} // Abort
565
[8c50aed]566void * __create_pthread( pthread_t * pthread, void * (*start)(void *), void * arg ) {
[1805b1b]567 pthread_attr_t attr;
568
569 Abort( pthread_attr_init( &attr ), "pthread_attr_init" ); // initialize attribute
570
[27f5f71]571 size_t stacksize;
[09d4b22]572 // default stack size, normally defined by shell limit
[1a3040c]573 Abort( pthread_attr_getstacksize( &attr, &stacksize ), "pthread_attr_getstacksize" );
[27f5f71]574 assert( stacksize >= PTHREAD_STACK_MIN );
[1a3040c]575
[09d4b22]576 void * stack;
577 __cfaabi_dbg_debug_do(
578 stack = memalign( __page_size, stacksize + __page_size );
579 // pthread has no mechanism to create the guard page in user supplied stack.
580 if ( mprotect( stack, __page_size, PROT_NONE ) == -1 ) {
581 abort( "mprotect : internal error, mprotect failure, error(%d) %s.", errno, strerror( errno ) );
582 } // if
583 );
584 __cfaabi_dbg_no_debug_do(
585 stack = malloc( stacksize );
586 );
[1a3040c]587
[f80f840]588 Abort( pthread_attr_setstack( &attr, stack, stacksize ), "pthread_attr_setstack" );
[27f5f71]589
[1805b1b]590 Abort( pthread_create( pthread, &attr, start, arg ), "pthread_create" );
591 return stack;
[c84e80a]592}
593
[14a61b5]594// KERNEL_ONLY
[8c50aed]595static void __kernel_first_resume( processor * this ) {
[ac2b598]596 $thread * src = mainThread;
597 $coroutine * dst = get_coroutine(this->runner);
[b69ea6b]598
[14a61b5]599 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]600
[09f357ec]601 kernelTLS.this_thread->curr_cor = dst;
[b2f6113]602 __stack_prepare( &dst->stack, 65000 );
[c7a900a]603 __cfactx_start(main, dst, this->runner, __cfactx_invoke_coroutine);
[b69ea6b]604
[14a61b5]605 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]606
[e8e457e]607 dst->last = &src->self_cor;
608 dst->starter = dst->starter ? dst->starter : &src->self_cor;
[b69ea6b]609
[92e7631]610 // make sure the current state is still correct
611 /* paranoid */ verify(src->state == Ready);
[b69ea6b]612
613 // context switch to specified coroutine
[69a61d2]614 verify( dst->context.SP );
[c7a900a]615 __cfactx_switch( &src->context, &dst->context );
616 // when __cfactx_switch returns we are back in the src coroutine
[b69ea6b]617
[09f357ec]618 mainThread->curr_cor = &mainThread->self_cor;
619
[92e7631]620 // make sure the current state has been update
621 /* paranoid */ verify(src->state == Active);
[b69ea6b]622
[14a61b5]623 verify( ! kernelTLS.preemption_state.enabled );
[b69ea6b]624}
625
[e8e457e]626// KERNEL_ONLY
[8c50aed]627static void __kernel_last_resume( processor * this ) {
[ac2b598]628 $coroutine * src = &mainThread->self_cor;
629 $coroutine * dst = get_coroutine(this->runner);
[e8e457e]630
631 verify( ! kernelTLS.preemption_state.enabled );
632 verify( dst->starter == src );
633 verify( dst->context.SP );
634
[f586539]635 // SKULLDUGGERY in debug the processors check that the
636 // stack is still within the limit of the stack limits after running a thread.
637 // that check doesn't make sense if we context switch to the processor using the
638 // coroutine semantics. Since this is a special case, use the current context
639 // info to populate these fields.
640 __cfaabi_dbg_debug_do(
641 __stack_context_t ctx;
642 CtxGet( ctx );
643 mainThread->context.SP = ctx.SP;
644 mainThread->context.FP = ctx.FP;
645 )
646
[e8e457e]647 // context switch to the processor
[c7a900a]648 __cfactx_switch( &src->context, &dst->context );
[e8e457e]649}
650
[8def349]651//-----------------------------------------------------------------------------
652// Scheduler routines
[14a61b5]653// KERNEL ONLY
[9b1dcc2]654void __schedule_thread( struct __processor_id_t * id, $thread * thrd ) {
[6a490b2]655 /* paranoid */ verify( thrd );
656 /* paranoid */ verify( thrd->state != Halted );
[9f575ea]657 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[3381ed7]658 /* paranoid */ #if defined( __CFA_WITH_VERIFY__ )
[504a7dc]659 /* paranoid */ if( thrd->state == Blocked || thrd->state == Start ) assertf( thrd->preempted == __NO_PREEMPTION,
660 "Error inactive thread marked as preempted, state %d, preemption %d\n", thrd->state, thrd->preempted );
[ff79d5e]661 /* paranoid */ if( thrd->preempted != __NO_PREEMPTION ) assertf(thrd->state == Active,
[504a7dc]662 "Error preempted thread marked as not currently running, state %d, preemption %d\n", thrd->state, thrd->preempted );
[3381ed7]663 /* paranoid */ #endif
[6a490b2]664 /* paranoid */ verifyf( thrd->link.next == 0p, "Expected null got %p", thrd->link.next );
[9f575ea]665
[ae7be7a]666 if (thrd->preempted == __NO_PREEMPTION) thrd->state = Ready;
[6b4cdd3]667
[9b1dcc2]668 ready_schedule_lock ( id );
[504a7dc]669 push( thrd->curr_cluster, thrd );
[b798713]670
[68f36f4]671 #if !defined(__CFA_NO_STATISTICS__)
672 bool woke =
673 #endif
674 __wake_one(id, thrd->curr_cluster);
675
676 #if !defined(__CFA_NO_STATISTICS__)
677 if(woke) __tls_stats()->ready.sleep.wakes++;
678 #endif
[9b1dcc2]679 ready_schedule_unlock( id );
[1c273d0]680
[9f575ea]681 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[db6f06a]682}
683
[14a61b5]684// KERNEL ONLY
[ac2b598]685static $thread * __next_thread(cluster * this) with( *this ) {
[3381ed7]686 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[7768b8d]687
[9b1dcc2]688 ready_schedule_lock ( (__processor_id_t*)kernelTLS.this_processor );
[6a490b2]689 $thread * head = pop( this );
[9b1dcc2]690 ready_schedule_unlock( (__processor_id_t*)kernelTLS.this_processor );
[7768b8d]691
[3381ed7]692 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[db6f06a]693 return head;
[eb2e723]694}
695
[64a7146]696// KERNEL ONLY
697static bool __has_next_thread(cluster * this) with( *this ) {
698 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
699
700 ready_schedule_lock ( (__processor_id_t*)kernelTLS.this_processor );
701 bool not_empty = query( this );
702 ready_schedule_unlock( (__processor_id_t*)kernelTLS.this_processor );
703
704 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
705 return not_empty;
706}
707
[2d8f7b0]708// KERNEL ONLY unpark with out disabling interrupts
[9b1dcc2]709void __unpark( struct __processor_id_t * id, $thread * thrd __cfaabi_dbg_ctx_param2 ) {
[ae66348]710 // record activity
[d47349b]711 __cfaabi_dbg_debug_do( char * old_caller = thrd->unpark_caller; )
[ae66348]712 __cfaabi_dbg_record_thrd( *thrd, false, caller );
713
[ff79d5e]714 int old_ticket = __atomic_fetch_add(&thrd->ticket, 1, __ATOMIC_SEQ_CST);
715 __cfaabi_dbg_debug_do( thrd->unpark_result = old_ticket; thrd->unpark_state = thrd->state; )
716 switch(old_ticket) {
717 case 1:
[3381ed7]718 // Wake won the race, the thread will reschedule/rerun itself
719 break;
[ff79d5e]720 case 0:
[3381ed7]721 /* paranoid */ verify( ! thrd->preempted != __NO_PREEMPTION );
[ff79d5e]722 /* paranoid */ verify( thrd->state == Blocked );
[0b33412]723
[3381ed7]724 // Wake lost the race,
[9b1dcc2]725 __schedule_thread( id, thrd );
[3381ed7]726 break;
727 default:
728 // This makes no sense, something is wrong abort
729 abort();
[de6319f]730 }
[db6f06a]731}
732
[2d8f7b0]733void unpark( $thread * thrd __cfaabi_dbg_ctx_param2 ) {
734 if( !thrd ) return;
[db6f06a]735
[82ff5845]736 disable_interrupts();
[9b1dcc2]737 __unpark( (__processor_id_t*)kernelTLS.this_processor, thrd __cfaabi_dbg_ctx_fwd2 );
[36982fc]738 enable_interrupts( __cfaabi_dbg_ctx );
[eb2e723]739}
740
[ae66348]741void park( __cfaabi_dbg_ctx_param ) {
[3381ed7]742 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[82ff5845]743 disable_interrupts();
[3381ed7]744 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
745 /* paranoid */ verify( kernelTLS.this_thread->preempted == __NO_PREEMPTION );
[0b33412]746
[ae66348]747 // record activity
748 __cfaabi_dbg_record_thrd( *kernelTLS.this_thread, true, caller );
[0b33412]749
[82c948c]750 returnToKernel();
[0b33412]751
[3381ed7]752 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[36982fc]753 enable_interrupts( __cfaabi_dbg_ctx );
[3381ed7]754 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[0c78741]755
756}
[09800e9]757
[3381ed7]758// KERNEL ONLY
[b0c7419]759void __leave_thread() {
[3381ed7]760 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[09800e9]761 returnToKernel();
[b0c7419]762 abort();
[09800e9]763}
764
[14a61b5]765// KERNEL ONLY
[3381ed7]766bool force_yield( __Preemption_Reason reason ) {
767 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[09800e9]768 disable_interrupts();
[3381ed7]769 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[09800e9]770
[ac2b598]771 $thread * thrd = kernelTLS.this_thread;
[ff79d5e]772 /* paranoid */ verify(thrd->state == Active);
[3381ed7]773
774 // SKULLDUGGERY: It is possible that we are preempting this thread just before
775 // it was going to park itself. If that is the case and it is already using the
776 // intrusive fields then we can't use them to preempt the thread
777 // If that is the case, abandon the preemption.
778 bool preempted = false;
[504a7dc]779 if(thrd->link.next == 0p) {
[3381ed7]780 preempted = true;
781 thrd->preempted = reason;
782 returnToKernel();
[de6319f]783 }
[f2b12406]784
[3381ed7]785 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
786 enable_interrupts_noPoll();
787 /* paranoid */ verify( kernelTLS.preemption_state.enabled );
[f2b12406]788
[3381ed7]789 return preempted;
[f2b12406]790}
791
[fa21ac9]792//=============================================================================================
793// Kernel Setup logic
794//=============================================================================================
[eb2e723]795//-----------------------------------------------------------------------------
796// Kernel boot procedures
[8c50aed]797static void __kernel_startup(void) {
[14a61b5]798 verify( ! kernelTLS.preemption_state.enabled );
[4069faad]799 __cfadbg_print_safe(runtime_core, "Kernel : Starting\n");
[eb2e723]800
[b2f6113]801 __page_size = sysconf( _SC_PAGESIZE );
802
[ea8b2f7]803 __cfa_dbg_global_clusters.list{ __get };
804 __cfa_dbg_global_clusters.lock{};
[de94a60]805
[b388ee81]806 // Initialize the global scheduler lock
807 __scheduler_lock = (__scheduler_RWLock_t*)&storage___scheduler_lock;
808 (*__scheduler_lock){};
809
[de6319f]810 // Initialize the main cluster
811 mainCluster = (cluster *)&storage_mainCluster;
812 (*mainCluster){"Main Cluster"};
813
[4069faad]814 __cfadbg_print_safe(runtime_core, "Kernel : Main cluster ready\n");
[de6319f]815
[eb2e723]816 // Start by initializing the main thread
[1c273d0]817 // SKULLDUGGERY: the mainThread steals the process main thread
[969b3fe]818 // which will then be scheduled by the mainProcessor normally
[ac2b598]819 mainThread = ($thread *)&storage_mainThread;
[8fcbb4c]820 current_stack_info_t info;
[b2f6113]821 info.storage = (__stack_t*)&storage_mainThreadCtx;
[83a071f9]822 (*mainThread){ &info };
[eb2e723]823
[4069faad]824 __cfadbg_print_safe(runtime_core, "Kernel : Main thread ready\n");
[fa21ac9]825
[bd98b58]826
[de6319f]827
828 // Construct the processor context of the main processor
829 void ?{}(processorCtx_t & this, processor * proc) {
830 (this.__cor){ "Processor" };
[1805b1b]831 this.__cor.starter = 0p;
[de6319f]832 this.proc = proc;
833 }
834
835 void ?{}(processor & this) with( this ) {
836 name = "Main Processor";
837 cltr = mainCluster;
838 terminated{ 0 };
839 do_terminate = false;
[1805b1b]840 preemption_alarm = 0p;
[de6319f]841 pending_preemption = false;
842 kernel_thread = pthread_self();
[7768b8d]843 id = -1u;
[de6319f]844
845 runner{ &this };
[4069faad]846 __cfadbg_print_safe(runtime_core, "Kernel : constructed main processor context %p\n", &runner);
[13c5e19]847
848 __atomic_fetch_add( &cltr->nprocessors, 1u, __ATOMIC_SEQ_CST );
[de6319f]849 }
[fa21ac9]850
[969b3fe]851 // Initialize the main processor and the main processor ctx
[eb2e723]852 // (the coroutine that contains the processing control flow)
[969b3fe]853 mainProcessor = (processor *)&storage_mainProcessor;
[de6319f]854 (*mainProcessor){};
[eb2e723]855
[9b1dcc2]856 mainProcessor->id = doregister( (__processor_id_t*)mainProcessor);
[7768b8d]857
[dcb42b8]858 //initialize the global state variables
[14a61b5]859 kernelTLS.this_processor = mainProcessor;
860 kernelTLS.this_thread = mainThread;
[eb2e723]861
[8834751]862 #if !defined( __CFA_NO_STATISTICS__ )
863 kernelTLS.this_stats = (__stats_t *)& storage_mainProcStats;
864 __init_stats( kernelTLS.this_stats );
865 #endif
866
[82ff5845]867 // Enable preemption
868 kernel_start_preemption();
869
[969b3fe]870 // Add the main thread to the ready queue
871 // once resume is called on mainProcessor->runner the mainThread needs to be scheduled like any normal thread
[9b1dcc2]872 __schedule_thread((__processor_id_t *)mainProcessor, mainThread);
[969b3fe]873
874 // SKULLDUGGERY: Force a context switch to the main processor to set the main thread's context to the current UNIX
[c7a900a]875 // context. Hence, the main thread does not begin through __cfactx_invoke_thread, like all other threads. The trick here is that
[1c273d0]876 // mainThread is on the ready queue when this call is made.
[8c50aed]877 __kernel_first_resume( kernelTLS.this_processor );
[dcb42b8]878
879
880 // THE SYSTEM IS NOW COMPLETELY RUNNING
[f6660520]881
882
883 // Now that the system is up, finish creating systems that need threading
884 __kernel_io_finish_start( *mainCluster );
885
886
887 __cfadbg_print_safe(runtime_core, "Kernel : Started\n--------------------------------------------------\n\n");
[82ff5845]888
[14a61b5]889 verify( ! kernelTLS.preemption_state.enabled );
[36982fc]890 enable_interrupts( __cfaabi_dbg_ctx );
[afd550c]891 verify( TL_GET( preemption_state.enabled ) );
[eb2e723]892}
893
[8c50aed]894static void __kernel_shutdown(void) {
[f6660520]895 //Before we start shutting things down, wait for systems that need threading to shutdown
896 __kernel_io_prepare_stop( *mainCluster );
[eb2e723]897
[92e7631]898 /* paranoid */ verify( TL_GET( preemption_state.enabled ) );
[4e6fb8e]899 disable_interrupts();
[92e7631]900 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
[4e6fb8e]901
[f6660520]902 __cfadbg_print_safe(runtime_core, "\n--------------------------------------------------\nKernel : Shutting down\n");
[4e6fb8e]903
[969b3fe]904 // SKULLDUGGERY: Notify the mainProcessor it needs to terminates.
[dcb42b8]905 // When its coroutine terminates, it return control to the mainThread
906 // which is currently here
[ea8b2f7]907 __atomic_store_n(&mainProcessor->do_terminate, true, __ATOMIC_RELEASE);
[8c50aed]908 __kernel_last_resume( kernelTLS.this_processor );
[ea8b2f7]909 mainThread->self_cor.state = Halted;
[eb2e723]910
[dcb42b8]911 // THE SYSTEM IS NOW COMPLETELY STOPPED
[eb2e723]912
[82ff5845]913 // Disable preemption
914 kernel_stop_preemption();
915
[9b1dcc2]916 unregister((__processor_id_t*)mainProcessor);
[7768b8d]917
[969b3fe]918 // Destroy the main processor and its context in reverse order of construction
[dcb42b8]919 // These were manually constructed so we need manually destroy them
[c66f6cb]920 void ^?{}(processor & this) with( this ){
921 /* paranoid */ verify( this.do_terminate == true );
[13c5e19]922 __atomic_fetch_sub( &cltr->nprocessors, 1u, __ATOMIC_SEQ_CST );
[b798713]923 __cfaabi_dbg_print_safe("Kernel : destroyed main processor context %p\n", &runner);
924 }
925
[7768b8d]926 ^(*mainProcessor){};
[eb2e723]927
[dcb42b8]928 // Final step, destroy the main thread since it is no longer needed
[6a490b2]929
[dcb42b8]930 // Since we provided a stack to this taxk it will not destroy anything
[210b8b3]931 /* paranoid */ verify(mainThread->self_cor.stack.storage == (__stack_t*)(((uintptr_t)&storage_mainThreadCtx)| 0x1));
[7768b8d]932 ^(*mainThread){};
933
934 ^(*mainCluster){};
[eb2e723]935
[b388ee81]936 ^(*__scheduler_lock){};
937
[ea8b2f7]938 ^(__cfa_dbg_global_clusters.list){};
939 ^(__cfa_dbg_global_clusters.lock){};
[a1a17a74]940
[4069faad]941 __cfadbg_print_safe(runtime_core, "Kernel : Shutdown complete\n");
[9d944b2]942}
943
[14a61b5]944//=============================================================================================
[92e7631]945// Kernel Idle Sleep
[14a61b5]946//=============================================================================================
[64a7146]947// Wake a thread from the front if there are any
948static bool __wake_one(struct __processor_id_t * id, cluster * this) {
949 /* paranoid */ verify( ready_schedule_islocked( id ) );
[14a61b5]950
[64a7146]951 // Check if there is a sleeping processor
952 processor * p = pop(this->idles);
[14a61b5]953
[64a7146]954 // If no one is sleeping, we are done
955 if( 0p == p ) return false;
[14a61b5]956
[64a7146]957 // We found a processor, wake it up
958 post( p->idle );
[14a61b5]959
[64a7146]960 return true;
961}
[14a61b5]962
[64a7146]963// Unconditionnaly wake a thread
964static bool __wake_proc(processor * this) {
965 __cfadbg_print_safe(runtime_core, "Kernel : waking Processor %p\n", this);
[14a61b5]966
[64a7146]967 disable_interrupts();
968 /* paranoid */ verify( ! kernelTLS.preemption_state.enabled );
969 bool ret = post( this->idle );
970 enable_interrupts( __cfaabi_dbg_ctx );
[92e7631]971
[64a7146]972 return ret;
[92e7631]973}
974
[64a7146]975static void __halt(processor * this) with( *this ) {
976 if( do_terminate ) return;
[8e16177]977
[68f36f4]978 #if !defined(__CFA_NO_STATISTICS__)
979 __tls_stats()->ready.sleep.halts++;
980 #endif
[64a7146]981 // Push self to queue
982 push(cltr->idles, *this);
[8834751]983
[64a7146]984 // Makre sure we don't miss a thread
985 if( __has_next_thread(cltr) ) {
986 // A thread was posted, make sure a processor is woken up
987 struct __processor_id_t *id = (struct __processor_id_t *) this;
988 ready_schedule_lock ( id );
989 __wake_one( id, cltr );
990 ready_schedule_unlock( id );
[68f36f4]991 #if !defined(__CFA_NO_STATISTICS__)
992 __tls_stats()->ready.sleep.cancels++;
993 #endif
[64a7146]994 }
[8e16177]995
[64a7146]996 wait( idle );
[6b4cdd3]997}
998
[dbe9b08]999//=============================================================================================
1000// Unexpected Terminating logic
1001//=============================================================================================
[ea7d2b0]1002static __spinlock_t kernel_abort_lock;
[9d944b2]1003static bool kernel_abort_called = false;
1004
[afd550c]1005void * kernel_abort(void) __attribute__ ((__nothrow__)) {
[9d944b2]1006 // abort cannot be recursively entered by the same or different processors because all signal handlers return when
1007 // the globalAbort flag is true.
[36982fc]1008 lock( kernel_abort_lock __cfaabi_dbg_ctx2 );
[9d944b2]1009
1010 // first task to abort ?
[de94a60]1011 if ( kernel_abort_called ) { // not first task to abort ?
[ea7d2b0]1012 unlock( kernel_abort_lock );
[1c273d0]1013
[9d944b2]1014 sigset_t mask;
1015 sigemptyset( &mask );
[de94a60]1016 sigaddset( &mask, SIGALRM ); // block SIGALRM signals
[8a13c47]1017 sigaddset( &mask, SIGUSR1 ); // block SIGALRM signals
1018 sigsuspend( &mask ); // block the processor to prevent further damage during abort
1019 _exit( EXIT_FAILURE ); // if processor unblocks before it is killed, terminate it
[de94a60]1020 }
1021 else {
1022 kernel_abort_called = true;
1023 unlock( kernel_abort_lock );
[9d944b2]1024 }
1025
[14a61b5]1026 return kernelTLS.this_thread;
[9d944b2]1027}
1028
1029void kernel_abort_msg( void * kernel_data, char * abort_text, int abort_text_size ) {
[ac2b598]1030 $thread * thrd = kernel_data;
[9d944b2]1031
[de94a60]1032 if(thrd) {
1033 int len = snprintf( abort_text, abort_text_size, "Error occurred while executing thread %.256s (%p)", thrd->self_cor.name, thrd );
[1c40091]1034 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[de94a60]1035
[212c2187]1036 if ( &thrd->self_cor != thrd->curr_cor ) {
1037 len = snprintf( abort_text, abort_text_size, " in coroutine %.256s (%p).\n", thrd->curr_cor->name, thrd->curr_cor );
[1c40091]1038 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[de94a60]1039 }
1040 else {
[1c40091]1041 __cfaabi_bits_write( STDERR_FILENO, ".\n", 2 );
[de94a60]1042 }
[1c273d0]1043 }
[9d944b2]1044 else {
[de94a60]1045 int len = snprintf( abort_text, abort_text_size, "Error occurred outside of any thread.\n" );
[1c40091]1046 __cfaabi_bits_write( STDERR_FILENO, abort_text, len );
[9d944b2]1047 }
1048}
1049
[2b8bc41]1050int kernel_abort_lastframe( void ) __attribute__ ((__nothrow__)) {
[14a61b5]1051 return get_coroutine(kernelTLS.this_thread) == get_coroutine(mainThread) ? 4 : 2;
[2b8bc41]1052}
1053
[de94a60]1054static __spinlock_t kernel_debug_lock;
1055
[9d944b2]1056extern "C" {
[1c40091]1057 void __cfaabi_bits_acquire() {
[36982fc]1058 lock( kernel_debug_lock __cfaabi_dbg_ctx2 );
[9d944b2]1059 }
1060
[1c40091]1061 void __cfaabi_bits_release() {
[ea7d2b0]1062 unlock( kernel_debug_lock );
[9d944b2]1063 }
[8118303]1064}
1065
[fa21ac9]1066//=============================================================================================
1067// Kernel Utilities
1068//=============================================================================================
[bd98b58]1069//-----------------------------------------------------------------------------
1070// Locks
[242a902]1071void ?{}( semaphore & this, int count = 1 ) {
1072 (this.lock){};
1073 this.count = count;
1074 (this.waiting){};
[db6f06a]1075}
[242a902]1076void ^?{}(semaphore & this) {}
[db6f06a]1077
[71c8b7e]1078bool P(semaphore & this) with( this ){
[65deb18]1079 lock( lock __cfaabi_dbg_ctx2 );
1080 count -= 1;
1081 if ( count < 0 ) {
[bdeba0b]1082 // queue current task
[14a61b5]1083 append( waiting, kernelTLS.this_thread );
[bdeba0b]1084
1085 // atomically release spin lock and block
[3381ed7]1086 unlock( lock );
[ae66348]1087 park( __cfaabi_dbg_ctx );
[71c8b7e]1088 return true;
[8def349]1089 }
[4e6fb8e]1090 else {
[65deb18]1091 unlock( lock );
[71c8b7e]1092 return false;
[4e6fb8e]1093 }
[bd98b58]1094}
1095
[f0ce5f4]1096bool V(semaphore & this) with( this ) {
[ac2b598]1097 $thread * thrd = 0p;
[65deb18]1098 lock( lock __cfaabi_dbg_ctx2 );
1099 count += 1;
1100 if ( count <= 0 ) {
[bdeba0b]1101 // remove task at head of waiting list
[65deb18]1102 thrd = pop_head( waiting );
[bd98b58]1103 }
[bdeba0b]1104
[65deb18]1105 unlock( lock );
[bdeba0b]1106
1107 // make new owner
[ae66348]1108 unpark( thrd __cfaabi_dbg_ctx2 );
[f0ce5f4]1109
[d384787]1110 return thrd != 0p;
1111}
1112
1113bool V(semaphore & this, unsigned diff) with( this ) {
1114 $thread * thrd = 0p;
1115 lock( lock __cfaabi_dbg_ctx2 );
1116 int release = max(-count, (int)diff);
1117 count += diff;
1118 for(release) {
1119 unpark( pop_head( waiting ) __cfaabi_dbg_ctx2 );
1120 }
1121
1122 unlock( lock );
1123
[f0ce5f4]1124 return thrd != 0p;
[bd98b58]1125}
1126
[f7d6bb0]1127//-----------------------------------------------------------------------------
[de94a60]1128// Global Queues
1129void doregister( cluster & cltr ) {
[ea8b2f7]1130 lock ( __cfa_dbg_global_clusters.lock __cfaabi_dbg_ctx2);
1131 push_front( __cfa_dbg_global_clusters.list, cltr );
1132 unlock ( __cfa_dbg_global_clusters.lock );
[de94a60]1133}
[f7d6bb0]1134
[de94a60]1135void unregister( cluster & cltr ) {
[ea8b2f7]1136 lock ( __cfa_dbg_global_clusters.lock __cfaabi_dbg_ctx2);
1137 remove( __cfa_dbg_global_clusters.list, cltr );
1138 unlock( __cfa_dbg_global_clusters.lock );
[de94a60]1139}
[f7d6bb0]1140
[ac2b598]1141void doregister( cluster * cltr, $thread & thrd ) {
[a1a17a74]1142 lock (cltr->thread_list_lock __cfaabi_dbg_ctx2);
[d4e68a6]1143 cltr->nthreads += 1;
[a1a17a74]1144 push_front(cltr->threads, thrd);
1145 unlock (cltr->thread_list_lock);
1146}
1147
[ac2b598]1148void unregister( cluster * cltr, $thread & thrd ) {
[a1a17a74]1149 lock (cltr->thread_list_lock __cfaabi_dbg_ctx2);
1150 remove(cltr->threads, thrd );
[d4e68a6]1151 cltr->nthreads -= 1;
[a1a17a74]1152 unlock(cltr->thread_list_lock);
1153}
[9181f1d]1154
[de94a60]1155//-----------------------------------------------------------------------------
1156// Debug
1157__cfaabi_dbg_debug_do(
[1997b4e]1158 extern "C" {
[ae66348]1159 void __cfaabi_dbg_record_lock(__spinlock_t & this, const char prev_name[]) {
[1997b4e]1160 this.prev_name = prev_name;
1161 this.prev_thrd = kernelTLS.this_thread;
1162 }
[ae66348]1163
1164 void __cfaabi_dbg_record_thrd($thread & this, bool park, const char prev_name[]) {
1165 if(park) {
[f0ce5f4]1166 this.park_caller = prev_name;
1167 this.park_stale = false;
[ae66348]1168 }
1169 else {
[f0ce5f4]1170 this.unpark_caller = prev_name;
1171 this.unpark_stale = false;
[ae66348]1172 }
1173 }
[9181f1d]1174 }
[f7d6bb0]1175)
[2026bb6]1176
1177//-----------------------------------------------------------------------------
1178// Debug
[8c50aed]1179bool threading_enabled(void) __attribute__((const)) {
[2026bb6]1180 return true;
1181}
[8118303]1182// Local Variables: //
1183// mode: c //
1184// tab-width: 4 //
1185// End: //
Note: See TracBrowser for help on using the repository browser.