2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / gcov-io.c
blob99731f79939edb2c1d048db3b58c7d17740b44f6
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 gcov_unsigned_t *gcov_write_words (unsigned);
30 #endif
31 static const gcov_unsigned_t *gcov_read_words (unsigned);
32 #if !IN_LIBGCOV
33 static void gcov_allocate (unsigned);
34 #endif
36 static inline gcov_unsigned_t from_file (gcov_unsigned_t value)
38 #if !IN_LIBGCOV
39 if (gcov_var.endian)
41 value = (value >> 16) | (value << 16);
42 value = ((value & 0xff00ff) << 8) | ((value >> 8) & 0xff00ff);
44 #endif
45 return value;
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. */
56 GCOV_LINKAGE int
57 #if IN_LIBGCOV
58 gcov_open (const char *name)
59 #else
60 gcov_open (const char *name, int mode)
61 #endif
63 #if IN_LIBGCOV
64 const int mode = 0;
65 #endif
66 #if GCOV_LOCKED
67 struct flock s_flock;
69 s_flock.l_type = F_WRLCK;
70 s_flock.l_whence = SEEK_SET;
71 s_flock.l_start = 0;
72 s_flock.l_len = 0; /* Until EOF. */
73 s_flock.l_pid = getpid ();
74 #endif
76 if (gcov_var.file)
77 abort ();
78 gcov_var.start = 0;
79 gcov_var.offset = gcov_var.length = 0;
80 gcov_var.overread = -1u;
81 gcov_var.error = 0;
82 #if !IN_LIBGCOV
83 gcov_var.endian = 0;
84 #endif
85 if (mode >= 0)
86 gcov_var.file = fopen (name, "r+b");
87 if (gcov_var.file)
88 gcov_var.mode = 1;
89 else if (mode <= 0)
91 gcov_var.file = fopen (name, "w+b");
92 if (gcov_var.file)
93 gcov_var.mode = mode * 2 + 1;
95 if (!gcov_var.file)
96 return 0;
98 setbuf (gcov_var.file, (char *)0);
100 #if GCOV_LOCKED
101 while (fcntl (fileno (gcov_var.file), F_SETLKW, &s_flock)
102 && errno == EINTR)
103 continue;
104 #endif
106 return 1;
109 /* Close the current gcov file. Flushes data to disk. Returns nonzero
110 on failure or error flag set. */
112 GCOV_LINKAGE int
113 gcov_close (void)
115 if (gcov_var.file)
117 #if !IN_GCOV
118 if (gcov_var.offset && gcov_var.mode < 0)
119 gcov_write_block (gcov_var.offset);
120 #endif
121 fclose (gcov_var.file);
122 gcov_var.file = 0;
123 gcov_var.length = 0;
125 #if !IN_LIBGCOV
126 free (gcov_var.buffer);
127 gcov_var.alloc = 0;
128 gcov_var.buffer = 0;
129 #endif
130 gcov_var.mode = 0;
131 return gcov_var.error;
134 #if !IN_LIBGCOV
135 /* Check if MAGIC is EXPECTED. Use it to determine endianness of the
136 file. Returns +1 for same endian, -1 for other endian and zero for
137 not EXPECTED. */
139 GCOV_LINKAGE int
140 gcov_magic (gcov_unsigned_t magic, gcov_unsigned_t expected)
142 if (magic == expected)
143 return 1;
144 magic = (magic >> 16) | (magic << 16);
145 magic = ((magic & 0xff00ff) << 8) | ((magic >> 8) & 0xff00ff);
146 if (magic == expected)
148 gcov_var.endian = 1;
149 return -1;
151 return 0;
153 #endif
155 #if !IN_LIBGCOV
156 static void
157 gcov_allocate (unsigned length)
159 size_t new_size = gcov_var.alloc;
161 if (!new_size)
162 new_size = GCOV_BLOCK_SIZE;
163 new_size += length;
164 new_size *= 2;
166 gcov_var.alloc = new_size;
167 gcov_var.buffer = xrealloc (gcov_var.buffer, new_size << 2);
169 #endif
171 #if !IN_GCOV
172 /* Write out the current block, if needs be. */
174 static void
175 gcov_write_block (unsigned size)
177 if (fwrite (gcov_var.buffer, size << 2, 1, gcov_var.file) != 1)
178 gcov_var.error = 1;
179 gcov_var.start += size;
180 gcov_var.offset -= size;
183 /* Allocate space to write BYTES bytes to the gcov file. Return a
184 pointer to those bytes, or NULL on failure. */
186 static gcov_unsigned_t *
187 gcov_write_words (unsigned words)
189 gcov_unsigned_t *result;
191 GCOV_CHECK_WRITING ();
192 #if IN_LIBGCOV
193 if (gcov_var.offset >= GCOV_BLOCK_SIZE)
195 gcov_write_block (GCOV_BLOCK_SIZE);
196 if (gcov_var.offset)
198 GCOV_CHECK (gcov_var.offset == 1);
199 memcpy (gcov_var.buffer, gcov_var.buffer + GCOV_BLOCK_SIZE, 4);
202 #else
203 if (gcov_var.offset + words > gcov_var.alloc)
204 gcov_allocate (gcov_var.offset + words);
205 #endif
206 result = &gcov_var.buffer[gcov_var.offset];
207 gcov_var.offset += words;
209 return result;
212 /* Write unsigned VALUE to coverage file. Sets error flag
213 appropriately. */
215 GCOV_LINKAGE void
216 gcov_write_unsigned (gcov_unsigned_t value)
218 gcov_unsigned_t *buffer = gcov_write_words (1);
220 buffer[0] = value;
223 /* Write counter VALUE to coverage file. Sets error flag
224 appropriately. */
226 #if IN_LIBGCOV
227 GCOV_LINKAGE void
228 gcov_write_counter (gcov_type value)
230 gcov_unsigned_t *buffer = gcov_write_words (2);
232 buffer[0] = (gcov_unsigned_t) value;
233 if (sizeof (value) > sizeof (gcov_unsigned_t))
234 buffer[1] = (gcov_unsigned_t) (value >> 32);
235 else
236 buffer[1] = 0;
238 if (value < 0)
239 gcov_var.error = -1;
241 #endif /* IN_LIBGCOV */
243 #if !IN_LIBGCOV
244 /* Write STRING to coverage file. Sets error flag on file
245 error, overflow flag on overflow */
247 GCOV_LINKAGE void
248 gcov_write_string (const char *string)
250 unsigned length = 0;
251 unsigned alloc = 0;
252 gcov_unsigned_t *buffer;
254 if (string)
256 length = strlen (string);
257 alloc = (length + 4) >> 2;
260 buffer = gcov_write_words (1 + alloc);
262 buffer[0] = alloc;
263 buffer[alloc] = 0;
264 memcpy (&buffer[1], string, length);
266 #endif
268 #if !IN_LIBGCOV
269 /* Write a tag TAG and reserve space for the record length. Return a
270 value to be used for gcov_write_length. */
272 GCOV_LINKAGE gcov_position_t
273 gcov_write_tag (gcov_unsigned_t tag)
275 gcov_position_t result = gcov_var.start + gcov_var.offset;
276 gcov_unsigned_t *buffer = gcov_write_words (2);
278 buffer[0] = tag;
279 buffer[1] = 0;
281 return result;
284 /* Write a record length using POSITION, which was returned by
285 gcov_write_tag. The current file position is the end of the
286 record, and is restored before returning. Returns nonzero on
287 overflow. */
289 GCOV_LINKAGE void
290 gcov_write_length (gcov_position_t position)
292 unsigned offset;
293 gcov_unsigned_t length;
294 gcov_unsigned_t *buffer;
296 GCOV_CHECK_WRITING ();
297 GCOV_CHECK (position + 2 <= gcov_var.start + gcov_var.offset);
298 GCOV_CHECK (position >= gcov_var.start);
299 offset = position - gcov_var.start;
300 length = gcov_var.offset - offset - 2;
301 buffer = (gcov_unsigned_t *) &gcov_var.buffer[offset];
302 buffer[1] = length;
303 if (gcov_var.offset >= GCOV_BLOCK_SIZE)
304 gcov_write_block (gcov_var.offset);
307 #else /* IN_LIBGCOV */
309 /* Write a tag TAG and length LENGTH. */
311 GCOV_LINKAGE void
312 gcov_write_tag_length (gcov_unsigned_t tag, gcov_unsigned_t length)
314 gcov_unsigned_t *buffer = gcov_write_words (2);
316 buffer[0] = tag;
317 buffer[1] = length;
320 /* Write a summary structure to the gcov file. Return nonzero on
321 overflow. */
323 GCOV_LINKAGE void
324 gcov_write_summary (gcov_unsigned_t tag, const struct gcov_summary *summary)
326 unsigned ix;
327 const struct gcov_ctr_summary *csum;
329 gcov_write_tag_length (tag, GCOV_TAG_SUMMARY_LENGTH);
330 gcov_write_unsigned (summary->checksum);
331 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
333 gcov_write_unsigned (csum->num);
334 gcov_write_unsigned (csum->runs);
335 gcov_write_counter (csum->sum_all);
336 gcov_write_counter (csum->run_max);
337 gcov_write_counter (csum->sum_max);
340 #endif /* IN_LIBGCOV */
342 #endif /*!IN_GCOV */
344 /* Return a pointer to read BYTES bytes from the gcov file. Returns
345 NULL on failure (read past EOF). */
347 static const gcov_unsigned_t *
348 gcov_read_words (unsigned words)
350 const gcov_unsigned_t *result;
351 unsigned excess = gcov_var.length - gcov_var.offset;
353 GCOV_CHECK_READING ();
354 if (excess < words)
356 gcov_var.start += gcov_var.offset;
357 #if IN_LIBGCOV
358 if (excess)
360 GCOV_CHECK (excess == 1);
361 memcpy (gcov_var.buffer, gcov_var.buffer + gcov_var.offset, 4);
363 #else
364 memmove (gcov_var.buffer, gcov_var.buffer + gcov_var.offset, excess * 4);
365 #endif
366 gcov_var.offset = 0;
367 gcov_var.length = excess;
368 #if IN_LIBGCOV
369 GCOV_CHECK (!gcov_var.length || gcov_var.length == 1);
370 excess = GCOV_BLOCK_SIZE;
371 #else
372 if (gcov_var.length + words > gcov_var.alloc)
373 gcov_allocate (gcov_var.length + words);
374 excess = gcov_var.alloc - gcov_var.length;
375 #endif
376 excess = fread (gcov_var.buffer + gcov_var.length,
377 1, excess << 2, gcov_var.file) >> 2;
378 gcov_var.length += excess;
379 if (gcov_var.length < words)
381 gcov_var.overread += words - gcov_var.length;
382 gcov_var.length = 0;
383 return 0;
386 result = &gcov_var.buffer[gcov_var.offset];
387 gcov_var.offset += words;
388 return result;
391 /* Read unsigned value from a coverage file. Sets error flag on file
392 error, overflow flag on overflow */
394 GCOV_LINKAGE gcov_unsigned_t
395 gcov_read_unsigned (void)
397 gcov_unsigned_t value;
398 const gcov_unsigned_t *buffer = gcov_read_words (1);
400 if (!buffer)
401 return 0;
402 value = from_file (buffer[0]);
403 return value;
406 /* Read counter value from a coverage file. Sets error flag on file
407 error, overflow flag on overflow */
409 GCOV_LINKAGE gcov_type
410 gcov_read_counter (void)
412 gcov_type value;
413 const gcov_unsigned_t *buffer = gcov_read_words (2);
415 if (!buffer)
416 return 0;
417 value = from_file (buffer[0]);
418 if (sizeof (value) > sizeof (gcov_unsigned_t))
419 value |= ((gcov_type) from_file (buffer[1])) << 32;
420 else if (buffer[1])
421 gcov_var.error = -1;
423 if (value < 0)
424 gcov_var.error = -1;
425 return value;
428 /* Read string from coverage file. Returns a pointer to a static
429 buffer, or NULL on empty string. You must copy the string before
430 calling another gcov function. */
432 #if !IN_LIBGCOV
433 GCOV_LINKAGE const char *
434 gcov_read_string (void)
436 unsigned length = gcov_read_unsigned ();
438 if (!length)
439 return 0;
441 return (const char *) gcov_read_words (length);
443 #endif
445 GCOV_LINKAGE void
446 gcov_read_summary (struct gcov_summary *summary)
448 unsigned ix;
449 struct gcov_ctr_summary *csum;
451 summary->checksum = gcov_read_unsigned ();
452 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
454 csum->num = gcov_read_unsigned ();
455 csum->runs = gcov_read_unsigned ();
456 csum->sum_all = gcov_read_counter ();
457 csum->run_max = gcov_read_counter ();
458 csum->sum_max = gcov_read_counter ();
462 #if !IN_LIBGCOV
463 /* Reset to a known position. BASE should have been obtained from
464 gcov_position, LENGTH should be a record length. */
466 GCOV_LINKAGE void
467 gcov_sync (gcov_position_t base, gcov_unsigned_t length)
469 GCOV_CHECK_READING ();
470 base += length;
471 if (base - gcov_var.start <= gcov_var.length)
472 gcov_var.offset = base - gcov_var.start;
473 else
475 gcov_var.offset = gcov_var.length = 0;
476 fseek (gcov_var.file, base << 2, SEEK_SET);
477 gcov_var.start = ftell (gcov_var.file) >> 2;
480 #endif
482 #if IN_LIBGCOV
483 /* Move to the a set position in a gcov file. BASE is zero to move to
484 the end, and nonzero to move to that position. */
486 GCOV_LINKAGE void
487 gcov_seek (gcov_position_t base)
489 GCOV_CHECK_WRITING ();
490 if (gcov_var.offset)
491 gcov_write_block (gcov_var.offset);
492 fseek (gcov_var.file, base << 2, base ? SEEK_SET : SEEK_END);
493 gcov_var.start = ftell (gcov_var.file) >> 2;
495 #endif
497 #if IN_GCOV > 0
498 /* Return the modification time of the current gcov file. */
500 GCOV_LINKAGE time_t
501 gcov_time (void)
503 struct stat status;
505 if (fstat (fileno (gcov_var.file), &status))
506 return 0;
507 else
508 return status.st_mtime;
510 #endif /* IN_GCOV */