PR 10656
* readelf.c: Remove duplicate declaration of variable do_wide. * dwarf.h: Add export of do_wide. * hist.h: Move declaration of histograms and num_histograms variables from here to... * hist.c: ...here.
This commit is contained in:
parent
b7c313290a
commit
c34f4fc672
6 changed files with 28 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-09-25 Dimitry Gorbachev <d.g.gorbachev@gmail.com>
|
||||||
|
|
||||||
|
PR 10656
|
||||||
|
* readelf.c: Remove duplicate declaration of variable do_wide.
|
||||||
|
* dwarf.h: Add export of do_wide.
|
||||||
|
|
||||||
2009-09-24 Cary Coutant <ccoutant@google.com>
|
2009-09-24 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
* dwarf.c (get_TAG_name): Add missing DWARF-3 and new DWARF-4 tags.
|
* dwarf.c (get_TAG_name): Add missing DWARF-3 and new DWARF-4 tags.
|
||||||
|
|
|
@ -32,9 +32,9 @@ typedef unsigned long dwarf_size_type;
|
||||||
struct dwarf_section
|
struct dwarf_section
|
||||||
{
|
{
|
||||||
/* A debug section has a different name when it's stored compressed
|
/* A debug section has a different name when it's stored compressed
|
||||||
* or not. COMPRESSED_NAME and UNCOMPRESSED_NAME are the two
|
or not. COMPRESSED_NAME and UNCOMPRESSED_NAME are the two
|
||||||
* possibilities. NAME is set to whichever one is used for this
|
possibilities. NAME is set to whichever one is used for this
|
||||||
* input file, as determined by load_debug_section(). */
|
input file, as determined by load_debug_section(). */
|
||||||
const char *uncompressed_name;
|
const char *uncompressed_name;
|
||||||
const char *compressed_name;
|
const char *compressed_name;
|
||||||
const char *name;
|
const char *name;
|
||||||
|
@ -53,7 +53,8 @@ struct dwarf_section_display
|
||||||
unsigned int relocate : 1;
|
unsigned int relocate : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum dwarf_section_display_enum {
|
enum dwarf_section_display_enum
|
||||||
|
{
|
||||||
abbrev = 0,
|
abbrev = 0,
|
||||||
aranges,
|
aranges,
|
||||||
frame,
|
frame,
|
||||||
|
@ -111,6 +112,7 @@ extern int do_debug_frames_interp;
|
||||||
extern int do_debug_macinfo;
|
extern int do_debug_macinfo;
|
||||||
extern int do_debug_str;
|
extern int do_debug_str;
|
||||||
extern int do_debug_loc;
|
extern int do_debug_loc;
|
||||||
|
extern int do_wide;
|
||||||
|
|
||||||
extern void init_dwarf_regnames (unsigned int);
|
extern void init_dwarf_regnames (unsigned int);
|
||||||
|
|
||||||
|
@ -120,8 +122,8 @@ extern void free_debug_section (enum dwarf_section_display_enum);
|
||||||
|
|
||||||
extern void free_debug_memory (void);
|
extern void free_debug_memory (void);
|
||||||
|
|
||||||
extern void dwarf_select_sections_by_names (const char *names);
|
extern void dwarf_select_sections_by_names (const char *);
|
||||||
extern void dwarf_select_sections_by_letters (const char *letters);
|
extern void dwarf_select_sections_by_letters (const char *);
|
||||||
extern void dwarf_select_sections_all (void);
|
extern void dwarf_select_sections_all (void);
|
||||||
|
|
||||||
void *cmalloc (size_t, size_t);
|
void *cmalloc (size_t, size_t);
|
||||||
|
|
|
@ -149,7 +149,6 @@
|
||||||
#include "filenames.h"
|
#include "filenames.h"
|
||||||
|
|
||||||
char * program_name = "readelf";
|
char * program_name = "readelf";
|
||||||
int do_wide;
|
|
||||||
static long archive_file_offset;
|
static long archive_file_offset;
|
||||||
static unsigned long archive_file_size;
|
static unsigned long archive_file_size;
|
||||||
static unsigned long dynamic_addr;
|
static unsigned long dynamic_addr;
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
2009-09-25 Dimitry Gorbachev <d.g.gorbachev@gmail.com>
|
||||||
|
|
||||||
|
PR 10656
|
||||||
|
* hist.h: Move declaration of histograms and num_histograms
|
||||||
|
variables from here to...
|
||||||
|
* hist.c: ...here.
|
||||||
|
|
||||||
2009-09-23 Nick Clifton <nickc@redhat.com>
|
2009-09-23 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* po/vi.po: Updated Vietnamese translation.
|
* po/vi.po: Updated Vietnamese translation.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* hist.c - Histogram related operations.
|
/* hist.c - Histogram related operations.
|
||||||
|
|
||||||
Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2007
|
Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2007, 2009
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU Binutils.
|
This file is part of GNU Binutils.
|
||||||
|
@ -48,6 +48,8 @@ extern void flat_blurb (FILE * fp);
|
||||||
static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
|
static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
|
||||||
static histogram *find_histogram_for_pc (bfd_vma pc);
|
static histogram *find_histogram_for_pc (bfd_vma pc);
|
||||||
|
|
||||||
|
histogram * histograms;
|
||||||
|
unsigned num_histograms;
|
||||||
double hist_scale;
|
double hist_scale;
|
||||||
static char hist_dimension[16] = "seconds";
|
static char hist_dimension[16] = "seconds";
|
||||||
static char hist_dimension_abbrev = 's';
|
static char hist_dimension_abbrev = 's';
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* hist.h
|
/* hist.h
|
||||||
|
|
||||||
Copyright 2000, 2001, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
|
Copyright 2000, 2001, 2002, 2004, 2005, 2007, 2009
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU Binutils.
|
This file is part of GNU Binutils.
|
||||||
|
|
||||||
|
@ -30,8 +31,8 @@ typedef struct histogram
|
||||||
int *sample; /* Histogram samples (shorts in the file!). */
|
int *sample; /* Histogram samples (shorts in the file!). */
|
||||||
} histogram;
|
} histogram;
|
||||||
|
|
||||||
histogram *histograms;
|
extern histogram * histograms;
|
||||||
unsigned num_histograms;
|
extern unsigned num_histograms;
|
||||||
|
|
||||||
/* Scale factor converting samples to pc values:
|
/* Scale factor converting samples to pc values:
|
||||||
each sample covers HIST_SCALE bytes. */
|
each sample covers HIST_SCALE bytes. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue