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

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

?? sunos.c

?? 基于4個mips核的noc設計
?? C
?? 第 1 頁 / 共 5 頁
字號:
	}    }  /* Return pointers to the dynamic asymbol structures.  */  for (i = 0; i < info->dynsym_count; i++)    *storage++ = (asymbol *) (info->canonical_dynsym + i);  *storage = NULL;  return info->dynsym_count;}/* Return the amount of memory required for the dynamic relocs.  */static longsunos_get_dynamic_reloc_upper_bound (abfd)     bfd *abfd;{  struct sunos_dynamic_info *info;  if (! sunos_read_dynamic_info (abfd))    return -1;  info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);  if (! info->valid)    {      bfd_set_error (bfd_error_no_symbols);      return -1;    }  return (info->dynrel_count + 1) * sizeof (arelent *);}/* Read in the dynamic relocs.  */static longsunos_canonicalize_dynamic_reloc (abfd, storage, syms)     bfd *abfd;     arelent **storage;     asymbol **syms;{  struct sunos_dynamic_info *info;  unsigned long i;  /* Get the general dynamic information.  */  if (obj_aout_dynamic_info (abfd) == (PTR) NULL)    {      if (! sunos_read_dynamic_info (abfd))	return -1;    }  info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);  if (! info->valid)    {      bfd_set_error (bfd_error_no_symbols);      return -1;    }  /* Get the dynamic reloc information.  */  if (info->dynrel == NULL)    {      info->dynrel = (PTR) bfd_alloc (abfd,				      (info->dynrel_count				       * obj_reloc_entry_size (abfd)));      if (info->dynrel == NULL && info->dynrel_count != 0)	return -1;      if (bfd_seek (abfd, info->dyninfo.ld_rel, SEEK_SET) != 0	  || (bfd_read ((PTR) info->dynrel, info->dynrel_count,			obj_reloc_entry_size (abfd), abfd)	      != info->dynrel_count * obj_reloc_entry_size (abfd)))	{	  if (info->dynrel != NULL)	    {	      bfd_release (abfd, info->dynrel);	      info->dynrel = NULL;	    }	  return -1;	}    }  /* Get the arelent structures corresponding to the dynamic reloc     information.  */  if (info->canonical_dynrel == (arelent *) NULL)    {      arelent *to;      info->canonical_dynrel = ((arelent *)				bfd_alloc (abfd,					   (info->dynrel_count					    * sizeof (arelent))));      if (info->canonical_dynrel == NULL && info->dynrel_count != 0)	return -1;      to = info->canonical_dynrel;      if (obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE)	{	  register struct reloc_ext_external *p;	  struct reloc_ext_external *pend;	  p = (struct reloc_ext_external *) info->dynrel;	  pend = p + info->dynrel_count;	  for (; p < pend; p++, to++)	    NAME(aout,swap_ext_reloc_in) (abfd, p, to, syms,					  info->dynsym_count);	}      else	{	  register struct reloc_std_external *p;	  struct reloc_std_external *pend;	  p = (struct reloc_std_external *) info->dynrel;	  pend = p + info->dynrel_count;	  for (; p < pend; p++, to++)	    NAME(aout,swap_std_reloc_in) (abfd, p, to, syms,					  info->dynsym_count);	}    }  /* Return pointers to the dynamic arelent structures.  */  for (i = 0; i < info->dynrel_count; i++)    *storage++ = info->canonical_dynrel + i;  *storage = NULL;  return info->dynrel_count;}/* Code to handle linking of SunOS shared libraries.  *//* A SPARC procedure linkage table entry is 12 bytes.  The first entry   in the table is a jump which is filled in by the runtime linker.   The remaining entries are branches back to the first entry,   followed by an index into the relocation table encoded to look like   a sethi of %g0.  */#define SPARC_PLT_ENTRY_SIZE (12)static const bfd_byte sparc_plt_first_entry[SPARC_PLT_ENTRY_SIZE] ={  /* sethi %hi(0),%g1; address filled in by runtime linker.  */  0x3, 0, 0, 0,  /* jmp %g1; offset filled in by runtime linker.  */  0x81, 0xc0, 0x60, 0,  /* nop */  0x1, 0, 0, 0};/* save %sp, -96, %sp */#define SPARC_PLT_ENTRY_WORD0 0x9de3bfa0/* call; address filled in later.  */#define SPARC_PLT_ENTRY_WORD1 0x40000000/* sethi; reloc index filled in later.  */#define SPARC_PLT_ENTRY_WORD2 0x01000000/* This sequence is used when for the jump table entry to a defined   symbol in a complete executable.  It is used when linking PIC   compiled code which is not being put into a shared library.  *//* sethi <address to be filled in later>, %g1 */#define SPARC_PLT_PIC_WORD0 0x03000000/* jmp %g1 + <address to be filled in later> */#define SPARC_PLT_PIC_WORD1 0x81c06000/* nop */#define SPARC_PLT_PIC_WORD2 0x01000000/* An m68k procedure linkage table entry is 8 bytes.  The first entry   in the table is a jump which is filled in the by the runtime   linker.  The remaining entries are branches back to the first   entry, followed by a two byte index into the relocation table.  */#define M68K_PLT_ENTRY_SIZE (8)static const bfd_byte m68k_plt_first_entry[M68K_PLT_ENTRY_SIZE] ={  /* jmps @# */  0x4e, 0xf9,  /* Filled in by runtime linker with a magic address.  */  0, 0, 0, 0,  /* Not used?  */  0, 0};/* bsrl */#define M68K_PLT_ENTRY_WORD0 (0x61ff)/* Remaining words filled in later.  *//* An entry in the SunOS linker hash table.  */struct sunos_link_hash_entry{  struct aout_link_hash_entry root;  /* If this is a dynamic symbol, this is its index into the dynamic     symbol table.  This is initialized to -1.  As the linker looks at     the input files, it changes this to -2 if it will be added to the     dynamic symbol table.  After all the input files have been seen,     the linker will know whether to build a dynamic symbol table; if     it does build one, this becomes the index into the table.  */  long dynindx;  /* If this is a dynamic symbol, this is the index of the name in the     dynamic symbol string table.  */  long dynstr_index;  /* The offset into the global offset table used for this symbol.  If     the symbol does not require a GOT entry, this is 0.  */  bfd_vma got_offset;  /* The offset into the procedure linkage table used for this symbol.     If the symbol does not require a PLT entry, this is 0.  */  bfd_vma plt_offset;  /* Some linker flags.  */  unsigned char flags;  /* Symbol is referenced by a regular object.  */#define SUNOS_REF_REGULAR 01  /* Symbol is defined by a regular object.  */#define SUNOS_DEF_REGULAR 02  /* Symbol is referenced by a dynamic object.  */#define SUNOS_REF_DYNAMIC 04  /* Symbol is defined by a dynamic object.  */#define SUNOS_DEF_DYNAMIC 010  /* Symbol is a constructor symbol in a regular object.  */#define SUNOS_CONSTRUCTOR 020};/* The SunOS linker hash table.  */struct sunos_link_hash_table{  struct aout_link_hash_table root;  /* The object which holds the dynamic sections.  */  bfd *dynobj;  /* Whether we have created the dynamic sections.  */  boolean dynamic_sections_created;  /* Whether we need the dynamic sections.  */  boolean dynamic_sections_needed;  /* Whether we need the .got table.  */  boolean got_needed;  /* The number of dynamic symbols.  */  size_t dynsymcount;  /* The number of buckets in the hash table.  */  size_t bucketcount;  /* The list of dynamic objects needed by dynamic objects included in     the link.  */  struct bfd_link_needed_list *needed;  /* The offset of __GLOBAL_OFFSET_TABLE_ into the .got section.  */  bfd_vma got_base;};/* Routine to create an entry in an SunOS link hash table.  */static struct bfd_hash_entry *sunos_link_hash_newfunc (entry, table, string)     struct bfd_hash_entry *entry;     struct bfd_hash_table *table;     const char *string;{  struct sunos_link_hash_entry *ret = (struct sunos_link_hash_entry *) entry;  /* Allocate the structure if it has not already been allocated by a     subclass.  */  if (ret == (struct sunos_link_hash_entry *) NULL)    ret = ((struct sunos_link_hash_entry *)	   bfd_hash_allocate (table, sizeof (struct sunos_link_hash_entry)));  if (ret == (struct sunos_link_hash_entry *) NULL)    return (struct bfd_hash_entry *) ret;  /* Call the allocation method of the superclass.  */  ret = ((struct sunos_link_hash_entry *)	 NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,				       table, string));  if (ret != NULL)    {      /* Set local fields.  */      ret->dynindx = -1;      ret->dynstr_index = -1;      ret->got_offset = 0;      ret->plt_offset = 0;      ret->flags = 0;    }  return (struct bfd_hash_entry *) ret;}/* Create a SunOS link hash table.  */static struct bfd_link_hash_table *sunos_link_hash_table_create (abfd)     bfd *abfd;{  struct sunos_link_hash_table *ret;  ret = ((struct sunos_link_hash_table *)	 bfd_alloc (abfd, sizeof (struct sunos_link_hash_table)));  if (ret == (struct sunos_link_hash_table *) NULL)    return (struct bfd_link_hash_table *) NULL;  if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,					 sunos_link_hash_newfunc))    {      bfd_release (abfd, ret);      return (struct bfd_link_hash_table *) NULL;    }  ret->dynobj = NULL;  ret->dynamic_sections_created = false;  ret->dynamic_sections_needed = false;  ret->got_needed = false;  ret->dynsymcount = 0;  ret->bucketcount = 0;  ret->needed = NULL;  ret->got_base = 0;  return &ret->root.root;}/* Look up an entry in an SunOS link hash table.  */#define sunos_link_hash_lookup(table, string, create, copy, follow) \  ((struct sunos_link_hash_entry *) \   aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\			  (follow)))/* Traverse a SunOS link hash table.  */#define sunos_link_hash_traverse(table, func, info)			\  (aout_link_hash_traverse						\   (&(table)->root,							\    (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func),	\    (info)))/* Get the SunOS link hash table from the info structure.  This is   just a cast.  */#define sunos_hash_table(p) ((struct sunos_link_hash_table *) ((p)->hash))static boolean sunos_scan_dynamic_symbol  PARAMS ((struct sunos_link_hash_entry *, PTR));/* Create the dynamic sections needed if we are linking against a   dynamic object, or if we are linking PIC compiled code.  ABFD is a   bfd we can attach the dynamic sections to.  The linker script will   look for these special sections names and put them in the right   place in the output file.  See include/aout/sun4.h for more details   of the dynamic linking information.  */static booleansunos_create_dynamic_sections (abfd, info, needed)     bfd *abfd;     struct bfd_link_info *info;     boolean needed;{  asection *s;  if (! sunos_hash_table (info)->dynamic_sections_created)    {      flagword flags;      sunos_hash_table (info)->dynobj = abfd;      flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY	       | SEC_LINKER_CREATED);      /* The .dynamic section holds the basic dynamic information: the	 sun4_dynamic structure, the dynamic debugger information, and	 the sun4_dynamic_link structure.  */      s = bfd_make_section (abfd, ".dynamic");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .got section holds the global offset table.  The address	 is put in the ld_got field.  */      s = bfd_make_section (abfd, ".got");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .plt section holds the procedure linkage table.  The	 address is put in the ld_plt field.  */      s = bfd_make_section (abfd, ".plt");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags | SEC_CODE)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .dynrel section holds the dynamic relocs.  The address is	 put in the ld_rel field.  */      s = bfd_make_section (abfd, ".dynrel");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .hash section holds the dynamic hash table.  The address	 is put in the ld_hash field.  */      s = bfd_make_section (abfd, ".hash");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .dynsym section holds the dynamic symbols.  The address	 is put in the ld_stab field.  */      s = bfd_make_section (abfd, ".dynsym");      if (s == NULL	  || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)	  || ! bfd_set_section_alignment (abfd, s, 2))	return false;      /* The .dynstr section holds the dynamic symbol string table.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩一卡二卡| 97久久久精品综合88久久| 欧美日韩欧美一区二区| 一区二区三区欧美日| 不卡在线观看av| 亚洲欧美国产77777| 欧美性做爰猛烈叫床潮| 亚洲 欧美综合在线网络| 91精品欧美一区二区三区综合在| 日韩高清在线电影| 欧美tickling挠脚心丨vk| 国产精品国产三级国产| 国内精品在线播放| 中文字幕一区二区三区色视频| 成人av片在线观看| 亚洲一二三四区| 日韩写真欧美这视频| 国产麻豆精品theporn| 国产精品福利一区| 欧美日韩国产免费一区二区| 毛片一区二区三区| 日本一区二区动态图| 91成人看片片| 久久精品国产亚洲一区二区三区 | 色综合网站在线| 亚洲va天堂va国产va久| 日韩美女在线视频| 日本韩国一区二区三区| 久久精品国产亚洲高清剧情介绍 | 玉足女爽爽91| 欧美一区二区在线观看| 国产不卡视频在线观看| 亚洲bdsm女犯bdsm网站| 国产精品日日摸夜夜摸av| 欧美调教femdomvk| 国产一区二区三区久久久| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 欧美日韩情趣电影| 99视频有精品| 韩国女主播一区二区三区| 亚洲精品成人在线| 久久久三级国产网站| 欧美猛男gaygay网站| 丰满少妇在线播放bd日韩电影| 亚洲电影你懂得| 国产精品久久国产精麻豆99网站| 欧美一级淫片007| 欧美性猛交xxxx黑人交| caoporn国产精品| 亚洲成人av免费| 中文字幕一区二区5566日韩| 亚洲成人1区2区| 精品国产自在久精品国产| 欧美最猛性xxxxx直播| 岛国精品一区二区| 日本亚洲电影天堂| 午夜精品久久久久影视| 亚洲天堂av老司机| 国产精品天干天干在线综合| 亚洲精品一区二区三区精华液| 欧美日韩国产精选| 欧美午夜宅男影院| 99精品桃花视频在线观看| 国产精品一区二区在线看| 麻豆91在线观看| 日韩av成人高清| 亚洲1区2区3区视频| 亚洲成精国产精品女| 一二三四社区欧美黄| 亚洲精品国产精品乱码不99 | 精品久久一二三区| 欧美一激情一区二区三区| 欧美性一二三区| 欧美在线免费播放| 欧美日韩亚洲综合在线| 欧美性大战久久久久久久蜜臀| 99久久婷婷国产综合精品电影| 成人成人成人在线视频| 成人av网站在线观看| 成人久久18免费网站麻豆| 成人av在线一区二区| 成人黄色网址在线观看| 93久久精品日日躁夜夜躁欧美| 91一区二区在线| 91丝袜高跟美女视频| 91国偷自产一区二区使用方法| 欧美亚男人的天堂| 欧美日本一区二区三区四区| 制服丝袜中文字幕亚洲| 日韩欧美一区二区三区在线| 精品欧美乱码久久久久久1区2区| 久久综合五月天婷婷伊人| 久久日韩粉嫩一区二区三区| 久久精品无码一区二区三区 | 国产精品卡一卡二| 亚洲精品中文字幕乱码三区| 一区二区在线观看视频| 五月综合激情日本mⅴ| 久久精品噜噜噜成人av农村| 国产在线精品视频| 99精品视频在线观看免费| 欧美亚州韩日在线看免费版国语版| 欧美日韩mp4| 亚洲在线一区二区三区| 日韩不卡一区二区| 国内偷窥港台综合视频在线播放| 成人午夜激情影院| 欧美三级三级三级爽爽爽| 91麻豆精品国产91久久久久 | 欧美国产一区在线| 亚洲精品国产精华液| 青青青伊人色综合久久| 国产成人欧美日韩在线电影| 色就色 综合激情| 精品免费视频一区二区| 亚洲视频资源在线| 精品一区二区三区在线观看国产 | 国模一区二区三区白浆| 波多野结衣视频一区| 欧美日韩一区三区| 久久久蜜桃精品| 亚洲福中文字幕伊人影院| 国产乱子轮精品视频| 在线免费不卡视频| 国产日韩精品一区二区三区 | 欧美mv日韩mv国产| 亚洲品质自拍视频| 韩国女主播一区二区三区| 欧美亚洲一区二区在线| 久久久精品国产免费观看同学| 亚洲高清免费视频| 成人福利视频在线看| 精品国产免费人成电影在线观看四季| 中文字幕一区av| 国产一区二区三区在线观看免费视频 | 欧美一区二区三区的| 亚洲同性同志一二三专区| 国产综合色视频| 91精品中文字幕一区二区三区| 国产精品美女久久久久久久久久久 | 国产一区在线观看视频| 欧美性猛交xxxxxx富婆| 国产精品久久久久aaaa樱花 | 一区二区三区四区在线免费观看| 紧缚奴在线一区二区三区| 欧美理论片在线| 亚洲免费观看高清完整版在线观看熊 | 欧美视频在线一区| 中文字幕亚洲一区二区av在线| 国产在线视频一区二区| 欧美日韩久久久一区| 中文字幕不卡在线| 国产在线精品免费| 日韩久久久精品| 蜜桃精品视频在线| 91精品国产91综合久久蜜臀| 亚洲国产精品久久不卡毛片 | 国产精品福利一区| 岛国av在线一区| 国产午夜精品理论片a级大结局 | 久久久不卡网国产精品二区| 另类中文字幕网| 欧美变态tickling挠脚心| 午夜精品久久久久久久久久| 欧美性感一类影片在线播放| 亚洲最新视频在线观看| 91久久精品一区二区二区| 亚洲精品v日韩精品| av在线不卡电影| 欧美韩日一区二区三区| 国产成人免费视频网站| 国产性色一区二区| 国产精品一区在线| 国产精品午夜春色av| 91亚洲精品乱码久久久久久蜜桃 | 国产欧美日韩另类一区| 国产91精品一区二区| 国产亚洲一本大道中文在线| 国产成人精品一区二区三区四区| 久久久一区二区三区| 国产成人精品免费视频网站| 国产精品另类一区| 91网上在线视频| 亚洲综合999| 日韩亚洲欧美在线| 久久精工是国产品牌吗| 久久综合国产精品| 成人av网站在线观看免费| 亚洲三级电影网站| 欧美性猛片xxxx免费看久爱| 天天综合网 天天综合色| 精品日本一线二线三线不卡| 国内精品国产成人| 综合av第一页| 欧美精品在线视频| 国产剧情av麻豆香蕉精品| 国产精品久久久久影院亚瑟 | 欧美一级高清片| 福利91精品一区二区三区| 亚洲精品高清在线观看|