GCC Code Coverage Report


Directory: src/
File: src/support/types.h
Date: 2026-04-21 15:16:03
Exec Total Coverage
Lines: 5 5 100.0%
Functions: 5 5 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /*********************************************************************************/
2 /* Copyright 2009-2024 Barcelona Supercomputing Center */
3 /* */
4 /* This file is part of the DLB library. */
5 /* */
6 /* DLB is free software: you can redistribute it and/or modify */
7 /* it under the terms of the GNU Lesser General Public License as published by */
8 /* the Free Software Foundation, either version 3 of the License, or */
9 /* (at your option) any later version. */
10 /* */
11 /* DLB is distributed in the hope that it will be useful, */
12 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14 /* GNU Lesser General Public License for more details. */
15 /* */
16 /* You should have received a copy of the GNU Lesser General Public License */
17 /* along with DLB. If not, see <https://www.gnu.org/licenses/>. */
18 /*********************************************************************************/
19
20 #ifndef TYPES_H
21 #define TYPES_H
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <inttypes.h>
28 #include <stdbool.h>
29 #include <stdint.h>
30
31 #if NCPUS_AT_CONFIGURE_TIME <= 255
32 typedef uint8_t cpuid_t;
33 enum { DLB_CPUID_INVALID = UINT8_MAX };
34 #define PRICPUID PRIu8
35 #else
36 typedef uint16_t cpuid_t;
37 enum { DLB_CPUID_INVALID = UINT16_MAX };
38 #define PRICPUID PRIu16
39 #endif
40
41 typedef enum VerboseOptions {
42 VB_CLEAR = 0,
43 VB_API = 1 << 0,
44 VB_MICROLB = 1 << 1,
45 VB_SHMEM = 1 << 2,
46 VB_MPI_API = 1 << 3,
47 VB_MPI_INT = 1 << 4,
48 VB_STATS = 1 << 5,
49 VB_DROM = 1 << 6,
50 VB_ASYNC = 1 << 7,
51 VB_OMPT = 1 << 8,
52 VB_AFFINITY = 1 << 9,
53 VB_BARRIER = 1 << 10,
54 VB_TALP = 1 << 11,
55 VB_INSTR = 1 << 12,
56 VB_ALL = 0xFFFF,
57 VB_UNDEF = 0xF0000,
58 } verbose_opts_t;
59
60 typedef enum VerboseFormat {
61 VBF_CLEAR = 0,
62 VBF_NODE = 1 << 0,
63 VBF_MPINODE = 1 << 1,
64 VBF_MPIRANK = 1 << 2,
65 VBF_SPID = 1 << 3,
66 VBF_THREAD = 1 << 4,
67 VBF_TSTAMP = 1 << 5
68 } verbose_fmt_t;
69
70 typedef enum InstrumentItems {
71 INST_NONE = 0,
72 INST_ALL = 0xFFFF,
73 INST_MPI = 1 << 0,
74 INST_LEWI = 1 << 1,
75 INST_DROM = 1 << 2,
76 INST_TALP = 1 << 3,
77 INST_BARR = 1 << 4,
78 INST_OMPT = 1 << 5,
79 INST_CPUS = 1 << 6,
80 INST_CBCK = 1 << 7
81 } instrument_items_t;
82
83 typedef enum DebugOptions {
84 DBG_CLEAR = 0,
85 DBG_WALL = 1 << 0,
86 DBG_WERROR = 1 << 1,
87 DBG_WARNMPI = 1 << 2,
88 DBG_RETURNSTOLEN = 1 << 3,
89 DBG_LPOSTMORTEM = 1 << 4,
90 } debug_opts_t;
91
92 typedef enum LewiAffinity {
93 LEWI_AFFINITY_AUTO,
94 LEWI_AFFINITY_NONE,
95 LEWI_AFFINITY_MASK,
96 LEWI_AFFINITY_NEARBY_FIRST,
97 LEWI_AFFINITY_NEARBY_ONLY,
98 LEWI_AFFINITY_SPREAD_IFEMPTY,
99 } lewi_affinity_t;
100
101 typedef enum TalpSummaryType {
102 SUMMARY_NONE = 0,
103 SUMMARY_ALL = 0xFFF9, // SUMMARY_POP_RAW and SUMMARY_NODE excluded
104 SUMMARY_POP_METRICS = 1 << 0,
105 SUMMARY_POP_RAW = 1 << 1, // DEPRECATED
106 SUMMARY_NODE = 1 << 2, // DEPRECATED
107 SUMMARY_PROCESS = 1 << 3,
108 } talp_summary_t;
109
110 typedef enum TalpModel {
111 TALP_MODEL_HYBRID_V1,
112 TALP_MODEL_HYBRID_V2,
113 } talp_model_t;
114
115 typedef enum TalpComponent {
116 TALP_COMPONENT_NONE = 0,
117 TALP_COMPONENT_DEFAULT = 1 << 0,
118 TALP_COMPONENT_MPI = 1 << 1,
119 TALP_COMPONENT_OPENMP = 1 << 2,
120 TALP_COMPONENT_GPU = 1 << 3,
121 TALP_COMPONENT_HWC = 1 << 4,
122 } talp_component_t;
123
124 typedef enum PolicyType {
125 POLICY_NONE,
126 POLICY_LEWI,
127 POLICY_LEWI_ASYNC,
128 POLICY_LEWI_MASK,
129 } policy_t;
130
131 typedef enum InteractionMode {
132 MODE_POLLING,
133 MODE_ASYNC
134 } interaction_mode_t;
135
136 typedef enum MPISet {
137 MPISET_NONE,
138 MPISET_ALL,
139 MPISET_BARRIER,
140 MPISET_COLLECTIVES
141 } mpi_set_t;
142
143 typedef enum OMPTOptions {
144 OMPTOOL_OPTS_NONE = 0,
145 /* OMPTOOL_OPTS_MPI = 1 << 0, DEPRECATED */
146 OMPTOOL_OPTS_BORROW = 1 << 1,
147 OMPTOOL_OPTS_LEND = 1 << 2,
148 /* OMPTOOL_OPTS_AGGRESSIVE = 0xF DEPRECATED */
149 } omptool_opts_t;
150
151 typedef enum OMPTMVersion {
152 OMPTM_NONE,
153 OMPTM_OMP5,
154 OMPTM_FREE_AGENTS,
155 OMPTM_ROLE_SHIFT
156 } omptm_version_t;
157
158 1 static inline int min_int(int a, int b) { return a < b ? a : b; }
159 5994 static inline int max_int(int a, int b) { return a > b ? a : b; }
160 3 static inline int64_t min_int64(int64_t a, int64_t b) { return a < b ? a : b; }
161 14 static inline int64_t max_int64(int64_t a, int64_t b) { return a > b ? a : b; }
162 295 static inline unsigned int min_uint(unsigned int a, unsigned int b) { return a < b ? a : b; }
163 static inline double min_double(double a, double b) { return a < b ? a : b; }
164 static inline double max_double(double a, double b) { return a > b ? a : b; }
165
166 static inline double min_double_non_zero(double a, double b) {
167 if (a == 0.0 && b == 0.0) {
168 return 0.0;
169 } else if (a == 0.0) {
170 return b;
171 } else if (b == 0.0) {
172 return a;
173 } else {
174 return min_double(a, b);
175 }
176 }
177
178 int parse_bool(const char *str, bool *value);
179 bool equivalent_bool(const char *str1, const char *str2);
180
181 int parse_negated_bool(const char *str, bool *value);
182 bool equivalent_negated_bool(const char *str1, const char *str2);
183
184 int parse_int(const char *str, int *value);
185 bool equivalent_int(const char *str1, const char *str2);
186
187 /* verbose_opts_t */
188 int parse_verbose_opts(const char *str, verbose_opts_t *value);
189 const char* verbose_opts_tostr(verbose_opts_t value);
190 const char* get_verbose_opts_choices(void);
191 bool equivalent_verbose_opts(const char *str1, const char *str2);
192
193 /* verbose_fmt_t */
194 int parse_verbose_fmt(const char *str, verbose_fmt_t *value);
195 const char* verbose_fmt_tostr(verbose_fmt_t value);
196 const char* get_verbose_fmt_choices(void);
197 bool equivalent_verbose_fmt(const char *str1, const char *str2);
198
199 /* instrument_item_t */
200 int parse_instrument_items(const char *str, instrument_items_t *value);
201 const char* instrument_items_tostr(instrument_items_t value);
202 const char* get_instrument_items_choices(void);
203 bool equivalent_instrument_items(const char *str1, const char *str2);
204
205 /* debug_opts_t */
206 int parse_debug_opts(const char *str, debug_opts_t *value);
207 const char* debug_opts_tostr(debug_opts_t value);
208 const char* get_debug_opts_choices(void);
209 bool equivalent_debug_opts(const char *str1, const char *str2);
210
211 /* lewi_affinity_t */
212 int parse_lewi_affinity(const char *str, lewi_affinity_t *value);
213 const char* lewi_affinity_tostr(lewi_affinity_t value);
214 const char* get_lewi_affinity_choices(void);
215 bool equivalent_lewi_affinity(const char *str1, const char *str2);
216
217 /* policy_t */
218 int parse_policy(const char *str, policy_t *value);
219 const char* policy_tostr(policy_t policy);
220 const char* get_policy_choices(void);
221 bool equivalent_policy(const char *str1, const char *str2);
222
223 /* talp_summary_t */
224 int parse_talp_summary(const char *str, talp_summary_t *value);
225 const char* talp_summary_tostr(talp_summary_t summary);
226 const char* get_talp_summary_choices(void);
227 bool equivalent_talp_summary(const char *str1, const char *str2);
228
229 /* talp_model_t */
230 int parse_talp_model(const char *str, talp_model_t *value);
231 const char* talp_model_tostr(talp_model_t value);
232 const char* get_talp_model_choices(void);
233 bool equivalent_talp_model(const char *str1, const char *str2);
234
235 /* talp_component_t */
236 int parse_talp_component(const char *str, talp_component_t *value);
237 const char* talp_component_tostr(talp_component_t value);
238 const char* get_talp_component_choices(void);
239 bool equivalent_talp_component(const char *str1, const char *str2);
240
241 /* interaction_mode_t */
242 int parse_mode(const char *str, interaction_mode_t *value);
243 const char* mode_tostr(interaction_mode_t value);
244 const char* get_mode_choices(void);
245 bool equivalent_mode(const char *str1, const char *str2);
246
247 /* mpi_set_t */
248 int parse_mpiset(const char *str, mpi_set_t *value);
249 const char* mpiset_tostr(mpi_set_t value);
250 const char* get_mpiset_choices(void);
251 bool equivalent_mpiset(const char *str1, const char *str2);
252
253 /* omptool_opts_t */
254 int parse_omptool_opts(const char *str, omptool_opts_t *value);
255 const char* omptool_opts_tostr(omptool_opts_t value);
256 const char* get_omptool_opts_choices(void);
257 bool equivalent_omptool_opts(const char *str1, const char *str2);
258
259 /* omptm_version_t */
260 int parse_omptm_version(const char *str, omptm_version_t *value);
261 const char* omptm_version_tostr(omptm_version_t value);
262 const char* get_omptm_version_choices(void);
263 bool equivalent_omptm_version_opts(const char *str1, const char *str2);
264
265 #endif /* TYPES_H */
266