Go to the documentation of this file.
17 #include <linux/types.h>
24 #define GCOV_COUNTERS 5
25 #define GCOV_DATA_MAGIC ((unsigned int) 0x67636461)
26 #define GCOV_TAG_FUNCTION ((unsigned int) 0x01000000)
27 #define GCOV_TAG_COUNTER_BASE ((unsigned int) 0x01a10000)
28 #define GCOV_TAG_FOR_COUNTER(count) \
29 (GCOV_TAG_COUNTER_BASE + ((unsigned int) (count) << 17))
31 #if BITS_PER_LONG >= 64