1 /* Routines required for instrumenting a program. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010
5 Free Software Foundation, Inc.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
30 #include "coretypes.h"
33 #if defined(inhibit_libc)
34 #define IN_LIBGCOV (-1)
36 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
40 #define GCOV_LINKAGE /* nothing */
45 #if defined(inhibit_libc)
46 /* If libc and its header files are not available, provide dummy functions. */
49 void __gcov_init (struct gcov_info
*p
__attribute__ ((unused
))) {}
50 void __gcov_flush (void) {}
53 #ifdef L_gcov_merge_add
54 void __gcov_merge_add (gcov_type
*counters
__attribute__ ((unused
)),
55 unsigned n_counters
__attribute__ ((unused
))) {}
58 #ifdef L_gcov_merge_single
59 void __gcov_merge_single (gcov_type
*counters
__attribute__ ((unused
)),
60 unsigned n_counters
__attribute__ ((unused
))) {}
63 #ifdef L_gcov_merge_delta
64 void __gcov_merge_delta (gcov_type
*counters
__attribute__ ((unused
)),
65 unsigned n_counters
__attribute__ ((unused
))) {}
80 /* Chain of per-object gcov structures. */
81 static struct gcov_info
*gcov_list
;
83 /* A program checksum allows us to distinguish program data for an
84 object file included in multiple programs. */
85 static gcov_unsigned_t gcov_crc32
;
87 /* Size of the longest file name. */
88 static size_t gcov_max_filename
= 0;
90 /* Make sure path component of the given FILENAME exists, create
91 missing directories. FILENAME must be writable.
92 Returns zero on success, or -1 if an error occurred. */
95 create_file_directory (char *filename
)
97 #if !defined(TARGET_POSIX_IO) && !defined(_WIN32)
105 if (HAS_DRIVE_SPEC(s
))
107 if (IS_DIR_SEPARATOR(*s
))
109 for (; *s
!= '\0'; s
++)
110 if (IS_DIR_SEPARATOR(*s
))
115 /* Try to make directory if it doesn't already exist. */
116 if (access (filename
, F_OK
) == -1
117 #ifdef TARGET_POSIX_IO
118 && mkdir (filename
, 0755) == -1
120 && mkdir (filename
) == -1
122 /* The directory might have been made by another process. */
125 fprintf (stderr
, "profiling:%s:Cannot create directory\n",
137 /* Check if VERSION of the info block PTR matches libgcov one.
138 Return 1 on success, or zero in case of versions mismatch.
139 If FILENAME is not NULL, its value used for reporting purposes
140 instead of value from the info block. */
143 gcov_version (struct gcov_info
*ptr
, gcov_unsigned_t version
,
144 const char *filename
)
146 if (version
!= GCOV_VERSION
)
150 GCOV_UNSIGNED2STRING (v
, version
);
151 GCOV_UNSIGNED2STRING (e
, GCOV_VERSION
);
154 "profiling:%s:Version mismatch - expected %.4s got %.4s\n",
155 filename
? filename
: ptr
->filename
, e
, v
);
161 /* Dump the coverage counts. We merge with existing counts when
162 possible, to avoid growing the .da files ad infinitum. We use this
163 program's checksum to make sure we only accumulate whole program
164 statistics to the correct summary. An object file might be embedded
165 in two separate programs, and we must keep the two program
166 summaries separate. */
171 struct gcov_info
*gi_ptr
;
172 struct gcov_summary this_program
;
173 struct gcov_summary all
;
174 struct gcov_ctr_summary
*cs_ptr
;
175 const struct gcov_ctr_info
*ci_ptr
;
177 gcov_unsigned_t c_num
;
178 const char *gcov_prefix
;
179 int gcov_prefix_strip
= 0;
180 size_t prefix_length
;
181 char *gi_filename
, *gi_filename_up
;
183 memset (&all
, 0, sizeof (all
));
184 /* Find the totals for this execution. */
185 memset (&this_program
, 0, sizeof (this_program
));
186 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
188 ci_ptr
= gi_ptr
->counts
;
189 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
191 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
194 cs_ptr
= &this_program
.ctrs
[t_ix
];
195 cs_ptr
->num
+= ci_ptr
->num
;
196 for (c_num
= 0; c_num
< ci_ptr
->num
; c_num
++)
198 cs_ptr
->sum_all
+= ci_ptr
->values
[c_num
];
199 if (cs_ptr
->run_max
< ci_ptr
->values
[c_num
])
200 cs_ptr
->run_max
= ci_ptr
->values
[c_num
];
207 /* Check if the level of dirs to strip off specified. */
208 char *tmp
= getenv("GCOV_PREFIX_STRIP");
211 gcov_prefix_strip
= atoi (tmp
);
212 /* Do not consider negative values. */
213 if (gcov_prefix_strip
< 0)
214 gcov_prefix_strip
= 0;
217 /* Get file name relocation prefix. Non-absolute values are ignored. */
218 gcov_prefix
= getenv("GCOV_PREFIX");
221 prefix_length
= strlen(gcov_prefix
);
223 /* Remove an unnecessary trailing '/' */
224 if (IS_DIR_SEPARATOR (gcov_prefix
[prefix_length
- 1]))
230 /* If no prefix was specified and a prefix stip, then we assume
232 if (gcov_prefix_strip
!= 0 && prefix_length
== 0)
237 /* Allocate and initialize the filename scratch space plus one. */
238 gi_filename
= (char *) alloca (prefix_length
+ gcov_max_filename
+ 2);
240 memcpy (gi_filename
, gcov_prefix
, prefix_length
);
241 gi_filename_up
= gi_filename
+ prefix_length
;
243 /* Now merge each file. */
244 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
246 struct gcov_summary this_object
;
247 struct gcov_summary object
, program
;
248 gcov_type
*values
[GCOV_COUNTERS
];
249 const struct gcov_fn_info
*fi_ptr
;
251 unsigned c_ix
, f_ix
, n_counts
;
252 struct gcov_ctr_summary
*cs_obj
, *cs_tobj
, *cs_prg
, *cs_tprg
, *cs_all
;
254 gcov_unsigned_t tag
, length
;
255 gcov_position_t summary_pos
= 0;
256 gcov_position_t eof_pos
= 0;
257 const char *fname
, *s
;
259 fname
= gi_ptr
->filename
;
261 memset (&this_object
, 0, sizeof (this_object
));
262 memset (&object
, 0, sizeof (object
));
264 /* Avoid to add multiple drive letters into combined path. */
265 if (prefix_length
!= 0 && HAS_DRIVE_SPEC(fname
))
268 /* Build relocated filename, stripping off leading
269 directories from the initial filename if requested. */
270 if (gcov_prefix_strip
> 0)
274 if (IS_DIR_SEPARATOR(*s
))
277 /* Skip selected directory levels. */
278 for (; (*s
!= '\0') && (level
< gcov_prefix_strip
); s
++)
279 if (IS_DIR_SEPARATOR(*s
))
285 /* Update complete filename with stripped original. */
286 if (!IS_DIR_SEPARATOR (*fname
) && !HAS_DRIVE_SPEC(fname
))
288 strcpy (gi_filename_up
, "/");
289 strcpy (gi_filename_up
+ 1, fname
);
292 strcpy (gi_filename_up
, fname
);
294 /* Totals for this object file. */
295 ci_ptr
= gi_ptr
->counts
;
296 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
298 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
301 cs_ptr
= &this_object
.ctrs
[t_ix
];
302 cs_ptr
->num
+= ci_ptr
->num
;
303 for (c_num
= 0; c_num
< ci_ptr
->num
; c_num
++)
305 cs_ptr
->sum_all
+= ci_ptr
->values
[c_num
];
306 if (cs_ptr
->run_max
< ci_ptr
->values
[c_num
])
307 cs_ptr
->run_max
= ci_ptr
->values
[c_num
];
314 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
315 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
317 values
[c_ix
] = gi_ptr
->counts
[c_ix
].values
;
321 /* Calculate the function_info stride. This depends on the
322 number of counter types being measured. */
323 fi_stride
= sizeof (struct gcov_fn_info
) + c_ix
* sizeof (unsigned);
324 if (__alignof__ (struct gcov_fn_info
) > sizeof (unsigned))
326 fi_stride
+= __alignof__ (struct gcov_fn_info
) - 1;
327 fi_stride
&= ~(__alignof__ (struct gcov_fn_info
) - 1);
330 if (!gcov_open (gi_filename
))
332 /* Open failed likely due to missed directory.
333 Create directory and retry to open file. */
334 if (create_file_directory (gi_filename
))
336 fprintf (stderr
, "profiling:%s:Skip\n", gi_filename
);
339 if (!gcov_open (gi_filename
))
341 fprintf (stderr
, "profiling:%s:Cannot open\n", gi_filename
);
346 tag
= gcov_read_unsigned ();
349 /* Merge data from file. */
350 if (tag
!= GCOV_DATA_MAGIC
)
352 fprintf (stderr
, "profiling:%s:Not a gcov data file\n",
356 length
= gcov_read_unsigned ();
357 if (!gcov_version (gi_ptr
, length
, gi_filename
))
360 length
= gcov_read_unsigned ();
361 if (length
!= gi_ptr
->stamp
)
362 /* Read from a different compilation. Overwrite the file. */
365 /* Merge execution counts for each function. */
366 for (f_ix
= 0; f_ix
< gi_ptr
->n_functions
; f_ix
++)
368 fi_ptr
= (const struct gcov_fn_info
*)
369 ((const char *) gi_ptr
->functions
+ f_ix
* fi_stride
);
370 tag
= gcov_read_unsigned ();
371 length
= gcov_read_unsigned ();
373 /* Check function. */
374 if (tag
!= GCOV_TAG_FUNCTION
375 || length
!= GCOV_TAG_FUNCTION_LENGTH
376 || gcov_read_unsigned () != fi_ptr
->ident
377 || gcov_read_unsigned () != fi_ptr
->lineno_checksum
378 || gcov_read_unsigned () != fi_ptr
->cfg_checksum
)
381 fprintf (stderr
, "profiling:%s:Merge mismatch for %s\n",
383 f_ix
+ 1 ? "function" : "summaries");
388 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
392 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
395 n_counts
= fi_ptr
->n_ctrs
[c_ix
];
396 merge
= gi_ptr
->counts
[c_ix
].merge
;
398 tag
= gcov_read_unsigned ();
399 length
= gcov_read_unsigned ();
400 if (tag
!= GCOV_TAG_FOR_COUNTER (t_ix
)
401 || length
!= GCOV_TAG_COUNTER_LENGTH (n_counts
))
403 (*merge
) (values
[c_ix
], n_counts
);
404 values
[c_ix
] += n_counts
;
407 if ((error
= gcov_is_error ()))
412 /* Check program & object summary */
417 eof_pos
= gcov_position ();
418 tag
= gcov_read_unsigned ();
422 length
= gcov_read_unsigned ();
423 is_program
= tag
== GCOV_TAG_PROGRAM_SUMMARY
;
424 if (length
!= GCOV_TAG_SUMMARY_LENGTH
425 || (!is_program
&& tag
!= GCOV_TAG_OBJECT_SUMMARY
))
427 gcov_read_summary (is_program
? &program
: &object
);
428 if ((error
= gcov_is_error ()))
430 if (is_program
&& program
.checksum
== gcov_crc32
)
432 summary_pos
= eof_pos
;
440 fprintf (stderr
, error
< 0 ? "profiling:%s:Overflow merging\n"
441 : "profiling:%s:Error merging\n", gi_filename
);
450 memset (&program
, 0, sizeof (program
));
452 /* Merge the summaries. */
454 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
456 cs_obj
= &object
.ctrs
[t_ix
];
457 cs_tobj
= &this_object
.ctrs
[t_ix
];
458 cs_prg
= &program
.ctrs
[t_ix
];
459 cs_tprg
= &this_program
.ctrs
[t_ix
];
460 cs_all
= &all
.ctrs
[t_ix
];
462 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
465 cs_obj
->num
= cs_tobj
->num
;
466 else if (cs_obj
->num
!= cs_tobj
->num
)
468 cs_obj
->sum_all
+= cs_tobj
->sum_all
;
469 if (cs_obj
->run_max
< cs_tobj
->run_max
)
470 cs_obj
->run_max
= cs_tobj
->run_max
;
471 cs_obj
->sum_max
+= cs_tobj
->run_max
;
474 cs_prg
->num
= cs_tprg
->num
;
475 else if (cs_prg
->num
!= cs_tprg
->num
)
477 cs_prg
->sum_all
+= cs_tprg
->sum_all
;
478 if (cs_prg
->run_max
< cs_tprg
->run_max
)
479 cs_prg
->run_max
= cs_tprg
->run_max
;
480 cs_prg
->sum_max
+= cs_tprg
->run_max
;
482 else if (cs_obj
->num
|| cs_prg
->num
)
485 if (!cs_all
->runs
&& cs_prg
->runs
)
486 memcpy (cs_all
, cs_prg
, sizeof (*cs_all
));
487 else if (!all
.checksum
488 && (!GCOV_LOCKED
|| cs_all
->runs
== cs_prg
->runs
)
489 && memcmp (cs_all
, cs_prg
, sizeof (*cs_all
)))
491 fprintf (stderr
, "profiling:%s:Invocation mismatch - some data files may have been removed%s",
492 gi_filename
, GCOV_LOCKED
493 ? "" : " or concurrent update without locking support");
499 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
500 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
502 values
[c_ix
] = gi_ptr
->counts
[c_ix
].values
;
506 program
.checksum
= gcov_crc32
;
508 /* Write out the data. */
509 gcov_write_tag_length (GCOV_DATA_MAGIC
, GCOV_VERSION
);
510 gcov_write_unsigned (gi_ptr
->stamp
);
512 /* Write execution counts for each function. */
513 for (f_ix
= 0; f_ix
< gi_ptr
->n_functions
; f_ix
++)
515 fi_ptr
= (const struct gcov_fn_info
*)
516 ((const char *) gi_ptr
->functions
+ f_ix
* fi_stride
);
518 /* Announce function. */
519 gcov_write_tag_length (GCOV_TAG_FUNCTION
, GCOV_TAG_FUNCTION_LENGTH
);
520 gcov_write_unsigned (fi_ptr
->ident
);
521 gcov_write_unsigned (fi_ptr
->lineno_checksum
);
522 gcov_write_unsigned (fi_ptr
->cfg_checksum
);
525 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
529 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
532 n_counts
= fi_ptr
->n_ctrs
[c_ix
];
534 gcov_write_tag_length (GCOV_TAG_FOR_COUNTER (t_ix
),
535 GCOV_TAG_COUNTER_LENGTH (n_counts
));
536 c_ptr
= values
[c_ix
];
538 gcov_write_counter (*c_ptr
++);
540 values
[c_ix
] = c_ptr
;
545 /* Object file summary. */
546 gcov_write_summary (GCOV_TAG_OBJECT_SUMMARY
, &object
);
548 /* Generate whole program statistics. */
551 gcov_write_summary (GCOV_TAG_PROGRAM_SUMMARY
, &program
);
553 gcov_write_unsigned (0);
554 if ((error
= gcov_close ()))
555 fprintf (stderr
, error
< 0 ?
556 "profiling:%s:Overflow writing\n" :
557 "profiling:%s:Error writing\n",
562 /* Add a new object file onto the bb chain. Invoked automatically
563 when running an object file's global ctors. */
566 __gcov_init (struct gcov_info
*info
)
570 if (gcov_version (info
, info
->version
, 0))
572 const char *ptr
= info
->filename
;
573 gcov_unsigned_t crc32
= gcov_crc32
;
574 size_t filename_length
= strlen(info
->filename
);
576 /* Refresh the longest file name information */
577 if (filename_length
> gcov_max_filename
)
578 gcov_max_filename
= filename_length
;
583 gcov_unsigned_t value
= *ptr
<< 24;
585 for (ix
= 8; ix
--; value
<<= 1)
587 gcov_unsigned_t feedback
;
589 feedback
= (value
^ crc32
) & 0x80000000 ? 0x04c11db7 : 0;
601 info
->next
= gcov_list
;
607 /* Called before fork or exec - write out profile information gathered so
608 far and reset it to zero. This avoids duplication or loss of the
609 profile information gathered so far. */
614 const struct gcov_info
*gi_ptr
;
617 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
620 const struct gcov_ctr_info
*ci_ptr
;
622 for (t_ix
= 0, ci_ptr
= gi_ptr
->counts
; t_ix
!= GCOV_COUNTERS
; t_ix
++)
623 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
625 memset (ci_ptr
->values
, 0, sizeof (gcov_type
) * ci_ptr
->num
);
633 #ifdef L_gcov_merge_add
634 /* The profile merging function that just adds the counters. It is given
635 an array COUNTERS of N_COUNTERS old counters and it reads the same number
636 of counters from the gcov file. */
638 __gcov_merge_add (gcov_type
*counters
, unsigned n_counters
)
640 for (; n_counters
; counters
++, n_counters
--)
641 *counters
+= gcov_read_counter ();
643 #endif /* L_gcov_merge_add */
645 #ifdef L_gcov_merge_ior
646 /* The profile merging function that just adds the counters. It is given
647 an array COUNTERS of N_COUNTERS old counters and it reads the same number
648 of counters from the gcov file. */
650 __gcov_merge_ior (gcov_type
*counters
, unsigned n_counters
)
652 for (; n_counters
; counters
++, n_counters
--)
653 *counters
|= gcov_read_counter ();
657 #ifdef L_gcov_merge_single
658 /* The profile merging function for choosing the most common value.
659 It is given an array COUNTERS of N_COUNTERS old counters and it
660 reads the same number of counters from the gcov file. The counters
661 are split into 3-tuples where the members of the tuple have
664 -- the stored candidate on the most common value of the measured entity
666 -- total number of evaluations of the value */
668 __gcov_merge_single (gcov_type
*counters
, unsigned n_counters
)
670 unsigned i
, n_measures
;
671 gcov_type value
, counter
, all
;
673 gcc_assert (!(n_counters
% 3));
674 n_measures
= n_counters
/ 3;
675 for (i
= 0; i
< n_measures
; i
++, counters
+= 3)
677 value
= gcov_read_counter ();
678 counter
= gcov_read_counter ();
679 all
= gcov_read_counter ();
681 if (counters
[0] == value
)
682 counters
[1] += counter
;
683 else if (counter
> counters
[1])
686 counters
[1] = counter
- counters
[1];
689 counters
[1] -= counter
;
693 #endif /* L_gcov_merge_single */
695 #ifdef L_gcov_merge_delta
696 /* The profile merging function for choosing the most common
697 difference between two consecutive evaluations of the value. It is
698 given an array COUNTERS of N_COUNTERS old counters and it reads the
699 same number of counters from the gcov file. The counters are split
700 into 4-tuples where the members of the tuple have meanings:
702 -- the last value of the measured entity
703 -- the stored candidate on the most common difference
705 -- total number of evaluations of the value */
707 __gcov_merge_delta (gcov_type
*counters
, unsigned n_counters
)
709 unsigned i
, n_measures
;
710 gcov_type value
, counter
, all
;
712 gcc_assert (!(n_counters
% 4));
713 n_measures
= n_counters
/ 4;
714 for (i
= 0; i
< n_measures
; i
++, counters
+= 4)
716 /* last = */ gcov_read_counter ();
717 value
= gcov_read_counter ();
718 counter
= gcov_read_counter ();
719 all
= gcov_read_counter ();
721 if (counters
[1] == value
)
722 counters
[2] += counter
;
723 else if (counter
> counters
[2])
726 counters
[2] = counter
- counters
[2];
729 counters
[2] -= counter
;
733 #endif /* L_gcov_merge_delta */
735 #ifdef L_gcov_interval_profiler
736 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
737 corresponding counter in COUNTERS. If the VALUE is above or below
738 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
742 __gcov_interval_profiler (gcov_type
*counters
, gcov_type value
,
743 int start
, unsigned steps
)
745 gcov_type delta
= value
- start
;
747 counters
[steps
+ 1]++;
748 else if (delta
>= steps
)
755 #ifdef L_gcov_pow2_profiler
756 /* If VALUE is a power of two, COUNTERS[1] is incremented. Otherwise
757 COUNTERS[0] is incremented. */
760 __gcov_pow2_profiler (gcov_type
*counters
, gcov_type value
)
762 if (value
& (value
- 1))
769 /* Tries to determine the most common value among its inputs. Checks if the
770 value stored in COUNTERS[0] matches VALUE. If this is the case, COUNTERS[1]
771 is incremented. If this is not the case and COUNTERS[1] is not zero,
772 COUNTERS[1] is decremented. Otherwise COUNTERS[1] is set to one and
773 VALUE is stored to COUNTERS[0]. This algorithm guarantees that if this
774 function is called more than 50% of the time with one value, this value
775 will be in COUNTERS[0] in the end.
777 In any case, COUNTERS[2] is incremented. */
780 __gcov_one_value_profiler_body (gcov_type
*counters
, gcov_type value
)
782 if (value
== counters
[0])
784 else if (counters
[1] == 0)
794 #ifdef L_gcov_one_value_profiler
796 __gcov_one_value_profiler (gcov_type
*counters
, gcov_type value
)
798 __gcov_one_value_profiler_body (counters
, value
);
802 #ifdef L_gcov_indirect_call_profiler
804 /* By default, the C++ compiler will use function addresses in the
805 vtable entries. Setting TARGET_VTABLE_USES_DESCRIPTORS to nonzero
806 tells the compiler to use function descriptors instead. The value
807 of this macro says how many words wide the descriptor is (normally 2),
808 but it may be dependent on target flags. Since we do not have access
809 to the target flags here we just check to see if it is set and use
810 that to set VTABLE_USES_DESCRIPTORS to 0 or 1.
812 It is assumed that the address of a function descriptor may be treated
813 as a pointer to a function. */
815 #ifdef TARGET_VTABLE_USES_DESCRIPTORS
816 #define VTABLE_USES_DESCRIPTORS 1
818 #define VTABLE_USES_DESCRIPTORS 0
821 /* Tries to determine the most common value among its inputs. */
823 __gcov_indirect_call_profiler (gcov_type
* counter
, gcov_type value
,
824 void* cur_func
, void* callee_func
)
826 /* If the C++ virtual tables contain function descriptors then one
827 function may have multiple descriptors and we need to dereference
828 the descriptors to see if they point to the same function. */
829 if (cur_func
== callee_func
830 || (VTABLE_USES_DESCRIPTORS
&& callee_func
831 && *(void **) cur_func
== *(void **) callee_func
))
832 __gcov_one_value_profiler_body (counter
, value
);
837 #ifdef L_gcov_average_profiler
838 /* Increase corresponding COUNTER by VALUE. FIXME: Perhaps we want
842 __gcov_average_profiler (gcov_type
*counters
, gcov_type value
)
844 counters
[0] += value
;
849 #ifdef L_gcov_ior_profiler
850 /* Increase corresponding COUNTER by VALUE. FIXME: Perhaps we want
854 __gcov_ior_profiler (gcov_type
*counters
, gcov_type value
)
861 /* A wrapper for the fork function. Flushes the accumulated profiling data, so
862 that they are not counted twice. */
873 /* A wrapper for the execl function. Flushes the accumulated profiling data, so
874 that they are not lost. */
877 __gcov_execl (const char *path
, char *arg
, ...)
889 while (va_arg (ap
, char *))
893 args
= (char **) alloca (length
* sizeof (void *));
895 for (i
= 1; i
< length
; i
++)
896 args
[i
] = va_arg (aq
, char *);
899 return execv (path
, args
);
904 /* A wrapper for the execlp function. Flushes the accumulated profiling data, so
905 that they are not lost. */
908 __gcov_execlp (const char *path
, char *arg
, ...)
920 while (va_arg (ap
, char *))
924 args
= (char **) alloca (length
* sizeof (void *));
926 for (i
= 1; i
< length
; i
++)
927 args
[i
] = va_arg (aq
, char *);
930 return execvp (path
, args
);
935 /* A wrapper for the execle function. Flushes the accumulated profiling data, so
936 that they are not lost. */
939 __gcov_execle (const char *path
, char *arg
, ...)
952 while (va_arg (ap
, char *))
956 args
= (char **) alloca (length
* sizeof (void *));
958 for (i
= 1; i
< length
; i
++)
959 args
[i
] = va_arg (aq
, char *);
960 envp
= va_arg (aq
, char **);
963 return execve (path
, args
, envp
);
968 /* A wrapper for the execv function. Flushes the accumulated profiling data, so
969 that they are not lost. */
972 __gcov_execv (const char *path
, char *const argv
[])
975 return execv (path
, argv
);
980 /* A wrapper for the execvp function. Flushes the accumulated profiling data, so
981 that they are not lost. */
984 __gcov_execvp (const char *path
, char *const argv
[])
987 return execvp (path
, argv
);
992 /* A wrapper for the execve function. Flushes the accumulated profiling data, so
993 that they are not lost. */
996 __gcov_execve (const char *path
, char *const argv
[], char *const envp
[])
999 return execve (path
, argv
, envp
);
1002 #endif /* inhibit_libc */