Commit 8cbce376 authored by Frantisek Hrbata's avatar Frantisek Hrbata Committed by Linus Torvalds

gcov: move gcov structs definitions to a gcc version specific file

Since also the gcov structures(gcov_info, gcov_fn_info, gcov_ctr_info) can
change between gcc releases, as shown in gcc 4.7, they cannot be defined
in a common header and need to be moved to a specific gcc implemention
file.  This also requires to make the gcov_info structure opaque for the
common code and to introduce simple helpers for accessing data inside
gcov_info.
Signed-off-by: default avatarFrantisek Hrbata <fhrbata@redhat.com>
Cc: Jan Stancek <jstancek@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Acked-by: default avatarPeter Oberparleiter <peter.oberparleiter@de.ibm.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andy Gospodarek <agospoda@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0d20633b
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#include <linux/mutex.h> #include <linux/mutex.h>
#include "gcov.h" #include "gcov.h"
static struct gcov_info *gcov_info_head;
static int gcov_events_enabled; static int gcov_events_enabled;
static DEFINE_MUTEX(gcov_lock); static DEFINE_MUTEX(gcov_lock);
...@@ -34,7 +33,7 @@ void __gcov_init(struct gcov_info *info) ...@@ -34,7 +33,7 @@ void __gcov_init(struct gcov_info *info)
mutex_lock(&gcov_lock); mutex_lock(&gcov_lock);
if (gcov_version == 0) { if (gcov_version == 0) {
gcov_version = info->version; gcov_version = gcov_info_version(info);
/* /*
* Printing gcc's version magic may prove useful for debugging * Printing gcc's version magic may prove useful for debugging
* incompatibility reports. * incompatibility reports.
...@@ -45,8 +44,7 @@ void __gcov_init(struct gcov_info *info) ...@@ -45,8 +44,7 @@ void __gcov_init(struct gcov_info *info)
* Add new profiling data structure to list and inform event * Add new profiling data structure to list and inform event
* listener. * listener.
*/ */
info->next = gcov_info_head; gcov_info_link(info);
gcov_info_head = info;
if (gcov_events_enabled) if (gcov_events_enabled)
gcov_event(GCOV_ADD, info); gcov_event(GCOV_ADD, info);
mutex_unlock(&gcov_lock); mutex_unlock(&gcov_lock);
...@@ -91,13 +89,15 @@ EXPORT_SYMBOL(__gcov_merge_delta); ...@@ -91,13 +89,15 @@ EXPORT_SYMBOL(__gcov_merge_delta);
*/ */
void gcov_enable_events(void) void gcov_enable_events(void)
{ {
struct gcov_info *info; struct gcov_info *info = NULL;
mutex_lock(&gcov_lock); mutex_lock(&gcov_lock);
gcov_events_enabled = 1; gcov_events_enabled = 1;
/* Perform event callback for previously registered entries. */ /* Perform event callback for previously registered entries. */
for (info = gcov_info_head; info; info = info->next) while ((info = gcov_info_next(info)))
gcov_event(GCOV_ADD, info); gcov_event(GCOV_ADD, info);
mutex_unlock(&gcov_lock); mutex_unlock(&gcov_lock);
} }
...@@ -112,25 +112,23 @@ static int gcov_module_notifier(struct notifier_block *nb, unsigned long event, ...@@ -112,25 +112,23 @@ static int gcov_module_notifier(struct notifier_block *nb, unsigned long event,
void *data) void *data)
{ {
struct module *mod = data; struct module *mod = data;
struct gcov_info *info; struct gcov_info *info = NULL;
struct gcov_info *prev; struct gcov_info *prev = NULL;
if (event != MODULE_STATE_GOING) if (event != MODULE_STATE_GOING)
return NOTIFY_OK; return NOTIFY_OK;
mutex_lock(&gcov_lock); mutex_lock(&gcov_lock);
prev = NULL;
/* Remove entries located in module from linked list. */ /* Remove entries located in module from linked list. */
for (info = gcov_info_head; info; info = info->next) { while ((info = gcov_info_next(info))) {
if (within(info, mod->module_core, mod->core_size)) { if (within(info, mod->module_core, mod->core_size)) {
if (prev) gcov_info_unlink(prev, info);
prev->next = info->next;
else
gcov_info_head = info->next;
if (gcov_events_enabled) if (gcov_events_enabled)
gcov_event(GCOV_REMOVE, info); gcov_event(GCOV_REMOVE, info);
} else } else
prev = info; prev = info;
} }
mutex_unlock(&gcov_lock); mutex_unlock(&gcov_lock);
return NOTIFY_OK; return NOTIFY_OK;
......
...@@ -242,7 +242,7 @@ static struct gcov_node *get_node_by_name(const char *name) ...@@ -242,7 +242,7 @@ static struct gcov_node *get_node_by_name(const char *name)
list_for_each_entry(node, &all_head, all) { list_for_each_entry(node, &all_head, all) {
info = get_node_info(node); info = get_node_info(node);
if (info && (strcmp(info->filename, name) == 0)) if (info && (strcmp(gcov_info_filename(info), name) == 0))
return node; return node;
} }
...@@ -279,7 +279,7 @@ static ssize_t gcov_seq_write(struct file *file, const char __user *addr, ...@@ -279,7 +279,7 @@ static ssize_t gcov_seq_write(struct file *file, const char __user *addr,
seq = file->private_data; seq = file->private_data;
info = gcov_iter_get_info(seq->private); info = gcov_iter_get_info(seq->private);
mutex_lock(&node_lock); mutex_lock(&node_lock);
node = get_node_by_name(info->filename); node = get_node_by_name(gcov_info_filename(info));
if (node) { if (node) {
/* Reset counts or remove node for unloaded modules. */ /* Reset counts or remove node for unloaded modules. */
if (node->num_loaded == 0) if (node->num_loaded == 0)
...@@ -376,7 +376,8 @@ static void add_links(struct gcov_node *node, struct dentry *parent) ...@@ -376,7 +376,8 @@ static void add_links(struct gcov_node *node, struct dentry *parent)
if (!node->links) if (!node->links)
return; return;
for (i = 0; i < num; i++) { for (i = 0; i < num; i++) {
target = get_link_target(get_node_info(node)->filename, target = get_link_target(
gcov_info_filename(get_node_info(node)),
&gcov_link[i]); &gcov_link[i]);
if (!target) if (!target)
goto out_err; goto out_err;
...@@ -576,7 +577,7 @@ static void add_node(struct gcov_info *info) ...@@ -576,7 +577,7 @@ static void add_node(struct gcov_info *info)
struct gcov_node *parent; struct gcov_node *parent;
struct gcov_node *node; struct gcov_node *node;
filename = kstrdup(info->filename, GFP_KERNEL); filename = kstrdup(gcov_info_filename(info), GFP_KERNEL);
if (!filename) if (!filename)
return; return;
parent = &root_node; parent = &root_node;
...@@ -631,7 +632,7 @@ static void add_info(struct gcov_node *node, struct gcov_info *info) ...@@ -631,7 +632,7 @@ static void add_info(struct gcov_node *node, struct gcov_info *info)
loaded_info = kcalloc(num + 1, sizeof(struct gcov_info *), GFP_KERNEL); loaded_info = kcalloc(num + 1, sizeof(struct gcov_info *), GFP_KERNEL);
if (!loaded_info) { if (!loaded_info) {
pr_warning("could not add '%s' (out of memory)\n", pr_warning("could not add '%s' (out of memory)\n",
info->filename); gcov_info_filename(info));
return; return;
} }
memcpy(loaded_info, node->loaded_info, memcpy(loaded_info, node->loaded_info,
...@@ -645,7 +646,8 @@ static void add_info(struct gcov_node *node, struct gcov_info *info) ...@@ -645,7 +646,8 @@ static void add_info(struct gcov_node *node, struct gcov_info *info)
*/ */
if (!gcov_info_is_compatible(node->unloaded_info, info)) { if (!gcov_info_is_compatible(node->unloaded_info, info)) {
pr_warning("discarding saved data for %s " pr_warning("discarding saved data for %s "
"(incompatible version)\n", info->filename); "(incompatible version)\n",
gcov_info_filename(info));
gcov_info_free(node->unloaded_info); gcov_info_free(node->unloaded_info);
node->unloaded_info = NULL; node->unloaded_info = NULL;
} }
...@@ -656,7 +658,7 @@ static void add_info(struct gcov_node *node, struct gcov_info *info) ...@@ -656,7 +658,7 @@ static void add_info(struct gcov_node *node, struct gcov_info *info)
*/ */
if (!gcov_info_is_compatible(node->loaded_info[0], info)) { if (!gcov_info_is_compatible(node->loaded_info[0], info)) {
pr_warning("could not add '%s' (incompatible " pr_warning("could not add '%s' (incompatible "
"version)\n", info->filename); "version)\n", gcov_info_filename(info));
kfree(loaded_info); kfree(loaded_info);
return; return;
} }
...@@ -692,7 +694,8 @@ static void save_info(struct gcov_node *node, struct gcov_info *info) ...@@ -692,7 +694,8 @@ static void save_info(struct gcov_node *node, struct gcov_info *info)
node->unloaded_info = gcov_info_dup(info); node->unloaded_info = gcov_info_dup(info);
if (!node->unloaded_info) { if (!node->unloaded_info) {
pr_warning("could not save data for '%s' " pr_warning("could not save data for '%s' "
"(out of memory)\n", info->filename); "(out of memory)\n",
gcov_info_filename(info));
} }
} }
} }
...@@ -708,7 +711,7 @@ static void remove_info(struct gcov_node *node, struct gcov_info *info) ...@@ -708,7 +711,7 @@ static void remove_info(struct gcov_node *node, struct gcov_info *info)
i = get_info_index(node, info); i = get_info_index(node, info);
if (i < 0) { if (i < 0) {
pr_warning("could not remove '%s' (not found)\n", pr_warning("could not remove '%s' (not found)\n",
info->filename); gcov_info_filename(info));
return; return;
} }
if (gcov_persist) if (gcov_persist)
...@@ -735,7 +738,7 @@ void gcov_event(enum gcov_action action, struct gcov_info *info) ...@@ -735,7 +738,7 @@ void gcov_event(enum gcov_action action, struct gcov_info *info)
struct gcov_node *node; struct gcov_node *node;
mutex_lock(&node_lock); mutex_lock(&node_lock);
node = get_node_by_name(info->filename); node = get_node_by_name(gcov_info_filename(info));
switch (action) { switch (action) {
case GCOV_ADD: case GCOV_ADD:
if (node) if (node)
...@@ -748,7 +751,7 @@ void gcov_event(enum gcov_action action, struct gcov_info *info) ...@@ -748,7 +751,7 @@ void gcov_event(enum gcov_action action, struct gcov_info *info)
remove_info(node, info); remove_info(node, info);
else { else {
pr_warning("could not remove '%s' (not found)\n", pr_warning("could not remove '%s' (not found)\n",
info->filename); gcov_info_filename(info));
} }
break; break;
} }
......
...@@ -21,6 +21,121 @@ ...@@ -21,6 +21,121 @@
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include "gcov.h" #include "gcov.h"
#define GCOV_COUNTERS 5
static struct gcov_info *gcov_info_head;
/**
* struct gcov_fn_info - profiling meta data per function
* @ident: object file-unique function identifier
* @checksum: function checksum
* @n_ctrs: number of values per counter type belonging to this function
*
* This data is generated by gcc during compilation and doesn't change
* at run-time.
*/
struct gcov_fn_info {
unsigned int ident;
unsigned int checksum;
unsigned int n_ctrs[0];
};
/**
* struct gcov_ctr_info - profiling data per counter type
* @num: number of counter values for this type
* @values: array of counter values for this type
* @merge: merge function for counter values of this type (unused)
*
* This data is generated by gcc during compilation and doesn't change
* at run-time with the exception of the values array.
*/
struct gcov_ctr_info {
unsigned int num;
gcov_type *values;
void (*merge)(gcov_type *, unsigned int);
};
/**
* struct gcov_info - profiling data per object file
* @version: gcov version magic indicating the gcc version used for compilation
* @next: list head for a singly-linked list
* @stamp: time stamp
* @filename: name of the associated gcov data file
* @n_functions: number of instrumented functions
* @functions: function data
* @ctr_mask: mask specifying which counter types are active
* @counts: counter data per counter type
*
* This data is generated by gcc during compilation and doesn't change
* at run-time with the exception of the next pointer.
*/
struct gcov_info {
unsigned int version;
struct gcov_info *next;
unsigned int stamp;
const char *filename;
unsigned int n_functions;
const struct gcov_fn_info *functions;
unsigned int ctr_mask;
struct gcov_ctr_info counts[0];
};
/**
* gcov_info_filename - return info filename
* @info: profiling data set
*/
const char *gcov_info_filename(struct gcov_info *info)
{
return info->filename;
}
/**
* gcov_info_version - return info version
* @info: profiling data set
*/
unsigned int gcov_info_version(struct gcov_info *info)
{
return info->version;
}
/**
* gcov_info_next - return next profiling data set
* @info: profiling data set
*
* Returns next gcov_info following @info or first gcov_info in the chain if
* @info is %NULL.
*/
struct gcov_info *gcov_info_next(struct gcov_info *info)
{
if (!info)
return gcov_info_head;
return info->next;
}
/**
* gcov_info_link - link/add profiling data set to the list
* @info: profiling data set
*/
void gcov_info_link(struct gcov_info *info)
{
info->next = gcov_info_head;
gcov_info_head = info;
}
/**
* gcov_info_unlink - unlink/remove profiling data set from the list
* @prev: previous profiling data set
* @info: profiling data set
*/
void gcov_info_unlink(struct gcov_info *prev, struct gcov_info *info)
{
if (prev)
prev->next = info->next;
else
gcov_info_head = info->next;
}
/* Symbolic links to be created for each profiling data file. */ /* Symbolic links to be created for each profiling data file. */
const struct gcov_link gcov_link[] = { const struct gcov_link gcov_link[] = {
{ OBJ_TREE, "gcno" }, /* Link to .gcno file in $(objtree). */ { OBJ_TREE, "gcno" }, /* Link to .gcno file in $(objtree). */
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
* gcc and need to be kept as close to the original definition as possible to * gcc and need to be kept as close to the original definition as possible to
* remain compatible. * remain compatible.
*/ */
#define GCOV_COUNTERS 5
#define GCOV_DATA_MAGIC ((unsigned int) 0x67636461) #define GCOV_DATA_MAGIC ((unsigned int) 0x67636461)
#define GCOV_TAG_FUNCTION ((unsigned int) 0x01000000) #define GCOV_TAG_FUNCTION ((unsigned int) 0x01000000)
#define GCOV_TAG_COUNTER_BASE ((unsigned int) 0x01a10000) #define GCOV_TAG_COUNTER_BASE ((unsigned int) 0x01a10000)
...@@ -34,60 +33,18 @@ typedef long gcov_type; ...@@ -34,60 +33,18 @@ typedef long gcov_type;
typedef long long gcov_type; typedef long long gcov_type;
#endif #endif
/** /* Opaque gcov_info. The gcov structures can change as for example in gcc 4.7 so
* struct gcov_fn_info - profiling meta data per function * we cannot use full definition here and they need to be placed in gcc specific
* @ident: object file-unique function identifier * implementation of gcov. This also means no direct access to the members in
* @checksum: function checksum * generic code and usage of the interface below.*/
* @n_ctrs: number of values per counter type belonging to this function struct gcov_info;
*
* This data is generated by gcc during compilation and doesn't change
* at run-time.
*/
struct gcov_fn_info {
unsigned int ident;
unsigned int checksum;
unsigned int n_ctrs[0];
};
/**
* struct gcov_ctr_info - profiling data per counter type
* @num: number of counter values for this type
* @values: array of counter values for this type
* @merge: merge function for counter values of this type (unused)
*
* This data is generated by gcc during compilation and doesn't change
* at run-time with the exception of the values array.
*/
struct gcov_ctr_info {
unsigned int num;
gcov_type *values;
void (*merge)(gcov_type *, unsigned int);
};
/** /* Interface to access gcov_info data */
* struct gcov_info - profiling data per object file const char *gcov_info_filename(struct gcov_info *info);
* @version: gcov version magic indicating the gcc version used for compilation unsigned int gcov_info_version(struct gcov_info *info);
* @next: list head for a singly-linked list struct gcov_info *gcov_info_next(struct gcov_info *info);
* @stamp: time stamp void gcov_info_link(struct gcov_info *info);
* @filename: name of the associated gcov data file void gcov_info_unlink(struct gcov_info *prev, struct gcov_info *info);
* @n_functions: number of instrumented functions
* @functions: function data
* @ctr_mask: mask specifying which counter types are active
* @counts: counter data per counter type
*
* This data is generated by gcc during compilation and doesn't change
* at run-time with the exception of the next pointer.
*/
struct gcov_info {
unsigned int version;
struct gcov_info *next;
unsigned int stamp;
const char *filename;
unsigned int n_functions;
const struct gcov_fn_info *functions;
unsigned int ctr_mask;
struct gcov_ctr_info counts[0];
};
/* Base interface. */ /* Base interface. */
enum gcov_action { enum gcov_action {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment