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

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

?? objc-act.c

?? GCC編譯器源代碼
?? C
?? 第 1 頁 / 共 5 頁
字號:
  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;    extern tree get_file_function_name ();    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;{  tree chain, decl;  if (section == class_names)    chain = class_names_chain;  else if (section == meth_var_names)    chain = meth_var_names_chain;  else if (section == meth_var_types)    chain = meth_var_types_chain;  for (; chain != 0; chain = TREE_VALUE (chain))    if (TREE_VALUE (chain) == ident)      return (TREE_PURPOSE (chain));  abort ();  return NULL_TREE;}/* Output references to all statically allocated objects.  Return the DECL   for the array built.  */static voidgenerate_static_references (){  tree decls = NULL_TREE, ident, decl_spec, expr_decl, expr = NULL_TREE;  tree class_name, class, decl, instance, idecl, initlist;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区四区中文字幕| 日韩福利视频导航| 欧美日韩国产三级| 福利一区在线观看| 天天综合网 天天综合色| 国产精品女同一区二区三区| 日韩视频免费直播| 色久综合一二码| 成人免费视频国产在线观看| 秋霞影院一区二区| 亚洲国产精品天堂| 日韩毛片精品高清免费| 久久久99免费| 欧美成人一区二区三区| 4438成人网| 欧美少妇bbb| 一本色道久久加勒比精品| 成人黄色小视频在线观看| 午夜精品影院在线观看| 亚洲自拍另类综合| 亚洲欧美国产高清| 亚洲欧美综合另类在线卡通| 久久久精品人体av艺术| 精品成人私密视频| 日韩一区二区在线观看视频播放| 欧美色男人天堂| 在线日韩一区二区| 91麻豆精品在线观看| jizz一区二区| 99热国产精品| 99视频国产精品| 99久久精品国产一区二区三区| 国产成人免费高清| 国产高清亚洲一区| 国产寡妇亲子伦一区二区| 国产精品正在播放| 风流少妇一区二区| 成人黄色大片在线观看| 99这里都是精品| aaa亚洲精品一二三区| 99久久er热在这里只有精品15| 波波电影院一区二区三区| 北条麻妃国产九九精品视频| 亚洲电影在线免费观看| 亚洲日本欧美天堂| 亚洲人精品午夜| 一区二区三区在线高清| 亚洲图片欧美一区| 五月婷婷综合在线| 天天综合网天天综合色| 日本一区中文字幕| 国产尤物一区二区| 成人高清在线视频| 91麻豆6部合集magnet| 欧美性色欧美a在线播放| 欧美日韩视频专区在线播放| 欧美一区二区三区视频| 欧美成人猛片aaaaaaa| 日本一区二区免费在线观看视频 | 国产欧美精品一区二区色综合| 国产婷婷色一区二区三区| 中文字幕亚洲成人| 亚洲国产日韩在线一区模特 | 91麻豆精品在线观看| 欧美三级韩国三级日本三斤| 日韩一级欧美一级| 中文字幕国产精品一区二区| 夜夜揉揉日日人人青青一国产精品| 亚洲综合色婷婷| 麻豆精品视频在线观看视频| 大白屁股一区二区视频| 欧美亚洲国产一区在线观看网站| 日韩一区二区免费高清| 国产三级精品三级| 亚洲sss视频在线视频| 国产毛片精品一区| 日本电影亚洲天堂一区| 日韩免费观看2025年上映的电影| 国产精品久久午夜夜伦鲁鲁| 午夜精品久久久久影视| 国产精品888| 欧美久久久影院| 国产欧美精品一区aⅴ影院| 亚洲成人一区二区在线观看| 国产美女在线观看一区| 欧美视频在线一区| 国产欧美一区在线| 奇米色一区二区| 99在线精品一区二区三区| 欧美日本国产一区| 中文字幕一区二区三区乱码在线| 免费观看一级特黄欧美大片| 色综合久久66| 久久久无码精品亚洲日韩按摩| 亚洲午夜精品一区二区三区他趣| 国产原创一区二区三区| 欧美精品少妇一区二区三区| 国产精品乱码一区二区三区软件| 天天影视色香欲综合网老头| 99riav一区二区三区| 精品电影一区二区三区| 亚洲国产另类av| 97超碰欧美中文字幕| 久久久久久久久久久久电影| 亚洲国产综合人成综合网站| 99视频热这里只有精品免费| 久久综合99re88久久爱| 亚洲福利视频一区二区| 91女人视频在线观看| 欧美激情一区不卡| 国产主播一区二区| 日韩欧美成人一区二区| 视频一区在线播放| 欧美综合亚洲图片综合区| 国产精品美女www爽爽爽| 国产在线视视频有精品| 日韩一区二区三区精品视频| 亚洲图片欧美综合| 在线观看视频91| 亚洲精品国产第一综合99久久| 成人午夜视频福利| 国产午夜精品久久久久久免费视| 精品一区二区在线免费观看| 67194成人在线观看| 午夜亚洲国产au精品一区二区| 欧美性一级生活| 亚洲午夜久久久久久久久电影院 | 日本高清成人免费播放| 国产精品久久久久国产精品日日| 粉嫩蜜臀av国产精品网站| 国产人久久人人人人爽| 国产精品一区二区三区网站| 欧美xxxxx牲另类人与| 日本麻豆一区二区三区视频| 欧美一区二区三区在线观看视频| 午夜日韩在线观看| 9191国产精品| 日产精品久久久久久久性色| 日韩一本二本av| 国产一区二区三区综合| 久久五月婷婷丁香社区| 国产精品911| 亚洲人成影院在线观看| 欧美在线你懂得| 午夜久久久久久电影| 91精品国产综合久久蜜臀| 久久97超碰色| 国产三级欧美三级日产三级99| 成人性色生活片免费看爆迷你毛片| 中文字幕在线视频一区| 色成年激情久久综合| 午夜精品久久久久久久久| 678五月天丁香亚洲综合网| 九九视频精品免费| 国产精品麻豆一区二区 | 91精品国模一区二区三区| 欧美日韩一区二区三区四区 | 欧美日韩国产片| 捆绑紧缚一区二区三区视频| 久久亚洲精精品中文字幕早川悠里 | 中文字幕乱码久久午夜不卡 | 久久婷婷色综合| 精品蜜桃在线看| 成人精品免费视频| 亚洲一区在线看| 欧美成人福利视频| 成人av在线一区二区| 亚洲777理论| 欧美激情在线一区二区| 欧美在线观看18| 韩国av一区二区三区在线观看| 最新久久zyz资源站| 欧美肥妇bbw| www.亚洲国产| 日韩精品免费专区| 国产精品私人影院| 欧美放荡的少妇| 成人av网站在线| 日韩电影免费在线看| 国产精品久久精品日日| 91精品国产91久久久久久最新毛片| 国产黄色精品网站| 亚洲va国产天堂va久久en| 中文字幕二三区不卡| 宅男噜噜噜66一区二区66| 成人丝袜18视频在线观看| 日韩av在线播放中文字幕| 国产精品久久久久久久久动漫| 日韩一区二区三区在线视频| 91免费在线看| 国产另类ts人妖一区二区| 亚洲成av人片在线观看无码| 中文字幕亚洲一区二区av在线 | 中文在线一区二区| 91精品国产色综合久久不卡电影| 9l国产精品久久久久麻豆| 国产一区二区视频在线播放| 婷婷激情综合网| 一区二区三区精品在线| 中文av一区二区|