[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 | // |
---|
[454f478] | 7 | // kernel -- Header containing the core of the kernel API |
---|
[8118303] | 8 | // |
---|
| 9 | // Author : Thierry Delisle |
---|
[75f3522] | 10 | // Created On : Tue Jan 17 12:27:26 2017 |
---|
[6b0b624] | 11 | // Last Modified By : Peter A. Buhr |
---|
[e3fea42] | 12 | // Last Modified On : Tue Feb 4 12:29:26 2020 |
---|
| 13 | // Update Count : 22 |
---|
[8118303] | 14 | // |
---|
| 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[8118303] | 17 | |
---|
[bd98b58] | 18 | #include "invoke.h" |
---|
[73abe95] | 19 | #include "time_t.hfa" |
---|
[d76bd79] | 20 | #include "coroutine.hfa" |
---|
[bd98b58] | 21 | |
---|
[1eb239e4] | 22 | #include "containers/list.hfa" |
---|
[64a7146] | 23 | |
---|
[8def349] | 24 | extern "C" { |
---|
[c402739f] | 25 | #include <bits/pthreadtypes.h> |
---|
[454f478] | 26 | #include <pthread.h> |
---|
[c402739f] | 27 | #include <linux/types.h> |
---|
[8def349] | 28 | } |
---|
| 29 | |
---|
[454f478] | 30 | #ifdef __CFA_WITH_VERIFY__ |
---|
| 31 | extern bool __cfaabi_dbg_in_kernel(); |
---|
| 32 | #endif |
---|
| 33 | |
---|
[78da4ab] | 34 | //----------------------------------------------------------------------------- |
---|
| 35 | // I/O |
---|
| 36 | struct cluster; |
---|
[8bee858] | 37 | struct io_context$; |
---|
| 38 | struct io_arbiter$; |
---|
[78da4ab] | 39 | |
---|
| 40 | struct io_context_params { |
---|
| 41 | int num_entries; |
---|
| 42 | }; |
---|
| 43 | |
---|
| 44 | void ?{}(io_context_params & this); |
---|
| 45 | |
---|
[bd98b58] | 46 | //----------------------------------------------------------------------------- |
---|
[de94a60] | 47 | // Processor |
---|
[de6319f] | 48 | extern struct cluster * mainCluster; |
---|
[bd98b58] | 49 | |
---|
[22226e4] | 50 | // Coroutine used py processors for the 2-step context switch |
---|
[c18bf9e] | 51 | |
---|
| 52 | struct processorCtx_t { |
---|
| 53 | struct coroutine$ self; |
---|
[094476d] | 54 | struct processor * proc; |
---|
| 55 | }; |
---|
| 56 | |
---|
[22226e4] | 57 | struct io_future_t; |
---|
[7cf3b1d] | 58 | |
---|
[22226e4] | 59 | // Information needed for idle sleep |
---|
[7cf3b1d] | 60 | struct __fd_waitctx { |
---|
[22226e4] | 61 | // semaphore/future like object |
---|
| 62 | // values can be 0, 1 or some file descriptor. |
---|
| 63 | // 0 - is the default state |
---|
| 64 | // 1 - means the proc should wake-up immediately |
---|
| 65 | // FD - means the proc is going asleep and should be woken by writing to the FD. |
---|
| 66 | volatile int sem; |
---|
| 67 | |
---|
| 68 | // The event FD that corresponds to this processor |
---|
| 69 | int evfd; |
---|
| 70 | |
---|
| 71 | // buffer into which the proc will read from evfd |
---|
| 72 | // unused if not using io_uring for idle sleep |
---|
| 73 | void * rdbuf; |
---|
| 74 | |
---|
| 75 | // future use to track the read of the eventfd |
---|
| 76 | // unused if not using io_uring for idle sleep |
---|
| 77 | io_future_t * ftr; |
---|
[262fafd9] | 78 | |
---|
[efa28d5] | 79 | volatile unsigned long long wake__time; |
---|
[262fafd9] | 80 | volatile unsigned long long sleep_time; |
---|
[d28b70a] | 81 | volatile unsigned long long drain_time; |
---|
[7cf3b1d] | 82 | }; |
---|
| 83 | |
---|
[e60e0dc] | 84 | // Wrapper around kernel threads |
---|
[2af1943] | 85 | struct __attribute__((aligned(64))) processor { |
---|
[025278e] | 86 | // Cluster from which to get threads |
---|
[de94a60] | 87 | struct cluster * cltr; |
---|
[025278e] | 88 | |
---|
[431cd4f] | 89 | // Ready Queue state per processor |
---|
| 90 | struct { |
---|
| 91 | unsigned short its; |
---|
| 92 | unsigned short itr; |
---|
| 93 | unsigned id; |
---|
| 94 | unsigned target; |
---|
[12daa43] | 95 | unsigned last; |
---|
[a2a4566] | 96 | signed cpu; |
---|
[431cd4f] | 97 | } rdq; |
---|
[bd0bdd37] | 98 | |
---|
[37ba662] | 99 | // Set to true to notify the processor should terminate |
---|
| 100 | volatile bool do_terminate; |
---|
| 101 | |
---|
| 102 | // Coroutine ctx who does keeps the state of the processor |
---|
| 103 | struct processorCtx_t runner; |
---|
| 104 | |
---|
[de6319f] | 105 | // Name of the processor |
---|
| 106 | const char * name; |
---|
| 107 | |
---|
[025278e] | 108 | // Handle to pthreads |
---|
| 109 | pthread_t kernel_thread; |
---|
[2ac095d] | 110 | |
---|
[c993b15] | 111 | // Unique id for the processor (not per cluster) |
---|
| 112 | unsigned unique_id; |
---|
| 113 | |
---|
[78da4ab] | 114 | struct { |
---|
[8bee858] | 115 | io_context$ * ctx; |
---|
[adb3ea1] | 116 | unsigned target; |
---|
[d529ad0] | 117 | volatile bool pending; |
---|
| 118 | volatile bool dirty; |
---|
[78da4ab] | 119 | } io; |
---|
| 120 | |
---|
[e60e0dc] | 121 | // Preemption data |
---|
[025278e] | 122 | // Node which is added in the discrete event simulaiton |
---|
| 123 | struct alarm_node_t * preemption_alarm; |
---|
| 124 | |
---|
| 125 | // If true, a preemption was triggered in an unsafe region, the processor must preempt as soon as possible |
---|
| 126 | bool pending_preemption; |
---|
[c81ebf9] | 127 | |
---|
[22226e4] | 128 | // context for idle sleep |
---|
[7cf3b1d] | 129 | struct __fd_waitctx idle_wctx; |
---|
| 130 | |
---|
[92e7631] | 131 | // Termination synchronisation (user semaphore) |
---|
[454f478] | 132 | oneshot terminated; |
---|
[de94a60] | 133 | |
---|
[27f5f71] | 134 | // pthread Stack |
---|
| 135 | void * stack; |
---|
| 136 | |
---|
[de94a60] | 137 | // Link lists fields |
---|
[160f1aa] | 138 | dlink(processor) link; |
---|
[14a61b5] | 139 | |
---|
[a1538cd] | 140 | // special init fields |
---|
| 141 | // This is needed for memcached integration |
---|
| 142 | // once memcached experiments are done this should probably be removed |
---|
| 143 | // it is not a particularly safe scheme as it can make processors less homogeneous |
---|
| 144 | struct { |
---|
[e84ab3d] | 145 | thread$ * thrd; |
---|
[a1538cd] | 146 | } init; |
---|
| 147 | |
---|
[a67c5b6] | 148 | struct KernelThreadData * local_data; |
---|
| 149 | |
---|
[c34ebf2] | 150 | #if !defined(__CFA_NO_STATISTICS__) |
---|
[69fbc61] | 151 | int print_stats; |
---|
[c34ebf2] | 152 | bool print_halts; |
---|
| 153 | #endif |
---|
| 154 | |
---|
[e60e0dc] | 155 | #ifdef __CFA_DEBUG__ |
---|
[025278e] | 156 | // Last function to enable preemption on this processor |
---|
[cdbfab0] | 157 | const char * last_enable; |
---|
[e60e0dc] | 158 | #endif |
---|
[c84e80a] | 159 | }; |
---|
[160f1aa] | 160 | // P9_EMBEDDED( processor, dlink(processor) ) |
---|
| 161 | static inline tytagref( dlink(processor), dlink(processor) ) ?`inner( processor & this ) { |
---|
| 162 | dlink(processor) & b = this.link; |
---|
| 163 | tytagref( dlink(processor), dlink(processor) ) result = { b }; |
---|
| 164 | return result; |
---|
| 165 | } |
---|
[c84e80a] | 166 | |
---|
[a5e7233] | 167 | void ?{}(processor & this, const char name[], struct cluster & cltr); |
---|
[242a902] | 168 | void ^?{}(processor & this); |
---|
[c84e80a] | 169 | |
---|
[a5e7233] | 170 | static inline void ?{}(processor & this) { this{ "Anonymous Processor", *mainCluster}; } |
---|
| 171 | static inline void ?{}(processor & this, struct cluster & cltr) { this{ "Anonymous Processor", cltr}; } |
---|
| 172 | static inline void ?{}(processor & this, const char name[]) { this{name, *mainCluster}; } |
---|
[de6319f] | 173 | |
---|
[7768b8d] | 174 | //----------------------------------------------------------------------------- |
---|
| 175 | // Cluster Tools |
---|
[dca5802] | 176 | |
---|
[9cc3a18] | 177 | // Intrusives lanes which are used by the ready queue |
---|
[2af1943] | 178 | union __attribute__((aligned(64))) __intrusive_lane_t; |
---|
[dca5802] | 179 | void ?{}(__intrusive_lane_t & this); |
---|
| 180 | void ^?{}(__intrusive_lane_t & this); |
---|
[7768b8d] | 181 | |
---|
[884f3f67] | 182 | // Aligned timestamps which are used by the ready queue and io subsystem |
---|
[31c967b] | 183 | union __attribute__((aligned(64))) __timestamp_t; |
---|
[8cd40bf] | 184 | |
---|
[31c967b] | 185 | void ?{}(__timestamp_t & this); |
---|
| 186 | void ^?{}(__timestamp_t &); |
---|
[9cc3a18] | 187 | |
---|
[dca5802] | 188 | |
---|
[884f3f67] | 189 | struct __attribute__((aligned(16))) __cache_id_t { |
---|
| 190 | volatile unsigned id; |
---|
| 191 | }; |
---|
[9cc3a18] | 192 | |
---|
[1eb239e4] | 193 | // Idle Sleep |
---|
[6a9b12b] | 194 | struct __cluster_proc_list { |
---|
[1eb239e4] | 195 | // Spin lock protecting the queue |
---|
[34b8cb7] | 196 | __spinlock_t lock; |
---|
| 197 | |
---|
| 198 | // FD to use to wake a processor |
---|
[7cf3b1d] | 199 | struct __fd_waitctx * volatile fdw; |
---|
[1eb239e4] | 200 | |
---|
| 201 | // Total number of processors |
---|
| 202 | unsigned total; |
---|
| 203 | |
---|
| 204 | // Total number of idle processors |
---|
| 205 | unsigned idle; |
---|
| 206 | |
---|
| 207 | // List of idle processors |
---|
[69914cbc] | 208 | dlist(processor) idles; |
---|
[fc59b580] | 209 | |
---|
| 210 | // List of active processors |
---|
[69914cbc] | 211 | dlist(processor) actives; |
---|
[1eb239e4] | 212 | }; |
---|
| 213 | |
---|
[de94a60] | 214 | //----------------------------------------------------------------------------- |
---|
| 215 | // Cluster |
---|
[2af1943] | 216 | struct __attribute__((aligned(64))) cluster { |
---|
[884f3f67] | 217 | struct { |
---|
| 218 | struct { |
---|
| 219 | // Arary of subqueues |
---|
[adb3ea1] | 220 | __intrusive_lane_t * data; |
---|
[884f3f67] | 221 | |
---|
| 222 | // Time since subqueues were processed |
---|
[adb3ea1] | 223 | __timestamp_t * tscs; |
---|
[884f3f67] | 224 | |
---|
| 225 | // Number of subqueue / timestamps |
---|
| 226 | size_t count; |
---|
| 227 | } readyQ; |
---|
| 228 | |
---|
| 229 | struct { |
---|
[adb3ea1] | 230 | // Array of $io_ |
---|
[8bee858] | 231 | io_context$ ** data; |
---|
[adb3ea1] | 232 | |
---|
[708ae38] | 233 | // Time since subqueues were processed |
---|
[adb3ea1] | 234 | __timestamp_t * tscs; |
---|
[708ae38] | 235 | |
---|
| 236 | // Number of I/O subqueues |
---|
| 237 | size_t count; |
---|
[884f3f67] | 238 | } io; |
---|
| 239 | |
---|
| 240 | // Cache each kernel thread belongs to |
---|
[adb3ea1] | 241 | __cache_id_t * caches; |
---|
[884f3f67] | 242 | } sched; |
---|
| 243 | |
---|
| 244 | // // Ready queue for threads |
---|
| 245 | // __ready_queue_t ready_queue; |
---|
[de94a60] | 246 | |
---|
| 247 | // Name of the cluster |
---|
| 248 | const char * name; |
---|
| 249 | |
---|
| 250 | // Preemption rate on this cluster |
---|
| 251 | Duration preemption_rate; |
---|
| 252 | |
---|
[64a7146] | 253 | // List of idle processors |
---|
[6a9b12b] | 254 | __cluster_proc_list procs; |
---|
[de94a60] | 255 | |
---|
[d4e68a6] | 256 | // List of threads |
---|
[a1a17a74] | 257 | __spinlock_t thread_list_lock; |
---|
[e84ab3d] | 258 | __dllist_t(struct thread$) threads; |
---|
[d4e68a6] | 259 | unsigned int nthreads; |
---|
[a1a17a74] | 260 | |
---|
[de94a60] | 261 | // Link lists fields |
---|
[ea8b2f7] | 262 | struct __dbg_node_cltr { |
---|
[de94a60] | 263 | cluster * next; |
---|
| 264 | cluster * prev; |
---|
| 265 | } node; |
---|
[92976d9] | 266 | |
---|
[f00b26d4] | 267 | struct { |
---|
[8bee858] | 268 | io_arbiter$ * arbiter; |
---|
[78da4ab] | 269 | io_context_params params; |
---|
[f00b26d4] | 270 | } io; |
---|
[038be32] | 271 | |
---|
| 272 | #if !defined(__CFA_NO_STATISTICS__) |
---|
[8834751] | 273 | struct __stats_t * stats; |
---|
[69fbc61] | 274 | int print_stats; |
---|
[038be32] | 275 | #endif |
---|
[de94a60] | 276 | }; |
---|
| 277 | extern Duration default_preemption(); |
---|
| 278 | |
---|
[f00b26d4] | 279 | void ?{} (cluster & this, const char name[], Duration preemption_rate, unsigned num_io, const io_context_params & io_params); |
---|
[de94a60] | 280 | void ^?{}(cluster & this); |
---|
| 281 | |
---|
[f00b26d4] | 282 | static inline void ?{} (cluster & this) { io_context_params default_params; this{"Anonymous Cluster", default_preemption(), 1, default_params}; } |
---|
| 283 | static inline void ?{} (cluster & this, Duration preemption_rate) { io_context_params default_params; this{"Anonymous Cluster", preemption_rate, 1, default_params}; } |
---|
| 284 | static inline void ?{} (cluster & this, const char name[]) { io_context_params default_params; this{name, default_preemption(), 1, default_params}; } |
---|
| 285 | static inline void ?{} (cluster & this, unsigned num_io) { io_context_params default_params; this{"Anonymous Cluster", default_preemption(), num_io, default_params}; } |
---|
| 286 | static inline void ?{} (cluster & this, Duration preemption_rate, unsigned num_io) { io_context_params default_params; this{"Anonymous Cluster", preemption_rate, num_io, default_params}; } |
---|
| 287 | static inline void ?{} (cluster & this, const char name[], unsigned num_io) { io_context_params default_params; this{name, default_preemption(), num_io, default_params}; } |
---|
| 288 | static inline void ?{} (cluster & this, const io_context_params & io_params) { this{"Anonymous Cluster", default_preemption(), 1, io_params}; } |
---|
| 289 | static inline void ?{} (cluster & this, Duration preemption_rate, const io_context_params & io_params) { this{"Anonymous Cluster", preemption_rate, 1, io_params}; } |
---|
| 290 | static inline void ?{} (cluster & this, const char name[], const io_context_params & io_params) { this{name, default_preemption(), 1, io_params}; } |
---|
| 291 | static inline void ?{} (cluster & this, unsigned num_io, const io_context_params & io_params) { this{"Anonymous Cluster", default_preemption(), num_io, io_params}; } |
---|
| 292 | static inline void ?{} (cluster & this, Duration preemption_rate, unsigned num_io, const io_context_params & io_params) { this{"Anonymous Cluster", preemption_rate, num_io, io_params}; } |
---|
| 293 | static inline void ?{} (cluster & this, const char name[], unsigned num_io, const io_context_params & io_params) { this{name, default_preemption(), num_io, io_params}; } |
---|
[de94a60] | 294 | |
---|
[c7a900a] | 295 | static inline [cluster *&, cluster *& ] __get( cluster & this ) __attribute__((const)) { return this.node.[next, prev]; } |
---|
[de94a60] | 296 | |
---|
[8fc652e0] | 297 | static inline struct processor * active_processor() { return publicTLS_get( this_processor ); } // UNSAFE |
---|
| 298 | static inline struct cluster * active_cluster () { return publicTLS_get( this_processor )->cltr; } |
---|
[d4e68a6] | 299 | |
---|
[038be32] | 300 | #if !defined(__CFA_NO_STATISTICS__) |
---|
[8fc652e0] | 301 | void print_stats_now( cluster & this, int flags ); |
---|
| 302 | |
---|
[69fbc61] | 303 | static inline void print_stats_at_exit( cluster & this, int flags ) { |
---|
| 304 | this.print_stats |= flags; |
---|
[038be32] | 305 | } |
---|
[c34ebf2] | 306 | |
---|
[69fbc61] | 307 | static inline void print_stats_at_exit( processor & this, int flags ) { |
---|
| 308 | this.print_stats |= flags; |
---|
[c34ebf2] | 309 | } |
---|
| 310 | |
---|
| 311 | void print_halts( processor & this ); |
---|
[038be32] | 312 | #endif |
---|
| 313 | |
---|
[8118303] | 314 | // Local Variables: // |
---|
[6b0b624] | 315 | // mode: c // |
---|
| 316 | // tab-width: 4 // |
---|
[8118303] | 317 | // End: // |
---|