OSDN Git Service

fd5755fea78e28769cab8bfd926498867f10972a
[pf3gnuchains/gcc-fork.git] / gcc / gcov-io.h
1 /* File format for coverage information
2    Copyright (C) 1996, 1997, 1998, 2000, 2002,
3    2003 Free Software Foundation, Inc.
4    Contributed by Bob Manson <manson@cygnus.com>.
5    Completely remangled by Nathan Sidwell <nathan@codesourcery.com>.
6
7 This file is part of GCC.
8
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 2, or (at your option) any later
12 version.
13
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
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING.  If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA.  */
23
24 /* As a special exception, if you link this library with other files,
25    some of which are compiled with GCC, to produce an executable,
26    this library does not by itself cause the resulting executable
27    to be covered by the GNU General Public License.
28    This exception does not however invalidate any other reasons why
29    the executable file might be covered by the GNU General Public License.  */
30
31 /* Coverage information is held in two files.  A notes file, which is
32    generated by the compiler, and a data file, which is generated
33    by the program under test.  Both files use a similar structure.  We
34    do not attempt to make these files backwards compatible with
35    previous versions, as you only need coverage information when
36    developing a program.  We do hold version information, so that
37    mismatches can be detected, and we use a format that allows tools
38    to skip information they do not understand or are not interested
39    in.
40
41    Numbers are recorded in the 32 bit unsigned binary form of the
42    endianness of the machine generating the file. 64 bit numbers are
43    stored as two 32 bit numbers, the low part first.  Strings are
44    padded with 1 to 4 NUL bytes, to bring the length up to a multiple
45    of 4. The number of 4 bytes is stored, followed by the padded
46    string. Zero length and NULL strings are simply stored as
47    a length of zero (they have no trailing NUL or padding).
48
49         int32:  byte3 byte2 byte1 byte0 | byte0 byte1 byte2 byte3
50         int64:  int32:low int32:high
51         string: int32:0 | int32:length char* char:0 padding
52         padding: | char:0 | char:0 char:0 | char:0 char:0 char:0
53         item: int32 | int64 | string
54
55    The basic format of the files is
56
57         file : int32:magic int32:version int32:stamp record*
58
59    The magic ident is different for the notes and the data files.  The
60    magic ident is used to determine the endianness of the file, when
61    reading.  The version is the same for both files and is derived
62    from gcc's version number. The stamp value is used to synchronize
63    note and data files and to synchronize merging within a data
64    file. It need not be an absolute time stamp, merely a ticker that
65    increments fast enough and cycles slow enough to distinguish
66    different compile/run/compile cycles.
67    
68    Although the ident and version are formally 32 bit numbers, they
69    are derived from 4 character ASCII strings.  The version number
70    consists of the single character major version number, a two
71    character minor version number (leading zero for versions less than
72    10), and a single character indicating the status of the release.
73    That will be 'e' experimental, 'p' prerelease and 'r' for release.
74    Because, by good fortune, these are in alphabetical order, string
75    collating can be used to compare version strings.  Be aware that
76    the 'e' designation will (naturally) be unstable and might be
77    incompatible with itself.  For gcc 3.4 experimental, it would be
78    '304e' (0x33303465).  When the major version reaches 10, the
79    letters A-Z will be used.  Assuming minor increments releases every
80    6 months, we have to make a major increment every 50 years.
81    Assuming major increments releases every 5 years, we're ok for the
82    next 155 years -- good enough for me.
83
84    A record has a tag, length and variable amount of data.
85
86         record: header data
87         header: int32:tag int32:length
88         data: item*
89
90    Records are not nested, but there is a record hierarchy.  Tag
91    numbers reflect this hierarchy.  Tags are unique across note and
92    data files.  Some record types have a varying amount of data.  The
93    LENGTH is the number of 4bytes that follow and is usually used to
94    determine how much data.  The tag value is split into 4 8-bit
95    fields, one for each of four possible levels.  The most significant
96    is allocated first.  Unused levels are zero.  Active levels are
97    odd-valued, so that the LSB of the level is one.  A sub-level
98    incorporates the values of its superlevels.  This formatting allows
99    you to determine the tag hierarchy, without understanding the tags
100    themselves, and is similar to the standard section numbering used
101    in technical documents.  Level values [1..3f] are used for common
102    tags, values [41..9f] for the notes file and [a1..ff] for the data
103    file.
104
105    The basic block graph file contains the following records
106         note: unit function-graph*
107         unit: header int32:checksum string:source
108         function-graph: announce_function basic_blocks {arcs | lines}*
109         announce_function: header int32:ident int32:checksum
110                 string:name string:source int32:lineno
111         basic_block: header int32:flags*
112         arcs: header int32:block_no arc*
113         arc:  int32:dest_block int32:flags
114         lines: header int32:block_no line*
115                int32:0 string:NULL
116         line:  int32:line_no | int32:0 string:filename
117
118    The BASIC_BLOCK record holds per-bb flags.  The number of blocks
119    can be inferred from its data length.  There is one ARCS record per
120    basic block.  The number of arcs from a bb is implicit from the
121    data length.  It enumerates the destination bb and per-arc flags.
122    There is one LINES record per basic block, it enumerates the source
123    lines which belong to that basic block.  Source file names are
124    introduced by a line number of 0, following lines are from the new
125    source file.  The initial source file for the function is NULL, but
126    the current source file should be remembered from one LINES record
127    to the next.  The end of a block is indicated by an empty filename
128    - this does not reset the current source file.  Note there is no
129    ordering of the ARCS and LINES records: they may be in any order,
130    interleaved in any manner.  The current filename follows the order
131    the LINES records are stored in the file, *not* the ordering of the
132    blocks they are for.
133
134    The data file contains the following records.
135         data: {unit function-data* summary:object summary:program*}*
136         unit: header int32:checksum
137         function-data:  announce_function arc_counts
138         announce_function: header int32:ident int32:checksum
139         arc_counts: header int64:count*
140         summary: int32:checksum {count-summary}GCOV_COUNTERS
141         count-summary:  int32:num int32:runs int64:sum
142                         int64:max int64:sum_max
143
144    The ANNOUNCE_FUNCTION record is the same as that in the note file,
145    but without the source location.  The ARC_COUNTS gives the counter
146    values for those arcs that are instrumented.  The SUMMARY records
147    give information about the whole object file and about the whole
148    program.  The checksum is used for whole program summaries, and
149    disambiguates different programs which include the same
150    instrumented object file.  There may be several program summaries,
151    each with a unique checksum.  The object summary's checkum is zero.
152    Note that the data file might contain information from several runs
153    concatenated, or the data might be merged.
154
155    This file is included by both the compiler, gcov tools and the
156    runtime support library libgcov. IN_LIBGCOV and IN_GCOV are used to
157    distinguish which case is which.  If IN_LIBGCOV is nonzero,
158    libgcov is being built. If IN_GCOV is nonzero, the gcov tools are
159    being built. Otherwise the compiler is being built. IN_GCOV may be
160    positive or negative. If positive, we are compiling a tool that
161    requires additional functions (see the code for knowledge of what
162    those functions are).  */
163
164 #ifndef GCC_GCOV_IO_H
165 #define GCC_GCOV_IO_H
166
167 #if IN_LIBGCOV
168 /* About the target */
169
170 typedef unsigned gcov_unsigned_t __attribute__ ((mode (SI)));
171 typedef unsigned gcov_position_t __attribute__ ((mode (SI)));
172 #if LONG_LONG_TYPE_SIZE > 32
173 typedef signed gcov_type __attribute__ ((mode (DI)));
174 #else
175 typedef signed gcov_type __attribute__ ((mode (SI)));
176 #endif
177
178 #if defined (TARGET_HAS_F_SETLKW)
179 #define GCOV_LOCKED 1
180 #else
181 #define GCOV_LOCKED 0
182 #endif
183
184 #else /* !IN_LIBGCOV */
185 /* About the host */
186
187 typedef unsigned gcov_unsigned_t;
188 typedef unsigned gcov_position_t;
189 /* gcov_type is typedef'd elsewhere for the compiler */
190 #if IN_GCOV
191 #define GCOV_LINKAGE static
192 typedef HOST_WIDEST_INT gcov_type;
193 #if IN_GCOV > 0
194 #include <sys/types.h>
195 #endif
196 #else /*!IN_GCOV */
197 #if LONG_LONG_TYPE_SIZE > 32
198 #define GCOV_TYPE_NODE intDI_type_node
199 #else
200 #define GCOV_TYPE_NODE intSI_type_node
201 #endif
202 #endif
203
204 #if defined (HOST_HAS_F_SETLKW)
205 #define GCOV_LOCKED 1
206 #else
207 #define GCOV_LOCKED 0
208 #endif
209
210 #endif /* !IN_LIBGCOV */
211
212 /* In gcov we want function linkage to be static. In libgcov we need
213    these functions to be extern, so prefix them with __gcov.  In the
214    compiler we want it extern, so that they can be accessed from
215    elsewhere.  */
216 #if IN_LIBGCOV
217 #define gcov_var __gcov_var
218 #define gcov_open __gcov_open
219 #define gcov_close __gcov_close
220 #define gcov_write_tag_length __gcov_write_tag_length
221 #define gcov_position __gcov_position
222 #define gcov_seek __gcov_seek
223 #define gcov_rewrite __gcov_rewrite
224 #define gcov_is_error __gcov_is_error
225 #define gcov_is_eof __gcov_is_eof
226 #define gcov_write_unsigned __gcov_write_unsigned
227 #define gcov_write_counter __gcov_write_counter
228 #define gcov_write_summary __gcov_write_summary
229 #define gcov_read_unsigned __gcov_read_unsigned
230 #define gcov_read_counter __gcov_read_counter
231 #define gcov_read_summary __gcov_read_summary
232
233 /* Poison these, so they don't accidentally slip in.  */
234 #pragma GCC poison gcov_write_string gcov_write_tag gcov_write_length
235 #pragma GCC poison gcov_read_string gcov_sync gcov_time gcov_magic
236
237 #endif
238
239 #ifndef GCOV_LINKAGE
240 #define GCOV_LINKAGE extern
241 #endif
242
243 /* File suffixes.  */
244 #define GCOV_DATA_SUFFIX ".gcda"
245 #define GCOV_NOTE_SUFFIX ".gcno"
246
247 /* File magic. Must not be palindromes.  */
248 #define GCOV_DATA_MAGIC ((gcov_unsigned_t)0x67636461) /* "gcda" */
249 #define GCOV_NOTE_MAGIC ((gcov_unsigned_t)0x67636e6f) /* "gcno" */
250
251 /* gcov-iov.h is automatically generated by the makefile from
252    version.c, it looks like
253         #define GCOV_VERSION ((gcov_unsigned_t)0x89abcdef)
254 */
255 #include "gcov-iov.h"
256
257 /* Convert a magic or version number to a 4 character string.  */
258 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE)       \
259   ((ARRAY)[0] = (char)((VALUE) >> 24),          \
260    (ARRAY)[1] = (char)((VALUE) >> 16),          \
261    (ARRAY)[2] = (char)((VALUE) >> 8),           \
262    (ARRAY)[3] = (char)((VALUE) >> 0))
263
264 /* The record tags.  Values [1..3f] are for tags which may be in either
265    file.  Values [41..9f] for those in the note file and [a1..ff] for
266    the data file.  */
267
268 #define GCOV_TAG_FUNCTION        ((gcov_unsigned_t)0x01000000)
269 #define GCOV_TAG_FUNCTION_LENGTH (2)
270 #define GCOV_TAG_BLOCKS          ((gcov_unsigned_t)0x01410000)
271 #define GCOV_TAG_BLOCKS_LENGTH(NUM) (NUM)
272 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH)
273 #define GCOV_TAG_ARCS            ((gcov_unsigned_t)0x01430000)
274 #define GCOV_TAG_ARCS_LENGTH(NUM)  (1 + (NUM) * 2)
275 #define GCOV_TAG_ARCS_NUM(LENGTH)  (((LENGTH) - 1) / 2)
276 #define GCOV_TAG_LINES           ((gcov_unsigned_t)0x01450000)
277 #define GCOV_TAG_COUNTER_BASE    ((gcov_unsigned_t)0x01a10000)
278 #define GCOV_TAG_COUNTER_LENGTH(NUM) ((NUM) * 2)
279 #define GCOV_TAG_COUNTER_NUM(LENGTH) ((LENGTH) / 2)
280 #define GCOV_TAG_OBJECT_SUMMARY  ((gcov_unsigned_t)0xa1000000)
281 #define GCOV_TAG_PROGRAM_SUMMARY ((gcov_unsigned_t)0xa3000000)
282 #define GCOV_TAG_SUMMARY_LENGTH  \
283         (1 + GCOV_COUNTERS_SUMMABLE * (2 + 3 * 2))
284
285 /* Counters that are collected.  */
286 #define GCOV_COUNTER_ARCS       0  /* Arc transitions.  */
287 #define GCOV_COUNTERS_SUMMABLE  1  /* Counters which can be
288                                       summaried.  */
289 #define GCOV_COUNTER_V_INTERVAL 1  /* Histogram of value inside an interval.  */
290 #define GCOV_COUNTER_V_POW2     2  /* Histogram of exact power2 logarithm
291                                       of a value.  */
292 #define GCOV_COUNTER_V_SINGLE   3  /* The most common value of expression.  */
293 #define GCOV_COUNTER_V_DELTA    4  /* The most common difference between
294                                       consecutive values of expression.  */
295 #define GCOV_COUNTERS           5
296   
297   /* A list of human readable names of the counters */
298 #define GCOV_COUNTER_NAMES      {"arcs", "interval", "pow2", "single", "delta"}
299   
300   /* Names of merge functions for counters.  */
301 #define GCOV_MERGE_FUNCTIONS    {"__gcov_merge_add",    \
302                                  "__gcov_merge_add",    \
303                                  "__gcov_merge_add",    \
304                                  "__gcov_merge_single", \
305                                  "__gcov_merge_delta"}
306   
307 /* Convert a counter index to a tag.  */
308 #define GCOV_TAG_FOR_COUNTER(COUNT)                             \
309         (GCOV_TAG_COUNTER_BASE + ((gcov_unsigned_t)(COUNT) << 17))
310 /* Convert a tag to a counter.  */
311 #define GCOV_COUNTER_FOR_TAG(TAG)                                       \
312         ((unsigned)(((TAG) - GCOV_TAG_COUNTER_BASE) >> 17))
313 /* Check whether a tag is a counter tag.  */
314 #define GCOV_TAG_IS_COUNTER(TAG)                                \
315         (!((TAG) & 0xFFFF) && GCOV_COUNTER_FOR_TAG (TAG) < GCOV_COUNTERS)
316
317 /* The tag level mask has 1's in the position of the inner levels, &
318    the lsb of the current level, and zero on the current and outer
319    levels.  */
320 #define GCOV_TAG_MASK(TAG) (((TAG) - 1) ^ (TAG))
321
322 /* Return nonzero if SUB is an immediate subtag of TAG.  */
323 #define GCOV_TAG_IS_SUBTAG(TAG,SUB)                             \
324         (GCOV_TAG_MASK (TAG) >> 8 == GCOV_TAG_MASK (SUB)        \
325          && !(((SUB) ^ (TAG)) & ~GCOV_TAG_MASK(TAG)))
326
327 /* Return nonzero if SUB is at a sublevel to TAG.  */
328 #define GCOV_TAG_IS_SUBLEVEL(TAG,SUB)                           \
329         (GCOV_TAG_MASK (TAG) > GCOV_TAG_MASK (SUB))
330
331 /* Basic block flags.  */
332 #define GCOV_BLOCK_UNEXPECTED   (1 << 1)
333
334 /* Arc flags.  */
335 #define GCOV_ARC_ON_TREE        (1 << 0)
336 #define GCOV_ARC_FAKE           (1 << 1)
337 #define GCOV_ARC_FALLTHROUGH    (1 << 2)
338
339 /* Structured records.  */
340
341 /* Cumulative counter data.  */
342 struct gcov_ctr_summary
343 {
344   gcov_unsigned_t num;          /* number of counters.  */
345   gcov_unsigned_t runs;         /* number of program runs */
346   gcov_type sum_all;            /* sum of all counters accumulated.  */
347   gcov_type run_max;            /* maximum value on a single run.  */
348   gcov_type sum_max;            /* sum of individual run max values.  */
349 };
350
351 /* Object & program summary record.  */
352 struct gcov_summary
353 {
354   gcov_unsigned_t checksum;     /* checksum of program */
355   struct gcov_ctr_summary ctrs[GCOV_COUNTERS_SUMMABLE];
356 };
357
358 /* Structures embedded in coveraged program.  The structures generated
359    by write_profile must match these.  */
360
361 #if IN_LIBGCOV
362 /* Information about a single function.  This uses the trailing array
363    idiom. The number of counters is determined from the counter_mask
364    in gcov_info.  We hold an array of function info, so have to
365    explicitly calculate the correct array stride.  */
366 struct gcov_fn_info
367 {
368   gcov_unsigned_t ident;        /* unique ident of function */
369   gcov_unsigned_t checksum;     /* function checksum */
370   unsigned n_ctrs[0];           /* instrumented counters */
371 };
372
373 /* Type of function used to merge counters.  */
374 typedef void (*gcov_merge_fn) (gcov_type *, gcov_unsigned_t);
375
376 /* Information about counters.  */
377 struct gcov_ctr_info
378 {
379   gcov_unsigned_t num;          /* number of counters.  */
380   gcov_type *values;            /* their values.  */
381   gcov_merge_fn merge;          /* The function used to merge them.  */
382 };
383
384 /* Information about a single object file.  */
385 struct gcov_info
386 {
387   gcov_unsigned_t version;      /* expected version number */
388   struct gcov_info *next;       /* link to next, used by libgcov */
389
390   gcov_unsigned_t stamp;        /* uniquifying time stamp */
391   const char *filename;         /* output file name */
392   
393   unsigned n_functions;         /* number of functions */
394   const struct gcov_fn_info *functions; /* table of functions */
395
396   unsigned ctr_mask;            /* mask of counters instrumented.  */
397   struct gcov_ctr_info counts[0]; /* count data. The number of bits
398                                      set in the ctr_mask field
399                                      determines how big this array
400                                      is.  */
401 };
402
403 /* Register a new object file module.  */
404 extern void __gcov_init (struct gcov_info *);
405
406 /* Called before fork, to avoid double counting.  */
407 extern void __gcov_flush (void);
408
409 /* The merge function that just sums the counters.  */
410 extern void __gcov_merge_add (gcov_type *, unsigned);
411
412 /* The merge function to choose the most common value.  */
413 extern void __gcov_merge_single (gcov_type *, unsigned);
414
415 /* The merge function to choose the most common difference between
416    consecutive values.  */
417 extern void __gcov_merge_delta (gcov_type *, unsigned);
418 #endif /* IN_LIBGCOV */
419
420 #if IN_LIBGCOV >= 0
421
422 /* Optimum number of gcov_unsigned_t's read from or written to disk.  */
423 #define GCOV_BLOCK_SIZE (1 << 10)
424
425 GCOV_LINKAGE struct gcov_var
426 {
427   FILE *file;
428   gcov_position_t start;        /* Position of first byte of block */
429   unsigned offset;              /* Read/write position within the block.  */
430   unsigned length;              /* Read limit in the block.  */
431   unsigned overread;            /* Number of words overread.  */
432   int error;                    /* < 0 overflow, > 0 disk error.  */
433   int mode;                     /* < 0 writing, > 0 reading */
434 #if IN_LIBGCOV
435   /* Holds one block plus 4 bytes, thus all coverage reads & writes
436      fit within this buffer and we always can transfer GCOV_BLOCK_SIZE
437      to and from the disk. libgcov never backtracks and only writes 4
438      or 8 byte objects.  */
439   gcov_unsigned_t buffer[GCOV_BLOCK_SIZE + 1];
440 #else
441   int endian;                   /* Swap endianness.  */
442   /* Holds a variable length block, as the compiler can write
443      strings and needs to backtrack.  */
444   size_t alloc;
445   gcov_unsigned_t *buffer;
446 #endif
447 } gcov_var;
448
449 /* Functions for reading and writing gcov files. In libgcov you can
450    open the file for reading then writing. Elsewhere you can open the
451    file either for reading or for writing. When reading a file you may
452    use the gcov_read_* functions, gcov_sync, gcov_position, &
453    gcov_error. When writing a file you may use the gcov_write
454    functions, gcov_seek & gcov_error. When a file is to be rewritten
455    you use the functions for reading, then gcov_rewrite then the
456    functions for writing.  Your file may become corrupted if you break
457    these invariants.  */
458 #if IN_LIBGCOV
459 GCOV_LINKAGE int gcov_open (const char */*name*/);
460 #else
461 GCOV_LINKAGE int gcov_open (const char */*name*/, int /*direction*/);
462 GCOV_LINKAGE int gcov_magic (gcov_unsigned_t, gcov_unsigned_t);
463 #endif
464 GCOV_LINKAGE int gcov_close (void);
465
466 /* Available everywhere.  */
467 static gcov_position_t gcov_position (void);
468 static int gcov_is_error (void);
469 static int gcov_is_eof (void);
470
471 GCOV_LINKAGE gcov_unsigned_t gcov_read_unsigned (void);
472 GCOV_LINKAGE gcov_type gcov_read_counter (void);
473 GCOV_LINKAGE void gcov_read_summary (struct gcov_summary *);
474
475 #if IN_LIBGCOV
476 /* Available only in libgcov */
477 GCOV_LINKAGE void gcov_write_counter (gcov_type);
478 GCOV_LINKAGE void gcov_write_tag_length (gcov_unsigned_t, gcov_unsigned_t);
479 GCOV_LINKAGE void gcov_write_summary (gcov_unsigned_t /*tag*/,
480                                       const struct gcov_summary *);
481 static void gcov_truncate (void);
482 static void gcov_rewrite (void);
483 GCOV_LINKAGE void gcov_seek (gcov_position_t /*position*/);
484 #else
485 /* Available outside libgcov */
486 GCOV_LINKAGE const char *gcov_read_string (void);
487 GCOV_LINKAGE void gcov_sync (gcov_position_t /*base*/,
488                              gcov_unsigned_t /*length */);
489 #endif
490
491 #if !IN_GCOV
492 /* Available outside gcov */
493 GCOV_LINKAGE void gcov_write_unsigned (gcov_unsigned_t);
494 #endif
495
496 #if !IN_GCOV && !IN_LIBGCOV
497 /* Available only in compiler */
498 GCOV_LINKAGE void gcov_write_string (const char *);
499 GCOV_LINKAGE gcov_position_t gcov_write_tag (gcov_unsigned_t);
500 GCOV_LINKAGE void gcov_write_length (gcov_position_t /*position*/);
501 #endif
502
503 #if IN_GCOV > 0
504 /* Available in gcov */
505 GCOV_LINKAGE time_t gcov_time (void);
506 #endif
507
508 /* Make sure the library is used correctly.  */
509 #if ENABLE_CHECKING
510 #define GCOV_CHECK(expr) ((expr) ? (void)0 : (void)abort ())
511 #else
512 #define GCOV_CHECK(expr)
513 #endif
514 #define GCOV_CHECK_READING() GCOV_CHECK(gcov_var.mode > 0)
515 #define GCOV_CHECK_WRITING() GCOV_CHECK(gcov_var.mode < 0)
516
517 /* Save the current position in the gcov file.  */
518
519 static inline gcov_position_t
520 gcov_position (void)
521 {
522   GCOV_CHECK_READING ();
523   return gcov_var.start + gcov_var.offset;
524 }
525
526 /* Return nonzero if we read to end of file.  */
527
528 static inline int
529 gcov_is_eof (void)
530 {
531   return !gcov_var.overread;
532 }
533
534 /* Return nonzero if the error flag is set.  */
535
536 static inline int
537 gcov_is_error (void)
538 {
539   return gcov_var.file ? gcov_var.error : 1;
540 }
541
542 #if IN_LIBGCOV
543 /* Move to beginning of file and initialize for writing.  */
544
545 static inline void
546 gcov_rewrite (void)
547 {
548   GCOV_CHECK_READING ();
549   gcov_var.mode = -1;
550   gcov_var.start = 0;
551   gcov_var.offset = 0;
552   fseek (gcov_var.file, 0L, SEEK_SET);
553 }
554
555 static inline void
556 gcov_truncate (void)
557 {
558   ftruncate (fileno (gcov_var.file), 0L);
559 }
560 #endif
561
562 #endif /* IN_LIBGCOV >= 0 */
563
564 #endif /* GCC_GCOV_IO_H */