1 /* Routines required for instrumenting a program. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1989-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
28 #if defined(inhibit_libc)
29 /* If libc and its header files are not available, provide dummy functions. */
31 #ifdef L_gcov_merge_add
32 void __gcov_merge_add (gcov_type
*counters
__attribute__ ((unused
)),
33 unsigned n_counters
__attribute__ ((unused
))) {}
36 #ifdef L_gcov_merge_single
37 void __gcov_merge_single (gcov_type
*counters
__attribute__ ((unused
)),
38 unsigned n_counters
__attribute__ ((unused
))) {}
41 #ifdef L_gcov_merge_delta
42 void __gcov_merge_delta (gcov_type
*counters
__attribute__ ((unused
)),
43 unsigned n_counters
__attribute__ ((unused
))) {}
48 #ifdef L_gcov_merge_add
49 /* The profile merging function that just adds the counters. It is given
50 an array COUNTERS of N_COUNTERS old counters and it reads the same number
51 of counters from the gcov file. */
53 __gcov_merge_add (gcov_type
*counters
, unsigned n_counters
)
55 for (; n_counters
; counters
++, n_counters
--)
56 *counters
+= gcov_read_counter ();
58 #endif /* L_gcov_merge_add */
60 #ifdef L_gcov_merge_ior
61 /* The profile merging function that just adds the counters. It is given
62 an array COUNTERS of N_COUNTERS old counters and it reads the same number
63 of counters from the gcov file. */
65 __gcov_merge_ior (gcov_type
*counters
, unsigned n_counters
)
67 for (; n_counters
; counters
++, n_counters
--)
68 *counters
|= gcov_read_counter ();
72 #ifdef L_gcov_merge_time_profile
73 /* Time profiles are merged so that minimum from all valid (greater than zero)
74 is stored. There could be a fork that creates new counters. To have
75 the profile stable, we chosen to pick the smallest function visit time. */
77 __gcov_merge_time_profile (gcov_type
*counters
, unsigned n_counters
)
82 for (i
= 0; i
< n_counters
; i
++)
84 value
= gcov_read_counter ();
86 if (value
&& (!counters
[i
] || value
< counters
[i
]))
90 #endif /* L_gcov_merge_time_profile */
92 #ifdef L_gcov_merge_single
93 /* The profile merging function for choosing the most common value.
94 It is given an array COUNTERS of N_COUNTERS old counters and it
95 reads the same number of counters from the gcov file. The counters
96 are split into 3-tuples where the members of the tuple have
99 -- the stored candidate on the most common value of the measured entity
101 -- total number of evaluations of the value */
103 __gcov_merge_single (gcov_type
*counters
, unsigned n_counters
)
105 unsigned i
, n_measures
;
106 gcov_type value
, counter
, all
;
108 gcc_assert (!(n_counters
% 3));
109 n_measures
= n_counters
/ 3;
110 for (i
= 0; i
< n_measures
; i
++, counters
+= 3)
112 value
= gcov_read_counter ();
113 counter
= gcov_read_counter ();
114 all
= gcov_read_counter ();
116 if (counters
[0] == value
)
117 counters
[1] += counter
;
118 else if (counter
> counters
[1])
121 counters
[1] = counter
- counters
[1];
124 counters
[1] -= counter
;
128 #endif /* L_gcov_merge_single */
130 #ifdef L_gcov_merge_delta
131 /* The profile merging function for choosing the most common
132 difference between two consecutive evaluations of the value. It is
133 given an array COUNTERS of N_COUNTERS old counters and it reads the
134 same number of counters from the gcov file. The counters are split
135 into 4-tuples where the members of the tuple have meanings:
137 -- the last value of the measured entity
138 -- the stored candidate on the most common difference
140 -- total number of evaluations of the value */
142 __gcov_merge_delta (gcov_type
*counters
, unsigned n_counters
)
144 unsigned i
, n_measures
;
145 gcov_type value
, counter
, all
;
147 gcc_assert (!(n_counters
% 4));
148 n_measures
= n_counters
/ 4;
149 for (i
= 0; i
< n_measures
; i
++, counters
+= 4)
151 /* last = */ gcov_read_counter ();
152 value
= gcov_read_counter ();
153 counter
= gcov_read_counter ();
154 all
= gcov_read_counter ();
156 if (counters
[1] == value
)
157 counters
[2] += counter
;
158 else if (counter
> counters
[2])
161 counters
[2] = counter
- counters
[2];
164 counters
[2] -= counter
;
168 #endif /* L_gcov_merge_delta */
169 #endif /* inhibit_libc */