| [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 | // | 
|---|
| [708ae38] | 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 | 
|---|
| [fd9b524] | 12 | // Last Modified On : Wed Aug 12 08:21:33 2020 | 
|---|
|  | 13 | // Update Count     : 9 | 
|---|
| [75f3522] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [6b0b624] | 16 | #pragma once | 
|---|
| [75f3522] | 17 |  | 
|---|
| [3489ea6] | 18 | #if !defined(__cforall_thread__) | 
|---|
| [708ae38] | 19 | #error kernel/private.hfa should only be included in libcfathread source | 
|---|
| [3489ea6] | 20 | #endif | 
|---|
|  | 21 |  | 
|---|
| [58b6d1b] | 22 | #include "kernel.hfa" | 
|---|
|  | 23 | #include "thread.hfa" | 
|---|
| [75f3522] | 24 |  | 
|---|
| [73abe95] | 25 | #include "alarm.hfa" | 
|---|
| [8834751] | 26 | #include "stats.hfa" | 
|---|
| [fa21ac9] | 27 |  | 
|---|
| [3489ea6] | 28 | extern "C" { | 
|---|
|  | 29 | #if   defined(CFA_HAVE_LINUX_LIBRSEQ) | 
|---|
|  | 30 | #include <rseq/rseq.h> | 
|---|
|  | 31 | #elif defined(CFA_HAVE_LINUX_RSEQ_H) | 
|---|
| [f558b5f] | 32 | #include <linux/rseq.h> | 
|---|
| [3489ea6] | 33 | #else | 
|---|
|  | 34 | #ifndef _GNU_SOURCE | 
|---|
| [708ae38] | 35 | #error kernel/private requires gnu_source | 
|---|
| [3489ea6] | 36 | #endif | 
|---|
|  | 37 | #include <sched.h> | 
|---|
|  | 38 | #endif | 
|---|
|  | 39 | } | 
|---|
|  | 40 |  | 
|---|
| [d3605f8] | 41 | // Defines whether or not we *want* to use io_uring_enter as the idle_sleep blocking call | 
|---|
| [f870e257] | 42 | // #define CFA_WANT_IO_URING_IDLE | 
|---|
| [d3605f8] | 43 |  | 
|---|
|  | 44 | // Defines whether or not we *can* use io_uring_enter as the idle_sleep blocking call | 
|---|
|  | 45 | #if defined(CFA_WANT_IO_URING_IDLE) && defined(CFA_HAVE_LINUX_IO_URING_H) | 
|---|
|  | 46 | #if defined(CFA_HAVE_IORING_OP_READ) || (defined(CFA_HAVE_READV) && defined(CFA_HAVE_IORING_OP_READV)) | 
|---|
|  | 47 | #define CFA_WITH_IO_URING_IDLE | 
|---|
|  | 48 | #endif | 
|---|
|  | 49 | #endif | 
|---|
| [059ad16] | 50 |  | 
|---|
| [75f3522] | 51 | //----------------------------------------------------------------------------- | 
|---|
|  | 52 | // Scheduler | 
|---|
| [1c273d0] | 53 | extern "C" { | 
|---|
| [2026bb6] | 54 | void disable_interrupts() OPTIONAL_THREAD; | 
|---|
| [a3821fa] | 55 | void enable_interrupts( bool poll = true ); | 
|---|
| [1c273d0] | 56 | } | 
|---|
|  | 57 |  | 
|---|
| [24e321c] | 58 | void schedule_thread$( thread$ *, unpark_hint hint ) __attribute__((nonnull (1))); | 
|---|
| [75f3522] | 59 |  | 
|---|
| [8fc652e0] | 60 | extern bool __preemption_enabled(); | 
|---|
|  | 61 |  | 
|---|
| [13fdf86] | 62 | enum { | 
|---|
|  | 63 | PREEMPT_NORMAL    = 0, | 
|---|
|  | 64 | PREEMPT_TERMINATE = 1, | 
|---|
|  | 65 | PREEMPT_IO = 2, | 
|---|
|  | 66 | }; | 
|---|
|  | 67 |  | 
|---|
| [7d0ebd0] | 68 | static inline void __disable_interrupts_checked() { | 
|---|
|  | 69 | /* paranoid */ verify( __preemption_enabled() ); | 
|---|
|  | 70 | disable_interrupts(); | 
|---|
|  | 71 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 72 | } | 
|---|
|  | 73 |  | 
|---|
|  | 74 | static inline void __enable_interrupts_checked( bool poll = true ) { | 
|---|
|  | 75 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 76 | enable_interrupts( poll ); | 
|---|
|  | 77 | /* paranoid */ verify( __preemption_enabled() ); | 
|---|
|  | 78 | } | 
|---|
|  | 79 |  | 
|---|
| [5afb49a] | 80 | //release/wake-up the following resources | 
|---|
| [e84ab3d] | 81 | void __thread_finish( thread$ * thrd ); | 
|---|
| [db6f06a] | 82 |  | 
|---|
| [3489ea6] | 83 | //----------------------------------------------------------------------------- | 
|---|
|  | 84 | // Hardware | 
|---|
|  | 85 |  | 
|---|
|  | 86 | #if   defined(CFA_HAVE_LINUX_LIBRSEQ) | 
|---|
|  | 87 | // No data needed | 
|---|
|  | 88 | #elif defined(CFA_HAVE_LINUX_RSEQ_H) | 
|---|
|  | 89 | extern "Cforall" { | 
|---|
| [f558b5f] | 90 | extern __attribute__((aligned(128))) thread_local volatile struct rseq __cfaabi_rseq; | 
|---|
| [3489ea6] | 91 | } | 
|---|
|  | 92 | #else | 
|---|
|  | 93 | // No data needed | 
|---|
|  | 94 | #endif | 
|---|
|  | 95 |  | 
|---|
|  | 96 | static inline int __kernel_getcpu() { | 
|---|
|  | 97 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 98 | #if   defined(CFA_HAVE_LINUX_LIBRSEQ) | 
|---|
| [f558b5f] | 99 | return rseq_current_cpu(); | 
|---|
| [3489ea6] | 100 | #elif defined(CFA_HAVE_LINUX_RSEQ_H) | 
|---|
| [f558b5f] | 101 | int r = __cfaabi_rseq.cpu_id; | 
|---|
|  | 102 | /* paranoid */ verify( r >= 0 ); | 
|---|
|  | 103 | return r; | 
|---|
| [3489ea6] | 104 | #else | 
|---|
|  | 105 | return sched_getcpu(); | 
|---|
|  | 106 | #endif | 
|---|
|  | 107 | } | 
|---|
|  | 108 |  | 
|---|
| [75f3522] | 109 | //----------------------------------------------------------------------------- | 
|---|
|  | 110 | // Processor | 
|---|
|  | 111 | void main(processorCtx_t *); | 
|---|
| [85b1deb] | 112 |  | 
|---|
| [8c50aed] | 113 | void * __create_pthread( pthread_t *, void * (*)(void *), void * ); | 
|---|
| [bfcf6b9] | 114 | void __destroy_pthread( pthread_t pthread, void * stack, void ** retval ); | 
|---|
| [1805b1b] | 115 |  | 
|---|
| [6502a2b] | 116 | extern cluster * mainCluster; | 
|---|
|  | 117 |  | 
|---|
| [75f3522] | 118 | //----------------------------------------------------------------------------- | 
|---|
|  | 119 | // Threads | 
|---|
|  | 120 | extern "C" { | 
|---|
| [c7a900a] | 121 | void __cfactx_invoke_thread(void (*main)(void *), void * this); | 
|---|
| [75f3522] | 122 | } | 
|---|
|  | 123 |  | 
|---|
| [f7d6bb0] | 124 | __cfaabi_dbg_debug_do( | 
|---|
| [e84ab3d] | 125 | extern void __cfaabi_dbg_thread_register  ( thread$ * thrd ); | 
|---|
|  | 126 | extern void __cfaabi_dbg_thread_unregister( thread$ * thrd ); | 
|---|
| [f7d6bb0] | 127 | ) | 
|---|
|  | 128 |  | 
|---|
| [6a77224] | 129 | #define TICKET_BLOCKED (-1) // thread is blocked | 
|---|
|  | 130 | #define TICKET_RUNNING ( 0) // thread is running | 
|---|
|  | 131 | #define TICKET_UNBLOCK ( 1) // thread should ignore next block | 
|---|
|  | 132 |  | 
|---|
| [969b3fe] | 133 | //----------------------------------------------------------------------------- | 
|---|
|  | 134 | // Utils | 
|---|
| [e84ab3d] | 135 | void doregister( struct cluster * cltr, struct thread$ & thrd ); | 
|---|
|  | 136 | void unregister( struct cluster * cltr, struct thread$ & thrd ); | 
|---|
| [de94a60] | 137 |  | 
|---|
| [f00b26d4] | 138 | //----------------------------------------------------------------------------- | 
|---|
|  | 139 | // I/O | 
|---|
| [78da4ab] | 140 | $io_arbiter * create(void); | 
|---|
|  | 141 | void destroy($io_arbiter *); | 
|---|
| [f00b26d4] | 142 |  | 
|---|
| [7768b8d] | 143 | //======================================================================= | 
|---|
|  | 144 | // Cluster lock API | 
|---|
|  | 145 | //======================================================================= | 
|---|
|  | 146 | // Lock-Free registering/unregistering of threads | 
|---|
|  | 147 | // Register a processor to a given cluster and get its unique id in return | 
|---|
| [c993b15] | 148 | unsigned register_proc_id( void ); | 
|---|
| [7768b8d] | 149 |  | 
|---|
|  | 150 | // Unregister a processor from a given cluster using its id, getting back the original pointer | 
|---|
| [c993b15] | 151 | void unregister_proc_id( unsigned ); | 
|---|
| [7768b8d] | 152 |  | 
|---|
|  | 153 | //======================================================================= | 
|---|
|  | 154 | // Reader-writer lock implementation | 
|---|
|  | 155 | // Concurrent with doregister/unregister, | 
|---|
|  | 156 | //    i.e., threads can be added at any point during or between the entry/exit | 
|---|
| [dca5802] | 157 |  | 
|---|
|  | 158 | //----------------------------------------------------------------------- | 
|---|
|  | 159 | // simple spinlock underlying the RWLock | 
|---|
|  | 160 | // Blocking acquire | 
|---|
| [7768b8d] | 161 | static inline void __atomic_acquire(volatile bool * ll) { | 
|---|
|  | 162 | while( __builtin_expect(__atomic_exchange_n(ll, (bool)true, __ATOMIC_SEQ_CST), false) ) { | 
|---|
|  | 163 | while(__atomic_load_n(ll, (int)__ATOMIC_RELAXED)) | 
|---|
| [fd9b524] | 164 | Pause(); | 
|---|
| [7768b8d] | 165 | } | 
|---|
|  | 166 | /* paranoid */ verify(*ll); | 
|---|
|  | 167 | } | 
|---|
|  | 168 |  | 
|---|
| [dca5802] | 169 | // Non-Blocking acquire | 
|---|
| [7768b8d] | 170 | static inline bool __atomic_try_acquire(volatile bool * ll) { | 
|---|
| [b798713] | 171 | return !__atomic_exchange_n(ll, (bool)true, __ATOMIC_SEQ_CST); | 
|---|
| [7768b8d] | 172 | } | 
|---|
|  | 173 |  | 
|---|
| [dca5802] | 174 | // Release | 
|---|
| [7768b8d] | 175 | static inline void __atomic_unlock(volatile bool * ll) { | 
|---|
|  | 176 | /* paranoid */ verify(*ll); | 
|---|
|  | 177 | __atomic_store_n(ll, (bool)false, __ATOMIC_RELEASE); | 
|---|
|  | 178 | } | 
|---|
|  | 179 |  | 
|---|
| [b388ee81] | 180 | //----------------------------------------------------------------------- | 
|---|
|  | 181 | // Reader-Writer lock protecting the ready-queues | 
|---|
|  | 182 | // while this lock is mostly generic some aspects | 
|---|
|  | 183 | // have been hard-coded to for the ready-queue for | 
|---|
|  | 184 | // simplicity and performance | 
|---|
|  | 185 | struct __scheduler_RWLock_t { | 
|---|
|  | 186 | // total cachelines allocated | 
|---|
|  | 187 | unsigned int max; | 
|---|
|  | 188 |  | 
|---|
|  | 189 | // cachelines currently in use | 
|---|
|  | 190 | volatile unsigned int alloc; | 
|---|
|  | 191 |  | 
|---|
|  | 192 | // cachelines ready to itereate over | 
|---|
|  | 193 | // (!= to alloc when thread is in second half of doregister) | 
|---|
|  | 194 | volatile unsigned int ready; | 
|---|
|  | 195 |  | 
|---|
|  | 196 | // writer lock | 
|---|
| [c993b15] | 197 | volatile bool write_lock; | 
|---|
| [b388ee81] | 198 |  | 
|---|
|  | 199 | // data pointer | 
|---|
| [c993b15] | 200 | volatile bool * volatile * data; | 
|---|
| [b388ee81] | 201 | }; | 
|---|
|  | 202 |  | 
|---|
|  | 203 | void  ?{}(__scheduler_RWLock_t & this); | 
|---|
|  | 204 | void ^?{}(__scheduler_RWLock_t & this); | 
|---|
|  | 205 |  | 
|---|
|  | 206 | extern __scheduler_RWLock_t * __scheduler_lock; | 
|---|
|  | 207 |  | 
|---|
| [7768b8d] | 208 | //----------------------------------------------------------------------- | 
|---|
|  | 209 | // Reader side : acquire when using the ready queue to schedule but not | 
|---|
|  | 210 | //  creating/destroying queues | 
|---|
| [e873838] | 211 | static inline void ready_schedule_lock(void) with(*__scheduler_lock) { | 
|---|
| [8fc652e0] | 212 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
| [c993b15] | 213 | /* paranoid */ verify( ! kernelTLS().in_sched_lock ); | 
|---|
|  | 214 | /* paranoid */ verify( data[kernelTLS().sched_id] == &kernelTLS().sched_lock ); | 
|---|
|  | 215 | /* paranoid */ verify( !kernelTLS().this_processor || kernelTLS().this_processor->unique_id == kernelTLS().sched_id ); | 
|---|
| [7768b8d] | 216 |  | 
|---|
|  | 217 | // Step 1 : make sure no writer are in the middle of the critical section | 
|---|
| [c993b15] | 218 | while(__atomic_load_n(&write_lock, (int)__ATOMIC_RELAXED)) | 
|---|
| [fd9b524] | 219 | Pause(); | 
|---|
| [7768b8d] | 220 |  | 
|---|
|  | 221 | // Fence needed because we don't want to start trying to acquire the lock | 
|---|
|  | 222 | // before we read a false. | 
|---|
|  | 223 | // Not needed on x86 | 
|---|
|  | 224 | // std::atomic_thread_fence(std::memory_order_seq_cst); | 
|---|
|  | 225 |  | 
|---|
|  | 226 | // Step 2 : acquire our local lock | 
|---|
| [c993b15] | 227 | __atomic_acquire( &kernelTLS().sched_lock ); | 
|---|
|  | 228 | /*paranoid*/ verify(kernelTLS().sched_lock); | 
|---|
| [64a7146] | 229 |  | 
|---|
|  | 230 | #ifdef __CFA_WITH_VERIFY__ | 
|---|
|  | 231 | // Debug, check if this is owned for reading | 
|---|
| [c993b15] | 232 | kernelTLS().in_sched_lock = true; | 
|---|
| [64a7146] | 233 | #endif | 
|---|
| [7768b8d] | 234 | } | 
|---|
|  | 235 |  | 
|---|
| [e873838] | 236 | static inline void ready_schedule_unlock(void) with(*__scheduler_lock) { | 
|---|
| [8fc652e0] | 237 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
| [c993b15] | 238 | /* paranoid */ verify( data[kernelTLS().sched_id] == &kernelTLS().sched_lock ); | 
|---|
|  | 239 | /* paranoid */ verify( !kernelTLS().this_processor || kernelTLS().this_processor->unique_id == kernelTLS().sched_id ); | 
|---|
|  | 240 | /* paranoid */ verify( kernelTLS().sched_lock ); | 
|---|
|  | 241 | /* paranoid */ verify( kernelTLS().in_sched_lock ); | 
|---|
| [64a7146] | 242 | #ifdef __CFA_WITH_VERIFY__ | 
|---|
|  | 243 | // Debug, check if this is owned for reading | 
|---|
| [c993b15] | 244 | kernelTLS().in_sched_lock = false; | 
|---|
| [64a7146] | 245 | #endif | 
|---|
| [c993b15] | 246 | __atomic_unlock(&kernelTLS().sched_lock); | 
|---|
| [7768b8d] | 247 | } | 
|---|
|  | 248 |  | 
|---|
| [64a7146] | 249 | #ifdef __CFA_WITH_VERIFY__ | 
|---|
| [e873838] | 250 | static inline bool ready_schedule_islocked(void) { | 
|---|
| [8fc652e0] | 251 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
| [c993b15] | 252 | /* paranoid */ verify( (!kernelTLS().in_sched_lock) || kernelTLS().sched_lock ); | 
|---|
|  | 253 | return kernelTLS().sched_lock; | 
|---|
| [64a7146] | 254 | } | 
|---|
|  | 255 |  | 
|---|
|  | 256 | static inline bool ready_mutate_islocked() { | 
|---|
| [c993b15] | 257 | return __scheduler_lock->write_lock; | 
|---|
| [64a7146] | 258 | } | 
|---|
|  | 259 | #endif | 
|---|
|  | 260 |  | 
|---|
| [7768b8d] | 261 | //----------------------------------------------------------------------- | 
|---|
|  | 262 | // Writer side : acquire when changing the ready queue, e.g. adding more | 
|---|
|  | 263 | //  queues or removing them. | 
|---|
| [b388ee81] | 264 | uint_fast32_t ready_mutate_lock( void ); | 
|---|
| [7768b8d] | 265 |  | 
|---|
| [b388ee81] | 266 | void ready_mutate_unlock( uint_fast32_t /* value returned by lock */ ); | 
|---|
| [7768b8d] | 267 |  | 
|---|
| [a33c113] | 268 | //----------------------------------------------------------------------- | 
|---|
|  | 269 | // Lock-Free registering/unregistering of threads | 
|---|
|  | 270 | // Register a processor to a given cluster and get its unique id in return | 
|---|
|  | 271 | // For convenience, also acquires the lock | 
|---|
| [c993b15] | 272 | static inline [unsigned, uint_fast32_t] ready_mutate_register() { | 
|---|
|  | 273 | unsigned id = register_proc_id(); | 
|---|
|  | 274 | uint_fast32_t last = ready_mutate_lock(); | 
|---|
|  | 275 | return [id, last]; | 
|---|
| [a33c113] | 276 | } | 
|---|
|  | 277 |  | 
|---|
|  | 278 | // Unregister a processor from a given cluster using its id, getting back the original pointer | 
|---|
|  | 279 | // assumes the lock is acquired | 
|---|
| [c993b15] | 280 | static inline void ready_mutate_unregister( unsigned id, uint_fast32_t last_s ) { | 
|---|
| [a33c113] | 281 | ready_mutate_unlock( last_s ); | 
|---|
| [c993b15] | 282 | unregister_proc_id( id ); | 
|---|
| [a33c113] | 283 | } | 
|---|
|  | 284 |  | 
|---|
| [a7504db5] | 285 | //----------------------------------------------------------------------- | 
|---|
|  | 286 | // Cluster idle lock/unlock | 
|---|
| [6a9b12b] | 287 | static inline void lock(__cluster_proc_list & this) { | 
|---|
| [a7504db5] | 288 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 289 |  | 
|---|
|  | 290 | // Start by locking the global RWlock so that we know no-one is | 
|---|
|  | 291 | // adding/removing processors while we mess with the idle lock | 
|---|
|  | 292 | ready_schedule_lock(); | 
|---|
|  | 293 |  | 
|---|
| [a633f6f] | 294 | lock( this.lock __cfaabi_dbg_ctx2 ); | 
|---|
| [a7504db5] | 295 |  | 
|---|
|  | 296 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 297 | } | 
|---|
|  | 298 |  | 
|---|
| [5f5a729] | 299 | static inline bool try_lock(__cluster_proc_list & this) { | 
|---|
|  | 300 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 301 |  | 
|---|
|  | 302 | // Start by locking the global RWlock so that we know no-one is | 
|---|
|  | 303 | // adding/removing processors while we mess with the idle lock | 
|---|
|  | 304 | ready_schedule_lock(); | 
|---|
|  | 305 |  | 
|---|
| [a633f6f] | 306 | if(try_lock( this.lock __cfaabi_dbg_ctx2 )) { | 
|---|
| [5f5a729] | 307 | // success | 
|---|
|  | 308 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 309 | return true; | 
|---|
|  | 310 | } | 
|---|
|  | 311 |  | 
|---|
|  | 312 | // failed to lock | 
|---|
|  | 313 | ready_schedule_unlock(); | 
|---|
|  | 314 |  | 
|---|
|  | 315 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 316 | return false; | 
|---|
|  | 317 | } | 
|---|
|  | 318 |  | 
|---|
| [6a9b12b] | 319 | static inline void unlock(__cluster_proc_list & this) { | 
|---|
| [a7504db5] | 320 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 321 |  | 
|---|
| [a633f6f] | 322 | unlock(this.lock); | 
|---|
| [a7504db5] | 323 |  | 
|---|
|  | 324 | // Release the global lock, which we acquired when locking | 
|---|
|  | 325 | ready_schedule_unlock(); | 
|---|
|  | 326 |  | 
|---|
|  | 327 | /* paranoid */ verify( ! __preemption_enabled() ); | 
|---|
|  | 328 | } | 
|---|
|  | 329 |  | 
|---|
| [b798713] | 330 | //======================================================================= | 
|---|
|  | 331 | // Ready-Queue API | 
|---|
| [dca5802] | 332 | //----------------------------------------------------------------------- | 
|---|
|  | 333 | // push thread onto a ready queue for a cluster | 
|---|
|  | 334 | // returns true if the list was previously empty, false otherwise | 
|---|
| [24e321c] | 335 | __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint); | 
|---|
| [dca5802] | 336 |  | 
|---|
|  | 337 | //----------------------------------------------------------------------- | 
|---|
| [fc59df78] | 338 | // pop thread from the local queues of a cluster | 
|---|
| [dca5802] | 339 | // returns 0p if empty | 
|---|
| [1eb239e4] | 340 | // May return 0p spuriously | 
|---|
| [e84ab3d] | 341 | __attribute__((hot)) struct thread$ * pop_fast(struct cluster * cltr); | 
|---|
| [dca5802] | 342 |  | 
|---|
| [1eb239e4] | 343 | //----------------------------------------------------------------------- | 
|---|
| [fc59df78] | 344 | // pop thread from any ready queue of a cluster | 
|---|
| [1eb239e4] | 345 | // returns 0p if empty | 
|---|
| [fc59df78] | 346 | // May return 0p spuriously | 
|---|
| [e84ab3d] | 347 | __attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr); | 
|---|
| [1eb239e4] | 348 |  | 
|---|
| [fc59df78] | 349 | //----------------------------------------------------------------------- | 
|---|
|  | 350 | // search all ready queues of a cluster for any thread | 
|---|
|  | 351 | // returns 0p if empty | 
|---|
|  | 352 | // guaranteed to find any threads added before this call | 
|---|
| [e84ab3d] | 353 | __attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr); | 
|---|
| [fc59df78] | 354 |  | 
|---|
| [24e321c] | 355 | //----------------------------------------------------------------------- | 
|---|
|  | 356 | // get preferred ready for new thread | 
|---|
|  | 357 | unsigned ready_queue_new_preferred(); | 
|---|
|  | 358 |  | 
|---|
| [dca5802] | 359 | //----------------------------------------------------------------------- | 
|---|
|  | 360 | // Increase the width of the ready queue (number of lanes) by 4 | 
|---|
| [a017ee7] | 361 | void ready_queue_grow  (struct cluster * cltr); | 
|---|
| [dca5802] | 362 |  | 
|---|
|  | 363 | //----------------------------------------------------------------------- | 
|---|
|  | 364 | // Decrease the width of the ready queue (number of lanes) by 4 | 
|---|
| [a017ee7] | 365 | void ready_queue_shrink(struct cluster * cltr); | 
|---|
| [b798713] | 366 |  | 
|---|
| [884f3f67] | 367 | //----------------------------------------------------------------------- | 
|---|
|  | 368 | // Decrease the width of the ready queue (number of lanes) by 4 | 
|---|
|  | 369 | void ready_queue_close(struct cluster * cltr); | 
|---|
|  | 370 |  | 
|---|
| [75f3522] | 371 | // Local Variables: // | 
|---|
|  | 372 | // mode: c // | 
|---|
|  | 373 | // tab-width: 4 // | 
|---|
| [4aa2fb2] | 374 | // End: // | 
|---|