Missed one in last change.
[official-gcc.git] / gcc / gcov-io.c
blobd0ca126644746ce80f7f631782ab4090b59c7cd4
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>.
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
12 version.
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.
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. */
24 /* Routines declared in gcov-io.h. This file should be #included by
25 another source file, after having #included gcov-io.h. */
27 #if !IN_GCOV
28 static void gcov_write_block (unsigned);
29 static unsigned char *gcov_write_bytes (unsigned);
30 #endif
31 static const unsigned char *gcov_read_bytes (unsigned);
32 #if !IN_LIBGCOV
33 static void gcov_allocate (unsigned);
34 #endif
36 /* Open a gcov file. NAME is the name of the file to open and MODE
37 indicates whether a new file should be created, or an existing file
38 opened for modification. If MODE is >= 0 an existing file will be
39 opened, if possible, and if MODE is <= 0, a new file will be
40 created. Use MODE=0 to attempt to reopen an existing file and then
41 fall back on creating a new one. Return zero on failure, >0 on
42 opening an existing file and <0 on creating a new one. */
44 GCOV_LINKAGE int
45 gcov_open (const char *name, int mode)
47 int result = 1;
48 #if GCOV_LOCKED
49 struct flock s_flock;
51 s_flock.l_type = F_WRLCK;
52 s_flock.l_whence = SEEK_SET;
53 s_flock.l_start = 0;
54 s_flock.l_len = 0; /* Until EOF. */
55 s_flock.l_pid = getpid ();
56 #endif
58 if (gcov_var.file)
59 abort ();
60 gcov_var.start = 0;
61 gcov_var.offset = gcov_var.length = 0;
62 gcov_var.overread = -4u;
63 gcov_var.error = 0;
64 if (mode >= 0)
65 gcov_var.file = fopen (name, "r+b");
66 if (gcov_var.file)
67 gcov_var.mode = 1;
68 else if (mode <= 0)
70 result = -1;
71 gcov_var.file = fopen (name, "w+b");
72 if (gcov_var.file)
73 gcov_var.mode = -1;
75 if (!gcov_var.file)
76 return 0;
78 setbuf (gcov_var.file, (char *)0);
80 #if GCOV_LOCKED
81 while (fcntl (fileno (gcov_var.file), F_SETLKW, &s_flock)
82 && errno == EINTR)
83 continue;
84 #endif
86 return result;
89 /* Close the current gcov file. Flushes data to disk. Returns nonzero
90 on failure or error flag set. */
92 GCOV_LINKAGE int
93 gcov_close (void)
95 if (gcov_var.file)
97 #if !IN_GCOV
98 if (gcov_var.offset && gcov_var.mode < 0)
99 gcov_write_block (gcov_var.offset);
100 #endif
101 fclose (gcov_var.file);
102 gcov_var.file = 0;
103 gcov_var.length = 0;
105 #if !IN_LIBGCOV
106 free (gcov_var.buffer);
107 gcov_var.alloc = 0;
108 gcov_var.buffer = 0;
109 #endif
110 gcov_var.mode = 0;
111 return gcov_var.error;
114 #if !IN_LIBGCOV
115 static void
116 gcov_allocate (unsigned length)
118 size_t new_size = gcov_var.alloc;
120 if (!new_size)
121 new_size = GCOV_BLOCK_SIZE;
122 new_size += length;
123 new_size *= 2;
125 gcov_var.alloc = new_size;
126 gcov_var.buffer = xrealloc (gcov_var.buffer, new_size);
128 #endif
130 #if !IN_GCOV
131 /* Write out the current block, if needs be. */
133 static void
134 gcov_write_block (unsigned size)
136 if (fwrite (gcov_var.buffer, size, 1, gcov_var.file) != 1)
137 gcov_var.error = 1;
138 gcov_var.start += size;
139 gcov_var.offset -= size;
142 /* Allocate space to write BYTES bytes to the gcov file. Return a
143 pointer to those bytes, or NULL on failure. */
145 static unsigned char *
146 gcov_write_bytes (unsigned bytes)
148 char unsigned *result;
150 GCOV_CHECK_WRITING ();
151 #if IN_LIBGCOV
152 if (gcov_var.offset >= GCOV_BLOCK_SIZE)
154 gcov_write_block (GCOV_BLOCK_SIZE);
155 if (gcov_var.offset)
157 GCOV_CHECK (gcov_var.offset == 4);
158 memcpy (gcov_var.buffer, gcov_var.buffer + GCOV_BLOCK_SIZE, 4);
161 #else
162 if (gcov_var.offset + bytes > gcov_var.alloc)
163 gcov_allocate (gcov_var.offset + bytes);
164 #endif
165 result = &gcov_var.buffer[gcov_var.offset];
166 gcov_var.offset += bytes;
168 return result;
171 /* Write unsigned VALUE to coverage file. Sets error flag
172 appropriately. */
174 GCOV_LINKAGE void
175 gcov_write_unsigned (gcov_unsigned_t value)
177 unsigned char *buffer = gcov_write_bytes (4);
178 unsigned ix;
180 for (ix = 4; ix--; )
182 buffer[ix] = value;
183 value >>= 8;
185 if (sizeof (value) > 4 && value)
186 gcov_var.error = -1;
188 return;
191 /* Write counter VALUE to coverage file. Sets error flag
192 appropriately. */
194 #if IN_LIBGCOV
195 GCOV_LINKAGE void
196 gcov_write_counter (gcov_type value)
198 unsigned char *buffer = gcov_write_bytes (8);
199 unsigned ix;
201 for (ix = 8; ix--; )
203 buffer[ix] = value;
204 value >>= 8;
206 if ((sizeof (value) > 8 && value) || value < 0)
207 gcov_var.error = -1;
208 return;
210 #endif /* IN_LIBGCOV */
212 #if !IN_LIBGCOV
213 /* Write STRING to coverage file. Sets error flag on file
214 error, overflow flag on overflow */
216 GCOV_LINKAGE void
217 gcov_write_string (const char *string)
219 unsigned length = 0;
220 unsigned pad = 0;
221 unsigned rem = 0;
222 unsigned char *buffer;
223 unsigned ix;
224 unsigned value;
226 if (string)
228 length = strlen (string);
229 rem = 4 - (length & 3);
232 buffer = gcov_write_bytes (4 + length + rem);
234 value = length;
235 for (ix = 4; ix--; )
237 buffer[ix] = value;
238 value >>= 8;
240 memcpy (buffer + 4, string, length);
241 memcpy (buffer + 4 + length, &pad, rem);
243 #endif
245 #if !IN_LIBGCOV
246 /* Write a tag TAG and reserve space for the record length. Return a
247 value to be used for gcov_write_length. */
249 GCOV_LINKAGE gcov_position_t
250 gcov_write_tag (gcov_unsigned_t tag)
252 gcov_position_t result = gcov_var.start + gcov_var.offset;
253 unsigned char *buffer = gcov_write_bytes (8);
254 unsigned ix;
256 for (ix = 4; ix--; )
258 buffer[ix] = tag;
259 tag >>= 8;
261 memset (buffer + 4, 0, 4);
262 return result;
265 /* Write a record length using POSITION, which was returned by
266 gcov_write_tag. The current file position is the end of the
267 record, and is restored before returning. Returns nonzero on
268 overflow. */
270 GCOV_LINKAGE void
271 gcov_write_length (gcov_position_t position)
273 unsigned offset;
274 gcov_unsigned_t length;
275 unsigned char *buffer;
276 unsigned ix;
278 GCOV_CHECK_WRITING ();
279 GCOV_CHECK (position + 8 <= gcov_var.start + gcov_var.offset);
280 GCOV_CHECK (position >= gcov_var.start);
281 offset = position - gcov_var.start;
282 length = gcov_var.offset - offset - 8;
283 buffer = &gcov_var.buffer[offset + 4];
284 for (ix = 4; ix--; )
286 buffer[ix] = length;
287 length >>= 8;
289 if (gcov_var.offset >= GCOV_BLOCK_SIZE)
290 gcov_write_block (gcov_var.offset);
293 #else /* IN_LIBGCOV */
295 /* Write a tag TAG and length LENGTH. */
297 GCOV_LINKAGE void
298 gcov_write_tag_length (gcov_unsigned_t tag, gcov_unsigned_t length)
300 unsigned char *buffer = gcov_write_bytes (8);
301 unsigned ix;
303 for (ix = 4; ix--; )
305 buffer[ix] = tag;
306 tag >>= 8;
308 for (ix = 4; ix--; )
310 buffer[ix + 4] = length;
311 length >>= 8;
313 return;
316 /* Write a summary structure to the gcov file. Return nonzero on
317 overflow. */
319 GCOV_LINKAGE void
320 gcov_write_summary (gcov_unsigned_t tag, const struct gcov_summary *summary)
322 unsigned ix;
323 const struct gcov_ctr_summary *csum;
325 gcov_write_tag_length (tag, GCOV_TAG_SUMMARY_LENGTH);
326 gcov_write_unsigned (summary->checksum);
327 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
329 gcov_write_unsigned (csum->num);
330 gcov_write_unsigned (csum->runs);
331 gcov_write_counter (csum->sum_all);
332 gcov_write_counter (csum->run_max);
333 gcov_write_counter (csum->sum_max);
336 #endif /* IN_LIBGCOV */
338 #endif /*!IN_GCOV */
340 /* Return a pointer to read BYTES bytes from the gcov file. Returns
341 NULL on failure (read past EOF). */
343 static const unsigned char *
344 gcov_read_bytes (unsigned bytes)
346 const unsigned char *result;
347 unsigned excess = gcov_var.length - gcov_var.offset;
349 GCOV_CHECK_READING ();
350 if (excess < bytes)
352 gcov_var.start += gcov_var.offset;
353 #if IN_LIBGCOV
354 if (excess)
356 GCOV_CHECK (excess == 4);
357 memcpy (gcov_var.buffer, gcov_var.buffer + gcov_var.offset, 4);
359 #else
360 memmove (gcov_var.buffer, gcov_var.buffer + gcov_var.offset, excess);
361 #endif
362 gcov_var.offset = 0;
363 gcov_var.length = excess;
364 #if IN_LIBGCOV
365 GCOV_CHECK (!gcov_var.length || gcov_var.length == 4);
366 excess = GCOV_BLOCK_SIZE;
367 #else
368 if (gcov_var.length + bytes > gcov_var.alloc)
369 gcov_allocate (gcov_var.length + bytes);
370 excess = gcov_var.alloc - gcov_var.length;
371 #endif
372 excess = fread (gcov_var.buffer + gcov_var.length,
373 1, excess, gcov_var.file);
374 gcov_var.length += excess;
375 if (gcov_var.length < bytes)
377 gcov_var.overread += bytes - gcov_var.length;
378 gcov_var.length = 0;
379 return 0;
382 result = &gcov_var.buffer[gcov_var.offset];
383 gcov_var.offset += bytes;
384 return result;
387 /* Read unsigned value from a coverage file. Sets error flag on file
388 error, overflow flag on overflow */
390 GCOV_LINKAGE gcov_unsigned_t
391 gcov_read_unsigned (void)
393 gcov_unsigned_t value = 0;
394 unsigned ix;
395 const unsigned char *buffer = gcov_read_bytes (4);
397 if (!buffer)
398 return 0;
399 for (ix = sizeof (value); ix < 4; ix++)
400 if (buffer[ix])
401 gcov_var.error = -1;
402 for (ix = 0; ix != 4; ix++)
404 value <<= 8;
405 value |= buffer[ix];
407 return value;
410 /* Read counter value from a coverage file. Sets error flag on file
411 error, overflow flag on overflow */
413 GCOV_LINKAGE gcov_type
414 gcov_read_counter (void)
416 gcov_type value = 0;
417 unsigned ix;
418 const unsigned char *buffer = gcov_read_bytes (8);
420 if (!buffer)
421 return 0;
422 for (ix = sizeof (value); ix < 8; ix++)
423 if (buffer[ix])
424 gcov_var.error = -1;
425 for (ix = 0; ix != 8; ix++)
427 value <<= 8;
428 value |= buffer[ix];
430 if (value < 0)
431 gcov_var.error = -1;
432 return value;
435 /* Read string from coverage file. Returns a pointer to a static
436 buffer, or NULL on empty string. You must copy the string before
437 calling another gcov function. */
439 #if !IN_LIBGCOV
440 GCOV_LINKAGE const char *
441 gcov_read_string (void)
443 unsigned length = gcov_read_unsigned ();
445 if (!length)
446 return 0;
448 length += 4 - (length & 3);
449 return (const char *) gcov_read_bytes (length);
451 #endif
453 GCOV_LINKAGE void
454 gcov_read_summary (struct gcov_summary *summary)
456 unsigned ix;
457 struct gcov_ctr_summary *csum;
459 summary->checksum = gcov_read_unsigned ();
460 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
462 csum->num = gcov_read_unsigned ();
463 csum->runs = gcov_read_unsigned ();
464 csum->sum_all = gcov_read_counter ();
465 csum->run_max = gcov_read_counter ();
466 csum->sum_max = gcov_read_counter ();
470 #if !IN_LIBGCOV
471 /* Reset to a known position. BASE should have been obtained from
472 gcov_position, LENGTH should be a record length. */
474 GCOV_LINKAGE void
475 gcov_sync (gcov_position_t base, gcov_unsigned_t length)
477 GCOV_CHECK_READING ();
478 base += length;
479 if (base - gcov_var.start <= gcov_var.length)
480 gcov_var.offset = base - gcov_var.start;
481 else
483 gcov_var.offset = gcov_var.length = 0;
484 fseek (gcov_var.file, base, SEEK_SET);
485 gcov_var.start = ftell (gcov_var.file);
488 #endif
490 #if IN_LIBGCOV
491 /* Move to the a set position in a gcov file. BASE is zero to move to
492 the end, and nonzero to move to that position. */
494 GCOV_LINKAGE void
495 gcov_seek (gcov_position_t base)
497 GCOV_CHECK_WRITING ();
498 if (gcov_var.offset)
499 gcov_write_block (gcov_var.offset);
500 fseek (gcov_var.file, base, base ? SEEK_SET : SEEK_END);
501 gcov_var.start = ftell (gcov_var.file);
503 #endif
505 #if IN_GCOV > 0
506 /* Return the modification time of the current gcov file. */
508 GCOV_LINKAGE time_t
509 gcov_time (void)
511 struct stat status;
513 if (fstat (fileno (gcov_var.file), &status))
514 return 0;
515 else
516 return status.st_mtime;
518 #endif /* IN_GCOV */