2009-12-14 Doug Kwan <dougkwan@google.com>
bfd/ChangeLog: * opncls.c (bfd_opnr_iovec): Rename parameters to avoid shawdowed variable warnings. * bfd-in2.h: Regnenerate. include/ChangeLog: * bfdlink.h (struct bfd_link_callbacks): Rename function parameters to avoid shadowed variable warnings. * dis-asm.h (struct disassemble_info): Ditto. (disassemble_init_for_target): Ditto. (init_disassemble_info): Ditto.
This commit is contained in:
parent
531e23564b
commit
a4a2296704
|
@ -1,3 +1,11 @@
|
||||||
|
2009-12-14 Doug Kwan <dougkwan@google.com>
|
||||||
|
|
||||||
|
* bfdlink.h (struct bfd_link_callbacks): Rename function parameters
|
||||||
|
to avoid shadowed variable warnings.
|
||||||
|
* dis-asm.h (struct disassemble_info): Ditto.
|
||||||
|
(disassemble_init_for_target): Ditto.
|
||||||
|
(init_disassemble_info): Ditto.
|
||||||
|
|
||||||
2009-12-03 David Daney <ddaney@caviumnetworks.com>
|
2009-12-03 David Daney <ddaney@caviumnetworks.com>
|
||||||
Adam Nemet <adambnemet@gmail.com>
|
Adam Nemet <adambnemet@gmail.com>
|
||||||
|
|
||||||
|
|
|
@ -540,11 +540,11 @@ struct bfd_link_callbacks
|
||||||
/* A function which is called when a relocation is attempted against
|
/* A function which is called when a relocation is attempted against
|
||||||
an undefined symbol. NAME is the symbol which is undefined.
|
an undefined symbol. NAME is the symbol which is undefined.
|
||||||
ABFD, SECTION and ADDRESS identify the location from which the
|
ABFD, SECTION and ADDRESS identify the location from which the
|
||||||
reference is made. FATAL indicates whether an undefined symbol is
|
reference is made. IS_FATAL indicates whether an undefined symbol is
|
||||||
a fatal error or not. In some cases SECTION may be NULL. */
|
a fatal error or not. In some cases SECTION may be NULL. */
|
||||||
bfd_boolean (*undefined_symbol)
|
bfd_boolean (*undefined_symbol)
|
||||||
(struct bfd_link_info *, const char *name, bfd *abfd,
|
(struct bfd_link_info *, const char *name, bfd *abfd,
|
||||||
asection *section, bfd_vma address, bfd_boolean fatal);
|
asection *section, bfd_vma address, bfd_boolean is_fatal);
|
||||||
/* A function which is called when a reloc overflow occurs. ENTRY is
|
/* A function which is called when a reloc overflow occurs. ENTRY is
|
||||||
the link hash table entry for the symbol the reloc is against.
|
the link hash table entry for the symbol the reloc is against.
|
||||||
NAME is the name of the local symbol or section the reloc is
|
NAME is the name of the local symbol or section the reloc is
|
||||||
|
|
|
@ -127,18 +127,18 @@ typedef struct disassemble_info
|
||||||
Returns an errno value or 0 for success. */
|
Returns an errno value or 0 for success. */
|
||||||
int (*read_memory_func)
|
int (*read_memory_func)
|
||||||
(bfd_vma memaddr, bfd_byte *myaddr, unsigned int length,
|
(bfd_vma memaddr, bfd_byte *myaddr, unsigned int length,
|
||||||
struct disassemble_info *info);
|
struct disassemble_info *dinfo);
|
||||||
|
|
||||||
/* Function which should be called if we get an error that we can't
|
/* Function which should be called if we get an error that we can't
|
||||||
recover from. STATUS is the errno value from read_memory_func and
|
recover from. STATUS is the errno value from read_memory_func and
|
||||||
MEMADDR is the address that we were trying to read. INFO is a
|
MEMADDR is the address that we were trying to read. INFO is a
|
||||||
pointer to this struct. */
|
pointer to this struct. */
|
||||||
void (*memory_error_func)
|
void (*memory_error_func)
|
||||||
(int status, bfd_vma memaddr, struct disassemble_info *info);
|
(int status, bfd_vma memaddr, struct disassemble_info *dinfo);
|
||||||
|
|
||||||
/* Function called to print ADDR. */
|
/* Function called to print ADDR. */
|
||||||
void (*print_address_func)
|
void (*print_address_func)
|
||||||
(bfd_vma addr, struct disassemble_info *info);
|
(bfd_vma addr, struct disassemble_info *dinfo);
|
||||||
|
|
||||||
/* Function called to determine if there is a symbol at the given ADDR.
|
/* Function called to determine if there is a symbol at the given ADDR.
|
||||||
If there is, the function returns 1, otherwise it returns 0.
|
If there is, the function returns 1, otherwise it returns 0.
|
||||||
|
@ -148,13 +148,13 @@ typedef struct disassemble_info
|
||||||
address, (normally because there is a symbol associated with
|
address, (normally because there is a symbol associated with
|
||||||
that address), but sometimes we want to mask out the overlay bits. */
|
that address), but sometimes we want to mask out the overlay bits. */
|
||||||
int (* symbol_at_address_func)
|
int (* symbol_at_address_func)
|
||||||
(bfd_vma addr, struct disassemble_info * info);
|
(bfd_vma addr, struct disassemble_info *dinfo);
|
||||||
|
|
||||||
/* Function called to check if a SYMBOL is can be displayed to the user.
|
/* Function called to check if a SYMBOL is can be displayed to the user.
|
||||||
This is used by some ports that want to hide special symbols when
|
This is used by some ports that want to hide special symbols when
|
||||||
displaying debugging outout. */
|
displaying debugging outout. */
|
||||||
bfd_boolean (* symbol_is_valid)
|
bfd_boolean (* symbol_is_valid)
|
||||||
(asymbol *, struct disassemble_info * info);
|
(asymbol *, struct disassemble_info *dinfo);
|
||||||
|
|
||||||
/* These are for buffer_read_memory. */
|
/* These are for buffer_read_memory. */
|
||||||
bfd_byte *buffer;
|
bfd_byte *buffer;
|
||||||
|
@ -317,7 +317,7 @@ extern disassembler_ftype disassembler (bfd *);
|
||||||
|
|
||||||
/* Amend the disassemble_info structure as necessary for the target architecture.
|
/* Amend the disassemble_info structure as necessary for the target architecture.
|
||||||
Should only be called after initialising the info->arch field. */
|
Should only be called after initialising the info->arch field. */
|
||||||
extern void disassemble_init_for_target (struct disassemble_info * info);
|
extern void disassemble_init_for_target (struct disassemble_info * dinfo);
|
||||||
|
|
||||||
/* Document any target specific options available from the disassembler. */
|
/* Document any target specific options available from the disassembler. */
|
||||||
extern void disassembler_usage (FILE *);
|
extern void disassembler_usage (FILE *);
|
||||||
|
@ -352,7 +352,7 @@ extern bfd_boolean generic_symbol_is_valid
|
||||||
|
|
||||||
/* Method to initialize a disassemble_info struct. This should be
|
/* Method to initialize a disassemble_info struct. This should be
|
||||||
called by all applications creating such a struct. */
|
called by all applications creating such a struct. */
|
||||||
extern void init_disassemble_info (struct disassemble_info *info, void *stream,
|
extern void init_disassemble_info (struct disassemble_info *dinfo, void *stream,
|
||||||
fprintf_ftype fprintf_func);
|
fprintf_ftype fprintf_func);
|
||||||
|
|
||||||
/* For compatibility with existing code. */
|
/* For compatibility with existing code. */
|
||||||
|
|
Loading…
Reference in New Issue