Daily bump.
[official-gcc.git] / libgcc / libgcov.h
blob81e18950a50077ce71bbd739f595ccfde646f4e8
1 /* Header file for libgcov-*.c.
2 Copyright (C) 1996-2020 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #ifndef GCC_LIBGCOV_H
26 #define GCC_LIBGCOV_H
28 /* work around the poisoned malloc/calloc in system.h. */
29 #ifndef xmalloc
30 #define xmalloc malloc
31 #endif
32 #ifndef xcalloc
33 #define xcalloc calloc
34 #endif
36 #ifndef IN_GCOV_TOOL
37 /* About the target. */
38 /* This path will be used by libgcov runtime. */
40 #include "tconfig.h"
41 #include "auto-target.h"
42 #include "tsystem.h"
43 #include "coretypes.h"
44 #include "tm.h"
45 #include "libgcc_tm.h"
46 #include "gcov.h"
48 #if __CHAR_BIT__ == 8
49 typedef unsigned gcov_unsigned_t __attribute__ ((mode (SI)));
50 typedef unsigned gcov_position_t __attribute__ ((mode (SI)));
51 #if LONG_LONG_TYPE_SIZE > 32
52 typedef signed gcov_type __attribute__ ((mode (DI)));
53 typedef unsigned gcov_type_unsigned __attribute__ ((mode (DI)));
54 #else
55 typedef signed gcov_type __attribute__ ((mode (SI)));
56 typedef unsigned gcov_type_unsigned __attribute__ ((mode (SI)));
57 #endif
58 #else
59 #if __CHAR_BIT__ == 16
60 typedef unsigned gcov_unsigned_t __attribute__ ((mode (HI)));
61 typedef unsigned gcov_position_t __attribute__ ((mode (HI)));
62 #if LONG_LONG_TYPE_SIZE > 32
63 typedef signed gcov_type __attribute__ ((mode (SI)));
64 typedef unsigned gcov_type_unsigned __attribute__ ((mode (SI)));
65 #else
66 typedef signed gcov_type __attribute__ ((mode (HI)));
67 typedef unsigned gcov_type_unsigned __attribute__ ((mode (HI)));
68 #endif
69 #else
70 typedef unsigned gcov_unsigned_t __attribute__ ((mode (QI)));
71 typedef unsigned gcov_position_t __attribute__ ((mode (QI)));
72 #if LONG_LONG_TYPE_SIZE > 32
73 typedef signed gcov_type __attribute__ ((mode (HI)));
74 typedef unsigned gcov_type_unsigned __attribute__ ((mode (HI)));
75 #else
76 typedef signed gcov_type __attribute__ ((mode (QI)));
77 typedef unsigned gcov_type_unsigned __attribute__ ((mode (QI)));
78 #endif
79 #endif
80 #endif
82 #if defined (TARGET_POSIX_IO)
83 #define GCOV_LOCKED 1
84 #else
85 #define GCOV_LOCKED 0
86 #endif
88 #ifndef GCOV_SUPPORTS_ATOMIC
89 /* Detect whether target can support atomic update of profilers. */
90 #if __SIZEOF_LONG_LONG__ == 4 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4
91 #define GCOV_SUPPORTS_ATOMIC 1
92 #else
93 #if __SIZEOF_LONG_LONG__ == 8 && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8
94 #define GCOV_SUPPORTS_ATOMIC 1
95 #else
96 #define GCOV_SUPPORTS_ATOMIC 0
97 #endif
98 #endif
99 #endif
101 /* In libgcov we need these functions to be extern, so prefix them with
102 __gcov. In libgcov they must also be hidden so that the instance in
103 the executable is not also used in a DSO. */
104 #define gcov_var __gcov_var
105 #define gcov_open __gcov_open
106 #define gcov_close __gcov_close
107 #define gcov_write_tag_length __gcov_write_tag_length
108 #define gcov_position __gcov_position
109 #define gcov_seek __gcov_seek
110 #define gcov_rewrite __gcov_rewrite
111 #define gcov_is_error __gcov_is_error
112 #define gcov_write_unsigned __gcov_write_unsigned
113 #define gcov_write_counter __gcov_write_counter
114 #define gcov_write_summary __gcov_write_summary
115 #define gcov_read_unsigned __gcov_read_unsigned
116 #define gcov_read_counter __gcov_read_counter
117 #define gcov_read_summary __gcov_read_summary
119 #else /* IN_GCOV_TOOL */
120 /* About the host. */
121 /* This path will be compiled for the host and linked into
122 gcov-tool binary. */
124 #include "config.h"
125 #include "system.h"
126 #include "coretypes.h"
127 #include "tm.h"
129 typedef unsigned gcov_unsigned_t;
130 typedef unsigned gcov_position_t;
131 /* gcov_type is typedef'd elsewhere for the compiler */
132 #if defined (HOST_HAS_F_SETLKW)
133 #define GCOV_LOCKED 1
134 #else
135 #define GCOV_LOCKED 0
136 #endif
138 /* Some Macros specific to gcov-tool. */
140 #define L_gcov 1
141 #define L_gcov_merge_add 1
142 #define L_gcov_merge_topn 1
143 #define L_gcov_merge_ior 1
144 #define L_gcov_merge_time_profile 1
146 extern gcov_type gcov_read_counter_mem ();
147 extern unsigned gcov_get_merge_weight ();
148 extern struct gcov_info *gcov_list;
150 #endif /* !IN_GCOV_TOOL */
152 #if defined(inhibit_libc)
153 #define IN_LIBGCOV (-1)
154 #else
155 #define IN_LIBGCOV 1
156 #if defined(L_gcov)
157 #define GCOV_LINKAGE /* nothing */
158 #endif
159 #endif
161 /* Poison these, so they don't accidentally slip in. */
162 #pragma GCC poison gcov_write_string gcov_write_tag gcov_write_length
163 #pragma GCC poison gcov_time
165 #ifdef HAVE_GAS_HIDDEN
166 #define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
167 #else
168 #define ATTRIBUTE_HIDDEN
169 #endif
171 #include "gcov-io.h"
173 /* Structures embedded in coveraged program. The structures generated
174 by write_profile must match these. */
176 /* Information about counters for a single function. */
177 struct gcov_ctr_info
179 gcov_unsigned_t num; /* number of counters. */
180 gcov_type *values; /* their values. */
183 /* Information about a single function. This uses the trailing array
184 idiom. The number of counters is determined from the merge pointer
185 array in gcov_info. The key is used to detect which of a set of
186 comdat functions was selected -- it points to the gcov_info object
187 of the object file containing the selected comdat function. */
189 struct gcov_fn_info
191 const struct gcov_info *key; /* comdat key */
192 gcov_unsigned_t ident; /* unique ident of function */
193 gcov_unsigned_t lineno_checksum; /* function lineo_checksum */
194 gcov_unsigned_t cfg_checksum; /* function cfg checksum */
195 struct gcov_ctr_info ctrs[1]; /* instrumented counters */
198 /* Type of function used to merge counters. */
199 typedef void (*gcov_merge_fn) (gcov_type *, gcov_unsigned_t);
201 /* Information about a single object file. */
202 struct gcov_info
204 gcov_unsigned_t version; /* expected version number */
205 struct gcov_info *next; /* link to next, used by libgcov */
207 gcov_unsigned_t stamp; /* uniquifying time stamp */
208 const char *filename; /* output file name */
210 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for
211 unused) */
213 unsigned n_functions; /* number of functions */
215 #ifndef IN_GCOV_TOOL
216 const struct gcov_fn_info *const *functions; /* pointer to pointers
217 to function information */
218 #else
219 struct gcov_fn_info **functions;
220 struct gcov_summary summary;
221 #endif /* !IN_GCOV_TOOL */
224 /* Root of a program/shared-object state */
225 struct gcov_root
227 struct gcov_info *list;
228 unsigned dumped : 1; /* counts have been dumped. */
229 unsigned run_counted : 1; /* run has been accounted for. */
230 struct gcov_root *next;
231 struct gcov_root *prev;
234 extern struct gcov_root __gcov_root ATTRIBUTE_HIDDEN;
236 struct gcov_master
238 gcov_unsigned_t version;
239 struct gcov_root *root;
242 struct indirect_call_tuple
244 /* Callee function. */
245 void *callee;
247 /* Pointer to counters. */
248 gcov_type *counters;
251 /* Exactly one of these will be active in the process. */
252 extern struct gcov_master __gcov_master;
254 /* Dump a set of gcov objects. */
255 extern void __gcov_dump_one (struct gcov_root *) ATTRIBUTE_HIDDEN;
257 /* Register a new object file module. */
258 extern void __gcov_init (struct gcov_info *) ATTRIBUTE_HIDDEN;
260 /* GCOV exit function registered via a static destructor. */
261 extern void __gcov_exit (void) ATTRIBUTE_HIDDEN;
263 /* Function to reset all counters to 0. Both externally visible (and
264 overridable) and internal version. */
265 extern void __gcov_reset_int (void) ATTRIBUTE_HIDDEN;
267 /* User function to enable early write of profile information so far. */
268 extern void __gcov_dump_int (void) ATTRIBUTE_HIDDEN;
270 /* Lock critical section for __gcov_dump and __gcov_reset functions. */
271 extern void __gcov_lock (void) ATTRIBUTE_HIDDEN;
273 /* Unlock critical section for __gcov_dump and __gcov_reset functions. */
274 extern void __gcov_unlock (void) ATTRIBUTE_HIDDEN;
276 /* The merge function that just sums the counters. */
277 extern void __gcov_merge_add (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
279 /* The merge function to select the minimum valid counter value. */
280 extern void __gcov_merge_time_profile (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
282 /* The merge function to choose the most common N values. */
283 extern void __gcov_merge_topn (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
285 /* The merge function that just ors the counters together. */
286 extern void __gcov_merge_ior (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
288 /* The profiler functions. */
289 extern void __gcov_interval_profiler (gcov_type *, gcov_type, int, unsigned);
290 extern void __gcov_interval_profiler_atomic (gcov_type *, gcov_type, int,
291 unsigned);
292 extern void __gcov_pow2_profiler (gcov_type *, gcov_type);
293 extern void __gcov_pow2_profiler_atomic (gcov_type *, gcov_type);
294 extern void __gcov_topn_values_profiler (gcov_type *, gcov_type);
295 extern void __gcov_topn_values_profiler_atomic (gcov_type *, gcov_type);
296 extern void __gcov_indirect_call_profiler_v4 (gcov_type, void *);
297 extern void __gcov_indirect_call_profiler_v4_atomic (gcov_type, void *);
298 extern void __gcov_time_profiler (gcov_type *);
299 extern void __gcov_time_profiler_atomic (gcov_type *);
300 extern void __gcov_average_profiler (gcov_type *, gcov_type);
301 extern void __gcov_average_profiler_atomic (gcov_type *, gcov_type);
302 extern void __gcov_ior_profiler (gcov_type *, gcov_type);
303 extern void __gcov_ior_profiler_atomic (gcov_type *, gcov_type);
305 #ifndef inhibit_libc
306 /* The wrappers around some library functions.. */
307 extern pid_t __gcov_fork (void) ATTRIBUTE_HIDDEN;
308 extern int __gcov_execl (const char *, char *, ...) ATTRIBUTE_HIDDEN;
309 extern int __gcov_execlp (const char *, char *, ...) ATTRIBUTE_HIDDEN;
310 extern int __gcov_execle (const char *, char *, ...) ATTRIBUTE_HIDDEN;
311 extern int __gcov_execv (const char *, char *const []) ATTRIBUTE_HIDDEN;
312 extern int __gcov_execvp (const char *, char *const []) ATTRIBUTE_HIDDEN;
313 extern int __gcov_execve (const char *, char *const [], char *const [])
314 ATTRIBUTE_HIDDEN;
316 /* Functions that only available in libgcov. */
317 GCOV_LINKAGE int gcov_open (const char */*name*/) ATTRIBUTE_HIDDEN;
318 GCOV_LINKAGE void gcov_write_counter (gcov_type) ATTRIBUTE_HIDDEN;
319 GCOV_LINKAGE void gcov_write_tag_length (gcov_unsigned_t, gcov_unsigned_t)
320 ATTRIBUTE_HIDDEN;
321 GCOV_LINKAGE void gcov_write_summary (gcov_unsigned_t /*tag*/,
322 const struct gcov_summary *)
323 ATTRIBUTE_HIDDEN;
324 GCOV_LINKAGE void gcov_seek (gcov_position_t /*position*/) ATTRIBUTE_HIDDEN;
325 GCOV_LINKAGE void gcov_rewrite (void) ATTRIBUTE_HIDDEN;
327 /* "Counts" stored in gcda files can be a real counter value, or
328 an target address. When differentiate these two types because
329 when manipulating counts, we should only change real counter values,
330 rather target addresses. */
332 static inline gcov_type
333 gcov_get_counter (void)
335 #ifndef IN_GCOV_TOOL
336 /* This version is for reading count values in libgcov runtime:
337 we read from gcda files. */
339 return gcov_read_counter ();
340 #else
341 /* This version is for gcov-tool. We read the value from memory and
342 multiply it by the merge weight. */
344 return gcov_read_counter_mem () * gcov_get_merge_weight ();
345 #endif
348 /* Similar function as gcov_get_counter(), but do not scale
349 when read value is equal to IGNORE_SCALING. */
351 static inline gcov_type
352 gcov_get_counter_ignore_scaling (gcov_type ignore_scaling ATTRIBUTE_UNUSED)
354 #ifndef IN_GCOV_TOOL
355 /* This version is for reading count values in libgcov runtime:
356 we read from gcda files. */
358 return gcov_read_counter ();
359 #else
360 /* This version is for gcov-tool. We read the value from memory and
361 multiply it by the merge weight. */
363 gcov_type v = gcov_read_counter_mem ();
364 if (v != ignore_scaling)
365 v *= gcov_get_merge_weight ();
367 return v;
368 #endif
371 /* Similar function as gcov_get_counter(), but handles target address
372 counters. */
374 static inline gcov_type
375 gcov_get_counter_target (void)
377 #ifndef IN_GCOV_TOOL
378 /* This version is for reading count target values in libgcov runtime:
379 we read from gcda files. */
381 return gcov_read_counter ();
382 #else
383 /* This version is for gcov-tool. We read the value from memory and we do NOT
384 multiply it by the merge weight. */
386 return gcov_read_counter_mem ();
387 #endif
390 /* Add VALUE to *COUNTER and make it with atomic operation
391 if USE_ATOMIC is true. */
393 static inline void
394 gcov_counter_add (gcov_type *counter, gcov_type value,
395 int use_atomic ATTRIBUTE_UNUSED)
397 #if GCOV_SUPPORTS_ATOMIC
398 if (use_atomic)
399 __atomic_fetch_add (counter, value, __ATOMIC_RELAXED);
400 else
401 #endif
402 *counter += value;
405 /* Add key value pair VALUE:COUNT to a top N COUNTERS. When INCREMENT_TOTAL
406 is true, add COUNT to total of the TOP counter. If USE_ATOMIC is true,
407 do it in atomic way. */
409 static inline void
410 gcov_topn_add_value (gcov_type *counters, gcov_type value, gcov_type count,
411 int use_atomic, int increment_total)
413 if (increment_total)
414 gcov_counter_add (&counters[0], 1, use_atomic);
416 struct gcov_kvp *prev_node = NULL;
417 struct gcov_kvp *minimal_node = NULL;
418 struct gcov_kvp *current_node = (struct gcov_kvp *)(intptr_t)counters[2];
420 while (current_node)
422 if (current_node->value == value)
424 gcov_counter_add (&current_node->count, count, use_atomic);
425 return;
428 if (minimal_node == NULL
429 || current_node->count < minimal_node->count)
430 minimal_node = current_node;
432 prev_node = current_node;
433 current_node = current_node->next;
436 if (counters[1] == GCOV_TOPN_MAXIMUM_TRACKED_VALUES)
438 if (--minimal_node->count < count)
440 minimal_node->value = value;
441 minimal_node->count = count;
444 else
446 struct gcov_kvp *new_node
447 = (struct gcov_kvp *)xcalloc (1, sizeof (struct gcov_kvp));
448 new_node->value = value;
449 new_node->count = count;
451 int success = 0;
452 if (!counters[2])
454 #if GCOV_SUPPORTS_ATOMIC
455 if (use_atomic)
457 struct gcov_kvp **ptr = (struct gcov_kvp **)(intptr_t)&counters[2];
458 success = !__sync_val_compare_and_swap (ptr, 0, new_node);
460 else
461 #endif
463 counters[2] = (intptr_t)new_node;
464 success = 1;
467 else if (prev_node && !prev_node->next)
469 #if GCOV_SUPPORTS_ATOMIC
470 if (use_atomic)
471 success = !__sync_val_compare_and_swap (&prev_node->next, 0,
472 new_node);
473 else
474 #endif
476 prev_node->next = new_node;
477 success = 1;
481 /* Increment number of nodes. */
482 if (success)
483 gcov_counter_add (&counters[1], 1, use_atomic);
487 #endif /* !inhibit_libc */
489 #endif /* GCC_LIBGCOV_H */