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

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since a1538cd was a1538cd, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Implemented part of the same C api for threads as libfibre.

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