GCC Code Coverage Report


Directory: src/
File: src/support/types.h
Date: 2026-03-27 16:05:46
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_RETURNSTOLEN = 1 << 0,
86 DBG_WERROR = 1 << 1,
87 DBG_LPOSTMORTEM = 1 << 2,
88 DBG_WARNMPI = 1 << 3,
89 } debug_opts_t;
90
91 typedef enum LewiAffinity {
92 LEWI_AFFINITY_AUTO,
93 LEWI_AFFINITY_NONE,
94 LEWI_AFFINITY_MASK,
95 LEWI_AFFINITY_NEARBY_FIRST,
96 LEWI_AFFINITY_NEARBY_ONLY,
97 LEWI_AFFINITY_SPREAD_IFEMPTY,
98 } lewi_affinity_t;
99
100 typedef enum TalpSummaryType {
101 SUMMARY_NONE = 0,
102 SUMMARY_ALL = 0xFFF9, // SUMMARY_POP_RAW and SUMMARY_NODE excluded
103 SUMMARY_POP_METRICS = 1 << 0,
104 SUMMARY_POP_RAW = 1 << 1, // DEPRECATED
105 SUMMARY_NODE = 1 << 2, // DEPRECATED
106 SUMMARY_PROCESS = 1 << 3,
107 } talp_summary_t;
108
109 typedef enum TalpModel {
110 TALP_MODEL_HYBRID_V1,
111 TALP_MODEL_HYBRID_V2,
112 } talp_model_t;
113
114 typedef enum TalpComponent {
115 TALP_COMPONENT_NONE = 0,
116 TALP_COMPONENT_DEFAULT = 1 << 0,
117 TALP_COMPONENT_MPI = 1 << 1,
118 TALP_COMPONENT_OPENMP = 1 << 2,
119 TALP_COMPONENT_GPU = 1 << 3,
120 TALP_COMPONENT_HWC = 1 << 4,
121 } talp_component_t;
122
123 typedef enum PolicyType {
124 POLICY_NONE,
125 POLICY_LEWI,
126 POLICY_LEWI_ASYNC,
127 POLICY_LEWI_MASK,
128 } policy_t;
129
130 typedef enum InteractionMode {
131 MODE_POLLING,
132 MODE_ASYNC
133 } interaction_mode_t;
134
135 typedef enum MPISet {
136 MPISET_NONE,
137 MPISET_ALL,
138 MPISET_BARRIER,
139 MPISET_COLLECTIVES
140 } mpi_set_t;
141
142 typedef enum OMPTOptions {
143 OMPTOOL_OPTS_NONE = 0,
144 /* OMPTOOL_OPTS_MPI = 1 << 0, DEPRECATED */
145 OMPTOOL_OPTS_BORROW = 1 << 1,
146 OMPTOOL_OPTS_LEND = 1 << 2,
147 /* OMPTOOL_OPTS_AGGRESSIVE = 0xF DEPRECATED */
148 } omptool_opts_t;
149
150 typedef enum OMPTMVersion {
151 OMPTM_NONE,
152 OMPTM_OMP5,
153 OMPTM_FREE_AGENTS,
154 OMPTM_ROLE_SHIFT
155 } omptm_version_t;
156
157 1 static inline int min_int(int a, int b) { return a < b ? a : b; }
158 5994 static inline int max_int(int a, int b) { return a > b ? a : b; }
159 3 static inline int64_t min_int64(int64_t a, int64_t b) { return a < b ? a : b; }
160 14 static inline int64_t max_int64(int64_t a, int64_t b) { return a > b ? a : b; }
161 295 static inline unsigned int min_uint(unsigned int a, unsigned int b) { return a < b ? a : b; }
162 static inline double min_double(double a, double b) { return a < b ? a : b; }
163 static inline double max_double(double a, double b) { return a > b ? a : b; }
164
165 static inline double min_double_non_zero(double a, double b) {
166 if (a == 0.0 && b == 0.0) {
167 return 0.0;
168 } else if (a == 0.0) {
169 return b;
170 } else if (b == 0.0) {
171 return a;
172 } else {
173 return min_double(a, b);
174 }
175 }
176
177 int parse_bool(const char *str, bool *value);
178 bool equivalent_bool(const char *str1, const char *str2);
179
180 int parse_negated_bool(const char *str, bool *value);
181 bool equivalent_negated_bool(const char *str1, const char *str2);
182
183 int parse_int(const char *str, int *value);
184 bool equivalent_int(const char *str1, const char *str2);
185
186 /* verbose_opts_t */
187 int parse_verbose_opts(const char *str, verbose_opts_t *value);
188 const char* verbose_opts_tostr(verbose_opts_t value);
189 const char* get_verbose_opts_choices(void);
190 bool equivalent_verbose_opts(const char *str1, const char *str2);
191
192 /* verbose_fmt_t */
193 int parse_verbose_fmt(const char *str, verbose_fmt_t *value);
194 const char* verbose_fmt_tostr(verbose_fmt_t value);
195 const char* get_verbose_fmt_choices(void);
196 bool equivalent_verbose_fmt(const char *str1, const char *str2);
197
198 /* instrument_item_t */
199 int parse_instrument_items(const char *str, instrument_items_t *value);
200 const char* instrument_items_tostr(instrument_items_t value);
201 const char* get_instrument_items_choices(void);
202 bool equivalent_instrument_items(const char *str1, const char *str2);
203
204 /* debug_opts_t */
205 int parse_debug_opts(const char *str, debug_opts_t *value);
206 const char* debug_opts_tostr(debug_opts_t value);
207 const char* get_debug_opts_choices(void);
208 bool equivalent_debug_opts(const char *str1, const char *str2);
209
210 /* lewi_affinity_t */
211 int parse_lewi_affinity(const char *str, lewi_affinity_t *value);
212 const char* lewi_affinity_tostr(lewi_affinity_t value);
213 const char* get_lewi_affinity_choices(void);
214 bool equivalent_lewi_affinity(const char *str1, const char *str2);
215
216 /* policy_t */
217 int parse_policy(const char *str, policy_t *value);
218 const char* policy_tostr(policy_t policy);
219 const char* get_policy_choices(void);
220 bool equivalent_policy(const char *str1, const char *str2);
221
222 /* talp_summary_t */
223 int parse_talp_summary(const char *str, talp_summary_t *value);
224 const char* talp_summary_tostr(talp_summary_t summary);
225 const char* get_talp_summary_choices(void);
226 bool equivalent_talp_summary(const char *str1, const char *str2);
227
228 /* talp_model_t */
229 int parse_talp_model(const char *str, talp_model_t *value);
230 const char* talp_model_tostr(talp_model_t value);
231 const char* get_talp_model_choices(void);
232 bool equivalent_talp_model(const char *str1, const char *str2);
233
234 /* talp_component_t */
235 int parse_talp_component(const char *str, talp_component_t *value);
236 const char* talp_component_tostr(talp_component_t value);
237 const char* get_talp_component_choices(void);
238 bool equivalent_talp_component(const char *str1, const char *str2);
239
240 /* interaction_mode_t */
241 int parse_mode(const char *str, interaction_mode_t *value);
242 const char* mode_tostr(interaction_mode_t value);
243 const char* get_mode_choices(void);
244 bool equivalent_mode(const char *str1, const char *str2);
245
246 /* mpi_set_t */
247 int parse_mpiset(const char *str, mpi_set_t *value);
248 const char* mpiset_tostr(mpi_set_t value);
249 const char* get_mpiset_choices(void);
250 bool equivalent_mpiset(const char *str1, const char *str2);
251
252 /* omptool_opts_t */
253 int parse_omptool_opts(const char *str, omptool_opts_t *value);
254 const char* omptool_opts_tostr(omptool_opts_t value);
255 const char* get_omptool_opts_choices(void);
256 bool equivalent_omptool_opts(const char *str1, const char *str2);
257
258 /* omptm_version_t */
259 int parse_omptm_version(const char *str, omptm_version_t *value);
260 const char* omptm_version_tostr(omptm_version_t value);
261 const char* get_omptm_version_choices(void);
262 bool equivalent_omptm_version_opts(const char *str1, const char *str2);
263
264 #endif /* TYPES_H */
265