blob: c69539d7d31ac53cb839a553f24d539b2e20fa32 [file] [log] [blame]
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -07001/*
2 * Profiling infrastructure declarations.
3 *
4 * This file is based on gcc-internal definitions. Data structures are
5 * defined to be compatible with gcc counterparts. For a better
6 * understanding, refer to gcc source: gcc/gcov-io.h.
7 *
8 * Copyright IBM Corp. 2009
9 * Author(s): Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
10 *
11 * Uses gcc-internal data definitions.
12 */
13
14#ifndef GCOV_H
15#define GCOV_H GCOV_H
16
Greg Hackmann976723b2019-05-14 15:45:31 -070017#include <linux/module.h>
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -070018#include <linux/types.h>
19
20/*
21 * Profiling data types used for gcc 3.4 and above - these are defined by
22 * gcc and need to be kept as close to the original definition as possible to
23 * remain compatible.
24 */
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -070025#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))
30
31#if BITS_PER_LONG >= 64
32typedef long gcov_type;
33#else
34typedef long long gcov_type;
35#endif
36
Frantisek Hrbata8cbce372013-11-12 15:11:24 -080037/* Opaque gcov_info. The gcov structures can change as for example in gcc 4.7 so
38 * we cannot use full definition here and they need to be placed in gcc specific
39 * implementation of gcov. This also means no direct access to the members in
40 * generic code and usage of the interface below.*/
41struct gcov_info;
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -070042
Frantisek Hrbata8cbce372013-11-12 15:11:24 -080043/* Interface to access gcov_info data */
44const char *gcov_info_filename(struct gcov_info *info);
45unsigned int gcov_info_version(struct gcov_info *info);
46struct gcov_info *gcov_info_next(struct gcov_info *info);
47void gcov_info_link(struct gcov_info *info);
48void gcov_info_unlink(struct gcov_info *prev, struct gcov_info *info);
Greg Hackmann976723b2019-05-14 15:45:31 -070049bool gcov_info_within_module(struct gcov_info *info, struct module *mod);
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -070050
51/* Base interface. */
52enum gcov_action {
53 GCOV_ADD,
54 GCOV_REMOVE,
55};
56
57void gcov_event(enum gcov_action action, struct gcov_info *info);
58void gcov_enable_events(void);
59
60/* Iterator control. */
61struct seq_file;
62struct gcov_iterator;
63
64struct gcov_iterator *gcov_iter_new(struct gcov_info *info);
65void gcov_iter_free(struct gcov_iterator *iter);
66void gcov_iter_start(struct gcov_iterator *iter);
67int gcov_iter_next(struct gcov_iterator *iter);
68int gcov_iter_write(struct gcov_iterator *iter, struct seq_file *seq);
69struct gcov_info *gcov_iter_get_info(struct gcov_iterator *iter);
70
71/* gcov_info control. */
72void gcov_info_reset(struct gcov_info *info);
73int gcov_info_is_compatible(struct gcov_info *info1, struct gcov_info *info2);
74void gcov_info_add(struct gcov_info *dest, struct gcov_info *source);
75struct gcov_info *gcov_info_dup(struct gcov_info *info);
76void gcov_info_free(struct gcov_info *info);
77
78struct gcov_link {
79 enum {
80 OBJ_TREE,
81 SRC_TREE,
82 } dir;
83 const char *ext;
84};
85extern const struct gcov_link gcov_link[];
86
Greg Hackmanne98271e2019-05-14 15:45:25 -070087extern int gcov_events_enabled;
88extern struct mutex gcov_lock;
89
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -070090#endif /* GCOV_H */