⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bfd-in2.h

📁 基于4个mips核的noc设计
💻 H
📖 第 1 页 / 共 5 页
字号:
/* Main header file for the bfd library -- portable access to object files.   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,   2000, 2001   Free Software Foundation, Inc.   Contributed by Cygnus Support.** NOTE: bfd.h and bfd-in2.h are GENERATED files.  Don't change them;** instead, change bfd-in.h or the other BFD source files processed to** generate these files.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.  *//* bfd.h -- The only header file required by users of the bfd libraryThe bfd.h file is generated from bfd-in.h and various .c files; if youchange it, your changes will probably be lost.All the prototypes and definitions following the comment "THE FOLLOWINGIS EXTRACTED FROM THE SOURCE" are extracted from the source files forBFD.  If you change it, someone oneday will extract it from the sourceagain, and your changes will be lost.  To save yourself from this bind,change the definitions in the source in the bfd directory.  Type "makedocs" and then "make headers" in that directory, and magically this filewill change to reflect your changes.If you don't have the tools to perform the extraction, then you aresafe from someone on your system trampling over your header files.You should still maintain the equivalence between the source and thisfile though; every change you make to the .c file should be reflectedhere.  */#ifndef __BFD_H_SEEN__#define __BFD_H_SEEN__#ifdef __cplusplusextern "C" {#endif#include "ansidecl.h"/* These two lines get substitutions done by commands in Makefile.in.  */#define BFD_VERSION  "@VERSION@"#define BFD_ARCH_SIZE @wordsize@#define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@#if @BFD_HOST_64_BIT_DEFINED@#define BFD_HOST_64_BIT @BFD_HOST_64_BIT@#define BFD_HOST_U_64_BIT @BFD_HOST_U_64_BIT@#endif#if BFD_ARCH_SIZE >= 64#define BFD64#endif#ifndef INLINE#if __GNUC__ >= 2#define INLINE __inline__#else#define INLINE#endif#endif/* forward declaration */typedef struct _bfd bfd;/* To squelch erroneous compiler warnings ("illegal pointer   combination") from the SVR3 compiler, we would like to typedef   boolean to int (it doesn't like functions which return boolean.   Making sure they are never implicitly declared to return int   doesn't seem to help).  But this file is not configured based on   the host.  *//* General rules: functions which are boolean return true on success   and false on failure (unless they're a predicate).   -- bfd.doc *//* I'm sure this is going to break something and someone is going to   force me to change it.  *//* typedef enum boolean {false, true} boolean; *//* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h>  -fnf *//* It gets worse if the host also defines a true/false enum... -sts *//* And even worse if your compiler has built-in boolean types... -law */#if defined (__GNUG__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))#define TRUE_FALSE_ALREADY_DEFINED#endif#ifdef MPW/* Pre-emptive strike - get the file with the enum.  */#include <Types.h>#define TRUE_FALSE_ALREADY_DEFINED#endif /* MPW */#ifndef TRUE_FALSE_ALREADY_DEFINEDtypedef enum bfd_boolean {false, true} boolean;#define BFD_TRUE_FALSE#else/* Use enum names that will appear nowhere else.  */typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;#endif/* A pointer to a position in a file.  *//* FIXME:  This should be using off_t from <sys/types.h>.   For now, try to avoid breaking stuff by not including <sys/types.h> here.   This will break on systems with 64-bit file offsets (e.g. 4.4BSD).   Probably the best long-term answer is to avoid using file_ptr AND off_t   in this header file, and to handle this in the BFD implementation   rather than in its interface.  *//* typedef off_t	file_ptr; */typedef long int file_ptr;/* Support for different sizes of target format ints and addresses.   If the type `long' is at least 64 bits, BFD_HOST_64BIT_LONG will be   set to 1 above.  Otherwise, if gcc is being used, this code will   use gcc's "long long" type.  Otherwise, BFD_HOST_64_BIT must be   defined above.  */#ifndef BFD_HOST_64_BIT# if BFD_HOST_64BIT_LONG#  define BFD_HOST_64_BIT long#  define BFD_HOST_U_64_BIT unsigned long# else#  ifdef __GNUC__#   if __GNUC__ >= 2#    define BFD_HOST_64_BIT long long#    define BFD_HOST_U_64_BIT unsigned long long#   endif /* __GNUC__ >= 2 */#  endif /* ! defined (__GNUC__) */# endif /* ! BFD_HOST_64BIT_LONG */#endif /* ! defined (BFD_HOST_64_BIT) */#ifdef BFD64#ifndef BFD_HOST_64_BIT #error No 64 bit integer type available#endif /* ! defined (BFD_HOST_64_BIT) */typedef BFD_HOST_U_64_BIT bfd_vma;typedef BFD_HOST_64_BIT bfd_signed_vma;typedef BFD_HOST_U_64_BIT bfd_size_type;typedef BFD_HOST_U_64_BIT symvalue;#ifndef fprintf_vma#if BFD_HOST_64BIT_LONG#define sprintf_vma(s,x) sprintf (s, "%016lx", x)#define fprintf_vma(f,x) fprintf (f, "%016lx", x)#else#define _bfd_int64_low(x) ((unsigned long) (((x) & 0xffffffff)))#define _bfd_int64_high(x) ((unsigned long) (((x) >> 32) & 0xffffffff))#define fprintf_vma(s,x) \  fprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))#define sprintf_vma(s,x) \  sprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))#endif#endif#else /* not BFD64  *//* Represent a target address.  Also used as a generic unsigned type   which is guaranteed to be big enough to hold any arithmetic types   we need to deal with.  */typedef unsigned long bfd_vma;/* A generic signed type which is guaranteed to be big enough to hold any   arithmetic types we need to deal with.  Can be assumed to be compatible   with bfd_vma in the same way that signed and unsigned ints are compatible   (as parameters, in assignment, etc).  */typedef long bfd_signed_vma;typedef unsigned long symvalue;typedef unsigned long bfd_size_type;/* Print a bfd_vma x on stream s.  */#define fprintf_vma(s,x) fprintf (s, "%08lx", x)#define sprintf_vma(s,x) sprintf (s, "%08lx", x)#endif /* not BFD64  */#define printf_vma(x) fprintf_vma(stdout,x)typedef unsigned int flagword;	/* 32 bits of flags */typedef unsigned char bfd_byte;/** File formats */typedef enum bfd_format {	      bfd_unknown = 0,	/* file format is unknown */	      bfd_object,	/* linker/assember/compiler output */	      bfd_archive,	/* object archive file */	      bfd_core,		/* core dump */	      bfd_type_end}	/* marks the end; don't use it! */         bfd_format;/* Values that may appear in the flags field of a BFD.  These also   appear in the object_flags field of the bfd_target structure, where   they indicate the set of flags used by that backend (not all flags   are meaningful for all object file formats) (FIXME: at the moment,   the object_flags values have mostly just been copied from backend   to another, and are not necessarily correct).  *//* No flags.  */#define BFD_NO_FLAGS   	0x00/* BFD contains relocation entries.  */#define HAS_RELOC   	0x01/* BFD is directly executable.  */#define EXEC_P      	0x02/* BFD has line number information (basically used for F_LNNO in a   COFF header).  */#define HAS_LINENO  	0x04/* BFD has debugging information.  */#define HAS_DEBUG   	0x08/* BFD has symbols.  */#define HAS_SYMS    	0x10/* BFD has local symbols (basically used for F_LSYMS in a COFF   header).  */#define HAS_LOCALS  	0x20/* BFD is a dynamic object.  */#define DYNAMIC     	0x40/* Text section is write protected (if D_PAGED is not set, this is   like an a.out NMAGIC file) (the linker sets this by default, but   clears it for -r or -N).  */#define WP_TEXT     	0x80/* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the   linker sets this by default, but clears it for -r or -n or -N).  */#define D_PAGED     	0x100/* BFD is relaxable (this means that bfd_relax_section may be able to   do something) (sometimes bfd_relax_section can do something even if   this is not set).  */#define BFD_IS_RELAXABLE 0x200/* This may be set before writing out a BFD to request using a   traditional format.  For example, this is used to request that when   writing out an a.out object the symbols not be hashed to eliminate   duplicates.  */#define BFD_TRADITIONAL_FORMAT 0x400/* This flag indicates that the BFD contents are actually cached in   memory.  If this is set, iostream points to a bfd_in_memory struct.  */#define BFD_IN_MEMORY 0x800/* symbols and relocation *//* A count of carsyms (canonical archive symbols).  */typedef unsigned long symindex;/* How to perform a relocation.  */typedef const struct reloc_howto_struct reloc_howto_type;#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)/* General purpose part of a symbol X;   target specific parts are in libcoff.h, libaout.h, etc.  */#define bfd_get_section(x) ((x)->section)#define bfd_get_output_section(x) ((x)->section->output_section)#define bfd_set_section(x,y) ((x)->section) = (y)#define bfd_asymbol_base(x) ((x)->section->vma)#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)#define bfd_asymbol_name(x) ((x)->name)/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/#define bfd_asymbol_bfd(x) ((x)->the_bfd)#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)/* A canonical archive symbol.  *//* This is a type pun with struct ranlib on purpose! */typedef struct carsym {  char *name;  file_ptr file_offset;		/* look here to find the file */} carsym;			/* to make these you call a carsymogen *//* Used in generating armaps (archive tables of contents).   Perhaps just a forward definition would do? */struct orl {			/* output ranlib */  char **name;			/* symbol name */  file_ptr pos;			/* bfd* or file position */  int namidx;			/* index into string table */};/* Linenumber stuff */typedef struct lineno_cache_entry {  unsigned int line_number;	/* Linenumber from start of function*/  union {    struct symbol_cache_entry *sym; /* Function name */    unsigned long offset;	/* Offset into section */  } u;} alent;/* object and core file sections */#define	align_power(addr, align)	\	( ((addr) + ((1<<(align))-1)) & (-1 << (align)))typedef struct sec *sec_ptr;#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)#define bfd_section_name(bfd, ptr) ((ptr)->name)#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))#define bfd_section_vma(bfd, ptr) ((ptr)->vma)#define bfd_section_lma(bfd, ptr) ((ptr)->lma)#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = (boolean)true), true)#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)typedef struct stat stat_type;typedef enum bfd_print_symbol{  bfd_print_symbol_name,  bfd_print_symbol_more,  bfd_print_symbol_all} bfd_print_symbol_type;/* Information about a symbol that nm needs.  */typedef struct _symbol_info{  symvalue value;  char type;  CONST char *name;            /* Symbol name.  */  unsigned char stab_type;     /* Stab type.  */  char stab_other;             /* Stab other.  */  short stab_desc;             /* Stab desc.  */  CONST char *stab_name;       /* String for stab type.  */} symbol_info;/* Get the name of a stabs type code.  */extern const char *bfd_get_stab_name PARAMS ((int));/* Hash table routines.  There is no way to free up a hash table.  *//* An element in the hash table.  Most uses will actually use a larger   structure, and an instance of this will be the first field.  */struct bfd_hash_entry

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -