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
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 #ifdef TARGET_POSIX_IO
91 /* Make sure path component of the given FILENAME exists, create
92 missing directories. FILENAME must be writable.
93 Returns zero on success, or -1 if an error occurred. */
96 create_file_directory (char *filename
)
100 for (s
= filename
+ 1; *s
!= '\0'; s
++)
101 if (IS_DIR_SEPARATOR(*s
))
106 /* Try to make directory if it doesn't already exist. */
107 if (access (filename
, F_OK
) == -1
108 && mkdir (filename
, 0755) == -1
109 /* The directory might have been made by another process. */
112 fprintf (stderr
, "profiling:%s:Cannot create directory\n",
124 /* Check if VERSION of the info block PTR matches libgcov one.
125 Return 1 on success, or zero in case of versions mismatch.
126 If FILENAME is not NULL, its value used for reporting purposes
127 instead of value from the info block. */
130 gcov_version (struct gcov_info
*ptr
, gcov_unsigned_t version
,
131 const char *filename
)
133 if (version
!= GCOV_VERSION
)
137 GCOV_UNSIGNED2STRING (v
, version
);
138 GCOV_UNSIGNED2STRING (e
, GCOV_VERSION
);
141 "profiling:%s:Version mismatch - expected %.4s got %.4s\n",
142 filename
? filename
: ptr
->filename
, e
, v
);
148 /* Dump the coverage counts. We merge with existing counts when
149 possible, to avoid growing the .da files ad infinitum. We use this
150 program's checksum to make sure we only accumulate whole program
151 statistics to the correct summary. An object file might be embedded
152 in two separate programs, and we must keep the two program
153 summaries separate. */
158 struct gcov_info
*gi_ptr
;
159 struct gcov_summary this_program
;
160 struct gcov_summary all
;
161 struct gcov_ctr_summary
*cs_ptr
;
162 const struct gcov_ctr_info
*ci_ptr
;
164 gcov_unsigned_t c_num
;
165 const char *gcov_prefix
;
166 int gcov_prefix_strip
= 0;
167 size_t prefix_length
;
168 char *gi_filename
, *gi_filename_up
;
170 memset (&all
, 0, sizeof (all
));
171 /* Find the totals for this execution. */
172 memset (&this_program
, 0, sizeof (this_program
));
173 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
175 ci_ptr
= gi_ptr
->counts
;
176 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
178 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
181 cs_ptr
= &this_program
.ctrs
[t_ix
];
182 cs_ptr
->num
+= ci_ptr
->num
;
183 for (c_num
= 0; c_num
< ci_ptr
->num
; c_num
++)
185 cs_ptr
->sum_all
+= ci_ptr
->values
[c_num
];
186 if (cs_ptr
->run_max
< ci_ptr
->values
[c_num
])
187 cs_ptr
->run_max
= ci_ptr
->values
[c_num
];
193 /* Get file name relocation prefix. Non-absolute values are ignored. */
194 gcov_prefix
= getenv("GCOV_PREFIX");
195 if (gcov_prefix
&& IS_ABSOLUTE_PATH (gcov_prefix
))
197 /* Check if the level of dirs to strip off specified. */
198 char *tmp
= getenv("GCOV_PREFIX_STRIP");
201 gcov_prefix_strip
= atoi (tmp
);
202 /* Do not consider negative values. */
203 if (gcov_prefix_strip
< 0)
204 gcov_prefix_strip
= 0;
207 prefix_length
= strlen(gcov_prefix
);
209 /* Remove an unnecessary trailing '/' */
210 if (IS_DIR_SEPARATOR (gcov_prefix
[prefix_length
- 1]))
216 /* Allocate and initialize the filename scratch space. */
217 gi_filename
= (char *) alloca (prefix_length
+ gcov_max_filename
+ 1);
219 memcpy (gi_filename
, gcov_prefix
, prefix_length
);
220 gi_filename_up
= gi_filename
+ prefix_length
;
222 /* Now merge each file. */
223 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
225 struct gcov_summary this_object
;
226 struct gcov_summary object
, program
;
227 gcov_type
*values
[GCOV_COUNTERS
];
228 const struct gcov_fn_info
*fi_ptr
;
230 unsigned c_ix
, f_ix
, n_counts
;
231 struct gcov_ctr_summary
*cs_obj
, *cs_tobj
, *cs_prg
, *cs_tprg
, *cs_all
;
233 gcov_unsigned_t tag
, length
;
234 gcov_position_t summary_pos
= 0;
235 gcov_position_t eof_pos
= 0;
237 memset (&this_object
, 0, sizeof (this_object
));
238 memset (&object
, 0, sizeof (object
));
240 /* Build relocated filename, stripping off leading
241 directories from the initial filename if requested. */
242 if (gcov_prefix_strip
> 0)
245 const char *fname
= gi_ptr
->filename
;
248 /* Skip selected directory levels. */
249 for (s
= fname
+ 1; (*s
!= '\0') && (level
< gcov_prefix_strip
); s
++)
250 if (IS_DIR_SEPARATOR(*s
))
256 /* Update complete filename with stripped original. */
257 strcpy (gi_filename_up
, fname
);
260 strcpy (gi_filename_up
, gi_ptr
->filename
);
262 /* Totals for this object file. */
263 ci_ptr
= gi_ptr
->counts
;
264 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
266 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
269 cs_ptr
= &this_object
.ctrs
[t_ix
];
270 cs_ptr
->num
+= ci_ptr
->num
;
271 for (c_num
= 0; c_num
< ci_ptr
->num
; c_num
++)
273 cs_ptr
->sum_all
+= ci_ptr
->values
[c_num
];
274 if (cs_ptr
->run_max
< ci_ptr
->values
[c_num
])
275 cs_ptr
->run_max
= ci_ptr
->values
[c_num
];
282 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
283 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
285 values
[c_ix
] = gi_ptr
->counts
[c_ix
].values
;
289 /* Calculate the function_info stride. This depends on the
290 number of counter types being measured. */
291 fi_stride
= sizeof (struct gcov_fn_info
) + c_ix
* sizeof (unsigned);
292 if (__alignof__ (struct gcov_fn_info
) > sizeof (unsigned))
294 fi_stride
+= __alignof__ (struct gcov_fn_info
) - 1;
295 fi_stride
&= ~(__alignof__ (struct gcov_fn_info
) - 1);
298 if (!gcov_open (gi_filename
))
300 #ifdef TARGET_POSIX_IO
301 /* Open failed likely due to missed directory.
302 Create directory and retry to open file. */
303 if (create_file_directory (gi_filename
))
305 fprintf (stderr
, "profiling:%s:Skip\n", gi_filename
);
309 if (!gcov_open (gi_filename
))
311 fprintf (stderr
, "profiling:%s:Cannot open\n", gi_filename
);
316 tag
= gcov_read_unsigned ();
319 /* Merge data from file. */
320 if (tag
!= GCOV_DATA_MAGIC
)
322 fprintf (stderr
, "profiling:%s:Not a gcov data file\n",
326 length
= gcov_read_unsigned ();
327 if (!gcov_version (gi_ptr
, length
, gi_filename
))
330 length
= gcov_read_unsigned ();
331 if (length
!= gi_ptr
->stamp
)
332 /* Read from a different compilation. Overwrite the file. */
335 /* Merge execution counts for each function. */
336 for (f_ix
= 0; f_ix
< gi_ptr
->n_functions
; f_ix
++)
338 fi_ptr
= (const struct gcov_fn_info
*)
339 ((const char *) gi_ptr
->functions
+ f_ix
* fi_stride
);
340 tag
= gcov_read_unsigned ();
341 length
= gcov_read_unsigned ();
343 /* Check function. */
344 if (tag
!= GCOV_TAG_FUNCTION
345 || length
!= GCOV_TAG_FUNCTION_LENGTH
346 || gcov_read_unsigned () != fi_ptr
->ident
347 || gcov_read_unsigned () != fi_ptr
->checksum
)
350 fprintf (stderr
, "profiling:%s:Merge mismatch for %s\n",
352 f_ix
+ 1 ? "function" : "summaries");
357 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
361 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
364 n_counts
= fi_ptr
->n_ctrs
[c_ix
];
365 merge
= gi_ptr
->counts
[c_ix
].merge
;
367 tag
= gcov_read_unsigned ();
368 length
= gcov_read_unsigned ();
369 if (tag
!= GCOV_TAG_FOR_COUNTER (t_ix
)
370 || length
!= GCOV_TAG_COUNTER_LENGTH (n_counts
))
372 (*merge
) (values
[c_ix
], n_counts
);
373 values
[c_ix
] += n_counts
;
376 if ((error
= gcov_is_error ()))
381 /* Check program & object summary */
386 eof_pos
= gcov_position ();
387 tag
= gcov_read_unsigned ();
391 length
= gcov_read_unsigned ();
392 is_program
= tag
== GCOV_TAG_PROGRAM_SUMMARY
;
393 if (length
!= GCOV_TAG_SUMMARY_LENGTH
394 || (!is_program
&& tag
!= GCOV_TAG_OBJECT_SUMMARY
))
396 gcov_read_summary (is_program
? &program
: &object
);
397 if ((error
= gcov_is_error ()))
399 if (is_program
&& program
.checksum
== gcov_crc32
)
401 summary_pos
= eof_pos
;
409 fprintf (stderr
, error
< 0 ? "profiling:%s:Overflow merging\n"
410 : "profiling:%s:Error merging\n", gi_filename
);
419 memset (&program
, 0, sizeof (program
));
421 /* Merge the summaries. */
423 for (t_ix
= 0; t_ix
< GCOV_COUNTERS_SUMMABLE
; t_ix
++)
425 cs_obj
= &object
.ctrs
[t_ix
];
426 cs_tobj
= &this_object
.ctrs
[t_ix
];
427 cs_prg
= &program
.ctrs
[t_ix
];
428 cs_tprg
= &this_program
.ctrs
[t_ix
];
429 cs_all
= &all
.ctrs
[t_ix
];
431 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
434 cs_obj
->num
= cs_tobj
->num
;
435 else if (cs_obj
->num
!= cs_tobj
->num
)
437 cs_obj
->sum_all
+= cs_tobj
->sum_all
;
438 if (cs_obj
->run_max
< cs_tobj
->run_max
)
439 cs_obj
->run_max
= cs_tobj
->run_max
;
440 cs_obj
->sum_max
+= cs_tobj
->run_max
;
443 cs_prg
->num
= cs_tprg
->num
;
444 else if (cs_prg
->num
!= cs_tprg
->num
)
446 cs_prg
->sum_all
+= cs_tprg
->sum_all
;
447 if (cs_prg
->run_max
< cs_tprg
->run_max
)
448 cs_prg
->run_max
= cs_tprg
->run_max
;
449 cs_prg
->sum_max
+= cs_tprg
->run_max
;
451 else if (cs_obj
->num
|| cs_prg
->num
)
454 if (!cs_all
->runs
&& cs_prg
->runs
)
455 memcpy (cs_all
, cs_prg
, sizeof (*cs_all
));
456 else if (!all
.checksum
457 && (!GCOV_LOCKED
|| cs_all
->runs
== cs_prg
->runs
)
458 && memcmp (cs_all
, cs_prg
, sizeof (*cs_all
)))
460 fprintf (stderr
, "profiling:%s:Invocation mismatch - some data files may have been removed%s",
461 gi_filename
, GCOV_LOCKED
462 ? "" : " or concurrent update without locking support");
468 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
469 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
471 values
[c_ix
] = gi_ptr
->counts
[c_ix
].values
;
475 program
.checksum
= gcov_crc32
;
477 /* Write out the data. */
478 gcov_write_tag_length (GCOV_DATA_MAGIC
, GCOV_VERSION
);
479 gcov_write_unsigned (gi_ptr
->stamp
);
481 /* Write execution counts for each function. */
482 for (f_ix
= 0; f_ix
< gi_ptr
->n_functions
; f_ix
++)
484 fi_ptr
= (const struct gcov_fn_info
*)
485 ((const char *) gi_ptr
->functions
+ f_ix
* fi_stride
);
487 /* Announce function. */
488 gcov_write_tag_length (GCOV_TAG_FUNCTION
, GCOV_TAG_FUNCTION_LENGTH
);
489 gcov_write_unsigned (fi_ptr
->ident
);
490 gcov_write_unsigned (fi_ptr
->checksum
);
493 for (t_ix
= 0; t_ix
< GCOV_COUNTERS
; t_ix
++)
497 if (!((1 << t_ix
) & gi_ptr
->ctr_mask
))
500 n_counts
= fi_ptr
->n_ctrs
[c_ix
];
502 gcov_write_tag_length (GCOV_TAG_FOR_COUNTER (t_ix
),
503 GCOV_TAG_COUNTER_LENGTH (n_counts
));
504 c_ptr
= values
[c_ix
];
506 gcov_write_counter (*c_ptr
++);
508 values
[c_ix
] = c_ptr
;
513 /* Object file summary. */
514 gcov_write_summary (GCOV_TAG_OBJECT_SUMMARY
, &object
);
516 /* Generate whole program statistics. */
519 gcov_write_summary (GCOV_TAG_PROGRAM_SUMMARY
, &program
);
521 gcov_write_unsigned (0);
522 if ((error
= gcov_close ()))
523 fprintf (stderr
, error
< 0 ?
524 "profiling:%s:Overflow writing\n" :
525 "profiling:%s:Error writing\n",
530 /* Add a new object file onto the bb chain. Invoked automatically
531 when running an object file's global ctors. */
534 __gcov_init (struct gcov_info
*info
)
538 if (gcov_version (info
, info
->version
, 0))
540 const char *ptr
= info
->filename
;
541 gcov_unsigned_t crc32
= gcov_crc32
;
542 size_t filename_length
= strlen(info
->filename
);
544 /* Refresh the longest file name information */
545 if (filename_length
> gcov_max_filename
)
546 gcov_max_filename
= filename_length
;
551 gcov_unsigned_t value
= *ptr
<< 24;
553 for (ix
= 8; ix
--; value
<<= 1)
555 gcov_unsigned_t feedback
;
557 feedback
= (value
^ crc32
) & 0x80000000 ? 0x04c11db7 : 0;
569 info
->next
= gcov_list
;
575 /* Called before fork or exec - write out profile information gathered so
576 far and reset it to zero. This avoids duplication or loss of the
577 profile information gathered so far. */
582 const struct gcov_info
*gi_ptr
;
585 for (gi_ptr
= gcov_list
; gi_ptr
; gi_ptr
= gi_ptr
->next
)
588 const struct gcov_ctr_info
*ci_ptr
;
590 for (t_ix
= 0, ci_ptr
= gi_ptr
->counts
; t_ix
!= GCOV_COUNTERS
; t_ix
++)
591 if ((1 << t_ix
) & gi_ptr
->ctr_mask
)
593 memset (ci_ptr
->values
, 0, sizeof (gcov_type
) * ci_ptr
->num
);
601 #ifdef L_gcov_merge_add
602 /* The profile merging function that just adds the counters. It is given
603 an array COUNTERS of N_COUNTERS old counters and it reads the same number
604 of counters from the gcov file. */
606 __gcov_merge_add (gcov_type
*counters
, unsigned n_counters
)
608 for (; n_counters
; counters
++, n_counters
--)
609 *counters
+= gcov_read_counter ();
611 #endif /* L_gcov_merge_add */
613 #ifdef L_gcov_merge_ior
614 /* The profile merging function that just adds the counters. It is given
615 an array COUNTERS of N_COUNTERS old counters and it reads the same number
616 of counters from the gcov file. */
618 __gcov_merge_ior (gcov_type
*counters
, unsigned n_counters
)
620 for (; n_counters
; counters
++, n_counters
--)
621 *counters
|= gcov_read_counter ();
625 #ifdef L_gcov_merge_single
626 /* The profile merging function for choosing the most common value.
627 It is given an array COUNTERS of N_COUNTERS old counters and it
628 reads the same number of counters from the gcov file. The counters
629 are split into 3-tuples where the members of the tuple have
632 -- the stored candidate on the most common value of the measured entity
634 -- total number of evaluations of the value */
636 __gcov_merge_single (gcov_type
*counters
, unsigned n_counters
)
638 unsigned i
, n_measures
;
639 gcov_type value
, counter
, all
;
641 gcc_assert (!(n_counters
% 3));
642 n_measures
= n_counters
/ 3;
643 for (i
= 0; i
< n_measures
; i
++, counters
+= 3)
645 value
= gcov_read_counter ();
646 counter
= gcov_read_counter ();
647 all
= gcov_read_counter ();
649 if (counters
[0] == value
)
650 counters
[1] += counter
;
651 else if (counter
> counters
[1])
654 counters
[1] = counter
- counters
[1];
657 counters
[1] -= counter
;
661 #endif /* L_gcov_merge_single */
663 #ifdef L_gcov_merge_delta
664 /* The profile merging function for choosing the most common
665 difference between two consecutive evaluations of the value. It is
666 given an array COUNTERS of N_COUNTERS old counters and it reads the
667 same number of counters from the gcov file. The counters are split
668 into 4-tuples where the members of the tuple have meanings:
670 -- the last value of the measured entity
671 -- the stored candidate on the most common difference
673 -- total number of evaluations of the value */
675 __gcov_merge_delta (gcov_type
*counters
, unsigned n_counters
)
677 unsigned i
, n_measures
;
678 gcov_type value
, counter
, all
;
680 gcc_assert (!(n_counters
% 4));
681 n_measures
= n_counters
/ 4;
682 for (i
= 0; i
< n_measures
; i
++, counters
+= 4)
684 /* last = */ gcov_read_counter ();
685 value
= gcov_read_counter ();
686 counter
= gcov_read_counter ();
687 all
= gcov_read_counter ();
689 if (counters
[1] == value
)
690 counters
[2] += counter
;
691 else if (counter
> counters
[2])
694 counters
[2] = counter
- counters
[2];
697 counters
[2] -= counter
;
701 #endif /* L_gcov_merge_delta */
703 #ifdef L_gcov_interval_profiler
704 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
705 corresponding counter in COUNTERS. If the VALUE is above or below
706 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
710 __gcov_interval_profiler (gcov_type
*counters
, gcov_type value
,
711 int start
, unsigned steps
)
713 gcov_type delta
= value
- start
;
715 counters
[steps
+ 1]++;
716 else if (delta
>= steps
)
723 #ifdef L_gcov_pow2_profiler
724 /* If VALUE is a power of two, COUNTERS[1] is incremented. Otherwise
725 COUNTERS[0] is incremented. */
728 __gcov_pow2_profiler (gcov_type
*counters
, gcov_type value
)
730 if (value
& (value
- 1))
737 /* Tries to determine the most common value among its inputs. Checks if the
738 value stored in COUNTERS[0] matches VALUE. If this is the case, COUNTERS[1]
739 is incremented. If this is not the case and COUNTERS[1] is not zero,
740 COUNTERS[1] is decremented. Otherwise COUNTERS[1] is set to one and
741 VALUE is stored to COUNTERS[0]. This algorithm guarantees that if this
742 function is called more than 50% of the time with one value, this value
743 will be in COUNTERS[0] in the end.
745 In any case, COUNTERS[2] is incremented. */
748 __gcov_one_value_profiler_body (gcov_type
*counters
, gcov_type value
)
750 if (value
== counters
[0])
752 else if (counters
[1] == 0)
762 #ifdef L_gcov_one_value_profiler
764 __gcov_one_value_profiler (gcov_type
*counters
, gcov_type value
)
766 __gcov_one_value_profiler_body (counters
, value
);
770 #ifdef L_gcov_indirect_call_profiler
771 /* Tries to determine the most common value among its inputs. */
773 __gcov_indirect_call_profiler (gcov_type
* counter
, gcov_type value
,
774 void* cur_func
, void* callee_func
)
776 /* If the C++ virtual tables contain function descriptors then one
777 function may have multiple descriptors and we need to dereference
778 the descriptors to see if they point to the same function. */
779 if (cur_func
== callee_func
780 || (TARGET_VTABLE_USES_DESCRIPTORS
&& callee_func
781 && *(void **) cur_func
== *(void **) callee_func
))
782 __gcov_one_value_profiler_body (counter
, value
);
787 #ifdef L_gcov_average_profiler
788 /* Increase corresponding COUNTER by VALUE. FIXME: Perhaps we want
792 __gcov_average_profiler (gcov_type
*counters
, gcov_type value
)
794 counters
[0] += value
;
799 #ifdef L_gcov_ior_profiler
800 /* Increase corresponding COUNTER by VALUE. FIXME: Perhaps we want
804 __gcov_ior_profiler (gcov_type
*counters
, gcov_type value
)
811 /* A wrapper for the fork function. Flushes the accumulated profiling data, so
812 that they are not counted twice. */
823 /* A wrapper for the execl function. Flushes the accumulated profiling data, so
824 that they are not lost. */
827 __gcov_execl (const char *path
, char *arg
, ...)
839 while (va_arg (ap
, char *))
843 args
= (char **) alloca (length
* sizeof (void *));
845 for (i
= 1; i
< length
; i
++)
846 args
[i
] = va_arg (aq
, char *);
849 return execv (path
, args
);
854 /* A wrapper for the execlp function. Flushes the accumulated profiling data, so
855 that they are not lost. */
858 __gcov_execlp (const char *path
, char *arg
, ...)
870 while (va_arg (ap
, char *))
874 args
= (char **) alloca (length
* sizeof (void *));
876 for (i
= 1; i
< length
; i
++)
877 args
[i
] = va_arg (aq
, char *);
880 return execvp (path
, args
);
885 /* A wrapper for the execle function. Flushes the accumulated profiling data, so
886 that they are not lost. */
889 __gcov_execle (const char *path
, char *arg
, ...)
902 while (va_arg (ap
, char *))
906 args
= (char **) alloca (length
* sizeof (void *));
908 for (i
= 1; i
< length
; i
++)
909 args
[i
] = va_arg (aq
, char *);
910 envp
= va_arg (aq
, char **);
913 return execve (path
, args
, envp
);
918 /* A wrapper for the execv function. Flushes the accumulated profiling data, so
919 that they are not lost. */
922 __gcov_execv (const char *path
, char *const argv
[])
925 return execv (path
, argv
);
930 /* A wrapper for the execvp function. Flushes the accumulated profiling data, so
931 that they are not lost. */
934 __gcov_execvp (const char *path
, char *const argv
[])
937 return execvp (path
, argv
);
942 /* A wrapper for the execve function. Flushes the accumulated profiling data, so
943 that they are not lost. */
946 __gcov_execve (const char *path
, char *const argv
[], char *const envp
[])
949 return execve (path
, argv
, envp
);
952 #endif /* inhibit_libc */