2006-10-25 01:42:39 +02:00
|
|
|
/*
|
2006-10-25 17:49:47 +02:00
|
|
|
Copyright (C) 2006 Mandriva Conectiva S.A.
|
|
|
|
Copyright (C) 2006 Arnaldo Carvalho de Melo <acme@mandriva.com>
|
|
|
|
|
2006-10-25 01:42:39 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of version 2 of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2006-11-02 17:47:37 +01:00
|
|
|
#include <getopt.h>
|
2006-10-25 01:42:39 +02:00
|
|
|
#include <stdio.h>
|
2006-10-28 23:22:42 +02:00
|
|
|
#include <dwarf.h>
|
2006-10-25 01:42:39 +02:00
|
|
|
#include <stdlib.h>
|
2006-11-11 17:15:50 +01:00
|
|
|
#include <string.h>
|
2006-10-25 01:42:39 +02:00
|
|
|
|
2006-10-28 18:45:59 +02:00
|
|
|
#include "classes.h"
|
2006-10-25 01:42:39 +02:00
|
|
|
|
2006-11-04 00:24:37 +01:00
|
|
|
struct structure {
|
|
|
|
struct list_head node;
|
|
|
|
const struct class *class;
|
|
|
|
unsigned int nr_files;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct structure *structure__new(const struct class *class)
|
|
|
|
{
|
|
|
|
struct structure *self = malloc(sizeof(*self));
|
|
|
|
|
|
|
|
if (self != NULL) {
|
|
|
|
self->class = class;
|
|
|
|
self->nr_files = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LIST_HEAD(structures__list);
|
|
|
|
|
|
|
|
static struct structure *structures__find(const char *name)
|
|
|
|
{
|
|
|
|
struct structure *pos;
|
|
|
|
|
|
|
|
list_for_each_entry(pos, &structures__list, node)
|
|
|
|
if (strcmp(pos->class->name, name) == 0)
|
|
|
|
return pos;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void structures__add(const struct class *class)
|
|
|
|
{
|
|
|
|
struct structure *str = structures__find(class->name);
|
|
|
|
|
|
|
|
if (str == NULL) {
|
|
|
|
str = structure__new(class);
|
|
|
|
if (str != NULL)
|
|
|
|
list_add(&str->node, &structures__list);
|
|
|
|
} else {
|
|
|
|
if (str->class->size != class->size)
|
|
|
|
printf("%s size changed! was %llu, now its %llu\n",
|
|
|
|
class->name, str->class->size, class->size);
|
|
|
|
str->nr_files++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void structure__print(struct structure *self)
|
|
|
|
{
|
2006-11-11 17:15:50 +01:00
|
|
|
printf("%-32.32s %5u\n", self->class->name, self->nr_files);
|
2006-11-04 00:24:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_total_structure_stats(void)
|
|
|
|
{
|
|
|
|
struct structure *pos;
|
|
|
|
|
|
|
|
printf("%-32.32s %5.5s\n", "name", "src#");
|
|
|
|
list_for_each_entry(pos, &structures__list, node)
|
|
|
|
structure__print(pos);
|
|
|
|
}
|
|
|
|
|
2006-11-12 20:33:37 +01:00
|
|
|
static int total_structure_iterator(struct class *class, void *cookie)
|
2006-11-04 00:24:37 +01:00
|
|
|
{
|
|
|
|
if (class->tag == DW_TAG_structure_type && class->name != NULL)
|
|
|
|
structures__add(class);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cu_total_structure_iterator(struct cu *cu, void *cookie)
|
|
|
|
{
|
|
|
|
cu__for_each_class(cu, total_structure_iterator, cookie);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-02 17:47:37 +01:00
|
|
|
static struct option long_options[] = {
|
2006-11-05 18:34:54 +01:00
|
|
|
{ "cacheline_size", required_argument, NULL, 'c' },
|
2006-11-02 17:47:37 +01:00
|
|
|
{ "class_name_len", no_argument, NULL, 'N' },
|
|
|
|
{ "help", no_argument, NULL, 'h' },
|
|
|
|
{ "nr_members", no_argument, NULL, 'n' },
|
|
|
|
{ "sizes", no_argument, NULL, 's' },
|
2006-11-04 00:24:37 +01:00
|
|
|
{ "total_struct_stats", no_argument, NULL, 't' },
|
2006-11-02 17:47:37 +01:00
|
|
|
{ NULL, 0, NULL, 0, }
|
|
|
|
};
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
"usage: pfunct [options] <file_name> {<function_name>}\n"
|
|
|
|
" where: \n"
|
2006-11-05 18:34:54 +01:00
|
|
|
" -h, --help show usage info\n"
|
|
|
|
" -c, --cacheline_size=<size> set cacheline size (default=%d)\n"
|
|
|
|
" -m, --nr_members show number of members\n"
|
|
|
|
" -N, --class_name_len show size of classes\n"
|
|
|
|
" -s, --sizes show size of classes\n"
|
|
|
|
" -t, --total_struct_stats show Multi-CU structure stats\n",
|
|
|
|
DEFAULT_CACHELINE_SIZE);
|
2006-11-02 17:47:37 +01:00
|
|
|
}
|
|
|
|
|
2006-11-12 20:33:37 +01:00
|
|
|
static int nr_members_iterator(struct class *class, void *cookie)
|
2006-11-02 17:47:37 +01:00
|
|
|
{
|
|
|
|
if (class->tag != DW_TAG_structure_type)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (class->nr_members > 0 && class->name != NULL)
|
|
|
|
printf("%s: %u\n", class->name, class->nr_members);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cu_nr_members_iterator(struct cu *cu, void *cookie)
|
|
|
|
{
|
|
|
|
return cu__for_each_class(cu, nr_members_iterator, cookie);
|
|
|
|
}
|
|
|
|
|
2006-11-12 20:33:37 +01:00
|
|
|
static int sizes_iterator(struct class *class, void *cookie)
|
2006-11-02 17:47:37 +01:00
|
|
|
{
|
2006-11-05 05:17:19 +01:00
|
|
|
struct class *typedef_alias;
|
|
|
|
|
2006-11-12 20:33:37 +01:00
|
|
|
if (!class__is_struct(class, &typedef_alias))
|
2006-11-02 17:47:37 +01:00
|
|
|
return 0;
|
|
|
|
|
2006-11-12 20:33:37 +01:00
|
|
|
class__find_holes(typedef_alias ?: class);
|
2006-11-05 05:17:19 +01:00
|
|
|
if (typedef_alias != NULL) {
|
|
|
|
if (typedef_alias->size > 0)
|
|
|
|
printf("typedef %s:struct(%s): %llu %u\n",
|
|
|
|
class->name ?: "",
|
|
|
|
typedef_alias->name ?: "",
|
|
|
|
typedef_alias->size, typedef_alias->nr_holes);
|
|
|
|
} else if (class->size > 0)
|
|
|
|
printf("struct %s: %llu %u\n", class->name ?: "<unknown>",
|
|
|
|
class->size, class->nr_holes);
|
2006-11-02 17:47:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cu_sizes_iterator(struct cu *cu, void *cookie)
|
|
|
|
{
|
|
|
|
return cu__for_each_class(cu, sizes_iterator, cookie);
|
|
|
|
}
|
|
|
|
|
2006-10-28 19:08:46 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2006-11-02 17:47:37 +01:00
|
|
|
int option, option_index;
|
2006-11-11 19:31:04 +01:00
|
|
|
struct cus *cus;
|
2006-11-02 17:47:37 +01:00
|
|
|
char *file_name;
|
|
|
|
char *class_name = NULL;
|
|
|
|
int show_sizes = 0;
|
|
|
|
int show_nr_members = 0;
|
|
|
|
int show_class_name_len = 0;
|
2006-11-04 00:24:37 +01:00
|
|
|
int show_total_structure_stats = 0;
|
2006-11-02 17:47:37 +01:00
|
|
|
|
2006-11-05 18:34:54 +01:00
|
|
|
while ((option = getopt_long(argc, argv, "c:hnNst",
|
2006-11-02 17:47:37 +01:00
|
|
|
long_options, &option_index)) >= 0)
|
|
|
|
switch (option) {
|
2006-11-05 18:34:54 +01:00
|
|
|
case 'c': cacheline_size = atoi(optarg); break;
|
2006-11-04 00:24:37 +01:00
|
|
|
case 's': show_sizes = 1; break;
|
|
|
|
case 'n': show_nr_members = 1; break;
|
|
|
|
case 'N': show_class_name_len = 1; break;
|
|
|
|
case 't': show_total_structure_stats = 1; break;
|
|
|
|
case 'h': usage(); return EXIT_SUCCESS;
|
|
|
|
default: usage(); return EXIT_FAILURE;
|
2006-11-02 17:47:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (optind < argc) {
|
|
|
|
switch (argc - optind) {
|
|
|
|
case 1: file_name = argv[optind++]; break;
|
|
|
|
case 2: file_name = argv[optind++];
|
|
|
|
class_name = argv[optind++]; break;
|
|
|
|
default: usage(); return EXIT_FAILURE;
|
|
|
|
}
|
2006-11-11 17:15:50 +01:00
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
return EXIT_FAILURE;
|
2006-10-28 19:08:46 +02:00
|
|
|
}
|
|
|
|
|
2006-11-11 19:31:04 +01:00
|
|
|
cus = cus__new(file_name);
|
|
|
|
if (cus == NULL) {
|
|
|
|
fputs("pahole: insufficient memory\n", stderr);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cus__load(cus) != 0) {
|
2006-10-28 19:08:46 +02:00
|
|
|
fprintf(stderr, "pahole: couldn't load DWARF info from %s\n",
|
2006-11-02 17:47:37 +01:00
|
|
|
file_name);
|
2006-10-28 19:08:46 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2006-10-26 08:06:32 +02:00
|
|
|
|
2006-11-04 00:24:37 +01:00
|
|
|
if (show_total_structure_stats) {
|
2006-11-11 19:31:04 +01:00
|
|
|
cus__for_each_cu(cus, cu_total_structure_iterator, NULL);
|
2006-11-04 00:24:37 +01:00
|
|
|
print_total_structure_stats();
|
|
|
|
} else if (show_nr_members)
|
2006-11-11 19:31:04 +01:00
|
|
|
cus__for_each_cu(cus, cu_nr_members_iterator, NULL);
|
2006-11-02 17:47:37 +01:00
|
|
|
else if (show_sizes)
|
2006-11-11 19:31:04 +01:00
|
|
|
cus__for_each_cu(cus, cu_sizes_iterator, NULL);
|
2006-11-02 17:47:37 +01:00
|
|
|
else if (class_name != NULL) {
|
2006-11-12 20:33:37 +01:00
|
|
|
struct class *class = cus__find_class_by_name(cus, class_name);
|
2006-11-05 05:17:19 +01:00
|
|
|
struct class *alias;
|
|
|
|
|
2006-11-14 16:30:15 +01:00
|
|
|
if (class != NULL && class__is_struct(class, &alias)) {
|
2006-11-12 20:33:37 +01:00
|
|
|
class__find_holes(alias ?: class);
|
|
|
|
class__print(alias ?: class);
|
2006-10-28 23:10:47 +02:00
|
|
|
} else
|
2006-11-02 17:47:37 +01:00
|
|
|
printf("struct %s not found!\n", class_name);
|
|
|
|
} else
|
2006-11-11 19:31:04 +01:00
|
|
|
cus__print_classes(cus, DW_TAG_structure_type);
|
2006-10-25 18:32:07 +02:00
|
|
|
|
2006-10-28 19:08:46 +02:00
|
|
|
return EXIT_SUCCESS;
|
2006-10-25 01:42:39 +02:00
|
|
|
}
|