亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? coff.h

?? LINUX1.0源代碼,代碼條理清晰
?? H
字號:
/* This file is derrived from the GAS 2.1.4 assembler control file.
   The GAS product is under the GNU Public License, version 2 or later.
   As such, this file is also uder that license.

   If the file format changes in the COFF object, this file should be
   subsequently updated to reflect the changes.

   The actual loader module only uses a few of these structures. The full
   set is documented here because I received the full set. If you wish
   more information about COFF, then O'Rielly has a very excellent book.
*/

#define  E_SYMNMLEN  8   /* Number of characters in a symbol name         */
#define  E_FILNMLEN 14   /* Number of characters in a file name           */
#define  E_DIMNUM    4   /* Number of array dimensions in auxiliary entry */

/*
 * These defines are byte order independant. There is no alignment of fields
 * permitted in the structures. Therefore they are declared as characters
 * and the values loaded from the character positions. It also makes it
 * nice to have it "endian" independant.
 */
 
/* Load a short int from the following tables with little-endian formats */
#define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)|\
				  ((unsigned short)((unsigned char)ps[0]))))

/* Load a long int from the following tables with little-endian formats */
#define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) |\
				 ((unsigned long)((unsigned char)ps[2])<<16) |\
				 ((unsigned long)((unsigned char)ps[1])<<8)  |\
				 ((unsigned long)((unsigned char)ps[0])))))
 
/* Load a short int from the following tables with big-endian formats */
#define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)|\
				  ((unsigned short)((unsigned char)ps[1]))))

/* Load a long int from the following tables with big-endian formats */
#define COFF_LONG_H(ps) (((long)(((unsigned long)((unsigned char)ps[0])<<24) |\
				 ((unsigned long)((unsigned char)ps[1])<<16) |\
				 ((unsigned long)((unsigned char)ps[2])<<8)  |\
				 ((unsigned long)((unsigned char)ps[3])))))

/* These may be overriden later by brain dead implementations which generate
   a big-endian header with little-endian data. In that case, generate a
   replacement macro which tests a flag and uses either of the two above
   as appropriate. */

#define COFF_LONG(v)   COFF_LONG_L(v)
#define COFF_SHORT(v)  COFF_SHORT_L(v)

/*** coff information for Intel 386/486.  */

/********************** FILE HEADER **********************/

struct COFF_filehdr {
	char f_magic[2];	/* magic number			*/
	char f_nscns[2];	/* number of sections		*/
	char f_timdat[4];	/* time & date stamp		*/
	char f_symptr[4];	/* file pointer to symtab	*/
	char f_nsyms[4];	/* number of symtab entries	*/
	char f_opthdr[2];	/* sizeof(optional hdr)		*/
	char f_flags[2];	/* flags			*/
};

/*
 *   Bits for f_flags:
 *
 *	F_RELFLG	relocation info stripped from file
 *	F_EXEC		file is executable  (i.e. no unresolved externel
 *			references)
 *	F_LNNO		line nunbers stripped from file
 *	F_LSYMS		local symbols stripped from file
 *	F_MINMAL	this is a minimal object file (".m") output of fextract
 *	F_UPDATE	this is a fully bound update file, output of ogen
 *	F_SWABD		this file has had its bytes swabbed (in names)
 *	F_AR16WR	this file has the byte ordering of an AR16WR
 *			(e.g. 11/70) machine
 *	F_AR32WR	this file has the byte ordering of an AR32WR machine
 *			(e.g. vax and iNTEL 386)
 *	F_AR32W		this file has the byte ordering of an AR32W machine
 *			(e.g. 3b,maxi)
 *	F_PATCH		file contains "patch" list in optional header
 *	F_NODF		(minimal file only) no decision functions for
 *			replaced functions
 */

#define  COFF_F_RELFLG		0000001
#define  COFF_F_EXEC		0000002
#define  COFF_F_LNNO		0000004
#define  COFF_F_LSYMS		0000010
#define  COFF_F_MINMAL		0000020
#define  COFF_F_UPDATE		0000040
#define  COFF_F_SWABD		0000100
#define  COFF_F_AR16WR		0000200
#define  COFF_F_AR32WR		0000400
#define  COFF_F_AR32W		0001000
#define  COFF_F_PATCH		0002000
#define  COFF_F_NODF		0002000

