2003-05-12 Janis Johnson <janis187@us.ibm.com>
[official-gcc.git] / gcc / gcov-io.c
blobd61cff392cd6cc329fb15f356800757a27460dd4
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 /* Open a gcov file. NAME is the name of the file to open and MODE
28 indicates whether a new file should be created, or an existing file
29 opened for modification. If MODE is >= 0 an existing file will be
30 opened, if possible, and if MODE is <= 0, a new file will be
31 created. Use MODE=0 to attempt to reopen an existing file and then
32 fall back on creating a new one. Return zero on failure, >0 on
33 opening an existing file and <0 on creating a new one. */
35 GCOV_LINKAGE int
36 gcov_open (const char *name, int mode)
38 int result = 1;
39 size_t alloc = 1024;
40 #if GCOV_LOCKED
41 struct flock s_flock;
43 s_flock.l_type = F_WRLCK;
44 s_flock.l_whence = SEEK_SET;
45 s_flock.l_start = 0;
46 s_flock.l_len = 0; /* Until EOF. */
47 s_flock.l_pid = getpid ();
48 #endif
50 if (gcov_var.file)
51 abort ();
52 gcov_var.position = gcov_var.length = 0;
53 gcov_var.error = gcov_var.modified = 0;
54 if (mode >= 0)
55 gcov_var.file = fopen (name, "r+b");
56 if (!gcov_var.file && mode <= 0)
58 result = -1;
59 gcov_var.file = fopen (name, "w+b");
61 if (!gcov_var.file)
62 return 0;
64 #if GCOV_LOCKED
65 while (fcntl (fileno (gcov_var.file), F_SETLKW, &s_flock)
66 && errno == EINTR)
67 continue;
68 #endif
70 if (result >= 0)
72 if (fseek (gcov_var.file, 0, SEEK_END))
74 fclose (gcov_var.file);
75 gcov_var.file = 0;
76 return 0;
78 gcov_var.length = ftell (gcov_var.file);
79 fseek (gcov_var.file, 0, SEEK_SET);
80 alloc += gcov_var.length;
82 if (alloc > gcov_var.alloc)
84 if (gcov_var.buffer)
85 free (gcov_var.buffer);
86 gcov_var.alloc = alloc;
87 #if IN_LIBGCOV
88 gcov_var.buffer = malloc (gcov_var.alloc);
89 if (!gcov_var.buffer)
91 fclose (gcov_var.file);
92 gcov_var.file = 0;
93 gcov_var.length = 0;
94 gcov_var.alloc = 0;
95 return 0;
97 #else
98 gcov_var.buffer = xmalloc (gcov_var.alloc);
99 #endif
101 if (result >= 0
102 && fread (gcov_var.buffer, gcov_var.length, 1, gcov_var.file) != 1)
104 fclose (gcov_var.file);
105 gcov_var.file = 0;
106 gcov_var.length = 0;
107 return 0;
109 return result;
112 /* Close the current gcov file. Flushes data to disk. Returns nonzero
113 on failure or error flag set. */
115 GCOV_LINKAGE int
116 gcov_close ()
118 int result = 0;
120 if (gcov_var.file)
122 if (gcov_var.modified
123 && (fseek (gcov_var.file, 0, SEEK_SET)
124 || fwrite (gcov_var.buffer, gcov_var.length,
125 1, gcov_var.file) != 1))
126 result = 1;
127 fclose (gcov_var.file);
128 gcov_var.file = 0;
129 gcov_var.length = 0;
131 #if !IN_LIBGCOV
132 free (gcov_var.buffer);
133 gcov_var.alloc = 0;
134 gcov_var.buffer = 0;
135 #endif
136 return result ? 1 : gcov_var.error;
139 #if !IN_GCOV
140 /* Allocate space to write BYTES bytes to the gcov file. Return a
141 pointer to those bytes, or NULL on failure. */
143 GCOV_LINKAGE unsigned char *
144 gcov_write_bytes (unsigned bytes)
146 char unsigned *result;
148 if (gcov_var.position + bytes > gcov_var.alloc)
150 size_t new_size = (gcov_var.alloc + bytes) * 3 / 2;
152 if (!gcov_var.buffer)
153 return 0;
154 #if IN_LIBGCOV
155 result = realloc (gcov_var.buffer, new_size);
156 if (!result)
158 free (gcov_var.buffer);
159 gcov_var.buffer = 0;
160 gcov_var.alloc = 0;
161 gcov_var.position = gcov_var.length = 0;
162 gcov_var.error = 1;
163 return 0;
165 #else
166 result = xrealloc (gcov_var.buffer, new_size);
167 #endif
168 gcov_var.alloc = new_size;
169 gcov_var.buffer = result;
172 result = &gcov_var.buffer[gcov_var.position];
173 gcov_var.position += bytes;
174 gcov_var.modified = 1;
175 if (gcov_var.position > gcov_var.length)
176 gcov_var.length = gcov_var.position;
177 return result;
180 /* Write unsigned VALUE to coverage file. Sets error flag
181 appropriately. */
183 GCOV_LINKAGE void
184 gcov_write_unsigned (gcov_unsigned_t value)
186 unsigned char *buffer = gcov_write_bytes (4);
187 unsigned ix;
189 if (!buffer)
190 return;
191 for (ix = 4; ix--; )
193 buffer[ix] = value;
194 value >>= 8;
196 if (sizeof (value) > 4 && value)
197 gcov_var.error = -1;
199 return;
202 /* Write counter VALUE to coverage file. Sets error flag
203 appropriately. */
205 #if IN_LIBGCOV
206 GCOV_LINKAGE void
207 gcov_write_counter (gcov_type value)
209 unsigned char *buffer = gcov_write_bytes (8);
210 unsigned ix;
212 if (!buffer)
213 return;
214 for (ix = 8; ix--; )
216 buffer[ix] = value;
217 value >>= 8;
219 if ((sizeof (value) > 8 && value) || value < 0)
220 gcov_var.error = -1;
221 return;
223 #endif /* IN_LIBGCOV */
225 #if !IN_LIBGCOV
226 /* Write STRING to coverage file. Sets error flag on file
227 error, overflow flag on overflow */
229 GCOV_LINKAGE void
230 gcov_write_string (const char *string)
232 unsigned length = 0;
233 unsigned pad = 0;
234 unsigned rem = 0;
235 unsigned char *buffer;
237 if (string)
239 length = strlen (string);
240 rem = 4 - (length & 3);
243 buffer = gcov_write_bytes (4 + length + rem);
244 if (buffer)
246 unsigned ix;
247 unsigned value = length;
249 for (ix = 4; ix--; )
251 buffer[ix] = value;
252 value >>= 8;
254 memcpy (buffer + 4, string, length);
255 memcpy (buffer + 4 + length, &pad, rem);
258 #endif
260 #if !IN_LIBGCOV
261 /* Write a tag TAG and reserve space for the record length. Return a
262 value to be used for gcov_write_length. */
264 GCOV_LINKAGE gcov_position_t
265 gcov_write_tag (gcov_unsigned_t tag)
267 gcov_position_t result = gcov_var.position;
268 unsigned char *buffer = gcov_write_bytes (8);
269 unsigned ix;
271 if (!buffer)
272 return 0;
273 for (ix = 4; ix--; )
275 buffer[ix] = tag;
276 tag >>= 8;
278 memset (buffer + 4, 0, 4);
279 return result;
282 /* Write a record length using POSITION, which was returned by
283 gcov_write_tag. The current file position is the end of the
284 record, and is restored before returning. Returns nonzero on
285 overflow. */
287 GCOV_LINKAGE void
288 gcov_write_length (gcov_position_t position)
290 if (position)
292 gcov_unsigned_t length = gcov_var.position - position - 8;
293 unsigned char *buffer = &gcov_var.buffer[position + 4];
294 unsigned ix;
296 for (ix = 4; ix--; )
298 buffer[ix] = length;
299 length >>= 8;
304 #else /* IN_LIBGCOV */
306 /* Write a tag TAG and length LENGTH. */
308 GCOV_LINKAGE void
309 gcov_write_tag_length (gcov_unsigned_t tag, gcov_unsigned_t length)
311 unsigned char *buffer = gcov_write_bytes (8);
312 unsigned ix;
314 if (!buffer)
315 return;
316 for (ix = 4; ix--; )
318 buffer[ix] = tag;
319 tag >>= 8;
321 for (ix = 4; ix--; )
323 buffer[ix + 4] = length;
324 length >>= 8;
326 return;
329 /* Write a summary structure to the gcov file. Return non-zero on
330 overflow. */
332 GCOV_LINKAGE void
333 gcov_write_summary (gcov_unsigned_t tag, const struct gcov_summary *summary)
335 unsigned ix;
336 const struct gcov_ctr_summary *csum;
338 gcov_write_tag_length (tag, GCOV_TAG_SUMMARY_LENGTH);
339 gcov_write_unsigned (summary->checksum);
340 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
342 gcov_write_unsigned (csum->num);
343 gcov_write_unsigned (csum->runs);
344 gcov_write_counter (csum->sum_all);
345 gcov_write_counter (csum->run_max);
346 gcov_write_counter (csum->sum_max);
349 #endif /* IN_LIBGCOV */
351 #endif /*!IN_GCOV */
353 /* Return a pointer to read BYTES bytes from the gcov file. Returns
354 NULL on failure (read past EOF). */
356 GCOV_LINKAGE const unsigned char *
357 gcov_read_bytes (unsigned bytes)
359 const unsigned char *result;
361 if (gcov_var.position + bytes > gcov_var.length)
363 gcov_var.error = 1;
364 return 0;
367 result = &gcov_var.buffer[gcov_var.position];
368 gcov_var.position += bytes;
369 return result;
372 /* Read unsigned value from a coverage file. Sets error flag on file
373 error, overflow flag on overflow */
375 GCOV_LINKAGE gcov_unsigned_t
376 gcov_read_unsigned ()
378 gcov_unsigned_t value = 0;
379 unsigned ix;
380 const unsigned char *buffer = gcov_read_bytes (4);
382 if (!buffer)
383 return 0;
384 for (ix = sizeof (value); ix < 4; ix++)
385 if (buffer[ix])
386 gcov_var.error = -1;
387 for (ix = 0; ix != 4; ix++)
389 value <<= 8;
390 value |= buffer[ix];
392 return value;
395 /* Read counter value from a coverage file. Sets error flag on file
396 error, overflow flag on overflow */
398 GCOV_LINKAGE gcov_type
399 gcov_read_counter ()
401 gcov_type value = 0;
402 unsigned ix;
403 const unsigned char *buffer = gcov_read_bytes (8);
405 if (!buffer)
406 return 0;
407 for (ix = sizeof (value); ix < 8; ix++)
408 if (buffer[ix])
409 gcov_var.error = -1;
410 for (ix = 0; ix != 8; ix++)
412 value <<= 8;
413 value |= buffer[ix];
415 if (value < 0)
416 gcov_var.error = -1;
417 return value;
420 /* Read string from coverage file. Returns a pointer to a static
421 buffer, or NULL on empty string. You must copy the string before
422 calling another gcov function. */
424 #if !IN_LIBGCOV
425 GCOV_LINKAGE const char *
426 gcov_read_string ()
428 unsigned length = gcov_read_unsigned ();
430 if (!length)
431 return 0;
433 length += 4 - (length & 3);
434 return (const char *) gcov_read_bytes (length);
436 #endif
438 GCOV_LINKAGE void
439 gcov_read_summary (struct gcov_summary *summary)
441 unsigned ix;
442 struct gcov_ctr_summary *csum;
444 summary->checksum = gcov_read_unsigned ();
445 for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
447 csum->num = gcov_read_unsigned ();
448 csum->runs = gcov_read_unsigned ();
449 csum->sum_all = gcov_read_counter ();
450 csum->run_max = gcov_read_counter ();
451 csum->sum_max = gcov_read_counter ();
455 #if IN_GCOV > 0
456 /* Return the modification time of the current gcov file. */
458 GCOV_LINKAGE time_t
459 gcov_time ()
461 struct stat status;
463 if (fstat (fileno (gcov_var.file), &status))
464 return 0;
465 else
466 return status.st_mtime;
468 #endif /* IN_GCOV */