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

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

?? init.c

?? GUN開源阻止下的編譯器GCC
?? C
字號:
/* GNU Objective C Runtime initialization    Copyright (C) 1993, 1995 Free Software Foundation, Inc.   Contributed by Kresten Krab ThorupThis file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modify it under theterms of the GNU General Public License as published by the Free SoftwareFoundation; either version 2, or (at your option) any later version.GNU CC is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESSFOR A PARTICULAR PURPOSE.  See the GNU General Public License for moredetails.You should have received a copy of the GNU General Public License along withGNU CC; see the file COPYING.  If not, write to the Free SoftwareFoundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  *//* As a special exception, if you link this library with files compiled with   GCC to produce an executable, this does not cause the resulting executable   to be covered by the GNU General Public License. This exception does not   however invalidate any other reasons why the executable file might be   covered by the GNU General Public License.  */#include "runtime.h"/* The version number of this runtime.  This must match the number    defined in gcc (objc-act.c) */#define OBJC_VERSION 7#define PROTOCOL_VERSION 2/* This list contains all modules currently loaded into the runtime */static struct objc_list* __objc_module_list = 0;/* This list contains all proto_list's not yet assigned class links */static struct objc_list* unclaimed_proto_list = 0;/* List of unresolved static instances.  */static struct objc_list *uninitialized_statics;/* Check compiler vs runtime version */static void init_check_module_version (Module_t);/* Assign isa links to protos */static void __objc_init_protocols (struct objc_protocol_list* protos);/* Add protocol to class */static void __objc_class_add_protocols (Class, struct objc_protocol_list*);/* This is a hook which is called by __objc_exec_class every time a class   or a category is loaded into the runtime.  This may e.g. help a   dynamic loader determine the classes that have been loaded when   an object file is dynamically linked in */void (*_objc_load_callback)(Class class, Category* category) = 0;/* Is all categories/classes resolved? */BOOL __objc_dangling_categories = NO;extern SEL__sel_register_typed_name (const char *name, const char *types, 			   struct objc_selector *orig);/* Run through the statics list, removing modules as soon as all its statics   have been initialized.  */static voidobjc_init_statics (){  struct objc_list **cell = &uninitialized_statics;  struct objc_static_instances **statics_in_module;  while (*cell)    {      int module_initialized = 1;      for (statics_in_module = (*cell)->head;	   *statics_in_module; statics_in_module++)	{	  struct objc_static_instances *statics = *statics_in_module;	  Class class = objc_lookup_class (statics->class_name);	  if (!class)	    module_initialized = 0;	  /* Actually, the static's class_pointer will be NULL when we             haven't been here before.  However, the comparison is to be             reminded of taking into account class posing and to think about             possible semantics...  */	  else if (class != statics->instances[0]->class_pointer)	    {	      id *inst;	      for (inst = &statics->instances[0]; *inst; inst++)		{		  (*inst)->class_pointer = class;		  /* ??? Make sure the object will not be freed.  With                     refcounting, invoke `-retain'.  Without refcounting, do                     nothing and hope that `-free' will never be invoked.  */		  /* ??? Send the object an `-initStatic' or something to                     that effect now or later on?  What are the semantics of                     statically allocated instances, besides the trivial                     NXConstantString, anyway?  */		}	    }	}      if (module_initialized)	{	  /* Remove this module from the uninitialized list.  */	  struct objc_list *this = *cell;	  *cell = this->tail;	  free (this);	}      else	cell = &(*cell)->tail;    }} /* objc_init_statics *//* This function is called by constructor functions generated for each   module compiled.  (_GLOBAL_$I$...) The purpose of this function is to   gather the module pointers so that they may be processed by the   initialization routines as soon as possible */void__objc_exec_class (Module_t module){  /* Have we processed any constructors previously?  This flag is used to     indicate that some global data structures need to be built.  */  static BOOL previous_constructors = 0;  static struct objc_list* unclaimed_categories = 0;  /* The symbol table (defined in objc-api.h) generated by gcc */  Symtab_t symtab = module->symtab;  /* Entry used to traverse hash lists */  struct objc_list** cell;  /* The table of selector references for this module */  SEL selectors = symtab->refs;   /* dummy counter */  int i;  DEBUG_PRINTF ("received module: %s\n", module->name);  /* check gcc version */  init_check_module_version(module);  /* On the first call of this routine, initialize some data structures.  */  if (!previous_constructors)    {      __objc_init_selector_tables();      __objc_init_class_tables();      __objc_init_dispatch_tables();      previous_constructors = 1;    }  /* Save the module pointer for later processing. (not currently used) */  __objc_module_list = list_cons(module, __objc_module_list);  /* Replace referenced selectors from names to SEL's.  */  if (selectors)    {      for (i = 0; selectors[i].sel_id; ++i)	{	  const char *name, *type;	  name = (char*)selectors[i].sel_id;	  type = (char*)selectors[i].sel_types;	  __sel_register_typed_name (name, type, 				     (struct objc_selector*)&(selectors[i]));	}    }  /* Parse the classes in the load module and gather selector information.  */  DEBUG_PRINTF ("gathering selectors from module: %s\n", module->name);  for (i = 0; i < symtab->cls_def_cnt; ++i)    {      Class class = (Class) symtab->defs[i];      /* Make sure we have what we think.  */      assert (CLS_ISCLASS(class));      assert (CLS_ISMETA(class->class_pointer));      DEBUG_PRINTF ("phase 1, processing class: %s\n", class->name);      /* Store the class in the class table and assign class numbers.  */      __objc_add_class_to_hash (class);      /* Register all of the selectors in the class and meta class.  */      __objc_register_selectors_from_class (class);      __objc_register_selectors_from_class ((Class) class->class_pointer);      /* Install the fake dispatch tables */      __objc_install_premature_dtable(class);      __objc_install_premature_dtable(class->class_pointer);      if (class->protocols)	__objc_init_protocols (class->protocols);      if (_objc_load_callback)	_objc_load_callback(class, 0);   }  /* Process category information from the module.  */  for (i = 0; i < symtab->cat_def_cnt; ++i)    {      Category_t category = symtab->defs[i + symtab->cls_def_cnt];      Class class = objc_lookup_class (category->class_name);            /* If the class for the category exists then append its methods.  */      if (class)	{	  DEBUG_PRINTF ("processing categories from (module,object): %s, %s\n",			module->name,			class->name);	  /* Do instance methods.  */	  if (category->instance_methods)	    class_add_method_list (class, category->instance_methods);	  /* Do class methods.  */	  if (category->class_methods)	    class_add_method_list ((Class) class->class_pointer, 				   category->class_methods);	  if (category->protocols)	    {	      __objc_init_protocols (category->protocols);	      __objc_class_add_protocols (class, category->protocols);	    }          if (_objc_load_callback)	    _objc_load_callback(class, category);	}      else	{	  /* The object to which the category methods belong can't be found.	     Save the information.  */	  unclaimed_categories = list_cons(category, unclaimed_categories);	}    }  if (module->statics)    uninitialized_statics = list_cons (module->statics, uninitialized_statics);  if (uninitialized_statics)    objc_init_statics ();  /* Scan the unclaimed category hash.  Attempt to attach any unclaimed     categories to objects.  */  for (cell = &unclaimed_categories;       *cell;       ({ if (*cell) cell = &(*cell)->tail; }))    {      Category_t category = (*cell)->head;      Class class = objc_lookup_class (category->class_name);            if (class)	{	  DEBUG_PRINTF ("attaching stored categories to object: %s\n",			class->name);	  	  list_remove_head (cell);	  	  if (category->instance_methods)	    class_add_method_list (class, category->instance_methods);	  	  if (category->class_methods)	    class_add_method_list ((Class) class->class_pointer,				   category->class_methods);	  	  if (category->protocols)	    {	      __objc_init_protocols (category->protocols);	      __objc_class_add_protocols (class, category->protocols);	    }	            if (_objc_load_callback)	    _objc_load_callback(class, category);	}    }    if (unclaimed_proto_list && objc_lookup_class ("Protocol"))    {      list_mapcar (unclaimed_proto_list,(void(*)(void*))__objc_init_protocols);      list_free (unclaimed_proto_list);      unclaimed_proto_list = 0;    }}/* Sanity check the version of gcc used to compile `module'*/static void init_check_module_version(Module_t module){  if ((module->version != OBJC_VERSION) || (module->size != sizeof (Module)))    {      fprintf (stderr, "Module %s version %d doesn't match runtime %d\n",	       module->name, (int)module->version, OBJC_VERSION);      if(module->version > OBJC_VERSION)	fprintf (stderr, "Runtime (libobjc.a) is out of date\n");      else if (module->version < OBJC_VERSION)	fprintf (stderr, "Compiler (gcc) is out of date\n");      else	fprintf (stderr, "Objective C internal error -- bad Module size\n");      abort ();    }}static void__objc_init_protocols (struct objc_protocol_list* protos){  int i;  static Class proto_class = 0;  if (! protos)    return;  if (!proto_class)    proto_class = objc_lookup_class("Protocol");  if (!proto_class)    {      unclaimed_proto_list = list_cons (protos, unclaimed_proto_list);      return;    }#if 0  assert (protos->next == 0);	/* only single ones allowed */#endif  for(i = 0; i < protos->count; i++)    {      struct objc_protocol* aProto = protos->list[i];      if (((size_t)aProto->class_pointer) == PROTOCOL_VERSION)	{	  /* assign class pointer */	  aProto->class_pointer = proto_class;	  /* init super protocols */	  __objc_init_protocols (aProto->protocol_list);	}      else if (protos->list[i]->class_pointer != proto_class)	{	  fprintf (stderr,		   "Version %d doesn't match runtime protocol version %d\n",		   (int)((char*)protos->list[i]->class_pointer-(char*)0),		   PROTOCOL_VERSION);	  abort ();	}    }}static void __objc_class_add_protocols (Class class,					struct objc_protocol_list* protos){  /* Well... */  if (! protos)    return;  /* Add it... */  protos->next = class->protocols;  class->protocols = protos;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲大片在线观看| 91免费版pro下载短视频| 国产激情91久久精品导航 | 国产日韩精品一区二区三区在线| 欧美国产激情二区三区| 偷窥少妇高潮呻吟av久久免费| 国产精品一二三区| 日韩一区二区三区在线| 亚洲美腿欧美偷拍| 国产成人精品免费视频网站| 91精品国产综合久久精品性色| 国产精品久久影院| 麻豆精品一区二区| 欧美熟乱第一页| 国产精品萝li| 国产精品一二三区| 精品久久国产97色综合| 亚洲一二三区视频在线观看| 99re成人精品视频| 欧美国产精品一区二区| 国精产品一区一区三区mba桃花| 欧美午夜一区二区三区免费大片| 亚洲欧洲在线观看av| 国产成人在线影院 | 日韩电影在线免费看| 91小视频免费观看| 国产情人综合久久777777| 麻豆久久久久久久| 婷婷中文字幕一区三区| 性欧美大战久久久久久久久| 色婷婷国产精品综合在线观看| 国产麻豆精品一区二区| 国产乱色国产精品免费视频| 国产激情视频一区二区三区欧美| 国产尤物一区二区在线| 蜜桃一区二区三区在线观看| 九九热在线视频观看这里只有精品| 国产原创一区二区| 亚洲一区二区精品视频| 老司机午夜精品| 日韩午夜av一区| 麻豆freexxxx性91精品| 欧美成人精品高清在线播放| 天天影视网天天综合色在线播放| 国产在线精品一区二区三区不卡| 久久久青草青青国产亚洲免观| 国产综合久久久久久久久久久久| 精品久久一二三区| 国产激情91久久精品导航| 日本一区免费视频| 97精品久久久午夜一区二区三区 | ●精品国产综合乱码久久久久 | 久久精品亚洲乱码伦伦中文| 国产精品99久久久久久久vr| 欧美激情一区二区三区在线| 色综合色狠狠综合色| 亚洲电影在线免费观看| 精品剧情v国产在线观看在线| 国产露脸91国语对白| 综合激情成人伊人| 欧美巨大另类极品videosbest| 久久99精品久久只有精品| 天堂资源在线中文精品| 欧美三级韩国三级日本三斤| 奇米色777欧美一区二区| 久久综合狠狠综合久久综合88 | 一区二区三区四区不卡视频| 欧美精品色一区二区三区| 九九国产精品视频| 亚洲裸体在线观看| 日韩一级成人av| www.亚洲精品| 美女视频黄 久久| 国产精品美日韩| 欧美一区二区三区小说| 成人黄色在线视频| 首页亚洲欧美制服丝腿| 欧美国产成人精品| 欧美一三区三区四区免费在线看| 国产成人av在线影院| 亚洲一区免费在线观看| 国产亚洲欧美一区在线观看| 欧美视频一区二区| 国产·精品毛片| 日韩高清国产一区在线| 天天综合日日夜夜精品| 国产精品久久久久久久久久免费看 | 亚洲高清不卡在线观看| 久久久精品国产免大香伊| 欧美日韩二区三区| 波多野结衣在线aⅴ中文字幕不卡| 天堂精品中文字幕在线| 亚洲精品久久久蜜桃| 久久色成人在线| 91精品在线免费观看| 91日韩一区二区三区| 国产成人av资源| 精品亚洲国内自在自线福利| 午夜欧美一区二区三区在线播放| 国产精品网站在线播放| 精品国产免费久久| 欧美一区二区三区思思人| 欧美三区免费完整视频在线观看| av电影天堂一区二区在线观看| 国产美女精品人人做人人爽| 蜜乳av一区二区| 午夜欧美电影在线观看| 一区二区日韩电影| 亚洲欧美一区二区三区久本道91| 中文字幕va一区二区三区| 精品国一区二区三区| 日韩精品最新网址| 日韩色在线观看| 制服丝袜亚洲色图| 91精品欧美一区二区三区综合在| 欧美四级电影网| 欧美三日本三级三级在线播放| 在线观看国产日韩| 欧美色老头old∨ideo| 欧美午夜不卡视频| 欧美一区二区三区四区五区| 91精品国产综合久久久久久漫画| 欧美另类z0zxhd电影| 欧美高清视频不卡网| 欧美一级久久久久久久大片| 欧美xxx久久| 欧美国产视频在线| 亚洲人吸女人奶水| 亚洲国产成人av网| 免费观看在线色综合| 狠狠色伊人亚洲综合成人| 国产真实乱对白精彩久久| 国产99久久久国产精品免费看| 成人精品免费网站| 色天天综合色天天久久| 欧美日韩高清一区| 久久亚洲二区三区| 国产精品福利一区| 亚洲影院免费观看| 免费成人在线影院| 成人黄色av网站在线| 欧美亚洲一区三区| 精品国产免费久久 | 不卡av在线免费观看| 欧美午夜一区二区三区| 精品毛片乱码1区2区3区| 美女任你摸久久| 欧美一区二区三区思思人| 91视视频在线直接观看在线看网页在线看| 99精品黄色片免费大全| 欧美日韩一本到| 亚洲精品一区二区三区精华液 | 久久久影院官网| 亚洲男人天堂一区| 免费日韩伦理电影| 91在线精品一区二区| 日韩一区二区免费高清| 中国色在线观看另类| 午夜天堂影视香蕉久久| 国产成人午夜视频| 欧美日韩一区三区四区| 国产日本一区二区| 成人精品免费看| 欧美a一区二区| 在线观看日韩国产| 午夜在线电影亚洲一区| 国产91精品露脸国语对白| 久久久美女毛片| 国产精品久久久久永久免费观看 | 午夜精品福利一区二区三区蜜桃| 日本在线不卡一区| 91免费国产在线观看| 精品1区2区在线观看| 亚洲成人免费看| 99久久99久久久精品齐齐| 精品久久久久久久一区二区蜜臀| 亚洲人成亚洲人成在线观看图片| 精品一二线国产| 欧美人成免费网站| 亚洲另类中文字| 福利电影一区二区| 欧美大片在线观看| 日韩综合小视频| 91福利在线播放| 亚洲日本va在线观看| 国产成人激情av| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲地区一二三色| proumb性欧美在线观看| 久久先锋影音av| 激情文学综合丁香| 日韩免费观看高清完整版 | 欧美三级视频在线| 亚洲女同女同女同女同女同69| 国产精品一区久久久久| 久久亚洲精品小早川怜子| 麻豆久久久久久久| 精品噜噜噜噜久久久久久久久试看| 日韩精品五月天| 在线播放中文一区|