#define	COFF_I386MAGIC	        0x14c   /* Linux's system    */

#if 0   /* Perhaps, someday, these formats may be used.      */
#define COFF_I386PTXMAGIC	0x154
#define COFF_I386AIXMAGIC	0x175   /* IBM's AIX system  */
#define COFF_I386BADMAG(x) ((COFF_SHORT((x).f_magic) != COFF_I386MAGIC) \
			  && COFF_SHORT((x).f_magic) != COFF_I386PTXMAGIC \
			  && COFF_SHORT((x).f_magic) != COFF_I386AIXMAGIC)
#else
#define COFF_I386BADMAG(x) (COFF_SHORT((x).f_magic) != COFF_I386MAGIC)
#endif

#define	COFF_FILHDR	struct COFF_filehdr
#define	COFF_FILHSZ	sizeof(COFF_FILHDR)

/********************** AOUT "OPTIONAL HEADER" **********************/

/* Linux COFF must have this "optional" header. Standard COFF has no entry
   location for the "entry" point. They normally would start with the first
   location of the .text section. This is not a good idea for linux. So,
   the use of this "optional" header is not optional. It is required.

   Do not be tempted to assume that the size of the optional header is
   a constant and simply index the next byte by the size of this structure.
   Use the 'f_opthdr' field in the main coff header for the size of the
   structure actually written to the file!!
*/

typedef struct 
{
  char 	magic[2];		/* type of file				 */
  char	vstamp[2];		/* version stamp			 */
  char	tsize[4];		/* text size in bytes, padded to FW bdry */
  char	dsize[4];		/* initialized   data "   "		 */
  char	bsize[4];		/* uninitialized data "   "		 */
  char	entry[4];		/* entry pt.				 */
  char 	text_start[4];		/* base of text used for this file       */
  char 	data_start[4];		/* base of data used for this file       */
}
COFF_AOUTHDR;

#define COFF_AOUTSZ (sizeof(COFF_AOUTHDR))

#define COFF_STMAGIC	0401
#define COFF_OMAGIC     0404
#define COFF_JMAGIC     0407    /* dirty text and data image, can't share  */
#define COFF_DMAGIC     0410    /* dirty text segment, data aligned        */
#define COFF_ZMAGIC     0413    /* The proper magic number for executabls  */
#define COFF_SHMAGIC	0443	/* shared library header                   */

/********************** SECTION HEADER **********************/

struct COFF_scnhdr {
  char		s_name[8];	/* section name			    */
  char		s_paddr[4];	/* physical address, aliased s_nlib */
  char		s_vaddr[4];	/* virtual address		    */
  char		s_size[4];	/* section size			    */
  char		s_scnptr[4];	/* file ptr to raw data for section */
  char		s_relptr[4];	/* file ptr to relocation	    */
  char		s_lnnoptr[4];	/* file ptr to line numbers	    */
  char		s_nreloc[2];	/* number of relocation entries	    */
  char		s_nlnno[2];	/* number of line number entries    */
  char		s_flags[4];	/* flags			    */
};

#define	COFF_SCNHDR	struct COFF_scnhdr
#define	COFF_SCNHSZ	sizeof(COFF_SCNHDR)

/*
 * names of "special" sections
 */

#define COFF_TEXT	".text"
#define COFF_DATA	".data"
#define COFF_BSS	".bss"
#define COFF_COMMENT    ".comment"
#define COFF_LIB        ".lib"

#define COFF_SECT_TEXT  0      /* Section for instruction code             */
#define COFF_SECT_DATA  1      /* Section for initialized globals          */
#define COFF_SECT_BSS   2      /* Section for un-initialized globals       */
#define COFF_SECT_REQD  3      /* Minimum number of sections for good file */

