| [75f3522] | 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 | // | 
|---|
| [73abe95] | 7 | // kernel_private.hfa -- | 
|---|
| [75f3522] | 8 | // | 
|---|
|  | 9 | // Author           : Thierry Delisle | 
|---|
|  | 10 | // Created On       : Mon Feb 13 12:27:26 2017 | 
|---|
| [6b0b624] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
| [1805b1b] | 12 | // Last Modified On : Sat Nov 30 19:25:02 2019 | 
|---|
|  | 13 | // Update Count     : 8 | 
|---|
| [75f3522] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [6b0b624] | 16 | #pragma once | 
|---|
| [75f3522] | 17 |  | 
|---|
| [58b6d1b] | 18 | #include "kernel.hfa" | 
|---|
|  | 19 | #include "thread.hfa" | 
|---|
| [75f3522] | 20 |  | 
|---|
| [73abe95] | 21 | #include "alarm.hfa" | 
|---|
| [fa21ac9] | 22 |  | 
|---|
| [4aa2fb2] | 23 |  | 
|---|
| [75f3522] | 24 | //----------------------------------------------------------------------------- | 
|---|
|  | 25 | // Scheduler | 
|---|
| [1c273d0] | 26 |  | 
|---|
|  | 27 | extern "C" { | 
|---|
| [2026bb6] | 28 | void disable_interrupts() OPTIONAL_THREAD; | 
|---|
| [969b3fe] | 29 | void enable_interrupts_noPoll(); | 
|---|
| [36982fc] | 30 | void enable_interrupts( __cfaabi_dbg_ctx_param ); | 
|---|
| [1c273d0] | 31 | } | 
|---|
|  | 32 |  | 
|---|
| [ac2b598] | 33 | void __schedule_thread( $thread * ) __attribute__((nonnull (1))); | 
|---|
| [75f3522] | 34 |  | 
|---|
| [e60e0dc] | 35 | //Block current thread and release/wake-up the following resources | 
|---|
| [b0c7419] | 36 | void __leave_thread() __attribute__((noreturn)); | 
|---|
| [db6f06a] | 37 |  | 
|---|
| [75f3522] | 38 | //----------------------------------------------------------------------------- | 
|---|
|  | 39 | // Processor | 
|---|
|  | 40 | void main(processorCtx_t *); | 
|---|
| [85b1deb] | 41 |  | 
|---|
| [8c50aed] | 42 | void * __create_pthread( pthread_t *, void * (*)(void *), void * ); | 
|---|
| [1805b1b] | 43 |  | 
|---|
| [85b1deb] | 44 |  | 
|---|
| [75f3522] | 45 |  | 
|---|
| [e60e0dc] | 46 | struct event_kernel_t { | 
|---|
| [fa21ac9] | 47 | alarm_list_t alarms; | 
|---|
| [ea7d2b0] | 48 | __spinlock_t lock; | 
|---|
| [fa21ac9] | 49 | }; | 
|---|
|  | 50 |  | 
|---|
| [e60e0dc] | 51 | extern event_kernel_t * event_kernel; | 
|---|
|  | 52 |  | 
|---|
| [d8548e2] | 53 | struct __cfa_kernel_preemption_state_t { | 
|---|
| [b69ea6b] | 54 | bool enabled; | 
|---|
|  | 55 | bool in_progress; | 
|---|
|  | 56 | unsigned short disable_count; | 
|---|
|  | 57 | }; | 
|---|
|  | 58 |  | 
|---|
| [afc2427] | 59 | extern volatile thread_local __cfa_kernel_preemption_state_t preemption_state __attribute__ ((tls_model ( "initial-exec" ))); | 
|---|
| [c81ebf9] | 60 |  | 
|---|
| [75f3522] | 61 | //----------------------------------------------------------------------------- | 
|---|
|  | 62 | // Threads | 
|---|
|  | 63 | extern "C" { | 
|---|
| [c7a900a] | 64 | void __cfactx_invoke_thread(void (*main)(void *), void * this); | 
|---|
| [75f3522] | 65 | } | 
|---|
|  | 66 |  | 
|---|
| [f7d6bb0] | 67 | __cfaabi_dbg_debug_do( | 
|---|
| [ac2b598] | 68 | extern void __cfaabi_dbg_thread_register  ( $thread * thrd ); | 
|---|
|  | 69 | extern void __cfaabi_dbg_thread_unregister( $thread * thrd ); | 
|---|
| [f7d6bb0] | 70 | ) | 
|---|
|  | 71 |  | 
|---|
| [969b3fe] | 72 | //----------------------------------------------------------------------------- | 
|---|
|  | 73 | // Utils | 
|---|
|  | 74 | #define KERNEL_STORAGE(T,X) static char storage_##X[sizeof(T)] | 
|---|
|  | 75 |  | 
|---|
| [8c50aed] | 76 | static inline uint32_t __tls_rand() { | 
|---|
| [21184e3] | 77 | kernelTLS.rand_seed ^= kernelTLS.rand_seed << 6; | 
|---|
|  | 78 | kernelTLS.rand_seed ^= kernelTLS.rand_seed >> 21; | 
|---|
|  | 79 | kernelTLS.rand_seed ^= kernelTLS.rand_seed << 7; | 
|---|
|  | 80 | return kernelTLS.rand_seed; | 
|---|
|  | 81 | } | 
|---|
|  | 82 |  | 
|---|
| [de94a60] | 83 |  | 
|---|
| [a1a17a74] | 84 | void doregister( struct cluster & cltr ); | 
|---|
|  | 85 | void unregister( struct cluster & cltr ); | 
|---|
| [de94a60] | 86 |  | 
|---|
| [ac2b598] | 87 | void doregister( struct cluster * cltr, struct $thread & thrd ); | 
|---|
|  | 88 | void unregister( struct cluster * cltr, struct $thread & thrd ); | 
|---|
| [de94a60] | 89 |  | 
|---|
|  | 90 | void doregister( struct cluster * cltr, struct processor * proc ); | 
|---|
|  | 91 | void unregister( struct cluster * cltr, struct processor * proc ); | 
|---|
|  | 92 |  | 
|---|
| [75f3522] | 93 | // Local Variables: // | 
|---|
|  | 94 | // mode: c // | 
|---|
|  | 95 | // tab-width: 4 // | 
|---|
| [4aa2fb2] | 96 | // End: // | 
|---|