Merge trunk version 193672 into gupc branch.
[official-gcc.git] / gcc / gcov-io.h
blobe1532d79bcd957051db2933ed5fbf1f73f763d67
1 /* File format for coverage information
2 Copyright (C) 1996, 1997, 1998, 2000, 2002,
3 2003, 2004, 2005, 2008, 2009 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 3, 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 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
29 /* Coverage information is held in two files. A notes file, which is
30 generated by the compiler, and a data file, which is generated by
31 the program under test. Both files use a similar structure. We do
32 not attempt to make these files backwards compatible with previous
33 versions, as you only need coverage information when developing a
34 program. We do hold version information, so that mismatches can be
35 detected, and we use a format that allows tools to skip information
36 they do not understand or are not interested in.
38 Numbers are recorded in the 32 bit unsigned binary form of the
39 endianness of the machine generating the file. 64 bit numbers are
40 stored as two 32 bit numbers, the low part first. Strings are
41 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
42 of 4. The number of 4 bytes is stored, followed by the padded
43 string. Zero length and NULL strings are simply stored as a length
44 of zero (they have no trailing NUL or padding).
46 int32: byte3 byte2 byte1 byte0 | byte0 byte1 byte2 byte3
47 int64: int32:low int32:high
48 string: int32:0 | int32:length char* char:0 padding
49 padding: | char:0 | char:0 char:0 | char:0 char:0 char:0
50 item: int32 | int64 | string
52 The basic format of the files is
54 file : int32:magic int32:version int32:stamp record*
56 The magic ident is different for the notes and the data files. The
57 magic ident is used to determine the endianness of the file, when
58 reading. The version is the same for both files and is derived
59 from gcc's version number. The stamp value is used to synchronize
60 note and data files and to synchronize merging within a data
61 file. It need not be an absolute time stamp, merely a ticker that
62 increments fast enough and cycles slow enough to distinguish
63 different compile/run/compile cycles.
65 Although the ident and version are formally 32 bit numbers, they
66 are derived from 4 character ASCII strings. The version number
67 consists of the single character major version number, a two
68 character minor version number (leading zero for versions less than
69 10), and a single character indicating the status of the release.
70 That will be 'e' experimental, 'p' prerelease and 'r' for release.
71 Because, by good fortune, these are in alphabetical order, string
72 collating can be used to compare version strings. Be aware that
73 the 'e' designation will (naturally) be unstable and might be
74 incompatible with itself. For gcc 3.4 experimental, it would be
75 '304e' (0x33303465). When the major version reaches 10, the
76 letters A-Z will be used. Assuming minor increments releases every
77 6 months, we have to make a major increment every 50 years.
78 Assuming major increments releases every 5 years, we're ok for the
79 next 155 years -- good enough for me.
81 A record has a tag, length and variable amount of data.
83 record: header data
84 header: int32:tag int32:length
85 data: item*
87 Records are not nested, but there is a record hierarchy. Tag
88 numbers reflect this hierarchy. Tags are unique across note and
89 data files. Some record types have a varying amount of data. The
90 LENGTH is the number of 4bytes that follow and is usually used to
91 determine how much data. The tag value is split into 4 8-bit
92 fields, one for each of four possible levels. The most significant
93 is allocated first. Unused levels are zero. Active levels are
94 odd-valued, so that the LSB of the level is one. A sub-level
95 incorporates the values of its superlevels. This formatting allows
96 you to determine the tag hierarchy, without understanding the tags
97 themselves, and is similar to the standard section numbering used
98 in technical documents. Level values [1..3f] are used for common
99 tags, values [41..9f] for the notes file and [a1..ff] for the data
100 file.
102 The notes file contains the following records
103 note: unit function-graph*
104 unit: header int32:checksum string:source
105 function-graph: announce_function basic_blocks {arcs | lines}*
106 announce_function: header int32:ident
107 int32:lineno_checksum int32:cfg_checksum
108 string:name string:source int32:lineno
109 basic_block: header int32:flags*
110 arcs: header int32:block_no arc*
111 arc: int32:dest_block int32:flags
112 lines: header int32:block_no line*
113 int32:0 string:NULL
114 line: int32:line_no | int32:0 string:filename
116 The BASIC_BLOCK record holds per-bb flags. The number of blocks
117 can be inferred from its data length. There is one ARCS record per
118 basic block. The number of arcs from a bb is implicit from the
119 data length. It enumerates the destination bb and per-arc flags.
120 There is one LINES record per basic block, it enumerates the source
121 lines which belong to that basic block. Source file names are
122 introduced by a line number of 0, following lines are from the new
123 source file. The initial source file for the function is NULL, but
124 the current source file should be remembered from one LINES record
125 to the next. The end of a block is indicated by an empty filename
126 - this does not reset the current source file. Note there is no
127 ordering of the ARCS and LINES records: they may be in any order,
128 interleaved in any manner. The current filename follows the order
129 the LINES records are stored in the file, *not* the ordering of the
130 blocks they are for.
132 The data file contains the following records.
133 data: {unit summary:object summary:program* function-data*}*
134 unit: header int32:checksum
135 function-data: announce_function present counts
136 announce_function: header int32:ident
137 int32:lineno_checksum int32:cfg_checksum
138 present: header int32:present
139 counts: header int64:count*
140 summary: int32:checksum {count-summary}GCOV_COUNTERS_SUMMABLE
141 count-summary: int32:num int32:runs int64:sum
142 int64:max int64:sum_max histogram
143 histogram: {int32:bitvector}8 histogram-buckets*
144 histogram-buckets: int32:num int64:min int64:sum
146 The ANNOUNCE_FUNCTION record is the same as that in the note file,
147 but without the source location. The COUNTS gives the
148 counter values for instrumented features. The about the whole
149 program. The checksum is used for whole program summaries, and
150 disambiguates different programs which include the same
151 instrumented object file. There may be several program summaries,
152 each with a unique checksum. The object summary's checksum is
153 zero. Note that the data file might contain information from
154 several runs concatenated, or the data might be merged.
156 This file is included by both the compiler, gcov tools and the
157 runtime support library libgcov. IN_LIBGCOV and IN_GCOV are used to
158 distinguish which case is which. If IN_LIBGCOV is nonzero,
159 libgcov is being built. If IN_GCOV is nonzero, the gcov tools are
160 being built. Otherwise the compiler is being built. IN_GCOV may be
161 positive or negative. If positive, we are compiling a tool that
162 requires additional functions (see the code for knowledge of what
163 those functions are). */
165 #ifndef GCC_GCOV_IO_H
166 #define GCC_GCOV_IO_H
168 #if IN_LIBGCOV
169 /* About the target */
171 #if BITS_PER_UNIT == 8
172 typedef unsigned gcov_unsigned_t __attribute__ ((mode (SI)));
173 typedef unsigned gcov_position_t __attribute__ ((mode (SI)));
174 #if LONG_LONG_TYPE_SIZE > 32
175 typedef signed gcov_type __attribute__ ((mode (DI)));
176 typedef unsigned gcov_type_unsigned __attribute__ ((mode (DI)));
177 #else
178 typedef signed gcov_type __attribute__ ((mode (SI)));
179 typedef unsigned gcov_type_unsigned __attribute__ ((mode (SI)));
180 #endif
181 #else
182 #if BITS_PER_UNIT == 16
183 typedef unsigned gcov_unsigned_t __attribute__ ((mode (HI)));
184 typedef unsigned gcov_position_t __attribute__ ((mode (HI)));
185 #if LONG_LONG_TYPE_SIZE > 32
186 typedef signed gcov_type __attribute__ ((mode (SI)));
187 typedef unsigned gcov_type_unsigned __attribute__ ((mode (SI)));
188 #else
189 typedef signed gcov_type __attribute__ ((mode (HI)));
190 typedef unsigned gcov_type_unsigned __attribute__ ((mode (HI)));
191 #endif
192 #else
193 typedef unsigned gcov_unsigned_t __attribute__ ((mode (QI)));
194 typedef unsigned gcov_position_t __attribute__ ((mode (QI)));
195 #if LONG_LONG_TYPE_SIZE > 32
196 typedef signed gcov_type __attribute__ ((mode (HI)));
197 typedef unsigned gcov_type_unsigned __attribute__ ((mode (HI)));
198 #else
199 typedef signed gcov_type __attribute__ ((mode (QI)));
200 typedef unsigned gcov_type_unsigned __attribute__ ((mode (QI)));
201 #endif
202 #endif
203 #endif
206 #if defined (TARGET_POSIX_IO)
207 #define GCOV_LOCKED 1
208 #else
209 #define GCOV_LOCKED 0
210 #endif
212 #else /* !IN_LIBGCOV */
213 /* About the host */
215 typedef unsigned gcov_unsigned_t;
216 typedef unsigned gcov_position_t;
217 /* gcov_type is typedef'd elsewhere for the compiler */
218 #if IN_GCOV
219 #define GCOV_LINKAGE static
220 typedef HOST_WIDEST_INT gcov_type;
221 typedef unsigned HOST_WIDEST_INT gcov_type_unsigned;
222 #if IN_GCOV > 0
223 #include <sys/types.h>
224 #endif
225 #else /*!IN_GCOV */
226 #define GCOV_TYPE_SIZE (LONG_LONG_TYPE_SIZE > 32 ? 64 : 32)
227 #endif
229 #if defined (HOST_HAS_F_SETLKW)
230 #define GCOV_LOCKED 1
231 #else
232 #define GCOV_LOCKED 0
233 #endif
235 #endif /* !IN_LIBGCOV */
237 /* In gcov we want function linkage to be static. In the compiler we want
238 it extern, so that they can be accessed from elsewhere. In libgcov we
239 need these functions to be extern, so prefix them with __gcov. In
240 libgcov they must also be hidden so that the instance in the executable
241 is not also used in a DSO. */
242 #if IN_LIBGCOV
244 #include "tconfig.h"
246 #define gcov_var __gcov_var
247 #define gcov_open __gcov_open
248 #define gcov_close __gcov_close
249 #define gcov_write_tag_length __gcov_write_tag_length
250 #define gcov_position __gcov_position
251 #define gcov_seek __gcov_seek
252 #define gcov_rewrite __gcov_rewrite
253 #define gcov_is_error __gcov_is_error
254 #define gcov_write_unsigned __gcov_write_unsigned
255 #define gcov_write_counter __gcov_write_counter
256 #define gcov_write_summary __gcov_write_summary
257 #define gcov_read_unsigned __gcov_read_unsigned
258 #define gcov_read_counter __gcov_read_counter
259 #define gcov_read_summary __gcov_read_summary
261 /* Poison these, so they don't accidentally slip in. */
262 #pragma GCC poison gcov_write_string gcov_write_tag gcov_write_length
263 #pragma GCC poison gcov_read_string gcov_sync gcov_time gcov_magic
265 #ifdef HAVE_GAS_HIDDEN
266 #define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
267 #else
268 #define ATTRIBUTE_HIDDEN
269 #endif
271 #else
273 #define ATTRIBUTE_HIDDEN
275 #endif
277 #ifndef GCOV_LINKAGE
278 #define GCOV_LINKAGE extern
279 #endif
281 /* File suffixes. */
282 #define GCOV_DATA_SUFFIX ".gcda"
283 #define GCOV_NOTE_SUFFIX ".gcno"
285 /* File magic. Must not be palindromes. */
286 #define GCOV_DATA_MAGIC ((gcov_unsigned_t)0x67636461) /* "gcda" */
287 #define GCOV_NOTE_MAGIC ((gcov_unsigned_t)0x67636e6f) /* "gcno" */
289 /* gcov-iov.h is automatically generated by the makefile from
290 version.c, it looks like
291 #define GCOV_VERSION ((gcov_unsigned_t)0x89abcdef)
293 #include "gcov-iov.h"
295 /* Convert a magic or version number to a 4 character string. */
296 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
297 ((ARRAY)[0] = (char)((VALUE) >> 24), \
298 (ARRAY)[1] = (char)((VALUE) >> 16), \
299 (ARRAY)[2] = (char)((VALUE) >> 8), \
300 (ARRAY)[3] = (char)((VALUE) >> 0))
302 /* The record tags. Values [1..3f] are for tags which may be in either
303 file. Values [41..9f] for those in the note file and [a1..ff] for
304 the data file. The tag value zero is used as an explicit end of
305 file marker -- it is not required to be present. */
307 #define GCOV_TAG_FUNCTION ((gcov_unsigned_t)0x01000000)
308 #define GCOV_TAG_FUNCTION_LENGTH (3)
309 #define GCOV_TAG_BLOCKS ((gcov_unsigned_t)0x01410000)
310 #define GCOV_TAG_BLOCKS_LENGTH(NUM) (NUM)
311 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH)
312 #define GCOV_TAG_ARCS ((gcov_unsigned_t)0x01430000)
313 #define GCOV_TAG_ARCS_LENGTH(NUM) (1 + (NUM) * 2)
314 #define GCOV_TAG_ARCS_NUM(LENGTH) (((LENGTH) - 1) / 2)
315 #define GCOV_TAG_LINES ((gcov_unsigned_t)0x01450000)
316 #define GCOV_TAG_COUNTER_BASE ((gcov_unsigned_t)0x01a10000)
317 #define GCOV_TAG_COUNTER_LENGTH(NUM) ((NUM) * 2)
318 #define GCOV_TAG_COUNTER_NUM(LENGTH) ((LENGTH) / 2)
319 #define GCOV_TAG_OBJECT_SUMMARY ((gcov_unsigned_t)0xa1000000) /* Obsolete */
320 #define GCOV_TAG_PROGRAM_SUMMARY ((gcov_unsigned_t)0xa3000000)
321 #define GCOV_TAG_SUMMARY_LENGTH(NUM) \
322 (1 + GCOV_COUNTERS_SUMMABLE * (10 + 3 * 2) + (NUM) * 5)
325 /* Counters that are collected. */
326 #define GCOV_COUNTER_ARCS 0 /* Arc transitions. */
327 #define GCOV_COUNTERS_SUMMABLE 1 /* Counters which can be
328 summaried. */
329 #define GCOV_FIRST_VALUE_COUNTER 1 /* The first of counters used for value
330 profiling. They must form a consecutive
331 interval and their order must match
332 the order of HIST_TYPEs in
333 value-prof.h. */
334 #define GCOV_COUNTER_V_INTERVAL 1 /* Histogram of value inside an interval. */
335 #define GCOV_COUNTER_V_POW2 2 /* Histogram of exact power2 logarithm
336 of a value. */
337 #define GCOV_COUNTER_V_SINGLE 3 /* The most common value of expression. */
338 #define GCOV_COUNTER_V_DELTA 4 /* The most common difference between
339 consecutive values of expression. */
341 #define GCOV_COUNTER_V_INDIR 5 /* The most common indirect address */
342 #define GCOV_COUNTER_AVERAGE 6 /* Compute average value passed to the
343 counter. */
344 #define GCOV_COUNTER_IOR 7 /* IOR of the all values passed to
345 counter. */
346 #define GCOV_LAST_VALUE_COUNTER 7 /* The last of counters used for value
347 profiling. */
348 #define GCOV_COUNTERS 8
350 /* Number of counters used for value profiling. */
351 #define GCOV_N_VALUE_COUNTERS \
352 (GCOV_LAST_VALUE_COUNTER - GCOV_FIRST_VALUE_COUNTER + 1)
354 /* A list of human readable names of the counters */
355 #define GCOV_COUNTER_NAMES {"arcs", "interval", "pow2", "single", \
356 "delta", "indirect_call", "average", "ior"}
358 /* Names of merge functions for counters. */
359 #define GCOV_MERGE_FUNCTIONS {"__gcov_merge_add", \
360 "__gcov_merge_add", \
361 "__gcov_merge_add", \
362 "__gcov_merge_single", \
363 "__gcov_merge_delta", \
364 "__gcov_merge_single", \
365 "__gcov_merge_add", \
366 "__gcov_merge_ior"}
368 /* Convert a counter index to a tag. */
369 #define GCOV_TAG_FOR_COUNTER(COUNT) \
370 (GCOV_TAG_COUNTER_BASE + ((gcov_unsigned_t)(COUNT) << 17))
371 /* Convert a tag to a counter. */
372 #define GCOV_COUNTER_FOR_TAG(TAG) \
373 ((unsigned)(((TAG) - GCOV_TAG_COUNTER_BASE) >> 17))
374 /* Check whether a tag is a counter tag. */
375 #define GCOV_TAG_IS_COUNTER(TAG) \
376 (!((TAG) & 0xFFFF) && GCOV_COUNTER_FOR_TAG (TAG) < GCOV_COUNTERS)
378 /* The tag level mask has 1's in the position of the inner levels, &
379 the lsb of the current level, and zero on the current and outer
380 levels. */
381 #define GCOV_TAG_MASK(TAG) (((TAG) - 1) ^ (TAG))
383 /* Return nonzero if SUB is an immediate subtag of TAG. */
384 #define GCOV_TAG_IS_SUBTAG(TAG,SUB) \
385 (GCOV_TAG_MASK (TAG) >> 8 == GCOV_TAG_MASK (SUB) \
386 && !(((SUB) ^ (TAG)) & ~GCOV_TAG_MASK(TAG)))
388 /* Return nonzero if SUB is at a sublevel to TAG. */
389 #define GCOV_TAG_IS_SUBLEVEL(TAG,SUB) \
390 (GCOV_TAG_MASK (TAG) > GCOV_TAG_MASK (SUB))
392 /* Basic block flags. */
393 #define GCOV_BLOCK_UNEXPECTED (1 << 1)
395 /* Arc flags. */
396 #define GCOV_ARC_ON_TREE (1 << 0)
397 #define GCOV_ARC_FAKE (1 << 1)
398 #define GCOV_ARC_FALLTHROUGH (1 << 2)
400 /* Structured records. */
402 /* Structure used for each bucket of the log2 histogram of counter values. */
403 typedef struct
405 /* Number of counters whose profile count falls within the bucket. */
406 gcov_unsigned_t num_counters;
407 /* Smallest profile count included in this bucket. */
408 gcov_type min_value;
409 /* Cumulative value of the profile counts in this bucket. */
410 gcov_type cum_value;
411 } gcov_bucket_type;
413 /* For a log2 scale histogram with each range split into 4
414 linear sub-ranges, there will be at most 64 (max gcov_type bit size) - 1 log2
415 ranges since the lowest 2 log2 values share the lowest 4 linear
416 sub-range (values 0 - 3). This is 252 total entries (63*4). */
418 #define GCOV_HISTOGRAM_SIZE 252
420 /* How many unsigned ints are required to hold a bit vector of non-zero
421 histogram entries when the histogram is written to the gcov file.
422 This is essentially a ceiling divide by 32 bits. */
423 #define GCOV_HISTOGRAM_BITVECTOR_SIZE (GCOV_HISTOGRAM_SIZE + 31) / 32
425 /* Cumulative counter data. */
426 struct gcov_ctr_summary
428 gcov_unsigned_t num; /* number of counters. */
429 gcov_unsigned_t runs; /* number of program runs */
430 gcov_type sum_all; /* sum of all counters accumulated. */
431 gcov_type run_max; /* maximum value on a single run. */
432 gcov_type sum_max; /* sum of individual run max values. */
433 gcov_bucket_type histogram[GCOV_HISTOGRAM_SIZE]; /* histogram of
434 counter values. */
437 /* Object & program summary record. */
438 struct gcov_summary
440 gcov_unsigned_t checksum; /* checksum of program */
441 struct gcov_ctr_summary ctrs[GCOV_COUNTERS_SUMMABLE];
444 /* Structures embedded in coveraged program. The structures generated
445 by write_profile must match these. */
447 #if IN_LIBGCOV
448 /* Information about counters for a single function. */
449 struct gcov_ctr_info
451 gcov_unsigned_t num; /* number of counters. */
452 gcov_type *values; /* their values. */
455 /* Information about a single function. This uses the trailing array
456 idiom. The number of counters is determined from the merge pointer
457 array in gcov_info. The key is used to detect which of a set of
458 comdat functions was selected -- it points to the gcov_info object
459 of the object file containing the selected comdat function. */
461 struct gcov_fn_info
463 const struct gcov_info *key; /* comdat key */
464 gcov_unsigned_t ident; /* unique ident of function */
465 gcov_unsigned_t lineno_checksum; /* function lineo_checksum */
466 gcov_unsigned_t cfg_checksum; /* function cfg checksum */
467 struct gcov_ctr_info ctrs[0]; /* instrumented counters */
470 /* Type of function used to merge counters. */
471 typedef void (*gcov_merge_fn) (gcov_type *, gcov_unsigned_t);
473 /* Information about a single object file. */
474 struct gcov_info
476 gcov_unsigned_t version; /* expected version number */
477 struct gcov_info *next; /* link to next, used by libgcov */
479 gcov_unsigned_t stamp; /* uniquifying time stamp */
480 const char *filename; /* output file name */
482 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for
483 unused) */
485 unsigned n_functions; /* number of functions */
486 const struct gcov_fn_info *const *functions; /* pointer to pointers
487 to function information */
490 /* Register a new object file module. */
491 extern void __gcov_init (struct gcov_info *) ATTRIBUTE_HIDDEN;
493 /* Called before fork, to avoid double counting. */
494 extern void __gcov_flush (void) ATTRIBUTE_HIDDEN;
496 /* Function to reset all counters to 0. */
497 extern void __gcov_reset (void);
499 /* Function to enable early write of profile information so far. */
500 extern void __gcov_dump (void);
502 /* The merge function that just sums the counters. */
503 extern void __gcov_merge_add (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
505 /* The merge function to choose the most common value. */
506 extern void __gcov_merge_single (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
508 /* The merge function to choose the most common difference between
509 consecutive values. */
510 extern void __gcov_merge_delta (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
512 /* The merge function that just ors the counters together. */
513 extern void __gcov_merge_ior (gcov_type *, unsigned) ATTRIBUTE_HIDDEN;
515 /* The profiler functions. */
516 extern void __gcov_interval_profiler (gcov_type *, gcov_type, int, unsigned);
517 extern void __gcov_pow2_profiler (gcov_type *, gcov_type);
518 extern void __gcov_one_value_profiler (gcov_type *, gcov_type);
519 extern void __gcov_indirect_call_profiler (gcov_type *, gcov_type, void *, void *);
520 extern void __gcov_average_profiler (gcov_type *, gcov_type);
521 extern void __gcov_ior_profiler (gcov_type *, gcov_type);
523 #ifndef inhibit_libc
524 /* The wrappers around some library functions.. */
525 extern pid_t __gcov_fork (void) ATTRIBUTE_HIDDEN;
526 extern int __gcov_execl (const char *, char *, ...) ATTRIBUTE_HIDDEN;
527 extern int __gcov_execlp (const char *, char *, ...) ATTRIBUTE_HIDDEN;
528 extern int __gcov_execle (const char *, char *, ...) ATTRIBUTE_HIDDEN;
529 extern int __gcov_execv (const char *, char *const []) ATTRIBUTE_HIDDEN;
530 extern int __gcov_execvp (const char *, char *const []) ATTRIBUTE_HIDDEN;
531 extern int __gcov_execve (const char *, char *const [], char *const [])
532 ATTRIBUTE_HIDDEN;
533 #endif
535 #endif /* IN_LIBGCOV */
537 #if IN_LIBGCOV >= 0
539 /* Optimum number of gcov_unsigned_t's read from or written to disk. */
540 #define GCOV_BLOCK_SIZE (1 << 10)
542 GCOV_LINKAGE struct gcov_var
544 FILE *file;
545 gcov_position_t start; /* Position of first byte of block */
546 unsigned offset; /* Read/write position within the block. */
547 unsigned length; /* Read limit in the block. */
548 unsigned overread; /* Number of words overread. */
549 int error; /* < 0 overflow, > 0 disk error. */
550 int mode; /* < 0 writing, > 0 reading */
551 #if IN_LIBGCOV
552 /* Holds one block plus 4 bytes, thus all coverage reads & writes
553 fit within this buffer and we always can transfer GCOV_BLOCK_SIZE
554 to and from the disk. libgcov never backtracks and only writes 4
555 or 8 byte objects. */
556 gcov_unsigned_t buffer[GCOV_BLOCK_SIZE + 1];
557 #else
558 int endian; /* Swap endianness. */
559 /* Holds a variable length block, as the compiler can write
560 strings and needs to backtrack. */
561 size_t alloc;
562 gcov_unsigned_t *buffer;
563 #endif
564 } gcov_var ATTRIBUTE_HIDDEN;
566 /* Functions for reading and writing gcov files. In libgcov you can
567 open the file for reading then writing. Elsewhere you can open the
568 file either for reading or for writing. When reading a file you may
569 use the gcov_read_* functions, gcov_sync, gcov_position, &
570 gcov_error. When writing a file you may use the gcov_write
571 functions, gcov_seek & gcov_error. When a file is to be rewritten
572 you use the functions for reading, then gcov_rewrite then the
573 functions for writing. Your file may become corrupted if you break
574 these invariants. */
575 #if IN_LIBGCOV
576 GCOV_LINKAGE int gcov_open (const char */*name*/) ATTRIBUTE_HIDDEN;
577 #else
578 GCOV_LINKAGE int gcov_open (const char */*name*/, int /*direction*/);
579 GCOV_LINKAGE int gcov_magic (gcov_unsigned_t, gcov_unsigned_t);
580 #endif
581 GCOV_LINKAGE int gcov_close (void) ATTRIBUTE_HIDDEN;
583 /* Available everywhere. */
584 static gcov_position_t gcov_position (void);
585 static int gcov_is_error (void);
587 GCOV_LINKAGE gcov_unsigned_t gcov_read_unsigned (void) ATTRIBUTE_HIDDEN;
588 GCOV_LINKAGE gcov_type gcov_read_counter (void) ATTRIBUTE_HIDDEN;
589 GCOV_LINKAGE void gcov_read_summary (struct gcov_summary *) ATTRIBUTE_HIDDEN;
591 #if IN_LIBGCOV
592 /* Available only in libgcov */
593 GCOV_LINKAGE void gcov_write_counter (gcov_type) ATTRIBUTE_HIDDEN;
594 GCOV_LINKAGE void gcov_write_tag_length (gcov_unsigned_t, gcov_unsigned_t)
595 ATTRIBUTE_HIDDEN;
596 GCOV_LINKAGE void gcov_write_summary (gcov_unsigned_t /*tag*/,
597 const struct gcov_summary *)
598 ATTRIBUTE_HIDDEN;
599 static void gcov_rewrite (void);
600 GCOV_LINKAGE void gcov_seek (gcov_position_t /*position*/) ATTRIBUTE_HIDDEN;
601 #else
602 /* Available outside libgcov */
603 GCOV_LINKAGE const char *gcov_read_string (void);
604 GCOV_LINKAGE void gcov_sync (gcov_position_t /*base*/,
605 gcov_unsigned_t /*length */);
606 #endif
608 #if !IN_GCOV
609 /* Available outside gcov */
610 GCOV_LINKAGE void gcov_write_unsigned (gcov_unsigned_t) ATTRIBUTE_HIDDEN;
611 #endif
613 #if !IN_GCOV && !IN_LIBGCOV
614 /* Available only in compiler */
615 GCOV_LINKAGE void gcov_write_string (const char *);
616 GCOV_LINKAGE gcov_position_t gcov_write_tag (gcov_unsigned_t);
617 GCOV_LINKAGE void gcov_write_length (gcov_position_t /*position*/);
618 #endif
620 #if IN_GCOV > 0
621 /* Available in gcov */
622 GCOV_LINKAGE time_t gcov_time (void);
623 #endif
625 /* Save the current position in the gcov file. */
627 static inline gcov_position_t
628 gcov_position (void)
630 gcc_assert (gcov_var.mode > 0);
631 return gcov_var.start + gcov_var.offset;
634 /* Return nonzero if the error flag is set. */
636 static inline int
637 gcov_is_error (void)
639 return gcov_var.file ? gcov_var.error : 1;
642 #if IN_LIBGCOV
643 /* Move to beginning of file and initialize for writing. */
645 static inline void
646 gcov_rewrite (void)
648 gcc_assert (gcov_var.mode > 0);
649 gcov_var.mode = -1;
650 gcov_var.start = 0;
651 gcov_var.offset = 0;
652 fseek (gcov_var.file, 0L, SEEK_SET);
654 #endif
656 #endif /* IN_LIBGCOV >= 0 */
658 #endif /* GCC_GCOV_IO_H */