#define COFF_STYP_REG     0x00 /* regular segment                          */
#define COFF_STYP_DSECT   0x01 /* dummy segment                            */
#define COFF_STYP_NOLOAD  0x02 /* no-load segment                          */
#define COFF_STYP_GROUP   0x04 /* group segment                            */
#define COFF_STYP_PAD     0x08 /* .pad segment                             */
#define COFF_STYP_COPY    0x10 /* copy section                             */
#define COFF_STYP_TEXT    0x20 /* .text segment                            */
#define COFF_STYP_DATA    0x40 /* .data segment                            */
#define COFF_STYP_BSS     0x80 /* .bss segment                             */
#define COFF_STYP_INFO   0x200 /* .comment section                         */
#define COFF_STYP_OVER   0x400 /* overlay section                          */
#define COFF_STYP_LIB    0x800 /* library section                          */

/*
 * Shared libraries have the following section header in the data field for
 * each library.
 */

struct COFF_slib {
  char		sl_entsz[4];	/* Size of this entry               */
  char		sl_pathndx[4];	/* size of the header field         */
};

#define	COFF_SLIBHD	struct COFF_slib
#define	COFF_SLIBSZ	sizeof(COFF_SLIBHD)

/********************** LINE NUMBERS **********************/

/* 1 line number entry for every "breakpointable" source line in a section.
 * Line numbers are grouped on a per function basis; first entry in a function
 * grouping will have l_lnno = 0 and in place of physical address will be the
 * symbol table index of the function name.
 */

struct COFF_lineno {
  union {
    char l_symndx[4];	/* function name symbol index, iff l_lnno == 0*/
    char l_paddr[4];	/* (physical) address of line number	*/
  } l_addr;
  char l_lnno[2];	/* line number		*/
};

#define	COFF_LINENO	struct COFF_lineno
#define	COFF_LINESZ	6

/********************** SYMBOLS **********************/

#define COFF_E_SYMNMLEN	 8	/* # characters in a short symbol name	*/
#define COFF_E_FILNMLEN	14	/* # characters in a file name		*/
#define COFF_E_DIMNUM	 4	/* # array dimensions in auxiliary entry */

/*
 *  All symbols and sections have the following definition
 */

struct COFF_syment 
{
  union {
    char e_name[E_SYMNMLEN];    /* Symbol name (first 8 characters) */
    struct {
      char e_zeroes[4];         /* Leading zeros */
      char e_offset[4];         /* Offset if this is a header section */
    } e;
  } e;

  char e_value[4];              /* Value (address) of the segment */
  char e_scnum[2];              /* Section number */
  char e_type[2];               /* Type of section */
  char e_sclass[1];             /* Loader class */
  char e_numaux[1];             /* Number of auxiliary entries which follow */
};

#define COFF_N_BTMASK	(0xf)   /* Mask for important class bits */
#define COFF_N_TMASK	(0x30)  /* Mask for important type bits  */
#define COFF_N_BTSHFT	(4)     /* # bits to shift class field   */
#define COFF_N_TSHIFT	(2)     /* # bits to shift type field    */

/*
 *  Auxiliary entries because the main table is too limiting.
 */
  
union COFF_auxent {

/*
 *  Debugger information
 */

  struct {
    char x_tagndx[4];	        /* str, un, or enum tag indx */
    union {
      struct {
	char  x_lnno[2];        /* declaration line number */
	char  x_size[2];        /* str/union/array size */
      } x_lnsz;
      char x_fsize[4];	        /* size of function */
    } x_misc;

    union {
      struct {		        /* if ISFCN, tag, or .bb */
	char x_lnnoptr[4];	/* ptr to fcn line # */
	char x_endndx[4];	/* entry ndx past block end */
      } x_fcn;

      struct {		        /* if ISARY, up to 4 dimen. */
	char x_dimen[E_DIMNUM][2];
      } x_ary;
    } x_fcnary;

    char x_tvndx[2];	/* tv index */
  } x_sym;

/*
 *   Source file names (debugger information)
 */

  union {
    char x_fname[E_FILNMLEN];
    struct {
      char x_zeroes[4];
      char x_offset[4];
    } x_n;
  } x_file;

/*
 *   Section information
 */

