VEC_COND_EXPR optimizations
[official-gcc.git] / libgcc / libgcov-util.c
blob1ada1fecb5870ce954afc500ad58c9c48aa72ea1
1 /* Utility functions for reading gcda files into in-memory
2 gcov_info structures and offline profile processing. */
3 /* Copyright (C) 2014-2020 Free Software Foundation, Inc.
4 Contributed by Rong Xu <xur@google.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
28 #define IN_GCOV_TOOL 1
30 #include "libgcov.h"
31 #include "intl.h"
32 #include "diagnostic.h"
33 #include "version.h"
34 #include "demangle.h"
35 #include "gcov-io.h"
37 /* Borrowed from basic-block.h. */
38 #define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
40 extern gcov_position_t gcov_position();
41 extern int gcov_is_error();
43 /* Verbose mode for debug. */
44 static int verbose;
46 /* Set verbose flag. */
47 void gcov_set_verbose (void)
49 verbose = 1;
52 /* The following part is to read Gcda and reconstruct GCOV_INFO. */
54 #include "obstack.h"
55 #include <unistd.h>
56 #ifdef HAVE_FTW_H
57 #include <ftw.h>
58 #endif
60 static void tag_function (unsigned, int);
61 static void tag_blocks (unsigned, int);
62 static void tag_arcs (unsigned, int);
63 static void tag_lines (unsigned, int);
64 static void tag_counters (unsigned, int);
65 static void tag_summary (unsigned, int);
67 /* The gcov_info for the first module. */
68 static struct gcov_info *curr_gcov_info;
69 /* The gcov_info being processed. */
70 static struct gcov_info *gcov_info_head;
71 /* This variable contains all the functions in current module. */
72 static struct obstack fn_info;
73 /* The function being processed. */
74 static struct gcov_fn_info *curr_fn_info;
75 /* The number of functions seen so far. */
76 static unsigned num_fn_info;
77 /* This variable contains all the counters for current module. */
78 static int k_ctrs_mask[GCOV_COUNTERS];
79 /* The kind of counters that have been seen. */
80 static struct gcov_ctr_info k_ctrs[GCOV_COUNTERS];
81 /* Number of kind of counters that have been seen. */
82 static int k_ctrs_types;
84 /* Merge functions for counters. */
85 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) __gcov_merge ## FN_TYPE,
86 static gcov_merge_fn ctr_merge_functions[GCOV_COUNTERS] = {
87 #include "gcov-counter.def"
89 #undef DEF_GCOV_COUNTER
91 /* Set the ctrs field in gcov_fn_info object FN_INFO. */
93 static void
94 set_fn_ctrs (struct gcov_fn_info *fn_info)
96 int j = 0, i;
98 for (i = 0; i < GCOV_COUNTERS; i++)
100 if (k_ctrs_mask[i] == 0)
101 continue;
102 fn_info->ctrs[j].num = k_ctrs[i].num;
103 fn_info->ctrs[j].values = k_ctrs[i].values;
104 j++;
106 if (k_ctrs_types == 0)
107 k_ctrs_types = j;
108 else
109 gcc_assert (j == k_ctrs_types);
112 /* For each tag in gcda file, we have an entry here.
113 TAG is the tag value; NAME is the tag name; and
114 PROC is the handler function. */
116 typedef struct tag_format
118 unsigned tag;
119 char const *name;
120 void (*proc) (unsigned, int);
121 } tag_format_t;
123 /* Handler table for various Tags. */
125 static const tag_format_t tag_table[] =
127 {0, "NOP", NULL},
128 {0, "UNKNOWN", NULL},
129 {0, "COUNTERS", tag_counters},
130 {GCOV_TAG_FUNCTION, "FUNCTION", tag_function},
131 {GCOV_TAG_BLOCKS, "BLOCKS", tag_blocks},
132 {GCOV_TAG_ARCS, "ARCS", tag_arcs},
133 {GCOV_TAG_LINES, "LINES", tag_lines},
134 {GCOV_TAG_OBJECT_SUMMARY, "OBJECT_SUMMARY", tag_summary},
135 {0, NULL, NULL}
138 /* Handler for reading function tag. */
140 static void
141 tag_function (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
143 int i;
145 /* write out previous fn_info. */
146 if (num_fn_info)
148 set_fn_ctrs (curr_fn_info);
149 obstack_ptr_grow (&fn_info, curr_fn_info);
152 /* Here we over allocate a bit, using GCOV_COUNTERS instead of the actual active
153 counter types. */
154 curr_fn_info = (struct gcov_fn_info *) xcalloc (sizeof (struct gcov_fn_info)
155 + GCOV_COUNTERS * sizeof (struct gcov_ctr_info), 1);
157 for (i = 0; i < GCOV_COUNTERS; i++)
158 k_ctrs[i].num = 0;
159 k_ctrs_types = 0;
161 curr_fn_info->key = curr_gcov_info;
162 curr_fn_info->ident = gcov_read_unsigned ();
163 curr_fn_info->lineno_checksum = gcov_read_unsigned ();
164 curr_fn_info->cfg_checksum = gcov_read_unsigned ();
165 num_fn_info++;
167 if (verbose)
168 fnotice (stdout, "tag one function id=%d\n", curr_fn_info->ident);
171 /* Handler for reading block tag. */
173 static void
174 tag_blocks (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
176 /* TBD: gcov-tool currently does not handle gcno files. Assert here. */
177 gcc_unreachable ();
180 /* Handler for reading flow arc tag. */
182 static void
183 tag_arcs (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
185 /* TBD: gcov-tool currently does not handle gcno files. Assert here. */
186 gcc_unreachable ();
189 /* Handler for reading line tag. */
191 static void
192 tag_lines (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
194 /* TBD: gcov-tool currently does not handle gcno files. Assert here. */
195 gcc_unreachable ();
198 /* Handler for reading counters array tag with value as TAG and length of LENGTH. */
200 static void
201 tag_counters (unsigned tag, int length)
203 unsigned n_counts = GCOV_TAG_COUNTER_NUM (abs (length));
204 gcov_type *values;
205 unsigned ix;
206 unsigned tag_ix;
208 tag_ix = GCOV_COUNTER_FOR_TAG (tag);
209 gcc_assert (tag_ix < GCOV_COUNTERS);
210 k_ctrs_mask [tag_ix] = 1;
211 gcc_assert (k_ctrs[tag_ix].num == 0);
212 k_ctrs[tag_ix].num = n_counts;
214 k_ctrs[tag_ix].values = values = (gcov_type *) xcalloc (sizeof (gcov_type),
215 n_counts);
216 gcc_assert (values);
218 if (length > 0)
219 for (ix = 0; ix != n_counts; ix++)
220 values[ix] = gcov_read_counter ();
223 /* Handler for reading summary tag. */
225 static void
226 tag_summary (unsigned tag ATTRIBUTE_UNUSED, int ATTRIBUTE_UNUSED)
228 gcov_read_summary (&curr_gcov_info->summary);
231 /* This function is called at the end of reading a gcda file.
232 It flushes the contents in curr_fn_info to gcov_info object OBJ_INFO. */
234 static void
235 read_gcda_finalize (struct gcov_info *obj_info)
237 int i;
239 set_fn_ctrs (curr_fn_info);
240 obstack_ptr_grow (&fn_info, curr_fn_info);
242 /* We set the following fields: merge, n_functions, functions
243 and summary. */
244 obj_info->n_functions = num_fn_info;
245 obj_info->functions = (struct gcov_fn_info**) obstack_finish (&fn_info);
247 /* wrap all the counter array. */
248 for (i=0; i< GCOV_COUNTERS; i++)
250 if (k_ctrs_mask[i])
251 obj_info->merge[i] = ctr_merge_functions[i];
255 /* Read the content of a gcda file FILENAME, and return a gcov_info data structure.
256 Program level summary CURRENT_SUMMARY will also be updated. */
258 static struct gcov_info *
259 read_gcda_file (const char *filename)
261 unsigned tags[4];
262 unsigned depth = 0;
263 unsigned version;
264 struct gcov_info *obj_info;
265 int i;
267 for (i=0; i< GCOV_COUNTERS; i++)
268 k_ctrs_mask[i] = 0;
269 k_ctrs_types = 0;
271 if (!gcov_open (filename))
273 fnotice (stderr, "%s:cannot open\n", filename);
274 return NULL;
277 /* Read magic. */
278 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
280 fnotice (stderr, "%s:not a gcov data file\n", filename);
281 gcov_close ();
282 return NULL;
285 /* Read version. */
286 version = gcov_read_unsigned ();
287 if (version != GCOV_VERSION)
289 fnotice (stderr, "%s:incorrect gcov version %d vs %d \n", filename, version, GCOV_VERSION);
290 gcov_close ();
291 return NULL;
294 /* Instantiate a gcov_info object. */
295 curr_gcov_info = obj_info = (struct gcov_info *) xcalloc (sizeof (struct gcov_info) +
296 sizeof (struct gcov_ctr_info) * GCOV_COUNTERS, 1);
298 obj_info->version = version;
299 obstack_init (&fn_info);
300 num_fn_info = 0;
301 curr_fn_info = 0;
303 size_t len = strlen (filename) + 1;
304 char *str_dup = (char*) xmalloc (len);
306 memcpy (str_dup, filename, len);
307 obj_info->filename = str_dup;
310 /* Read stamp. */
311 obj_info->stamp = gcov_read_unsigned ();
313 while (1)
315 gcov_position_t base;
316 unsigned tag, length;
317 tag_format_t const *format;
318 unsigned tag_depth;
319 int error;
320 unsigned mask;
322 tag = gcov_read_unsigned ();
323 if (!tag)
324 break;
325 int read_length = (int)gcov_read_unsigned ();
326 length = read_length > 0 ? read_length : 0;
327 base = gcov_position ();
328 mask = GCOV_TAG_MASK (tag) >> 1;
329 for (tag_depth = 4; mask; mask >>= 8)
331 if (((mask & 0xff) != 0xff))
333 warning (0, "%s:tag %qx is invalid", filename, tag);
334 break;
336 tag_depth--;
338 for (format = tag_table; format->name; format++)
339 if (format->tag == tag)
340 goto found;
341 format = &tag_table[GCOV_TAG_IS_COUNTER (tag) ? 2 : 1];
342 found:;
343 if (tag)
345 if (depth && depth < tag_depth)
347 if (!GCOV_TAG_IS_SUBTAG (tags[depth - 1], tag))
348 warning (0, "%s:tag %qx is incorrectly nested",
349 filename, tag);
351 depth = tag_depth;
352 tags[depth - 1] = tag;
355 if (format->proc)
357 unsigned long actual_length;
359 (*format->proc) (tag, read_length);
361 actual_length = gcov_position () - base;
362 if (actual_length > length)
363 warning (0, "%s:record size mismatch %lu bytes overread",
364 filename, actual_length - length);
365 else if (length > actual_length)
366 warning (0, "%s:record size mismatch %lu bytes unread",
367 filename, length - actual_length);
370 gcov_sync (base, length);
371 if ((error = gcov_is_error ()))
373 warning (0, error < 0 ? "%s:counter overflow at %lu" :
374 "%s:read error at %lu", filename,
375 (long unsigned) gcov_position ());
376 break;
380 read_gcda_finalize (obj_info);
381 gcov_close ();
383 return obj_info;
386 #ifdef HAVE_FTW_H
387 /* This will be called by ftw(). It opens and read a gcda file FILENAME.
388 Return a non-zero value to stop the tree walk. */
390 static int
391 ftw_read_file (const char *filename,
392 const struct stat *status ATTRIBUTE_UNUSED,
393 int type)
395 int filename_len;
396 int suffix_len;
397 struct gcov_info *obj_info;
399 /* Only read regular files. */
400 if (type != FTW_F)
401 return 0;
403 filename_len = strlen (filename);
404 suffix_len = strlen (GCOV_DATA_SUFFIX);
406 if (filename_len <= suffix_len)
407 return 0;
409 if (strcmp(filename + filename_len - suffix_len, GCOV_DATA_SUFFIX))
410 return 0;
412 if (verbose)
413 fnotice (stderr, "reading file: %s\n", filename);
415 obj_info = read_gcda_file (filename);
416 if (!obj_info)
417 return 0;
419 obj_info->next = gcov_info_head;
420 gcov_info_head = obj_info;
422 return 0;
424 #endif
426 /* Initializer for reading a profile dir. */
428 static inline void
429 read_profile_dir_init (void)
431 gcov_info_head = 0;
434 /* Driver for read a profile directory and convert into gcov_info list in memory.
435 Return NULL on error,
436 Return the head of gcov_info list on success. */
438 struct gcov_info *
439 gcov_read_profile_dir (const char* dir_name, int recompute_summary ATTRIBUTE_UNUSED)
441 char *pwd;
442 int ret;
444 read_profile_dir_init ();
446 if (access (dir_name, R_OK) != 0)
448 fnotice (stderr, "cannot access directory %s\n", dir_name);
449 return NULL;
451 pwd = getcwd (NULL, 0);
452 gcc_assert (pwd);
453 ret = chdir (dir_name);
454 if (ret !=0)
456 fnotice (stderr, "%s is not a directory\n", dir_name);
457 return NULL;
459 #ifdef HAVE_FTW_H
460 ftw (".", ftw_read_file, 50);
461 #endif
462 chdir (pwd);
463 free (pwd);
465 return gcov_info_head;;
468 /* This part of the code is to merge profile counters. These
469 variables are set in merge_wrapper and to be used by
470 global function gcov_read_counter_mem() and gcov_get_merge_weight. */
472 /* We save the counter value address to this variable. */
473 static gcov_type *gcov_value_buf;
475 /* The number of counter values to be read by current merging. */
476 static gcov_unsigned_t gcov_value_buf_size;
478 /* The index of counter values being read. */
479 static gcov_unsigned_t gcov_value_buf_pos;
481 /* The weight of current merging. */
482 static unsigned gcov_merge_weight;
484 /* Read a counter value from gcov_value_buf array. */
486 gcov_type
487 gcov_read_counter_mem (void)
489 gcov_type ret;
490 gcc_assert (gcov_value_buf_pos < gcov_value_buf_size);
491 ret = *(gcov_value_buf + gcov_value_buf_pos);
492 ++gcov_value_buf_pos;
493 return ret;
496 /* Return the recorded merge weight. */
498 unsigned
499 gcov_get_merge_weight (void)
501 return gcov_merge_weight;
504 /* A wrapper function for merge functions. It sets up the
505 value buffer and weights and then calls the merge function. */
507 static void
508 merge_wrapper (gcov_merge_fn f, gcov_type *v1, gcov_unsigned_t n1,
509 gcov_type *v2, gcov_unsigned_t n2, unsigned w)
511 gcov_value_buf = v2;
512 gcov_value_buf_pos = 0;
513 gcov_value_buf_size = n2;
514 gcov_merge_weight = w;
515 (*f) (v1, n1);
518 /* Convert on disk representation of a TOPN counter to in memory representation
519 that is expected from __gcov_merge_topn function. */
521 static void
522 topn_to_memory_representation (struct gcov_ctr_info *info)
524 auto_vec<gcov_type> output;
525 gcov_type *values = info->values;
526 int count = info->num;
528 while (count > 0)
530 output.safe_push (values[0]);
531 gcov_type n = values[1];
532 output.safe_push (n);
533 if (n > 0)
535 struct gcov_kvp *tuples
536 = (struct gcov_kvp *)xcalloc (sizeof (struct gcov_kvp), n);
537 for (unsigned i = 0; i < n - 1; i++)
538 tuples[i].next = &tuples[i + 1];
539 for (unsigned i = 0; i < n; i++)
541 tuples[i].value = values[2 + 2 * i];
542 tuples[i].count = values[2 + 2 * i + 1];
544 output.safe_push ((intptr_t)&tuples[0]);
546 else
547 output.safe_push (0);
549 unsigned len = 2 * n + 2;
550 values += len;
551 count -= len;
553 gcc_assert (count == 0);
555 /* Allocate new buffer and copy it there. */
556 info->num = output.length ();
557 info->values = (gcov_type *)xmalloc (sizeof (gcov_type) * info->num);
558 for (unsigned i = 0; i < info->num; i++)
559 info->values[i] = output[i];
562 /* Offline tool to manipulate profile data.
563 This tool targets on matched profiles. But it has some tolerance on
564 unmatched profiles.
565 When merging p1 to p2 (p2 is the dst),
566 * m.gcda in p1 but not in p2: append m.gcda to p2 with specified weight;
567 emit warning
568 * m.gcda in p2 but not in p1: keep m.gcda in p2 and multiply by
569 specified weight; emit warning.
570 * m.gcda in both p1 and p2:
571 ** p1->m.gcda->f checksum matches p2->m.gcda->f: simple merge.
572 ** p1->m.gcda->f checksum does not matches p2->m.gcda->f: keep
573 p2->m.gcda->f and
574 drop p1->m.gcda->f. A warning is emitted. */
576 /* Add INFO2's counter to INFO1, multiplying by weight W. */
578 static int
579 gcov_merge (struct gcov_info *info1, struct gcov_info *info2, int w)
581 unsigned f_ix;
582 unsigned n_functions = info1->n_functions;
583 int has_mismatch = 0;
585 gcc_assert (info2->n_functions == n_functions);
587 /* Merge summary. */
588 info1->summary.runs += info2->summary.runs;
589 info1->summary.sum_max += info2->summary.sum_max;
591 for (f_ix = 0; f_ix < n_functions; f_ix++)
593 unsigned t_ix;
594 struct gcov_fn_info *gfi_ptr1 = info1->functions[f_ix];
595 struct gcov_fn_info *gfi_ptr2 = info2->functions[f_ix];
596 struct gcov_ctr_info *ci_ptr1, *ci_ptr2;
598 if (!gfi_ptr1 || gfi_ptr1->key != info1)
599 continue;
600 if (!gfi_ptr2 || gfi_ptr2->key != info2)
601 continue;
603 if (gfi_ptr1->cfg_checksum != gfi_ptr2->cfg_checksum)
605 fnotice (stderr, "in %s, cfg_checksum mismatch, skipping\n",
606 info1->filename);
607 has_mismatch = 1;
608 continue;
610 ci_ptr1 = gfi_ptr1->ctrs;
611 ci_ptr2 = gfi_ptr2->ctrs;
612 for (t_ix = 0; t_ix != GCOV_COUNTERS; t_ix++)
614 gcov_merge_fn merge1 = info1->merge[t_ix];
615 gcov_merge_fn merge2 = info2->merge[t_ix];
617 gcc_assert (merge1 == merge2);
618 if (!merge1)
619 continue;
621 if (merge1 == __gcov_merge_topn)
622 topn_to_memory_representation (ci_ptr1);
623 else
624 gcc_assert (ci_ptr1->num == ci_ptr2->num);
626 merge_wrapper (merge1, ci_ptr1->values, ci_ptr1->num,
627 ci_ptr2->values, ci_ptr2->num, w);
628 ci_ptr1++;
629 ci_ptr2++;
633 return has_mismatch;
636 /* Find and return the match gcov_info object for INFO from ARRAY.
637 SIZE is the length of ARRAY.
638 Return NULL if there is no match. */
640 static struct gcov_info *
641 find_match_gcov_info (struct gcov_info **array, int size,
642 struct gcov_info *info)
644 struct gcov_info *gi_ptr;
645 struct gcov_info *ret = NULL;
646 int i;
648 for (i = 0; i < size; i++)
650 gi_ptr = array[i];
651 if (gi_ptr == 0)
652 continue;
653 if (!strcmp (gi_ptr->filename, info->filename))
655 ret = gi_ptr;
656 array[i] = 0;
657 break;
661 if (ret && ret->n_functions != info->n_functions)
663 fnotice (stderr, "mismatched profiles in %s (%d functions"
664 " vs %d functions)\n",
665 ret->filename,
666 ret->n_functions,
667 info->n_functions);
668 ret = NULL;
670 return ret;
673 /* Merge the list of gcov_info objects from SRC_PROFILE to TGT_PROFILE.
674 Return 0 on success: without mismatch.
675 Reutrn 1 on error. */
678 gcov_profile_merge (struct gcov_info *tgt_profile, struct gcov_info *src_profile,
679 int w1, int w2)
681 struct gcov_info *gi_ptr;
682 struct gcov_info **tgt_infos;
683 struct gcov_info *tgt_tail;
684 struct gcov_info **in_src_not_tgt;
685 unsigned tgt_cnt = 0, src_cnt = 0;
686 unsigned unmatch_info_cnt = 0;
687 unsigned int i;
689 for (gi_ptr = tgt_profile; gi_ptr; gi_ptr = gi_ptr->next)
690 tgt_cnt++;
691 for (gi_ptr = src_profile; gi_ptr; gi_ptr = gi_ptr->next)
692 src_cnt++;
693 tgt_infos = (struct gcov_info **) xmalloc (sizeof (struct gcov_info *)
694 * tgt_cnt);
695 gcc_assert (tgt_infos);
696 in_src_not_tgt = (struct gcov_info **) xmalloc (sizeof (struct gcov_info *)
697 * src_cnt);
698 gcc_assert (in_src_not_tgt);
700 for (gi_ptr = tgt_profile, i = 0; gi_ptr; gi_ptr = gi_ptr->next, i++)
701 tgt_infos[i] = gi_ptr;
703 tgt_tail = tgt_infos[tgt_cnt - 1];
705 /* First pass on tgt_profile, we multiply w1 to all counters. */
706 if (w1 > 1)
708 for (i = 0; i < tgt_cnt; i++)
709 gcov_merge (tgt_infos[i], tgt_infos[i], w1-1);
712 /* Second pass, add src_profile to the tgt_profile. */
713 for (gi_ptr = src_profile; gi_ptr; gi_ptr = gi_ptr->next)
715 struct gcov_info *gi_ptr1;
717 gi_ptr1 = find_match_gcov_info (tgt_infos, tgt_cnt, gi_ptr);
718 if (gi_ptr1 == NULL)
720 in_src_not_tgt[unmatch_info_cnt++] = gi_ptr;
721 continue;
723 gcov_merge (gi_ptr1, gi_ptr, w2);
726 /* For modules in src but not in tgt. We adjust the counter and append. */
727 for (i = 0; i < unmatch_info_cnt; i++)
729 gi_ptr = in_src_not_tgt[i];
730 gcov_merge (gi_ptr, gi_ptr, w2 - 1);
731 gi_ptr->next = NULL;
732 tgt_tail->next = gi_ptr;
733 tgt_tail = gi_ptr;
736 free (in_src_not_tgt);
737 free (tgt_infos);
739 return 0;
742 typedef gcov_type (*counter_op_fn) (gcov_type, void*, void*);
744 /* Performing FN upon arc counters. */
746 static void
747 __gcov_add_counter_op (gcov_type *counters, unsigned n_counters,
748 counter_op_fn fn, void *data1, void *data2)
750 for (; n_counters; counters++, n_counters--)
752 gcov_type val = *counters;
753 *counters = fn(val, data1, data2);
757 /* Performing FN upon ior counters. */
759 static void
760 __gcov_ior_counter_op (gcov_type *counters ATTRIBUTE_UNUSED,
761 unsigned n_counters ATTRIBUTE_UNUSED,
762 counter_op_fn fn ATTRIBUTE_UNUSED,
763 void *data1 ATTRIBUTE_UNUSED,
764 void *data2 ATTRIBUTE_UNUSED)
766 /* Do nothing. */
769 /* Performing FN upon time-profile counters. */
771 static void
772 __gcov_time_profile_counter_op (gcov_type *counters ATTRIBUTE_UNUSED,
773 unsigned n_counters ATTRIBUTE_UNUSED,
774 counter_op_fn fn ATTRIBUTE_UNUSED,
775 void *data1 ATTRIBUTE_UNUSED,
776 void *data2 ATTRIBUTE_UNUSED)
778 /* Do nothing. */
781 /* Performing FN upon TOP N counters. */
783 static void
784 __gcov_topn_counter_op (gcov_type *counters, unsigned n_counters,
785 counter_op_fn fn, void *data1, void *data2)
787 unsigned i, n_measures;
789 gcc_assert (!(n_counters % 3));
790 n_measures = n_counters / 3;
791 for (i = 0; i < n_measures; i++, counters += 3)
793 counters[1] = fn (counters[1], data1, data2);
794 counters[2] = fn (counters[2], data1, data2);
798 /* Scaling the counter value V by multiplying *(float*) DATA1. */
800 static gcov_type
801 fp_scale (gcov_type v, void *data1, void *data2 ATTRIBUTE_UNUSED)
803 float f = *(float *) data1;
804 return (gcov_type) (v * f);
807 /* Scaling the counter value V by multiplying DATA2/DATA1. */
809 static gcov_type
810 int_scale (gcov_type v, void *data1, void *data2)
812 int n = *(int *) data1;
813 int d = *(int *) data2;
814 return (gcov_type) ( RDIV (v,d) * n);
817 /* Type of function used to process counters. */
818 typedef void (*gcov_counter_fn) (gcov_type *, gcov_unsigned_t,
819 counter_op_fn, void *, void *);
821 /* Function array to process profile counters. */
822 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) \
823 __gcov ## FN_TYPE ## _counter_op,
824 static gcov_counter_fn ctr_functions[GCOV_COUNTERS] = {
825 #include "gcov-counter.def"
827 #undef DEF_GCOV_COUNTER
829 /* Driver for scaling profile counters. */
832 gcov_profile_scale (struct gcov_info *profile, float scale_factor, int n, int d)
834 struct gcov_info *gi_ptr;
835 unsigned f_ix;
837 if (verbose)
838 fnotice (stdout, "scale_factor is %f or %d/%d\n", scale_factor, n, d);
840 /* Scaling the counters. */
841 for (gi_ptr = profile; gi_ptr; gi_ptr = gi_ptr->next)
842 for (f_ix = 0; f_ix < gi_ptr->n_functions; f_ix++)
844 unsigned t_ix;
845 const struct gcov_fn_info *gfi_ptr = gi_ptr->functions[f_ix];
846 const struct gcov_ctr_info *ci_ptr;
848 if (!gfi_ptr || gfi_ptr->key != gi_ptr)
849 continue;
851 ci_ptr = gfi_ptr->ctrs;
852 for (t_ix = 0; t_ix != GCOV_COUNTERS; t_ix++)
854 gcov_merge_fn merge = gi_ptr->merge[t_ix];
856 if (!merge)
857 continue;
858 if (d == 0)
859 (*ctr_functions[t_ix]) (ci_ptr->values, ci_ptr->num,
860 fp_scale, &scale_factor, NULL);
861 else
862 (*ctr_functions[t_ix]) (ci_ptr->values, ci_ptr->num,
863 int_scale, &n, &d);
864 ci_ptr++;
868 return 0;
871 /* Driver to normalize profile counters. */
874 gcov_profile_normalize (struct gcov_info *profile, gcov_type max_val)
876 struct gcov_info *gi_ptr;
877 gcov_type curr_max_val = 0;
878 unsigned f_ix;
879 unsigned int i;
880 float scale_factor;
882 /* Find the largest count value. */
883 for (gi_ptr = profile; gi_ptr; gi_ptr = gi_ptr->next)
884 for (f_ix = 0; f_ix < gi_ptr->n_functions; f_ix++)
886 unsigned t_ix;
887 const struct gcov_fn_info *gfi_ptr = gi_ptr->functions[f_ix];
888 const struct gcov_ctr_info *ci_ptr;
890 if (!gfi_ptr || gfi_ptr->key != gi_ptr)
891 continue;
893 ci_ptr = gfi_ptr->ctrs;
894 for (t_ix = 0; t_ix < 1; t_ix++)
896 for (i = 0; i < ci_ptr->num; i++)
897 if (ci_ptr->values[i] > curr_max_val)
898 curr_max_val = ci_ptr->values[i];
899 ci_ptr++;
903 scale_factor = (float)max_val / curr_max_val;
904 if (verbose)
905 fnotice (stdout, "max_val is %" PRId64 "\n", curr_max_val);
907 return gcov_profile_scale (profile, scale_factor, 0, 0);
910 /* The following variables are defined in gcc/gcov-tool.c. */
911 extern int overlap_func_level;
912 extern int overlap_obj_level;
913 extern int overlap_hot_only;
914 extern int overlap_use_fullname;
915 extern double overlap_hot_threshold;
917 /* Compute the overlap score of two values. The score is defined as:
918 min (V1/SUM_1, V2/SUM_2) */
920 static double
921 calculate_2_entries (const unsigned long v1, const unsigned long v2,
922 const double sum_1, const double sum_2)
924 double val1 = (sum_1 == 0.0 ? 0.0 : v1/sum_1);
925 double val2 = (sum_2 == 0.0 ? 0.0 : v2/sum_2);
927 if (val2 < val1)
928 val1 = val2;
930 return val1;
933 /* Compute the overlap score between GCOV_INFO1 and GCOV_INFO2.
934 This function also updates cumulative score CUM_1_RESULT and
935 CUM_2_RESULT. */
937 static double
938 compute_one_gcov (const struct gcov_info *gcov_info1,
939 const struct gcov_info *gcov_info2,
940 const double sum_1, const double sum_2,
941 double *cum_1_result, double *cum_2_result)
943 unsigned f_ix;
944 double ret = 0;
945 double cum_1 = 0, cum_2 = 0;
946 const struct gcov_info *gcov_info = 0;
947 double *cum_p;
948 double sum;
950 gcc_assert (gcov_info1 || gcov_info2);
951 if (!gcov_info1)
953 gcov_info = gcov_info2;
954 cum_p = cum_2_result;
955 sum = sum_2;
956 *cum_1_result = 0;
957 } else
958 if (!gcov_info2)
960 gcov_info = gcov_info1;
961 cum_p = cum_1_result;
962 sum = sum_1;
963 *cum_2_result = 0;
966 if (gcov_info)
968 for (f_ix = 0; f_ix < gcov_info->n_functions; f_ix++)
970 const struct gcov_fn_info *gfi_ptr = gcov_info->functions[f_ix];
971 if (!gfi_ptr || gfi_ptr->key != gcov_info)
972 continue;
973 const struct gcov_ctr_info *ci_ptr = gfi_ptr->ctrs;
974 unsigned c_num;
975 for (c_num = 0; c_num < ci_ptr->num; c_num++)
976 cum_1 += ci_ptr->values[c_num] / sum;
978 *cum_p = cum_1;
979 return 0.0;
982 for (f_ix = 0; f_ix < gcov_info1->n_functions; f_ix++)
984 double func_cum_1 = 0.0;
985 double func_cum_2 = 0.0;
986 double func_val = 0.0;
987 int nonzero = 0;
988 int hot = 0;
989 const struct gcov_fn_info *gfi_ptr1 = gcov_info1->functions[f_ix];
990 const struct gcov_fn_info *gfi_ptr2 = gcov_info2->functions[f_ix];
992 if (!gfi_ptr1 || gfi_ptr1->key != gcov_info1)
993 continue;
994 if (!gfi_ptr2 || gfi_ptr2->key != gcov_info2)
995 continue;
997 const struct gcov_ctr_info *ci_ptr1 = gfi_ptr1->ctrs;
998 const struct gcov_ctr_info *ci_ptr2 = gfi_ptr2->ctrs;
999 unsigned c_num;
1000 for (c_num = 0; c_num < ci_ptr1->num; c_num++)
1002 if (ci_ptr1->values[c_num] | ci_ptr2->values[c_num])
1004 func_val += calculate_2_entries (ci_ptr1->values[c_num],
1005 ci_ptr2->values[c_num],
1006 sum_1, sum_2);
1008 func_cum_1 += ci_ptr1->values[c_num] / sum_1;
1009 func_cum_2 += ci_ptr2->values[c_num] / sum_2;
1010 nonzero = 1;
1011 if (ci_ptr1->values[c_num] / sum_1 >= overlap_hot_threshold
1012 || ci_ptr2->values[c_num] / sum_2 >= overlap_hot_threshold)
1013 hot = 1;
1017 ret += func_val;
1018 cum_1 += func_cum_1;
1019 cum_2 += func_cum_2;
1020 if (overlap_func_level && nonzero && (!overlap_hot_only || hot))
1022 printf(" \tfunc_id=%10d \toverlap =%6.5f%% (%5.5f%% %5.5f%%)\n",
1023 gfi_ptr1->ident, func_val*100, func_cum_1*100, func_cum_2*100);
1026 *cum_1_result = cum_1;
1027 *cum_2_result = cum_2;
1028 return ret;
1031 /* Test if all counter values in this GCOV_INFO are cold.
1032 "Cold" is defined as the counter value being less than
1033 or equal to THRESHOLD. */
1035 static bool
1036 gcov_info_count_all_cold (const struct gcov_info *gcov_info,
1037 gcov_type threshold)
1039 unsigned f_ix;
1041 for (f_ix = 0; f_ix < gcov_info->n_functions; f_ix++)
1043 const struct gcov_fn_info *gfi_ptr = gcov_info->functions[f_ix];
1045 if (!gfi_ptr || gfi_ptr->key != gcov_info)
1046 continue;
1047 const struct gcov_ctr_info *ci_ptr = gfi_ptr->ctrs;
1048 for (unsigned c_num = 0; c_num < ci_ptr->num; c_num++)
1049 if (ci_ptr->values[c_num] > threshold)
1050 return false;
1053 return true;
1056 /* Test if all counter values in this GCOV_INFO are 0. */
1058 static bool
1059 gcov_info_count_all_zero (const struct gcov_info *gcov_info)
1061 return gcov_info_count_all_cold (gcov_info, 0);
1064 /* A pair of matched GCOV_INFO.
1065 The flag is a bitvector:
1066 b0: obj1's all counts are 0;
1067 b1: obj1's all counts are cold (but no 0);
1068 b2: obj1 is hot;
1069 b3: no obj1 to match obj2;
1070 b4: obj2's all counts are 0;
1071 b5: obj2's all counts are cold (but no 0);
1072 b6: obj2 is hot;
1073 b7: no obj2 to match obj1;
1075 struct overlap_t {
1076 const struct gcov_info *obj1;
1077 const struct gcov_info *obj2;
1078 char flag;
1081 #define FLAG_BOTH_ZERO(flag) ((flag & 0x1) && (flag & 0x10))
1082 #define FLAG_BOTH_COLD(flag) ((flag & 0x2) && (flag & 0x20))
1083 #define FLAG_ONE_HOT(flag) ((flag & 0x4) || (flag & 0x40))
1085 /* Cumlative overlap dscore for profile1 and profile2. */
1086 static double overlap_sum_1, overlap_sum_2;
1088 /* The number of gcda files in the profiles. */
1089 static unsigned gcda_files[2];
1091 /* The number of unique gcda files in the profiles
1092 (not existing in the other profile). */
1093 static unsigned unique_gcda_files[2];
1095 /* The number of gcda files that all counter values are 0. */
1096 static unsigned zero_gcda_files[2];
1098 /* The number of gcda files that all counter values are cold (but not 0). */
1099 static unsigned cold_gcda_files[2];
1101 /* The number of gcda files that includes hot counter values. */
1102 static unsigned hot_gcda_files[2];
1104 /* The number of gcda files with hot count value in either profiles. */
1105 static unsigned both_hot_cnt;
1107 /* The number of gcda files with all counts cold (but not 0) in
1108 both profiles. */
1109 static unsigned both_cold_cnt;
1111 /* The number of gcda files with all counts 0 in both profiles. */
1112 static unsigned both_zero_cnt;
1114 /* Extract the basename of the filename NAME. */
1116 static char *
1117 extract_file_basename (const char *name)
1119 char *str;
1120 int len = 0;
1121 char *path = xstrdup (name);
1122 char sep_str[2];
1124 sep_str[0] = DIR_SEPARATOR;
1125 sep_str[1] = 0;
1126 str = strstr(path, sep_str);
1128 len = strlen(str) + 1;
1129 path = &path[strlen(path) - len + 2];
1130 str = strstr(path, sep_str);
1131 } while(str);
1133 return path;
1136 /* Utility function to get the filename. */
1138 static const char *
1139 get_file_basename (const char *name)
1141 if (overlap_use_fullname)
1142 return name;
1143 return extract_file_basename (name);
1146 /* A utility function to set the flag for the gcda files. */
1148 static void
1149 set_flag (struct overlap_t *e)
1151 char flag = 0;
1153 if (!e->obj1)
1155 unique_gcda_files[1]++;
1156 flag = 0x8;
1158 else
1160 gcda_files[0]++;
1161 if (gcov_info_count_all_zero (e->obj1))
1163 zero_gcda_files[0]++;
1164 flag = 0x1;
1166 else
1167 if (gcov_info_count_all_cold (e->obj1, overlap_sum_1
1168 * overlap_hot_threshold))
1170 cold_gcda_files[0]++;
1171 flag = 0x2;
1173 else
1175 hot_gcda_files[0]++;
1176 flag = 0x4;
1180 if (!e->obj2)
1182 unique_gcda_files[0]++;
1183 flag |= (0x8 << 4);
1185 else
1187 gcda_files[1]++;
1188 if (gcov_info_count_all_zero (e->obj2))
1190 zero_gcda_files[1]++;
1191 flag |= (0x1 << 4);
1193 else
1194 if (gcov_info_count_all_cold (e->obj2, overlap_sum_2
1195 * overlap_hot_threshold))
1197 cold_gcda_files[1]++;
1198 flag |= (0x2 << 4);
1200 else
1202 hot_gcda_files[1]++;
1203 flag |= (0x4 << 4);
1207 gcc_assert (flag);
1208 e->flag = flag;
1211 /* Test if INFO1 and INFO2 are from the matched source file.
1212 Return 1 if they match; return 0 otherwise. */
1214 static int
1215 matched_gcov_info (const struct gcov_info *info1, const struct gcov_info *info2)
1217 /* For FDO, we have to match the name. This can be expensive.
1218 Maybe we should use hash here. */
1219 if (strcmp (info1->filename, info2->filename))
1220 return 0;
1222 if (info1->n_functions != info2->n_functions)
1224 fnotice (stderr, "mismatched profiles in %s (%d functions"
1225 " vs %d functions)\n",
1226 info1->filename,
1227 info1->n_functions,
1228 info2->n_functions);
1229 return 0;
1231 return 1;
1234 /* Compute the overlap score of two profiles with the head of GCOV_LIST1 and
1235 GCOV_LIST1. Return a number ranging from [0.0, 1.0], with 0.0 meaning no
1236 match and 1.0 meaning a perfect match. */
1238 static double
1239 calculate_overlap (struct gcov_info *gcov_list1,
1240 struct gcov_info *gcov_list2)
1242 unsigned list1_cnt = 0, list2_cnt= 0, all_cnt;
1243 unsigned int i, j;
1244 const struct gcov_info *gi_ptr;
1245 struct overlap_t *all_infos;
1247 for (gi_ptr = gcov_list1; gi_ptr; gi_ptr = gi_ptr->next)
1248 list1_cnt++;
1249 for (gi_ptr = gcov_list2; gi_ptr; gi_ptr = gi_ptr->next)
1250 list2_cnt++;
1251 all_cnt = list1_cnt + list2_cnt;
1252 all_infos = (struct overlap_t *) xmalloc (sizeof (struct overlap_t)
1253 * all_cnt * 2);
1254 gcc_assert (all_infos);
1256 i = 0;
1257 for (gi_ptr = gcov_list1; gi_ptr; gi_ptr = gi_ptr->next, i++)
1259 all_infos[i].obj1 = gi_ptr;
1260 all_infos[i].obj2 = 0;
1263 for (gi_ptr = gcov_list2; gi_ptr; gi_ptr = gi_ptr->next, i++)
1265 all_infos[i].obj1 = 0;
1266 all_infos[i].obj2 = gi_ptr;
1269 for (i = list1_cnt; i < all_cnt; i++)
1271 if (all_infos[i].obj2 == 0)
1272 continue;
1273 for (j = 0; j < list1_cnt; j++)
1275 if (all_infos[j].obj2 != 0)
1276 continue;
1277 if (matched_gcov_info (all_infos[i].obj2, all_infos[j].obj1))
1279 all_infos[j].obj2 = all_infos[i].obj2;
1280 all_infos[i].obj2 = 0;
1281 break;
1286 for (i = 0; i < all_cnt; i++)
1287 if (all_infos[i].obj1 || all_infos[i].obj2)
1289 set_flag (all_infos + i);
1290 if (FLAG_ONE_HOT (all_infos[i].flag))
1291 both_hot_cnt++;
1292 if (FLAG_BOTH_COLD(all_infos[i].flag))
1293 both_cold_cnt++;
1294 if (FLAG_BOTH_ZERO(all_infos[i].flag))
1295 both_zero_cnt++;
1298 double prg_val = 0;
1299 double sum_val = 0;
1300 double sum_cum_1 = 0;
1301 double sum_cum_2 = 0;
1303 for (i = 0; i < all_cnt; i++)
1305 double val;
1306 double cum_1, cum_2;
1307 const char *filename;
1309 if (all_infos[i].obj1 == 0 && all_infos[i].obj2 == 0)
1310 continue;
1311 if (FLAG_BOTH_ZERO (all_infos[i].flag))
1312 continue;
1314 if (all_infos[i].obj1)
1315 filename = get_file_basename (all_infos[i].obj1->filename);
1316 else
1317 filename = get_file_basename (all_infos[i].obj2->filename);
1319 if (overlap_func_level)
1320 printf("\n processing %36s:\n", filename);
1322 val = compute_one_gcov (all_infos[i].obj1, all_infos[i].obj2,
1323 overlap_sum_1, overlap_sum_2, &cum_1, &cum_2);
1325 if (overlap_obj_level && (!overlap_hot_only || FLAG_ONE_HOT (all_infos[i].flag)))
1327 printf(" obj=%36s overlap = %6.2f%% (%5.2f%% %5.2f%%)\n",
1328 filename, val*100, cum_1*100, cum_2*100);
1329 sum_val += val;
1330 sum_cum_1 += cum_1;
1331 sum_cum_2 += cum_2;
1334 prg_val += val;
1338 free (all_infos);
1340 if (overlap_obj_level)
1341 printf(" SUM:%36s overlap = %6.2f%% (%5.2f%% %5.2f%%)\n",
1342 "", sum_val*100, sum_cum_1*100, sum_cum_2*100);
1344 printf (" Statistics:\n"
1345 " profile1_# profile2_# overlap_#\n");
1346 printf (" gcda files: %12u\t%12u\t%12u\n", gcda_files[0], gcda_files[1],
1347 gcda_files[0]-unique_gcda_files[0]);
1348 printf (" unique files: %12u\t%12u\n", unique_gcda_files[0],
1349 unique_gcda_files[1]);
1350 printf (" hot files: %12u\t%12u\t%12u\n", hot_gcda_files[0],
1351 hot_gcda_files[1], both_hot_cnt);
1352 printf (" cold files: %12u\t%12u\t%12u\n", cold_gcda_files[0],
1353 cold_gcda_files[1], both_cold_cnt);
1354 printf (" zero files: %12u\t%12u\t%12u\n", zero_gcda_files[0],
1355 zero_gcda_files[1], both_zero_cnt);
1357 return prg_val;
1360 /* Compute the overlap score of two lists of gcov_info objects PROFILE1 and
1361 PROFILE2.
1362 Return 0 on success: without mismatch. Reutrn 1 on error. */
1365 gcov_profile_overlap (struct gcov_info *profile1, struct gcov_info *profile2)
1367 double result;
1369 result = calculate_overlap (profile1, profile2);
1371 if (result > 0)
1373 printf("\nProgram level overlap result is %3.2f%%\n\n", result*100);
1374 return 0;
1376 return 1;