source: libcfa/src/concurrency/kernel/private.hfa @ 77de429

ADTast-experimental
Last change on this file since 77de429 was 31c967b, checked in by Thierry Delisle <tdelisle@…>, 2 years ago

Changed ready-queue so I can easily change the averaging algorithm.
Changed averaging to use logscale.

  • Property mode set to 100644
File size: 13.1 KB
RevLine 
[75f3522]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//
[708ae38]7// kernel/private.hfa --
[75f3522]8//
9// Author           : Thierry Delisle
10// Created On       : Mon Feb 13 12:27:26 2017
[6b0b624]11// Last Modified By : Peter A. Buhr
[fd9b524]12// Last Modified On : Wed Aug 12 08:21:33 2020
13// Update Count     : 9
[75f3522]14//
15
[6b0b624]16#pragma once
[75f3522]17
[3489ea6]18#if !defined(__cforall_thread__)
[708ae38]19        #error kernel/private.hfa should only be included in libcfathread source
[3489ea6]20#endif
21
[58b6d1b]22#include "kernel.hfa"
23#include "thread.hfa"
[75f3522]24
[73abe95]25#include "alarm.hfa"
[8834751]26#include "stats.hfa"
[fa21ac9]27
[3489ea6]28extern "C" {
29#if   defined(CFA_HAVE_LINUX_LIBRSEQ)
30        #include <rseq/rseq.h>
31#elif defined(CFA_HAVE_LINUX_RSEQ_H)
[f558b5f]32        #include <linux/rseq.h>
[3489ea6]33#else
34        #ifndef _GNU_SOURCE
[708ae38]35        #error kernel/private requires gnu_source
[3489ea6]36        #endif
37        #include <sched.h>
38#endif
39}
40
[d3605f8]41// Defines whether or not we *want* to use io_uring_enter as the idle_sleep blocking call
[f870e257]42// #define CFA_WANT_IO_URING_IDLE
[d3605f8]43
44// Defines whether or not we *can* use io_uring_enter as the idle_sleep blocking call
45#if defined(CFA_WANT_IO_URING_IDLE) && defined(CFA_HAVE_LINUX_IO_URING_H)
46        #if defined(CFA_HAVE_IORING_OP_READ) || (defined(CFA_HAVE_READV) && defined(CFA_HAVE_IORING_OP_READV))
47                #define CFA_WITH_IO_URING_IDLE
48        #endif
49#endif
[059ad16]50
[31c967b]51// #define READYQ_USE_LINEAR_AVG
52#define READYQ_USE_LOGDBL_AVG
53// #define READYQ_USE_LOGINT_AVG
54
55#if   defined(READYQ_USE_LINEAR_AVG)
56typedef unsigned long long __readyQ_avg_t;
57#elif defined(READYQ_USE_LOGDBL_AVG)
58typedef double __readyQ_avg_t;
59#elif defined(READYQ_USE_LOGDBL_AVG)
60typedef unsigned long long __readyQ_avg_t;
61#else
62#error must pick a scheme for averaging
63#endif
64
[75f3522]65//-----------------------------------------------------------------------------
66// Scheduler
[31c967b]67union __attribute__((aligned(64))) __timestamp_t {
68        struct {
69                volatile unsigned long long tv;
70                volatile __readyQ_avg_t ma;
71        } t;
72        char __padding[192];
73};
74
[1c273d0]75extern "C" {
[2026bb6]76        void disable_interrupts() OPTIONAL_THREAD;
[a3821fa]77        void enable_interrupts( bool poll = true );
[1c273d0]78}
79
[24e321c]80void schedule_thread$( thread$ *, unpark_hint hint ) __attribute__((nonnull (1)));
[75f3522]81
[8fc652e0]82extern bool __preemption_enabled();
83
[13fdf86]84enum {
85        PREEMPT_NORMAL    = 0,
86        PREEMPT_TERMINATE = 1,
87        PREEMPT_IO = 2,
88};
89
[7d0ebd0]90static inline void __disable_interrupts_checked() {
91        /* paranoid */ verify( __preemption_enabled() );
92        disable_interrupts();
93        /* paranoid */ verify( ! __preemption_enabled() );
94}
95
96static inline void __enable_interrupts_checked( bool poll = true ) {
97        /* paranoid */ verify( ! __preemption_enabled() );
98        enable_interrupts( poll );
99        /* paranoid */ verify( __preemption_enabled() );
100}
101
[5afb49a]102//release/wake-up the following resources
[e84ab3d]103void __thread_finish( thread$ * thrd );
[db6f06a]104
[3489ea6]105//-----------------------------------------------------------------------------
106// Hardware
107
108#if   defined(CFA_HAVE_LINUX_LIBRSEQ)
109        // No data needed
110#elif defined(CFA_HAVE_LINUX_RSEQ_H)
111        extern "Cforall" {
[1bcbf02]112                extern __attribute__((aligned(64))) __thread volatile struct rseq __cfaabi_rseq;
[3489ea6]113        }
114#else
115        // No data needed
116#endif
117
118static inline int __kernel_getcpu() {
119        /* paranoid */ verify( ! __preemption_enabled() );
120#if   defined(CFA_HAVE_LINUX_LIBRSEQ)
[f558b5f]121        return rseq_current_cpu();
[3489ea6]122#elif defined(CFA_HAVE_LINUX_RSEQ_H)
[f558b5f]123        int r = __cfaabi_rseq.cpu_id;
124        /* paranoid */ verify( r >= 0 );
125        return r;
[3489ea6]126#else
127        return sched_getcpu();
128#endif
129}
130
[75f3522]131//-----------------------------------------------------------------------------
132// Processor
[c18bf9e]133void main(processorCtx_t &);
134static inline coroutine$* get_coroutine(processorCtx_t & this) { return &this.self; }
[85b1deb]135
[8c50aed]136void * __create_pthread( pthread_t *, void * (*)(void *), void * );
[bfcf6b9]137void __destroy_pthread( pthread_t pthread, void * stack, void ** retval );
[1805b1b]138
[6502a2b]139extern cluster * mainCluster;
140
[75f3522]141//-----------------------------------------------------------------------------
142// Threads
143extern "C" {
[c7a900a]144      void __cfactx_invoke_thread(void (*main)(void *), void * this);
[75f3522]145}
146
[f7d6bb0]147__cfaabi_dbg_debug_do(
[e84ab3d]148        extern void __cfaabi_dbg_thread_register  ( thread$ * thrd );
149        extern void __cfaabi_dbg_thread_unregister( thread$ * thrd );
[f7d6bb0]150)
151
[6a77224]152#define TICKET_BLOCKED (-1) // thread is blocked
153#define TICKET_RUNNING ( 0) // thread is running
154#define TICKET_UNBLOCK ( 1) // thread should ignore next block
155
[969b3fe]156//-----------------------------------------------------------------------------
157// Utils
[e84ab3d]158void doregister( struct cluster * cltr, struct thread$ & thrd );
159void unregister( struct cluster * cltr, struct thread$ & thrd );
[de94a60]160
[f00b26d4]161//-----------------------------------------------------------------------------
162// I/O
[8bee858]163io_arbiter$ * create(void);
164void destroy(io_arbiter$ *);
[f00b26d4]165
[7768b8d]166//=======================================================================
167// Cluster lock API
168//=======================================================================
169// Lock-Free registering/unregistering of threads
170// Register a processor to a given cluster and get its unique id in return
[c993b15]171unsigned register_proc_id( void );
[7768b8d]172
173// Unregister a processor from a given cluster using its id, getting back the original pointer
[c993b15]174void unregister_proc_id( unsigned );
[7768b8d]175
176//=======================================================================
177// Reader-writer lock implementation
178// Concurrent with doregister/unregister,
179//    i.e., threads can be added at any point during or between the entry/exit
[dca5802]180
181//-----------------------------------------------------------------------
182// simple spinlock underlying the RWLock
183// Blocking acquire
[7768b8d]184static inline void __atomic_acquire(volatile bool * ll) {
[2284d20]185        /* paranoid */ verify( ! __preemption_enabled() );
186        /* paranoid */ verify(ll);
187
[7768b8d]188        while( __builtin_expect(__atomic_exchange_n(ll, (bool)true, __ATOMIC_SEQ_CST), false) ) {
189                while(__atomic_load_n(ll, (int)__ATOMIC_RELAXED))
[fd9b524]190                        Pause();
[7768b8d]191        }
192        /* paranoid */ verify(*ll);
[2284d20]193        /* paranoid */ verify( ! __preemption_enabled() );
[7768b8d]194}
195
[dca5802]196// Non-Blocking acquire
[7768b8d]197static inline bool __atomic_try_acquire(volatile bool * ll) {
[2284d20]198        /* paranoid */ verify( ! __preemption_enabled() );
199        /* paranoid */ verify(ll);
200
[b798713]201        return !__atomic_exchange_n(ll, (bool)true, __ATOMIC_SEQ_CST);
[7768b8d]202}
203
[dca5802]204// Release
[7768b8d]205static inline void __atomic_unlock(volatile bool * ll) {
[2284d20]206        /* paranoid */ verify( ! __preemption_enabled() );
207        /* paranoid */ verify(ll);
[7768b8d]208        /* paranoid */ verify(*ll);
209        __atomic_store_n(ll, (bool)false, __ATOMIC_RELEASE);
210}
211
[b388ee81]212//-----------------------------------------------------------------------
213// Reader-Writer lock protecting the ready-queues
214// while this lock is mostly generic some aspects
215// have been hard-coded to for the ready-queue for
216// simplicity and performance
[741e22c]217union __attribute__((aligned(64))) __scheduler_RWLock_t {
218        struct {
[cd3fc46]219                __attribute__((aligned(64))) char padding;
220
[741e22c]221                // total cachelines allocated
[cd3fc46]222                __attribute__((aligned(64))) unsigned int max;
[b388ee81]223
[741e22c]224                // cachelines currently in use
225                volatile unsigned int alloc;
[b388ee81]226
[741e22c]227                // cachelines ready to itereate over
228                // (!= to alloc when thread is in second half of doregister)
229                volatile unsigned int ready;
[b388ee81]230
[741e22c]231                // writer lock
232                volatile bool write_lock;
[b388ee81]233
[741e22c]234                // data pointer
235                volatile bool * volatile * data;
236        } lock;
237        char pad[192];
[b388ee81]238};
239
240void  ?{}(__scheduler_RWLock_t & this);
241void ^?{}(__scheduler_RWLock_t & this);
242
[cd3fc46]243extern __scheduler_RWLock_t __scheduler_lock;
[b388ee81]244
[7768b8d]245//-----------------------------------------------------------------------
246// Reader side : acquire when using the ready queue to schedule but not
247//  creating/destroying queues
[cd3fc46]248static inline void ready_schedule_lock(void) with(__scheduler_lock.lock) {
[8fc652e0]249        /* paranoid */ verify( ! __preemption_enabled() );
[c993b15]250        /* paranoid */ verify( ! kernelTLS().in_sched_lock );
251        /* paranoid */ verify( data[kernelTLS().sched_id] == &kernelTLS().sched_lock );
252        /* paranoid */ verify( !kernelTLS().this_processor || kernelTLS().this_processor->unique_id == kernelTLS().sched_id );
[7768b8d]253
254        // Step 1 : make sure no writer are in the middle of the critical section
[c993b15]255        while(__atomic_load_n(&write_lock, (int)__ATOMIC_RELAXED))
[fd9b524]256                Pause();
[7768b8d]257
258        // Fence needed because we don't want to start trying to acquire the lock
259        // before we read a false.
260        // Not needed on x86
261        // std::atomic_thread_fence(std::memory_order_seq_cst);
262
263        // Step 2 : acquire our local lock
[c993b15]264        __atomic_acquire( &kernelTLS().sched_lock );
265        /*paranoid*/ verify(kernelTLS().sched_lock);
[64a7146]266
267        #ifdef __CFA_WITH_VERIFY__
268                // Debug, check if this is owned for reading
[c993b15]269                kernelTLS().in_sched_lock = true;
[64a7146]270        #endif
[7768b8d]271}
272
[cd3fc46]273static inline void ready_schedule_unlock(void) with(__scheduler_lock.lock) {
[8fc652e0]274        /* paranoid */ verify( ! __preemption_enabled() );
[c993b15]275        /* paranoid */ verify( data[kernelTLS().sched_id] == &kernelTLS().sched_lock );
276        /* paranoid */ verify( !kernelTLS().this_processor || kernelTLS().this_processor->unique_id == kernelTLS().sched_id );
277        /* paranoid */ verify( kernelTLS().sched_lock );
278        /* paranoid */ verify( kernelTLS().in_sched_lock );
[64a7146]279        #ifdef __CFA_WITH_VERIFY__
280                // Debug, check if this is owned for reading
[c993b15]281                kernelTLS().in_sched_lock = false;
[64a7146]282        #endif
[c993b15]283        __atomic_unlock(&kernelTLS().sched_lock);
[7768b8d]284}
285
[64a7146]286#ifdef __CFA_WITH_VERIFY__
[e873838]287        static inline bool ready_schedule_islocked(void) {
[8fc652e0]288                /* paranoid */ verify( ! __preemption_enabled() );
[c993b15]289                /* paranoid */ verify( (!kernelTLS().in_sched_lock) || kernelTLS().sched_lock );
290                return kernelTLS().sched_lock;
[64a7146]291        }
292
293        static inline bool ready_mutate_islocked() {
[cd3fc46]294                return __scheduler_lock.lock.write_lock;
[64a7146]295        }
296#endif
297
[7768b8d]298//-----------------------------------------------------------------------
299// Writer side : acquire when changing the ready queue, e.g. adding more
300//  queues or removing them.
[b388ee81]301uint_fast32_t ready_mutate_lock( void );
[7768b8d]302
[b388ee81]303void ready_mutate_unlock( uint_fast32_t /* value returned by lock */ );
[7768b8d]304
[a33c113]305//-----------------------------------------------------------------------
306// Lock-Free registering/unregistering of threads
307// Register a processor to a given cluster and get its unique id in return
308// For convenience, also acquires the lock
[c993b15]309static inline [unsigned, uint_fast32_t] ready_mutate_register() {
310        unsigned id = register_proc_id();
311        uint_fast32_t last = ready_mutate_lock();
312        return [id, last];
[a33c113]313}
314
315// Unregister a processor from a given cluster using its id, getting back the original pointer
316// assumes the lock is acquired
[c993b15]317static inline void ready_mutate_unregister( unsigned id, uint_fast32_t last_s ) {
[a33c113]318        ready_mutate_unlock( last_s );
[c993b15]319        unregister_proc_id( id );
[a33c113]320}
321
[a7504db]322//-----------------------------------------------------------------------
323// Cluster idle lock/unlock
[6a9b12b]324static inline void lock(__cluster_proc_list & this) {
[a7504db]325        /* paranoid */ verify( ! __preemption_enabled() );
326
327        // Start by locking the global RWlock so that we know no-one is
328        // adding/removing processors while we mess with the idle lock
329        ready_schedule_lock();
330
[a633f6f]331        lock( this.lock __cfaabi_dbg_ctx2 );
[a7504db]332
333        /* paranoid */ verify( ! __preemption_enabled() );
334}
335
[5f5a729]336static inline bool try_lock(__cluster_proc_list & this) {
337        /* paranoid */ verify( ! __preemption_enabled() );
338
339        // Start by locking the global RWlock so that we know no-one is
340        // adding/removing processors while we mess with the idle lock
341        ready_schedule_lock();
342
[a633f6f]343        if(try_lock( this.lock __cfaabi_dbg_ctx2 )) {
[5f5a729]344                // success
345                /* paranoid */ verify( ! __preemption_enabled() );
346                return true;
347        }
348
349        // failed to lock
350        ready_schedule_unlock();
351
352        /* paranoid */ verify( ! __preemption_enabled() );
353        return false;
354}
355
[6a9b12b]356static inline void unlock(__cluster_proc_list & this) {
[a7504db]357        /* paranoid */ verify( ! __preemption_enabled() );
358
[a633f6f]359        unlock(this.lock);
[a7504db]360
361        // Release the global lock, which we acquired when locking
362        ready_schedule_unlock();
363
364        /* paranoid */ verify( ! __preemption_enabled() );
365}
366
[b798713]367//=======================================================================
368// Ready-Queue API
[dca5802]369//-----------------------------------------------------------------------
370// push thread onto a ready queue for a cluster
371// returns true if the list was previously empty, false otherwise
[24e321c]372__attribute__((hot)) void push(struct cluster * cltr, struct thread$ * thrd, unpark_hint hint);
[dca5802]373
374//-----------------------------------------------------------------------
[fc59df78]375// pop thread from the local queues of a cluster
[dca5802]376// returns 0p if empty
[1eb239e4]377// May return 0p spuriously
[e84ab3d]378__attribute__((hot)) struct thread$ * pop_fast(struct cluster * cltr);
[dca5802]379
[1eb239e4]380//-----------------------------------------------------------------------
[fc59df78]381// pop thread from any ready queue of a cluster
[1eb239e4]382// returns 0p if empty
[fc59df78]383// May return 0p spuriously
[e84ab3d]384__attribute__((hot)) struct thread$ * pop_slow(struct cluster * cltr);
[1eb239e4]385
[fc59df78]386//-----------------------------------------------------------------------
387// search all ready queues of a cluster for any thread
388// returns 0p if empty
389// guaranteed to find any threads added before this call
[e84ab3d]390__attribute__((hot)) struct thread$ * pop_search(struct cluster * cltr);
[fc59df78]391
[24e321c]392//-----------------------------------------------------------------------
393// get preferred ready for new thread
394unsigned ready_queue_new_preferred();
395
[dca5802]396//-----------------------------------------------------------------------
397// Increase the width of the ready queue (number of lanes) by 4
[a017ee7]398void ready_queue_grow  (struct cluster * cltr);
[dca5802]399
400//-----------------------------------------------------------------------
401// Decrease the width of the ready queue (number of lanes) by 4
[a017ee7]402void ready_queue_shrink(struct cluster * cltr);
[b798713]403
[884f3f67]404//-----------------------------------------------------------------------
405// Decrease the width of the ready queue (number of lanes) by 4
406void ready_queue_close(struct cluster * cltr);
407
[75f3522]408// Local Variables: //
409// mode: c //
410// tab-width: 4 //
[4aa2fb2]411// End: //
Note: See TracBrowser for help on using the repository browser.