  struct {
    char x_scnlen[4];	/* section length */
    char x_nreloc[2];	/* # relocation entries */
    char x_nlinno[2];	/* # line numbers */
  } x_scn;

/*
 *   Transfer vector (branch table)
 */
  
  struct {
    char x_tvfill[4];	/* tv fill value */
    char x_tvlen[2];	/* length of .tv */
    char x_tvran[2][2];	/* tv range */
  } x_tv;		/* info about .tv section (in auxent of symbol .tv)) */
};

#define	COFF_SYMENT	struct COFF_syment
#define	COFF_SYMESZ	18	
#define	COFF_AUXENT	union COFF_auxent
#define	COFF_AUXESZ	18

#define COFF_ETEXT	"etext"

/********************** RELOCATION DIRECTIVES **********************/

struct COFF_reloc {
  char r_vaddr[4];        /* Virtual address of item    */
  char r_symndx[4];       /* Symbol index in the symtab */
  char r_type[2];         /* Relocation type            */
};

#define COFF_RELOC struct COFF_reloc
#define COFF_RELSZ 10

#define COFF_DEF_DATA_SECTION_ALIGNMENT  4
#define COFF_DEF_BSS_SECTION_ALIGNMENT   4
#define COFF_DEF_TEXT_SECTION_ALIGNMENT  4

