1 /* File format for coverage information
2 Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004
3 Free Software Foundation, Inc.
4 Contributed by Bob Manson <manson@cygnus.com>.
5 Completely remangled by Nathan Sidwell <nathan@codesourcery.com>.
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 2, 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 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
24 /* Routines declared in gcov-io.h. This file should be #included by
25 another source file, after having #included gcov-io.h. */
28 static void gcov_write_block (unsigned);
29 static gcov_unsigned_t
*gcov_write_words (unsigned);
31 static const gcov_unsigned_t
*gcov_read_words (unsigned);
33 static void gcov_allocate (unsigned);
36 static inline gcov_unsigned_t
from_file (gcov_unsigned_t value
)
41 value
= (value
>> 16) | (value
<< 16);
42 value
= ((value
& 0xff00ff) << 8) | ((value
>> 8) & 0xff00ff);
48 /* Open a gcov file. NAME is the name of the file to open and MODE
49 indicates whether a new file should be created, or an existing file
50 opened for modification. If MODE is >= 0 an existing file will be
51 opened, if possible, and if MODE is <= 0, a new file will be
52 created. Use MODE=0 to attempt to reopen an existing file and then
53 fall back on creating a new one. Return zero on failure, >0 on
54 opening an existing file and <0 on creating a new one. */
58 gcov_open (const char *name
)
60 gcov_open (const char *name
, int mode
)
70 s_flock
.l_type
= F_WRLCK
;
71 s_flock
.l_whence
= SEEK_SET
;
73 s_flock
.l_len
= 0; /* Until EOF. */
74 s_flock
.l_pid
= getpid ();
80 gcov_var
.offset
= gcov_var
.length
= 0;
81 gcov_var
.overread
= -1u;
88 fd
= open (name
, O_RDWR
);
90 fd
= open (name
, O_RDWR
| O_CREAT
, 0666);
94 while (fcntl (fd
, F_SETLKW
, &s_flock
) && errno
== EINTR
)
97 gcov_var
.file
= fdopen (fd
, "r+b");
110 if (fstat (fd
, &st
) < 0)
112 fclose (gcov_var
.file
);
119 gcov_var
.mode
= mode
* 2 + 1;
122 gcov_var
.mode
= mode
* 2 + 1;
125 gcov_var
.file
= fopen (name
, "r+b");
130 gcov_var
.file
= fopen (name
, "w+b");
132 gcov_var
.mode
= mode
* 2 + 1;
138 setbuf (gcov_var
.file
, (char *)0);
143 /* Close the current gcov file. Flushes data to disk. Returns nonzero
144 on failure or error flag set. */
152 if (gcov_var
.offset
&& gcov_var
.mode
< 0)
153 gcov_write_block (gcov_var
.offset
);
155 fclose (gcov_var
.file
);
160 free (gcov_var
.buffer
);
165 return gcov_var
.error
;
169 /* Check if MAGIC is EXPECTED. Use it to determine endianness of the
170 file. Returns +1 for same endian, -1 for other endian and zero for
174 gcov_magic (gcov_unsigned_t magic
, gcov_unsigned_t expected
)
176 if (magic
== expected
)
178 magic
= (magic
>> 16) | (magic
<< 16);
179 magic
= ((magic
& 0xff00ff) << 8) | ((magic
>> 8) & 0xff00ff);
180 if (magic
== expected
)
191 gcov_allocate (unsigned length
)
193 size_t new_size
= gcov_var
.alloc
;
196 new_size
= GCOV_BLOCK_SIZE
;
200 gcov_var
.alloc
= new_size
;
201 gcov_var
.buffer
= xrealloc (gcov_var
.buffer
, new_size
<< 2);
206 /* Write out the current block, if needs be. */
209 gcov_write_block (unsigned size
)
211 if (fwrite (gcov_var
.buffer
, size
<< 2, 1, gcov_var
.file
) != 1)
213 gcov_var
.start
+= size
;
214 gcov_var
.offset
-= size
;
217 /* Allocate space to write BYTES bytes to the gcov file. Return a
218 pointer to those bytes, or NULL on failure. */
220 static gcov_unsigned_t
*
221 gcov_write_words (unsigned words
)
223 gcov_unsigned_t
*result
;
225 GCOV_CHECK_WRITING ();
227 if (gcov_var
.offset
>= GCOV_BLOCK_SIZE
)
229 gcov_write_block (GCOV_BLOCK_SIZE
);
232 GCOV_CHECK (gcov_var
.offset
== 1);
233 memcpy (gcov_var
.buffer
, gcov_var
.buffer
+ GCOV_BLOCK_SIZE
, 4);
237 if (gcov_var
.offset
+ words
> gcov_var
.alloc
)
238 gcov_allocate (gcov_var
.offset
+ words
);
240 result
= &gcov_var
.buffer
[gcov_var
.offset
];
241 gcov_var
.offset
+= words
;
246 /* Write unsigned VALUE to coverage file. Sets error flag
250 gcov_write_unsigned (gcov_unsigned_t value
)
252 gcov_unsigned_t
*buffer
= gcov_write_words (1);
257 /* Write counter VALUE to coverage file. Sets error flag
262 gcov_write_counter (gcov_type value
)
264 gcov_unsigned_t
*buffer
= gcov_write_words (2);
266 buffer
[0] = (gcov_unsigned_t
) value
;
267 if (sizeof (value
) > sizeof (gcov_unsigned_t
))
268 buffer
[1] = (gcov_unsigned_t
) (value
>> 32);
275 #endif /* IN_LIBGCOV */
278 /* Write STRING to coverage file. Sets error flag on file
279 error, overflow flag on overflow */
282 gcov_write_string (const char *string
)
286 gcov_unsigned_t
*buffer
;
290 length
= strlen (string
);
291 alloc
= (length
+ 4) >> 2;
294 buffer
= gcov_write_words (1 + alloc
);
298 memcpy (&buffer
[1], string
, length
);
303 /* Write a tag TAG and reserve space for the record length. Return a
304 value to be used for gcov_write_length. */
306 GCOV_LINKAGE gcov_position_t
307 gcov_write_tag (gcov_unsigned_t tag
)
309 gcov_position_t result
= gcov_var
.start
+ gcov_var
.offset
;
310 gcov_unsigned_t
*buffer
= gcov_write_words (2);
318 /* Write a record length using POSITION, which was returned by
319 gcov_write_tag. The current file position is the end of the
320 record, and is restored before returning. Returns nonzero on
324 gcov_write_length (gcov_position_t position
)
327 gcov_unsigned_t length
;
328 gcov_unsigned_t
*buffer
;
330 GCOV_CHECK_WRITING ();
331 GCOV_CHECK (position
+ 2 <= gcov_var
.start
+ gcov_var
.offset
);
332 GCOV_CHECK (position
>= gcov_var
.start
);
333 offset
= position
- gcov_var
.start
;
334 length
= gcov_var
.offset
- offset
- 2;
335 buffer
= (gcov_unsigned_t
*) &gcov_var
.buffer
[offset
];
337 if (gcov_var
.offset
>= GCOV_BLOCK_SIZE
)
338 gcov_write_block (gcov_var
.offset
);
341 #else /* IN_LIBGCOV */
343 /* Write a tag TAG and length LENGTH. */
346 gcov_write_tag_length (gcov_unsigned_t tag
, gcov_unsigned_t length
)
348 gcov_unsigned_t
*buffer
= gcov_write_words (2);
354 /* Write a summary structure to the gcov file. Return nonzero on
358 gcov_write_summary (gcov_unsigned_t tag
, const struct gcov_summary
*summary
)
361 const struct gcov_ctr_summary
*csum
;
363 gcov_write_tag_length (tag
, GCOV_TAG_SUMMARY_LENGTH
);
364 gcov_write_unsigned (summary
->checksum
);
365 for (csum
= summary
->ctrs
, ix
= GCOV_COUNTERS_SUMMABLE
; ix
--; csum
++)
367 gcov_write_unsigned (csum
->num
);
368 gcov_write_unsigned (csum
->runs
);
369 gcov_write_counter (csum
->sum_all
);
370 gcov_write_counter (csum
->run_max
);
371 gcov_write_counter (csum
->sum_max
);
374 #endif /* IN_LIBGCOV */
378 /* Return a pointer to read BYTES bytes from the gcov file. Returns
379 NULL on failure (read past EOF). */
381 static const gcov_unsigned_t
*
382 gcov_read_words (unsigned words
)
384 const gcov_unsigned_t
*result
;
385 unsigned excess
= gcov_var
.length
- gcov_var
.offset
;
387 GCOV_CHECK_READING ();
390 gcov_var
.start
+= gcov_var
.offset
;
394 GCOV_CHECK (excess
== 1);
395 memcpy (gcov_var
.buffer
, gcov_var
.buffer
+ gcov_var
.offset
, 4);
398 memmove (gcov_var
.buffer
, gcov_var
.buffer
+ gcov_var
.offset
, excess
* 4);
401 gcov_var
.length
= excess
;
403 GCOV_CHECK (!gcov_var
.length
|| gcov_var
.length
== 1);
404 excess
= GCOV_BLOCK_SIZE
;
406 if (gcov_var
.length
+ words
> gcov_var
.alloc
)
407 gcov_allocate (gcov_var
.length
+ words
);
408 excess
= gcov_var
.alloc
- gcov_var
.length
;
410 excess
= fread (gcov_var
.buffer
+ gcov_var
.length
,
411 1, excess
<< 2, gcov_var
.file
) >> 2;
412 gcov_var
.length
+= excess
;
413 if (gcov_var
.length
< words
)
415 gcov_var
.overread
+= words
- gcov_var
.length
;
420 result
= &gcov_var
.buffer
[gcov_var
.offset
];
421 gcov_var
.offset
+= words
;
425 /* Read unsigned value from a coverage file. Sets error flag on file
426 error, overflow flag on overflow */
428 GCOV_LINKAGE gcov_unsigned_t
429 gcov_read_unsigned (void)
431 gcov_unsigned_t value
;
432 const gcov_unsigned_t
*buffer
= gcov_read_words (1);
436 value
= from_file (buffer
[0]);
440 /* Read counter value from a coverage file. Sets error flag on file
441 error, overflow flag on overflow */
443 GCOV_LINKAGE gcov_type
444 gcov_read_counter (void)
447 const gcov_unsigned_t
*buffer
= gcov_read_words (2);
451 value
= from_file (buffer
[0]);
452 if (sizeof (value
) > sizeof (gcov_unsigned_t
))
453 value
|= ((gcov_type
) from_file (buffer
[1])) << 32;
462 /* Read string from coverage file. Returns a pointer to a static
463 buffer, or NULL on empty string. You must copy the string before
464 calling another gcov function. */
467 GCOV_LINKAGE
const char *
468 gcov_read_string (void)
470 unsigned length
= gcov_read_unsigned ();
475 return (const char *) gcov_read_words (length
);
480 gcov_read_summary (struct gcov_summary
*summary
)
483 struct gcov_ctr_summary
*csum
;
485 summary
->checksum
= gcov_read_unsigned ();
486 for (csum
= summary
->ctrs
, ix
= GCOV_COUNTERS_SUMMABLE
; ix
--; csum
++)
488 csum
->num
= gcov_read_unsigned ();
489 csum
->runs
= gcov_read_unsigned ();
490 csum
->sum_all
= gcov_read_counter ();
491 csum
->run_max
= gcov_read_counter ();
492 csum
->sum_max
= gcov_read_counter ();
497 /* Reset to a known position. BASE should have been obtained from
498 gcov_position, LENGTH should be a record length. */
501 gcov_sync (gcov_position_t base
, gcov_unsigned_t length
)
503 GCOV_CHECK_READING ();
505 if (base
- gcov_var
.start
<= gcov_var
.length
)
506 gcov_var
.offset
= base
- gcov_var
.start
;
509 gcov_var
.offset
= gcov_var
.length
= 0;
510 fseek (gcov_var
.file
, base
<< 2, SEEK_SET
);
511 gcov_var
.start
= ftell (gcov_var
.file
) >> 2;
517 /* Move to the a set position in a gcov file. BASE is zero to move to
518 the end, and nonzero to move to that position. */
521 gcov_seek (gcov_position_t base
)
523 GCOV_CHECK_WRITING ();
525 gcov_write_block (gcov_var
.offset
);
526 fseek (gcov_var
.file
, base
<< 2, base
? SEEK_SET
: SEEK_END
);
527 gcov_var
.start
= ftell (gcov_var
.file
) >> 2;
532 /* Return the modification time of the current gcov file. */
539 if (fstat (fileno (gcov_var
.file
), &status
))
542 return status
.st_mtime
;