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