?? libbfd-in.h
字號:
/* libbfd.h -- Declarations used by bfd library *implementation*. (This include file is not for users of the library.) Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. Written by Cygnus Support.** NOTE: libbfd.h is a GENERATED file. Don't change it; instead,** change libbfd-in.h or the other BFD source files processed to** generate this file.This file is part of BFD, the Binary File Descriptor library.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *//* Align an address upward to a boundary, expressed as a number of bytes. E.g. align to an 8-byte boundary with argument of 8. Take care never to wrap around if the address is within boundary-1 of the end of the address space. */#define BFD_ALIGN(this, boundary) \ ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \ ? (((bfd_vma) (this) + ((boundary) - 1)) & (~((boundary)-1))) \ : ~ (bfd_vma) 0)/* If you want to read and write large blocks, you might want to do it in quanta of this amount */#define DEFAULT_BUFFERSIZE 8192/* Set a tdata field. Can't use the other macros for this, since they do casts, and casting to the left of assignment isn't portable. */#define set_tdata(bfd, v) ((bfd)->tdata.any = (PTR) (v))/* If BFD_IN_MEMORY is set for a BFD, then the iostream fields points to an instance of this structure. */struct bfd_in_memory{ /* Size of buffer. */ bfd_size_type size; /* Buffer holding contents of BFD. */ bfd_byte *buffer;};/* tdata for an archive. For an input archive, cache needs to be free()'d. For an output archive, symdefs do. */struct artdata { file_ptr first_file_filepos; /* Speed up searching the armap */ struct ar_cache *cache; bfd *archive_head; /* Only interesting in output routines */ carsym *symdefs; /* the symdef entries */ symindex symdef_count; /* how many there are */ char *extended_names; /* clever intel extension */ /* when more compilers are standard C, this can be a time_t */ long armap_timestamp; /* Timestamp value written into armap. This is used for BSD archives to check that the timestamp is recent enough for the BSD linker to not complain, just before we finish writing an archive. */ file_ptr armap_datepos; /* Position within archive to seek to rewrite the date field. */ PTR tdata; /* Backend specific information. */};#define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)/* Goes in bfd's arelt_data slot */struct areltdata { char * arch_header; /* it's actually a string */ unsigned int parsed_size; /* octets of filesize not including ar_hdr */ char *filename; /* null-terminated */};#define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)extern PTR bfd_malloc PARAMS ((size_t));extern PTR bfd_realloc PARAMS ((PTR, size_t));extern PTR bfd_zmalloc PARAMS ((size_t));extern bfd_error_handler_type _bfd_error_handler;/* These routines allocate and free things on the BFD's objalloc. */extern PTR bfd_alloc PARAMS ((bfd *, size_t));extern PTR bfd_zalloc PARAMS ((bfd *, size_t));extern void bfd_release PARAMS ((bfd *, PTR));bfd * _bfd_create_empty_archive_element_shell PARAMS ((bfd *obfd));bfd * _bfd_look_for_bfd_in_cache PARAMS ((bfd *arch_bfd, file_ptr index));boolean _bfd_add_bfd_to_archive_cache PARAMS ((bfd *, file_ptr, bfd *));boolean _bfd_generic_mkarchive PARAMS ((bfd *abfd));const bfd_target *bfd_generic_archive_p PARAMS ((bfd *abfd));boolean bfd_slurp_armap PARAMS ((bfd *abfd));boolean bfd_slurp_bsd_armap_f2 PARAMS ((bfd *abfd));#define bfd_slurp_bsd_armap bfd_slurp_armap#define bfd_slurp_coff_armap bfd_slurp_armapboolean _bfd_slurp_extended_name_table PARAMS ((bfd *abfd));extern boolean _bfd_construct_extended_name_table PARAMS ((bfd *, boolean, char **, bfd_size_type *));boolean _bfd_write_archive_contents PARAMS ((bfd *abfd));boolean _bfd_compute_and_write_armap PARAMS ((bfd *, unsigned int elength));bfd *_bfd_get_elt_at_filepos PARAMS ((bfd *archive, file_ptr filepos));extern bfd *_bfd_generic_get_elt_at_index PARAMS ((bfd *, symindex));bfd * _bfd_new_bfd PARAMS ((void));boolean bfd_false PARAMS ((bfd *ignore));boolean bfd_true PARAMS ((bfd *ignore));PTR bfd_nullvoidptr PARAMS ((bfd *ignore));int bfd_0 PARAMS ((bfd *ignore));unsigned int bfd_0u PARAMS ((bfd *ignore));long bfd_0l PARAMS ((bfd *ignore));long _bfd_n1 PARAMS ((bfd *ignore));void bfd_void PARAMS ((bfd *ignore));bfd *_bfd_new_bfd_contained_in PARAMS ((bfd *));const bfd_target *_bfd_dummy_target PARAMS ((bfd *abfd));void bfd_dont_truncate_arname PARAMS ((bfd *abfd, const char *filename, char *hdr));void bfd_bsd_truncate_arname PARAMS ((bfd *abfd, const char *filename, char *hdr));void bfd_gnu_truncate_arname PARAMS ((bfd *abfd, const char *filename, char *hdr));boolean bsd_write_armap PARAMS ((bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count, int stridx));boolean coff_write_armap PARAMS ((bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count, int stridx));extern PTR _bfd_generic_read_ar_hdr PARAMS ((bfd *));extern PTR _bfd_generic_read_ar_hdr_mag PARAMS ((bfd *, const char *));bfd * bfd_generic_openr_next_archived_file PARAMS ((bfd *archive, bfd *last_file));int bfd_generic_stat_arch_elt PARAMS ((bfd *, struct stat *));#define _bfd_read_ar_hdr(abfd) \ BFD_SEND (abfd, _bfd_read_ar_hdr_fn, (abfd))/* Generic routines to use for BFD_JUMP_TABLE_GENERIC. Use BFD_JUMP_TABLE_GENERIC (_bfd_generic). */#define _bfd_generic_close_and_cleanup bfd_true#define _bfd_generic_bfd_free_cached_info bfd_true#define _bfd_generic_new_section_hook \ ((boolean (*) PARAMS ((bfd *, asection *))) bfd_true)extern boolean _bfd_generic_get_section_contents PARAMS ((bfd *, asection *, PTR location, file_ptr offset, bfd_size_type count));extern boolean _bfd_generic_get_section_contents_in_window PARAMS ((bfd *, asection *, bfd_window *, file_ptr, bfd_size_type));/* Generic routines to use for BFD_JUMP_TABLE_COPY. Use BFD_JUMP_TABLE_COPY (_bfd_generic). */#define _bfd_generic_bfd_copy_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)#define _bfd_generic_bfd_merge_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)#define _bfd_generic_bfd_set_private_flags \ ((boolean (*) PARAMS ((bfd *, flagword))) bfd_true)#define _bfd_generic_bfd_copy_private_section_data \ ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_true)#define _bfd_generic_bfd_copy_private_symbol_data \ ((boolean (*) PARAMS ((bfd *, asymbol *, bfd *, asymbol *))) bfd_true)#define _bfd_generic_bfd_print_private_bfd_data \ ((boolean (*) PARAMS ((bfd *, PTR))) bfd_true)/* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file support. Use BFD_JUMP_TABLE_CORE (_bfd_nocore). */extern char *_bfd_nocore_core_file_failing_command PARAMS ((bfd *));extern int _bfd_nocore_core_file_failing_signal PARAMS ((bfd *));extern boolean _bfd_nocore_core_file_matches_executable_p PARAMS ((bfd *, bfd *));/* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive file support. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive). */#define _bfd_noarchive_slurp_armap bfd_false#define _bfd_noarchive_slurp_extended_name_table bfd_false#define _bfd_noarchive_construct_extended_name_table \ ((boolean (*) PARAMS ((bfd *, char **, bfd_size_type *, const char **))) \ bfd_false)#define _bfd_noarchive_truncate_arname \ ((void (*) PARAMS ((bfd *, const char *, char *))) bfd_void)#define _bfd_noarchive_write_armap \ ((boolean (*) \ PARAMS ((bfd *, unsigned int, struct orl *, unsigned int, int))) \ bfd_false)#define _bfd_noarchive_read_ar_hdr bfd_nullvoidptr#define _bfd_noarchive_openr_next_archived_file \ ((bfd *(*) PARAMS ((bfd *, bfd *))) bfd_nullvoidptr)#define _bfd_noarchive_get_elt_at_index \ ((bfd *(*) PARAMS ((bfd *, symindex))) bfd_nullvoidptr)#define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt#define _bfd_noarchive_update_armap_timestamp bfd_false/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd). */#define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap#define _bfd_archive_bsd_slurp_extended_name_table \ _bfd_slurp_extended_name_tableextern boolean _bfd_archive_bsd_construct_extended_name_table PARAMS ((bfd *, char **, bfd_size_type *, const char **));#define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname#define _bfd_archive_bsd_write_armap bsd_write_armap#define _bfd_archive_bsd_read_ar_hdr _bfd_generic_read_ar_hdr#define _bfd_archive_bsd_openr_next_archived_file \ bfd_generic_openr_next_archived_file#define _bfd_archive_bsd_get_elt_at_index _bfd_generic_get_elt_at_index#define _bfd_archive_bsd_generic_stat_arch_elt \ bfd_generic_stat_arch_eltextern boolean _bfd_archive_bsd_update_armap_timestamp PARAMS ((bfd *));/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff). */#define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap#define _bfd_archive_coff_slurp_extended_name_table \ _bfd_slurp_extended_name_tableextern boolean _bfd_archive_coff_construct_extended_name_table PARAMS ((bfd *, char **, bfd_size_type *, const char **));#define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname#define _bfd_archive_coff_write_armap coff_write_armap#define _bfd_archive_coff_read_ar_hdr _bfd_generic_read_ar_hdr#define _bfd_archive_coff_openr_next_archived_file \ bfd_generic_openr_next_archived_file#define _bfd_archive_coff_get_elt_at_index _bfd_generic_get_elt_at_index#define _bfd_archive_coff_generic_stat_arch_elt \ bfd_generic_stat_arch_elt#define _bfd_archive_coff_update_armap_timestamp bfd_true/* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol support. Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols). */#define _bfd_nosymbols_get_symtab_upper_bound _bfd_n1#define _bfd_nosymbols_get_symtab \ ((long (*) PARAMS ((bfd *, asymbol **))) _bfd_n1)#define _bfd_nosymbols_make_empty_symbol \ ((asymbol *(*) PARAMS ((bfd *))) bfd_nullvoidptr)#define _bfd_nosymbols_print_symbol \ ((void (*) PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type))) bfd_void)#define _bfd_nosymbols_get_symbol_info \ ((void (*) PARAMS ((bfd *, asymbol *, symbol_info *))) bfd_void)#define _bfd_nosymbols_bfd_is_local_label_name \ ((boolean (*) PARAMS ((bfd *, const char *))) bfd_false)#define _bfd_nosymbols_get_lineno \ ((alent *(*) PARAMS ((bfd *, asymbol *))) bfd_nullvoidptr)#define _bfd_nosymbols_find_nearest_line \ ((boolean (*) \ PARAMS ((bfd *, asection *, asymbol **, bfd_vma, const char **, \ const char **, unsigned int *))) \ bfd_false)#define _bfd_nosymbols_bfd_make_debug_symbol \ ((asymbol *(*) PARAMS ((bfd *, PTR, unsigned long))) bfd_nullvoidptr)#define _bfd_nosymbols_read_minisymbols \ ((long (*) PARAMS ((bfd *, boolean, PTR *, unsigned int *))) _bfd_n1)#define _bfd_nosymbols_minisymbol_to_symbol \ ((asymbol *(*) PARAMS ((bfd *, boolean, const PTR, asymbol *))) \
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -