source: libcfa/src/concurrency/kernel.hfa@ b39e961b

ADT ast-experimental enum pthread-emulation qualifiedEnum
Last change on this file since b39e961b was 22226e4, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Tentative fix for spurious deadlock in some concurrency tests

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