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

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

?? objc-act.c

?? gcc-2.95.3 Linux下最常用的C編譯器
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* Declare a static instance of CLASS_DECL initialized by CONSTRUCTOR.  */static treeobjc_add_static_instance (constructor, class_decl)     tree constructor, class_decl;{  static int num_static_inst;  tree *chain, decl;  char buf[256];  push_obstacks_nochange ();  end_temporary_allocation ();  /* Find the list of static instances for the CLASS_DECL.  Create one if     not found.  */  for (chain = &objc_static_instances;       *chain && TREE_VALUE (*chain) != class_decl;       chain = &TREE_CHAIN (*chain));  if (!*chain)    {      *chain = tree_cons (NULL_TREE, class_decl, NULL_TREE);      add_objc_string (TYPE_NAME (class_decl), class_names);    }  sprintf (buf, "_OBJC_INSTANCE_%d", num_static_inst++);  decl = build_decl (VAR_DECL, get_identifier (buf), class_decl);  DECL_COMMON (decl) = 1;  TREE_STATIC (decl) = 1;  DECL_ARTIFICIAL (decl) = 1;  pushdecl_top_level (decl);  rest_of_decl_compilation (decl, 0, 1, 0);  /* Do this here so it gets output later instead of possibly     inside something else we are writing.  */  DECL_INITIAL (decl) = constructor;  /* Add the DECL to the head of this CLASS' list.  */  TREE_PURPOSE (*chain) = tree_cons (NULL_TREE, decl, TREE_PURPOSE (*chain));  pop_obstacks ();  return decl;}/* Build a static constant CONSTRUCTOR   with type TYPE and elements ELTS.  */static treebuild_constructor (type, elts)     tree type, elts;{  tree constructor = build (CONSTRUCTOR, type, NULL_TREE, elts);  TREE_CONSTANT (constructor) = 1;  TREE_STATIC (constructor) = 1;  TREE_READONLY (constructor) = 1;  return constructor;}/* Take care of defining and initializing _OBJC_SYMBOLS.  *//* Predefine the following data type:   struct _objc_symtab   {     long sel_ref_cnt;     SEL *refs;     short cls_def_cnt;     short cat_def_cnt;     void *defs[cls_def_cnt + cat_def_cnt];   }; */static voidbuild_objc_symtab_template (){  tree field_decl, field_decl_chain, index;  objc_symtab_template    = start_struct (RECORD_TYPE, get_identifier (UTAG_SYMTAB));  /* long sel_ref_cnt; */  field_decl = create_builtin_decl (FIELD_DECL,				    long_integer_type_node,				    "sel_ref_cnt");  field_decl_chain = field_decl;  /* SEL *refs; */  field_decl = create_builtin_decl (FIELD_DECL,				    build_pointer_type (selector_type),				    "refs");  chainon (field_decl_chain, field_decl);  /* short cls_def_cnt; */  field_decl = create_builtin_decl (FIELD_DECL,				    short_integer_type_node,				    "cls_def_cnt");  chainon (field_decl_chain, field_decl);  /* short cat_def_cnt; */  field_decl = create_builtin_decl (FIELD_DECL,				    short_integer_type_node,				    "cat_def_cnt");  chainon (field_decl_chain, field_decl);  /* void *defs[cls_def_cnt + cat_def_cnt]; */  if (!flag_next_runtime)    index = build_index_type (build_int_2 (imp_count + cat_count, 0));  else    index = build_index_type (build_int_2 (imp_count + cat_count - 1,					   imp_count == 0 && cat_count == 0					   ? -1 : 0));  field_decl = create_builtin_decl (FIELD_DECL,				    build_array_type (ptr_type_node, index),				    "defs");  chainon (field_decl_chain, field_decl);  finish_struct (objc_symtab_template, field_decl_chain, NULL_TREE);}/* Create the initial value for the `defs' field of _objc_symtab.   This is a CONSTRUCTOR.  */static treeinit_def_list (type)     tree type;{  tree expr, initlist = NULL_TREE;  struct imp_entry *impent;  if (imp_count)    for (impent = imp_list; impent; impent = impent->next)      {	if (TREE_CODE (impent->imp_context) == CLASS_IMPLEMENTATION_TYPE)	  {	    expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);	    initlist = tree_cons (NULL_TREE, expr, initlist);	  }      }  if (cat_count)    for (impent = imp_list; impent; impent = impent->next)      {	if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)	  {	    expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);	    initlist = tree_cons (NULL_TREE, expr, initlist);	  }      }  if (!flag_next_runtime)    {      /* statics = { ..., _OBJC_STATIC_INSTANCES, ... }  */      tree expr;      if (static_instances_decl)	expr = build_unary_op (ADDR_EXPR, static_instances_decl, 0);      else	expr = build_int_2 (0, 0);      initlist = tree_cons (NULL_TREE, expr, initlist);    }  return build_constructor (type, nreverse (initlist));}/* Construct the initial value for all of _objc_symtab.  */static treeinit_objc_symtab (type)     tree type;{  tree initlist;  /* sel_ref_cnt = { ..., 5, ... } */  initlist = build_tree_list (NULL_TREE, build_int_2 (0, 0));  /* refs = { ..., _OBJC_SELECTOR_TABLE, ... } */  if (flag_next_runtime || ! sel_ref_chain)    initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);  else    initlist = tree_cons (NULL_TREE,			  build_unary_op (ADDR_EXPR,					  UOBJC_SELECTOR_TABLE_decl, 1),			  initlist);  /* cls_def_cnt = { ..., 5, ... } */  initlist = tree_cons (NULL_TREE, build_int_2 (imp_count, 0), initlist);  /* cat_def_cnt = { ..., 5, ... } */  initlist = tree_cons (NULL_TREE, build_int_2 (cat_count, 0), initlist);  /* cls_def = { ..., { &Foo, &Bar, ...}, ... } */  if (imp_count || cat_count || static_instances_decl)    {      tree field = TYPE_FIELDS (type);      field = TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (field))));      initlist = tree_cons (NULL_TREE, init_def_list (TREE_TYPE (field)),			    initlist);    }  return build_constructor (type, nreverse (initlist));}/* Push forward-declarations of all the categories   so that init_def_list can use them in a CONSTRUCTOR.  */static voidforward_declare_categories (){  struct imp_entry *impent;  tree sav = implementation_context;  for (impent = imp_list; impent; impent = impent->next)    {      if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)	{	  /* Set an invisible arg to synth_id_with_class_suffix.  */	  implementation_context = impent->imp_context;	  impent->class_decl	    = create_builtin_decl (VAR_DECL, objc_category_template,				   IDENTIFIER_POINTER (synth_id_with_class_suffix ("_OBJC_CATEGORY", implementation_context)));	}    }  implementation_context = sav;}/* Create the declaration of _OBJC_SYMBOLS, with type `strict _objc_symtab'   and initialized appropriately.  */static voidgenerate_objc_symtab_decl (){  tree sc_spec;  if (!objc_category_template)    build_category_template ();  /* forward declare categories */  if (cat_count)    forward_declare_categories ();  if (!objc_symtab_template)    build_objc_symtab_template ();  sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_STATIC]);  UOBJC_SYMBOLS_decl = start_decl (get_identifier ("_OBJC_SYMBOLS"),				   tree_cons (NULL_TREE,					      objc_symtab_template, sc_spec),				   1,				   NULL_TREE, NULL_TREE);  TREE_USED (UOBJC_SYMBOLS_decl) = 1;  DECL_IGNORED_P (UOBJC_SYMBOLS_decl) = 1;  DECL_ARTIFICIAL (UOBJC_SYMBOLS_decl) = 1;  finish_decl (UOBJC_SYMBOLS_decl,	       init_objc_symtab (TREE_TYPE (UOBJC_SYMBOLS_decl)),	       NULL_TREE);}static treeinit_module_descriptor (type)     tree type;{  tree initlist, expr;  /* version = { 1, ... } */  expr = build_int_2 (OBJC_VERSION, 0);  initlist = build_tree_list (NULL_TREE, expr);  /* size = { ..., sizeof (struct objc_module), ... } */  expr = size_in_bytes (objc_module_template);  initlist = tree_cons (NULL_TREE, expr, initlist);  /* name = { ..., "foo.m", ... } */  expr = add_objc_string (get_identifier (input_filename), class_names);  initlist = tree_cons (NULL_TREE, expr, initlist);  /* symtab = { ..., _OBJC_SYMBOLS, ... } */  if (UOBJC_SYMBOLS_decl)    expr = build_unary_op (ADDR_EXPR, UOBJC_SYMBOLS_decl, 0);  else    expr = build_int_2 (0, 0);  initlist = tree_cons (NULL_TREE, expr, initlist);  return build_constructor (type, nreverse (initlist));}/* Write out the data structures to describe Objective C classes defined.   If appropriate, compile and output a setup function to initialize them.   Return a string which is the name of a function to call to initialize   the Objective C data structures for this file (and perhaps for other files   also).   struct objc_module { ... } _OBJC_MODULE = { ... };   */static char *build_module_descriptor (){  tree decl_specs, field_decl, field_decl_chain;  objc_module_template    = start_struct (RECORD_TYPE, get_identifier (UTAG_MODULE));  /* Long version; */  decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);  field_decl = get_identifier ("version");  field_decl    = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);  field_decl_chain = field_decl;  /* long  size; */  decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);  field_decl = get_identifier ("size");  field_decl    = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);  chainon (field_decl_chain, field_decl);  /* char  *name; */  decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);  field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("name"));  field_decl    = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);  chainon (field_decl_chain, field_decl);  /* struct objc_symtab *symtab; */  decl_specs = get_identifier (UTAG_SYMTAB);  decl_specs = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE, decl_specs));  field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("symtab"));  field_decl    = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);  chainon (field_decl_chain, field_decl);  finish_struct (objc_module_template, field_decl_chain, NULL_TREE);  /* Create an instance of "objc_module".  */  decl_specs = tree_cons (NULL_TREE, objc_module_template,			  build_tree_list (NULL_TREE,					   ridpointers[(int) RID_STATIC]));  UOBJC_MODULES_decl = start_decl (get_identifier ("_OBJC_MODULES"),				   decl_specs, 1, NULL_TREE, NULL_TREE);  DECL_ARTIFICIAL (UOBJC_MODULES_decl) = 1;  DECL_IGNORED_P (UOBJC_MODULES_decl) = 1;  finish_decl (UOBJC_MODULES_decl,	       init_module_descriptor (TREE_TYPE (UOBJC_MODULES_decl)),	       NULL_TREE);  /* Mark the decl to avoid "defined but not used" warning.  */  DECL_IN_SYSTEM_HEADER (UOBJC_MODULES_decl) = 1;  /* Generate a constructor call for the module descriptor.     This code was generated by reading the grammar rules     of c-parse.in;  Therefore, it may not be the most efficient     way of generating the requisite code.  */  if (flag_next_runtime)    return 0;  {    tree parms, function_decl, decelerator, void_list_node;    tree function_type;    tree init_function_name = get_file_function_name ('I');    /* Declare void __objc_execClass (void *); */    void_list_node = build_tree_list (NULL_TREE, void_type_node);    function_type      = build_function_type (void_type_node,			     tree_cons (NULL_TREE, ptr_type_node,					void_list_node));    function_decl = build_decl (FUNCTION_DECL,				get_identifier (TAG_EXECCLASS),				function_type);    DECL_EXTERNAL (function_decl) = 1;    DECL_ARTIFICIAL (function_decl) = 1;    TREE_PUBLIC (function_decl) = 1;    pushdecl (function_decl);    rest_of_decl_compilation (function_decl, 0, 0, 0);    parms      = build_tree_list (NULL_TREE,			 build_unary_op (ADDR_EXPR, UOBJC_MODULES_decl, 0));    decelerator = build_function_call (function_decl, parms);    /* void _GLOBAL_$I$<gnyf> () {objc_execClass (&L_OBJC_MODULES);}  */    start_function (void_list_node,		    build_parse_node (CALL_EXPR, init_function_name,				      /* This has the format of the output					 of get_parm_info.  */				      tree_cons (NULL_TREE, NULL_TREE,						 void_list_node),				      NULL_TREE),		    NULL_TREE, NULL_TREE, 0);#if 0 /* This should be turned back on later	 for the systems where collect is not needed.  */    /* Make these functions nonglobal       so each file can use the same name.  */    TREE_PUBLIC (current_function_decl) = 0;#endif    TREE_USED (current_function_decl) = 1;    store_parm_decls ();    assemble_external (function_decl);    c_expand_expr_stmt (decelerator);    TREE_PUBLIC (current_function_decl) = 1;    function_decl = current_function_decl;    finish_function (0);    /* Return the name of the constructor function.  */    return XSTR (XEXP (DECL_RTL (function_decl), 0), 0);  }}/* extern const char _OBJC_STRINGS[]; */static voidgenerate_forward_declaration_to_string_table (){  tree sc_spec, decl_specs, expr_decl;  sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_EXTERN], NULL_TREE);  decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], sc_spec);  expr_decl    = build_nt (ARRAY_REF, get_identifier ("_OBJC_STRINGS"), NULL_TREE);  UOBJC_STRINGS_decl = define_decl (expr_decl, decl_specs);}/* Return the DECL of the string IDENT in the SECTION.  */static treeget_objc_string_decl (ident, section)     tree ident;     enum string_section section;{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
狠狠色丁香久久婷婷综合丁香| 制服丝袜av成人在线看| 秋霞影院一区二区| 日韩主播视频在线| 亚洲第四色夜色| 一二三区精品视频| 一区二区三区在线免费视频 | 精品国精品国产| 精品理论电影在线| 久久久久久97三级| 国产精品视频九色porn| 国产精品免费久久| 亚洲欧美日韩综合aⅴ视频| 亚洲精品亚洲人成人网 | 亚洲国产一区二区三区| 午夜精品久久久久久久99樱桃| 亚洲一线二线三线久久久| 亚洲国产成人porn| 久久爱另类一区二区小说| 国产精品一区在线| 99九九99九九九视频精品| 色综合av在线| 欧美不卡一二三| 国产精品欧美极品| 亚洲福利视频一区| 久国产精品韩国三级视频| 顶级嫩模精品视频在线看| 色婷婷精品大在线视频| 欧美丰满美乳xxx高潮www| 精品嫩草影院久久| 亚洲理论在线观看| 久久国产综合精品| 91在线你懂得| www激情久久| 一区二区在线电影| 精品一区二区三区在线播放| 91女神在线视频| 欧美一级片在线看| 亚洲精品一卡二卡| 国产美女娇喘av呻吟久久| 91久久一区二区| 久久久午夜精品| 亚洲曰韩产成在线| 成人免费黄色在线| 日韩精品中文字幕一区| 亚洲精品综合在线| 从欧美一区二区三区| 91精品国产入口在线| 亚洲四区在线观看| 国产美女一区二区| 欧美一区二区三区系列电影| 亚洲激情在线激情| 国产v日产∨综合v精品视频| 欧美一区二区三区四区在线观看| 亚洲欧美成人一区二区三区| 国产大陆a不卡| 日韩女同互慰一区二区| 午夜国产不卡在线观看视频| 99精品在线免费| 国产精品网站导航| 国产不卡一区视频| 久久久久一区二区三区四区| 男人的天堂久久精品| 欧美午夜宅男影院| 夜夜嗨av一区二区三区中文字幕| 国产成人鲁色资源国产91色综| 日韩欧美一卡二卡| 午夜电影网一区| 欧美系列亚洲系列| 午夜亚洲福利老司机| 欧美伊人久久久久久久久影院 | 在线视频一区二区三| 中文字幕av不卡| 国产成人免费视频| 国产欧美日韩不卡免费| 国产精品亚洲视频| 久久久夜色精品亚洲| 国产乱对白刺激视频不卡| 精品电影一区二区| 精品一区二区三区在线观看 | 不卡的av网站| 中文字幕一区二区三| 99re亚洲国产精品| 亚洲欧美日韩电影| 欧美午夜视频网站| 亚洲成av人片观看| 在线看一区二区| 日韩vs国产vs欧美| 欧美r级电影在线观看| 狠狠色丁香久久婷婷综| 国产欧美精品区一区二区三区| 国产91对白在线观看九色| 欧美高清在线精品一区| 99re8在线精品视频免费播放| 亚洲欧美日韩一区二区三区在线观看| 色婷婷av一区| 日本一区中文字幕| 欧美国产激情一区二区三区蜜月 | 三级一区在线视频先锋| 精品少妇一区二区三区在线播放| 国模一区二区三区白浆| 中文字幕一区三区| 在线综合亚洲欧美在线视频| 国产精品夜夜嗨| 亚洲欧美日韩国产综合在线| 91麻豆精品国产91久久久更新时间| 狠狠色综合日日| 亚洲色图一区二区三区| 日韩欧美色综合| 波多野结衣在线一区| 视频在线观看一区| 欧美激情在线观看视频免费| 欧美午夜理伦三级在线观看| 国产一区二区在线观看视频| 亚洲专区一二三| 久久精品人人做人人综合 | 欧美成人三级在线| 成人av片在线观看| 老司机午夜精品| 一区二区三区日韩精品| 久久综合色之久久综合| 欧美主播一区二区三区美女| 国产乱码精品一区二区三| 天天综合色天天综合色h| 中文字幕精品在线不卡| 欧美一个色资源| 在线视频国产一区| 国产米奇在线777精品观看| 亚洲.国产.中文慕字在线| 国产精品高潮呻吟久久| 久久久精品综合| 欧美成人精品1314www| 欧美性一级生活| 91在线视频18| 成人高清视频在线观看| 国产成人福利片| 国产一区91精品张津瑜| 蜜臂av日日欢夜夜爽一区| 亚洲成人免费在线| 亚洲男人的天堂av| 中文字幕高清不卡| 久久人人97超碰com| 欧美精品一区二区三区四区 | 欧美一区二区福利视频| 99麻豆久久久国产精品免费| 国产成人在线看| 黄色小说综合网站| 国产在线精品一区二区不卡了 | 亚洲精品一区二区三区影院| 日韩欧美卡一卡二| 日韩欧美一二区| 精品三级av在线| 日韩精品在线网站| 久久久午夜精品| 欧美激情在线看| 成人欧美一区二区三区1314 | 在线免费视频一区二区| 在线观看不卡视频| 欧美手机在线视频| 精品视频全国免费看| 欧美色视频在线| 在线电影欧美成精品| 日韩精品中文字幕在线不卡尤物| 日韩欧美精品在线视频| 久久久另类综合| 国产情人综合久久777777| 国产精品麻豆久久久| 亚洲日本va午夜在线电影| 一片黄亚洲嫩模| 日韩在线a电影| 久久 天天综合| 不卡欧美aaaaa| 欧美三级电影网站| 欧美精品一区二区精品网| 国产三级一区二区| 亚洲三级电影全部在线观看高清| 一区二区高清视频在线观看| 日韩综合在线视频| 国产夫妻精品视频| 色女孩综合影院| 欧美一区二区视频在线观看 | 午夜精品久久久| 国内成+人亚洲+欧美+综合在线| 成人深夜在线观看| 在线免费不卡视频| 26uuu国产在线精品一区二区| 中文字幕亚洲成人| 蜜臀精品久久久久久蜜臀| bt欧美亚洲午夜电影天堂| 欧美日韩视频专区在线播放| 久久视频一区二区| 亚洲资源中文字幕| 黄网站免费久久| 欧美日韩中文一区| 国产欧美日韩精品在线| 日韩精品一二三四| 99麻豆久久久国产精品免费| 91精品国产福利| 亚洲欧美日韩久久| 国产成人av电影在线观看|