[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;
|
---|
| 37 | struct $io_context;
|
---|
| 38 | struct $io_arbiter;
|
---|
| 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 |
|
---|
[9b1dcc2] | 50 | // Processor id, required for scheduling threads
|
---|
[8834751] | 51 |
|
---|
[9b1dcc2] | 52 |
|
---|
[094476d] | 53 | coroutine processorCtx_t {
|
---|
| 54 | struct processor * proc;
|
---|
| 55 | };
|
---|
| 56 |
|
---|
[e60e0dc] | 57 | // Wrapper around kernel threads
|
---|
[37ba662] | 58 | struct __attribute__((aligned(128))) processor {
|
---|
[025278e] | 59 | // Cluster from which to get threads
|
---|
[de94a60] | 60 | struct cluster * cltr;
|
---|
[025278e] | 61 |
|
---|
[431cd4f] | 62 | // Ready Queue state per processor
|
---|
| 63 | struct {
|
---|
| 64 | unsigned short its;
|
---|
| 65 | unsigned short itr;
|
---|
| 66 | unsigned id;
|
---|
| 67 | unsigned target;
|
---|
| 68 | unsigned long long int cutoff;
|
---|
| 69 | } rdq;
|
---|
[bd0bdd37] | 70 |
|
---|
[37ba662] | 71 | // Set to true to notify the processor should terminate
|
---|
| 72 | volatile bool do_terminate;
|
---|
| 73 |
|
---|
| 74 | // Coroutine ctx who does keeps the state of the processor
|
---|
| 75 | struct processorCtx_t runner;
|
---|
| 76 |
|
---|
[de6319f] | 77 | // Name of the processor
|
---|
| 78 | const char * name;
|
---|
| 79 |
|
---|
[025278e] | 80 | // Handle to pthreads
|
---|
| 81 | pthread_t kernel_thread;
|
---|
[2ac095d] | 82 |
|
---|
[c993b15] | 83 | // Unique id for the processor (not per cluster)
|
---|
| 84 | unsigned unique_id;
|
---|
| 85 |
|
---|
[78da4ab] | 86 | struct {
|
---|
[dddb3dd0] | 87 | $io_context * ctx;
|
---|
| 88 | bool pending;
|
---|
| 89 | bool dirty;
|
---|
[78da4ab] | 90 | } io;
|
---|
| 91 |
|
---|
[e60e0dc] | 92 | // Preemption data
|
---|
[025278e] | 93 | // Node which is added in the discrete event simulaiton
|
---|
| 94 | struct alarm_node_t * preemption_alarm;
|
---|
| 95 |
|
---|
| 96 | // If true, a preemption was triggered in an unsafe region, the processor must preempt as soon as possible
|
---|
| 97 | bool pending_preemption;
|
---|
[c81ebf9] | 98 |
|
---|
[92e7631] | 99 | // Idle lock (kernel semaphore)
|
---|
[dddb3dd0] | 100 | int idle;
|
---|
[85b1deb] | 101 |
|
---|
[92e7631] | 102 | // Termination synchronisation (user semaphore)
|
---|
[454f478] | 103 | oneshot terminated;
|
---|
[de94a60] | 104 |
|
---|
[27f5f71] | 105 | // pthread Stack
|
---|
| 106 | void * stack;
|
---|
| 107 |
|
---|
[de94a60] | 108 | // Link lists fields
|
---|
[1eb239e4] | 109 | DLISTED_MGD_IMPL_IN(processor)
|
---|
[14a61b5] | 110 |
|
---|
[a1538cd] | 111 | // special init fields
|
---|
| 112 | // This is needed for memcached integration
|
---|
| 113 | // once memcached experiments are done this should probably be removed
|
---|
| 114 | // it is not a particularly safe scheme as it can make processors less homogeneous
|
---|
| 115 | struct {
|
---|
[a5e7233] | 116 | $thread * thrd;
|
---|
[a1538cd] | 117 | } init;
|
---|
| 118 |
|
---|
[c34ebf2] | 119 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
[69fbc61] | 120 | int print_stats;
|
---|
[c34ebf2] | 121 | bool print_halts;
|
---|
| 122 | #endif
|
---|
| 123 |
|
---|
[e60e0dc] | 124 | #ifdef __CFA_DEBUG__
|
---|
[025278e] | 125 | // Last function to enable preemption on this processor
|
---|
[cdbfab0] | 126 | const char * last_enable;
|
---|
[e60e0dc] | 127 | #endif
|
---|
[c84e80a] | 128 | };
|
---|
| 129 |
|
---|
[a5e7233] | 130 | void ?{}(processor & this, const char name[], struct cluster & cltr);
|
---|
[242a902] | 131 | void ^?{}(processor & this);
|
---|
[c84e80a] | 132 |
|
---|
[a5e7233] | 133 | static inline void ?{}(processor & this) { this{ "Anonymous Processor", *mainCluster}; }
|
---|
| 134 | static inline void ?{}(processor & this, struct cluster & cltr) { this{ "Anonymous Processor", cltr}; }
|
---|
| 135 | static inline void ?{}(processor & this, const char name[]) { this{name, *mainCluster}; }
|
---|
[de6319f] | 136 |
|
---|
[1eb239e4] | 137 | DLISTED_MGD_IMPL_OUT(processor)
|
---|
[de94a60] | 138 |
|
---|
[7768b8d] | 139 | //-----------------------------------------------------------------------------
|
---|
| 140 | // Cluster Tools
|
---|
[dca5802] | 141 |
|
---|
[9cc3a18] | 142 | // Intrusives lanes which are used by the ready queue
|
---|
[61d7bec] | 143 | struct __attribute__((aligned(128))) __intrusive_lane_t;
|
---|
[dca5802] | 144 | void ?{}(__intrusive_lane_t & this);
|
---|
| 145 | void ^?{}(__intrusive_lane_t & this);
|
---|
[7768b8d] | 146 |
|
---|
[9cc3a18] | 147 | // Aligned timestamps which are used by the relaxed ready queue
|
---|
| 148 | struct __attribute__((aligned(128))) __timestamp_t;
|
---|
| 149 | void ?{}(__timestamp_t & this);
|
---|
| 150 | void ^?{}(__timestamp_t & this);
|
---|
| 151 |
|
---|
[b798713] | 152 | //TODO adjust cache size to ARCHITECTURE
|
---|
[dca5802] | 153 | // Structure holding the relaxed ready queue
|
---|
[37ba662] | 154 | struct __ready_queue_t {
|
---|
[dca5802] | 155 | // Data tracking the actual lanes
|
---|
| 156 | // On a seperate cacheline from the used struct since
|
---|
| 157 | // used can change on each push/pop but this data
|
---|
| 158 | // only changes on shrink/grow
|
---|
[37ba662] | 159 | struct {
|
---|
[dca5802] | 160 | // Arary of lanes
|
---|
| 161 | __intrusive_lane_t * volatile data;
|
---|
| 162 |
|
---|
[9cc3a18] | 163 | // Array of times
|
---|
| 164 | __timestamp_t * volatile tscs;
|
---|
| 165 |
|
---|
[dca5802] | 166 | // Number of lanes (empty or not)
|
---|
[b798713] | 167 | volatile size_t count;
|
---|
[dca5802] | 168 | } lanes;
|
---|
[b798713] | 169 | };
|
---|
| 170 |
|
---|
| 171 | void ?{}(__ready_queue_t & this);
|
---|
| 172 | void ^?{}(__ready_queue_t & this);
|
---|
| 173 |
|
---|
[1eb239e4] | 174 | // Idle Sleep
|
---|
[6a9b12b] | 175 | struct __cluster_proc_list {
|
---|
[1eb239e4] | 176 | // Spin lock protecting the queue
|
---|
| 177 | volatile uint64_t lock;
|
---|
| 178 |
|
---|
| 179 | // Total number of processors
|
---|
| 180 | unsigned total;
|
---|
| 181 |
|
---|
| 182 | // Total number of idle processors
|
---|
| 183 | unsigned idle;
|
---|
| 184 |
|
---|
| 185 | // List of idle processors
|
---|
[6a9b12b] | 186 | dlist(processor, processor) idles;
|
---|
[fc59b580] | 187 |
|
---|
| 188 | // List of active processors
|
---|
| 189 | dlist(processor, processor) actives;
|
---|
[1eb239e4] | 190 | };
|
---|
| 191 |
|
---|
[de94a60] | 192 | //-----------------------------------------------------------------------------
|
---|
| 193 | // Cluster
|
---|
[37ba662] | 194 | struct __attribute__((aligned(128))) cluster {
|
---|
[de94a60] | 195 | // Ready queue for threads
|
---|
[b798713] | 196 | __ready_queue_t ready_queue;
|
---|
[de94a60] | 197 |
|
---|
| 198 | // Name of the cluster
|
---|
| 199 | const char * name;
|
---|
| 200 |
|
---|
| 201 | // Preemption rate on this cluster
|
---|
| 202 | Duration preemption_rate;
|
---|
| 203 |
|
---|
[64a7146] | 204 | // List of idle processors
|
---|
[6a9b12b] | 205 | __cluster_proc_list procs;
|
---|
[de94a60] | 206 |
|
---|
[d4e68a6] | 207 | // List of threads
|
---|
[a1a17a74] | 208 | __spinlock_t thread_list_lock;
|
---|
[ac2b598] | 209 | __dllist_t(struct $thread) threads;
|
---|
[d4e68a6] | 210 | unsigned int nthreads;
|
---|
[a1a17a74] | 211 |
|
---|
[de94a60] | 212 | // Link lists fields
|
---|
[ea8b2f7] | 213 | struct __dbg_node_cltr {
|
---|
[de94a60] | 214 | cluster * next;
|
---|
| 215 | cluster * prev;
|
---|
| 216 | } node;
|
---|
[92976d9] | 217 |
|
---|
[f00b26d4] | 218 | struct {
|
---|
[78da4ab] | 219 | $io_arbiter * arbiter;
|
---|
| 220 | io_context_params params;
|
---|
[f00b26d4] | 221 | } io;
|
---|
[038be32] | 222 |
|
---|
| 223 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
[8834751] | 224 | struct __stats_t * stats;
|
---|
[69fbc61] | 225 | int print_stats;
|
---|
[038be32] | 226 | #endif
|
---|
[de94a60] | 227 | };
|
---|
| 228 | extern Duration default_preemption();
|
---|
| 229 |
|
---|
[f00b26d4] | 230 | void ?{} (cluster & this, const char name[], Duration preemption_rate, unsigned num_io, const io_context_params & io_params);
|
---|
[de94a60] | 231 | void ^?{}(cluster & this);
|
---|
| 232 |
|
---|
[f00b26d4] | 233 | static inline void ?{} (cluster & this) { io_context_params default_params; this{"Anonymous Cluster", default_preemption(), 1, default_params}; }
|
---|
| 234 | static inline void ?{} (cluster & this, Duration preemption_rate) { io_context_params default_params; this{"Anonymous Cluster", preemption_rate, 1, default_params}; }
|
---|
| 235 | static inline void ?{} (cluster & this, const char name[]) { io_context_params default_params; this{name, default_preemption(), 1, default_params}; }
|
---|
| 236 | static inline void ?{} (cluster & this, unsigned num_io) { io_context_params default_params; this{"Anonymous Cluster", default_preemption(), num_io, default_params}; }
|
---|
| 237 | 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}; }
|
---|
| 238 | static inline void ?{} (cluster & this, const char name[], unsigned num_io) { io_context_params default_params; this{name, default_preemption(), num_io, default_params}; }
|
---|
| 239 | static inline void ?{} (cluster & this, const io_context_params & io_params) { this{"Anonymous Cluster", default_preemption(), 1, io_params}; }
|
---|
| 240 | static inline void ?{} (cluster & this, Duration preemption_rate, const io_context_params & io_params) { this{"Anonymous Cluster", preemption_rate, 1, io_params}; }
|
---|
| 241 | static inline void ?{} (cluster & this, const char name[], const io_context_params & io_params) { this{name, default_preemption(), 1, io_params}; }
|
---|
| 242 | static inline void ?{} (cluster & this, unsigned num_io, const io_context_params & io_params) { this{"Anonymous Cluster", default_preemption(), num_io, io_params}; }
|
---|
| 243 | 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}; }
|
---|
| 244 | 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] | 245 |
|
---|
[c7a900a] | 246 | static inline [cluster *&, cluster *& ] __get( cluster & this ) __attribute__((const)) { return this.node.[next, prev]; }
|
---|
[de94a60] | 247 |
|
---|
[8fc652e0] | 248 | static inline struct processor * active_processor() { return publicTLS_get( this_processor ); } // UNSAFE
|
---|
| 249 | static inline struct cluster * active_cluster () { return publicTLS_get( this_processor )->cltr; }
|
---|
[d4e68a6] | 250 |
|
---|
[038be32] | 251 | #if !defined(__CFA_NO_STATISTICS__)
|
---|
[8fc652e0] | 252 | void print_stats_now( cluster & this, int flags );
|
---|
| 253 |
|
---|
[69fbc61] | 254 | static inline void print_stats_at_exit( cluster & this, int flags ) {
|
---|
| 255 | this.print_stats |= flags;
|
---|
[038be32] | 256 | }
|
---|
[c34ebf2] | 257 |
|
---|
[69fbc61] | 258 | static inline void print_stats_at_exit( processor & this, int flags ) {
|
---|
| 259 | this.print_stats |= flags;
|
---|
[c34ebf2] | 260 | }
|
---|
| 261 |
|
---|
| 262 | void print_halts( processor & this );
|
---|
[038be32] | 263 | #endif
|
---|
| 264 |
|
---|
[8118303] | 265 | // Local Variables: //
|
---|
[6b0b624] | 266 | // mode: c //
|
---|
| 267 | // tab-width: 4 //
|
---|
[8118303] | 268 | // End: //
|
---|