OSDN Git Service

Mon May 12 11:32:53 CEST 2003 Jan Hubicka <jh@suse.cz>
[pf3gnuchains/gcc-fork.git] / gcc / gcov-io.c
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 /* Routines declared in gcov-io.h.  This file should be #included by
25    another source file, after having #included gcov-io.h.  */
26
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.  */
34
35 GCOV_LINKAGE int
36 gcov_open (const char *name, int mode)
37 {
38   int result = 1;
39   size_t alloc = 1024;
40 #if GCOV_LOCKED
41   struct flock s_flock;
42
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
49   
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)
57     {
58       result = -1;
59       gcov_var.file = fopen (name, "w+b");
60     }
61   if (!gcov_var.file)
62     return 0;
63
64 #if GCOV_LOCKED
65   while (fcntl (fileno (gcov_var.file), F_SETLKW, &s_flock)
66          && errno == EINTR)
67     continue;
68 #endif
69
70   if (result >= 0)
71     {
72       if (fseek (gcov_var.file, 0, SEEK_END))
73         {
74           fclose (gcov_var.file);
75           gcov_var.file = 0;
76           return 0;
77         }
78       gcov_var.length = ftell (gcov_var.file);
79       fseek (gcov_var.file, 0, SEEK_SET);
80       alloc += gcov_var.length;
81     }
82   if (alloc > gcov_var.alloc)
83     {
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)
90         {
91           fclose (gcov_var.file);
92           gcov_var.file = 0;
93           gcov_var.length = 0;
94           gcov_var.alloc = 0;
95           return 0;
96         }
97 #else
98       gcov_var.buffer = xmalloc (gcov_var.alloc);
99 #endif
100     }
101   if (result >= 0
102       && fread (gcov_var.buffer, gcov_var.length, 1, gcov_var.file) != 1)
103     {
104       fclose (gcov_var.file);
105       gcov_var.file = 0;
106       gcov_var.length = 0;
107       return 0;
108     }
109   return result;
110 }
111
112 /* Close the current gcov file. Flushes data to disk. Returns nonzero
113    on failure or error flag set.  */
114
115 GCOV_LINKAGE int
116 gcov_close ()
117 {
118   int result = 0;
119   
120   if (gcov_var.file)
121     {
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;
130     }
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;
137 }
138
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.  */
142
143 GCOV_LINKAGE unsigned char *
144 gcov_write_bytes (unsigned bytes)
145 {
146   char unsigned *result;
147
148   if (gcov_var.position + bytes > gcov_var.alloc)
149     {
150       size_t new_size = (gcov_var.alloc + bytes) * 3 / 2;
151
152       if (!gcov_var.buffer)
153         return 0;
154 #if IN_LIBGCOV
155       result = realloc (gcov_var.buffer, new_size);
156       if (!result)
157         {
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;
164         }
165 #else
166       result = xrealloc (gcov_var.buffer, new_size);
167 #endif
168       gcov_var.alloc = new_size;
169       gcov_var.buffer = result;
170     }
171   
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;
178 }
179
180 /* Write unsigned VALUE to coverage file.  Sets error flag
181    appropriately.  */
182
183 GCOV_LINKAGE void
184 gcov_write_unsigned (gcov_unsigned_t value)
185 {
186   unsigned char *buffer = gcov_write_bytes (4);
187   unsigned ix;
188
189   if (!buffer)
190     return;
191   for (ix = 4; ix--; )
192     {
193       buffer[ix] = value;
194       value >>= 8;
195     }
196   if (sizeof (value) > 4 && value)
197     gcov_var.error = -1;
198
199   return;
200 }
201
202 /* Write counter VALUE to coverage file.  Sets error flag
203    appropriately.  */
204
205 #if IN_LIBGCOV
206 GCOV_LINKAGE void
207 gcov_write_counter (gcov_type value)
208 {
209   unsigned char *buffer = gcov_write_bytes (8);
210   unsigned ix;
211
212   if (!buffer)
213     return;
214   for (ix = 8; ix--; )
215     {
216       buffer[ix] = value;
217       value >>= 8;
218     }
219   if ((sizeof (value) > 8 && value) || value < 0)
220     gcov_var.error = -1;
221   return;
222 }
223 #endif /* IN_LIBGCOV */
224
225 #if !IN_LIBGCOV
226 /* Write STRING to coverage file.  Sets error flag on file
227    error, overflow flag on overflow */
228
229 GCOV_LINKAGE void
230 gcov_write_string (const char *string)
231 {
232   unsigned length = 0;
233   unsigned pad = 0;
234   unsigned rem = 0;
235   unsigned char *buffer;
236
237   if (string)
238     {
239       length = strlen (string);
240       rem = 4 - (length & 3);
241     }
242   
243   buffer = gcov_write_bytes (4 + length + rem);
244   if (buffer)
245     {
246       unsigned ix;
247       unsigned value = length;
248       
249       for (ix = 4; ix--; )
250         {
251           buffer[ix] = value;
252           value >>= 8;
253         }
254       memcpy (buffer + 4, string, length);
255       memcpy (buffer + 4 + length, &pad, rem);
256     }
257 }
258 #endif
259
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.  */
263
264 GCOV_LINKAGE gcov_position_t
265 gcov_write_tag (gcov_unsigned_t tag)
266 {
267   gcov_position_t result = gcov_var.position;
268   unsigned char *buffer = gcov_write_bytes (8);
269   unsigned ix;
270
271   if (!buffer)
272     return 0;
273   for (ix = 4; ix--; )
274     {
275       buffer[ix] = tag;
276       tag >>= 8;
277     }
278   memset (buffer + 4, 0, 4);
279   return result;
280 }
281
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.  */
286
287 GCOV_LINKAGE void
288 gcov_write_length (gcov_position_t position)
289 {
290   if (position)
291     {
292       gcov_unsigned_t length = gcov_var.position - position - 8;
293       unsigned char *buffer = &gcov_var.buffer[position + 4];
294       unsigned ix;
295       
296       for (ix = 4; ix--; )
297         {
298           buffer[ix] = length;
299           length >>= 8;
300         }
301     }
302 }
303
304 #else /* IN_LIBGCOV */
305
306 /* Write a tag TAG and length LENGTH.  */
307
308 GCOV_LINKAGE void
309 gcov_write_tag_length (gcov_unsigned_t tag, gcov_unsigned_t length)
310 {
311   unsigned char *buffer = gcov_write_bytes (8);
312   unsigned ix;
313
314   if (!buffer)
315     return;
316   for (ix = 4; ix--; )
317     {
318       buffer[ix] = tag;
319       tag >>= 8;
320     }
321   for (ix = 4; ix--; )
322     {
323       buffer[ix + 4] = length;
324       length >>= 8;
325     }
326   return;
327 }
328
329 /* Write a summary structure to the gcov file.  Return non-zero on
330    overflow.  */
331
332 GCOV_LINKAGE void
333 gcov_write_summary (gcov_unsigned_t tag, const struct gcov_summary *summary)
334 {
335   unsigned ix;
336   const struct gcov_ctr_summary *csum;
337
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++)
341     {
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);
347     }
348 }
349 #endif /* IN_LIBGCOV */
350
351 #endif /*!IN_GCOV */
352
353 /* Return a pointer to read BYTES bytes from the gcov file. Returns
354    NULL on failure (read past EOF). */
355
356 GCOV_LINKAGE const unsigned char *
357 gcov_read_bytes (unsigned bytes)
358 {
359   const unsigned char *result;
360   
361   if (gcov_var.position + bytes > gcov_var.length)
362     {
363       gcov_var.error = 1;
364       return 0;
365     }
366   
367   result = &gcov_var.buffer[gcov_var.position];
368   gcov_var.position += bytes;
369   return result;
370 }
371
372 /* Read unsigned value from a coverage file. Sets error flag on file
373    error, overflow flag on overflow */
374
375 GCOV_LINKAGE gcov_unsigned_t
376 gcov_read_unsigned ()
377 {
378   gcov_unsigned_t value = 0;
379   unsigned ix;
380   const unsigned char *buffer = gcov_read_bytes (4);
381
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++)
388     {
389       value <<= 8;
390       value |= buffer[ix];
391     }
392   return value;
393 }
394
395 /* Read counter value from a coverage file. Sets error flag on file
396    error, overflow flag on overflow */
397
398 GCOV_LINKAGE gcov_type
399 gcov_read_counter ()
400 {
401   gcov_type value = 0;
402   unsigned ix;
403   const unsigned char *buffer = gcov_read_bytes (8);
404
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++)
411     {
412       value <<= 8;
413       value |= buffer[ix];
414     }
415   if (value < 0)
416     gcov_var.error = -1;
417   return value;
418 }
419
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.  */
423
424 #if !IN_LIBGCOV
425 GCOV_LINKAGE const char *
426 gcov_read_string ()
427 {
428   unsigned length = gcov_read_unsigned ();
429   
430   if (!length)
431     return 0;
432
433   length += 4 - (length & 3);
434   return (const char *) gcov_read_bytes (length);
435 }
436 #endif
437
438 GCOV_LINKAGE void
439 gcov_read_summary (struct gcov_summary *summary)
440 {
441   unsigned ix;
442   struct gcov_ctr_summary *csum;
443   
444   summary->checksum = gcov_read_unsigned ();
445   for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
446     {
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 ();
452     }
453 }
454
455 #if IN_GCOV > 0
456 /* Return the modification time of the current gcov file.  */
457
458 GCOV_LINKAGE time_t
459 gcov_time ()
460 {
461   struct stat status;
462   
463   if (fstat (fileno (gcov_var.file), &status))
464     return 0;
465   else
466     return status.st_mtime;
467 }
468 #endif /* IN_GCOV */