[7768b8d] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2019 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 | // ready_queue.cfa --
|
---|
| 8 | //
|
---|
| 9 | // Author : Thierry Delisle
|
---|
| 10 | // Created On : Mon Nov dd 16:29:18 2019
|
---|
| 11 | // Last Modified By :
|
---|
| 12 | // Last Modified On :
|
---|
| 13 | // Update Count :
|
---|
| 14 | //
|
---|
| 15 |
|
---|
| 16 | #define __cforall_thread__
|
---|
[43784ac] | 17 | #define _GNU_SOURCE
|
---|
| 18 |
|
---|
[1b143de] | 19 | // #define __CFA_DEBUG_PRINT_READY_QUEUE__
|
---|
[7768b8d] | 20 |
|
---|
[1eb239e4] | 21 |
|
---|
[a2a4566] | 22 | // #define USE_RELAXED_FIFO
|
---|
[9cc3a18] | 23 | // #define USE_WORK_STEALING
|
---|
[6ba6846] | 24 | // #define USE_CPU_WORK_STEALING
|
---|
[a2a4566] | 25 | #define USE_AWARE_STEALING
|
---|
[9cc3a18] | 26 |
|
---|
[7768b8d] | 27 | #include "bits/defs.hfa"
|
---|
[12daa43] | 28 | #include "device/cpu.hfa"
|
---|
[7768b8d] | 29 | #include "kernel_private.hfa"
|
---|
| 30 |
|
---|
| 31 | #include "stdlib.hfa"
|
---|
[a2a4566] | 32 | #include "limits.hfa"
|
---|
[61d7bec] | 33 | #include "math.hfa"
|
---|
[7768b8d] | 34 |
|
---|
[0ee224b] | 35 | #include <errno.h>
|
---|
[04b5cef] | 36 | #include <unistd.h>
|
---|
| 37 |
|
---|
[0ee224b] | 38 | extern "C" {
|
---|
| 39 | #include <sys/syscall.h> // __NR_xxx
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[13c5e19] | 42 | #include "ready_subqueue.hfa"
|
---|
| 43 |
|
---|
[7768b8d] | 44 | static const size_t cache_line_size = 64;
|
---|
| 45 |
|
---|
[d2fadeb] | 46 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 47 | #define __STATS(...) __VA_ARGS__
|
---|
| 48 | #else
|
---|
| 49 | #define __STATS(...)
|
---|
| 50 | #endif
|
---|
| 51 |
|
---|
[dca5802] | 52 | // No overriden function, no environment variable, no define
|
---|
| 53 | // fall back to a magic number
|
---|
| 54 | #ifndef __CFA_MAX_PROCESSORS__
|
---|
[b388ee81] | 55 | #define __CFA_MAX_PROCESSORS__ 1024
|
---|
[dca5802] | 56 | #endif
|
---|
[7768b8d] | 57 |
|
---|
[a2a4566] | 58 | #if defined(USE_AWARE_STEALING)
|
---|
| 59 | #define READYQ_SHARD_FACTOR 2
|
---|
| 60 | #define SEQUENTIAL_SHARD 2
|
---|
| 61 | #elif defined(USE_CPU_WORK_STEALING)
|
---|
[12daa43] | 62 | #define READYQ_SHARD_FACTOR 2
|
---|
| 63 | #elif defined(USE_RELAXED_FIFO)
|
---|
[9cc3a18] | 64 | #define BIAS 4
|
---|
| 65 | #define READYQ_SHARD_FACTOR 4
|
---|
[5f6a172] | 66 | #define SEQUENTIAL_SHARD 1
|
---|
[9cc3a18] | 67 | #elif defined(USE_WORK_STEALING)
|
---|
| 68 | #define READYQ_SHARD_FACTOR 2
|
---|
[5f6a172] | 69 | #define SEQUENTIAL_SHARD 2
|
---|
[9cc3a18] | 70 | #else
|
---|
| 71 | #error no scheduling strategy selected
|
---|
| 72 | #endif
|
---|
| 73 |
|
---|
[e84ab3d] | 74 | static inline struct thread$ * try_pop(struct cluster * cltr, unsigned w __STATS(, __stats_readyQ_pop_t & stats));
|
---|
| 75 | static inline struct thread$ * try_pop(struct cluster * cltr, unsigned i, unsigned j __STATS(, __stats_readyQ_pop_t & stats));
|
---|
| 76 | static inline struct thread$ * search(struct cluster * cltr);
|
---|
[d2fadeb] | 77 | static inline [unsigned, bool] idx_from_r(unsigned r, unsigned preferred);
|
---|
[9cc3a18] | 78 |
|
---|
[04b5cef] | 79 |
|
---|
[dca5802] | 80 | // returns the maximum number of processors the RWLock support
|
---|
[7768b8d] | 81 | __attribute__((weak)) unsigned __max_processors() {
|
---|
| 82 | const char * max_cores_s = getenv("CFA_MAX_PROCESSORS");
|
---|
| 83 | if(!max_cores_s) {
|
---|
[504a7dc] | 84 | __cfadbg_print_nolock(ready_queue, "No CFA_MAX_PROCESSORS in ENV\n");
|
---|
[dca5802] | 85 | return __CFA_MAX_PROCESSORS__;
|
---|
[7768b8d] | 86 | }
|
---|
| 87 |
|
---|
| 88 | char * endptr = 0p;
|
---|
| 89 | long int max_cores_l = strtol(max_cores_s, &endptr, 10);
|
---|
| 90 | if(max_cores_l < 1 || max_cores_l > 65535) {
|
---|
[504a7dc] | 91 | __cfadbg_print_nolock(ready_queue, "CFA_MAX_PROCESSORS out of range : %ld\n", max_cores_l);
|
---|
[dca5802] | 92 | return __CFA_MAX_PROCESSORS__;
|
---|
[7768b8d] | 93 | }
|
---|
| 94 | if('\0' != *endptr) {
|
---|
[504a7dc] | 95 | __cfadbg_print_nolock(ready_queue, "CFA_MAX_PROCESSORS not a decimal number : %s\n", max_cores_s);
|
---|
[dca5802] | 96 | return __CFA_MAX_PROCESSORS__;
|
---|
[7768b8d] | 97 | }
|
---|
| 98 |
|
---|
| 99 | return max_cores_l;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[0ee224b] | 102 | #if defined(CFA_HAVE_LINUX_LIBRSEQ)
|
---|
| 103 | // No forward declaration needed
|
---|
| 104 | #define __kernel_rseq_register rseq_register_current_thread
|
---|
| 105 | #define __kernel_rseq_unregister rseq_unregister_current_thread
|
---|
| 106 | #elif defined(CFA_HAVE_LINUX_RSEQ_H)
|
---|
[75c7252] | 107 | static void __kernel_raw_rseq_register (void);
|
---|
| 108 | static void __kernel_raw_rseq_unregister(void);
|
---|
[0ee224b] | 109 |
|
---|
| 110 | #define __kernel_rseq_register __kernel_raw_rseq_register
|
---|
| 111 | #define __kernel_rseq_unregister __kernel_raw_rseq_unregister
|
---|
| 112 | #else
|
---|
| 113 | // No forward declaration needed
|
---|
| 114 | // No initialization needed
|
---|
| 115 | static inline void noop(void) {}
|
---|
| 116 |
|
---|
| 117 | #define __kernel_rseq_register noop
|
---|
| 118 | #define __kernel_rseq_unregister noop
|
---|
| 119 | #endif
|
---|
| 120 |
|
---|
[7768b8d] | 121 | //=======================================================================
|
---|
| 122 | // Cluster wide reader-writer lock
|
---|
| 123 | //=======================================================================
|
---|
[b388ee81] | 124 | void ?{}(__scheduler_RWLock_t & this) {
|
---|
[7768b8d] | 125 | this.max = __max_processors();
|
---|
| 126 | this.alloc = 0;
|
---|
| 127 | this.ready = 0;
|
---|
| 128 | this.data = alloc(this.max);
|
---|
[c993b15] | 129 | this.write_lock = false;
|
---|
[7768b8d] | 130 |
|
---|
| 131 | /*paranoid*/ verify(__atomic_is_lock_free(sizeof(this.alloc), &this.alloc));
|
---|
| 132 | /*paranoid*/ verify(__atomic_is_lock_free(sizeof(this.ready), &this.ready));
|
---|
| 133 |
|
---|
| 134 | }
|
---|
[b388ee81] | 135 | void ^?{}(__scheduler_RWLock_t & this) {
|
---|
[7768b8d] | 136 | free(this.data);
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 |
|
---|
| 140 | //=======================================================================
|
---|
| 141 | // Lock-Free registering/unregistering of threads
|
---|
[c993b15] | 142 | unsigned register_proc_id( void ) with(*__scheduler_lock) {
|
---|
[0ee224b] | 143 | __kernel_rseq_register();
|
---|
| 144 |
|
---|
[c993b15] | 145 | bool * handle = (bool *)&kernelTLS().sched_lock;
|
---|
[504a7dc] | 146 |
|
---|
[7768b8d] | 147 | // Step - 1 : check if there is already space in the data
|
---|
| 148 | uint_fast32_t s = ready;
|
---|
| 149 |
|
---|
| 150 | // Check among all the ready
|
---|
| 151 | for(uint_fast32_t i = 0; i < s; i++) {
|
---|
[c993b15] | 152 | bool * volatile * cell = (bool * volatile *)&data[i]; // Cforall is bugged and the double volatiles causes problems
|
---|
| 153 | /* paranoid */ verify( handle != *cell );
|
---|
| 154 |
|
---|
| 155 | bool * null = 0p; // Re-write every loop since compare thrashes it
|
---|
| 156 | if( __atomic_load_n(cell, (int)__ATOMIC_RELAXED) == null
|
---|
| 157 | && __atomic_compare_exchange_n( cell, &null, handle, false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)) {
|
---|
| 158 | /* paranoid */ verify(i < ready);
|
---|
| 159 | /* paranoid */ verify( (kernelTLS().sched_id = i, true) );
|
---|
| 160 | return i;
|
---|
[7768b8d] | 161 | }
|
---|
| 162 | }
|
---|
| 163 |
|
---|
[b388ee81] | 164 | if(max <= alloc) abort("Trying to create more than %ud processors", __scheduler_lock->max);
|
---|
[7768b8d] | 165 |
|
---|
| 166 | // Step - 2 : F&A to get a new spot in the array.
|
---|
| 167 | uint_fast32_t n = __atomic_fetch_add(&alloc, 1, __ATOMIC_SEQ_CST);
|
---|
[b388ee81] | 168 | if(max <= n) abort("Trying to create more than %ud processors", __scheduler_lock->max);
|
---|
[7768b8d] | 169 |
|
---|
| 170 | // Step - 3 : Mark space as used and then publish it.
|
---|
[c993b15] | 171 | data[n] = handle;
|
---|
[fd9b524] | 172 | while() {
|
---|
[7768b8d] | 173 | unsigned copy = n;
|
---|
| 174 | if( __atomic_load_n(&ready, __ATOMIC_RELAXED) == n
|
---|
| 175 | && __atomic_compare_exchange_n(&ready, ©, n + 1, true, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST))
|
---|
| 176 | break;
|
---|
[fd9b524] | 177 | Pause();
|
---|
[7768b8d] | 178 | }
|
---|
| 179 |
|
---|
| 180 | // Return new spot.
|
---|
[c993b15] | 181 | /* paranoid */ verify(n < ready);
|
---|
| 182 | /* paranoid */ verify( (kernelTLS().sched_id = n, true) );
|
---|
| 183 | return n;
|
---|
[7768b8d] | 184 | }
|
---|
| 185 |
|
---|
[c993b15] | 186 | void unregister_proc_id( unsigned id ) with(*__scheduler_lock) {
|
---|
| 187 | /* paranoid */ verify(id < ready);
|
---|
| 188 | /* paranoid */ verify(id == kernelTLS().sched_id);
|
---|
| 189 | /* paranoid */ verify(data[id] == &kernelTLS().sched_lock);
|
---|
| 190 |
|
---|
| 191 | bool * volatile * cell = (bool * volatile *)&data[id]; // Cforall is bugged and the double volatiles causes problems
|
---|
| 192 |
|
---|
| 193 | __atomic_store_n(cell, 0p, __ATOMIC_RELEASE);
|
---|
[504a7dc] | 194 |
|
---|
[0ee224b] | 195 | __kernel_rseq_unregister();
|
---|
[7768b8d] | 196 | }
|
---|
| 197 |
|
---|
| 198 | //-----------------------------------------------------------------------
|
---|
| 199 | // Writer side : acquire when changing the ready queue, e.g. adding more
|
---|
| 200 | // queues or removing them.
|
---|
[b388ee81] | 201 | uint_fast32_t ready_mutate_lock( void ) with(*__scheduler_lock) {
|
---|
[8fc652e0] | 202 | /* paranoid */ verify( ! __preemption_enabled() );
|
---|
[c993b15] | 203 | /* paranoid */ verify( ! kernelTLS().sched_lock );
|
---|
[62502cc4] | 204 |
|
---|
[7768b8d] | 205 | // Step 1 : lock global lock
|
---|
| 206 | // It is needed to avoid processors that register mid Critical-Section
|
---|
| 207 | // to simply lock their own lock and enter.
|
---|
[c993b15] | 208 | __atomic_acquire( &write_lock );
|
---|
[7768b8d] | 209 |
|
---|
| 210 | // Step 2 : lock per-proc lock
|
---|
| 211 | // Processors that are currently being registered aren't counted
|
---|
| 212 | // but can't be in read_lock or in the critical section.
|
---|
| 213 | // All other processors are counted
|
---|
| 214 | uint_fast32_t s = ready;
|
---|
| 215 | for(uint_fast32_t i = 0; i < s; i++) {
|
---|
[c993b15] | 216 | volatile bool * llock = data[i];
|
---|
| 217 | if(llock) __atomic_acquire( llock );
|
---|
[7768b8d] | 218 | }
|
---|
| 219 |
|
---|
[8fc652e0] | 220 | /* paranoid */ verify( ! __preemption_enabled() );
|
---|
[7768b8d] | 221 | return s;
|
---|
| 222 | }
|
---|
| 223 |
|
---|
[b388ee81] | 224 | void ready_mutate_unlock( uint_fast32_t last_s ) with(*__scheduler_lock) {
|
---|
[8fc652e0] | 225 | /* paranoid */ verify( ! __preemption_enabled() );
|
---|
[62502cc4] | 226 |
|
---|
[7768b8d] | 227 | // Step 1 : release local locks
|
---|
| 228 | // This must be done while the global lock is held to avoid
|
---|
| 229 | // threads that where created mid critical section
|
---|
| 230 | // to race to lock their local locks and have the writer
|
---|
| 231 | // immidiately unlock them
|
---|
| 232 | // Alternative solution : return s in write_lock and pass it to write_unlock
|
---|
| 233 | for(uint_fast32_t i = 0; i < last_s; i++) {
|
---|
[c993b15] | 234 | volatile bool * llock = data[i];
|
---|
| 235 | if(llock) __atomic_store_n(llock, (bool)false, __ATOMIC_RELEASE);
|
---|
[7768b8d] | 236 | }
|
---|
| 237 |
|
---|
| 238 | // Step 2 : release global lock
|
---|
[c993b15] | 239 | /*paranoid*/ assert(true == write_lock);
|
---|
| 240 | __atomic_store_n(&write_lock, (bool)false, __ATOMIC_RELEASE);
|
---|
[62502cc4] | 241 |
|
---|
[8fc652e0] | 242 | /* paranoid */ verify( ! __preemption_enabled() );
|
---|
[7768b8d] | 243 | }
|
---|
| 244 |
|
---|
[a2a4566] | 245 | //=======================================================================
|
---|
| 246 | // caches handling
|
---|
| 247 |
|
---|
| 248 | struct __attribute__((aligned(128))) __ready_queue_caches_t {
|
---|
| 249 | // Count States:
|
---|
| 250 | // - 0 : No one is looking after this cache
|
---|
| 251 | // - 1 : No one is looking after this cache, BUT it's not empty
|
---|
| 252 | // - 2+ : At least one processor is looking after this cache
|
---|
| 253 | volatile unsigned count;
|
---|
| 254 | };
|
---|
| 255 |
|
---|
| 256 | void ?{}(__ready_queue_caches_t & this) { this.count = 0; }
|
---|
| 257 | void ^?{}(__ready_queue_caches_t & this) {}
|
---|
| 258 |
|
---|
| 259 | static inline void depart(__ready_queue_caches_t & cache) {
|
---|
| 260 | /* paranoid */ verify( cache.count > 1);
|
---|
| 261 | __atomic_fetch_add(&cache.count, -1, __ATOMIC_SEQ_CST);
|
---|
| 262 | /* paranoid */ verify( cache.count != 0);
|
---|
| 263 | /* paranoid */ verify( cache.count < 65536 ); // This verify assumes no cluster will have more than 65000 kernel threads mapped to a single cache, which could be correct but is super weird.
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 | static inline void arrive(__ready_queue_caches_t & cache) {
|
---|
| 267 | // for() {
|
---|
| 268 | // unsigned expected = cache.count;
|
---|
| 269 | // unsigned desired = 0 == expected ? 2 : expected + 1;
|
---|
| 270 | // }
|
---|
| 271 | }
|
---|
| 272 |
|
---|
[7768b8d] | 273 | //=======================================================================
|
---|
[9cc3a18] | 274 | // Cforall Ready Queue used for scheduling
|
---|
[b798713] | 275 | //=======================================================================
|
---|
[a2a4566] | 276 | unsigned long long moving_average(unsigned long long currtsc, unsigned long long instsc, unsigned long long old_avg) {
|
---|
| 277 | /* paranoid */ verifyf( currtsc < 45000000000000000, "Suspiciously large current time: %'llu (%llx)\n", currtsc, currtsc );
|
---|
| 278 | /* paranoid */ verifyf( instsc < 45000000000000000, "Suspiciously large insert time: %'llu (%llx)\n", instsc, instsc );
|
---|
| 279 | /* paranoid */ verifyf( old_avg < 15000000000000, "Suspiciously large previous average: %'llu (%llx)\n", old_avg, old_avg );
|
---|
| 280 |
|
---|
| 281 | const unsigned long long new_val = currtsc > instsc ? currtsc - instsc : 0;
|
---|
| 282 | const unsigned long long total_weight = 16;
|
---|
| 283 | const unsigned long long new_weight = 4;
|
---|
| 284 | const unsigned long long old_weight = total_weight - new_weight;
|
---|
| 285 | const unsigned long long ret = ((new_weight * new_val) + (old_weight * old_avg)) / total_weight;
|
---|
| 286 | return ret;
|
---|
[089d30c] | 287 | }
|
---|
| 288 |
|
---|
[b798713] | 289 | void ?{}(__ready_queue_t & this) with (this) {
|
---|
[12daa43] | 290 | #if defined(USE_CPU_WORK_STEALING)
|
---|
| 291 | lanes.count = cpu_info.hthrd_count * READYQ_SHARD_FACTOR;
|
---|
| 292 | lanes.data = alloc( lanes.count );
|
---|
| 293 | lanes.tscs = alloc( lanes.count );
|
---|
[089d30c] | 294 | lanes.help = alloc( cpu_info.hthrd_count );
|
---|
[12daa43] | 295 |
|
---|
| 296 | for( idx; (size_t)lanes.count ) {
|
---|
| 297 | (lanes.data[idx]){};
|
---|
| 298 | lanes.tscs[idx].tv = rdtscl();
|
---|
[089d30c] | 299 | lanes.tscs[idx].ma = rdtscl();
|
---|
| 300 | }
|
---|
| 301 | for( idx; (size_t)cpu_info.hthrd_count ) {
|
---|
| 302 | lanes.help[idx].src = 0;
|
---|
| 303 | lanes.help[idx].dst = 0;
|
---|
| 304 | lanes.help[idx].tri = 0;
|
---|
[12daa43] | 305 | }
|
---|
| 306 | #else
|
---|
[a2a4566] | 307 | lanes.data = 0p;
|
---|
| 308 | lanes.tscs = 0p;
|
---|
| 309 | lanes.caches = 0p;
|
---|
| 310 | lanes.help = 0p;
|
---|
| 311 | lanes.count = 0;
|
---|
[12daa43] | 312 | #endif
|
---|
[b798713] | 313 | }
|
---|
| 314 |
|
---|
| 315 | void ^?{}(__ready_queue_t & this) with (this) {
|
---|
[12daa43] | 316 | #if !defined(USE_CPU_WORK_STEALING)
|
---|
| 317 | verify( SEQUENTIAL_SHARD == lanes.count );
|
---|
| 318 | #endif
|
---|
| 319 |
|
---|
[dca5802] | 320 | free(lanes.data);
|
---|
[9cc3a18] | 321 | free(lanes.tscs);
|
---|
[a2a4566] | 322 | free(lanes.caches);
|
---|
[089d30c] | 323 | free(lanes.help);
|
---|
[dca5802] | 324 | }
|
---|
| 325 |
|
---|
[64a7146] | 326 | //-----------------------------------------------------------------------
|
---|
[a2a4566] | 327 | #if defined(USE_AWARE_STEALING)
|
---|
| 328 | __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint) with (cltr->ready_queue) {
|
---|
| 329 | processor * const proc = kernelTLS().this_processor;
|
---|
| 330 | const bool external = (!proc) || (cltr != proc->cltr);
|
---|
| 331 | const bool remote = hint == UNPARK_REMOTE;
|
---|
| 332 |
|
---|
| 333 | unsigned i;
|
---|
| 334 | if( external || remote ) {
|
---|
| 335 | // Figure out where thread was last time and make sure it's valid
|
---|
| 336 | /* paranoid */ verify(thrd->preferred >= 0);
|
---|
| 337 | if(thrd->preferred * READYQ_SHARD_FACTOR < lanes.count) {
|
---|
| 338 | /* paranoid */ verify(thrd->preferred * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 339 | unsigned start = thrd->preferred * READYQ_SHARD_FACTOR;
|
---|
| 340 | do {
|
---|
| 341 | unsigned r = __tls_rand();
|
---|
| 342 | i = start + (r % READYQ_SHARD_FACTOR);
|
---|
| 343 | /* paranoid */ verify( i < lanes.count );
|
---|
| 344 | // If we can't lock it retry
|
---|
| 345 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
| 346 | } else {
|
---|
| 347 | do {
|
---|
| 348 | i = __tls_rand() % lanes.count;
|
---|
| 349 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
| 350 | }
|
---|
| 351 | } else {
|
---|
| 352 | do {
|
---|
| 353 | unsigned r = proc->rdq.its++;
|
---|
| 354 | i = proc->rdq.id + (r % READYQ_SHARD_FACTOR);
|
---|
| 355 | /* paranoid */ verify( i < lanes.count );
|
---|
| 356 | // If we can't lock it retry
|
---|
| 357 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
| 358 | }
|
---|
| 359 |
|
---|
| 360 | // Actually push it
|
---|
| 361 | push(lanes.data[i], thrd);
|
---|
| 362 |
|
---|
| 363 | // Unlock and return
|
---|
| 364 | __atomic_unlock( &lanes.data[i].lock );
|
---|
| 365 |
|
---|
| 366 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 367 | if(unlikely(external || remote)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.success, 1, __ATOMIC_RELAXED);
|
---|
| 368 | else __tls_stats()->ready.push.local.success++;
|
---|
| 369 | #endif
|
---|
| 370 | }
|
---|
| 371 |
|
---|
| 372 | static inline unsigned long long calc_cutoff(const unsigned long long ctsc, const processor * proc, __ready_queue_t & rdq) {
|
---|
| 373 | unsigned start = proc->rdq.id;
|
---|
| 374 | unsigned long long max = 0;
|
---|
| 375 | for(i; READYQ_SHARD_FACTOR) {
|
---|
| 376 | unsigned long long ptsc = ts(rdq.lanes.data[start + i]);
|
---|
| 377 | if(ptsc != -1ull) {
|
---|
| 378 | /* paranoid */ verify( start + i < rdq.lanes.count );
|
---|
| 379 | unsigned long long tsc = moving_average(ctsc, ptsc, rdq.lanes.tscs[start + i].ma);
|
---|
| 380 | if(tsc > max) max = tsc;
|
---|
| 381 | }
|
---|
| 382 | }
|
---|
| 383 | return (max + 2 * max) / 2;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
| 386 | __attribute__((hot)) struct thread$ * pop_fast(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
| 387 | /* paranoid */ verify( lanes.count > 0 );
|
---|
| 388 | /* paranoid */ verify( kernelTLS().this_processor );
|
---|
| 389 | /* paranoid */ verify( kernelTLS().this_processor->rdq.id < lanes.count );
|
---|
| 390 |
|
---|
| 391 | processor * const proc = kernelTLS().this_processor;
|
---|
| 392 | unsigned this = proc->rdq.id;
|
---|
| 393 | /* paranoid */ verify( this < lanes.count );
|
---|
| 394 | __cfadbg_print_safe(ready_queue, "Kernel : pop from %u\n", this);
|
---|
| 395 |
|
---|
| 396 | // Figure out the current cpu and make sure it is valid
|
---|
| 397 | const int cpu = __kernel_getcpu();
|
---|
| 398 | /* paranoid */ verify(cpu >= 0);
|
---|
| 399 | /* paranoid */ verify(cpu < cpu_info.hthrd_count);
|
---|
| 400 | unsigned this_cache = cpu_info.llc_map[cpu].cache;
|
---|
[0fb3ee5] | 401 |
|
---|
| 402 | // Super important: don't write the same value over and over again
|
---|
| 403 | // We want to maximise our chances that his particular values stays in cache
|
---|
| 404 | if(lanes.caches[this / READYQ_SHARD_FACTOR].id != this_cache)
|
---|
| 405 | __atomic_store_n(&lanes.caches[this / READYQ_SHARD_FACTOR].id, this_cache, __ATOMIC_RELAXED);
|
---|
[a2a4566] | 406 |
|
---|
| 407 | const unsigned long long ctsc = rdtscl();
|
---|
| 408 |
|
---|
| 409 | if(proc->rdq.target == MAX) {
|
---|
| 410 | uint64_t chaos = __tls_rand();
|
---|
| 411 | unsigned ext = chaos & 0xff;
|
---|
| 412 | unsigned other = (chaos >> 8) % (lanes.count);
|
---|
| 413 |
|
---|
| 414 | if(ext < 3 || __atomic_load_n(&lanes.caches[other / READYQ_SHARD_FACTOR].id, __ATOMIC_RELAXED) == this_cache) {
|
---|
| 415 | proc->rdq.target = other;
|
---|
| 416 | }
|
---|
| 417 | }
|
---|
| 418 | else {
|
---|
| 419 | const unsigned target = proc->rdq.target;
|
---|
| 420 | __cfadbg_print_safe(ready_queue, "Kernel : %u considering helping %u, tcsc %llu\n", this, target, lanes.tscs[target].tv);
|
---|
| 421 | /* paranoid */ verify( lanes.tscs[target].tv != MAX );
|
---|
| 422 | if(target < lanes.count) {
|
---|
| 423 | const unsigned long long cutoff = calc_cutoff(ctsc, proc, cltr->ready_queue);
|
---|
| 424 | const unsigned long long age = moving_average(ctsc, lanes.tscs[target].tv, lanes.tscs[target].ma);
|
---|
| 425 | __cfadbg_print_safe(ready_queue, "Kernel : Help attempt on %u from %u, age %'llu vs cutoff %'llu, %s\n", target, this, age, cutoff, age > cutoff ? "yes" : "no");
|
---|
| 426 | if(age > cutoff) {
|
---|
| 427 | thread$ * t = try_pop(cltr, target __STATS(, __tls_stats()->ready.pop.help));
|
---|
| 428 | if(t) return t;
|
---|
| 429 | }
|
---|
| 430 | }
|
---|
| 431 | proc->rdq.target = MAX;
|
---|
| 432 | }
|
---|
| 433 |
|
---|
| 434 | for(READYQ_SHARD_FACTOR) {
|
---|
| 435 | unsigned i = this + (proc->rdq.itr++ % READYQ_SHARD_FACTOR);
|
---|
| 436 | if(thread$ * t = try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.local))) return t;
|
---|
| 437 | }
|
---|
| 438 |
|
---|
| 439 | // All lanes where empty return 0p
|
---|
| 440 | return 0p;
|
---|
| 441 |
|
---|
| 442 | }
|
---|
| 443 | __attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
| 444 | unsigned i = __tls_rand() % lanes.count;
|
---|
| 445 | return try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.steal));
|
---|
| 446 | }
|
---|
| 447 | __attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr) {
|
---|
| 448 | return search(cltr);
|
---|
| 449 | }
|
---|
| 450 | #endif
|
---|
[12daa43] | 451 | #if defined(USE_CPU_WORK_STEALING)
|
---|
[24e321c] | 452 | __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint) with (cltr->ready_queue) {
|
---|
[12daa43] | 453 | __cfadbg_print_safe(ready_queue, "Kernel : Pushing %p on cluster %p\n", thrd, cltr);
|
---|
| 454 |
|
---|
| 455 | processor * const proc = kernelTLS().this_processor;
|
---|
[75c7252] | 456 | const bool external = (!proc) || (cltr != proc->cltr);
|
---|
[12daa43] | 457 |
|
---|
[75c7252] | 458 | // Figure out the current cpu and make sure it is valid
|
---|
[12daa43] | 459 | const int cpu = __kernel_getcpu();
|
---|
| 460 | /* paranoid */ verify(cpu >= 0);
|
---|
| 461 | /* paranoid */ verify(cpu < cpu_info.hthrd_count);
|
---|
| 462 | /* paranoid */ verify(cpu * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 463 |
|
---|
[75c7252] | 464 | // Figure out where thread was last time and make sure it's
|
---|
| 465 | /* paranoid */ verify(thrd->preferred >= 0);
|
---|
| 466 | /* paranoid */ verify(thrd->preferred < cpu_info.hthrd_count);
|
---|
| 467 | /* paranoid */ verify(thrd->preferred * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 468 | const int prf = thrd->preferred * READYQ_SHARD_FACTOR;
|
---|
| 469 |
|
---|
| 470 | const cpu_map_entry_t & map;
|
---|
| 471 | choose(hint) {
|
---|
| 472 | case UNPARK_LOCAL : &map = &cpu_info.llc_map[cpu];
|
---|
| 473 | case UNPARK_REMOTE: &map = &cpu_info.llc_map[prf];
|
---|
| 474 | }
|
---|
[df7597e0] | 475 | /* paranoid */ verify(map.start * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 476 | /* paranoid */ verify(map.self * READYQ_SHARD_FACTOR < lanes.count);
|
---|
[5614552a] | 477 | /* paranoid */ verifyf((map.start + map.count) * READYQ_SHARD_FACTOR <= lanes.count, "have %zu lanes but map can go up to %u", lanes.count, (map.start + map.count) * READYQ_SHARD_FACTOR);
|
---|
[df7597e0] | 478 |
|
---|
| 479 | const int start = map.self * READYQ_SHARD_FACTOR;
|
---|
[12daa43] | 480 | unsigned i;
|
---|
| 481 | do {
|
---|
| 482 | unsigned r;
|
---|
| 483 | if(unlikely(external)) { r = __tls_rand(); }
|
---|
| 484 | else { r = proc->rdq.its++; }
|
---|
[75c7252] | 485 | choose(hint) {
|
---|
| 486 | case UNPARK_LOCAL : i = start + (r % READYQ_SHARD_FACTOR);
|
---|
| 487 | case UNPARK_REMOTE: i = prf + (r % READYQ_SHARD_FACTOR);
|
---|
| 488 | }
|
---|
[12daa43] | 489 | // If we can't lock it retry
|
---|
| 490 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
| 491 |
|
---|
| 492 | // Actually push it
|
---|
| 493 | push(lanes.data[i], thrd);
|
---|
| 494 |
|
---|
| 495 | // Unlock and return
|
---|
| 496 | __atomic_unlock( &lanes.data[i].lock );
|
---|
| 497 |
|
---|
| 498 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 499 | if(unlikely(external)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.success, 1, __ATOMIC_RELAXED);
|
---|
| 500 | else __tls_stats()->ready.push.local.success++;
|
---|
| 501 | #endif
|
---|
| 502 |
|
---|
| 503 | __cfadbg_print_safe(ready_queue, "Kernel : Pushed %p on cluster %p (idx: %u, mask %llu, first %d)\n", thrd, cltr, i, used.mask[0], lane_first);
|
---|
| 504 |
|
---|
| 505 | }
|
---|
| 506 |
|
---|
| 507 | // Pop from the ready queue from a given cluster
|
---|
[e84ab3d] | 508 | __attribute__((hot)) thread$ * pop_fast(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[12daa43] | 509 | /* paranoid */ verify( lanes.count > 0 );
|
---|
| 510 | /* paranoid */ verify( kernelTLS().this_processor );
|
---|
| 511 |
|
---|
[a2a4566] | 512 | processor * const proc = kernelTLS().this_processor;
|
---|
[25337e0] | 513 | const int cpu = __kernel_getcpu();
|
---|
[12daa43] | 514 | /* paranoid */ verify(cpu >= 0);
|
---|
| 515 | /* paranoid */ verify(cpu < cpu_info.hthrd_count);
|
---|
[df7597e0] | 516 | /* paranoid */ verify(cpu * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 517 |
|
---|
| 518 | const cpu_map_entry_t & map = cpu_info.llc_map[cpu];
|
---|
| 519 | /* paranoid */ verify(map.start * READYQ_SHARD_FACTOR < lanes.count);
|
---|
| 520 | /* paranoid */ verify(map.self * READYQ_SHARD_FACTOR < lanes.count);
|
---|
[5614552a] | 521 | /* paranoid */ verifyf((map.start + map.count) * READYQ_SHARD_FACTOR <= lanes.count, "have %zu lanes but map can go up to %u", lanes.count, (map.start + map.count) * READYQ_SHARD_FACTOR);
|
---|
[12daa43] | 522 |
|
---|
[df7597e0] | 523 | const int start = map.self * READYQ_SHARD_FACTOR;
|
---|
[089d30c] | 524 | const unsigned long long ctsc = rdtscl();
|
---|
[12daa43] | 525 |
|
---|
| 526 | // Did we already have a help target
|
---|
[a2a4566] | 527 | if(proc->rdq.target == MAX) {
|
---|
[089d30c] | 528 | unsigned long long max = 0;
|
---|
[12daa43] | 529 | for(i; READYQ_SHARD_FACTOR) {
|
---|
[25337e0] | 530 | unsigned long long tsc = moving_average(ctsc, ts(lanes.data[start + i]), lanes.tscs[start + i].ma);
|
---|
[089d30c] | 531 | if(tsc > max) max = tsc;
|
---|
[12daa43] | 532 | }
|
---|
[a2a4566] | 533 | // proc->rdq.cutoff = (max + 2 * max) / 2;
|
---|
[953827a] | 534 | /* paranoid */ verify(lanes.count < 65536); // The following code assumes max 65536 cores.
|
---|
| 535 | /* paranoid */ verify(map.count < 65536); // The following code assumes max 65536 cores.
|
---|
| 536 |
|
---|
[089d30c] | 537 | if(0 == (__tls_rand() % 100)) {
|
---|
[1f45c7d] | 538 | proc->rdq.target = __tls_rand() % lanes.count;
|
---|
[953827a] | 539 | } else {
|
---|
[1f45c7d] | 540 | unsigned cpu_chaos = map.start + (__tls_rand() % map.count);
|
---|
| 541 | proc->rdq.target = (cpu_chaos * READYQ_SHARD_FACTOR) + (__tls_rand() % READYQ_SHARD_FACTOR);
|
---|
[953827a] | 542 | /* paranoid */ verify(proc->rdq.target >= (map.start * READYQ_SHARD_FACTOR));
|
---|
| 543 | /* paranoid */ verify(proc->rdq.target < ((map.start + map.count) * READYQ_SHARD_FACTOR));
|
---|
| 544 | }
|
---|
| 545 |
|
---|
[a2a4566] | 546 | /* paranoid */ verify(proc->rdq.target != MAX);
|
---|
[12daa43] | 547 | }
|
---|
| 548 | else {
|
---|
[089d30c] | 549 | unsigned long long max = 0;
|
---|
| 550 | for(i; READYQ_SHARD_FACTOR) {
|
---|
[25337e0] | 551 | unsigned long long tsc = moving_average(ctsc, ts(lanes.data[start + i]), lanes.tscs[start + i].ma);
|
---|
[089d30c] | 552 | if(tsc > max) max = tsc;
|
---|
| 553 | }
|
---|
| 554 | const unsigned long long cutoff = (max + 2 * max) / 2;
|
---|
[12daa43] | 555 | {
|
---|
| 556 | unsigned target = proc->rdq.target;
|
---|
[a2a4566] | 557 | proc->rdq.target = MAX;
|
---|
[fcd65ca] | 558 | lanes.help[target / READYQ_SHARD_FACTOR].tri++;
|
---|
[25337e0] | 559 | if(moving_average(ctsc, lanes.tscs[target].tv, lanes.tscs[target].ma) > cutoff) {
|
---|
[e84ab3d] | 560 | thread$ * t = try_pop(cltr, target __STATS(, __tls_stats()->ready.pop.help));
|
---|
[12daa43] | 561 | proc->rdq.last = target;
|
---|
| 562 | if(t) return t;
|
---|
| 563 | }
|
---|
[a2a4566] | 564 | proc->rdq.target = MAX;
|
---|
[12daa43] | 565 | }
|
---|
| 566 |
|
---|
| 567 | unsigned last = proc->rdq.last;
|
---|
[25337e0] | 568 | if(last != MAX && moving_average(ctsc, lanes.tscs[last].tv, lanes.tscs[last].ma) > cutoff) {
|
---|
[e84ab3d] | 569 | thread$ * t = try_pop(cltr, last __STATS(, __tls_stats()->ready.pop.help));
|
---|
[12daa43] | 570 | if(t) return t;
|
---|
| 571 | }
|
---|
| 572 | else {
|
---|
[a2a4566] | 573 | proc->rdq.last = MAX;
|
---|
[12daa43] | 574 | }
|
---|
| 575 | }
|
---|
| 576 |
|
---|
| 577 | for(READYQ_SHARD_FACTOR) {
|
---|
| 578 | unsigned i = start + (proc->rdq.itr++ % READYQ_SHARD_FACTOR);
|
---|
[e84ab3d] | 579 | if(thread$ * t = try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.local))) return t;
|
---|
[12daa43] | 580 | }
|
---|
| 581 |
|
---|
| 582 | // All lanes where empty return 0p
|
---|
| 583 | return 0p;
|
---|
| 584 | }
|
---|
| 585 |
|
---|
[e84ab3d] | 586 | __attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[12daa43] | 587 | processor * const proc = kernelTLS().this_processor;
|
---|
| 588 | unsigned last = proc->rdq.last;
|
---|
[a2a4566] | 589 | if(last != MAX) {
|
---|
[e84ab3d] | 590 | struct thread$ * t = try_pop(cltr, last __STATS(, __tls_stats()->ready.pop.steal));
|
---|
[953827a] | 591 | if(t) return t;
|
---|
[a2a4566] | 592 | proc->rdq.last = MAX;
|
---|
[953827a] | 593 | }
|
---|
[12daa43] | 594 |
|
---|
| 595 | unsigned i = __tls_rand() % lanes.count;
|
---|
| 596 | return try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.steal));
|
---|
| 597 | }
|
---|
[e84ab3d] | 598 | __attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr) {
|
---|
[12daa43] | 599 | return search(cltr);
|
---|
| 600 | }
|
---|
| 601 | #endif
|
---|
[431cd4f] | 602 | #if defined(USE_RELAXED_FIFO)
|
---|
| 603 | //-----------------------------------------------------------------------
|
---|
| 604 | // get index from random number with or without bias towards queues
|
---|
| 605 | static inline [unsigned, bool] idx_from_r(unsigned r, unsigned preferred) {
|
---|
| 606 | unsigned i;
|
---|
| 607 | bool local;
|
---|
| 608 | unsigned rlow = r % BIAS;
|
---|
| 609 | unsigned rhigh = r / BIAS;
|
---|
| 610 | if((0 != rlow) && preferred >= 0) {
|
---|
| 611 | // (BIAS - 1) out of BIAS chances
|
---|
| 612 | // Use perferred queues
|
---|
| 613 | i = preferred + (rhigh % READYQ_SHARD_FACTOR);
|
---|
| 614 | local = true;
|
---|
| 615 | }
|
---|
| 616 | else {
|
---|
| 617 | // 1 out of BIAS chances
|
---|
| 618 | // Use all queues
|
---|
| 619 | i = rhigh;
|
---|
| 620 | local = false;
|
---|
| 621 | }
|
---|
| 622 | return [i, local];
|
---|
| 623 | }
|
---|
| 624 |
|
---|
[24e321c] | 625 | __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint) with (cltr->ready_queue) {
|
---|
[431cd4f] | 626 | __cfadbg_print_safe(ready_queue, "Kernel : Pushing %p on cluster %p\n", thrd, cltr);
|
---|
[1b143de] | 627 |
|
---|
[24e321c] | 628 | const bool external = (hint != UNPARK_LOCAL) || (!kernelTLS().this_processor) || (cltr != kernelTLS().this_processor->cltr);
|
---|
[431cd4f] | 629 | /* paranoid */ verify(external || kernelTLS().this_processor->rdq.id < lanes.count );
|
---|
[fd1f65e] | 630 |
|
---|
[431cd4f] | 631 | bool local;
|
---|
| 632 | int preferred = external ? -1 : kernelTLS().this_processor->rdq.id;
|
---|
[52769ba] | 633 |
|
---|
[431cd4f] | 634 | // Try to pick a lane and lock it
|
---|
| 635 | unsigned i;
|
---|
| 636 | do {
|
---|
| 637 | // Pick the index of a lane
|
---|
| 638 | unsigned r = __tls_rand_fwd();
|
---|
| 639 | [i, local] = idx_from_r(r, preferred);
|
---|
[772411a] | 640 |
|
---|
[431cd4f] | 641 | i %= __atomic_load_n( &lanes.count, __ATOMIC_RELAXED );
|
---|
| 642 |
|
---|
| 643 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
[d2fadeb] | 644 | if(unlikely(external)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.attempt, 1, __ATOMIC_RELAXED);
|
---|
| 645 | else if(local) __tls_stats()->ready.push.local.attempt++;
|
---|
| 646 | else __tls_stats()->ready.push.share.attempt++;
|
---|
[431cd4f] | 647 | #endif
|
---|
[b798713] | 648 |
|
---|
[431cd4f] | 649 | // If we can't lock it retry
|
---|
| 650 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
| 651 |
|
---|
| 652 | // Actually push it
|
---|
| 653 | push(lanes.data[i], thrd);
|
---|
| 654 |
|
---|
[b808625] | 655 | // Unlock and return
|
---|
| 656 | __atomic_unlock( &lanes.data[i].lock );
|
---|
[431cd4f] | 657 |
|
---|
| 658 | // Mark the current index in the tls rng instance as having an item
|
---|
| 659 | __tls_rand_advance_bck();
|
---|
| 660 |
|
---|
| 661 | __cfadbg_print_safe(ready_queue, "Kernel : Pushed %p on cluster %p (idx: %u, mask %llu, first %d)\n", thrd, cltr, i, used.mask[0], lane_first);
|
---|
| 662 |
|
---|
| 663 | // Update statistics
|
---|
[b798713] | 664 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
[d2fadeb] | 665 | if(unlikely(external)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.success, 1, __ATOMIC_RELAXED);
|
---|
| 666 | else if(local) __tls_stats()->ready.push.local.success++;
|
---|
| 667 | else __tls_stats()->ready.push.share.success++;
|
---|
[b798713] | 668 | #endif
|
---|
[431cd4f] | 669 | }
|
---|
[b798713] | 670 |
|
---|
[431cd4f] | 671 | // Pop from the ready queue from a given cluster
|
---|
[e84ab3d] | 672 | __attribute__((hot)) thread$ * pop_fast(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[431cd4f] | 673 | /* paranoid */ verify( lanes.count > 0 );
|
---|
| 674 | /* paranoid */ verify( kernelTLS().this_processor );
|
---|
| 675 | /* paranoid */ verify( kernelTLS().this_processor->rdq.id < lanes.count );
|
---|
[b798713] | 676 |
|
---|
[431cd4f] | 677 | unsigned count = __atomic_load_n( &lanes.count, __ATOMIC_RELAXED );
|
---|
| 678 | int preferred = kernelTLS().this_processor->rdq.id;
|
---|
[dca5802] | 679 |
|
---|
| 680 |
|
---|
[431cd4f] | 681 | // As long as the list is not empty, try finding a lane that isn't empty and pop from it
|
---|
| 682 | for(25) {
|
---|
| 683 | // Pick two lists at random
|
---|
| 684 | unsigned ri = __tls_rand_bck();
|
---|
| 685 | unsigned rj = __tls_rand_bck();
|
---|
[c426b03] | 686 |
|
---|
[431cd4f] | 687 | unsigned i, j;
|
---|
| 688 | __attribute__((unused)) bool locali, localj;
|
---|
| 689 | [i, locali] = idx_from_r(ri, preferred);
|
---|
| 690 | [j, localj] = idx_from_r(rj, preferred);
|
---|
[1b143de] | 691 |
|
---|
[431cd4f] | 692 | i %= count;
|
---|
| 693 | j %= count;
|
---|
[9cc3a18] | 694 |
|
---|
[431cd4f] | 695 | // try popping from the 2 picked lists
|
---|
[e84ab3d] | 696 | struct thread$ * thrd = try_pop(cltr, i, j __STATS(, *(locali || localj ? &__tls_stats()->ready.pop.local : &__tls_stats()->ready.pop.help)));
|
---|
[431cd4f] | 697 | if(thrd) {
|
---|
| 698 | return thrd;
|
---|
| 699 | }
|
---|
| 700 | }
|
---|
[13c5e19] | 701 |
|
---|
[431cd4f] | 702 | // All lanes where empty return 0p
|
---|
| 703 | return 0p;
|
---|
| 704 | }
|
---|
[772411a] | 705 |
|
---|
[e84ab3d] | 706 | __attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr) { return pop_fast(cltr); }
|
---|
| 707 | __attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr) {
|
---|
[431cd4f] | 708 | return search(cltr);
|
---|
| 709 | }
|
---|
| 710 | #endif
|
---|
| 711 | #if defined(USE_WORK_STEALING)
|
---|
[24e321c] | 712 | __attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint) with (cltr->ready_queue) {
|
---|
[431cd4f] | 713 | __cfadbg_print_safe(ready_queue, "Kernel : Pushing %p on cluster %p\n", thrd, cltr);
|
---|
[772411a] | 714 |
|
---|
[d3ba775] | 715 | // #define USE_PREFERRED
|
---|
| 716 | #if !defined(USE_PREFERRED)
|
---|
[24e321c] | 717 | const bool external = (hint != UNPARK_LOCAL) || (!kernelTLS().this_processor) || (cltr != kernelTLS().this_processor->cltr);
|
---|
[431cd4f] | 718 | /* paranoid */ verify(external || kernelTLS().this_processor->rdq.id < lanes.count );
|
---|
[d3ba775] | 719 | #else
|
---|
| 720 | unsigned preferred = thrd->preferred;
|
---|
[a2a4566] | 721 | const bool external = (hint != UNPARK_LOCAL) || (!kernelTLS().this_processor) || preferred == MAX || thrd->curr_cluster != cltr;
|
---|
[d3ba775] | 722 | /* paranoid */ verifyf(external || preferred < lanes.count, "Invalid preferred queue %u for %u lanes", preferred, lanes.count );
|
---|
[772411a] | 723 |
|
---|
[d3ba775] | 724 | unsigned r = preferred % READYQ_SHARD_FACTOR;
|
---|
| 725 | const unsigned start = preferred - r;
|
---|
[2b96031] | 726 | #endif
|
---|
[431cd4f] | 727 |
|
---|
| 728 | // Try to pick a lane and lock it
|
---|
| 729 | unsigned i;
|
---|
| 730 | do {
|
---|
[d2fadeb] | 731 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 732 | if(unlikely(external)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.attempt, 1, __ATOMIC_RELAXED);
|
---|
| 733 | else __tls_stats()->ready.push.local.attempt++;
|
---|
| 734 | #endif
|
---|
| 735 |
|
---|
[431cd4f] | 736 | if(unlikely(external)) {
|
---|
| 737 | i = __tls_rand() % lanes.count;
|
---|
| 738 | }
|
---|
| 739 | else {
|
---|
[d3ba775] | 740 | #if !defined(USE_PREFERRED)
|
---|
[b808625] | 741 | processor * proc = kernelTLS().this_processor;
|
---|
| 742 | unsigned r = proc->rdq.its++;
|
---|
| 743 | i = proc->rdq.id + (r % READYQ_SHARD_FACTOR);
|
---|
| 744 | #else
|
---|
[d3ba775] | 745 | i = start + (r++ % READYQ_SHARD_FACTOR);
|
---|
| 746 | #endif
|
---|
| 747 | }
|
---|
[431cd4f] | 748 | // If we can't lock it retry
|
---|
| 749 | } while( !__atomic_try_acquire( &lanes.data[i].lock ) );
|
---|
[13c5e19] | 750 |
|
---|
[431cd4f] | 751 | // Actually push it
|
---|
| 752 | push(lanes.data[i], thrd);
|
---|
[13c5e19] | 753 |
|
---|
[b808625] | 754 | // Unlock and return
|
---|
| 755 | __atomic_unlock( &lanes.data[i].lock );
|
---|
[431cd4f] | 756 |
|
---|
[d2fadeb] | 757 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 758 | if(unlikely(external)) __atomic_fetch_add(&cltr->stats->ready.push.extrn.success, 1, __ATOMIC_RELAXED);
|
---|
| 759 | else __tls_stats()->ready.push.local.success++;
|
---|
| 760 | #endif
|
---|
| 761 |
|
---|
[431cd4f] | 762 | __cfadbg_print_safe(ready_queue, "Kernel : Pushed %p on cluster %p (idx: %u, mask %llu, first %d)\n", thrd, cltr, i, used.mask[0], lane_first);
|
---|
[13c5e19] | 763 | }
|
---|
| 764 |
|
---|
[431cd4f] | 765 | // Pop from the ready queue from a given cluster
|
---|
[e84ab3d] | 766 | __attribute__((hot)) thread$ * pop_fast(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[431cd4f] | 767 | /* paranoid */ verify( lanes.count > 0 );
|
---|
| 768 | /* paranoid */ verify( kernelTLS().this_processor );
|
---|
| 769 | /* paranoid */ verify( kernelTLS().this_processor->rdq.id < lanes.count );
|
---|
| 770 |
|
---|
| 771 | processor * proc = kernelTLS().this_processor;
|
---|
| 772 |
|
---|
[a2a4566] | 773 | if(proc->rdq.target == MAX) {
|
---|
[1680072] | 774 | unsigned long long min = ts(lanes.data[proc->rdq.id]);
|
---|
| 775 | for(int i = 0; i < READYQ_SHARD_FACTOR; i++) {
|
---|
| 776 | unsigned long long tsc = ts(lanes.data[proc->rdq.id + i]);
|
---|
| 777 | if(tsc < min) min = tsc;
|
---|
| 778 | }
|
---|
| 779 | proc->rdq.cutoff = min;
|
---|
[f55d54d] | 780 | proc->rdq.target = __tls_rand() % lanes.count;
|
---|
[431cd4f] | 781 | }
|
---|
[341aa39] | 782 | else {
|
---|
| 783 | unsigned target = proc->rdq.target;
|
---|
[a2a4566] | 784 | proc->rdq.target = MAX;
|
---|
[9cac0da] | 785 | const unsigned long long bias = 0; //2_500_000_000;
|
---|
| 786 | const unsigned long long cutoff = proc->rdq.cutoff > bias ? proc->rdq.cutoff - bias : proc->rdq.cutoff;
|
---|
| 787 | if(lanes.tscs[target].tv < cutoff && ts(lanes.data[target]) < cutoff) {
|
---|
[e84ab3d] | 788 | thread$ * t = try_pop(cltr, target __STATS(, __tls_stats()->ready.pop.help));
|
---|
[341aa39] | 789 | if(t) return t;
|
---|
| 790 | }
|
---|
[431cd4f] | 791 | }
|
---|
[13c5e19] | 792 |
|
---|
[431cd4f] | 793 | for(READYQ_SHARD_FACTOR) {
|
---|
[f55d54d] | 794 | unsigned i = proc->rdq.id + (proc->rdq.itr++ % READYQ_SHARD_FACTOR);
|
---|
[e84ab3d] | 795 | if(thread$ * t = try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.local))) return t;
|
---|
[431cd4f] | 796 | }
|
---|
| 797 | return 0p;
|
---|
[1eb239e4] | 798 | }
|
---|
| 799 |
|
---|
[e84ab3d] | 800 | __attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[fc59df78] | 801 | unsigned i = __tls_rand() % lanes.count;
|
---|
| 802 | return try_pop(cltr, i __STATS(, __tls_stats()->ready.pop.steal));
|
---|
| 803 | }
|
---|
[431cd4f] | 804 |
|
---|
[e84ab3d] | 805 | __attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[431cd4f] | 806 | return search(cltr);
|
---|
| 807 | }
|
---|
| 808 | #endif
|
---|
[1eb239e4] | 809 |
|
---|
[9cc3a18] | 810 | //=======================================================================
|
---|
| 811 | // Various Ready Queue utilities
|
---|
| 812 | //=======================================================================
|
---|
| 813 | // these function work the same or almost the same
|
---|
| 814 | // whether they are using work-stealing or relaxed fifo scheduling
|
---|
[1eb239e4] | 815 |
|
---|
[9cc3a18] | 816 | //-----------------------------------------------------------------------
|
---|
| 817 | // try to pop from a lane given by index w
|
---|
[e84ab3d] | 818 | static inline struct thread$ * try_pop(struct cluster * cltr, unsigned w __STATS(, __stats_readyQ_pop_t & stats)) with (cltr->ready_queue) {
|
---|
[a2a4566] | 819 | /* paranoid */ verify( w < lanes.count );
|
---|
[d2fadeb] | 820 | __STATS( stats.attempt++; )
|
---|
| 821 |
|
---|
[dca5802] | 822 | // Get relevant elements locally
|
---|
| 823 | __intrusive_lane_t & lane = lanes.data[w];
|
---|
| 824 |
|
---|
[b798713] | 825 | // If list looks empty retry
|
---|
[d2fadeb] | 826 | if( is_empty(lane) ) {
|
---|
| 827 | return 0p;
|
---|
| 828 | }
|
---|
[b798713] | 829 |
|
---|
| 830 | // If we can't get the lock retry
|
---|
[d2fadeb] | 831 | if( !__atomic_try_acquire(&lane.lock) ) {
|
---|
| 832 | return 0p;
|
---|
| 833 | }
|
---|
[b798713] | 834 |
|
---|
| 835 | // If list is empty, unlock and retry
|
---|
[dca5802] | 836 | if( is_empty(lane) ) {
|
---|
| 837 | __atomic_unlock(&lane.lock);
|
---|
[b798713] | 838 | return 0p;
|
---|
| 839 | }
|
---|
| 840 |
|
---|
| 841 | // Actually pop the list
|
---|
[e84ab3d] | 842 | struct thread$ * thrd;
|
---|
[a2a4566] | 843 | #if defined(USE_AWARE_STEALING) || defined(USE_WORK_STEALING) || defined(USE_CPU_WORK_STEALING)
|
---|
[078fb05] | 844 | unsigned long long tsc_before = ts(lane);
|
---|
| 845 | #endif
|
---|
[f302d80] | 846 | unsigned long long tsv;
|
---|
| 847 | [thrd, tsv] = pop(lane);
|
---|
[b798713] | 848 |
|
---|
[dca5802] | 849 | /* paranoid */ verify(thrd);
|
---|
[78ea291] | 850 | /* paranoid */ verify(tsv);
|
---|
[dca5802] | 851 | /* paranoid */ verify(lane.lock);
|
---|
[b798713] | 852 |
|
---|
| 853 | // Unlock and return
|
---|
[dca5802] | 854 | __atomic_unlock(&lane.lock);
|
---|
[b798713] | 855 |
|
---|
[dca5802] | 856 | // Update statistics
|
---|
[d2fadeb] | 857 | __STATS( stats.success++; )
|
---|
[b798713] | 858 |
|
---|
[a2a4566] | 859 | #if defined(USE_AWARE_STEALING) || defined(USE_WORK_STEALING) || defined(USE_CPU_WORK_STEALING)
|
---|
| 860 | if (tsv != MAX) {
|
---|
| 861 | unsigned long long now = rdtscl();
|
---|
| 862 | unsigned long long pma = __atomic_load_n(&lanes.tscs[w].ma, __ATOMIC_RELAXED);
|
---|
| 863 | __atomic_store_n(&lanes.tscs[w].tv, tsv, __ATOMIC_RELAXED);
|
---|
| 864 | __atomic_store_n(&lanes.tscs[w].ma, moving_average(now, tsc_before, pma), __ATOMIC_RELAXED);
|
---|
| 865 | }
|
---|
[9cc3a18] | 866 | #endif
|
---|
[d72c074] | 867 |
|
---|
[a2a4566] | 868 | #if defined(USE_AWARE_STEALING) || defined(USE_CPU_WORK_STEALING)
|
---|
[24e321c] | 869 | thrd->preferred = w / READYQ_SHARD_FACTOR;
|
---|
| 870 | #else
|
---|
| 871 | thrd->preferred = w;
|
---|
| 872 | #endif
|
---|
[d3ba775] | 873 |
|
---|
[dca5802] | 874 | // return the popped thread
|
---|
[b798713] | 875 | return thrd;
|
---|
| 876 | }
|
---|
[04b5cef] | 877 |
|
---|
[9cc3a18] | 878 | //-----------------------------------------------------------------------
|
---|
| 879 | // try to pop from any lanes making sure you don't miss any threads push
|
---|
| 880 | // before the start of the function
|
---|
[e84ab3d] | 881 | static inline struct thread$ * search(struct cluster * cltr) with (cltr->ready_queue) {
|
---|
[9cc3a18] | 882 | /* paranoid */ verify( lanes.count > 0 );
|
---|
| 883 | unsigned count = __atomic_load_n( &lanes.count, __ATOMIC_RELAXED );
|
---|
| 884 | unsigned offset = __tls_rand();
|
---|
| 885 | for(i; count) {
|
---|
| 886 | unsigned idx = (offset + i) % count;
|
---|
[e84ab3d] | 887 | struct thread$ * thrd = try_pop(cltr, idx __STATS(, __tls_stats()->ready.pop.search));
|
---|
[9cc3a18] | 888 | if(thrd) {
|
---|
| 889 | return thrd;
|
---|
| 890 | }
|
---|
[13c5e19] | 891 | }
|
---|
[9cc3a18] | 892 |
|
---|
| 893 | // All lanes where empty return 0p
|
---|
| 894 | return 0p;
|
---|
[b798713] | 895 | }
|
---|
| 896 |
|
---|
[24e321c] | 897 | //-----------------------------------------------------------------------
|
---|
| 898 | // get preferred ready for new thread
|
---|
| 899 | unsigned ready_queue_new_preferred() {
|
---|
| 900 | unsigned pref = 0;
|
---|
| 901 | if(struct thread$ * thrd = publicTLS_get( this_thread )) {
|
---|
| 902 | pref = thrd->preferred;
|
---|
| 903 | }
|
---|
| 904 | else {
|
---|
| 905 | #if defined(USE_CPU_WORK_STEALING)
|
---|
| 906 | pref = __kernel_getcpu();
|
---|
| 907 | #endif
|
---|
| 908 | }
|
---|
| 909 |
|
---|
| 910 | #if defined(USE_CPU_WORK_STEALING)
|
---|
| 911 | /* paranoid */ verify(pref >= 0);
|
---|
| 912 | /* paranoid */ verify(pref < cpu_info.hthrd_count);
|
---|
| 913 | #endif
|
---|
| 914 |
|
---|
| 915 | return pref;
|
---|
| 916 | }
|
---|
| 917 |
|
---|
[b798713] | 918 | //-----------------------------------------------------------------------
|
---|
[9cc3a18] | 919 | // Check that all the intrusive queues in the data structure are still consistent
|
---|
[b798713] | 920 | static void check( __ready_queue_t & q ) with (q) {
|
---|
[d3ba775] | 921 | #if defined(__CFA_WITH_VERIFY__)
|
---|
[b798713] | 922 | {
|
---|
[dca5802] | 923 | for( idx ; lanes.count ) {
|
---|
| 924 | __intrusive_lane_t & sl = lanes.data[idx];
|
---|
| 925 | assert(!lanes.data[idx].lock);
|
---|
[b798713] | 926 |
|
---|
[2b96031] | 927 | if(is_empty(sl)) {
|
---|
| 928 | assert( sl.anchor.next == 0p );
|
---|
[ef94ae7] | 929 | assert( sl.anchor.ts == -1llu );
|
---|
[2b96031] | 930 | assert( mock_head(sl) == sl.prev );
|
---|
| 931 | } else {
|
---|
| 932 | assert( sl.anchor.next != 0p );
|
---|
[ef94ae7] | 933 | assert( sl.anchor.ts != -1llu );
|
---|
[2b96031] | 934 | assert( mock_head(sl) != sl.prev );
|
---|
| 935 | }
|
---|
[b798713] | 936 | }
|
---|
| 937 | }
|
---|
| 938 | #endif
|
---|
| 939 | }
|
---|
| 940 |
|
---|
[9cc3a18] | 941 | //-----------------------------------------------------------------------
|
---|
| 942 | // Given 2 indexes, pick the list with the oldest push an try to pop from it
|
---|
[e84ab3d] | 943 | static inline struct thread$ * try_pop(struct cluster * cltr, unsigned i, unsigned j __STATS(, __stats_readyQ_pop_t & stats)) with (cltr->ready_queue) {
|
---|
[9cc3a18] | 944 | // Pick the bet list
|
---|
| 945 | int w = i;
|
---|
| 946 | if( __builtin_expect(!is_empty(lanes.data[j]), true) ) {
|
---|
| 947 | w = (ts(lanes.data[i]) < ts(lanes.data[j])) ? i : j;
|
---|
| 948 | }
|
---|
| 949 |
|
---|
[d2fadeb] | 950 | return try_pop(cltr, w __STATS(, stats));
|
---|
[9cc3a18] | 951 | }
|
---|
| 952 |
|
---|
[b798713] | 953 | // Call this function of the intrusive list was moved using memcpy
|
---|
[dca5802] | 954 | // fixes the list so that the pointers back to anchors aren't left dangling
|
---|
| 955 | static inline void fix(__intrusive_lane_t & ll) {
|
---|
[2b96031] | 956 | if(is_empty(ll)) {
|
---|
| 957 | verify(ll.anchor.next == 0p);
|
---|
| 958 | ll.prev = mock_head(ll);
|
---|
| 959 | }
|
---|
[b798713] | 960 | }
|
---|
| 961 |
|
---|
[69914cbc] | 962 | static void assign_list(unsigned & value, dlist(processor) & list, unsigned count) {
|
---|
[a017ee7] | 963 | processor * it = &list`first;
|
---|
| 964 | for(unsigned i = 0; i < count; i++) {
|
---|
| 965 | /* paranoid */ verifyf( it, "Unexpected null iterator, at index %u of %u\n", i, count);
|
---|
[431cd4f] | 966 | it->rdq.id = value;
|
---|
[a2a4566] | 967 | it->rdq.target = MAX;
|
---|
[9cc3a18] | 968 | value += READYQ_SHARD_FACTOR;
|
---|
[a017ee7] | 969 | it = &(*it)`next;
|
---|
| 970 | }
|
---|
| 971 | }
|
---|
| 972 |
|
---|
[9cc3a18] | 973 | static void reassign_cltr_id(struct cluster * cltr) {
|
---|
[a017ee7] | 974 | unsigned preferred = 0;
|
---|
[9cc3a18] | 975 | assign_list(preferred, cltr->procs.actives, cltr->procs.total - cltr->procs.idle);
|
---|
| 976 | assign_list(preferred, cltr->procs.idles , cltr->procs.idle );
|
---|
[a017ee7] | 977 | }
|
---|
| 978 |
|
---|
[431cd4f] | 979 | static void fix_times( struct cluster * cltr ) with( cltr->ready_queue ) {
|
---|
[a2a4566] | 980 | #if defined(USE_AWARE_STEALING) || defined(USE_WORK_STEALING)
|
---|
[431cd4f] | 981 | lanes.tscs = alloc(lanes.count, lanes.tscs`realloc);
|
---|
| 982 | for(i; lanes.count) {
|
---|
[a2a4566] | 983 | lanes.tscs[i].tv = rdtscl();
|
---|
| 984 | lanes.tscs[i].ma = 0;
|
---|
[431cd4f] | 985 | }
|
---|
| 986 | #endif
|
---|
| 987 | }
|
---|
| 988 |
|
---|
[12daa43] | 989 | #if defined(USE_CPU_WORK_STEALING)
|
---|
| 990 | // ready_queue size is fixed in this case
|
---|
| 991 | void ready_queue_grow(struct cluster * cltr) {}
|
---|
| 992 | void ready_queue_shrink(struct cluster * cltr) {}
|
---|
| 993 | #else
|
---|
| 994 | // Grow the ready queue
|
---|
| 995 | void ready_queue_grow(struct cluster * cltr) {
|
---|
| 996 | size_t ncount;
|
---|
| 997 | int target = cltr->procs.total;
|
---|
| 998 |
|
---|
| 999 | /* paranoid */ verify( ready_mutate_islocked() );
|
---|
| 1000 | __cfadbg_print_safe(ready_queue, "Kernel : Growing ready queue\n");
|
---|
| 1001 |
|
---|
| 1002 | // Make sure that everything is consistent
|
---|
| 1003 | /* paranoid */ check( cltr->ready_queue );
|
---|
| 1004 |
|
---|
| 1005 | // grow the ready queue
|
---|
| 1006 | with( cltr->ready_queue ) {
|
---|
| 1007 | // Find new count
|
---|
| 1008 | // Make sure we always have atleast 1 list
|
---|
| 1009 | if(target >= 2) {
|
---|
| 1010 | ncount = target * READYQ_SHARD_FACTOR;
|
---|
| 1011 | } else {
|
---|
| 1012 | ncount = SEQUENTIAL_SHARD;
|
---|
| 1013 | }
|
---|
[b798713] | 1014 |
|
---|
[12daa43] | 1015 | // Allocate new array (uses realloc and memcpies the data)
|
---|
| 1016 | lanes.data = alloc( ncount, lanes.data`realloc );
|
---|
[b798713] | 1017 |
|
---|
[12daa43] | 1018 | // Fix the moved data
|
---|
| 1019 | for( idx; (size_t)lanes.count ) {
|
---|
| 1020 | fix(lanes.data[idx]);
|
---|
| 1021 | }
|
---|
[b798713] | 1022 |
|
---|
[12daa43] | 1023 | // Construct new data
|
---|
| 1024 | for( idx; (size_t)lanes.count ~ ncount) {
|
---|
| 1025 | (lanes.data[idx]){};
|
---|
| 1026 | }
|
---|
[b798713] | 1027 |
|
---|
[12daa43] | 1028 | // Update original
|
---|
| 1029 | lanes.count = ncount;
|
---|
[a2a4566] | 1030 |
|
---|
| 1031 | lanes.caches = alloc( target, lanes.caches`realloc );
|
---|
[12daa43] | 1032 | }
|
---|
[b798713] | 1033 |
|
---|
[12daa43] | 1034 | fix_times(cltr);
|
---|
[9cc3a18] | 1035 |
|
---|
[12daa43] | 1036 | reassign_cltr_id(cltr);
|
---|
[a017ee7] | 1037 |
|
---|
[12daa43] | 1038 | // Make sure that everything is consistent
|
---|
| 1039 | /* paranoid */ check( cltr->ready_queue );
|
---|
[dca5802] | 1040 |
|
---|
[12daa43] | 1041 | __cfadbg_print_safe(ready_queue, "Kernel : Growing ready queue done\n");
|
---|
[dca5802] | 1042 |
|
---|
[12daa43] | 1043 | /* paranoid */ verify( ready_mutate_islocked() );
|
---|
| 1044 | }
|
---|
[b798713] | 1045 |
|
---|
[12daa43] | 1046 | // Shrink the ready queue
|
---|
| 1047 | void ready_queue_shrink(struct cluster * cltr) {
|
---|
| 1048 | /* paranoid */ verify( ready_mutate_islocked() );
|
---|
| 1049 | __cfadbg_print_safe(ready_queue, "Kernel : Shrinking ready queue\n");
|
---|
[dca5802] | 1050 |
|
---|
[12daa43] | 1051 | // Make sure that everything is consistent
|
---|
| 1052 | /* paranoid */ check( cltr->ready_queue );
|
---|
[dca5802] | 1053 |
|
---|
[12daa43] | 1054 | int target = cltr->procs.total;
|
---|
[a017ee7] | 1055 |
|
---|
[12daa43] | 1056 | with( cltr->ready_queue ) {
|
---|
| 1057 | // Remember old count
|
---|
| 1058 | size_t ocount = lanes.count;
|
---|
[b798713] | 1059 |
|
---|
[12daa43] | 1060 | // Find new count
|
---|
| 1061 | // Make sure we always have atleast 1 list
|
---|
| 1062 | lanes.count = target >= 2 ? target * READYQ_SHARD_FACTOR: SEQUENTIAL_SHARD;
|
---|
| 1063 | /* paranoid */ verify( ocount >= lanes.count );
|
---|
| 1064 | /* paranoid */ verify( lanes.count == target * READYQ_SHARD_FACTOR || target < 2 );
|
---|
[dca5802] | 1065 |
|
---|
[12daa43] | 1066 | // for printing count the number of displaced threads
|
---|
| 1067 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_READY_QUEUE__)
|
---|
| 1068 | __attribute__((unused)) size_t displaced = 0;
|
---|
| 1069 | #endif
|
---|
[b798713] | 1070 |
|
---|
[12daa43] | 1071 | // redistribute old data
|
---|
| 1072 | for( idx; (size_t)lanes.count ~ ocount) {
|
---|
| 1073 | // Lock is not strictly needed but makes checking invariants much easier
|
---|
| 1074 | __attribute__((unused)) bool locked = __atomic_try_acquire(&lanes.data[idx].lock);
|
---|
| 1075 | verify(locked);
|
---|
[dca5802] | 1076 |
|
---|
[12daa43] | 1077 | // As long as we can pop from this lane to push the threads somewhere else in the queue
|
---|
| 1078 | while(!is_empty(lanes.data[idx])) {
|
---|
[e84ab3d] | 1079 | struct thread$ * thrd;
|
---|
[12daa43] | 1080 | unsigned long long _;
|
---|
| 1081 | [thrd, _] = pop(lanes.data[idx]);
|
---|
[dca5802] | 1082 |
|
---|
[12daa43] | 1083 | push(cltr, thrd, true);
|
---|
[dca5802] | 1084 |
|
---|
[12daa43] | 1085 | // for printing count the number of displaced threads
|
---|
| 1086 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_READY_QUEUE__)
|
---|
| 1087 | displaced++;
|
---|
| 1088 | #endif
|
---|
| 1089 | }
|
---|
[b798713] | 1090 |
|
---|
[12daa43] | 1091 | // Unlock the lane
|
---|
| 1092 | __atomic_unlock(&lanes.data[idx].lock);
|
---|
[b798713] | 1093 |
|
---|
[12daa43] | 1094 | // TODO print the queue statistics here
|
---|
[b798713] | 1095 |
|
---|
[12daa43] | 1096 | ^(lanes.data[idx]){};
|
---|
| 1097 | }
|
---|
[b798713] | 1098 |
|
---|
[12daa43] | 1099 | __cfadbg_print_safe(ready_queue, "Kernel : Shrinking ready queue displaced %zu threads\n", displaced);
|
---|
[c84b4be] | 1100 |
|
---|
[12daa43] | 1101 | // Allocate new array (uses realloc and memcpies the data)
|
---|
| 1102 | lanes.data = alloc( lanes.count, lanes.data`realloc );
|
---|
[b798713] | 1103 |
|
---|
[12daa43] | 1104 | // Fix the moved data
|
---|
| 1105 | for( idx; (size_t)lanes.count ) {
|
---|
| 1106 | fix(lanes.data[idx]);
|
---|
| 1107 | }
|
---|
[a2a4566] | 1108 |
|
---|
| 1109 | lanes.caches = alloc( target, lanes.caches`realloc );
|
---|
[b798713] | 1110 | }
|
---|
| 1111 |
|
---|
[12daa43] | 1112 | fix_times(cltr);
|
---|
[9cc3a18] | 1113 |
|
---|
[a2a4566] | 1114 |
|
---|
[12daa43] | 1115 | reassign_cltr_id(cltr);
|
---|
[a017ee7] | 1116 |
|
---|
[12daa43] | 1117 | // Make sure that everything is consistent
|
---|
| 1118 | /* paranoid */ check( cltr->ready_queue );
|
---|
[dca5802] | 1119 |
|
---|
[12daa43] | 1120 | __cfadbg_print_safe(ready_queue, "Kernel : Shrinking ready queue done\n");
|
---|
| 1121 | /* paranoid */ verify( ready_mutate_islocked() );
|
---|
| 1122 | }
|
---|
| 1123 | #endif
|
---|
[8cd5434] | 1124 |
|
---|
| 1125 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
| 1126 | unsigned cnt(const __ready_queue_t & this, unsigned idx) {
|
---|
| 1127 | /* paranoid */ verify(this.lanes.count > idx);
|
---|
| 1128 | return this.lanes.data[idx].cnt;
|
---|
| 1129 | }
|
---|
| 1130 | #endif
|
---|
[0ee224b] | 1131 |
|
---|
| 1132 |
|
---|
| 1133 | #if defined(CFA_HAVE_LINUX_LIBRSEQ)
|
---|
| 1134 | // No definition needed
|
---|
| 1135 | #elif defined(CFA_HAVE_LINUX_RSEQ_H)
|
---|
| 1136 |
|
---|
| 1137 | #if defined( __x86_64 ) || defined( __i386 )
|
---|
| 1138 | #define RSEQ_SIG 0x53053053
|
---|
| 1139 | #elif defined( __ARM_ARCH )
|
---|
| 1140 | #ifdef __ARMEB__
|
---|
| 1141 | #define RSEQ_SIG 0xf3def5e7 /* udf #24035 ; 0x5de3 (ARMv6+) */
|
---|
| 1142 | #else
|
---|
| 1143 | #define RSEQ_SIG 0xe7f5def3 /* udf #24035 ; 0x5de3 */
|
---|
| 1144 | #endif
|
---|
| 1145 | #endif
|
---|
| 1146 |
|
---|
| 1147 | extern void __disable_interrupts_hard();
|
---|
| 1148 | extern void __enable_interrupts_hard();
|
---|
| 1149 |
|
---|
[75c7252] | 1150 | static void __kernel_raw_rseq_register (void) {
|
---|
[0ee224b] | 1151 | /* paranoid */ verify( __cfaabi_rseq.cpu_id == RSEQ_CPU_ID_UNINITIALIZED );
|
---|
| 1152 |
|
---|
| 1153 | // int ret = syscall(__NR_rseq, &__cfaabi_rseq, sizeof(struct rseq), 0, (sigset_t *)0p, _NSIG / 8);
|
---|
| 1154 | int ret = syscall(__NR_rseq, &__cfaabi_rseq, sizeof(struct rseq), 0, RSEQ_SIG);
|
---|
| 1155 | if(ret != 0) {
|
---|
| 1156 | int e = errno;
|
---|
| 1157 | switch(e) {
|
---|
| 1158 | case EINVAL: abort("KERNEL ERROR: rseq register invalid argument");
|
---|
| 1159 | case ENOSYS: abort("KERNEL ERROR: rseq register no supported");
|
---|
| 1160 | case EFAULT: abort("KERNEL ERROR: rseq register with invalid argument");
|
---|
| 1161 | case EBUSY : abort("KERNEL ERROR: rseq register already registered");
|
---|
| 1162 | case EPERM : abort("KERNEL ERROR: rseq register sig argument on unregistration does not match the signature received on registration");
|
---|
| 1163 | default: abort("KERNEL ERROR: rseq register unexpected return %d", e);
|
---|
| 1164 | }
|
---|
| 1165 | }
|
---|
| 1166 | }
|
---|
| 1167 |
|
---|
[75c7252] | 1168 | static void __kernel_raw_rseq_unregister(void) {
|
---|
[0ee224b] | 1169 | /* paranoid */ verify( __cfaabi_rseq.cpu_id >= 0 );
|
---|
| 1170 |
|
---|
| 1171 | // int ret = syscall(__NR_rseq, &__cfaabi_rseq, sizeof(struct rseq), RSEQ_FLAG_UNREGISTER, (sigset_t *)0p, _NSIG / 8);
|
---|
| 1172 | int ret = syscall(__NR_rseq, &__cfaabi_rseq, sizeof(struct rseq), RSEQ_FLAG_UNREGISTER, RSEQ_SIG);
|
---|
| 1173 | if(ret != 0) {
|
---|
| 1174 | int e = errno;
|
---|
| 1175 | switch(e) {
|
---|
| 1176 | case EINVAL: abort("KERNEL ERROR: rseq unregister invalid argument");
|
---|
| 1177 | case ENOSYS: abort("KERNEL ERROR: rseq unregister no supported");
|
---|
| 1178 | case EFAULT: abort("KERNEL ERROR: rseq unregister with invalid argument");
|
---|
| 1179 | case EBUSY : abort("KERNEL ERROR: rseq unregister already registered");
|
---|
| 1180 | case EPERM : abort("KERNEL ERROR: rseq unregister sig argument on unregistration does not match the signature received on registration");
|
---|
| 1181 | default: abort("KERNEL ERROR: rseq unregisteunexpected return %d", e);
|
---|
| 1182 | }
|
---|
| 1183 | }
|
---|
| 1184 | }
|
---|
| 1185 | #else
|
---|
| 1186 | // No definition needed
|
---|
[a2a4566] | 1187 | #endif
|
---|