Rename __attribute__((packed)) --> __packed
[coreboot.git] / src / lib / gcov-io.h
blob4c0b2e4e423ee9d50f9bab78b2b65657bee45863
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.
25 /* Coverage information is held in two files. A notes file, which is
26 generated by the compiler, and a data file, which is generated by
27 the program under test. Both files use a similar structure. We do
28 not attempt to make these files backwards compatible with previous
29 versions, as you only need coverage information when developing a
30 program. We do hold version information, so that mismatches can be
31 detected, and we use a format that allows tools to skip information
32 they do not understand or are not interested in.
34 Numbers are recorded in the 32 bit unsigned binary form of the
35 endianness of the machine generating the file. 64 bit numbers are
36 stored as two 32 bit numbers, the low part first. Strings are
37 padded with 1 to 4 NUL bytes, to bring the length up to a multiple
38 of 4. The number of 4 bytes is stored, followed by the padded
39 string. Zero length and NULL strings are simply stored as a length
40 of zero (they have no trailing NUL or padding).
42 int32: byte3 byte2 byte1 byte0 | byte0 byte1 byte2 byte3
43 int64: int32:low int32:high
44 string: int32:0 | int32:length char* char:0 padding
45 padding: | char:0 | char:0 char:0 | char:0 char:0 char:0
46 item: int32 | int64 | string
48 The basic format of the files is
50 file : int32:magic int32:version int32:stamp record*
52 The magic ident is different for the notes and the data files. The
53 magic ident is used to determine the endianness of the file, when
54 reading. The version is the same for both files and is derived
55 from gcc's version number. The stamp value is used to synchronize
56 note and data files and to synchronize merging within a data
57 file. It need not be an absolute time stamp, merely a ticker that
58 increments fast enough and cycles slow enough to distinguish
59 different compile/run/compile cycles.
61 Although the ident and version are formally 32 bit numbers, they
62 are derived from 4 character ASCII strings. The version number
63 consists of the single character major version number, a two
64 character minor version number (leading zero for versions less than
65 10), and a single character indicating the status of the release.
66 That will be 'e' experimental, 'p' prerelease and 'r' for release.
67 Because, by good fortune, these are in alphabetical order, string
68 collating can be used to compare version strings. Be aware that
69 the 'e' designation will (naturally) be unstable and might be
70 incompatible with itself. For gcc 3.4 experimental, it would be
71 '304e' (0x33303465). When the major version reaches 10, the
72 letters A-Z will be used. Assuming minor increments releases every
73 6 months, we have to make a major increment every 50 years.
74 Assuming major increments releases every 5 years, we're ok for the
75 next 155 years -- good enough for me.
77 A record has a tag, length and variable amount of data.
79 record: header data
80 header: int32:tag int32:length
81 data: item*
83 Records are not nested, but there is a record hierarchy. Tag
84 numbers reflect this hierarchy. Tags are unique across note and
85 data files. Some record types have a varying amount of data. The
86 LENGTH is the number of 4bytes that follow and is usually used to
87 determine how much data. The tag value is split into 4 8-bit
88 fields, one for each of four possible levels. The most significant
89 is allocated first. Unused levels are zero. Active levels are
90 odd-valued, so that the LSB of the level is one. A sub-level
91 incorporates the values of its superlevels. This formatting allows
92 you to determine the tag hierarchy, without understanding the tags
93 themselves, and is similar to the standard section numbering used
94 in technical documents. Level values [1..3f] are used for common
95 tags, values [41..9f] for the notes file and [a1..ff] for the data
96 file.
98 The basic block graph file contains the following records
99 note: unit function-graph*
100 unit: header int32:checksum string:source
101 function-graph: announce_function basic_blocks {arcs | lines}*
102 announce_function: header int32:ident
103 int32:lineno_checksum int32:cfg_checksum
104 string:name string:source int32:lineno
105 basic_block: header int32:flags*
106 arcs: header int32:block_no arc*
107 arc: int32:dest_block int32:flags
108 lines: header int32:block_no line*
109 int32:0 string:NULL
110 line: int32:line_no | int32:0 string:filename
112 The BASIC_BLOCK record holds per-bb flags. The number of blocks
113 can be inferred from its data length. There is one ARCS record per
114 basic block. The number of arcs from a bb is implicit from the
115 data length. It enumerates the destination bb and per-arc flags.
116 There is one LINES record per basic block, it enumerates the source
117 lines which belong to that basic block. Source file names are
118 introduced by a line number of 0, following lines are from the new
119 source file. The initial source file for the function is NULL, but
120 the current source file should be remembered from one LINES record
121 to the next. The end of a block is indicated by an empty filename
122 - this does not reset the current source file. Note there is no
123 ordering of the ARCS and LINES records: they may be in any order,
124 interleaved in any manner. The current filename follows the order
125 the LINES records are stored in the file, *not* the ordering of the
126 blocks they are for.
128 The data file contains the following records.
129 data: {unit summary:object summary:program* function-data*}*
130 unit: header int32:checksum
131 function-data: announce_function present counts
132 announce_function: header int32:ident
133 int32:lineno_checksum int32:cfg_checksum
134 present: header int32:present
135 counts: header int64:count*
136 summary: int32:checksum {count-summary}GCOV_COUNTERS_SUMMABLE
137 count-summary: int32:num int32:runs int64:sum
138 int64:max int64:sum_max
140 The ANNOUNCE_FUNCTION record is the same as that in the note file,
141 but without the source location. The COUNTS gives the
142 counter values for instrumented features. The about the whole
143 program. The checksum is used for whole program summaries, and
144 disambiguates different programs which include the same
145 instrumented object file. There may be several program summaries,
146 each with a unique checksum. The object summary's checksum is
147 zero. Note that the data file might contain information from
148 several runs concatenated, or the data might be merged.
150 This file is included by both the compiler, gcov tools and the
151 runtime support library libgcov. IN_LIBGCOV and IN_GCOV are used to
152 distinguish which case is which. If IN_LIBGCOV is nonzero,
153 libgcov is being built. If IN_GCOV is nonzero, the gcov tools are
154 being built. Otherwise the compiler is being built. IN_GCOV may be
155 positive or negative. If positive, we are compiling a tool that
156 requires additional functions (see the code for knowledge of what
157 those functions are). */
159 #ifndef GCC_GCOV_IO_H
160 #define GCC_GCOV_IO_H
162 #ifdef __COREBOOT__
163 #define GCOV_LINKAGE /* nothing */
164 /* We need the definitions for
165 BITS_PER_UNIT and
166 LONG_LONG_TYPE_SIZE
167 They are defined in gcc/defaults.h and gcc/config/<arch_depend_files>
168 (like, gcc/config/i386/i386.h). And it can be overridden by setting
169 in build scripts. Here I hardcoded the value for x86. */
170 #define BITS_PER_UNIT 8
171 #define LONG_LONG_TYPE_SIZE 64
173 /* There are many gcc_assertions. Set the value to 1 if we want a warning
174 message if the assertion fails. */
175 #ifndef ENABLE_ASSERT_CHECKING
176 #define ENABLE_ASSERT_CHECKING 1
177 #endif
178 #endif /* __COREBOOT__ */
180 #if IN_LIBGCOV
181 /* About the target */
183 #if BITS_PER_UNIT == 8
184 typedef unsigned int gcov_unsigned_t __attribute__((mode(SI)));
185 typedef unsigned int gcov_position_t __attribute__((mode(SI)));
186 #if LONG_LONG_TYPE_SIZE > 32
187 typedef signed gcov_type __attribute__((mode(DI)));
188 #else
189 typedef signed gcov_type __attribute__((mode(SI)));
190 #endif
191 #else
192 #if BITS_PER_UNIT == 16
193 typedef unsigned int gcov_unsigned_t __attribute__((mode(HI)));
194 typedef unsigned int gcov_position_t __attribute__((mode(HI)));
195 #if LONG_LONG_TYPE_SIZE > 32
196 typedef signed gcov_type __attribute__((mode(SI)));
197 #else
198 typedef signed gcov_type __attribute__((mode(HI)));
199 #endif
200 #else
201 typedef unsigned int gcov_unsigned_t __attribute__((mode(QI)));
202 typedef unsigned int gcov_position_t __attribute__((mode(QI)));
203 #if LONG_LONG_TYPE_SIZE > 32
204 typedef signed gcov_type __attribute__((mode(HI)));
205 #else
206 typedef signed gcov_type __attribute__((mode(QI)));
207 #endif
208 #endif
209 #endif
212 #if defined(TARGET_POSIX_IO)
213 #define GCOV_LOCKED 1
214 #else
215 #define GCOV_LOCKED 0
216 #endif
218 #else /* !IN_LIBGCOV */
219 /* About the host */
221 typedef unsigned int gcov_unsigned_t;
222 typedef unsigned int gcov_position_t;
223 /* gcov_type is typedef'd elsewhere for the compiler */
224 #if IN_GCOV
225 #define GCOV_LINKAGE static
226 typedef HOST_WIDEST_INT gcov_type;
227 #if IN_GCOV > 0
228 #include <sys/types.h>
229 #endif
230 #else /*!IN_GCOV */
231 #define GCOV_TYPE_SIZE (LONG_LONG_TYPE_SIZE > 32 ? 64 : 32)
232 #endif
234 #if defined(HOST_HAS_F_SETLKW)
235 #define GCOV_LOCKED 1
236 #else
237 #define GCOV_LOCKED 0
238 #endif
240 #endif /* !IN_LIBGCOV */
242 /* In gcov we want function linkage to be static. In the compiler we want
243 it extern, so that they can be accessed from elsewhere. In libgcov we
244 need these functions to be extern, so prefix them with __gcov. In
245 libgcov they must also be hidden so that the instance in the executable
246 is not also used in a DSO. */
247 #if IN_LIBGCOV
249 #ifndef __COREBOOT__
250 #include "tconfig.h"
251 #endif /* __COREBOOT__ */
253 #define gcov_var __gcov_var
254 #define gcov_open __gcov_open
255 #define gcov_close __gcov_close
256 #define gcov_write_tag_length __gcov_write_tag_length
257 #define gcov_position __gcov_position
258 #define gcov_seek __gcov_seek
259 #define gcov_rewrite __gcov_rewrite
260 #define gcov_is_error __gcov_is_error
261 #define gcov_write_unsigned __gcov_write_unsigned
262 #define gcov_write_counter __gcov_write_counter
263 #define gcov_write_summary __gcov_write_summary
264 #define gcov_read_unsigned __gcov_read_unsigned
265 #define gcov_read_counter __gcov_read_counter
266 #define gcov_read_summary __gcov_read_summary
268 /* Poison these, so they don't accidentally slip in. */
269 #pragma GCC poison gcov_write_string gcov_write_tag gcov_write_length
270 #pragma GCC poison gcov_read_string gcov_sync gcov_time gcov_magic
272 #ifdef HAVE_GAS_HIDDEN
273 #define ATTRIBUTE_HIDDEN __attribute__((__visibility__("hidden")))
274 #else
275 #define ATTRIBUTE_HIDDEN
276 #endif
278 #else
280 #define ATTRIBUTE_HIDDEN
282 #endif
284 #ifndef GCOV_LINKAGE
285 #define GCOV_LINKAGE extern
286 #endif
288 /* File suffixes. */
289 #define GCOV_DATA_SUFFIX ".gcda"
290 #define GCOV_NOTE_SUFFIX ".gcno"
292 /* File magic. Must not be palindromes. */
293 #define GCOV_DATA_MAGIC ((gcov_unsigned_t)0x67636461) /* "gcda" */
294 #define GCOV_NOTE_MAGIC ((gcov_unsigned_t)0x67636e6f) /* "gcno" */
296 /* gcov-iov.h is automatically generated by the makefile from
297 version.c, it looks like
298 #define GCOV_VERSION ((gcov_unsigned_t)0x89abcdef)
300 #include "gcov-iov.h"
302 /* Convert a magic or version number to a 4 character string. */
303 #define GCOV_UNSIGNED2STRING(ARRAY, VALUE) \
304 ((ARRAY)[0] = (char)((VALUE) >> 24), \
305 (ARRAY)[1] = (char)((VALUE) >> 16), \
306 (ARRAY)[2] = (char)((VALUE) >> 8), \
307 (ARRAY)[3] = (char)((VALUE) >> 0))
309 /* The record tags. Values [1..3f] are for tags which may be in either
310 file. Values [41..9f] for those in the note file and [a1..ff] for
311 the data file. The tag value zero is used as an explicit end of
312 file marker -- it is not required to be present. */
314 #define GCOV_TAG_FUNCTION ((gcov_unsigned_t)0x01000000)
315 #define GCOV_TAG_FUNCTION_LENGTH (3)
316 #define GCOV_TAG_BLOCKS ((gcov_unsigned_t)0x01410000)
317 #define GCOV_TAG_BLOCKS_LENGTH(NUM) (NUM)
318 #define GCOV_TAG_BLOCKS_NUM(LENGTH) (LENGTH)
319 #define GCOV_TAG_ARCS ((gcov_unsigned_t)0x01430000)
320 #define GCOV_TAG_ARCS_LENGTH(NUM) (1 + (NUM) * 2)
321 #define GCOV_TAG_ARCS_NUM(LENGTH) (((LENGTH) - 1) / 2)
322 #define GCOV_TAG_LINES ((gcov_unsigned_t)0x01450000)
323 #define GCOV_TAG_COUNTER_BASE ((gcov_unsigned_t)0x01a10000)
324 #define GCOV_TAG_COUNTER_LENGTH(NUM) ((NUM) * 2)
325 #define GCOV_TAG_COUNTER_NUM(LENGTH) ((LENGTH) / 2)
326 #define GCOV_TAG_OBJECT_SUMMARY ((gcov_unsigned_t)0xa1000000) /* Obsolete */
327 #define GCOV_TAG_PROGRAM_SUMMARY ((gcov_unsigned_t)0xa3000000)
328 #define GCOV_TAG_SUMMARY_LENGTH \
329 (1 + GCOV_COUNTERS_SUMMABLE * (2 + 3 * 2))
331 /* Counters that are collected. */
332 #define GCOV_COUNTER_ARCS 0 /* Arc transitions. */
333 #define GCOV_COUNTERS_SUMMABLE 1 /* Counters which can be
334 summed. */
335 #define GCOV_FIRST_VALUE_COUNTER 1 /* The first of counters used for value
336 profiling. They must form a consecutive
337 interval and their order must match
338 the order of HIST_TYPEs in
339 value-prof.h. */
340 #define GCOV_COUNTER_V_INTERVAL 1 /* Histogram of value inside an interval. */
341 #define GCOV_COUNTER_V_POW2 2 /* Histogram of exact power2 logarithm
342 of a value. */
343 #define GCOV_COUNTER_V_SINGLE 3 /* The most common value of expression. */
344 #define GCOV_COUNTER_V_DELTA 4 /* The most common difference between
345 consecutive values of expression. */
347 #define GCOV_COUNTER_V_INDIR 5 /* The most common indirect address */
348 #define GCOV_COUNTER_AVERAGE 6 /* Compute average value passed to the
349 counter. */
350 #define GCOV_COUNTER_IOR 7 /* IOR of the all values passed to
351 counter. */
352 #define GCOV_LAST_VALUE_COUNTER 7 /* The last of counters used for value
353 profiling. */
354 #define GCOV_COUNTERS 8
356 /* Number of counters used for value profiling. */
357 #define GCOV_N_VALUE_COUNTERS \
358 (GCOV_LAST_VALUE_COUNTER - GCOV_FIRST_VALUE_COUNTER + 1)
360 /* A list of human readable names of the counters */
361 #define GCOV_COUNTER_NAMES {"arcs", "interval", "pow2", "single", \
362 "delta", "indirect_call", "average", "ior"}
364 /* Names of merge functions for counters. */
365 #define GCOV_MERGE_FUNCTIONS {"__gcov_merge_add", \
366 "__gcov_merge_add", \
367 "__gcov_merge_add", \
368 "__gcov_merge_single", \
369 "__gcov_merge_delta", \
370 "__gcov_merge_single", \
371 "__gcov_merge_add", \
372 "__gcov_merge_ior"}
374 /* Convert a counter index to a tag. */
375 #define GCOV_TAG_FOR_COUNTER(COUNT) \
376 (GCOV_TAG_COUNTER_BASE + ((gcov_unsigned_t)(COUNT) << 17))
377 /* Convert a tag to a counter. */
378 #define GCOV_COUNTER_FOR_TAG(TAG) \
379 ((unsigned int)(((TAG) - GCOV_TAG_COUNTER_BASE) >> 17))
380 /* Check whether a tag is a counter tag. */
381 #define GCOV_TAG_IS_COUNTER(TAG) \
382 (!((TAG) & 0xFFFF) && GCOV_COUNTER_FOR_TAG(TAG) < GCOV_COUNTERS)
384 /* The tag level mask has 1's in the position of the inner levels, &
385 the lsb of the current level, and zero on the current and outer
386 levels. */
387 #define GCOV_TAG_MASK(TAG) (((TAG) - 1) ^ (TAG))
389 /* Return nonzero if SUB is an immediate subtag of TAG. */
390 #define GCOV_TAG_IS_SUBTAG(TAG, SUB) \
391 (GCOV_TAG_MASK(TAG) >> 8 == GCOV_TAG_MASK(SUB) \
392 && !(((SUB) ^ (TAG)) & ~GCOV_TAG_MASK(TAG)))
394 /* Return nonzero if SUB is at a sublevel to TAG. */
395 #define GCOV_TAG_IS_SUBLEVEL(TAG, SUB) \
396 (GCOV_TAG_MASK(TAG) > GCOV_TAG_MASK(SUB))
398 /* Basic block flags. */
399 #define GCOV_BLOCK_UNEXPECTED (1 << 1)
401 /* Arc flags. */
402 #define GCOV_ARC_ON_TREE (1 << 0)
403 #define GCOV_ARC_FAKE (1 << 1)
404 #define GCOV_ARC_FALLTHROUGH (1 << 2)
406 /* Structured records. */
408 /* Cumulative counter data. */
409 struct gcov_ctr_summary {
410 gcov_unsigned_t num; /* number of counters. */
411 gcov_unsigned_t runs; /* number of program runs */
412 gcov_type sum_all; /* sum of all counters accumulated. */
413 gcov_type run_max; /* maximum value on a single run. */
414 gcov_type sum_max; /* sum of individual run max values. */
417 /* Object & program summary record. */
418 struct gcov_summary {
419 gcov_unsigned_t checksum; /* checksum of program */
420 struct gcov_ctr_summary ctrs[GCOV_COUNTERS_SUMMABLE];
423 /* Structures embedded in coverage program. The structures generated
424 by write_profile must match these. */
426 #if IN_LIBGCOV
427 /* Information about counters for a single function. */
428 struct gcov_ctr_info {
429 gcov_unsigned_t num; /* number of counters. */
430 gcov_type *values; /* their values. */
433 /* Information about a single function. This uses the trailing array
434 idiom. The number of counters is determined from the merge pointer
435 array in gcov_info. The key is used to detect which of a set of
436 comdat functions was selected -- it points to the gcov_info object
437 of the object file containing the selected comdat function. */
439 struct gcov_fn_info {
440 const struct gcov_info *key; /* comdat key */
441 gcov_unsigned_t ident; /* unique ident of function */
442 gcov_unsigned_t lineno_checksum; /* function lineo_checksum */
443 gcov_unsigned_t cfg_checksum; /* function cfg checksum */
444 struct gcov_ctr_info ctrs[0]; /* instrumented counters */
447 /* Type of function used to merge counters. */
448 typedef void (*gcov_merge_fn) (gcov_type *, gcov_unsigned_t);
450 /* Information about a single object file. */
451 struct gcov_info {
452 gcov_unsigned_t version; /* expected version number */
453 struct gcov_info *next; /* link to next, used by libgcov */
455 gcov_unsigned_t stamp; /* uniquifying time stamp */
456 const char *filename; /* output file name */
458 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for
459 unused) */
461 unsigned int n_functions; /* number of functions */
462 const struct gcov_fn_info *const *functions; /* pointer to pointers to
463 function information */
466 /* Register a new object file module. */
467 extern void __gcov_init(struct gcov_info *) ATTRIBUTE_HIDDEN;
469 #ifndef __COREBOOT__
470 /* Called before fork, to avoid double counting. */
471 extern void __gcov_flush(void) ATTRIBUTE_HIDDEN;
472 #endif
474 /* The merge function that just sums the counters. */
475 extern void __gcov_merge_add(gcov_type *, unsigned int) ATTRIBUTE_HIDDEN;
477 /* The merge function to choose the most common value. */
478 extern void __gcov_merge_single(gcov_type *, unsigned int) ATTRIBUTE_HIDDEN;
480 /* The merge function to choose the most common difference between
481 consecutive values. */
482 extern void __gcov_merge_delta(gcov_type *, unsigned int) ATTRIBUTE_HIDDEN;
484 /* The merge function that just ors the counters together. */
485 extern void __gcov_merge_ior(gcov_type *, unsigned int) ATTRIBUTE_HIDDEN;
487 /* The profiler functions. */
488 extern void __gcov_interval_profiler(gcov_type *, gcov_type, int, unsigned int);
489 extern void __gcov_pow2_profiler(gcov_type *, gcov_type);
490 extern void __gcov_one_value_profiler(gcov_type *, gcov_type);
491 extern void __gcov_indirect_call_profiler(gcov_type *, gcov_type, void *,
492 void *);
493 extern void __gcov_average_profiler(gcov_type *, gcov_type);
494 extern void __gcov_ior_profiler(gcov_type *, gcov_type);
496 #ifndef inhibit_libc
497 /* The wrappers around some library functions.. */
498 extern pid_t __gcov_fork(void) ATTRIBUTE_HIDDEN;
499 extern int __gcov_execl(const char *, char *, ...) ATTRIBUTE_HIDDEN;
500 extern int __gcov_execlp(const char *, char *, ...) ATTRIBUTE_HIDDEN;
501 extern int __gcov_execle(const char *, char *, ...) ATTRIBUTE_HIDDEN;
502 extern int __gcov_execv(const char *, char *const []) ATTRIBUTE_HIDDEN;
503 extern int __gcov_execvp(const char *, char *const []) ATTRIBUTE_HIDDEN;
504 extern int __gcov_execve(const char *, char *const [], char *const [])
505 ATTRIBUTE_HIDDEN;
506 #endif
508 #endif /* IN_LIBGCOV */
510 #if IN_LIBGCOV >= 0
512 /* Optimum number of gcov_unsigned_t's read from or written to disk. */
513 #define GCOV_BLOCK_SIZE (1 << 10)
515 GCOV_LINKAGE struct gcov_var
517 FILE *file;
518 gcov_position_t start; /* Position of first byte of block */
519 unsigned int offset; /* Read/write position within the block. */
520 unsigned int length; /* Read limit in the block. */
521 unsigned int overread; /* Number of words overread. */
522 int error; /* < 0 overflow, > 0 disk error. */
523 int mode; /* < 0 writing, > 0 reading */
524 #if IN_LIBGCOV
525 /* Holds one block plus 4 bytes, thus all coverage reads & writes
526 * fit within this buffer and we always can transfer GCOV_BLOCK_SIZE
527 * to and from the disk. libgcov never backtracks and only writes 4
528 * or 8 byte objects.
530 gcov_unsigned_t buffer[GCOV_BLOCK_SIZE + 1];
531 #else
532 int endian; /* Swap endianness. */
533 /* Holds a variable length block, as the compiler can write
534 * strings and needs to backtrack.
536 size_t alloc;
537 gcov_unsigned_t *buffer;
538 #endif
539 } gcov_var ATTRIBUTE_HIDDEN;
541 /* Functions for reading and writing gcov files. In libgcov you can
542 open the file for reading then writing. Elsewhere you can open the
543 file either for reading or for writing. When reading a file you may
544 use the gcov_read_* functions, gcov_sync, gcov_position, &
545 gcov_error. When writing a file you may use the gcov_write
546 functions, gcov_seek & gcov_error. When a file is to be rewritten
547 you use the functions for reading, then gcov_rewrite then the
548 functions for writing. Your file may become corrupted if you break
549 these invariants. */
550 #if IN_LIBGCOV
551 GCOV_LINKAGE int gcov_open(const char */*name*/) ATTRIBUTE_HIDDEN;
552 #else
553 GCOV_LINKAGE int gcov_open(const char */*name*/, int /*direction*/);
554 GCOV_LINKAGE int gcov_magic(gcov_unsigned_t, gcov_unsigned_t);
555 #endif
556 GCOV_LINKAGE int gcov_close(void) ATTRIBUTE_HIDDEN;
558 /* Available everywhere. */
559 static gcov_position_t gcov_position(void);
560 static int gcov_is_error(void);
562 GCOV_LINKAGE gcov_unsigned_t gcov_read_unsigned(void) ATTRIBUTE_HIDDEN;
563 GCOV_LINKAGE gcov_type gcov_read_counter(void) ATTRIBUTE_HIDDEN;
564 GCOV_LINKAGE void gcov_read_summary(struct gcov_summary *) ATTRIBUTE_HIDDEN;
566 #if IN_LIBGCOV
567 /* Available only in libgcov */
568 GCOV_LINKAGE void gcov_write_counter(gcov_type) ATTRIBUTE_HIDDEN;
569 GCOV_LINKAGE void gcov_write_tag_length(gcov_unsigned_t, gcov_unsigned_t)
570 ATTRIBUTE_HIDDEN;
571 GCOV_LINKAGE void gcov_write_summary(gcov_unsigned_t /*tag*/,
572 const struct gcov_summary *)
573 ATTRIBUTE_HIDDEN;
574 static void gcov_rewrite(void);
575 GCOV_LINKAGE void gcov_seek(gcov_position_t /*position*/) ATTRIBUTE_HIDDEN;
576 #else
577 /* Available outside libgcov */
578 GCOV_LINKAGE const char *gcov_read_string(void);
579 GCOV_LINKAGE void gcov_sync(gcov_position_t /*base*/,
580 gcov_unsigned_t /*length */);
581 #endif
583 #if !IN_GCOV
584 /* Available outside gcov */
585 GCOV_LINKAGE void gcov_write_unsigned(gcov_unsigned_t) ATTRIBUTE_HIDDEN;
586 #endif
588 #if !IN_GCOV && !IN_LIBGCOV
589 /* Available only in compiler */
590 GCOV_LINKAGE void gcov_write_string(const char *);
591 GCOV_LINKAGE gcov_position_t gcov_write_tag(gcov_unsigned_t);
592 GCOV_LINKAGE void gcov_write_length(gcov_position_t /*position*/);
593 #endif
595 #if IN_GCOV > 0
596 /* Available in gcov */
597 GCOV_LINKAGE time_t gcov_time(void);
598 #endif
600 /* Save the current position in the gcov file. */
602 static inline gcov_position_t
603 gcov_position(void)
605 gcc_assert(gcov_var.mode > 0);
606 return gcov_var.start + gcov_var.offset;
609 /* Return nonzero if the error flag is set. */
611 static inline int
612 gcov_is_error(void)
614 return gcov_var.file ? gcov_var.error : 1;
617 #if IN_LIBGCOV
618 /* Move to beginning of file and initialize for writing. */
620 static inline void
621 gcov_rewrite(void)
623 gcc_assert(gcov_var.mode > 0);
624 gcov_var.mode = -1;
625 gcov_var.start = 0;
626 gcov_var.offset = 0;
627 fseek(gcov_var.file, 0L, SEEK_SET);
629 #endif
631 #endif /* IN_LIBGCOV >= 0 */
633 #endif /* GCC_GCOV_IO_H */