/* For new sections we havn't heard of before */
#define COFF_DEF_SECTION_ALIGNMENT       4

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线影院一区二区| 日韩一区二区电影| 日韩av成人高清| 日韩精品中文字幕一区| 久久婷婷综合激情| 日韩美女久久久| 久久久久久久久岛国免费| 欧美一级免费观看| 欧美性一级生活| 国产91丝袜在线播放| 午夜精品福利视频网站| 奇米在线7777在线精品| 日韩电影网1区2区| 久久99精品国产.久久久久久 | 日韩欧美在线123| 91.com在线观看| 久久综合精品国产一区二区三区| 日韩精品一区在线| 自拍偷在线精品自拍偷无码专区 | 青青青爽久久午夜综合久久午夜| 亚洲一区二区三区四区在线免费观看| 中文字幕一区二区日韩精品绯色 | 亚洲欧美日韩国产成人精品影院| 亚洲美女在线国产| 日产欧产美韩系列久久99| 亚洲一区二区三区精品在线| 日韩精品一二三| 成人午夜视频福利| 欧美性大战久久久| 欧美精品一区二区高清在线观看| 国产亚洲精品福利| 亚洲午夜精品在线| 久久精品国产精品亚洲红杏| 蜜臀久久99精品久久久久久9| 成人的网站免费观看| 色婷婷精品大视频在线蜜桃视频| 在线视频综合导航| 日韩精品中文字幕一区| 欧美激情综合网| 亚欧色一区w666天堂| 亚洲午夜久久久久久久久电影院| 国产真实乱对白精彩久久| 色综合天天做天天爱| 久久精品人人做人人爽人人| 中文字幕在线观看不卡| 日本不卡的三区四区五区| 精品一区二区三区视频在线观看 | 亚洲欧美国产毛片在线| 一区二区三国产精华液| 国产成人午夜精品影院观看视频| 日韩欧美亚洲国产精品字幕久久久 | 成人美女视频在线观看18| 91精品国产色综合久久不卡电影| 日韩精品成人一区二区在线| 欧美美女一区二区三区| 国产一区二区三区在线看麻豆| 欧美精品三级在线观看| 一区二区不卡在线播放| a4yy欧美一区二区三区| 欧美激情在线一区二区| 国产一区欧美二区| 亚洲人成伊人成综合网小说| 99视频一区二区三区| 亚洲午夜激情av| 91精品午夜视频| 国产精品一区二区在线看| 欧美日本精品一区二区三区| 天堂一区二区在线| 国产农村妇女精品| 日韩女同互慰一区二区| 色综合色狠狠综合色| 日精品一区二区| 午夜婷婷国产麻豆精品| 自拍av一区二区三区| 91精品国产品国语在线不卡| 久久国产日韩欧美精品| 亚洲国产wwwccc36天堂| 国产精品国产三级国产普通话蜜臀| 欧美福利视频一区| 成人动漫一区二区在线| 国产v综合v亚洲欧| 日韩国产欧美视频| 亚洲人成网站影音先锋播放| 91精品在线免费观看| 欧美三级电影网| 欧美在线免费观看视频| 91国模大尺度私拍在线视频| 91亚洲精品一区二区乱码| 久久99精品久久久久婷婷| 三级久久三级久久久| 亚洲线精品一区二区三区八戒| 亚洲理论在线观看| 一区二区三区欧美亚洲| 久久精品国产精品亚洲精品| 狠狠v欧美v日韩v亚洲ⅴ| 95精品视频在线| 欧美精品电影在线播放| 日韩一级成人av| 久久九九全国免费| 亚洲天堂2014| 精久久久久久久久久久| 在线精品国精品国产尤物884a| 91高清视频免费看| 日韩三级伦理片妻子的秘密按摩| 久久免费视频色| 日韩黄色片在线观看| 九九国产精品视频| 972aa.com艺术欧美| 欧美电影一区二区| 久久久精品综合| 日本欧美一区二区在线观看| 欧美午夜在线观看| 9191成人精品久久| 国产日韩精品一区二区三区在线| 香蕉加勒比综合久久| 日本韩国精品在线| 亚洲欧洲精品一区二区三区| 亚洲精品中文字幕乱码三区| 岛国精品一区二区| 精品99一区二区| 日韩综合在线视频| 91麻豆123| 日韩电影在线一区| 欧美精品久久天天躁| 亚洲国产一区二区三区| 狠狠久久亚洲欧美| 亚洲国产成人私人影院tom| 日韩国产高清在线| 日韩精品在线一区| 国产成人在线观看| 国产91精品在线观看| 国产欧美日韩精品a在线观看| 国产不卡在线播放| 婷婷成人激情在线网| 日韩视频在线观看一区二区| 日韩在线a电影| 欧美特级限制片免费在线观看| 免费不卡在线观看| 国产精品免费看片| 欧美视频自拍偷拍| 午夜成人免费视频| 中文字幕欧美国产| 久久网这里都是精品| 精品国产区一区| 色综合天天综合狠狠| 国产呦萝稀缺另类资源| 国产精品美女一区二区三区| 欧美日韩精品欧美日韩精品一| 麻豆精品一区二区综合av| 亚洲久草在线视频| 久久夜色精品国产噜噜av| 成人精品高清在线| 亚洲日本丝袜连裤袜办公室| 日韩三级中文字幕| 91精品福利视频| 91免费观看在线| 成人av在线电影| 成人激情免费电影网址| 欧美性生活久久| 欧美精品一区二区三区四区| 欧美视频在线一区| 色综合久久久网| 色欧美片视频在线观看在线视频| 亚洲另类在线视频| 亚洲女女做受ⅹxx高潮| 国产午夜精品一区二区| 欧美色电影在线| 欧美自拍偷拍午夜视频| 亚洲猫色日本管| 色噜噜狠狠一区二区三区果冻| 亚洲黄色尤物视频| 成人教育av在线| 亚洲免费三区一区二区| 91视频观看免费| 亚洲国产精品综合小说图片区| 91丨porny丨在线| 亚洲精品视频免费看| 91麻豆免费看片| 亚洲视频电影在线| 97精品久久久午夜一区二区三区| 欧美一区二区三区系列电影| 91精品国产免费久久综合| 亚洲欧美日韩国产综合| 一本大道久久a久久精品综合| 亚洲不卡一区二区三区| 欧美午夜精品一区二区三区| 最新不卡av在线| 91免费国产在线观看| 国产日韩一级二级三级| 激情综合五月天| 91精品国产高清一区二区三区| 国产传媒久久文化传媒| 亚洲h在线观看| 2021久久国产精品不只是精品| 91啪亚洲精品| 国产黑丝在线一区二区三区| 亚洲图片欧美视频| 综合av第一页| 中文字幕欧美激情| 中文字幕日韩精品一区|