source: libcfa/src/concurrency/stats.hfa@ c426b03

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since c426b03 was fd1f65e, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Stats now keep track of external pushes separately

  • Property mode set to 100644
File size: 2.9 KB
Line 
1#pragma once
2
3#include <stdint.h>
4
5enum {
6 CFA_STATS_READY_Q = 0x01,
7 CFA_STATS_IO = 0x02,
8};
9
10#if defined(__CFA_NO_STATISTICS__)
11 struct __stats_t;
12 static inline void __init_stats( struct __stats_t * ) {}
13 static inline void __tally_stats( struct __stats_t *, struct __stats_t * ) {}
14 static inline void __print_stats( struct __stats_t *, int, const char *, const char *, void * ) {}
15#else
16
17 struct __attribute__((aligned(64))) __stats_readQ_t {
18 struct {
19 // Push statistic
20 struct {
21 // number of attemps at pushing something
22 volatile uint64_t attempt;
23
24 // number of successes at pushing
25 volatile uint64_t success;
26
27 // number of attemps at pushing something to preferred queues
28 volatile uint64_t local;
29
30 // number of successes at pushing to preferred queues
31 volatile uint64_t lsuccess;
32 } push;
33
34 struct {
35 // number of attemps at pushing something
36 volatile uint64_t attempt;
37
38 // number of successes at pushing
39 volatile uint64_t success;
40
41 // number of attemps at pushing something to preferred queues
42 volatile uint64_t local;
43
44 // number of successes at pushing to preferred queues
45 volatile uint64_t lsuccess;
46 } ext;
47
48 // Pop statistic
49 struct {
50 // number of reads of the mask
51 // picking an empty __cfa_readyQ_mask_t counts here
52 // but not as an attempt
53 volatile uint64_t probe;
54
55 // number of attemps at poping something
56 volatile uint64_t attempt;
57
58 // number of successes at poping
59 volatile uint64_t success;
60
61 // number of attemps at poping something to preferred queues
62 volatile uint64_t local;
63
64 // number of successes at poping to preferred queues
65 volatile uint64_t lsuccess;
66 } pop;
67 } pick;
68 struct {
69 volatile uint64_t migration;
70 } threads;
71 struct {
72 volatile uint64_t halts;
73 volatile uint64_t cancels;
74 volatile uint64_t wakes;
75 volatile uint64_t exits;
76 } sleep;
77 };
78
79 #if defined(CFA_HAVE_LINUX_IO_URING_H)
80 struct __attribute__((aligned(64))) __stats_io_t{
81 struct {
82 volatile uint64_t fast;
83 volatile uint64_t slow;
84 volatile uint64_t fail;
85 volatile uint64_t revoke;
86 volatile uint64_t block;
87 } alloc;
88 struct {
89 volatile uint64_t fast;
90 volatile uint64_t slow;
91 } submit;
92 struct {
93 volatile uint64_t external;
94 } flush;
95 struct {
96 volatile uint64_t drain;
97 volatile uint64_t completed;
98 volatile uint64_t flush;
99 volatile uint64_t submitted;
100 struct {
101 volatile uint64_t busy;
102 } errors;
103 } calls;
104 struct {
105 volatile uint64_t sleeps;
106 } poller;
107 };
108 #endif
109
110 struct __attribute__((aligned(128))) __stats_t {
111 __stats_readQ_t ready;
112 #if defined(CFA_HAVE_LINUX_IO_URING_H)
113 __stats_io_t io;
114 #endif
115 };
116
117 void __init_stats ( struct __stats_t * );
118 void __tally_stats( struct __stats_t *, struct __stats_t * );
119 void __print_stats( struct __stats_t *, int, const char *, const char *, void * );
120#endif
121
Note: See TracBrowser for help on using the repository browser.