home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gcc-2.7.2.1-src.tgz / tar.out / fsf / gcc / objc-act.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  229KB  |  8,283 lines

  1. /* Implement classes and message passing for Objective C.
  2.    Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.    Contributed by Steve Naroff.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.  */
  21.  
  22. /* Purpose: This module implements the Objective-C 4.0 language.
  23.  
  24.    compatibility issues (with the Stepstone translator):
  25.  
  26.    - does not recognize the following 3.3 constructs.
  27.      @requires, @classes, @messages, = (...)
  28.    - methods with variable arguments must conform to ANSI standard.
  29.    - tagged structure definitions that appear in BOTH the interface
  30.      and implementation are not allowed.
  31.    - public/private: all instance variables are public within the
  32.      context of the implementation...I consider this to be a bug in
  33.      the translator.
  34.    - statically allocated objects are not supported. the user will
  35.      receive an error if this service is requested.
  36.  
  37.    code generation `options':
  38.  
  39.    - OBJC_INT_SELECTORS  */
  40.  
  41. #include <stdio.h>
  42. #include "config.h"
  43. #include "tree.h"
  44. #include "c-tree.h"
  45. #include "c-lex.h"
  46. #include "flags.h"
  47. #include "objc-act.h"
  48. #include "input.h"
  49. #include "function.h"
  50.  
  51.  
  52. /* This is the default way of generating a method name.  */
  53. /* I am not sure it is really correct.
  54.    Perhaps there's a danger that it will make name conflicts
  55.    if method names contain underscores. -- rms.  */
  56. #ifndef OBJC_GEN_METHOD_LABEL
  57. #define OBJC_GEN_METHOD_LABEL(BUF, IS_INST, CLASS_NAME, CAT_NAME, SEL_NAME, NUM) \
  58.   do {                        \
  59.     char *temp;                    \
  60.     sprintf ((BUF), "_%s_%s_%s_%s",        \
  61.          ((IS_INST) ? "i" : "c"),        \
  62.          (CLASS_NAME),            \
  63.          ((CAT_NAME)? (CAT_NAME) : ""), \
  64.          (SEL_NAME));            \
  65.     for (temp = (BUF); *temp; temp++)        \
  66.       if (*temp == ':') *temp = '_';        \
  67.   } while (0)
  68. #endif
  69.  
  70. /* These need specifying.  */
  71. #ifndef OBJC_FORWARDING_STACK_OFFSET
  72. #define OBJC_FORWARDING_STACK_OFFSET 0
  73. #endif
  74.  
  75. #ifndef OBJC_FORWARDING_MIN_OFFSET
  76. #define OBJC_FORWARDING_MIN_OFFSET 0
  77. #endif
  78.  
  79. /* Define the special tree codes that we use.  */
  80.  
  81. /* Table indexed by tree code giving a string containing a character
  82.    classifying the tree code.  Possibilities are
  83.    t, d, s, c, r, <, 1 and 2.  See objc-tree.def for details.  */
  84.  
  85. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
  86.  
  87. char *objc_tree_code_type[] = {
  88.   "x",
  89. #include "objc-tree.def"
  90. };
  91. #undef DEFTREECODE
  92.  
  93. /* Table indexed by tree code giving number of expression
  94.    operands beyond the fixed part of the node structure.
  95.    Not used for types or decls.  */
  96.  
  97. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
  98.  
  99. int objc_tree_code_length[] = {
  100.   0,
  101. #include "objc-tree.def"
  102. };
  103. #undef DEFTREECODE
  104.  
  105. /* Names of tree components.
  106.    Used for printing out the tree and error messages.  */
  107. #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
  108.  
  109. char *objc_tree_code_name[] = {
  110.   "@@dummy",
  111. #include "objc-tree.def"
  112. };
  113. #undef DEFTREECODE
  114.  
  115. /* Set up for use of obstacks.  */
  116.  
  117. #include "obstack.h"
  118.  
  119. #define obstack_chunk_alloc xmalloc
  120. #define obstack_chunk_free free
  121.  
  122. /* This obstack is used to accumulate the encoding of a data type.  */
  123. static struct obstack util_obstack;
  124. /* This points to the beginning of obstack contents,
  125.    so we can free the whole contents.  */
  126. char *util_firstobj;
  127.  
  128. /* List of classes with list of their static instances.  */
  129. static tree objc_static_instances;
  130.  
  131. /* The declaration of the array administrating the static instances.  */
  132. static tree static_instances_decl;
  133.  
  134. /* for encode_method_def */
  135. #include "rtl.h"
  136. #include "c-parse.h"
  137.  
  138. #define OBJC_VERSION    (flag_next_runtime ? 5 : 7)
  139. #define PROTOCOL_VERSION 2
  140.  
  141. #define OBJC_ENCODE_INLINE_DEFS     0
  142. #define OBJC_ENCODE_DONT_INLINE_DEFS    1
  143.  
  144. /*** Private Interface (procedures) ***/
  145.  
  146. /* Used by compile_file. */
  147.  
  148. static void init_objc                PROTO((void));
  149. static void finish_objc                PROTO((void));
  150.  
  151. /* Code generation. */
  152.  
  153. static void synth_module_prologue        PROTO((void));
  154. static tree build_constructor            PROTO((tree, tree));
  155. static char *build_module_descriptor        PROTO((void));
  156. static tree init_module_descriptor        PROTO((tree));
  157. static tree build_objc_method_call        PROTO((int, tree, tree,
  158.                                tree, tree, tree));
  159. static void generate_strings            PROTO((void));
  160. static tree get_proto_encoding             PROTO((tree));
  161. static void build_selector_translation_table    PROTO((void));
  162. static tree build_ivar_chain            PROTO((tree, int));
  163.  
  164. static tree objc_add_static_instance        PROTO((tree, tree));
  165.  
  166. static tree build_ivar_template            PROTO((void));
  167. static tree build_method_template        PROTO((void));
  168. static tree build_private_template        PROTO((tree));
  169. static void build_class_template        PROTO((void));
  170. static void build_selector_template        PROTO((void));
  171. static void build_category_template        PROTO((void));
  172. static tree build_super_template        PROTO((void));
  173. static tree build_category_initializer        PROTO((tree, tree, tree,
  174.                                tree, tree, tree));
  175. static tree build_protocol_initializer        PROTO((tree, tree, tree,
  176.                                tree, tree));
  177.  
  178. static void synth_forward_declarations        PROTO((void));
  179. static void generate_ivar_lists            PROTO((void));
  180. static void generate_dispatch_tables        PROTO((void));
  181. static void generate_shared_structures        PROTO((void));
  182. static tree generate_protocol_list        PROTO((tree));
  183. static void generate_forward_declaration_to_string_table PROTO((void));
  184. static void build_protocol_reference        PROTO((tree));
  185.  
  186. static tree init_selector            PROTO((int));
  187. static tree build_keyword_selector        PROTO((tree));
  188. static tree synth_id_with_class_suffix        PROTO((char *, tree));
  189.  
  190. /* From expr.c */
  191. extern int apply_args_register_offset           PROTO((int));
  192.  
  193. /* Misc. bookkeeping */
  194.  
  195. typedef struct hashed_entry     *hash;
  196. typedef struct hashed_attribute  *attr;
  197.  
  198. struct hashed_attribute
  199. {
  200.   attr next;
  201.   tree value;
  202. };
  203. struct hashed_entry
  204. {
  205.   attr list;
  206.   hash next;
  207.   tree key;
  208. };
  209.  
  210. static void hash_init                PROTO((void));
  211. static void hash_enter                PROTO((hash *, tree));
  212. static hash hash_lookup                PROTO((hash *, tree));
  213. static void hash_add_attr            PROTO((hash, tree));
  214. static tree lookup_method            PROTO((tree, tree));
  215. static tree lookup_instance_method_static    PROTO((tree, tree));
  216. static tree lookup_class_method_static        PROTO((tree, tree));
  217. static tree add_class                PROTO((tree));
  218. static void add_category            PROTO((tree, tree));
  219.  
  220. enum string_section
  221. {
  222.   class_names,        /* class, category, protocol, module names */
  223.   meth_var_names,    /* method and variable names */
  224.   meth_var_types    /* method and variable type descriptors */
  225. };
  226.  
  227. static tree add_objc_string            PROTO((tree,
  228.                                enum string_section));
  229. static tree build_objc_string_decl        PROTO((tree,
  230.                                enum string_section));
  231. static tree build_selector_reference_decl    PROTO((tree));
  232.  
  233. /* Protocol additions. */
  234.  
  235. static tree add_protocol            PROTO((tree));
  236. static tree lookup_protocol            PROTO((tree));
  237. static tree lookup_and_install_protocols    PROTO((tree));
  238.  
  239. /* Type encoding. */
  240.  
  241. static void encode_type_qualifiers        PROTO((tree));
  242. static void encode_pointer            PROTO((tree, int, int));
  243. static void encode_array            PROTO((tree, int, int));
  244. static void encode_aggregate            PROTO((tree, int, int));
  245. static void encode_bitfield            PROTO((int, int));
  246. static void encode_type                PROTO((tree, int, int));
  247. static void encode_field_decl            PROTO((tree, int, int));
  248.  
  249. static void really_start_method            PROTO((tree, tree));
  250. static int comp_method_with_proto        PROTO((tree, tree));
  251. static int comp_proto_with_proto        PROTO((tree, tree));
  252. static tree get_arg_type_list            PROTO((tree, int, int));
  253. static tree expr_last                PROTO((tree));
  254.  
  255. /* Utilities for debugging and error diagnostics. */
  256.  
  257. static void warn_with_method            PROTO((char *, int, tree));
  258. static void error_with_ivar            PROTO((char *, tree, tree));
  259. static char *gen_method_decl            PROTO((tree, char *));
  260. static char *gen_declaration            PROTO((tree, char *));
  261. static char *gen_declarator            PROTO((tree, char *, char *));
  262. static int is_complex_decl            PROTO((tree));
  263. static void adorn_decl                PROTO((tree, char *));
  264. static void dump_interface            PROTO((FILE *, tree));
  265.  
  266. /* Everything else. */
  267.  
  268. static void objc_fatal                PROTO((void));
  269. static tree define_decl                PROTO((tree, tree));
  270. static tree lookup_method_in_protocol_list    PROTO((tree, tree, int));
  271. static tree lookup_protocol_in_reflist        PROTO((tree, tree));
  272. static tree create_builtin_decl            PROTO((enum tree_code,
  273.                                tree, char *));
  274. static tree my_build_string            PROTO((int, char *));
  275. static void build_objc_symtab_template        PROTO((void));
  276. static tree init_def_list            PROTO((tree));
  277. static tree init_objc_symtab            PROTO((tree));
  278. static void forward_declare_categories        PROTO((void));
  279. static void generate_objc_symtab_decl        PROTO((void));
  280. static tree build_selector            PROTO((tree));
  281. static tree build_msg_pool_reference        PROTO((int));
  282. static tree build_typed_selector_reference         PROTO((tree, tree));
  283. static tree build_selector_reference        PROTO((tree));
  284. static tree build_class_reference_decl        PROTO((tree));
  285. static void add_class_reference            PROTO((tree));
  286. static tree objc_copy_list            PROTO((tree, tree *));
  287. static tree build_protocol_template        PROTO((void));
  288. static tree build_descriptor_table_initializer    PROTO((tree, tree));
  289. static tree build_method_prototype_list_template PROTO((tree, int));
  290. static tree build_method_prototype_template    PROTO((void));
  291. static int forwarding_offset            PROTO((tree));
  292. static tree encode_method_prototype        PROTO((tree, tree));
  293. static tree generate_descriptor_table        PROTO((tree, char *, int, tree, tree));
  294. static void generate_method_descriptors        PROTO((tree));
  295. static tree build_tmp_function_decl        PROTO((void));
  296. static void hack_method_prototype        PROTO((tree, tree));
  297. static void generate_protocol_references    PROTO((tree));
  298. static void generate_protocols            PROTO((void));
  299. static void check_ivars                PROTO((tree, tree));
  300. static tree build_ivar_list_template        PROTO((tree, int));
  301. static tree build_method_list_template        PROTO((tree, int));
  302. static tree build_ivar_list_initializer        PROTO((tree, tree));
  303. static tree generate_ivars_list            PROTO((tree, char *,
  304.                                int, tree));
  305. static tree build_dispatch_table_initializer    PROTO((tree, tree));
  306. static tree generate_dispatch_table        PROTO((tree, char *,
  307.                                int, tree));
  308. static tree build_shared_structure_initializer    PROTO((tree, tree, tree, tree,
  309.                                tree, int, tree, tree,
  310.                                tree));
  311. static void generate_category            PROTO((tree));
  312. static int is_objc_type_qualifier        PROTO((tree));
  313. static tree adjust_type_for_id_default        PROTO((tree));
  314. static tree check_duplicates            PROTO((hash));
  315. static tree receiver_is_class_object        PROTO((tree));
  316. static int check_methods            PROTO((tree, tree, int));
  317. static int conforms_to_protocol            PROTO((tree, tree));
  318. static void check_protocols            PROTO((tree, char *, char *));
  319. static tree encode_method_def            PROTO((tree));
  320. static void gen_declspecs            PROTO((tree, char *, int));
  321. static void generate_classref_translation_entry    PROTO((tree));
  322. static void handle_class_ref            PROTO((tree));
  323.  
  324. /*** Private Interface (data) ***/
  325.  
  326. /* Reserved tag definitions. */
  327.  
  328. #define TYPE_ID            "id"
  329. #define TAG_OBJECT        "objc_object"
  330. #define TAG_CLASS        "objc_class"
  331. #define TAG_SUPER        "objc_super"
  332. #define TAG_SELECTOR        "objc_selector"
  333.  
  334. #define UTAG_CLASS        "_objc_class"
  335. #define UTAG_IVAR        "_objc_ivar"
  336. #define UTAG_IVAR_LIST        "_objc_ivar_list"
  337. #define UTAG_METHOD        "_objc_method"
  338. #define UTAG_METHOD_LIST    "_objc_method_list"
  339. #define UTAG_CATEGORY        "_objc_category"
  340. #define UTAG_MODULE        "_objc_module"
  341. #define UTAG_STATICS        "_objc_statics"
  342. #define UTAG_SYMTAB        "_objc_symtab"
  343. #define UTAG_SUPER        "_objc_super"
  344. #define UTAG_SELECTOR        "_objc_selector"
  345.  
  346. #define UTAG_PROTOCOL        "_objc_protocol"
  347. #define UTAG_PROTOCOL_LIST    "_objc_protocol_list"
  348. #define UTAG_METHOD_PROTOTYPE    "_objc_method_prototype"
  349. #define UTAG_METHOD_PROTOTYPE_LIST "_objc__method_prototype_list"
  350.  
  351. #define STRING_OBJECT_CLASS_NAME "NXConstantString"
  352. #define PROTOCOL_OBJECT_CLASS_NAME "Protocol"
  353.  
  354. static char *TAG_GETCLASS;
  355. static char *TAG_GETMETACLASS;
  356. static char *TAG_MSGSEND;
  357. static char *TAG_MSGSENDSUPER;
  358. static char *TAG_EXECCLASS;
  359.  
  360. /* Set by `continue_class' and checked by `is_public'.  */
  361.  
  362. #define TREE_STATIC_TEMPLATE(record_type) (TREE_PUBLIC (record_type))
  363. #define TYPED_OBJECT(type) \
  364.        (TREE_CODE (type) == RECORD_TYPE && TREE_STATIC_TEMPLATE (type))
  365.  
  366. /* Some commonly used instances of "identifier_node".  */
  367.  
  368. static tree self_id, ucmd_id;
  369. static tree unused_list;
  370.  
  371. static tree self_decl, umsg_decl, umsg_super_decl;
  372. static tree objc_get_class_decl, objc_get_meta_class_decl;
  373.  
  374. static tree super_type, selector_type, id_type, objc_class_type;
  375. static tree instance_type, protocol_type;
  376.  
  377. /* Type checking macros.  */
  378.  
  379. #define IS_ID(TYPE) \
  380.   (TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (id_type))
  381. #define IS_PROTOCOL_QUALIFIED_ID(TYPE) \
  382.   (IS_ID (TYPE) && TYPE_PROTOCOL_LIST (TYPE))
  383. #define IS_SUPER(TYPE) \
  384.   (super_type && TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (super_type))
  385.  
  386. static tree class_chain = NULL_TREE;
  387. static tree alias_chain = NULL_TREE;
  388. static tree interface_chain = NULL_TREE;
  389. static tree protocol_chain = NULL_TREE;
  390.  
  391. /* Chains to manage selectors that are referenced and defined in the module. */
  392.  
  393. static tree cls_ref_chain = NULL_TREE;    /* Classes referenced. */
  394. static tree sel_ref_chain = NULL_TREE;    /* Selectors referenced. */
  395.  
  396. /* Chains to manage uniquing of strings. */
  397.  
  398. static tree class_names_chain = NULL_TREE;
  399. static tree meth_var_names_chain = NULL_TREE;
  400. static tree meth_var_types_chain = NULL_TREE;
  401.  
  402. /* Hash tables to manage the global pool of method prototypes. */
  403.  
  404. static hash *nst_method_hash_list = 0;
  405. static hash *cls_method_hash_list = 0;
  406.  
  407. /* Backend data declarations. */
  408.  
  409. static tree UOBJC_SYMBOLS_decl;
  410. static tree UOBJC_INSTANCE_VARIABLES_decl, UOBJC_CLASS_VARIABLES_decl;
  411. static tree UOBJC_INSTANCE_METHODS_decl, UOBJC_CLASS_METHODS_decl;
  412. static tree UOBJC_CLASS_decl, UOBJC_METACLASS_decl;
  413. static tree UOBJC_SELECTOR_TABLE_decl;
  414. static tree UOBJC_MODULES_decl;
  415. static tree UOBJC_STRINGS_decl;
  416.  
  417. /* The following are used when compiling a class implementation.
  418.    implementation_template will normally be an interface, however if
  419.    none exists this will be equal to implementation_context...it is
  420.    set in start_class.  */
  421.  
  422. static tree implementation_context = NULL_TREE;
  423. static tree implementation_template = NULL_TREE;
  424.  
  425. struct imp_entry
  426. {
  427.   struct imp_entry *next;
  428.   tree imp_context;
  429.   tree imp_template;
  430.   tree class_decl;        /* _OBJC_CLASS_<my_name>; */
  431.   tree meta_decl;        /* _OBJC_METACLASS_<my_name>; */
  432. };
  433.  
  434. static void handle_impent            PROTO((struct imp_entry *));
  435.  
  436. static struct imp_entry *imp_list = 0;
  437. static int imp_count = 0;    /* `@implementation' */
  438. static int cat_count = 0;    /* `@category' */
  439.  
  440. static tree objc_class_template, objc_category_template, uprivate_record;
  441. static tree objc_protocol_template, objc_selector_template;
  442. static tree ucls_super_ref, uucls_super_ref;
  443.  
  444. static tree objc_method_template, objc_ivar_template;
  445. static tree objc_symtab_template, objc_module_template;
  446. static tree objc_super_template, objc_object_reference;
  447.  
  448. static tree objc_object_id, objc_class_id, objc_id_id;
  449. static tree constant_string_id;
  450. static tree constant_string_type;
  451. static tree UOBJC_SUPER_decl;
  452.  
  453. static tree method_context = NULL_TREE;
  454. static int  method_slot = 0;    /* Used by start_method_def, */
  455.  
  456. #define BUFSIZE        1024
  457.  
  458. static char *errbuf;    /* Buffer for error diagnostics */
  459.  
  460. /* Data imported from tree.c. */
  461.  
  462. extern enum debug_info_type write_symbols;
  463.  
  464. /* Data imported from toplev.c.  */
  465.  
  466. extern char *dump_base_name;
  467.  
  468. /* Generate code for GNU or NeXT runtime environment.  */
  469.  
  470. #ifdef NEXT_OBJC_RUNTIME
  471. int flag_next_runtime = 1;
  472. #else
  473. int flag_next_runtime = 0;
  474. #endif
  475.  
  476. int flag_typed_selectors;
  477.  
  478. /* Open and close the file for outputting class declarations, if requested.  */
  479.  
  480. int flag_gen_declaration = 0;
  481.  
  482. FILE *gen_declaration_file;
  483.  
  484. /* Warn if multiple methods are seen for the same selector, but with
  485.    different argument types. */
  486.  
  487. int warn_selector = 0;
  488.  
  489. /* Warn if methods required by a protocol are not implemented in the 
  490.    class adopting it.  When turned off, methods inherited to that
  491.    class are also considered implemented */
  492.  
  493. int flag_warn_protocol = 1;
  494.  
  495. /* Tells "encode_pointer/encode_aggregate" whether we are generating
  496.    type descriptors for instance variables (as opposed to methods).
  497.    Type descriptors for instance variables contain more information
  498.    than methods (for static typing and embedded structures). This
  499.    was added to support features being planned for dbkit2. */
  500.  
  501. static int generating_instance_variables = 0;
  502.  
  503. void
  504. lang_init ()
  505. {
  506.   /* The beginning of the file is a new line; check for #.
  507.      With luck, we discover the real source file's name from that
  508.      and put it in input_filename.  */
  509.   ungetc (check_newline (), finput);
  510.  
  511.   /* The line number can be -1 if we had -g3 and the input file
  512.      had a directive specifying line 0.  But we want predefined
  513.      functions to have a line number of 0, not -1.  */
  514.   if (lineno == -1)
  515.     lineno = 0;
  516.  
  517.   /* If gen_declaration desired, open the output file.  */
  518.   if (flag_gen_declaration)
  519.     {
  520.       int dump_base_name_length = strlen (dump_base_name);
  521.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
  522.       strcpy (dumpname, dump_base_name);
  523.       strcat (dumpname, ".decl");
  524.       gen_declaration_file = fopen (dumpname, "w");
  525.       if (gen_declaration_file == 0)
  526.     pfatal_with_name (dumpname);
  527.     }
  528.  
  529.   if (flag_next_runtime)
  530.     {
  531.       TAG_GETCLASS = "objc_getClass";
  532.       TAG_GETMETACLASS = "objc_getMetaClass";
  533.       TAG_MSGSEND = "objc_msgSend";
  534.       TAG_MSGSENDSUPER = "objc_msgSendSuper";
  535.       TAG_EXECCLASS = "__objc_execClass";
  536.     }
  537.   else
  538.     {
  539.       TAG_GETCLASS = "objc_get_class";
  540.       TAG_GETMETACLASS = "objc_get_meta_class";
  541.       TAG_MSGSEND = "objc_msg_lookup";
  542.       TAG_MSGSENDSUPER = "objc_msg_lookup_super";
  543.       TAG_EXECCLASS = "__objc_exec_class";
  544.       flag_typed_selectors = 1;
  545.     }
  546.  
  547.   if (doing_objc_thang)
  548.     init_objc ();
  549. }
  550.  
  551. static void
  552. objc_fatal ()
  553. {
  554.   fatal ("Objective-C text in C source file");
  555. }
  556.  
  557. void
  558. finish_file ()
  559. {
  560.   if (doing_objc_thang)
  561.     finish_objc ();        /* Objective-C finalization */
  562.  
  563.   if (gen_declaration_file)
  564.     fclose (gen_declaration_file);
  565. }
  566.  
  567. void
  568. lang_finish ()
  569. {
  570. }
  571.  
  572. char *
  573. lang_identify ()
  574. {
  575.   return "objc";
  576. }
  577.  
  578. int
  579. lang_decode_option (p)
  580.      char *p;
  581. {
  582.   if (!strcmp (p, "-lang-objc"))
  583.     doing_objc_thang = 1;
  584.   else if (!strcmp (p, "-gen-decls"))
  585.     flag_gen_declaration = 1;
  586.   else if (!strcmp (p, "-Wselector"))
  587.     warn_selector = 1;
  588.   else if (!strcmp (p, "-Wno-selector"))
  589.     warn_selector = 0;
  590.   else if (!strcmp (p, "-Wprotocol"))
  591.     flag_warn_protocol = 1;
  592.   else if (!strcmp (p, "-Wno-protocol"))
  593.     flag_warn_protocol = 0;
  594.   else if (!strcmp (p, "-fgnu-runtime"))
  595.     flag_next_runtime = 0;
  596.   else if (!strcmp (p, "-fno-next-runtime"))
  597.     flag_next_runtime = 0;
  598.   else if (!strcmp (p, "-fno-gnu-runtime"))
  599.     flag_next_runtime = 1;
  600.   else if (!strcmp (p, "-fnext-runtime"))
  601.     flag_next_runtime = 1;
  602.   else
  603.     return c_decode_option (p);
  604.  
  605.   return 1;
  606. }
  607.  
  608. static tree
  609. define_decl (declarator, declspecs)
  610.      tree declarator;
  611.      tree declspecs;
  612. {
  613.   tree decl = start_decl (declarator, declspecs, 0, NULL_TREE, NULL_TREE);
  614.   finish_decl (decl, NULL_TREE, NULL_TREE);
  615.   return decl;
  616. }
  617.  
  618. /* Return 1 if LHS and RHS are compatible types for assignment or
  619.    various other operations.  Return 0 if they are incompatible, and
  620.    return -1 if we choose to not decide.  When the operation is
  621.    REFLEXIVE, check for compatibility in either direction.
  622.  
  623.    For statically typed objects, an assignment of the form `a' = `b'
  624.    is permitted if:
  625.  
  626.    `a' is of type "id",
  627.    `a' and `b' are the same class type, or
  628.    `a' and `b' are of class types A and B such that B is a descendant of A.  */
  629.  
  630. int
  631. maybe_objc_comptypes (lhs, rhs, reflexive)
  632.      tree lhs, rhs;
  633.      int reflexive;
  634. {
  635.   if (doing_objc_thang)
  636.     return objc_comptypes (lhs, rhs, reflexive);
  637.   return -1;
  638. }
  639.  
  640. static tree
  641. lookup_method_in_protocol_list (rproto_list, sel_name, class_meth)
  642.    tree rproto_list;
  643.    tree sel_name;
  644.    int class_meth;
  645. {
  646.    tree rproto, p;
  647.    tree fnd = 0;
  648.  
  649.    for (rproto = rproto_list; rproto; rproto = TREE_CHAIN (rproto))
  650.      {
  651.         p = TREE_VALUE (rproto);
  652.  
  653.     if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  654.       {
  655.         if ((fnd = lookup_method (class_meth
  656.                       ? PROTOCOL_CLS_METHODS (p)
  657.                       : PROTOCOL_NST_METHODS (p), sel_name)))
  658.           ;
  659.         else if (PROTOCOL_LIST (p))
  660.           fnd = lookup_method_in_protocol_list (PROTOCOL_LIST (p),
  661.                             sel_name, class_meth);
  662.       }
  663.     else
  664.       ; /* An identifier...if we could not find a protocol.  */
  665.  
  666.     if (fnd)
  667.       return fnd;
  668.      }
  669.  
  670.    return 0;
  671. }
  672.  
  673. static tree
  674. lookup_protocol_in_reflist (rproto_list, lproto)
  675.    tree rproto_list;
  676.    tree lproto;
  677. {
  678.    tree rproto, p;
  679.  
  680.    /* Make sure the protocol is support by the object on the rhs. */
  681.    if (TREE_CODE (lproto) == PROTOCOL_INTERFACE_TYPE)
  682.      {
  683.        tree fnd = 0;
  684.        for (rproto = rproto_list; rproto; rproto = TREE_CHAIN (rproto))
  685.      {
  686.        p = TREE_VALUE (rproto);
  687.  
  688.        if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  689.          {
  690.            if (lproto == p)
  691.          fnd = lproto;
  692.  
  693.            else if (PROTOCOL_LIST (p))
  694.          fnd = lookup_protocol_in_reflist (PROTOCOL_LIST (p), lproto);
  695.          }
  696.  
  697.        if (fnd)
  698.          return fnd;
  699.      }
  700.      }
  701.    else
  702.      ; /* An identifier...if we could not find a protocol. */
  703.  
  704.    return 0;
  705. }
  706.  
  707. /* Return 1 if LHS and RHS are compatible types for assignment
  708.    or various other operations.  Return 0 if they are incompatible,
  709.    and return -1 if we choose to not decide.  When the operation
  710.    is REFLEXIVE, check for compatibility in either direction.  */
  711.  
  712. int
  713. objc_comptypes (lhs, rhs, reflexive)
  714.      tree lhs;
  715.      tree rhs;
  716.      int reflexive;
  717. {
  718.   /* New clause for protocols. */
  719.  
  720.   if (TREE_CODE (lhs) == POINTER_TYPE
  721.       && TREE_CODE (TREE_TYPE (lhs)) == RECORD_TYPE
  722.       && TREE_CODE (rhs) == POINTER_TYPE
  723.       && TREE_CODE (TREE_TYPE (rhs)) == RECORD_TYPE)
  724.     {
  725.       int lhs_is_proto = IS_PROTOCOL_QUALIFIED_ID (lhs);
  726.       int rhs_is_proto = IS_PROTOCOL_QUALIFIED_ID (rhs);
  727.  
  728.       if (lhs_is_proto)
  729.         {
  730.       tree lproto, lproto_list = TYPE_PROTOCOL_LIST (lhs);
  731.       tree rproto, rproto_list;
  732.       tree p;
  733.  
  734.       if (rhs_is_proto)
  735.         {
  736.           rproto_list = TYPE_PROTOCOL_LIST (rhs);
  737.  
  738.           /* Make sure the protocol is supported by the object
  739.          on the rhs.  */
  740.           for (lproto = lproto_list; lproto; lproto = TREE_CHAIN (lproto))
  741.         {
  742.           p = TREE_VALUE (lproto);
  743.           rproto = lookup_protocol_in_reflist (rproto_list, p);
  744.  
  745.           if (!rproto)
  746.             warning ("object does not conform to the `%s' protocol",
  747.                  IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  748.         }
  749.         }
  750.       else if (TYPED_OBJECT (TREE_TYPE (rhs)))
  751.         {
  752.           tree rname = TYPE_NAME (TREE_TYPE (rhs));
  753.           tree rinter;
  754.  
  755.           /* Make sure the protocol is supported by the object
  756.          on the rhs.  */
  757.           for (lproto = lproto_list; lproto; lproto = TREE_CHAIN (lproto))
  758.         {
  759.           p = TREE_VALUE (lproto);
  760.           rproto = 0;
  761.           rinter = lookup_interface (rname);
  762.  
  763.           while (rinter && !rproto)
  764.             {
  765.               tree cat;
  766.  
  767.               rproto_list = CLASS_PROTOCOL_LIST (rinter);
  768.               rproto = lookup_protocol_in_reflist (rproto_list, p);
  769.  
  770.               /* Check for protocols adopted by categories. */
  771.               cat = CLASS_CATEGORY_LIST (rinter);
  772.               while (cat && !rproto)
  773.             {
  774.               rproto_list = CLASS_PROTOCOL_LIST (cat);
  775.               rproto = lookup_protocol_in_reflist (rproto_list, p);
  776.  
  777.               cat = CLASS_CATEGORY_LIST (cat);
  778.             }
  779.  
  780.               rinter = lookup_interface (CLASS_SUPER_NAME (rinter));
  781.             }
  782.  
  783.           if (!rproto)
  784.             warning ("class `%s' does not implement the `%s' protocol",
  785.                          IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (rhs))),
  786.                      IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  787.         }
  788.         }
  789.  
  790.       /* May change...based on whether there was any mismatch */
  791.           return 1;
  792.         }
  793.       else if (rhs_is_proto)
  794.     /* Lhs is not a protocol...warn if it is statically typed */
  795.     return (TYPED_OBJECT (TREE_TYPE (lhs)) != 0);
  796.  
  797.       else
  798.     /* Defer to comptypes .*/
  799.     return -1;
  800.     }
  801.  
  802.   else if (TREE_CODE (lhs) == RECORD_TYPE && TREE_CODE (rhs) == RECORD_TYPE)
  803.     ; /* Fall thru.  This is the case we have been handling all along */
  804.   else
  805.     /* Defer to comptypes. */
  806.     return -1;
  807.  
  808.   /* `id' = `<class> *', `<class> *' = `id' */
  809.  
  810.   if ((TYPE_NAME (lhs) == objc_object_id && TYPED_OBJECT (rhs))
  811.       || (TYPE_NAME (rhs) == objc_object_id && TYPED_OBJECT (lhs)))
  812.     return 1;
  813.  
  814.   /* `id' = `Class', `Class' = `id' */
  815.  
  816.   else if ((TYPE_NAME (lhs) == objc_object_id
  817.         && TYPE_NAME (rhs) == objc_class_id)
  818.        || (TYPE_NAME (lhs) == objc_class_id
  819.            && TYPE_NAME (rhs) == objc_object_id))
  820.     return 1;
  821.  
  822.   /* `<class> *' = `<class> *' */
  823.  
  824.   else if (TYPED_OBJECT (lhs) && TYPED_OBJECT (rhs))
  825.     {
  826.       tree lname = TYPE_NAME (lhs);
  827.       tree rname = TYPE_NAME (rhs);
  828.       tree inter;
  829.  
  830.       if (lname == rname)
  831.     return 1;
  832.  
  833.       /* If the left hand side is a super class of the right hand side,
  834.      allow it.  */
  835.       for (inter = lookup_interface (rname); inter;
  836.        inter = lookup_interface (CLASS_SUPER_NAME (inter)))
  837.     if (lname == CLASS_SUPER_NAME (inter))
  838.       return 1;
  839.  
  840.       /* Allow the reverse when reflexive.  */
  841.       if (reflexive)
  842.     for (inter = lookup_interface (lname); inter;
  843.          inter = lookup_interface (CLASS_SUPER_NAME (inter)))
  844.       if (rname == CLASS_SUPER_NAME (inter))
  845.         return 1;
  846.  
  847.       return 0;
  848.     }
  849.   else
  850.     /* Defer to comptypes. */
  851.     return -1;
  852. }
  853.  
  854. /* Called from c-decl.c before all calls to rest_of_decl_compilation.  */
  855.  
  856. void
  857. objc_check_decl (decl)
  858.      tree decl;
  859. {
  860.   tree type = TREE_TYPE (decl);
  861.  
  862.   if (TREE_CODE (type) == RECORD_TYPE
  863.       && TREE_STATIC_TEMPLATE (type)
  864.       && type != constant_string_type)
  865.     {
  866.       error_with_decl (decl, "`%s' cannot be statically allocated");
  867.       fatal ("statically allocated objects not supported");
  868.     }
  869. }
  870.  
  871. void
  872. maybe_objc_check_decl (decl)
  873.      tree decl;
  874. {
  875.   if (doing_objc_thang)
  876.     objc_check_decl (decl);
  877. }
  878.  
  879. /* Implement static typing.  At this point, we know we have an interface.  */
  880.  
  881. tree
  882. get_static_reference (interface, protocols)
  883.      tree interface;
  884.      tree protocols;
  885. {
  886.   tree type = xref_tag (RECORD_TYPE, interface);
  887.  
  888.   if (protocols)
  889.     {
  890.       tree t, m = TYPE_MAIN_VARIANT (type);
  891.  
  892.       push_obstacks_nochange ();
  893.       end_temporary_allocation ();
  894.       t = copy_node (type);
  895.       TYPE_BINFO (t) = make_tree_vec (2);
  896.       pop_obstacks ();
  897.  
  898.       /* Add this type to the chain of variants of TYPE.  */
  899.       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  900.       TYPE_NEXT_VARIANT (m) = t;
  901.  
  902.       /* Look up protocols and install in lang specific list.  */
  903.       TYPE_PROTOCOL_LIST (t) = lookup_and_install_protocols (protocols);
  904.  
  905.       /* This forces a new pointer type to be created later
  906.      (in build_pointer_type)...so that the new template
  907.      we just created will actually be used...what a hack!  */
  908.       if (TYPE_POINTER_TO (t))
  909.     TYPE_POINTER_TO (t) = 0;
  910.  
  911.       type = t;
  912.     }
  913.  
  914.   return type;
  915. }
  916.  
  917. tree
  918. get_object_reference (protocols)
  919.      tree protocols;
  920. {
  921.   tree type_decl = lookup_name (objc_id_id);
  922.   tree type;
  923.  
  924.   if (type_decl && TREE_CODE (type_decl) == TYPE_DECL)
  925.     {
  926.       type = TREE_TYPE (type_decl);
  927.       if (TYPE_MAIN_VARIANT (type) != id_type)
  928.     warning ("Unexpected type for `id' (%s)",
  929.         gen_declaration (type, errbuf));
  930.     }
  931.   else
  932.     fatal ("Undefined type `id', please import <objc/objc.h>");
  933.  
  934.   /* This clause creates a new pointer type that is qualified with
  935.      the protocol specification...this info is used later to do more
  936.      elaborate type checking.  */
  937.  
  938.   if (protocols)
  939.     {
  940.       tree t, m = TYPE_MAIN_VARIANT (type);
  941.  
  942.       push_obstacks_nochange ();
  943.       end_temporary_allocation ();
  944.       t = copy_node (type);
  945.       TYPE_BINFO (t) = make_tree_vec (2);
  946.       pop_obstacks ();
  947.  
  948.       /* Add this type to the chain of variants of TYPE.  */
  949.       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  950.       TYPE_NEXT_VARIANT (m) = t;
  951.  
  952.       /* Look up protocols...and install in lang specific list */
  953.       TYPE_PROTOCOL_LIST (t) = lookup_and_install_protocols (protocols);
  954.  
  955.       /* This forces a new pointer type to be created later
  956.      (in build_pointer_type)...so that the new template
  957.      we just created will actually be used...what a hack!  */
  958.       if (TYPE_POINTER_TO (t))
  959.     TYPE_POINTER_TO (t) = NULL;
  960.  
  961.       type = t;
  962.     }
  963.   return type;
  964. }
  965.  
  966. static tree
  967. lookup_and_install_protocols (protocols)
  968.      tree protocols;
  969. {
  970.   tree proto;
  971.   tree prev = NULL;
  972.   tree return_value = protocols;
  973.  
  974.   for (proto = protocols; proto; proto = TREE_CHAIN (proto))
  975.     {
  976.       tree ident = TREE_VALUE (proto);
  977.       tree p = lookup_protocol (ident);
  978.  
  979.       if (!p)
  980.     {
  981.       error ("Cannot find protocol declaration for `%s'",
  982.          IDENTIFIER_POINTER (ident));
  983.       if (prev)
  984.         TREE_CHAIN (prev) = TREE_CHAIN (proto);
  985.       else
  986.         return_value = TREE_CHAIN (proto);
  987.     }
  988.       else
  989.     {
  990.       /* Replace identifier with actual protocol node. */
  991.       TREE_VALUE (proto) = p;
  992.       prev = proto;
  993.     }
  994.     }
  995.  
  996.   return return_value;
  997. }
  998.  
  999. /* Create and push a decl for a built-in external variable or field NAME.
  1000.    CODE says which.
  1001.    TYPE is its data type.  */
  1002.  
  1003. static tree
  1004. create_builtin_decl (code, type, name)
  1005.      enum tree_code code;
  1006.      tree type;
  1007.      char *name;
  1008. {
  1009.   tree decl = build_decl (code, get_identifier (name), type);
  1010.  
  1011.   if (code == VAR_DECL)
  1012.     {
  1013.       TREE_STATIC (decl) = 1;
  1014.       make_decl_rtl (decl, 0, 1);
  1015.       pushdecl (decl);
  1016.     }
  1017.  
  1018.   DECL_ARTIFICIAL (decl) = 1;
  1019.   return decl;
  1020. }
  1021.  
  1022. /* Purpose: "play" parser, creating/installing representations
  1023.    of the declarations that are required by Objective-C.
  1024.  
  1025.    Model:
  1026.  
  1027.      type_spec--------->sc_spec
  1028.      (tree_list)        (tree_list)
  1029.          |                  |
  1030.          |                  |
  1031.      identifier_node    identifier_node  */
  1032.  
  1033. static void
  1034. synth_module_prologue ()
  1035. {
  1036.   tree temp_type;
  1037.   tree super_p;
  1038.  
  1039.   /* Defined in `objc.h' */
  1040.   objc_object_id = get_identifier (TAG_OBJECT);
  1041.  
  1042.   objc_object_reference = xref_tag (RECORD_TYPE, objc_object_id);
  1043.  
  1044.   id_type = build_pointer_type (objc_object_reference);
  1045.  
  1046.   objc_id_id = get_identifier (TYPE_ID);
  1047.   objc_class_id = get_identifier (TAG_CLASS);
  1048.  
  1049.   objc_class_type = build_pointer_type (xref_tag (RECORD_TYPE, objc_class_id));
  1050.   protocol_type = build_pointer_type (xref_tag (RECORD_TYPE,
  1051.                 get_identifier (PROTOCOL_OBJECT_CLASS_NAME)));
  1052.  
  1053.   /* Declare type of selector-objects that represent an operation name.  */
  1054.  
  1055. #ifdef OBJC_INT_SELECTORS
  1056.   /* `unsigned int' */
  1057.   selector_type = unsigned_type_node;
  1058. #else
  1059.   /* `struct objc_selector *' */
  1060.   selector_type
  1061.     = build_pointer_type (xref_tag (RECORD_TYPE,
  1062.                     get_identifier (TAG_SELECTOR)));
  1063. #endif /* not OBJC_INT_SELECTORS */
  1064.  
  1065.   /* Forward declare type, or else the prototype for msgSendSuper will
  1066.      complain.  */
  1067.  
  1068.   super_p = build_pointer_type (xref_tag (RECORD_TYPE,
  1069.                       get_identifier (TAG_SUPER)));
  1070.  
  1071.  
  1072.   /* id objc_msgSend (id, SEL, ...); */
  1073.  
  1074.   temp_type
  1075.     = build_function_type (id_type,
  1076.                tree_cons (NULL_TREE, id_type,
  1077.                       tree_cons (NULL_TREE, selector_type,
  1078.                          NULL_TREE)));
  1079.  
  1080.   if (! flag_next_runtime)
  1081.     {
  1082.       umsg_decl = build_decl (FUNCTION_DECL,
  1083.                   get_identifier (TAG_MSGSEND), temp_type);
  1084.       DECL_EXTERNAL (umsg_decl) = 1;
  1085.       TREE_PUBLIC (umsg_decl) = 1;
  1086.       DECL_INLINE (umsg_decl) = 1;
  1087.       DECL_ARTIFICIAL (umsg_decl) = 1;
  1088.  
  1089.       if (flag_traditional && TAG_MSGSEND[0] != '_')
  1090.     DECL_BUILT_IN_NONANSI (umsg_decl) = 1;
  1091.  
  1092.       make_decl_rtl (umsg_decl, NULL_PTR, 1);
  1093.       pushdecl (umsg_decl);
  1094.     }
  1095.   else
  1096.     umsg_decl = builtin_function (TAG_MSGSEND, temp_type, NOT_BUILT_IN, 0);
  1097.  
  1098.   /* id objc_msgSendSuper (struct objc_super *, SEL, ...); */
  1099.  
  1100.   temp_type
  1101.     = build_function_type (id_type,
  1102.                tree_cons (NULL_TREE, super_p,
  1103.                       tree_cons (NULL_TREE, selector_type,
  1104.                          NULL_TREE)));
  1105.  
  1106.   umsg_super_decl = builtin_function (TAG_MSGSENDSUPER,
  1107.                      temp_type, NOT_BUILT_IN, 0);
  1108.  
  1109.   /* id objc_getClass (const char *); */
  1110.  
  1111.   temp_type = build_function_type (id_type,
  1112.             tree_cons (NULL_TREE,
  1113.                    const_string_type_node,
  1114.                    tree_cons (NULL_TREE, void_type_node,
  1115.                           NULL_TREE)));
  1116.  
  1117.   objc_get_class_decl
  1118.     = builtin_function (TAG_GETCLASS, temp_type, NOT_BUILT_IN, 0);
  1119.  
  1120.   /* id objc_getMetaClass (const char *); */
  1121.  
  1122.   objc_get_meta_class_decl
  1123.     = builtin_function (TAG_GETMETACLASS, temp_type, NOT_BUILT_IN, 0);
  1124.  
  1125.   /* static SEL _OBJC_SELECTOR_TABLE[]; */
  1126.  
  1127.   if (! flag_next_runtime)
  1128.     {
  1129.       if (flag_typed_selectors)
  1130.     {
  1131.       /* Suppress outputting debug symbols, because
  1132.          dbxout_init hasn'r been called yet.  */
  1133.       enum debug_info_type save_write_symbols = write_symbols;
  1134.       write_symbols = NO_DEBUG;
  1135.  
  1136.       build_selector_template ();
  1137.       temp_type = build_array_type (objc_selector_template, NULL_TREE);
  1138.  
  1139.       write_symbols = save_write_symbols;
  1140.     }
  1141.       else
  1142.     temp_type = build_array_type (selector_type, NULL_TREE);
  1143.  
  1144.       layout_type (temp_type);
  1145.       UOBJC_SELECTOR_TABLE_decl
  1146.     = create_builtin_decl (VAR_DECL, temp_type,
  1147.                    "_OBJC_SELECTOR_TABLE");
  1148.  
  1149.       /* Avoid warning when not sending messages.  */
  1150.       TREE_USED (UOBJC_SELECTOR_TABLE_decl) = 1;
  1151.     }
  1152.  
  1153.   generate_forward_declaration_to_string_table ();
  1154.  
  1155.   /* Forward declare constant_string_id and constant_string_type.  */
  1156.   constant_string_id = get_identifier (STRING_OBJECT_CLASS_NAME);
  1157.   constant_string_type = xref_tag (RECORD_TYPE, constant_string_id);
  1158. }
  1159.  
  1160. /* Custom build_string which sets TREE_TYPE!  */
  1161.  
  1162. static tree
  1163. my_build_string (len, str)
  1164.      int len;
  1165.      char *str;
  1166. {
  1167.   int wide_flag = 0;
  1168.   tree a_string = build_string (len, str);
  1169.  
  1170.   /* Some code from combine_strings, which is local to c-parse.y.  */
  1171.   if (TREE_TYPE (a_string) == int_array_type_node)
  1172.     wide_flag = 1;
  1173.  
  1174.   TREE_TYPE (a_string)
  1175.     = build_array_type (wide_flag ? integer_type_node : char_type_node,
  1176.             build_index_type (build_int_2 (len - 1, 0)));
  1177.  
  1178.   TREE_CONSTANT (a_string) = 1;    /* Puts string in the readonly segment */
  1179.   TREE_STATIC (a_string) = 1;
  1180.  
  1181.   return a_string;
  1182. }
  1183.  
  1184. /* Return a newly constructed OBJC_STRING_CST node whose value is
  1185.    the LEN characters at STR.
  1186.    The TREE_TYPE is not initialized.  */
  1187.  
  1188. tree
  1189. build_objc_string (len, str)
  1190.      int len;
  1191.      char *str;
  1192. {
  1193.   tree s = build_string (len, str);
  1194.  
  1195.   TREE_SET_CODE (s, OBJC_STRING_CST);
  1196.   return s;
  1197. }
  1198.  
  1199. /* Given a chain of OBJC_STRING_CST's, build a static instance of
  1200.    NXConstanString which points at the concatenation of those strings.
  1201.    We place the string object in the __string_objects section of the
  1202.    __OBJC segment.  The Objective-C runtime will initialize the isa
  1203.    pointers of the string objects to point at the NXConstandString class
  1204.    object.  */
  1205.  
  1206. tree
  1207. build_objc_string_object (strings)
  1208.      tree strings;
  1209. {
  1210.   tree string, initlist, constructor;
  1211.   int length;
  1212.  
  1213.   if (!doing_objc_thang)
  1214.     objc_fatal ();
  1215.  
  1216.   if (lookup_interface (constant_string_id) == NULL_TREE)
  1217.     {
  1218.       error ("Cannot find interface declaration for `%s'",
  1219.          IDENTIFIER_POINTER (constant_string_id));
  1220.       return error_mark_node;
  1221.     }
  1222.  
  1223.   add_class_reference (constant_string_id);
  1224.  
  1225.   /* Combine_strings will work for OBJC_STRING_CST's too.  */
  1226.   string = combine_strings (strings);
  1227.   TREE_SET_CODE (string, STRING_CST);
  1228.   length = TREE_STRING_LENGTH (string) - 1;
  1229.  
  1230.   if (! flag_next_runtime)
  1231.     {
  1232.       push_obstacks_nochange ();
  1233.       end_temporary_allocation ();
  1234.       if (! TREE_PERMANENT (strings))
  1235.     string = my_build_string (length + 1,
  1236.                   TREE_STRING_POINTER (string));
  1237.     }
  1238.  
  1239.   /* & ((NXConstantString) {0, string, length})  */
  1240.  
  1241.   initlist = build_tree_list (NULL_TREE, build_int_2 (0, 0));
  1242.   initlist
  1243.     = tree_cons (NULL_TREE, copy_node (build_unary_op (ADDR_EXPR, string, 1)),
  1244.          initlist);
  1245.   initlist = tree_cons (NULL_TREE, build_int_2 (length, 0), initlist);
  1246.   constructor = build_constructor (constant_string_type, nreverse (initlist));
  1247.  
  1248.   if (!flag_next_runtime)
  1249.     {
  1250.       constructor
  1251.     = objc_add_static_instance (constructor, constant_string_type);
  1252.       pop_obstacks ();
  1253.     }
  1254.  
  1255.   return (build_unary_op (ADDR_EXPR, constructor, 1));
  1256. }
  1257.  
  1258. /* Declare a static instance of CLASS_DECL initialized by CONSTRUCTOR.  */
  1259.  
  1260. static tree
  1261. objc_add_static_instance (constructor, class_decl)
  1262.      tree constructor, class_decl;
  1263. {
  1264.   static int num_static_inst;
  1265.   tree *chain, decl, decl_spec, decl_expr;
  1266.   char buf[256];
  1267.  
  1268.   push_obstacks_nochange ();
  1269.   end_temporary_allocation ();
  1270.  
  1271.   /* Find the list of static instances for the CLASS_DECL.  Create one if
  1272.      not found.  */
  1273.   for (chain = &objc_static_instances;
  1274.        *chain && TREE_VALUE (*chain) != class_decl;
  1275.        chain = &TREE_CHAIN (*chain));
  1276.   if (!*chain)
  1277.     {
  1278.       *chain = tree_cons (NULL_TREE, class_decl, NULL_TREE);
  1279.       add_objc_string (TYPE_NAME (class_decl), class_names);
  1280.     }
  1281.  
  1282.   sprintf (buf, "_OBJC_INSTANCE_%d", num_static_inst++);
  1283.   decl = build_decl (VAR_DECL, get_identifier (buf), class_decl);
  1284.   DECL_COMMON (decl) = 1;
  1285.   TREE_STATIC (decl) = 1;
  1286.   DECL_ARTIFICIAL (decl) = 1;
  1287.   pushdecl_top_level (decl);
  1288.   rest_of_decl_compilation (decl, 0, 1, 0);
  1289.  
  1290.   /* Do this here so it gets output later instead of possibly
  1291.      inside something else we are writing.  */
  1292.   DECL_INITIAL (decl) = constructor;
  1293.  
  1294.   /* Add the DECL to the head of this CLASS' list.  */
  1295.   TREE_PURPOSE (*chain) = tree_cons (NULL_TREE, decl, TREE_PURPOSE (*chain));
  1296.  
  1297.   pop_obstacks ();
  1298.   return decl;
  1299. }
  1300.  
  1301. /* Build a static constant CONSTRUCTOR
  1302.    with type TYPE and elements ELTS.  */
  1303.  
  1304. static tree
  1305. build_constructor (type, elts)
  1306.      tree type, elts;
  1307. {
  1308.   tree constructor = build (CONSTRUCTOR, type, NULL_TREE, elts);
  1309.  
  1310.   TREE_CONSTANT (constructor) = 1;
  1311.   TREE_STATIC (constructor) = 1;
  1312.   TREE_READONLY (constructor) = 1;
  1313.  
  1314.   return constructor;
  1315. }
  1316.  
  1317. /* Take care of defining and initializing _OBJC_SYMBOLS.  */
  1318.  
  1319. /* Predefine the following data type:
  1320.  
  1321.    struct _objc_symtab
  1322.    {
  1323.      long sel_ref_cnt;
  1324.      SEL *refs;
  1325.      short cls_def_cnt;
  1326.      short cat_def_cnt;
  1327.      void *defs[cls_def_cnt + cat_def_cnt];
  1328.    }; */
  1329.  
  1330. static void
  1331. build_objc_symtab_template ()
  1332. {
  1333.   tree field_decl, field_decl_chain, index;
  1334.  
  1335.   objc_symtab_template
  1336.     = start_struct (RECORD_TYPE, get_identifier (UTAG_SYMTAB));
  1337.  
  1338.   /* long sel_ref_cnt; */
  1339.  
  1340.   field_decl = create_builtin_decl (FIELD_DECL,
  1341.                     long_integer_type_node,
  1342.                     "sel_ref_cnt");
  1343.   field_decl_chain = field_decl;
  1344.  
  1345.   /* SEL *refs; */
  1346.  
  1347.   field_decl = create_builtin_decl (FIELD_DECL,
  1348.                     build_pointer_type (selector_type),
  1349.                     "refs");
  1350.   chainon (field_decl_chain, field_decl);
  1351.  
  1352.   /* short cls_def_cnt; */
  1353.  
  1354.   field_decl = create_builtin_decl (FIELD_DECL,
  1355.                     short_integer_type_node,
  1356.                     "cls_def_cnt");
  1357.   chainon (field_decl_chain, field_decl);
  1358.  
  1359.   /* short cat_def_cnt; */
  1360.  
  1361.   field_decl = create_builtin_decl (FIELD_DECL,
  1362.                     short_integer_type_node,
  1363.                     "cat_def_cnt");
  1364.   chainon (field_decl_chain, field_decl);
  1365.  
  1366.   /* void *defs[cls_def_cnt + cat_def_cnt]; */
  1367.  
  1368.   index = build_index_type (build_int_2 (imp_count + cat_count - 1,
  1369.                      imp_count == 0 && cat_count == 0
  1370.                      ? -1 : 0));
  1371.   field_decl = create_builtin_decl (FIELD_DECL,
  1372.                     build_array_type (ptr_type_node, index),
  1373.                     "defs");
  1374.   chainon (field_decl_chain, field_decl);
  1375.  
  1376.   finish_struct (objc_symtab_template, field_decl_chain, NULL_TREE);
  1377. }
  1378.  
  1379. /* Create the initial value for the `defs' field of _objc_symtab.
  1380.    This is a CONSTRUCTOR.  */
  1381.  
  1382. static tree
  1383. init_def_list (type)
  1384.      tree type;
  1385. {
  1386.   tree expr, initlist = NULL_TREE;
  1387.   struct imp_entry *impent;
  1388.  
  1389.   if (imp_count)
  1390.     for (impent = imp_list; impent; impent = impent->next)
  1391.       {
  1392.     if (TREE_CODE (impent->imp_context) == CLASS_IMPLEMENTATION_TYPE)
  1393.       {
  1394.         expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);
  1395.         initlist = tree_cons (NULL_TREE, expr, initlist);
  1396.       }
  1397.       }
  1398.  
  1399.   if (cat_count)
  1400.     for (impent = imp_list; impent; impent = impent->next)
  1401.       {
  1402.     if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  1403.       {
  1404.         expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);
  1405.         initlist = tree_cons (NULL_TREE, expr, initlist);
  1406.       }
  1407.       }
  1408.  
  1409.   return build_constructor (type, nreverse (initlist));
  1410. }
  1411.  
  1412. /* Construct the initial value for all of _objc_symtab.  */
  1413.  
  1414. static tree
  1415. init_objc_symtab (type)
  1416.      tree type;
  1417. {
  1418.   tree initlist;
  1419.  
  1420.   /* sel_ref_cnt = { ..., 5, ... } */
  1421.  
  1422.   initlist = build_tree_list (NULL_TREE, build_int_2 (0, 0));
  1423.  
  1424.   /* refs = { ..., _OBJC_SELECTOR_TABLE, ... } */
  1425.  
  1426.   if (flag_next_runtime || ! sel_ref_chain)
  1427.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  1428.   else
  1429.     initlist = tree_cons (NULL_TREE,
  1430.               build_unary_op (ADDR_EXPR,
  1431.                       UOBJC_SELECTOR_TABLE_decl, 1),
  1432.               initlist);
  1433.  
  1434.   /* cls_def_cnt = { ..., 5, ... } */
  1435.  
  1436.   initlist = tree_cons (NULL_TREE, build_int_2 (imp_count, 0), initlist);
  1437.  
  1438.   /* cat_def_cnt = { ..., 5, ... } */
  1439.  
  1440.   initlist = tree_cons (NULL_TREE, build_int_2 (cat_count, 0), initlist);
  1441.  
  1442.   /* cls_def = { ..., { &Foo, &Bar, ...}, ... } */
  1443.  
  1444.   if (imp_count || cat_count)
  1445.     {
  1446.       tree field = TYPE_FIELDS (type);
  1447.       field = TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (field))));
  1448.  
  1449.       initlist = tree_cons (NULL_TREE, init_def_list (TREE_TYPE (field)),
  1450.                 initlist);
  1451.     }
  1452.  
  1453.   return build_constructor (type, nreverse (initlist));
  1454. }
  1455.  
  1456. /* Push forward-declarations of all the categories
  1457.    so that init_def_list can use them in a CONSTRUCTOR.  */
  1458.  
  1459. static void
  1460. forward_declare_categories ()
  1461. {
  1462.   struct imp_entry *impent;
  1463.   tree sav = implementation_context;
  1464.  
  1465.   for (impent = imp_list; impent; impent = impent->next)
  1466.     {
  1467.       if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  1468.     {
  1469.       /* Set an invisible arg to synth_id_with_class_suffix.  */
  1470.       implementation_context = impent->imp_context;
  1471.       impent->class_decl
  1472.         = create_builtin_decl (VAR_DECL, objc_category_template,
  1473.                    IDENTIFIER_POINTER (synth_id_with_class_suffix ("_OBJC_CATEGORY", implementation_context)));
  1474.     }
  1475.     }
  1476.   implementation_context = sav;
  1477. }
  1478.  
  1479. /* Create the declaration of _OBJC_SYMBOLS, with type `strict _objc_symtab'
  1480.    and initialized appropriately.  */
  1481.  
  1482. static void
  1483. generate_objc_symtab_decl ()
  1484. {
  1485.   tree sc_spec;
  1486.  
  1487.   if (!objc_category_template)
  1488.     build_category_template ();
  1489.  
  1490.   /* forward declare categories */
  1491.   if (cat_count)
  1492.     forward_declare_categories ();
  1493.  
  1494.   if (!objc_symtab_template)
  1495.     build_objc_symtab_template ();
  1496.  
  1497.   sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_STATIC]);
  1498.  
  1499.   UOBJC_SYMBOLS_decl = start_decl (get_identifier ("_OBJC_SYMBOLS"),
  1500.                    tree_cons (NULL_TREE,
  1501.                           objc_symtab_template, sc_spec),
  1502.                    1,
  1503.                    NULL_TREE, NULL_TREE);
  1504.  
  1505.   TREE_USED (UOBJC_SYMBOLS_decl) = 1;
  1506.   DECL_IGNORED_P (UOBJC_SYMBOLS_decl) = 1;
  1507.   DECL_ARTIFICIAL (UOBJC_SYMBOLS_decl) = 1;
  1508.   finish_decl (UOBJC_SYMBOLS_decl,
  1509.            init_objc_symtab (TREE_TYPE (UOBJC_SYMBOLS_decl)),
  1510.            NULL_TREE);
  1511. }
  1512.  
  1513. static tree
  1514. init_module_descriptor (type)
  1515.      tree type;
  1516. {
  1517.   tree initlist, expr;
  1518.  
  1519.   /* version = { 1, ... } */
  1520.  
  1521.   expr = build_int_2 (OBJC_VERSION, 0);
  1522.   initlist = build_tree_list (NULL_TREE, expr);
  1523.  
  1524.   /* size = { ..., sizeof (struct objc_module), ... } */
  1525.  
  1526.   expr = size_in_bytes (objc_module_template);
  1527.   initlist = tree_cons (NULL_TREE, expr, initlist);
  1528.  
  1529.   /* name = { ..., "foo.m", ... } */
  1530.  
  1531.   expr = add_objc_string (get_identifier (input_filename), class_names);
  1532.   initlist = tree_cons (NULL_TREE, expr, initlist);
  1533.  
  1534.  
  1535.   if (!flag_next_runtime)
  1536.     {
  1537.       /* statics = { ..., _OBJC_STATIC_INSTANCES, ... }  */
  1538.       if (static_instances_decl)
  1539.     expr = build_unary_op (ADDR_EXPR, static_instances_decl, 0);
  1540.       else
  1541.     expr = build_int_2 (0, 0);
  1542.       initlist = tree_cons (NULL_TREE, expr, initlist);
  1543.     }
  1544.  
  1545.   /* symtab = { ..., _OBJC_SYMBOLS, ... } */
  1546.  
  1547.   if (UOBJC_SYMBOLS_decl)
  1548.     expr = build_unary_op (ADDR_EXPR, UOBJC_SYMBOLS_decl, 0);
  1549.   else
  1550.     expr = build_int_2 (0, 0);
  1551.   initlist = tree_cons (NULL_TREE, expr, initlist);
  1552.  
  1553.   return build_constructor (type, nreverse (initlist));
  1554. }
  1555.  
  1556. /* Write out the data structures to describe Objective C classes defined.
  1557.    If appropriate, compile and output a setup function to initialize them.
  1558.    Return a string which is the name of a function to call to initialize
  1559.    the Objective C data structures for this file (and perhaps for other files
  1560.    also).
  1561.  
  1562.    struct objc_module { ... } _OBJC_MODULE = { ... };   */
  1563.  
  1564. static char *
  1565. build_module_descriptor ()
  1566. {
  1567.   tree decl_specs, field_decl, field_decl_chain;
  1568.  
  1569.   objc_module_template
  1570.     = start_struct (RECORD_TYPE, get_identifier (UTAG_MODULE));
  1571.  
  1572.   /* Long version; */
  1573.  
  1574.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);
  1575.   field_decl = get_identifier ("version");
  1576.   field_decl
  1577.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  1578.   field_decl_chain = field_decl;
  1579.  
  1580.   /* long  size; */
  1581.  
  1582.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);
  1583.   field_decl = get_identifier ("size");
  1584.   field_decl
  1585.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  1586.   chainon (field_decl_chain, field_decl);
  1587.  
  1588.   /* char  *name; */
  1589.  
  1590.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  1591.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("name"));
  1592.   field_decl
  1593.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  1594.   chainon (field_decl_chain, field_decl);
  1595.  
  1596.  
  1597.   if (!flag_next_runtime)
  1598.     {
  1599.       /* void *statics */
  1600.  
  1601.       decl_specs = get_identifier (UTAG_STATICS);
  1602.       decl_specs
  1603.     = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE, decl_specs));
  1604.       field_decl
  1605.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("statics"));
  1606.       field_decl = grokfield (input_filename, lineno, field_decl,
  1607.                   decl_specs, NULL_TREE);
  1608.       chainon (field_decl_chain, field_decl);
  1609.     }
  1610.  
  1611.  
  1612.   /* struct objc_symtab *symtab; */
  1613.  
  1614.   decl_specs = get_identifier (UTAG_SYMTAB);
  1615.   decl_specs = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE, decl_specs));
  1616.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("symtab"));
  1617.   field_decl
  1618.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  1619.   chainon (field_decl_chain, field_decl);
  1620.  
  1621.   finish_struct (objc_module_template, field_decl_chain, NULL_TREE);
  1622.  
  1623.   /* Create an instance of "objc_module". */
  1624.  
  1625.   decl_specs = tree_cons (NULL_TREE, objc_module_template,
  1626.               build_tree_list (NULL_TREE,
  1627.                        ridpointers[(int) RID_STATIC]));
  1628.  
  1629.   UOBJC_MODULES_decl = start_decl (get_identifier ("_OBJC_MODULES"),
  1630.                    decl_specs, 1, NULL_TREE, NULL_TREE);
  1631.  
  1632.   DECL_ARTIFICIAL (UOBJC_MODULES_decl) = 1;
  1633.   DECL_IGNORED_P (UOBJC_MODULES_decl) = 1;
  1634.   finish_decl (UOBJC_MODULES_decl,
  1635.            init_module_descriptor (TREE_TYPE (UOBJC_MODULES_decl)),
  1636.            NULL_TREE);
  1637.  
  1638.   /* Mark the decl to avoid "defined but not used" warning. */
  1639.   DECL_IN_SYSTEM_HEADER (UOBJC_MODULES_decl) = 1;
  1640.  
  1641.   /* Generate a constructor call for the module descriptor.
  1642.      This code was generated by reading the grammar rules
  1643.      of c-parse.in;  Therefore, it may not be the most efficient
  1644.      way of generating the requisite code. */
  1645.  
  1646.   if (flag_next_runtime)
  1647.     return 0;
  1648.  
  1649.   {
  1650.     tree parms, function_decl, decelerator, void_list_node;
  1651.     tree function_type;
  1652.     extern tree get_file_function_name ();
  1653.     tree init_function_name = get_file_function_name ('I');
  1654.  
  1655.     /* Declare void __objc_execClass (void*); */
  1656.  
  1657.     void_list_node = build_tree_list (NULL_TREE, void_type_node);
  1658.     function_type
  1659.       = build_function_type (void_type_node,
  1660.                  tree_cons (NULL_TREE, ptr_type_node,
  1661.                     void_list_node));
  1662.     function_decl = build_decl (FUNCTION_DECL,
  1663.                 get_identifier (TAG_EXECCLASS),
  1664.                 function_type);
  1665.     DECL_EXTERNAL (function_decl) = 1;
  1666.     DECL_ARTIFICIAL (function_decl) = 1;
  1667.     TREE_PUBLIC (function_decl) = 1;
  1668.  
  1669.     pushdecl (function_decl);
  1670.     rest_of_decl_compilation (function_decl, 0, 0, 0);
  1671.  
  1672.     parms
  1673.       = build_tree_list (NULL_TREE,
  1674.              build_unary_op (ADDR_EXPR, UOBJC_MODULES_decl, 0));
  1675.     decelerator = build_function_call (function_decl, parms);
  1676.  
  1677.     /* void _GLOBAL_$I$<gnyf> () {objc_execClass (&L_OBJC_MODULES);}  */
  1678.  
  1679.     start_function (void_list_node,
  1680.             build_parse_node (CALL_EXPR, init_function_name,
  1681.                       /* This has the format of the output
  1682.                      of get_parm_info.  */
  1683.                       tree_cons (NULL_TREE, NULL_TREE,
  1684.                          void_list_node),
  1685.                       NULL_TREE),
  1686.             NULL_TREE, NULL_TREE, 0);
  1687. #if 0 /* This should be turned back on later
  1688.      for the systems where collect is not needed.  */
  1689.     /* Make these functions nonglobal
  1690.        so each file can use the same name.  */
  1691.     TREE_PUBLIC (current_function_decl) = 0;
  1692. #endif
  1693.     TREE_USED (current_function_decl) = 1;
  1694.     store_parm_decls ();
  1695.  
  1696.     assemble_external (function_decl);
  1697.     c_expand_expr_stmt (decelerator);
  1698.  
  1699.     TREE_PUBLIC (current_function_decl) = 1;
  1700.  
  1701.     function_decl = current_function_decl;
  1702.     finish_function (0);
  1703.  
  1704.     /* Return the name of the constructor function.  */
  1705.     return XSTR (XEXP (DECL_RTL (function_decl), 0), 0);
  1706.   }
  1707. }
  1708.  
  1709. /* extern const char _OBJC_STRINGS[]; */
  1710.  
  1711. static void
  1712. generate_forward_declaration_to_string_table ()
  1713. {
  1714.   tree sc_spec, decl_specs, expr_decl;
  1715.  
  1716.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_EXTERN], NULL_TREE);
  1717.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], sc_spec);
  1718.  
  1719.   expr_decl
  1720.     = build_nt (ARRAY_REF, get_identifier ("_OBJC_STRINGS"), NULL_TREE);
  1721.  
  1722.   UOBJC_STRINGS_decl = define_decl (expr_decl, decl_specs);
  1723. }
  1724.  
  1725. /* Return the DECL of the string IDENT in the SECTION.  */
  1726.  
  1727. static tree
  1728. get_objc_string_decl (ident, section)
  1729.      tree ident;
  1730.      enum string_section section;
  1731. {
  1732.   tree chain, decl;
  1733.  
  1734.   if (section == class_names)
  1735.     chain = class_names_chain;
  1736.   else if (section == meth_var_names)
  1737.     chain = meth_var_names_chain;
  1738.   else if (section == meth_var_types)
  1739.     chain = meth_var_types_chain;
  1740.  
  1741.   for (; chain != 0; chain = TREE_VALUE (chain))
  1742.     if (TREE_VALUE (chain) == ident)
  1743.       return (TREE_PURPOSE (chain));
  1744.  
  1745.   abort ();
  1746.   return NULL_TREE;
  1747. }
  1748.  
  1749. /* Output references to all statically allocated objects.  Return the DECL
  1750.    for the array built.  */
  1751.  
  1752. static tree
  1753. generate_static_references ()
  1754. {
  1755.   tree decls = NULL_TREE, ident, decl_spec, expr_decl, expr = NULL_TREE;
  1756.   tree class_name, class, decl, instance, idecl, initlist;
  1757.   tree cl_chain, in_chain, type;
  1758.   int num_inst, num_class;
  1759.   char buf[256];
  1760.  
  1761.   if (flag_next_runtime)
  1762.     abort ();
  1763.  
  1764.   for (cl_chain = objc_static_instances, num_class = 0;
  1765.        cl_chain; cl_chain = TREE_CHAIN (cl_chain), num_class++)
  1766.     {
  1767.       for (num_inst = 0, in_chain = TREE_PURPOSE (cl_chain);
  1768.        in_chain; num_inst++, in_chain = TREE_CHAIN (in_chain));
  1769.  
  1770.       sprintf (buf, "_OBJC_STATIC_INSTANCES_%d", num_class);
  1771.       ident = get_identifier (buf);
  1772.  
  1773.       expr_decl = build_nt (ARRAY_REF, ident, NULL_TREE);
  1774.       decl_spec = tree_cons (NULL_TREE, build_pointer_type (void_type_node),
  1775.                  build_tree_list (NULL_TREE,
  1776.                           ridpointers[(int) RID_STATIC]));
  1777.       decl = start_decl (expr_decl, decl_spec, 1, NULL_TREE, NULL_TREE);
  1778.       DECL_CONTEXT (decl) = 0;
  1779.       DECL_ARTIFICIAL (decl) = 1;
  1780.  
  1781.       /* Output {class_name, ...}.  */
  1782.       class = TREE_VALUE (cl_chain);
  1783.       class_name = get_objc_string_decl (TYPE_NAME (class), class_names);
  1784.       initlist = build_tree_list (NULL_TREE,
  1785.                   build_unary_op (ADDR_EXPR, class_name, 1));
  1786.  
  1787.       /* Output {..., instance, ...}.  */
  1788.       for (in_chain = TREE_PURPOSE (cl_chain);
  1789.        in_chain; in_chain = TREE_CHAIN (in_chain))
  1790.     {
  1791.       expr = build_unary_op (ADDR_EXPR, TREE_VALUE (in_chain), 1);
  1792.       initlist = tree_cons (NULL_TREE, expr, initlist);
  1793.     }
  1794.  
  1795.       /* Output {..., NULL}.  */
  1796.       initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  1797.  
  1798.       expr = build_constructor (TREE_TYPE (decl), nreverse (initlist));
  1799.       finish_decl (decl, expr, NULL_TREE);
  1800.       TREE_USED (decl) = 1;
  1801.  
  1802.       type = build_array_type (build_pointer_type (void_type_node), 0);
  1803.       decl = build_decl (VAR_DECL, ident, type);
  1804.       make_decl_rtl (decl, 0, 1);
  1805.       TREE_USED (decl) = 1;
  1806.       decls
  1807.     = tree_cons (NULL_TREE, build_unary_op (ADDR_EXPR, decl, 1), decls);
  1808.     }
  1809.  
  1810.   decls = tree_cons (NULL_TREE, build_int_2 (0, 0), decls);
  1811.   ident = get_identifier ("_OBJC_STATIC_INSTANCES");
  1812.   expr_decl = build_nt (ARRAY_REF, ident, NULL_TREE);
  1813.   decl_spec = tree_cons (NULL_TREE, build_pointer_type (void_type_node),
  1814.              build_tree_list (NULL_TREE,
  1815.                       ridpointers[(int) RID_STATIC]));
  1816.   static_instances_decl
  1817.     = start_decl (expr_decl, decl_spec, 1, NULL_TREE, NULL_TREE);
  1818.   DECL_CONTEXT (static_instances_decl) = 0;
  1819.   DECL_ARTIFICIAL (static_instances_decl) = 1;
  1820.   end_temporary_allocation ();
  1821.   expr = build_constructor (TREE_TYPE (static_instances_decl),
  1822.                 nreverse (decls));
  1823.   finish_decl (static_instances_decl, expr, NULL_TREE);
  1824. }
  1825.  
  1826. /* Output all strings. */
  1827.  
  1828. static void
  1829. generate_strings ()
  1830. {
  1831.   tree sc_spec, decl_specs, expr_decl;
  1832.   tree chain, string_expr;
  1833.   tree string, decl;
  1834.  
  1835.   for (chain = class_names_chain; chain; chain = TREE_CHAIN (chain))
  1836.     {
  1837.       string = TREE_VALUE (chain);
  1838.       decl = TREE_PURPOSE (chain);
  1839.       sc_spec
  1840.     = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  1841.       decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], sc_spec);
  1842.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULL_TREE);
  1843.       decl = start_decl (expr_decl, decl_specs, 1, NULL_TREE, NULL_TREE);
  1844.       end_temporary_allocation ();
  1845.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1846.                      IDENTIFIER_POINTER (string));
  1847.       finish_decl (decl, string_expr, NULL_TREE);
  1848.     }
  1849.  
  1850.   for (chain = meth_var_names_chain; chain; chain = TREE_CHAIN (chain))
  1851.     {
  1852.       string = TREE_VALUE (chain);
  1853.       decl = TREE_PURPOSE (chain);
  1854.       sc_spec
  1855.     = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  1856.       decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], sc_spec);
  1857.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULL_TREE);
  1858.       decl = start_decl (expr_decl, decl_specs, 1, NULL_TREE, NULL_TREE);
  1859.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1860.                      IDENTIFIER_POINTER (string));
  1861.       finish_decl (decl, string_expr, NULL_TREE);
  1862.     }
  1863.  
  1864.   for (chain = meth_var_types_chain; chain; chain = TREE_CHAIN (chain))
  1865.     {
  1866.       string = TREE_VALUE (chain);
  1867.       decl = TREE_PURPOSE (chain);
  1868.       sc_spec
  1869.     = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  1870.       decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], sc_spec);
  1871.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULL_TREE);
  1872.       decl = start_decl (expr_decl, decl_specs, 1, NULL_TREE, NULL_TREE);
  1873.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1874.                 IDENTIFIER_POINTER (string));
  1875.       finish_decl (decl, string_expr, NULL_TREE);
  1876.     }
  1877. }
  1878.  
  1879. static tree
  1880. build_selector_reference_decl (name)
  1881.       tree name;
  1882. {
  1883.   tree decl, ident;
  1884.   char buf[256];
  1885.   static int idx = 0;
  1886.  
  1887.   sprintf (buf, "_OBJC_SELECTOR_REFERENCES_%d", idx++);
  1888.  
  1889.   push_obstacks_nochange ();
  1890.   end_temporary_allocation ();
  1891.  
  1892.   ident = get_identifier (buf);
  1893.  
  1894.   decl = build_decl (VAR_DECL, ident, selector_type);
  1895.   DECL_EXTERNAL (decl) = 1;
  1896.   TREE_PUBLIC (decl) = 1;
  1897.   TREE_USED (decl) = 1;
  1898.   TREE_READONLY (decl) = 1;
  1899.   DECL_ARTIFICIAL (decl) = 1;
  1900.   DECL_CONTEXT (decl) = 0;
  1901.  
  1902.   make_decl_rtl (decl, 0, 1);
  1903.   pushdecl_top_level (decl);
  1904.  
  1905.   pop_obstacks ();
  1906.  
  1907.   return decl;
  1908. }
  1909.  
  1910. /* Just a handy wrapper for add_objc_string.  */
  1911.  
  1912. static tree
  1913. build_selector (ident)
  1914.      tree ident;
  1915. {
  1916.   tree expr = add_objc_string (ident, meth_var_names);
  1917.   if (flag_typed_selectors)
  1918.     return expr;
  1919.   else
  1920.     return build_c_cast (selector_type, expr); /* cast! */
  1921. }
  1922.  
  1923. /* Synthesize the following expr: (char *)&_OBJC_STRINGS[<offset>]
  1924.    The cast stops the compiler from issuing the following message:
  1925.    grok.m: warning: initialization of non-const * pointer from const *
  1926.    grok.m: warning: initialization between incompatible pointer types.  */
  1927.  
  1928. static tree
  1929. build_msg_pool_reference (offset)
  1930.      int offset;
  1931. {
  1932.   tree expr = build_int_2 (offset, 0);
  1933.   tree cast;
  1934.  
  1935.   expr = build_array_ref (UOBJC_STRINGS_decl, expr);
  1936.   expr = build_unary_op (ADDR_EXPR, expr, 0);
  1937.  
  1938.   cast = build_tree_list (build_tree_list (NULL_TREE,
  1939.                        ridpointers[(int) RID_CHAR]),
  1940.               build1 (INDIRECT_REF, NULL_TREE, NULL_TREE));
  1941.   TREE_TYPE (expr) = groktypename (cast);
  1942.   return expr;
  1943. }
  1944.  
  1945. static tree
  1946. init_selector (offset)
  1947.      int offset;
  1948. {
  1949.   tree expr = build_msg_pool_reference (offset);
  1950.   TREE_TYPE (expr) = selector_type;
  1951.   return expr;
  1952. }
  1953.  
  1954. static void
  1955. build_selector_translation_table ()
  1956. {
  1957.   tree sc_spec, decl_specs;
  1958.   tree chain, initlist = NULL_TREE;
  1959.   int offset = 0;
  1960.   tree decl, var_decl, name;
  1961.  
  1962.   /* The corresponding pop_obstacks is in finish_decl,
  1963.      called at the end of this function.  */
  1964.   if (! flag_next_runtime)
  1965.     push_obstacks_nochange ();
  1966.  
  1967.   for (chain = sel_ref_chain; chain; chain = TREE_CHAIN (chain))
  1968.     {
  1969.       tree expr;
  1970.  
  1971.       expr = build_selector (TREE_VALUE (chain));
  1972.  
  1973.       if (flag_next_runtime)
  1974.     {
  1975.       name = DECL_NAME (TREE_PURPOSE (chain));
  1976.  
  1977.       sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_STATIC]);
  1978.  
  1979.       /* static SEL _OBJC_SELECTOR_REFERENCES_n = ...; */
  1980.       decl_specs = tree_cons (NULL_TREE, selector_type, sc_spec);
  1981.  
  1982.       var_decl = name;
  1983.  
  1984.       /* The `decl' that is returned from start_decl is the one that we
  1985.          forward declared in `build_selector_reference'  */
  1986.       decl = start_decl (var_decl, decl_specs, 1, NULL_TREE, NULL_TREE);
  1987.     }
  1988.  
  1989.       /* add one for the '\0' character */
  1990.       offset += IDENTIFIER_LENGTH (TREE_VALUE (chain)) + 1;
  1991.  
  1992.       if (flag_next_runtime)
  1993.     finish_decl (decl, expr, NULL_TREE);
  1994.       else 
  1995.     {
  1996.       if (flag_typed_selectors)
  1997.         {
  1998.           tree eltlist = NULL_TREE;
  1999.           tree encoding = get_proto_encoding (TREE_PURPOSE (chain));
  2000.           eltlist = tree_cons (NULL_TREE, expr, NULL_TREE);
  2001.           eltlist = tree_cons (NULL_TREE, encoding, eltlist);
  2002.           expr = build_constructor (objc_selector_template,
  2003.                     nreverse (eltlist));
  2004.         }
  2005.       initlist = tree_cons (NULL_TREE, expr, initlist);
  2006.       
  2007.     }
  2008.     }
  2009.  
  2010.   if (! flag_next_runtime)
  2011.     {
  2012.       /* Cause the variable and its initial value to be actually output.  */
  2013.       DECL_EXTERNAL (UOBJC_SELECTOR_TABLE_decl) = 0;
  2014.       TREE_STATIC (UOBJC_SELECTOR_TABLE_decl) = 1;
  2015.       /* NULL terminate the list and fix the decl for output. */
  2016.       initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  2017.       DECL_INITIAL (UOBJC_SELECTOR_TABLE_decl) = (tree) 1;
  2018.       initlist = build_constructor (TREE_TYPE (UOBJC_SELECTOR_TABLE_decl),
  2019.                     nreverse (initlist));
  2020.       finish_decl (UOBJC_SELECTOR_TABLE_decl, initlist, NULL_TREE);
  2021.       current_function_decl = NULL_TREE;
  2022.     }
  2023. }
  2024.  
  2025. static tree
  2026. get_proto_encoding (proto)
  2027.      tree proto;
  2028. {
  2029.   tree encoding;
  2030.   if (proto)
  2031.     {
  2032.       tree tmp_decl;
  2033.  
  2034.       if (! METHOD_ENCODING (proto))
  2035.     {
  2036.         tmp_decl = build_tmp_function_decl ();
  2037.         hack_method_prototype (proto, tmp_decl);
  2038.         encoding = encode_method_prototype (proto, tmp_decl);
  2039.         METHOD_ENCODING (proto) = encoding;
  2040.       }
  2041.       else
  2042.     encoding = METHOD_ENCODING (proto);
  2043.  
  2044.       return add_objc_string (encoding, meth_var_types);
  2045.     }
  2046.   else
  2047.     return build_int_2 (0, 0);
  2048. }
  2049.  
  2050. /* sel_ref_chain is a list whose "value" fields will be instances of
  2051.    identifier_node that represent the selector.  */
  2052.  
  2053. static tree
  2054. build_typed_selector_reference (ident, proto)
  2055.      tree ident, proto;
  2056. {
  2057.   tree *chain = &sel_ref_chain;
  2058.   tree expr;
  2059.   int index = 0;
  2060.  
  2061.   while (*chain)
  2062.     {
  2063.       if (TREE_PURPOSE (*chain) == ident && TREE_VALUE (*chain) == proto)
  2064.     goto return_at_index;
  2065.  
  2066.       index++;
  2067.       chain = &TREE_CHAIN (*chain);
  2068.     }
  2069.  
  2070.   *chain = perm_tree_cons (proto, ident, NULL_TREE);
  2071.  
  2072.  return_at_index:
  2073.   expr = build_unary_op (ADDR_EXPR,
  2074.              build_array_ref (UOBJC_SELECTOR_TABLE_decl,
  2075.                       build_int_2 (index, 0)),
  2076.              1);
  2077.   return build_c_cast (selector_type, expr);
  2078. }
  2079.  
  2080. static tree
  2081. build_selector_reference (ident)
  2082.      tree ident;
  2083. {
  2084.   tree *chain = &sel_ref_chain;
  2085.   tree expr;
  2086.   int index = 0;
  2087.  
  2088.   while (*chain)
  2089.     {
  2090.       if (TREE_VALUE (*chain) == ident)
  2091.     return (flag_next_runtime
  2092.         ? TREE_PURPOSE (*chain)
  2093.         : build_array_ref (UOBJC_SELECTOR_TABLE_decl,
  2094.                    build_int_2 (index, 0)));
  2095.  
  2096.       index++;
  2097.       chain = &TREE_CHAIN (*chain);
  2098.     }
  2099.  
  2100.   expr = build_selector_reference_decl (ident);
  2101.  
  2102.   *chain = perm_tree_cons (expr, ident, NULL_TREE);
  2103.  
  2104.   return (flag_next_runtime
  2105.       ? expr
  2106.       : build_array_ref (UOBJC_SELECTOR_TABLE_decl,
  2107.                  build_int_2 (index, 0)));
  2108. }
  2109.  
  2110. static tree
  2111. build_class_reference_decl (name)
  2112.       tree name;
  2113. {
  2114.   tree decl, ident;
  2115.   char buf[256];
  2116.   static int idx = 0;
  2117.  
  2118.   sprintf (buf, "_OBJC_CLASS_REFERENCES_%d", idx++);
  2119.  
  2120.   push_obstacks_nochange ();
  2121.   end_temporary_allocation ();
  2122.  
  2123.   ident = get_identifier (buf);
  2124.  
  2125.   decl = build_decl (VAR_DECL, ident, objc_class_type);
  2126.   DECL_EXTERNAL (decl) = 1;
  2127.   TREE_PUBLIC (decl) = 1;
  2128.   TREE_USED (decl) = 1;
  2129.   TREE_READONLY (decl) = 1;
  2130.   DECL_CONTEXT (decl) = 0;
  2131.   DECL_ARTIFICIAL (decl) = 1;
  2132.  
  2133.   make_decl_rtl (decl, 0, 1);
  2134.   pushdecl_top_level (decl);
  2135.  
  2136.   pop_obstacks ();
  2137.  
  2138.   return decl;
  2139. }
  2140.  
  2141. /* Create a class reference, but don't create a variable to reference
  2142.    it.  */
  2143.  
  2144. static void
  2145. add_class_reference (ident)
  2146.      tree ident;
  2147. {
  2148.   tree chain;
  2149.  
  2150.   if ((chain = cls_ref_chain))
  2151.     {
  2152.       tree tail;
  2153.       do
  2154.         {
  2155.       if (ident == TREE_VALUE (chain))
  2156.         return;
  2157.  
  2158.       tail = chain;
  2159.       chain = TREE_CHAIN (chain);
  2160.         }
  2161.       while (chain);
  2162.  
  2163.       /* Append to the end of the list */
  2164.       TREE_CHAIN (tail) = perm_tree_cons (NULL_TREE, ident, NULL_TREE);
  2165.     }
  2166.   else
  2167.     cls_ref_chain = perm_tree_cons (NULL_TREE, ident, NULL_TREE);
  2168. }
  2169.  
  2170. /* Get a class reference, creating it if necessary.  Also create the
  2171.    reference variable.  */
  2172.  
  2173. tree
  2174. get_class_reference (ident)
  2175.     tree ident;
  2176. {
  2177.   if (flag_next_runtime)
  2178.     {
  2179.       tree *chain;
  2180.       tree decl;
  2181.  
  2182.       for (chain = &cls_ref_chain; *chain; chain = &TREE_CHAIN (*chain))
  2183.     if (TREE_VALUE (*chain) == ident)
  2184.       {
  2185.         if (! TREE_PURPOSE (*chain))
  2186.           TREE_PURPOSE (*chain) = build_class_reference_decl (ident);
  2187.  
  2188.         return TREE_PURPOSE (*chain);
  2189.       }
  2190.  
  2191.       decl = build_class_reference_decl (ident);
  2192.       *chain = perm_tree_cons (decl, ident, NULL_TREE);
  2193.       return decl;
  2194.     }
  2195.   else
  2196.     {
  2197.       tree params;
  2198.  
  2199.       add_class_reference (ident);
  2200.  
  2201.       params = build_tree_list (NULL_TREE,
  2202.                 my_build_string (IDENTIFIER_LENGTH (ident) + 1,
  2203.                          IDENTIFIER_POINTER (ident)));
  2204.  
  2205.       assemble_external (objc_get_class_decl);
  2206.       return build_function_call (objc_get_class_decl, params);
  2207.     }
  2208. }
  2209.  
  2210. /* SEL_REFDEF_CHAIN is a list whose "value" fields will be instances
  2211.    of identifier_node that represent the selector. It returns the
  2212.    offset of the selector from the beginning of the _OBJC_STRINGS
  2213.    pool. This offset is typically used by init_selector during code
  2214.    generation.
  2215.  
  2216.    For each string section we have a chain which maps identifier nodes
  2217.    to decls for the strings. */
  2218.  
  2219. static tree
  2220. add_objc_string (ident, section)
  2221.      tree ident;
  2222.      enum string_section section;
  2223. {
  2224.   tree *chain, decl;
  2225.  
  2226.   if (section == class_names)
  2227.     chain = &class_names_chain;
  2228.   else if (section == meth_var_names)
  2229.     chain = &meth_var_names_chain;
  2230.   else if (section == meth_var_types)
  2231.     chain = &meth_var_types_chain;
  2232.  
  2233.   while (*chain)
  2234.     {
  2235.       if (TREE_VALUE (*chain) == ident)
  2236.     return build_unary_op (ADDR_EXPR, TREE_PURPOSE (*chain), 1);
  2237.  
  2238.       chain = &TREE_CHAIN (*chain);
  2239.     }
  2240.  
  2241.   decl = build_objc_string_decl (ident, section);
  2242.  
  2243.   *chain = perm_tree_cons (decl, ident, NULL_TREE);
  2244.  
  2245.   return build_unary_op (ADDR_EXPR, decl, 1);
  2246. }
  2247.  
  2248. static tree
  2249. build_objc_string_decl (name, section)
  2250.      tree name;
  2251.      enum string_section section;
  2252. {
  2253.   tree decl, ident;
  2254.   char buf[256];
  2255.   static int class_names_idx = 0;
  2256.   static int meth_var_names_idx = 0;
  2257.   static int meth_var_types_idx = 0;
  2258.  
  2259.   if (section == class_names)
  2260.     sprintf (buf, "_OBJC_CLASS_NAME_%d", class_names_idx++);
  2261.   else if (section == meth_var_names)
  2262.     sprintf (buf, "_OBJC_METH_VAR_NAME_%d", meth_var_names_idx++);
  2263.   else if (section == meth_var_types)
  2264.     sprintf (buf, "_OBJC_METH_VAR_TYPE_%d", meth_var_types_idx++);
  2265.  
  2266.   push_obstacks_nochange ();
  2267.   end_temporary_allocation ();
  2268.   ident = get_identifier (buf);
  2269.  
  2270.   decl = build_decl (VAR_DECL, ident, build_array_type (char_type_node, 0));
  2271.   DECL_EXTERNAL (decl) = 1;
  2272.   TREE_PUBLIC (decl) = 1;
  2273.   TREE_USED (decl) = 1;
  2274.   TREE_READONLY (decl) = 1;
  2275.   TREE_CONSTANT (decl) = 1;
  2276.   DECL_CONTEXT (decl) = 0;
  2277.   DECL_ARTIFICIAL (decl) = 1;
  2278.  
  2279.   make_decl_rtl (decl, 0, 1);
  2280.   pushdecl_top_level (decl);
  2281.  
  2282.   pop_obstacks ();
  2283.  
  2284.   return decl;
  2285. }
  2286.  
  2287.  
  2288. void
  2289. objc_declare_alias (alias_ident, class_ident)
  2290.      tree alias_ident;
  2291.      tree class_ident;
  2292. {
  2293.   if (!doing_objc_thang)
  2294.     objc_fatal ();
  2295.  
  2296.   if (is_class_name (class_ident) != class_ident)
  2297.     warning ("Cannot find class `%s'", IDENTIFIER_POINTER (class_ident));
  2298.   else if (is_class_name (alias_ident))
  2299.     warning ("Class `%s' already exists", IDENTIFIER_POINTER (alias_ident));
  2300.   else
  2301.     alias_chain = tree_cons (class_ident, alias_ident, alias_chain);
  2302. }
  2303.  
  2304. void
  2305. objc_declare_class (ident_list)
  2306.      tree ident_list;
  2307. {
  2308.   tree list;
  2309.  
  2310.   if (!doing_objc_thang)
  2311.     objc_fatal ();
  2312.  
  2313.   for (list = ident_list; list; list = TREE_CHAIN (list))
  2314.     {
  2315.       tree ident = TREE_VALUE (list);
  2316.       tree decl;
  2317.  
  2318.       if ((decl = lookup_name (ident)))
  2319.     {
  2320.       error ("`%s' redeclared as different kind of symbol",
  2321.           IDENTIFIER_POINTER (ident));
  2322.       error_with_decl (decl, "previous declaration of `%s'");
  2323.     }
  2324.  
  2325.       if (! is_class_name (ident))
  2326.         {
  2327.       tree record = xref_tag (RECORD_TYPE, ident);
  2328.       TREE_STATIC_TEMPLATE (record) = 1;
  2329.       class_chain = tree_cons (NULL_TREE, ident, class_chain);
  2330.     }
  2331.     }
  2332. }
  2333.  
  2334. tree
  2335. is_class_name (ident)
  2336.      tree ident;
  2337. {
  2338.   tree chain;
  2339.  
  2340.   if (lookup_interface (ident))
  2341.     return ident;
  2342.  
  2343.   for (chain = class_chain; chain; chain = TREE_CHAIN (chain))
  2344.     {
  2345.       if (ident == TREE_VALUE (chain))
  2346.     return ident;
  2347.     }
  2348.  
  2349.   for (chain = alias_chain; chain; chain = TREE_CHAIN (chain))
  2350.     {
  2351.       if (ident == TREE_VALUE (chain))
  2352.     return TREE_PURPOSE (chain);
  2353.     }
  2354.  
  2355.   return 0;
  2356. }
  2357.  
  2358. tree
  2359. lookup_interface (ident)
  2360.      tree ident;
  2361. {
  2362.   tree chain;
  2363.  
  2364.   for (chain = interface_chain; chain; chain = TREE_CHAIN (chain))
  2365.     {
  2366.       if (ident == CLASS_NAME (chain))
  2367.     return chain;
  2368.     }
  2369.   return NULL_TREE;
  2370. }
  2371.  
  2372. static tree
  2373. objc_copy_list (list, head)
  2374.      tree list;
  2375.      tree *head;
  2376. {
  2377.   tree newlist = NULL_TREE, tail = NULL_TREE;
  2378.  
  2379.   while (list)
  2380.     {
  2381.       tail = copy_node (list);
  2382.  
  2383.       /* The following statement fixes a bug when inheriting instance
  2384.      variables that are declared to be bitfields. finish_struct
  2385.      expects to find the width of the bitfield in DECL_INITIAL,
  2386.      which it nulls out after processing the decl of the super
  2387.      class...rather than change the way finish_struct works (which
  2388.      is risky), I create the situation it expects...s.naroff
  2389.      (7/23/89).  */
  2390.  
  2391.       if (DECL_BIT_FIELD (tail) && DECL_INITIAL (tail) == 0)
  2392.     DECL_INITIAL (tail) = build_int_2 (DECL_FIELD_SIZE (tail), 0);
  2393.  
  2394.       newlist = chainon (newlist, tail);
  2395.       list = TREE_CHAIN (list);
  2396.     }
  2397.  
  2398.   *head = newlist;
  2399.   return tail;
  2400. }
  2401.  
  2402. /* Used by: build_private_template, get_class_ivars, and
  2403.    continue_class.  COPY is 1 when called from @defs.  In this case
  2404.    copy all fields.  Otherwise don't copy leaf ivars since we rely on
  2405.    them being side-effected exactly once by finish_struct.  */
  2406.  
  2407. static tree
  2408. build_ivar_chain (interface, copy)
  2409.      tree interface;
  2410.      int copy;
  2411. {
  2412.   tree my_name, super_name, ivar_chain;
  2413.  
  2414.   my_name = CLASS_NAME (interface);
  2415.   super_name = CLASS_SUPER_NAME (interface);
  2416.  
  2417.   /* Possibly copy leaf ivars.  */
  2418.   if (copy)
  2419.     objc_copy_list (CLASS_IVARS (interface), &ivar_chain);
  2420.   else
  2421.     ivar_chain = CLASS_IVARS (interface);
  2422.  
  2423.   while (super_name)
  2424.     {
  2425.       tree op1;
  2426.       tree super_interface = lookup_interface (super_name);
  2427.  
  2428.       if (!super_interface)
  2429.         {
  2430.       /* fatal did not work with 2 args...should fix */
  2431.       error ("Cannot find interface declaration for `%s', superclass of `%s'",
  2432.          IDENTIFIER_POINTER (super_name),
  2433.          IDENTIFIER_POINTER (my_name));
  2434.       exit (FATAL_EXIT_CODE);
  2435.         }
  2436.  
  2437.       if (super_interface == interface)
  2438.         {
  2439.           fatal ("Circular inheritance in interface declaration for `%s'",
  2440.                  IDENTIFIER_POINTER (super_name));
  2441.         }
  2442.  
  2443.       interface = super_interface;
  2444.       my_name = CLASS_NAME (interface);
  2445.       super_name = CLASS_SUPER_NAME (interface);
  2446.  
  2447.       op1 = CLASS_IVARS (interface);
  2448.       if (op1)
  2449.         {
  2450.       tree head, tail = objc_copy_list (op1, &head);
  2451.  
  2452.       /* Prepend super class ivars...make a copy of the list, we
  2453.          do not want to alter the original.  */
  2454.       TREE_CHAIN (tail) = ivar_chain;
  2455.       ivar_chain = head;
  2456.         }
  2457.     }
  2458.   return ivar_chain;
  2459. }
  2460.  
  2461. /* struct <classname> {
  2462.      struct objc_class *isa;
  2463.      ...
  2464.    };  */
  2465.  
  2466. static tree
  2467. build_private_template (class)
  2468.      tree class;
  2469. {
  2470.   tree ivar_context;
  2471.  
  2472.   if (CLASS_STATIC_TEMPLATE (class))
  2473.     {
  2474.       uprivate_record = CLASS_STATIC_TEMPLATE (class);
  2475.       ivar_context = TYPE_FIELDS (CLASS_STATIC_TEMPLATE (class));
  2476.     }
  2477.   else
  2478.     {
  2479.       uprivate_record = start_struct (RECORD_TYPE, CLASS_NAME (class));
  2480.  
  2481.       ivar_context = build_ivar_chain (class, 0);
  2482.  
  2483.       finish_struct (uprivate_record, ivar_context, NULL_TREE);
  2484.  
  2485.       CLASS_STATIC_TEMPLATE (class) = uprivate_record;
  2486.  
  2487.       /* mark this record as class template - for class type checking */
  2488.       TREE_STATIC_TEMPLATE (uprivate_record) = 1;
  2489.     }
  2490.  
  2491.   instance_type
  2492.     = groktypename (build_tree_list (build_tree_list (NULL_TREE,
  2493.                               uprivate_record),
  2494.                      build1 (INDIRECT_REF, NULL_TREE,
  2495.                          NULL_TREE)));
  2496.  
  2497.   return ivar_context;
  2498. }
  2499.  
  2500. /* Begin code generation for protocols... */
  2501.  
  2502. /* struct objc_protocol {
  2503.      char *protocol_name;
  2504.      struct objc_protocol **protocol_list;
  2505.      struct objc_method_desc *instance_methods;
  2506.      struct objc_method_desc *class_methods;
  2507.    };  */
  2508.  
  2509. static tree
  2510. build_protocol_template ()
  2511. {
  2512.   tree decl_specs, field_decl, field_decl_chain;
  2513.   tree template;
  2514.  
  2515.   template = start_struct (RECORD_TYPE, get_identifier (UTAG_PROTOCOL));
  2516.  
  2517.   /* struct objc_class *isa; */
  2518.  
  2519.   decl_specs = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE,
  2520.                     get_identifier (UTAG_CLASS)));
  2521.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("isa"));
  2522.   field_decl
  2523.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2524.   field_decl_chain = field_decl;
  2525.  
  2526.   /* char *protocol_name; */
  2527.  
  2528.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  2529.   field_decl
  2530.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("protocol_name"));
  2531.   field_decl
  2532.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2533.   chainon (field_decl_chain, field_decl);
  2534.  
  2535.   /* struct objc_protocol **protocol_list; */
  2536.  
  2537.   decl_specs = build_tree_list (NULL_TREE, template);
  2538.   field_decl
  2539.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("protocol_list"));
  2540.   field_decl = build1 (INDIRECT_REF, NULL_TREE, field_decl);
  2541.   field_decl
  2542.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2543.   chainon (field_decl_chain, field_decl);
  2544.  
  2545.   /* struct objc_method_list *instance_methods; */
  2546.  
  2547.   decl_specs
  2548.     = build_tree_list (NULL_TREE,
  2549.                xref_tag (RECORD_TYPE,
  2550.                  get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  2551.   field_decl
  2552.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("instance_methods"));
  2553.   field_decl
  2554.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2555.   chainon (field_decl_chain, field_decl);
  2556.  
  2557.   /* struct objc_method_list *class_methods; */
  2558.  
  2559.   decl_specs
  2560.     = build_tree_list (NULL_TREE,
  2561.                xref_tag (RECORD_TYPE,
  2562.                  get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  2563.   field_decl
  2564.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("class_methods"));
  2565.   field_decl
  2566.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2567.   chainon (field_decl_chain, field_decl);
  2568.  
  2569.   return finish_struct (template, field_decl_chain, NULL_TREE);
  2570. }
  2571.  
  2572. static tree
  2573. build_descriptor_table_initializer (type, entries)
  2574.      tree type;
  2575.      tree entries;
  2576. {
  2577.   tree initlist = NULL_TREE;
  2578.  
  2579.   do
  2580.     {
  2581.       tree eltlist = NULL_TREE;
  2582.  
  2583.       eltlist
  2584.     = tree_cons (NULL_TREE,
  2585.              build_selector (METHOD_SEL_NAME (entries)), NULL_TREE);
  2586.       eltlist
  2587.     = tree_cons (NULL_TREE,
  2588.              add_objc_string (METHOD_ENCODING (entries),
  2589.                       meth_var_types),
  2590.              eltlist);
  2591.  
  2592.       initlist
  2593.     = tree_cons (NULL_TREE,
  2594.              build_constructor (type, nreverse (eltlist)), initlist);
  2595.  
  2596.       entries = TREE_CHAIN (entries);
  2597.     }
  2598.   while (entries);
  2599.  
  2600.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  2601. }
  2602.  
  2603. /* struct objc_method_prototype_list {
  2604.      int count;
  2605.      struct objc_method_prototype {
  2606.      SEL name;
  2607.      char *types;
  2608.      } list[1];
  2609.    };  */
  2610.  
  2611. static tree
  2612. build_method_prototype_list_template (list_type, size)
  2613.      tree list_type;
  2614.      int size;
  2615. {
  2616.   tree objc_ivar_list_record;
  2617.   tree decl_specs, field_decl, field_decl_chain;
  2618.  
  2619.   /* Generate an unnamed struct definition. */
  2620.  
  2621.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULL_TREE);
  2622.  
  2623.   /* int method_count; */
  2624.  
  2625.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_INT]);
  2626.   field_decl = get_identifier ("method_count");
  2627.  
  2628.   field_decl
  2629.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2630.   field_decl_chain = field_decl;
  2631.  
  2632.   /* struct objc_method method_list[]; */
  2633.  
  2634.   decl_specs = build_tree_list (NULL_TREE, list_type);
  2635.   field_decl = build_nt (ARRAY_REF, get_identifier ("method_list"),
  2636.              build_int_2 (size, 0));
  2637.  
  2638.   field_decl
  2639.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2640.   chainon (field_decl_chain, field_decl);
  2641.  
  2642.   finish_struct (objc_ivar_list_record, field_decl_chain, NULL_TREE);
  2643.  
  2644.   return objc_ivar_list_record;
  2645. }
  2646.  
  2647. static tree
  2648. build_method_prototype_template ()
  2649. {
  2650.   tree proto_record;
  2651.   tree decl_specs, field_decl, field_decl_chain;
  2652.  
  2653.   proto_record
  2654.     = start_struct (RECORD_TYPE, get_identifier (UTAG_METHOD_PROTOTYPE));
  2655.  
  2656. #ifdef OBJC_INT_SELECTORS
  2657.   /* unsigned int _cmd; */
  2658.   decl_specs
  2659.     = tree_cons (NULL_TREE, ridpointers[(int) RID_UNSIGNED], NULL_TREE);
  2660.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_INT], decl_specs);
  2661.   field_decl = get_identifier ("_cmd");
  2662. #else /* OBJC_INT_SELECTORS */
  2663.   /* struct objc_selector *_cmd; */
  2664.   decl_specs = tree_cons (NULL_TREE, xref_tag (RECORD_TYPE,
  2665.                   get_identifier (TAG_SELECTOR)), NULL_TREE);
  2666.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("_cmd"));
  2667. #endif /* OBJC_INT_SELECTORS */
  2668.  
  2669.   field_decl
  2670.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2671.   field_decl_chain = field_decl;
  2672.  
  2673.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], NULL_TREE);
  2674.   field_decl
  2675.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("method_types"));
  2676.   field_decl
  2677.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  2678.   chainon (field_decl_chain, field_decl);
  2679.  
  2680.   finish_struct (proto_record, field_decl_chain, NULL_TREE);
  2681.  
  2682.   return proto_record;
  2683. }
  2684.  
  2685. /* True if last call to forwarding_offset yielded a register offset. */
  2686. static int offset_is_register;
  2687.  
  2688. static int
  2689. forwarding_offset (parm)
  2690.       tree parm;
  2691. {
  2692.   int offset_in_bytes;
  2693.  
  2694.   if (GET_CODE (DECL_INCOMING_RTL (parm)) == MEM)
  2695.     {
  2696.       rtx addr = XEXP (DECL_INCOMING_RTL (parm), 0);
  2697.  
  2698.       /* ??? Here we assume that the parm address is indexed
  2699.       off the frame pointer or arg pointer.
  2700.       If that is not true, we produce meaningless results,
  2701.       but do not crash.  */
  2702.       if (GET_CODE (addr) == PLUS
  2703.       && GET_CODE (XEXP (addr, 1)) == CONST_INT)
  2704.     offset_in_bytes = INTVAL (XEXP (addr, 1));
  2705.       else
  2706.     offset_in_bytes = 0;
  2707.  
  2708.       offset_in_bytes += OBJC_FORWARDING_STACK_OFFSET;
  2709.       offset_is_register = 0;
  2710.     }
  2711.   else if (GET_CODE (DECL_INCOMING_RTL (parm)) == REG)
  2712.     {
  2713.       int regno = REGNO (DECL_INCOMING_RTL (parm));
  2714.       offset_in_bytes = apply_args_register_offset (regno);
  2715.       offset_is_register = 1;
  2716.     }
  2717.   else
  2718.     return 0;
  2719.  
  2720.   /* This is the case where the parm is passed as an int or double
  2721.      and it is converted to a char, short or float and stored back
  2722.      in the parmlist.  In this case, describe the parm
  2723.      with the variable's declared type, and adjust the address
  2724.      if the least significant bytes (which we are using) are not
  2725.      the first ones.  */
  2726.   if (BYTES_BIG_ENDIAN && TREE_TYPE (parm) != DECL_ARG_TYPE (parm))
  2727.     offset_in_bytes += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parm)))
  2728.             - GET_MODE_SIZE (GET_MODE (DECL_RTL (parm))));
  2729.  
  2730.   return offset_in_bytes;
  2731. }
  2732.  
  2733. static tree
  2734. encode_method_prototype (method_decl, func_decl)
  2735.       tree method_decl;
  2736.       tree func_decl;
  2737. {
  2738.   tree parms;
  2739.   int stack_size, i;
  2740.   tree user_args;
  2741.   int max_parm_end = 0;
  2742.   char buf[40];
  2743.   tree result;
  2744.  
  2745.   /* ONEWAY and BYCOPY, for remote object are the only method qualifiers. */
  2746.   encode_type_qualifiers (TREE_PURPOSE (TREE_TYPE (method_decl)));
  2747.  
  2748.   /* C type. */
  2749.   encode_type (TREE_TYPE (TREE_TYPE (func_decl)),
  2750.            obstack_object_size (&util_obstack),
  2751.            OBJC_ENCODE_INLINE_DEFS);
  2752.  
  2753.   /* Stack size. */
  2754.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  2755.        parms = TREE_CHAIN (parms))
  2756.     {
  2757.       int parm_end = (forwarding_offset (parms)
  2758.               + (TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (parms)))
  2759.              / BITS_PER_UNIT));
  2760.  
  2761.       if (!offset_is_register && max_parm_end < parm_end)
  2762.     max_parm_end = parm_end;
  2763.     }
  2764.  
  2765.   stack_size = max_parm_end - OBJC_FORWARDING_MIN_OFFSET;
  2766.  
  2767.   sprintf (buf, "%d", stack_size);
  2768.   obstack_grow (&util_obstack, buf, strlen (buf));
  2769.  
  2770.   user_args = METHOD_SEL_ARGS (method_decl);
  2771.  
  2772.   /* Argument types. */
  2773.   for (parms = DECL_ARGUMENTS (func_decl), i = 0; parms;
  2774.        parms = TREE_CHAIN (parms), i++)
  2775.     {
  2776.       /* Process argument qualifiers for user supplied arguments. */
  2777.       if (i > 1)
  2778.         {
  2779.       encode_type_qualifiers (TREE_PURPOSE (TREE_TYPE (user_args)));
  2780.       user_args = TREE_CHAIN (user_args);
  2781.      }
  2782.  
  2783.       /* Type. */
  2784.       encode_type (TREE_TYPE (parms),
  2785.            obstack_object_size (&util_obstack),
  2786.            OBJC_ENCODE_INLINE_DEFS);
  2787.  
  2788.       /* Compute offset. */
  2789.       sprintf (buf, "%d", forwarding_offset (parms));
  2790.  
  2791.       /* Indicate register. */
  2792.       if (offset_is_register)
  2793.     obstack_1grow (&util_obstack, '+');
  2794.       
  2795.       obstack_grow (&util_obstack, buf, strlen (buf));
  2796.     }
  2797.  
  2798.   obstack_1grow (&util_obstack, '\0');
  2799.   result = get_identifier (obstack_finish (&util_obstack));
  2800.   obstack_free (&util_obstack, util_firstobj);
  2801.   return result;
  2802. }
  2803.  
  2804. static tree
  2805. generate_descriptor_table (type, name, size, list, proto)
  2806.      tree type;
  2807.      char *name;
  2808.      int size;
  2809.      tree list;
  2810.      tree proto;
  2811. {
  2812.   tree sc_spec, decl_specs, decl, initlist;
  2813.  
  2814.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  2815.   decl_specs = tree_cons (NULL_TREE, type, sc_spec);
  2816.  
  2817.   decl = start_decl (synth_id_with_class_suffix (name, proto),
  2818.                 decl_specs, 1, NULL_TREE, NULL_TREE);
  2819.  
  2820.   initlist = build_tree_list (NULL_TREE, build_int_2 (size, 0));
  2821.   initlist = tree_cons (NULL_TREE, list, initlist);
  2822.  
  2823.   finish_decl (decl, build_constructor (type, nreverse (initlist)),
  2824.            NULL_TREE);
  2825.  
  2826.   return decl;
  2827. }
  2828.  
  2829. static void
  2830. generate_method_descriptors (protocol)    /* generate_dispatch_tables */
  2831.   tree protocol;
  2832. {
  2833.   static tree objc_method_prototype_template;
  2834.   tree initlist, chain, method_list_template;
  2835.   tree cast, variable_length_type;
  2836.   int size;
  2837.  
  2838.   if (!objc_method_prototype_template)
  2839.     objc_method_prototype_template = build_method_prototype_template ();
  2840.  
  2841.   cast = build_tree_list (build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE,
  2842.                 get_identifier (UTAG_METHOD_PROTOTYPE_LIST))),
  2843.               NULL_TREE);
  2844.   variable_length_type = groktypename (cast);
  2845.  
  2846.   chain = PROTOCOL_CLS_METHODS (protocol);
  2847.   if (chain)
  2848.     {
  2849.       size = list_length (chain);
  2850.  
  2851.       method_list_template
  2852.     = build_method_prototype_list_template (objc_method_prototype_template,
  2853.                         size);
  2854.  
  2855.       initlist 
  2856.     = build_descriptor_table_initializer (objc_method_prototype_template,
  2857.                           chain);
  2858.  
  2859.       UOBJC_CLASS_METHODS_decl
  2860.     = generate_descriptor_table (method_list_template,
  2861.                      "_OBJC_PROTOCOL_CLASS_METHODS",
  2862.                      size, initlist, protocol);
  2863.       TREE_TYPE (UOBJC_CLASS_METHODS_decl) = variable_length_type;
  2864.     }
  2865.   else
  2866.     UOBJC_CLASS_METHODS_decl = 0;
  2867.  
  2868.   chain = PROTOCOL_NST_METHODS (protocol);
  2869.   if (chain)
  2870.     {
  2871.       size = list_length (chain);
  2872.  
  2873.       method_list_template
  2874.     = build_method_prototype_list_template (objc_method_prototype_template,
  2875.                         size);
  2876.       initlist
  2877.     = build_descriptor_table_initializer (objc_method_prototype_template,
  2878.                           chain);
  2879.  
  2880.       UOBJC_INSTANCE_METHODS_decl
  2881.     = generate_descriptor_table (method_list_template,
  2882.                      "_OBJC_PROTOCOL_INSTANCE_METHODS",
  2883.                      size, initlist, protocol);
  2884.       TREE_TYPE (UOBJC_INSTANCE_METHODS_decl) = variable_length_type;
  2885.     }
  2886.   else
  2887.     UOBJC_INSTANCE_METHODS_decl = 0;
  2888. }
  2889.  
  2890. static tree
  2891. build_tmp_function_decl ()
  2892. {
  2893.   tree decl_specs, expr_decl, parms;
  2894.   static int xxx = 0;
  2895.   char buffer[80];
  2896.  
  2897.   /* struct objc_object *objc_xxx (id, SEL, ...); */
  2898.   pushlevel (0);
  2899.   decl_specs = build_tree_list (NULL_TREE, objc_object_reference);
  2900.   /* Amiga-specific support for explicit register specification for
  2901.      parameters. KI 7.04.1996 */
  2902.   push_parm_decl (build_tree_list
  2903.           (build_tree_list (decl_specs,
  2904.                     build1 (INDIRECT_REF, NULL_TREE,
  2905.                         NULL_TREE)),
  2906.            build_tree_list (NULL_TREE, NULL_TREE)), NULL_TREE);
  2907.  
  2908.   decl_specs = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE,
  2909.                       get_identifier (TAG_SELECTOR)));
  2910.   expr_decl = build1 (INDIRECT_REF, NULL_TREE, NULL_TREE);
  2911.  
  2912.   /* Amiga-specific support for explicit register specification for
  2913.      parameters. KI 7.04.1996 */
  2914.   push_parm_decl (build_tree_list (build_tree_list (decl_specs, expr_decl),
  2915.                    build_tree_list (NULL_TREE, NULL_TREE)), NULL_TREE);
  2916.   parms = get_parm_info (0);
  2917.   poplevel (0, 0, 0);
  2918.  
  2919.   decl_specs = build_tree_list (NULL_TREE, objc_object_reference);
  2920.   sprintf (buffer, "__objc_tmp_%x", xxx++);
  2921.   expr_decl = build_nt (CALL_EXPR, get_identifier (buffer), parms, NULL_TREE);
  2922.   expr_decl = build1 (INDIRECT_REF, NULL_TREE, expr_decl);
  2923.  
  2924.   return define_decl (expr_decl, decl_specs);
  2925. }
  2926.  
  2927. static void
  2928. hack_method_prototype (nst_methods, tmp_decl)
  2929.      tree nst_methods;
  2930.      tree tmp_decl;
  2931. {
  2932.   tree parms;
  2933.   tree parm;
  2934.  
  2935.   /* Hack to avoid problem with static typing of self arg. */
  2936.   TREE_SET_CODE (nst_methods, CLASS_METHOD_DECL);
  2937.   start_method_def (nst_methods);
  2938.   TREE_SET_CODE (nst_methods, INSTANCE_METHOD_DECL);
  2939.  
  2940.   if (METHOD_ADD_ARGS (nst_methods) == (tree) 1)
  2941.     parms = get_parm_info (0); /* we have a `, ...' */
  2942.   else
  2943.     parms = get_parm_info (1); /* place a `void_at_end' */
  2944.  
  2945.   poplevel (0, 0, 0);    /* Must be called BEFORE start_function.  */
  2946.  
  2947.   /* Usually called from store_parm_decls -> init_function_start.  */
  2948.  
  2949.   DECL_ARGUMENTS (tmp_decl) = TREE_PURPOSE (parms);
  2950.   current_function_decl = tmp_decl;
  2951.  
  2952.   {
  2953.     /* Code taken from start_function.  */
  2954.     tree restype = TREE_TYPE (TREE_TYPE (tmp_decl));
  2955.     /* Promote the value to int before returning it.  */
  2956.     if (TREE_CODE (restype) == INTEGER_TYPE
  2957.     && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node))
  2958.       restype = integer_type_node;
  2959.     DECL_RESULT (tmp_decl) = build_decl (RESULT_DECL, 0, restype);
  2960.   }
  2961.  
  2962.   for (parm = DECL_ARGUMENTS (tmp_decl); parm; parm = TREE_CHAIN (parm))
  2963.     DECL_CONTEXT (parm) = tmp_decl;
  2964.  
  2965.   init_function_start (tmp_decl, "objc-act", 0);
  2966.  
  2967.   /* Typically called from expand_function_start for function definitions.  */
  2968.   assign_parms (tmp_decl, 0);
  2969.  
  2970.   /* install return type */
  2971.   TREE_TYPE (TREE_TYPE (tmp_decl)) = groktypename (TREE_TYPE (nst_methods));
  2972.  
  2973. }
  2974.  
  2975. static void
  2976. generate_protocol_references (plist)
  2977.      tree plist;
  2978. {
  2979.   tree lproto;
  2980.  
  2981.   /* Forward declare protocols referenced. */
  2982.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  2983.     {
  2984.       tree proto = TREE_VALUE (lproto);
  2985.  
  2986.       if (TREE_CODE (proto) == PROTOCOL_INTERFACE_TYPE
  2987.       && PROTOCOL_NAME (proto))
  2988.     {
  2989.           if (! PROTOCOL_FORWARD_DECL (proto))
  2990.             build_protocol_reference (proto);
  2991.  
  2992.           if (PROTOCOL_LIST (proto))
  2993.             generate_protocol_references (PROTOCOL_LIST (proto));
  2994.         }
  2995.     }
  2996. }
  2997.  
  2998. static void
  2999. generate_protocols ()
  3000. {
  3001.   tree p, tmp_decl, encoding;
  3002.   tree sc_spec, decl_specs, decl;
  3003.   tree initlist, protocol_name_expr, refs_decl, refs_expr;
  3004.   tree cast_type2 = 0;
  3005.  
  3006.   tmp_decl = build_tmp_function_decl ();
  3007.  
  3008.   if (! objc_protocol_template)
  3009.     objc_protocol_template = build_protocol_template ();
  3010.  
  3011.   /* If a protocol was directly referenced, pull in indirect references.  */
  3012.   for (p = protocol_chain; p; p = TREE_CHAIN (p))
  3013.     if (PROTOCOL_FORWARD_DECL (p) && PROTOCOL_LIST (p))
  3014.       generate_protocol_references (PROTOCOL_LIST (p));
  3015.  
  3016.   for (p = protocol_chain; p; p = TREE_CHAIN (p))
  3017.     {
  3018.       tree nst_methods = PROTOCOL_NST_METHODS (p);
  3019.       tree cls_methods = PROTOCOL_CLS_METHODS (p);
  3020.  
  3021.       /* If protocol wasn't referenced, don't generate any code.  */
  3022.       if (! PROTOCOL_FORWARD_DECL (p))
  3023.     continue;
  3024.  
  3025.       /* Make sure we link in the Protocol class. */
  3026.       add_class_reference (get_identifier (PROTOCOL_OBJECT_CLASS_NAME));
  3027.  
  3028.       while (nst_methods)
  3029.     {
  3030.       if (! METHOD_ENCODING (nst_methods))
  3031.         {
  3032.           hack_method_prototype (nst_methods, tmp_decl);
  3033.           encoding = encode_method_prototype (nst_methods, tmp_decl);
  3034.           METHOD_ENCODING (nst_methods) = encoding;
  3035.         }
  3036.       nst_methods = TREE_CHAIN (nst_methods);
  3037.     }
  3038.  
  3039.       while (cls_methods)
  3040.     {
  3041.       if (! METHOD_ENCODING (cls_methods))
  3042.         {
  3043.           hack_method_prototype (cls_methods, tmp_decl);
  3044.           encoding = encode_method_prototype (cls_methods, tmp_decl);
  3045.           METHOD_ENCODING (cls_methods) = encoding;
  3046.         }
  3047.  
  3048.       cls_methods = TREE_CHAIN (cls_methods);
  3049.     }
  3050.       generate_method_descriptors (p);
  3051.  
  3052.       if (PROTOCOL_LIST (p))
  3053.     refs_decl = generate_protocol_list (p);
  3054.       else
  3055.     refs_decl = 0;
  3056.  
  3057.       /* static struct objc_protocol _OBJC_PROTOCOL_<mumble>; */
  3058.  
  3059.       sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC],
  3060.                NULL_TREE);
  3061.       decl_specs = tree_cons (NULL_TREE, objc_protocol_template, sc_spec);
  3062.  
  3063.       decl = start_decl (synth_id_with_class_suffix ("_OBJC_PROTOCOL", p),
  3064.              decl_specs, 1, NULL_TREE, NULL_TREE);
  3065.  
  3066.       protocol_name_expr = add_objc_string (PROTOCOL_NAME (p), class_names);
  3067.  
  3068.       if (refs_decl)
  3069.     {
  3070.       if (!cast_type2)
  3071.         cast_type2
  3072.           = groktypename
  3073.         (build_tree_list (build_tree_list (NULL_TREE,
  3074.                            objc_protocol_template),
  3075.                   build1 (INDIRECT_REF, NULL_TREE,
  3076.                       build1 (INDIRECT_REF, NULL_TREE,
  3077.                           NULL_TREE))));
  3078.  
  3079.       refs_expr = build_unary_op (ADDR_EXPR, refs_decl, 0);
  3080.       TREE_TYPE (refs_expr) = cast_type2;
  3081.     }
  3082.       else
  3083.     refs_expr = build_int_2 (0, 0);
  3084.  
  3085.       /* UOBJC_INSTANCE_METHODS_decl/UOBJC_CLASS_METHODS_decl are set
  3086.      by generate_method_descriptors, which is called above.  */
  3087.       initlist = build_protocol_initializer (TREE_TYPE (decl),
  3088.                          protocol_name_expr, refs_expr,
  3089.                          UOBJC_INSTANCE_METHODS_decl,
  3090.                          UOBJC_CLASS_METHODS_decl);
  3091.       finish_decl (decl, initlist, NULL_TREE);
  3092.  
  3093.       /* Mark the decl as used to avoid "defined but not used" warning. */
  3094.       TREE_USED (decl) = 1;
  3095.     }
  3096. }
  3097.  
  3098. static tree
  3099. build_protocol_initializer (type, protocol_name, protocol_list,
  3100.                 instance_methods, class_methods)
  3101.      tree type;
  3102.      tree protocol_name;
  3103.      tree protocol_list;
  3104.      tree instance_methods;
  3105.      tree class_methods;
  3106. {
  3107.   tree initlist = NULL_TREE, expr;
  3108.   static tree cast_type = 0;
  3109.  
  3110.   if (!cast_type)
  3111.     cast_type
  3112.       = groktypename
  3113.     (build_tree_list
  3114.      (build_tree_list (NULL_TREE,
  3115.                xref_tag (RECORD_TYPE,
  3116.                      get_identifier (UTAG_CLASS))),
  3117.       build1 (INDIRECT_REF, NULL_TREE, NULL_TREE)));
  3118.  
  3119.   /* Filling the "isa" in with one allows the runtime system to
  3120.      detect that the version change...should remove before final release.  */
  3121.  
  3122.   expr = build_int_2 (PROTOCOL_VERSION, 0);
  3123.   TREE_TYPE (expr) = cast_type;
  3124.   initlist = tree_cons (NULL_TREE, expr, initlist);
  3125.   initlist = tree_cons (NULL_TREE, protocol_name, initlist);
  3126.   initlist = tree_cons (NULL_TREE, protocol_list, initlist);
  3127.  
  3128.   if (!instance_methods)
  3129.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  3130.   else
  3131.     {
  3132.       expr = build_unary_op (ADDR_EXPR, instance_methods, 0);
  3133.       initlist = tree_cons (NULL_TREE, expr, initlist);
  3134.     }
  3135.  
  3136.   if (!class_methods)
  3137.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  3138.   else
  3139.     {
  3140.       expr = build_unary_op (ADDR_EXPR, class_methods, 0);
  3141.       initlist = tree_cons (NULL_TREE, expr, initlist);
  3142.     }
  3143.  
  3144.   return build_constructor (type, nreverse (initlist));
  3145. }
  3146.  
  3147. /* struct objc_category {
  3148.      char *category_name;
  3149.      char *class_name;
  3150.      struct objc_method_list *instance_methods;
  3151.      struct objc_method_list *class_methods;
  3152.      struct objc_protocol_list *protocols;
  3153.    };   */
  3154.  
  3155. static void
  3156. build_category_template ()
  3157. {
  3158.   tree decl_specs, field_decl, field_decl_chain;
  3159.  
  3160.   objc_category_template = start_struct (RECORD_TYPE,
  3161.                      get_identifier (UTAG_CATEGORY));
  3162.   /* char *category_name; */
  3163.  
  3164.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3165.   field_decl
  3166.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("category_name"));
  3167.   field_decl
  3168.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3169.   field_decl_chain = field_decl;
  3170.  
  3171.   /* char *class_name; */
  3172.  
  3173.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3174.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("class_name"));
  3175.   field_decl
  3176.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3177.   chainon (field_decl_chain, field_decl);
  3178.  
  3179.   /* struct objc_method_list *instance_methods; */
  3180.  
  3181.   decl_specs = build_tree_list (NULL_TREE,
  3182.                 xref_tag (RECORD_TYPE,
  3183.                       get_identifier (UTAG_METHOD_LIST)));
  3184.   field_decl
  3185.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("instance_methods"));
  3186.   field_decl
  3187.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3188.   chainon (field_decl_chain, field_decl);
  3189.  
  3190.   /* struct objc_method_list *class_methods; */
  3191.  
  3192.   decl_specs = build_tree_list (NULL_TREE,
  3193.                 xref_tag (RECORD_TYPE,
  3194.                       get_identifier (UTAG_METHOD_LIST)));
  3195.   field_decl
  3196.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("class_methods"));
  3197.   field_decl
  3198.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3199.   chainon (field_decl_chain, field_decl);
  3200.  
  3201.   /* struct objc_protocol **protocol_list; */
  3202.  
  3203.   decl_specs = build_tree_list (NULL_TREE,
  3204.                 xref_tag (RECORD_TYPE,
  3205.                       get_identifier (UTAG_PROTOCOL)));
  3206.   field_decl
  3207.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("protocol_list"));
  3208.   field_decl = build1 (INDIRECT_REF, NULL_TREE, field_decl);
  3209.   field_decl
  3210.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3211.   chainon (field_decl_chain, field_decl);
  3212.  
  3213.   finish_struct (objc_category_template, field_decl_chain, NULL_TREE);
  3214. }
  3215.  
  3216. /* struct objc_selector {
  3217.      void *sel_id;
  3218.      char *sel_type;
  3219.    }; */
  3220.  
  3221. static void
  3222. build_selector_template ()
  3223. {
  3224.  
  3225.   tree decl_specs, field_decl, field_decl_chain;
  3226.  
  3227.   objc_selector_template 
  3228.     = start_struct (RECORD_TYPE, get_identifier (UTAG_SELECTOR));
  3229.  
  3230.   /* void *sel_id; */
  3231.  
  3232.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_VOID]);
  3233.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("sel_id"));
  3234.   field_decl
  3235.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3236.   field_decl_chain = field_decl;
  3237.  
  3238.   /* char *sel_type; */
  3239.  
  3240.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3241.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("sel_type"));
  3242.   field_decl
  3243.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3244.   chainon (field_decl_chain, field_decl);
  3245.  
  3246.   finish_struct (objc_selector_template, field_decl_chain, NULL_TREE);
  3247. }
  3248.  
  3249. /* struct objc_class {
  3250.      struct objc_class *isa;
  3251.      struct objc_class *super_class;
  3252.      char *name;
  3253.      long version;
  3254.      long info;
  3255.      long instance_size;
  3256.      struct objc_ivar_list *ivars;
  3257.      struct objc_method_list *methods;
  3258.      if (flag_next_runtime)
  3259.        struct objc_cache *cache;
  3260.      else {
  3261.        struct sarray *dtable;
  3262.        struct objc_class *subclass_list;
  3263.        struct objc_class *sibling_class;
  3264.      }
  3265.      struct objc_protocol_list *protocols;
  3266.    };  */
  3267.  
  3268. static void
  3269. build_class_template ()
  3270. {
  3271.   tree decl_specs, field_decl, field_decl_chain;
  3272.  
  3273.   objc_class_template
  3274.     = start_struct (RECORD_TYPE, get_identifier (UTAG_CLASS));
  3275.  
  3276.   /* struct objc_class *isa; */
  3277.  
  3278.   decl_specs = build_tree_list (NULL_TREE, objc_class_template);
  3279.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("isa"));
  3280.   field_decl
  3281.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3282.   field_decl_chain = field_decl;
  3283.  
  3284.   /* struct objc_class *super_class; */
  3285.  
  3286.   decl_specs = build_tree_list (NULL_TREE, objc_class_template);
  3287.   field_decl
  3288.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("super_class"));
  3289.   field_decl
  3290.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3291.   chainon (field_decl_chain, field_decl);
  3292.  
  3293.   /* char *name; */
  3294.  
  3295.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3296.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("name"));
  3297.   field_decl
  3298.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3299.   chainon (field_decl_chain, field_decl);
  3300.  
  3301.   /* long version; */
  3302.  
  3303.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);
  3304.   field_decl = get_identifier ("version");
  3305.   field_decl
  3306.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3307.   chainon (field_decl_chain, field_decl);
  3308.  
  3309.   /* long info; */
  3310.  
  3311.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);
  3312.   field_decl = get_identifier ("info");
  3313.   field_decl
  3314.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3315.   chainon (field_decl_chain, field_decl);
  3316.  
  3317.   /* long instance_size; */
  3318.  
  3319.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_LONG]);
  3320.   field_decl = get_identifier ("instance_size");
  3321.   field_decl
  3322.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3323.   chainon (field_decl_chain, field_decl);
  3324.  
  3325.   /* struct objc_ivar_list *ivars; */
  3326.  
  3327.   decl_specs = build_tree_list (NULL_TREE,
  3328.                 xref_tag (RECORD_TYPE,
  3329.                       get_identifier (UTAG_IVAR_LIST)));
  3330.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("ivars"));
  3331.   field_decl
  3332.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3333.   chainon (field_decl_chain, field_decl);
  3334.  
  3335.   /* struct objc_method_list *methods; */
  3336.  
  3337.   decl_specs = build_tree_list (NULL_TREE,
  3338.                 xref_tag (RECORD_TYPE,
  3339.                       get_identifier (UTAG_METHOD_LIST)));
  3340.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("methods"));
  3341.   field_decl
  3342.     = grokfield (input_filename, lineno, field_decl, decl_specs, NULL_TREE);
  3343.   chainon (field_decl_chain, field_decl);
  3344.  
  3345.   if (flag_next_runtime)
  3346.     {
  3347.       /* struct objc_cache *cache; */
  3348.  
  3349.       decl_specs = build_tree_list (NULL_TREE,
  3350.                     xref_tag (RECORD_TYPE,
  3351.                           get_identifier ("objc_cache")));
  3352.       field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("cache"));
  3353.       field_decl = grokfield (input_filename, lineno, field_decl,
  3354.                   decl_specs, NULL_TREE);
  3355.       chainon (field_decl_chain, field_decl);
  3356.     }
  3357.   else
  3358.     {
  3359.       /* struct sarray *dtable; */
  3360.  
  3361.       decl_specs = build_tree_list (NULL_TREE,
  3362.                     xref_tag (RECORD_TYPE,
  3363.                           get_identifier ("sarray")));
  3364.       field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("dtable"));
  3365.       field_decl = grokfield (input_filename, lineno, field_decl,
  3366.                   decl_specs, NULL_TREE);
  3367.       chainon (field_decl_chain, field_decl);
  3368.  
  3369.       /* struct objc_class *subclass_list; */
  3370.  
  3371.       decl_specs = build_tree_list (NULL_TREE, objc_class_template);
  3372.       field_decl
  3373.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("subclass_list"));
  3374.       field_decl = grokfield (input_filename, lineno, field_decl,
  3375.                   decl_specs, NULL_TREE);
  3376.       chainon (field_decl_chain, field_decl);
  3377.  
  3378.       /* struct objc_class *sibling_class; */
  3379.  
  3380.       decl_specs = build_tree_list (NULL_TREE, objc_class_template);
  3381.       field_decl
  3382.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("sibling_class"));
  3383.       field_decl = grokfield (input_filename, lineno, field_decl,
  3384.                   decl_specs, NULL_TREE);
  3385.       chainon (field_decl_chain, field_decl);
  3386.     }
  3387.  
  3388.   /* struct objc_protocol **protocol_list; */
  3389.  
  3390.   decl_specs = build_tree_list (NULL_TREE, 
  3391.                 xref_tag (RECORD_TYPE,
  3392.                       get_identifier (UTAG_PROTOCOL)));
  3393.   field_decl
  3394.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("protocol_list"));
  3395.   field_decl
  3396.     = build1 (INDIRECT_REF, NULL_TREE, field_decl);
  3397.   field_decl = grokfield (input_filename, lineno, field_decl,
  3398.               decl_specs, NULL_TREE);
  3399.   chainon (field_decl_chain, field_decl);
  3400.  
  3401.  
  3402.   finish_struct (objc_class_template, field_decl_chain, NULL_TREE);
  3403. }
  3404.  
  3405. /* Generate appropriate forward declarations for an implementation.  */
  3406.  
  3407. static void
  3408. synth_forward_declarations ()
  3409. {
  3410.   tree sc_spec, decl_specs, an_id;
  3411.  
  3412.   /* extern struct objc_class _OBJC_CLASS_<my_name>; */
  3413.  
  3414.   an_id = synth_id_with_class_suffix ("_OBJC_CLASS", implementation_context);
  3415.  
  3416.   sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_EXTERN]);
  3417.   decl_specs = tree_cons (NULL_TREE, objc_class_template, sc_spec);
  3418.   UOBJC_CLASS_decl = define_decl (an_id, decl_specs);
  3419.   TREE_USED (UOBJC_CLASS_decl) = 1;
  3420.   DECL_ARTIFICIAL (UOBJC_CLASS_decl) = 1;
  3421.  
  3422.   /* extern struct objc_class _OBJC_METACLASS_<my_name>; */
  3423.  
  3424.   an_id = synth_id_with_class_suffix ("_OBJC_METACLASS",
  3425.                       implementation_context);
  3426.  
  3427.   UOBJC_METACLASS_decl = define_decl (an_id, decl_specs);
  3428.   TREE_USED (UOBJC_METACLASS_decl) = 1;
  3429.   DECL_ARTIFICIAL(UOBJC_METACLASS_decl) = 1;
  3430.  
  3431.   /* Pre-build the following entities - for speed/convenience. */
  3432.  
  3433.   an_id = get_identifier ("super_class");
  3434.   ucls_super_ref = build_component_ref (UOBJC_CLASS_decl, an_id);
  3435.   uucls_super_ref = build_component_ref (UOBJC_METACLASS_decl, an_id);
  3436. }
  3437.  
  3438. static void
  3439. error_with_ivar (message, decl, rawdecl)
  3440.      char *message;
  3441.      tree decl;
  3442.      tree rawdecl;
  3443. {
  3444.   count_error (0);
  3445.  
  3446.   report_error_function (DECL_SOURCE_FILE (decl));
  3447.  
  3448.   fprintf (stderr, "%s:%d: ",
  3449.        DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  3450.   bzero (errbuf, BUFSIZE);
  3451.   fprintf (stderr, "%s `%s'\n", message, gen_declaration (rawdecl, errbuf));
  3452. }
  3453.  
  3454. #define USERTYPE(t) \
  3455.  (TREE_CODE (t) == RECORD_TYPE || TREE_CODE (t) == UNION_TYPE \
  3456.   ||  TREE_CODE (t) == ENUMERAL_TYPE)
  3457.  
  3458. static void
  3459. check_ivars (inter, imp)
  3460.      tree inter;
  3461.      tree imp;
  3462. {
  3463.   tree intdecls = CLASS_IVARS (inter);
  3464.   tree impdecls = CLASS_IVARS (imp);
  3465.   tree rawintdecls = CLASS_RAW_IVARS (inter);
  3466.   tree rawimpdecls = CLASS_RAW_IVARS (imp);
  3467.  
  3468.   while (1)
  3469.     {
  3470.       tree t1, t2;
  3471.  
  3472.       if (intdecls == 0 && impdecls == 0)
  3473.     break;
  3474.       if (intdecls == 0 || impdecls == 0)
  3475.     {
  3476.       error ("inconsistent instance variable specification");
  3477.       break;
  3478.     }
  3479.  
  3480.       t1 = TREE_TYPE (intdecls); t2 = TREE_TYPE (impdecls);
  3481.  
  3482.       if (!comptypes (t1, t2))
  3483.     {
  3484.       if (DECL_NAME (intdecls) == DECL_NAME (impdecls))
  3485.         {
  3486.           error_with_ivar ("conflicting instance variable type",
  3487.                    impdecls, rawimpdecls);
  3488.           error_with_ivar ("previous declaration of",
  3489.                    intdecls, rawintdecls);
  3490.         }
  3491.       else            /* both the type and the name don't match */
  3492.         {
  3493.           error ("inconsistent instance variable specification");
  3494.           break;
  3495.         }
  3496.     }
  3497.  
  3498.       else if (DECL_NAME (intdecls) != DECL_NAME (impdecls))
  3499.     {
  3500.       error_with_ivar ("conflicting instance variable name",
  3501.                impdecls, rawimpdecls);
  3502.       error_with_ivar ("previous declaration of",
  3503.                intdecls, rawintdecls);
  3504.     }
  3505.  
  3506.       intdecls = TREE_CHAIN (intdecls);
  3507.       impdecls = TREE_CHAIN (impdecls);
  3508.       rawintdecls = TREE_CHAIN (rawintdecls);
  3509.       rawimpdecls = TREE_CHAIN (rawimpdecls);
  3510.     }
  3511. }
  3512.  
  3513. /* Set super_type to the data type node for struct objc_super *,
  3514.    first defining struct objc_super itself.
  3515.    This needs to be done just once per compilation.  */
  3516.  
  3517. static tree
  3518. build_super_template ()
  3519. {
  3520.   tree record, decl_specs, field_decl, field_decl_chain;
  3521.  
  3522.   record = start_struct (RECORD_TYPE, get_identifier (UTAG_SUPER));
  3523.  
  3524.   /* struct objc_object *self; */
  3525.  
  3526.   decl_specs = build_tree_list (NULL_TREE, objc_object_reference);
  3527.   field_decl = get_identifier ("self");
  3528.   field_decl = build1 (INDIRECT_REF, NULL_TREE, field_decl);
  3529.   field_decl = grokfield (input_filename, lineno,
  3530.               field_decl, decl_specs, NULL_TREE);
  3531.   field_decl_chain = field_decl;
  3532.  
  3533.   /* struct objc_class *class; */
  3534.  
  3535.   decl_specs = get_identifier (UTAG_CLASS);
  3536.   decl_specs = build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE, decl_specs));
  3537.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("class"));
  3538.  
  3539.   field_decl = grokfield (input_filename, lineno,
  3540.               field_decl, decl_specs, NULL_TREE);
  3541.   chainon (field_decl_chain, field_decl);
  3542.  
  3543.   finish_struct (record, field_decl_chain, NULL_TREE);
  3544.  
  3545.   /* `struct objc_super *' */
  3546.   super_type = groktypename (build_tree_list (build_tree_list (NULL_TREE,
  3547.                                    record),
  3548.                           build1 (INDIRECT_REF,
  3549.                               NULL_TREE, NULL_TREE)));
  3550.   return record;
  3551. }
  3552.  
  3553. /* struct objc_ivar {
  3554.      char *ivar_name;
  3555.      char *ivar_type;
  3556.      int ivar_offset;
  3557.    };  */
  3558.  
  3559. static tree
  3560. build_ivar_template ()
  3561. {
  3562.   tree objc_ivar_id, objc_ivar_record;
  3563.   tree decl_specs, field_decl, field_decl_chain;
  3564.  
  3565.   objc_ivar_id = get_identifier (UTAG_IVAR);
  3566.   objc_ivar_record = start_struct (RECORD_TYPE, objc_ivar_id);
  3567.  
  3568.   /* char *ivar_name; */
  3569.  
  3570.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3571.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("ivar_name"));
  3572.  
  3573.   field_decl = grokfield (input_filename, lineno, field_decl,
  3574.               decl_specs, NULL_TREE);
  3575.   field_decl_chain = field_decl;
  3576.  
  3577.   /* char *ivar_type; */
  3578.  
  3579.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_CHAR]);
  3580.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("ivar_type"));
  3581.  
  3582.   field_decl = grokfield (input_filename, lineno, field_decl,
  3583.               decl_specs, NULL_TREE);
  3584.   chainon (field_decl_chain, field_decl);
  3585.  
  3586.   /* int ivar_offset; */
  3587.  
  3588.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_INT]);
  3589.   field_decl = get_identifier ("ivar_offset");
  3590.  
  3591.   field_decl = grokfield (input_filename, lineno, field_decl,
  3592.               decl_specs, NULL_TREE);
  3593.   chainon (field_decl_chain, field_decl);
  3594.  
  3595.   finish_struct (objc_ivar_record, field_decl_chain, NULL_TREE);
  3596.  
  3597.   return objc_ivar_record;
  3598. }
  3599.  
  3600. /* struct {
  3601.      int ivar_count;
  3602.      struct objc_ivar ivar_list[ivar_count];
  3603.    };  */
  3604.  
  3605. static tree
  3606. build_ivar_list_template (list_type, size)
  3607.      tree list_type;
  3608.      int size;
  3609. {
  3610.   tree objc_ivar_list_record;
  3611.   tree decl_specs, field_decl, field_decl_chain;
  3612.  
  3613.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULL_TREE);
  3614.  
  3615.   /* int ivar_count; */
  3616.  
  3617.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_INT]);
  3618.   field_decl = get_identifier ("ivar_count");
  3619.  
  3620.   field_decl = grokfield (input_filename, lineno, field_decl,
  3621.               decl_specs, NULL_TREE);
  3622.   field_decl_chain = field_decl;
  3623.  
  3624.   /* struct objc_ivar ivar_list[]; */
  3625.  
  3626.   decl_specs = build_tree_list (NULL_TREE, list_type);
  3627.   field_decl = build_nt (ARRAY_REF, get_identifier ("ivar_list"),
  3628.              build_int_2 (size, 0));
  3629.  
  3630.   field_decl = grokfield (input_filename, lineno,
  3631.               field_decl, decl_specs, NULL_TREE);
  3632.   chainon (field_decl_chain, field_decl);
  3633.  
  3634.   finish_struct (objc_ivar_list_record, field_decl_chain, NULL_TREE);
  3635.  
  3636.   return objc_ivar_list_record;
  3637. }
  3638.  
  3639. /* struct {
  3640.      int method_next;
  3641.      int method_count;
  3642.      struct objc_method method_list[method_count];
  3643.    };  */
  3644.  
  3645. static tree
  3646. build_method_list_template (list_type, size)
  3647.      tree list_type;
  3648.      int size;
  3649. {
  3650.   tree objc_ivar_list_record;
  3651.   tree decl_specs, field_decl, field_decl_chain;
  3652.  
  3653.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULL_TREE);
  3654.  
  3655.   /* int method_next; */
  3656.  
  3657.   decl_specs
  3658.     = build_tree_list
  3659.       (NULL_TREE, 
  3660.        xref_tag (RECORD_TYPE,
  3661.          get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  3662.   field_decl
  3663.     = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("method_next"));
  3664.   field_decl = grokfield (input_filename, lineno, field_decl,
  3665.               decl_specs, NULL_TREE);
  3666.   field_decl_chain = field_decl;
  3667.  
  3668.   /* int method_count; */
  3669.  
  3670.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_INT]);
  3671.   field_decl = get_identifier ("method_count");
  3672.  
  3673.   field_decl = grokfield (input_filename, lineno,
  3674.               field_decl, decl_specs, NULL_TREE);
  3675.   chainon (field_decl_chain, field_decl);
  3676.  
  3677.   /* struct objc_method method_list[]; */
  3678.  
  3679.   decl_specs = build_tree_list (NULL_TREE, list_type);
  3680.   field_decl = build_nt (ARRAY_REF, get_identifier ("method_list"),
  3681.              build_int_2 (size, 0));
  3682.  
  3683.   field_decl = grokfield (input_filename, lineno,
  3684.               field_decl, decl_specs, NULL_TREE);
  3685.   chainon (field_decl_chain, field_decl);
  3686.  
  3687.   finish_struct (objc_ivar_list_record, field_decl_chain, NULL_TREE);
  3688.  
  3689.   return objc_ivar_list_record;
  3690. }
  3691.  
  3692. static tree
  3693. build_ivar_list_initializer (type, field_decl)
  3694.      tree type;
  3695.      tree field_decl;
  3696. {
  3697.   tree initlist = NULL_TREE;
  3698.  
  3699.   do
  3700.     {
  3701.       tree ivar = NULL_TREE;
  3702.  
  3703.       /* Set name. */
  3704.       if (DECL_NAME (field_decl))
  3705.     ivar = tree_cons (NULL_TREE,
  3706.               add_objc_string (DECL_NAME (field_decl),
  3707.                        meth_var_names),
  3708.               ivar);
  3709.       else
  3710.     /* Unnamed bit-field ivar (yuck). */
  3711.     ivar = tree_cons (NULL_TREE, build_int_2 (0, 0), ivar);
  3712.  
  3713.       /* Set type. */
  3714.       encode_field_decl (field_decl,
  3715.              obstack_object_size (&util_obstack),
  3716.              OBJC_ENCODE_DONT_INLINE_DEFS);
  3717.  
  3718.       /* Null terminate string.  */
  3719.       obstack_1grow (&util_obstack, 0);
  3720.       ivar
  3721.     = tree_cons
  3722.       (NULL_TREE,
  3723.        add_objc_string (get_identifier (obstack_finish (&util_obstack)),
  3724.                 meth_var_types),
  3725.        ivar);
  3726.       obstack_free (&util_obstack, util_firstobj);
  3727.  
  3728.       /* set offset */
  3729.       ivar
  3730.     = tree_cons
  3731.       (NULL_TREE,
  3732.        build_int_2 ((TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field_decl))
  3733.              / BITS_PER_UNIT),
  3734.             0),
  3735.        ivar);
  3736.  
  3737.       initlist = tree_cons (NULL_TREE, 
  3738.                 build_constructor (type, nreverse (ivar)),
  3739.                 initlist);
  3740.  
  3741.       field_decl = TREE_CHAIN (field_decl);
  3742.     }
  3743.   while (field_decl);
  3744.  
  3745.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  3746. }
  3747.  
  3748. static tree
  3749. generate_ivars_list (type, name, size, list)
  3750.      tree type;
  3751.      char *name;
  3752.      int size;
  3753.      tree list;
  3754. {
  3755.   tree sc_spec, decl_specs, decl, initlist;
  3756.  
  3757.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  3758.   decl_specs = tree_cons (NULL_TREE, type, sc_spec);
  3759.  
  3760.   decl = start_decl (synth_id_with_class_suffix (name, implementation_context),
  3761.              decl_specs, 1, NULL_TREE, NULL_TREE);
  3762.  
  3763.   initlist = build_tree_list (NULL_TREE, build_int_2 (size, 0));
  3764.   initlist = tree_cons (NULL_TREE, list, initlist);
  3765.  
  3766.   finish_decl (decl,
  3767.            build_constructor (TREE_TYPE (decl), nreverse (initlist)),
  3768.            NULL_TREE);
  3769.  
  3770.   return decl;
  3771. }
  3772.  
  3773. static void
  3774. generate_ivar_lists ()
  3775. {
  3776.   tree initlist, ivar_list_template, chain;
  3777.   tree cast, variable_length_type;
  3778.   int size;
  3779.  
  3780.   generating_instance_variables = 1;
  3781.  
  3782.   if (!objc_ivar_template)
  3783.     objc_ivar_template = build_ivar_template ();
  3784.  
  3785.   cast
  3786.     = build_tree_list
  3787.       (build_tree_list (NULL_TREE, xref_tag (RECORD_TYPE,
  3788.                      get_identifier (UTAG_IVAR_LIST))),
  3789.        NULL_TREE);
  3790.   variable_length_type = groktypename (cast);
  3791.  
  3792.   /* Only generate class variables for the root of the inheritance
  3793.      hierarchy since these will be the same for every class. */
  3794.  
  3795.   if (CLASS_SUPER_NAME (implementation_template) == NULL_TREE
  3796.       && (chain = TYPE_FIELDS (objc_class_template)))
  3797.     {
  3798.       size = list_length (chain);
  3799.  
  3800.       ivar_list_template = build_ivar_list_template (objc_ivar_template, size);
  3801.       initlist = build_ivar_list_initializer (objc_ivar_template, chain);
  3802.  
  3803.       UOBJC_CLASS_VARIABLES_decl
  3804.     = generate_ivars_list (ivar_list_template, "_OBJC_CLASS_VARIABLES",
  3805.                    size, initlist);
  3806.       TREE_TYPE (UOBJC_CLASS_VARIABLES_decl) = variable_length_type;
  3807.     }
  3808.   else
  3809.     UOBJC_CLASS_VARIABLES_decl = 0;
  3810.  
  3811.   chain = CLASS_IVARS (implementation_template);
  3812.   if (chain)
  3813.     {
  3814.       size = list_length (chain);
  3815.       ivar_list_template = build_ivar_list_template (objc_ivar_template, size);
  3816.       initlist = build_ivar_list_initializer (objc_ivar_template, chain);
  3817.  
  3818.       UOBJC_INSTANCE_VARIABLES_decl
  3819.     = generate_ivars_list (ivar_list_template, "_OBJC_INSTANCE_VARIABLES",
  3820.                    size, initlist);
  3821.       TREE_TYPE (UOBJC_INSTANCE_VARIABLES_decl) = variable_length_type;
  3822.     }
  3823.   else
  3824.     UOBJC_INSTANCE_VARIABLES_decl = 0;
  3825.  
  3826.   generating_instance_variables = 0;
  3827. }
  3828.  
  3829. static tree
  3830. build_dispatch_table_initializer (type, entries)
  3831.      tree type;
  3832.      tree entries;
  3833. {
  3834.   tree initlist = NULL_TREE;
  3835.  
  3836.   do
  3837.     {
  3838.       tree elemlist = NULL_TREE;
  3839.  
  3840.       elemlist = tree_cons (NULL_TREE,
  3841.                 build_selector (METHOD_SEL_NAME (entries)),
  3842.                 NULL_TREE);
  3843.  
  3844.       elemlist = tree_cons (NULL_TREE,
  3845.                 add_objc_string (METHOD_ENCODING (entries),
  3846.                          meth_var_types),
  3847.                 elemlist);
  3848.  
  3849.       elemlist = tree_cons (NULL_TREE, 
  3850.                 build_unary_op (ADDR_EXPR,
  3851.                         METHOD_DEFINITION (entries), 1),
  3852.                 elemlist);
  3853.  
  3854.       initlist = tree_cons (NULL_TREE, 
  3855.                 build_constructor (type, nreverse (elemlist)),
  3856.                 initlist);
  3857.  
  3858.       entries = TREE_CHAIN (entries);
  3859.     }
  3860.   while (entries);
  3861.  
  3862.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  3863. }
  3864.  
  3865. /* To accomplish method prototyping without generating all kinds of
  3866.    inane warnings, the definition of the dispatch table entries were
  3867.    changed from:
  3868.  
  3869.        struct objc_method { SEL _cmd; ...; id (*_imp)(); };
  3870.    to:
  3871.        struct objc_method { SEL _cmd; ...; void *_imp; };  */
  3872.  
  3873. static tree
  3874. build_method_template ()
  3875. {
  3876.   tree _SLT_record;
  3877.   tree decl_specs, field_decl, field_decl_chain;
  3878.  
  3879.   _SLT_record = start_struct (RECORD_TYPE, get_identifier (UTAG_METHOD));
  3880.  
  3881. #ifdef OBJC_INT_SELECTORS
  3882.   /* unsigned int _cmd; */
  3883.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_UNSIGNED],
  3884.               NULL_TREE);
  3885.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_INT], decl_specs);
  3886.   field_decl = get_identifier ("_cmd");
  3887. #else /* not OBJC_INT_SELECTORS */
  3888.   /* struct objc_selector *_cmd; */
  3889.   decl_specs = tree_cons (NULL_TREE,
  3890.               xref_tag (RECORD_TYPE,
  3891.                     get_identifier (TAG_SELECTOR)),
  3892.               NULL_TREE);
  3893.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("_cmd"));
  3894. #endif /* not OBJC_INT_SELECTORS */
  3895.  
  3896.   field_decl = grokfield (input_filename, lineno, field_decl,
  3897.               decl_specs, NULL_TREE);
  3898.   field_decl_chain = field_decl;
  3899.  
  3900.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_CHAR], NULL_TREE);
  3901.   field_decl = build1 (INDIRECT_REF, NULL_TREE,
  3902.                get_identifier ("method_types"));
  3903.   field_decl = grokfield (input_filename, lineno, field_decl,
  3904.               decl_specs, NULL_TREE);
  3905.   chainon (field_decl_chain, field_decl);
  3906.  
  3907.   /* void *_imp; */
  3908.  
  3909.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_VOID], NULL_TREE);
  3910.   field_decl = build1 (INDIRECT_REF, NULL_TREE, get_identifier ("_imp"));
  3911.   field_decl = grokfield (input_filename, lineno, field_decl,
  3912.               decl_specs, NULL_TREE);
  3913.   chainon (field_decl_chain, field_decl);
  3914.  
  3915.   finish_struct (_SLT_record, field_decl_chain, NULL_TREE);
  3916.  
  3917.   return _SLT_record;
  3918. }
  3919.  
  3920.  
  3921. static tree
  3922. generate_dispatch_table (type, name, size, list)
  3923.      tree type;
  3924.      char *name;
  3925.      int size;
  3926.      tree list;
  3927. {
  3928.   tree sc_spec, decl_specs, decl, initlist;
  3929.  
  3930.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  3931.   decl_specs = tree_cons (NULL_TREE, type, sc_spec);
  3932.  
  3933.   decl = start_decl (synth_id_with_class_suffix (name, implementation_context),
  3934.              decl_specs, 1, NULL_TREE, NULL_TREE);
  3935.  
  3936.   initlist = build_tree_list (NULL_TREE, build_int_2 (0, 0));
  3937.   initlist = tree_cons (NULL_TREE, build_int_2 (size, 0), initlist);
  3938.   initlist = tree_cons (NULL_TREE, list, initlist);
  3939.  
  3940.   finish_decl (decl,
  3941.            build_constructor (TREE_TYPE (decl), nreverse (initlist)),
  3942.            NULL_TREE);
  3943.  
  3944.   return decl;
  3945. }
  3946.  
  3947. static void
  3948. generate_dispatch_tables ()
  3949. {
  3950.   tree initlist, chain, method_list_template;
  3951.   tree cast, variable_length_type;
  3952.   int size;
  3953.  
  3954.   if (!objc_method_template)
  3955.     objc_method_template = build_method_template ();
  3956.  
  3957.   cast
  3958.     = build_tree_list
  3959.       (build_tree_list (NULL_TREE,
  3960.             xref_tag (RECORD_TYPE,
  3961.                   get_identifier (UTAG_METHOD_LIST))),
  3962.        NULL_TREE);
  3963.  
  3964.   variable_length_type = groktypename (cast);
  3965.  
  3966.   chain = CLASS_CLS_METHODS (implementation_context);
  3967.   if (chain)
  3968.     {
  3969.       size = list_length (chain);
  3970.  
  3971.       method_list_template
  3972.     = build_method_list_template (objc_method_template, size);
  3973.       initlist
  3974.     = build_dispatch_table_initializer (objc_method_template, chain);
  3975.  
  3976.       UOBJC_CLASS_METHODS_decl
  3977.     = generate_dispatch_table (method_list_template,
  3978.                    ((TREE_CODE (implementation_context)
  3979.                      == CLASS_IMPLEMENTATION_TYPE)
  3980.                     ? "_OBJC_CLASS_METHODS"
  3981.                     : "_OBJC_CATEGORY_CLASS_METHODS"),
  3982.                    size, initlist);
  3983.       TREE_TYPE (UOBJC_CLASS_METHODS_decl) = variable_length_type;
  3984.     }
  3985.   else
  3986.     UOBJC_CLASS_METHODS_decl = 0;
  3987.  
  3988.   chain = CLASS_NST_METHODS (implementation_context);
  3989.   if (chain)
  3990.     {
  3991.       size = list_length (chain);
  3992.  
  3993.       method_list_template
  3994.     = build_method_list_template (objc_method_template, size);
  3995.       initlist
  3996.     = build_dispatch_table_initializer (objc_method_template, chain);
  3997.  
  3998.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  3999.     UOBJC_INSTANCE_METHODS_decl
  4000.       = generate_dispatch_table (method_list_template,
  4001.                      "_OBJC_INSTANCE_METHODS",
  4002.                      size, initlist);
  4003.       else
  4004.     /* We have a category. */
  4005.     UOBJC_INSTANCE_METHODS_decl
  4006.       = generate_dispatch_table (method_list_template,
  4007.                      "_OBJC_CATEGORY_INSTANCE_METHODS",
  4008.                      size, initlist);
  4009.       TREE_TYPE (UOBJC_INSTANCE_METHODS_decl) = variable_length_type;
  4010.     }
  4011.   else
  4012.     UOBJC_INSTANCE_METHODS_decl = 0;
  4013. }
  4014.  
  4015. static tree
  4016. generate_protocol_list (i_or_p)
  4017.      tree i_or_p;
  4018. {
  4019.   static tree cast_type = 0;
  4020.   tree initlist, decl_specs, sc_spec;
  4021.   tree refs_decl, expr_decl, lproto, e, plist;
  4022.   int size = 0;
  4023.  
  4024.   if (TREE_CODE (i_or_p) == CLASS_INTERFACE_TYPE
  4025.       || TREE_CODE (i_or_p) == CATEGORY_INTERFACE_TYPE)
  4026.     plist = CLASS_PROTOCOL_LIST (i_or_p);
  4027.   else if (TREE_CODE (i_or_p) == PROTOCOL_INTERFACE_TYPE)
  4028.     plist = PROTOCOL_LIST (i_or_p);
  4029.   else
  4030.     abort ();
  4031.  
  4032.   if (!cast_type)
  4033.     cast_type
  4034.       = groktypename
  4035.     (build_tree_list
  4036.      (build_tree_list (NULL_TREE,
  4037.                xref_tag (RECORD_TYPE,
  4038.                      get_identifier (UTAG_PROTOCOL))),
  4039.       build1 (INDIRECT_REF, NULL_TREE, NULL_TREE)));
  4040.  
  4041.   /* Compute size. */
  4042.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  4043.     if (TREE_CODE (TREE_VALUE (lproto)) == PROTOCOL_INTERFACE_TYPE
  4044.     && PROTOCOL_FORWARD_DECL (TREE_VALUE (lproto)))
  4045.       size++;
  4046.  
  4047.   /* Build initializer. */
  4048.   initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), NULL_TREE);
  4049.  
  4050.   e = build_int_2 (size, 0);
  4051.   TREE_TYPE (e) = cast_type;
  4052.   initlist = tree_cons (NULL_TREE, e, initlist);
  4053.  
  4054.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  4055.     {
  4056.       tree pval = TREE_VALUE (lproto);
  4057.  
  4058.       if (TREE_CODE (pval) == PROTOCOL_INTERFACE_TYPE
  4059.       && PROTOCOL_FORWARD_DECL (pval))
  4060.     {
  4061.       e = build_unary_op (ADDR_EXPR, PROTOCOL_FORWARD_DECL (pval), 0);
  4062.       initlist = tree_cons (NULL_TREE, e, initlist);
  4063.     }
  4064.     }
  4065.  
  4066.   /* static struct objc_protocol *refs[n]; */
  4067.  
  4068.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  4069.   decl_specs = tree_cons (NULL_TREE, xref_tag (RECORD_TYPE,
  4070.                        get_identifier (UTAG_PROTOCOL)),
  4071.               sc_spec);
  4072.  
  4073.   if (TREE_CODE (i_or_p) == PROTOCOL_INTERFACE_TYPE)
  4074.     expr_decl = build_nt (ARRAY_REF,
  4075.               synth_id_with_class_suffix ("_OBJC_PROTOCOL_REFS",
  4076.                               i_or_p),
  4077.               build_int_2 (size + 2, 0));
  4078.   else if (TREE_CODE (i_or_p) == CLASS_INTERFACE_TYPE)
  4079.     expr_decl = build_nt (ARRAY_REF,
  4080.               synth_id_with_class_suffix ("_OBJC_CLASS_PROTOCOLS",
  4081.                               i_or_p),
  4082.               build_int_2 (size + 2, 0));
  4083.   else if (TREE_CODE (i_or_p) == CATEGORY_INTERFACE_TYPE)
  4084.     expr_decl
  4085.       = build_nt (ARRAY_REF,
  4086.           synth_id_with_class_suffix ("_OBJC_CATEGORY_PROTOCOLS",
  4087.                           i_or_p),
  4088.           build_int_2 (size + 2, 0));
  4089.  
  4090.   expr_decl = build1 (INDIRECT_REF, NULL_TREE, expr_decl);
  4091.  
  4092.   refs_decl = start_decl (expr_decl, decl_specs, 1, NULL_TREE, NULL_TREE);
  4093.  
  4094.   finish_decl (refs_decl, build_constructor (TREE_TYPE (refs_decl),
  4095.                          nreverse (initlist)),
  4096.            NULL_TREE);
  4097.  
  4098.   return refs_decl;
  4099. }
  4100.  
  4101. static tree
  4102. build_category_initializer (type, cat_name, class_name,
  4103.                 instance_methods, class_methods, protocol_list)
  4104.      tree type;
  4105.      tree cat_name;
  4106.      tree class_name;
  4107.      tree instance_methods;
  4108.      tree class_methods;
  4109.      tree protocol_list;
  4110. {
  4111.   tree initlist = NULL_TREE, expr;
  4112.  
  4113.   initlist = tree_cons (NULL_TREE, cat_name, initlist);
  4114.   initlist = tree_cons (NULL_TREE, class_name, initlist);
  4115.  
  4116.   if (!instance_methods)
  4117.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4118.   else
  4119.     {
  4120.       expr = build_unary_op (ADDR_EXPR, instance_methods, 0);
  4121.       initlist = tree_cons (NULL_TREE, expr, initlist);
  4122.     }
  4123.   if (!class_methods)
  4124.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4125.   else
  4126.     {
  4127.       expr = build_unary_op (ADDR_EXPR, class_methods, 0);
  4128.       initlist = tree_cons (NULL_TREE, expr, initlist);
  4129.     }
  4130.  
  4131.   /* protocol_list = */
  4132.   if (!protocol_list)
  4133.      initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4134.   else
  4135.      {
  4136.     static tree cast_type2;
  4137.  
  4138.     if (!cast_type2)
  4139.       cast_type2
  4140.         = groktypename
  4141.           (build_tree_list
  4142.            (build_tree_list (NULL_TREE,
  4143.                  xref_tag (RECORD_TYPE,
  4144.                        get_identifier (UTAG_PROTOCOL))),
  4145.         build1 (INDIRECT_REF, NULL_TREE,
  4146.             build1 (INDIRECT_REF, NULL_TREE, NULL_TREE))));
  4147.  
  4148.     expr = build_unary_op (ADDR_EXPR, protocol_list, 0);
  4149.     TREE_TYPE (expr) = cast_type2;
  4150.     initlist = tree_cons (NULL_TREE, expr, initlist);
  4151.      }
  4152.  
  4153.   return build_constructor (type, nreverse (initlist));
  4154. }
  4155.  
  4156. /* struct objc_class {
  4157.      struct objc_class *isa;
  4158.      struct objc_class *super_class;
  4159.      char *name;
  4160.      long version;
  4161.      long info;
  4162.      long instance_size;
  4163.      struct objc_ivar_list *ivars;
  4164.      struct objc_method_list *methods;
  4165.      if (flag_next_runtime)
  4166.        struct objc_cache *cache;
  4167.      else {
  4168.        struct sarray *dtable;
  4169.        struct objc_class *subclass_list;
  4170.        struct objc_class *sibling_class;
  4171.      }
  4172.      struct objc_protocol_list *protocols;
  4173.    };  */
  4174.  
  4175. static tree
  4176. build_shared_structure_initializer (type, isa, super, name, size, status,
  4177.                     dispatch_table, ivar_list, protocol_list)
  4178.      tree type;
  4179.      tree isa;
  4180.      tree super;
  4181.      tree name;
  4182.      tree size;
  4183.      int status;
  4184.      tree dispatch_table;
  4185.      tree ivar_list;
  4186.      tree protocol_list;
  4187. {
  4188.   tree initlist = NULL_TREE, expr;
  4189.  
  4190.   /* isa = */
  4191.   initlist = tree_cons (NULL_TREE, isa, initlist);
  4192.  
  4193.   /* super_class = */
  4194.   initlist = tree_cons (NULL_TREE, super, initlist);
  4195.  
  4196.   /* name = */
  4197.   initlist = tree_cons (NULL_TREE, default_conversion (name), initlist);
  4198.  
  4199.   /* version = */
  4200.   initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4201.  
  4202.   /* info = */
  4203.   initlist = tree_cons (NULL_TREE, build_int_2 (status, 0), initlist);
  4204.  
  4205.   /* instance_size = */
  4206.   initlist = tree_cons (NULL_TREE, size, initlist);
  4207.  
  4208.   /* objc_ivar_list = */
  4209.   if (!ivar_list)
  4210.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4211.   else
  4212.     {
  4213.       expr = build_unary_op (ADDR_EXPR, ivar_list, 0);
  4214.       initlist = tree_cons (NULL_TREE, expr, initlist);
  4215.     }
  4216.  
  4217.   /* objc_method_list = */
  4218.   if (!dispatch_table)
  4219.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4220.   else
  4221.     {
  4222.       expr = build_unary_op (ADDR_EXPR, dispatch_table, 0);
  4223.       initlist = tree_cons (NULL_TREE, expr, initlist);
  4224.     }
  4225.  
  4226.   if (flag_next_runtime)
  4227.     /* method_cache = */
  4228.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4229.   else
  4230.     {
  4231.       /* dtable = */
  4232.       initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4233.  
  4234.       /* subclass_list = */
  4235.       initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4236.  
  4237.       /* sibling_class = */
  4238.       initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4239.     }
  4240.  
  4241.   /* protocol_list = */
  4242.   if (! protocol_list)
  4243.     initlist = tree_cons (NULL_TREE, build_int_2 (0, 0), initlist);
  4244.   else
  4245.      {
  4246.      static tree cast_type2;
  4247.  
  4248.      if (!cast_type2)
  4249.         cast_type2
  4250.       = groktypename
  4251.         (build_tree_list
  4252.          (build_tree_list (NULL_TREE,
  4253.                    xref_tag (RECORD_TYPE,
  4254.                      get_identifier (UTAG_PROTOCOL))),
  4255.           build1 (INDIRECT_REF, NULL_TREE,
  4256.               build1 (INDIRECT_REF, NULL_TREE, NULL_TREE))));
  4257.  
  4258.      expr = build_unary_op (ADDR_EXPR, protocol_list, 0);
  4259.      TREE_TYPE (expr) = cast_type2;
  4260.      initlist = tree_cons (NULL_TREE, expr, initlist);
  4261.      }
  4262.  
  4263.   return build_constructor (type, nreverse (initlist));
  4264. }
  4265.  
  4266. /* static struct objc_category _OBJC_CATEGORY_<name> = { ... };  */
  4267. static void
  4268. generate_category (cat)
  4269.      tree cat;
  4270. {
  4271.   tree sc_spec, decl_specs, decl;
  4272.   tree initlist, cat_name_expr, class_name_expr;
  4273.   tree protocol_decl, category;
  4274.  
  4275.   add_class_reference (CLASS_NAME (cat));
  4276.   cat_name_expr = add_objc_string (CLASS_SUPER_NAME (cat), class_names);
  4277.  
  4278.   class_name_expr = add_objc_string (CLASS_NAME (cat), class_names);
  4279.  
  4280.   category = CLASS_CATEGORY_LIST (implementation_template);
  4281.  
  4282.   /* find the category interface from the class it is associated with */
  4283.   while (category)
  4284.     {
  4285.       if (CLASS_SUPER_NAME (cat) == CLASS_SUPER_NAME (category))
  4286.     break;
  4287.       category = CLASS_CATEGORY_LIST (category);
  4288.     }
  4289.  
  4290.   if (category && CLASS_PROTOCOL_LIST (category))
  4291.     {
  4292.       generate_protocol_references (CLASS_PROTOCOL_LIST (category));
  4293.       protocol_decl = generate_protocol_list (category);
  4294.     }
  4295.   else
  4296.     protocol_decl = 0;
  4297.  
  4298.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  4299.   decl_specs = tree_cons (NULL_TREE, objc_category_template, sc_spec);
  4300.  
  4301.   decl = start_decl (synth_id_with_class_suffix ("_OBJC_CATEGORY",
  4302.                          implementation_context),
  4303.              decl_specs, 1, NULL_TREE, NULL_TREE);
  4304.  
  4305.   initlist = build_category_initializer (TREE_TYPE (decl),
  4306.                      cat_name_expr, class_name_expr,
  4307.                      UOBJC_INSTANCE_METHODS_decl,
  4308.                      UOBJC_CLASS_METHODS_decl,
  4309.                      protocol_decl);
  4310.  
  4311.   TREE_USED (decl) = 1;
  4312.   finish_decl (decl, initlist, NULL_TREE);
  4313. }
  4314.  
  4315. /* static struct objc_class _OBJC_METACLASS_Foo={ ... };
  4316.    static struct objc_class _OBJC_CLASS_Foo={ ... };  */
  4317.  
  4318. static void
  4319. generate_shared_structures ()
  4320. {
  4321.   tree sc_spec, decl_specs, decl;
  4322.   tree name_expr, super_expr, root_expr;
  4323.   tree my_root_id = NULL_TREE, my_super_id = NULL_TREE;
  4324.   tree cast_type, initlist, protocol_decl;
  4325.  
  4326.   my_super_id = CLASS_SUPER_NAME (implementation_template);
  4327.   if (my_super_id)
  4328.     {
  4329.       add_class_reference (my_super_id);
  4330.  
  4331.       /* Compute "my_root_id" - this is required for code generation.
  4332.          the "isa" for all meta class structures points to the root of
  4333.          the inheritance hierarchy (e.g. "__Object")...  */
  4334.       my_root_id = my_super_id;
  4335.       do
  4336.     {
  4337.       tree my_root_int = lookup_interface (my_root_id);
  4338.  
  4339.       if (my_root_int && CLASS_SUPER_NAME (my_root_int))
  4340.         my_root_id = CLASS_SUPER_NAME (my_root_int);
  4341.       else
  4342.         break;
  4343.     }
  4344.       while (1);
  4345.     }
  4346.   else
  4347.     /* No super class. */
  4348.     my_root_id = CLASS_NAME (implementation_template);
  4349.  
  4350.   cast_type
  4351.     = groktypename (build_tree_list (build_tree_list (NULL_TREE,
  4352.                               objc_class_template),
  4353.                      build1 (INDIRECT_REF,
  4354.                          NULL_TREE, NULL_TREE)));
  4355.  
  4356.   name_expr = add_objc_string (CLASS_NAME (implementation_template),
  4357.                    class_names);
  4358.  
  4359.   /* Install class `isa' and `super' pointers at runtime. */
  4360.   if (my_super_id)
  4361.     {
  4362.       super_expr = add_objc_string (my_super_id, class_names);
  4363.       super_expr = build_c_cast (cast_type, super_expr); /* cast! */
  4364.     }
  4365.   else
  4366.     super_expr = build_int_2 (0, 0);
  4367.  
  4368.   root_expr = add_objc_string (my_root_id, class_names);
  4369.   root_expr = build_c_cast (cast_type, root_expr); /* cast! */
  4370.  
  4371.   if (CLASS_PROTOCOL_LIST (implementation_template))
  4372.     {
  4373.       generate_protocol_references
  4374.     (CLASS_PROTOCOL_LIST (implementation_template));
  4375.       protocol_decl = generate_protocol_list (implementation_template);
  4376.     }
  4377.   else
  4378.     protocol_decl = 0;
  4379.  
  4380.   /* static struct objc_class _OBJC_METACLASS_Foo = { ... }; */
  4381.  
  4382.   sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_STATIC]);
  4383.   decl_specs = tree_cons (NULL_TREE, objc_class_template, sc_spec);
  4384.  
  4385.   decl = start_decl (DECL_NAME (UOBJC_METACLASS_decl), decl_specs, 1,
  4386.              NULL_TREE, NULL_TREE);
  4387.  
  4388.   initlist
  4389.     = build_shared_structure_initializer
  4390.       (TREE_TYPE (decl),
  4391.        root_expr, super_expr, name_expr,
  4392.        build_int_2 ((TREE_INT_CST_LOW (TYPE_SIZE (objc_class_template))
  4393.             / BITS_PER_UNIT),
  4394.             0),
  4395.        2 /*CLS_META*/,
  4396.        UOBJC_CLASS_METHODS_decl,
  4397.        UOBJC_CLASS_VARIABLES_decl,
  4398.        protocol_decl);
  4399.  
  4400.   finish_decl (decl, initlist, NULL_TREE);
  4401.  
  4402.   /* static struct objc_class _OBJC_CLASS_Foo={ ... }; */
  4403.  
  4404.   decl = start_decl (DECL_NAME (UOBJC_CLASS_decl), decl_specs, 1,
  4405.              NULL_TREE, NULL_TREE);
  4406.  
  4407.   initlist
  4408.     = build_shared_structure_initializer
  4409.       (TREE_TYPE (decl),
  4410.        build_unary_op (ADDR_EXPR, UOBJC_METACLASS_decl, 0),
  4411.        super_expr, name_expr,
  4412.        build_int_2
  4413.        ((TREE_INT_CST_LOW
  4414.      (TYPE_SIZE (CLASS_STATIC_TEMPLATE (implementation_template)))
  4415.      / BITS_PER_UNIT),
  4416.     0),
  4417.        1 /*CLS_FACTORY*/,
  4418.        UOBJC_INSTANCE_METHODS_decl,
  4419.        UOBJC_INSTANCE_VARIABLES_decl,
  4420.        protocol_decl);
  4421.  
  4422.   finish_decl (decl, initlist, NULL_TREE);
  4423. }
  4424.  
  4425. static tree
  4426. synth_id_with_class_suffix (preamble, ctxt)
  4427.      char *preamble;
  4428.      tree ctxt;
  4429. {
  4430.   char *string;
  4431.   if (TREE_CODE (ctxt) == CLASS_IMPLEMENTATION_TYPE
  4432.       || TREE_CODE (ctxt) == CLASS_INTERFACE_TYPE)
  4433.     {
  4434.       char *class_name
  4435.     = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  4436.       string = (char *) alloca (strlen (preamble) + strlen (class_name) + 3);
  4437.       sprintf (string, "%s_%s", preamble,
  4438.            IDENTIFIER_POINTER (CLASS_NAME (ctxt)));
  4439.     }
  4440.   else if (TREE_CODE (ctxt) == CATEGORY_IMPLEMENTATION_TYPE
  4441.        || TREE_CODE (ctxt) == CATEGORY_INTERFACE_TYPE)
  4442.     {
  4443.       /* We have a category. */
  4444.       char *class_name
  4445.     = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  4446.       char *class_super_name
  4447.     = IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context));
  4448.       string = (char *) alloca (strlen (preamble)
  4449.                 + strlen (class_name)
  4450.                 + strlen (class_super_name)
  4451.                 + 3);
  4452.       sprintf (string, "%s_%s_%s", preamble, class_name, class_super_name);
  4453.     }
  4454.   else if (TREE_CODE (ctxt) == PROTOCOL_INTERFACE_TYPE)
  4455.     {
  4456.       char *protocol_name = IDENTIFIER_POINTER (PROTOCOL_NAME (ctxt));
  4457.       string
  4458.     = (char *) alloca (strlen (preamble) + strlen (protocol_name) + 3);
  4459.       sprintf (string, "%s_%s", preamble, protocol_name);
  4460.     }
  4461.   return get_identifier (string);
  4462. }
  4463.  
  4464. static int
  4465. is_objc_type_qualifier (node)
  4466.      tree node;
  4467. {
  4468.   return (TREE_CODE (node) == IDENTIFIER_NODE
  4469.       && (node == ridpointers [(int) RID_CONST]
  4470.           || node == ridpointers [(int) RID_VOLATILE]
  4471.           || node == ridpointers [(int) RID_IN]
  4472.           || node == ridpointers [(int) RID_OUT]
  4473.           || node == ridpointers [(int) RID_INOUT]
  4474.           || node == ridpointers [(int) RID_BYCOPY]
  4475.           || node == ridpointers [(int) RID_ONEWAY]));
  4476. }
  4477.  
  4478. /* If type is empty or only type qualifiers are present, add default
  4479.    type of id (otherwise grokdeclarator will default to int).  */
  4480.  
  4481. static tree
  4482. adjust_type_for_id_default (type)
  4483.      tree type;
  4484. {
  4485.   tree declspecs, chain;
  4486.  
  4487.   if (!type)
  4488.     return build_tree_list (build_tree_list (NULL_TREE, objc_object_reference),
  4489.                 build1 (INDIRECT_REF, NULL_TREE, NULL_TREE));
  4490.  
  4491.   declspecs = TREE_PURPOSE (type);
  4492.  
  4493.   /* Determine if a typespec is present.  */
  4494.   for (chain = declspecs;
  4495.        chain;
  4496.        chain = TREE_CHAIN (chain))
  4497.     {
  4498.       if (!is_objc_type_qualifier (TREE_VALUE (chain)))
  4499.     return type;
  4500.     }
  4501.  
  4502.   return build_tree_list (tree_cons (NULL_TREE, objc_object_reference,
  4503.                      declspecs),
  4504.               build1 (INDIRECT_REF, NULL_TREE, NULL_TREE));
  4505. }
  4506.  
  4507. /*   Usage:
  4508.           keyworddecl:
  4509.               selector ':' '(' typename ')' identifier
  4510.   
  4511.      Purpose:
  4512.           Transform an Objective-C keyword argument into
  4513.           the C equivalent parameter declarator.
  4514.   
  4515.      In:    key_name, an "identifier_node" (optional).
  4516.           arg_type, a  "tree_list" (optional).
  4517.           arg_name, an "identifier_node".
  4518.   
  4519.      Note:    It would be really nice to strongly type the preceding
  4520.           arguments in the function prototype; however, then I
  4521.           could not use the "accessor" macros defined in "tree.h".
  4522.   
  4523.      Out:    an instance of "keyword_decl".  */
  4524.  
  4525. tree
  4526. build_keyword_decl (key_name, arg_type, arg_name)
  4527.      tree key_name;
  4528.      tree arg_type;
  4529.      tree arg_name;
  4530. {
  4531.   tree keyword_decl;
  4532.  
  4533.   /* If no type is specified, default to "id". */
  4534.   arg_type = adjust_type_for_id_default (arg_type);
  4535.  
  4536.   keyword_decl = make_node (KEYWORD_DECL);
  4537.  
  4538.   TREE_TYPE (keyword_decl) = arg_type;
  4539.   KEYWORD_ARG_NAME (keyword_decl) = arg_name;
  4540.   KEYWORD_KEY_NAME (keyword_decl) = key_name;
  4541.  
  4542.   return keyword_decl;
  4543. }
  4544.  
  4545. /* Given a chain of keyword_decl's, synthesize the full keyword selector.  */
  4546.  
  4547. static tree
  4548. build_keyword_selector (selector)
  4549.      tree selector;
  4550. {
  4551.   int len = 0;
  4552.   tree key_chain, key_name;
  4553.   char *buf;
  4554.  
  4555.   for (key_chain = selector; key_chain; key_chain = TREE_CHAIN (key_chain))
  4556.     {
  4557.       if (TREE_CODE (selector) == KEYWORD_DECL)
  4558.     key_name = KEYWORD_KEY_NAME (key_chain);
  4559.       else if (TREE_CODE (selector) == TREE_LIST)
  4560.     key_name = TREE_PURPOSE (key_chain);
  4561.  
  4562.       if (key_name)
  4563.     len += IDENTIFIER_LENGTH (key_name) + 1;
  4564.       else
  4565.     /* Just a ':' arg. */
  4566.     len++;
  4567.     }
  4568.  
  4569.   buf = (char *)alloca (len + 1);
  4570.   bzero (buf, len + 1);
  4571.  
  4572.   for (key_chain = selector; key_chain; key_chain = TREE_CHAIN (key_chain))
  4573.     {
  4574.       if (TREE_CODE (selector) == KEYWORD_DECL)
  4575.     key_name = KEYWORD_KEY_NAME (key_chain);
  4576.       else if (TREE_CODE (selector) == TREE_LIST)
  4577.     key_name = TREE_PURPOSE (key_chain);
  4578.  
  4579.       if (key_name)
  4580.     strcat (buf, IDENTIFIER_POINTER (key_name));
  4581.       strcat (buf, ":");
  4582.     }
  4583.  
  4584.   return get_identifier (buf);
  4585. }
  4586.  
  4587. /* Used for declarations and definitions. */
  4588.  
  4589. tree
  4590. build_method_decl (code, ret_type, selector, add_args)
  4591.      enum tree_code code;
  4592.      tree ret_type;
  4593.      tree selector;
  4594.      tree add_args;
  4595. {
  4596.   tree method_decl;
  4597.  
  4598.   /* If no type is specified, default to "id". */
  4599.   ret_type = adjust_type_for_id_default (ret_type);
  4600.  
  4601.   method_decl = make_node (code);
  4602.   TREE_TYPE (method_decl) = ret_type;
  4603.  
  4604.   /* If we have a keyword selector, create an identifier_node that
  4605.      represents the full selector name (`:' included)...  */
  4606.   if (TREE_CODE (selector) == KEYWORD_DECL)
  4607.     {
  4608.       METHOD_SEL_NAME (method_decl) = build_keyword_selector (selector);
  4609.       METHOD_SEL_ARGS (method_decl) = selector;
  4610.       METHOD_ADD_ARGS (method_decl) = add_args;
  4611.     }
  4612.   else
  4613.     {
  4614.       METHOD_SEL_NAME (method_decl) = selector;
  4615.       METHOD_SEL_ARGS (method_decl) = NULL_TREE;
  4616.       METHOD_ADD_ARGS (method_decl) = NULL_TREE;
  4617.     }
  4618.  
  4619.   return method_decl;
  4620. }
  4621.  
  4622. #define METHOD_DEF 0
  4623. #define METHOD_REF 1
  4624.  
  4625. /* Used by `build_message_expr' and `comp_method_types'.  Return an
  4626.    argument list for method METH.  CONTEXT is either METHOD_DEF or
  4627.    METHOD_REF, saying whether we are trying to define a method or call
  4628.    one.  SUPERFLAG says this is for a send to super; this makes a
  4629.    difference for the NeXT calling sequence in which the lookup and
  4630.    the method call are done together.  */
  4631.  
  4632. static tree
  4633. get_arg_type_list (meth, context, superflag)
  4634.      tree meth;
  4635.      int context;
  4636.      int superflag;
  4637. {
  4638.   tree arglist, akey;
  4639.  
  4640.   /* Receiver type. */
  4641.   if (flag_next_runtime && superflag)
  4642.     arglist = build_tree_list (NULL_TREE, super_type);
  4643.   else if (context == METHOD_DEF)
  4644.     arglist = build_tree_list (NULL_TREE, TREE_TYPE (self_decl));
  4645.   else
  4646.     arglist = build_tree_list (NULL_TREE, id_type);
  4647.  
  4648.   /* Selector type - will eventually change to `int'. */
  4649.   chainon (arglist, build_tree_list (NULL_TREE, selector_type));
  4650.  
  4651.   /* Build a list of argument types. */
  4652.   for (akey = METHOD_SEL_ARGS (meth); akey; akey = TREE_CHAIN (akey))
  4653.     {
  4654.       tree arg_decl = groktypename_in_parm_context (TREE_TYPE (akey));
  4655.       chainon (arglist, build_tree_list (NULL_TREE, TREE_TYPE (arg_decl)));
  4656.     }
  4657.  
  4658.   if (METHOD_ADD_ARGS (meth) == (tree)1)
  4659.     /* We have a `, ...' immediately following the selector,
  4660.        finalize the arglist...simulate get_parm_info (0).  */
  4661.     ;
  4662.   else if (METHOD_ADD_ARGS (meth))
  4663.     {
  4664.       /* we have a variable length selector */
  4665.       tree add_arg_list = TREE_CHAIN (METHOD_ADD_ARGS (meth));
  4666.       chainon (arglist, add_arg_list);
  4667.     }
  4668.   else
  4669.     /* finalize the arglist...simulate get_parm_info (1) */
  4670.     chainon (arglist, build_tree_list (NULL_TREE, void_type_node));
  4671.  
  4672.   return arglist;
  4673. }
  4674.  
  4675. static tree
  4676. check_duplicates (hsh)
  4677.      hash hsh;
  4678. {
  4679.   tree meth = NULL_TREE;
  4680.  
  4681.   if (hsh)
  4682.     {
  4683.       meth = hsh->key;
  4684.  
  4685.       if (hsh->list)
  4686.         {
  4687.       /* We have two methods with the same name and different types. */
  4688.       attr loop;
  4689.       char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL) ? '-' : '+';
  4690.  
  4691.       warning ("multiple declarations for method `%s'",
  4692.            IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  4693.  
  4694.       warn_with_method ("using", type, meth);
  4695.       for (loop = hsh->list; loop; loop = loop->next)
  4696.         warn_with_method ("also found", type, loop->value);
  4697.         }
  4698.     }
  4699.   return meth;
  4700. }
  4701.  
  4702. /* If RECEIVER is a class reference, return the identifier node for the
  4703.    referenced class.  RECEIVER is created by get_class_reference, so we
  4704.    check the exact form created depending on which runtimes are used.  */
  4705.  
  4706. static tree
  4707. receiver_is_class_object (receiver)
  4708.       tree receiver;
  4709. {
  4710.   tree chain, exp, arg;
  4711.   if (flag_next_runtime)
  4712.     {
  4713.       /* The receiver is a variable created by build_class_reference_decl.  */
  4714.       if (TREE_CODE (receiver) == VAR_DECL
  4715.       && TREE_TYPE (receiver) == objc_class_type)
  4716.     /* Look up the identifier. */
  4717.     for (chain = cls_ref_chain; chain; chain = TREE_CHAIN (chain))
  4718.       if (TREE_PURPOSE (chain) == receiver)
  4719.         return TREE_VALUE (chain);
  4720.     }
  4721.   else
  4722.     {
  4723.       /* The receiver is a function call that returns an id.  Check if
  4724.      it is a call to objc_getClass, if so, pick up the class name.  */
  4725.       if ((exp = TREE_OPERAND (receiver, 0))
  4726.       && TREE_CODE (exp) == ADDR_EXPR
  4727.       && (exp = TREE_OPERAND (exp, 0))
  4728.       && TREE_CODE (exp) == FUNCTION_DECL
  4729.       && exp == objc_get_class_decl
  4730.       /* we have a call to objc_getClass! */
  4731.       && (arg = TREE_OPERAND (receiver, 1))
  4732.       && TREE_CODE (arg) == TREE_LIST
  4733.       && (arg = TREE_VALUE (arg)))
  4734.     {
  4735.       STRIP_NOPS (arg);
  4736.       if (TREE_CODE (arg) == ADDR_EXPR
  4737.           && (arg = TREE_OPERAND (arg, 0))
  4738.           && TREE_CODE (arg) == STRING_CST)
  4739.         /* Finally, we have the class name.  */
  4740.         return get_identifier (TREE_STRING_POINTER (arg));
  4741.     }
  4742.     }
  4743.   return 0;
  4744. }
  4745.  
  4746. /* If we are currently building a message expr, this holds
  4747.    the identifier of the selector of the message.  This is
  4748.    used when printing warnings about argument mismatches. */
  4749.  
  4750. static tree building_objc_message_expr = 0;
  4751.  
  4752. tree
  4753. maybe_building_objc_message_expr ()
  4754. {
  4755.   return building_objc_message_expr;
  4756. }
  4757.  
  4758. /* Construct an expression for sending a message.
  4759.    MESS has the object to send to in TREE_PURPOSE
  4760.    and the argument list (including selector) in TREE_VALUE.
  4761.  
  4762.    (*(<abstract_decl>(*)())_msg)(receiver, selTransTbl[n], ...);
  4763.    (*(<abstract_decl>(*)())_msgSuper)(receiver, selTransTbl[n], ...);  */
  4764.  
  4765. tree
  4766. build_message_expr (mess)
  4767.      tree mess;
  4768. {
  4769.   tree receiver = TREE_PURPOSE (mess);
  4770.   tree selector, self_object;
  4771.   tree rtype, sel_name;
  4772.   tree args = TREE_VALUE (mess);
  4773.   tree method_params = NULL_TREE;
  4774.   tree method_prototype = NULL_TREE;
  4775.   tree retval;
  4776.   int statically_typed = 0, statically_allocated = 0;
  4777.   tree class_ident = 0;
  4778.  
  4779.   /* 1 if this is sending to the superclass.  */
  4780.   int super;
  4781.  
  4782.   if (!doing_objc_thang)
  4783.     objc_fatal ();
  4784.  
  4785.   if (TREE_CODE (receiver) == ERROR_MARK)
  4786.     return error_mark_node;
  4787.  
  4788.   /* Determine receiver type. */
  4789.   rtype = TREE_TYPE (receiver);
  4790.   super = IS_SUPER (rtype);
  4791.  
  4792.   if (! super)
  4793.     {
  4794.       if (TREE_STATIC_TEMPLATE (rtype))
  4795.     statically_allocated = 1;
  4796.       else if (TREE_CODE (rtype) == POINTER_TYPE
  4797.            && TREE_STATIC_TEMPLATE (TREE_TYPE (rtype)))
  4798.     statically_typed = 1;
  4799.       else if ((flag_next_runtime
  4800.         || (TREE_CODE (receiver) == CALL_EXPR && IS_ID (rtype)))
  4801.            && (class_ident = receiver_is_class_object (receiver)))
  4802.     ;
  4803.       else if (! IS_ID (rtype)
  4804.            /* Allow any type that matches objc_class_type.  */
  4805.            && ! comptypes (rtype, objc_class_type))
  4806.     {
  4807.       bzero (errbuf, BUFSIZE);
  4808.       warning ("invalid receiver type `%s'",
  4809.            gen_declaration (rtype, errbuf));
  4810.     }
  4811.  
  4812.       if (statically_allocated)
  4813.     receiver = build_unary_op (ADDR_EXPR, receiver, 0);
  4814.  
  4815.       /* Don't evaluate the receiver twice. */
  4816.       receiver = save_expr (receiver);
  4817.       self_object = receiver;
  4818.     }
  4819.   else
  4820.     /* If sending to `super', use current self as the object.  */
  4821.     self_object = self_decl;
  4822.  
  4823.   /* Obtain the full selector name.  */
  4824.  
  4825.   if (TREE_CODE (args) == IDENTIFIER_NODE)
  4826.     /* A unary selector. */
  4827.     sel_name = args;
  4828.   else if (TREE_CODE (args) == TREE_LIST)
  4829.     sel_name = build_keyword_selector (args);
  4830.  
  4831.   /* Build the parameter list to give to the method.  */
  4832.  
  4833.   method_params = NULL_TREE;
  4834.   if (TREE_CODE (args) == TREE_LIST)
  4835.     {
  4836.       tree chain = args, prev = NULL_TREE;
  4837.  
  4838.       /* We have a keyword selector--check for comma expressions.  */
  4839.       while (chain)
  4840.     {
  4841.       tree element = TREE_VALUE (chain);
  4842.  
  4843.       /* We have a comma expression, must collapse...  */
  4844.       if (TREE_CODE (element) == TREE_LIST)
  4845.         {
  4846.           if (prev)
  4847.         TREE_CHAIN (prev) = element;
  4848.           else
  4849.         args = element;
  4850.         }
  4851.       prev = chain;
  4852.       chain = TREE_CHAIN (chain);
  4853.         }
  4854.       method_params = args;
  4855.     }
  4856.  
  4857.   /* Determine operation return type.  */
  4858.  
  4859.   if (IS_SUPER (rtype))
  4860.     {
  4861.       tree iface;
  4862.  
  4863.       if (CLASS_SUPER_NAME (implementation_template))
  4864.     {
  4865.       iface
  4866.         = lookup_interface (CLASS_SUPER_NAME (implementation_template));
  4867.  
  4868.       if (TREE_CODE (method_context) == INSTANCE_METHOD_DECL)
  4869.         method_prototype = lookup_instance_method_static (iface, sel_name);
  4870.       else
  4871.         method_prototype = lookup_class_method_static (iface, sel_name);
  4872.  
  4873.       if (iface && !method_prototype)
  4874.         warning ("`%s' does not respond to `%s'",
  4875.              IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_template)),
  4876.              IDENTIFIER_POINTER (sel_name));
  4877.     }
  4878.       else
  4879.     {
  4880.       error ("no super class declared in interface for `%s'",
  4881.          IDENTIFIER_POINTER (CLASS_NAME (implementation_template)));
  4882.       return error_mark_node;
  4883.     }
  4884.  
  4885.     }
  4886.   else if (statically_allocated)
  4887.     {
  4888.       tree ctype = TREE_TYPE (rtype);
  4889.       tree iface = lookup_interface (TYPE_NAME (rtype));
  4890.  
  4891.       if (iface)
  4892.     method_prototype = lookup_instance_method_static (iface, sel_name);
  4893.  
  4894.       if (! method_prototype && TYPE_PROTOCOL_LIST (ctype))
  4895.     method_prototype
  4896.       = lookup_method_in_protocol_list (TYPE_PROTOCOL_LIST (ctype),
  4897.                         sel_name, 0);
  4898.  
  4899.       if (!method_prototype)
  4900.     warning ("`%s' does not respond to `%s'",
  4901.          IDENTIFIER_POINTER (TYPE_NAME (rtype)),
  4902.          IDENTIFIER_POINTER (sel_name));
  4903.     }
  4904.   else if (statically_typed)
  4905.     {
  4906.       tree ctype = TREE_TYPE (rtype);
  4907.  
  4908.       /* `self' is now statically_typed.  All methods should be visible
  4909.          within the context of the implementation.  */
  4910.       if (implementation_context
  4911.       && CLASS_NAME (implementation_context) == TYPE_NAME (ctype))
  4912.     {
  4913.       method_prototype
  4914.         = lookup_instance_method_static (implementation_template,
  4915.                          sel_name);
  4916.  
  4917.       if (! method_prototype && TYPE_PROTOCOL_LIST (ctype))
  4918.         method_prototype
  4919.           = lookup_method_in_protocol_list (TYPE_PROTOCOL_LIST (ctype),
  4920.                         sel_name, 0);
  4921.  
  4922.       if (! method_prototype
  4923.           && implementation_template != implementation_context)
  4924.         /* The method is not published in the interface.  Check locally. */
  4925.         method_prototype
  4926.           = lookup_method (CLASS_NST_METHODS (implementation_context),
  4927.                    sel_name);
  4928.     }
  4929.       else
  4930.     {
  4931.       tree iface;
  4932.  
  4933.       if ((iface = lookup_interface (TYPE_NAME (ctype))))
  4934.         method_prototype = lookup_instance_method_static (iface, sel_name);
  4935.  
  4936.           if (! method_prototype)
  4937.         {
  4938.           tree protocol_list = TYPE_PROTOCOL_LIST (ctype);
  4939.           if (protocol_list)
  4940.         method_prototype
  4941.           = lookup_method_in_protocol_list (protocol_list,
  4942.                             sel_name, 0);
  4943.         }
  4944.     }
  4945.  
  4946.       if (!method_prototype)
  4947.         warning ("`%s' does not respond to `%s'",
  4948.          IDENTIFIER_POINTER (TYPE_NAME (ctype)),
  4949.          IDENTIFIER_POINTER (sel_name));
  4950.     }
  4951.   else if (class_ident)
  4952.     {
  4953.       if (implementation_context
  4954.       && CLASS_NAME (implementation_context) == class_ident)
  4955.     {
  4956.       method_prototype
  4957.         = lookup_class_method_static (implementation_template, sel_name);
  4958.  
  4959.       if (!method_prototype
  4960.           && implementation_template != implementation_context)
  4961.         /* The method is not published in the interface. Check locally. */
  4962.         method_prototype
  4963.           = lookup_method (CLASS_CLS_METHODS (implementation_context),
  4964.                    sel_name);
  4965.     }
  4966.       else
  4967.     {
  4968.       tree iface;
  4969.  
  4970.       if ((iface = lookup_interface (class_ident)))
  4971.         method_prototype = lookup_class_method_static (iface, sel_name);
  4972.     }
  4973.  
  4974.       if (!method_prototype)
  4975.     {
  4976.       warning ("cannot find class (factory) method.");
  4977.       warning ("return type for `%s' defaults to id",
  4978.            IDENTIFIER_POINTER (sel_name));
  4979.     }
  4980.     }
  4981.   else if (IS_PROTOCOL_QUALIFIED_ID (rtype))
  4982.     {
  4983.       /* An anonymous object that has been qualified with a protocol.  */
  4984.  
  4985.       tree protocol_list = TYPE_PROTOCOL_LIST (rtype);
  4986.  
  4987.       method_prototype = lookup_method_in_protocol_list (protocol_list,
  4988.                              sel_name, 0);
  4989.  
  4990.       if (!method_prototype)
  4991.     {
  4992.           hash hsh;
  4993.  
  4994.       warning ("method `%s' not implemented by protocol.",
  4995.            IDENTIFIER_POINTER (sel_name));
  4996.  
  4997.           /* Try and find the method signature in the global pools. */
  4998.  
  4999.           if (!(hsh = hash_lookup (nst_method_hash_list, sel_name)))
  5000.         hsh = hash_lookup (cls_method_hash_list, sel_name);
  5001.  
  5002.           if (!(method_prototype = check_duplicates (hsh)))
  5003.         warning ("return type defaults to id");
  5004.     }
  5005.     }
  5006.   else
  5007.     {
  5008.       hash hsh;
  5009.  
  5010.       /* We think we have an instance...loophole: extern id Object; */
  5011.       hsh = hash_lookup (nst_method_hash_list, sel_name);
  5012.       if (!hsh)
  5013.     /* For various loopholes, like sending messages to self in a
  5014.        factory context. */
  5015.     hsh = hash_lookup (cls_method_hash_list, sel_name);
  5016.  
  5017.       method_prototype = check_duplicates (hsh);
  5018.       if (!method_prototype)
  5019.     {
  5020.       warning ("cannot find method.");
  5021.       warning ("return type for `%s' defaults to id",
  5022.            IDENTIFIER_POINTER (sel_name));
  5023.     }
  5024.     }
  5025.  
  5026.   /* Save the selector name for printing error messages.  */
  5027.   building_objc_message_expr = sel_name;
  5028.  
  5029.   /* Build the parameters list for looking up the method.
  5030.      These are the object itself and the selector.  */
  5031.  
  5032.   if (flag_typed_selectors)
  5033.     selector = build_typed_selector_reference (sel_name, method_prototype);
  5034.   else
  5035.     selector = build_selector_reference (sel_name);
  5036.  
  5037.   retval = build_objc_method_call (super, method_prototype,
  5038.                    receiver, self_object,
  5039.                    selector, method_params);
  5040.  
  5041.   building_objc_message_expr = 0;
  5042.  
  5043.   return retval;
  5044. }
  5045.  
  5046. /* Build a tree expression to send OBJECT the operation SELECTOR,
  5047.    looking up the method on object LOOKUP_OBJECT (often same as OBJECT),
  5048.    assuming the method has prototype METHOD_PROTOTYPE.
  5049.    (That is an INSTANCE_METHOD_DECL or CLASS_METHOD_DECL.)
  5050.    Use METHOD_PARAMS as list of args to pass to the method.
  5051.    If SUPER_FLAG is nonzero, we look up the superclass's method.  */
  5052.  
  5053. static tree
  5054. build_objc_method_call (super_flag, method_prototype, lookup_object, object,
  5055.             selector, method_params)
  5056.      int super_flag;
  5057.      tree method_prototype, lookup_object, object, selector, method_params;
  5058. {
  5059.   tree sender = (super_flag ? umsg_super_decl : umsg_decl);
  5060.   tree rcv_p = (super_flag
  5061.         ? build_pointer_type (xref_tag (RECORD_TYPE,
  5062.                         get_identifier (TAG_SUPER)))
  5063.         : id_type);
  5064.  
  5065.   if (flag_next_runtime)
  5066.     {
  5067.       if (! method_prototype)
  5068.     {
  5069.       method_params = tree_cons (NULL_TREE, lookup_object,
  5070.                      tree_cons (NULL_TREE, selector,
  5071.                         method_params));
  5072.       assemble_external (sender);
  5073.       return build_function_call (sender, method_params);
  5074.     }
  5075.       else
  5076.     {
  5077.       /* This is a real kludge, but it is used only for the Next.
  5078.          Clobber the data type of SENDER temporarily to accept
  5079.          all the arguments for this operation, and to return
  5080.          whatever this operation returns.  */
  5081.       tree arglist = NULL_TREE;
  5082.       tree retval;
  5083.  
  5084.       /* Save the proper contents of SENDER's data type.  */
  5085.       tree savarg = TYPE_ARG_TYPES (TREE_TYPE (sender));
  5086.       tree savret = TREE_TYPE (TREE_TYPE (sender));
  5087.  
  5088.       /* Install this method's argument types.  */
  5089.       arglist = get_arg_type_list (method_prototype, METHOD_REF,
  5090.                        super_flag);
  5091.       TYPE_ARG_TYPES (TREE_TYPE (sender)) = arglist;
  5092.  
  5093.       /* Install this method's return type.  */
  5094.       TREE_TYPE (TREE_TYPE (sender))
  5095.         = groktypename (TREE_TYPE (method_prototype));
  5096.  
  5097.       /* Call SENDER with all the parameters.  This will do type
  5098.          checking using the arg types for this method.  */
  5099.       method_params = tree_cons (NULL_TREE, lookup_object,
  5100.                      tree_cons (NULL_TREE, selector,
  5101.                         method_params));
  5102.       assemble_external (sender);
  5103.       retval = build_function_call (sender, method_params);
  5104.  
  5105.       /* Restore SENDER's return/argument types.  */
  5106.       TYPE_ARG_TYPES (TREE_TYPE (sender)) = savarg;
  5107.       TREE_TYPE (TREE_TYPE (sender)) = savret;
  5108.       return retval;
  5109.     }
  5110.     }
  5111.   else
  5112.     {
  5113.       /* This is the portable way.
  5114.      First call the lookup function to get a pointer to the method,
  5115.      then cast the pointer, then call it with the method arguments.  */
  5116.       tree method;
  5117.  
  5118.       /* Avoid trouble since we may evaluate each of these twice.  */
  5119.       object = save_expr (object);
  5120.       selector = save_expr (selector);
  5121.  
  5122.       lookup_object = build_c_cast (rcv_p, lookup_object);
  5123.  
  5124.       assemble_external (sender);
  5125.       method
  5126.     = build_function_call (sender,
  5127.                    tree_cons (NULL_TREE, lookup_object,
  5128.                       tree_cons (NULL_TREE, selector,
  5129.                              NULL_TREE)));
  5130.  
  5131.       /* If we have a method prototype, construct the data type this
  5132.      method needs, and cast what we got from SENDER into a pointer
  5133.      to that type.  */
  5134.       if (method_prototype)
  5135.     {
  5136.       tree arglist = get_arg_type_list (method_prototype, METHOD_REF,
  5137.                         super_flag);
  5138.       tree valtype = groktypename (TREE_TYPE (method_prototype));
  5139.       tree fake_function_type = build_function_type (valtype, arglist);
  5140.       TREE_TYPE (method) = build_pointer_type (fake_function_type);
  5141.     }
  5142.       else
  5143.     TREE_TYPE (method)
  5144.       = build_pointer_type (build_function_type (ptr_type_node, NULL_TREE));
  5145.  
  5146.       /* Pass the object to the method.  */
  5147.       assemble_external (method);
  5148.       return build_function_call (method,
  5149.                   tree_cons (NULL_TREE, object,
  5150.                          tree_cons (NULL_TREE, selector,
  5151.                             method_params)));
  5152.     }
  5153. }
  5154.  
  5155. static void
  5156. build_protocol_reference (p)
  5157.      tree p;
  5158. {
  5159.   tree decl, ident, ptype;
  5160.  
  5161.   push_obstacks_nochange ();
  5162.   end_temporary_allocation ();
  5163.  
  5164.   /* extern struct objc_protocol _OBJC_PROTOCOL_<mumble>; */
  5165.  
  5166.   ident = synth_id_with_class_suffix ("_OBJC_PROTOCOL", p);
  5167.   ptype
  5168.     = groktypename (build_tree_list (build_tree_list (NULL_TREE,
  5169.                               objc_protocol_template),
  5170.                      NULL_TREE));
  5171.  
  5172.   if (IDENTIFIER_GLOBAL_VALUE (ident))
  5173.     decl = IDENTIFIER_GLOBAL_VALUE (ident); /* Set by pushdecl.  */
  5174.   else
  5175.     {
  5176.       decl = build_decl (VAR_DECL, ident, ptype);
  5177.       DECL_EXTERNAL (decl) = 1;
  5178.       TREE_PUBLIC (decl) = 1;
  5179.       TREE_USED (decl) = 1;
  5180.       DECL_ARTIFICIAL (decl) = 1;
  5181.  
  5182.       make_decl_rtl (decl, 0, 1);
  5183.       pushdecl_top_level (decl);
  5184.    }
  5185.  
  5186.   PROTOCOL_FORWARD_DECL (p) = decl;
  5187.   pop_obstacks ();
  5188. }
  5189.  
  5190. tree
  5191. build_protocol_expr (protoname)
  5192.      tree protoname;
  5193. {
  5194.   tree expr;
  5195.   tree p;
  5196.  
  5197.   if (!doing_objc_thang)
  5198.     objc_fatal ();
  5199.  
  5200.   p = lookup_protocol (protoname);
  5201.  
  5202.   if (!p)
  5203.     {
  5204.       error ("Cannot find protocol declaration for `%s'",
  5205.          IDENTIFIER_POINTER (protoname));
  5206.       return error_mark_node;
  5207.     }
  5208.  
  5209.   if (!PROTOCOL_FORWARD_DECL (p))
  5210.     build_protocol_reference (p);
  5211.  
  5212.   expr = build_unary_op (ADDR_EXPR, PROTOCOL_FORWARD_DECL (p), 0);
  5213.  
  5214.   TREE_TYPE (expr) = protocol_type;
  5215.  
  5216.   return expr;
  5217. }
  5218.  
  5219. tree
  5220. build_selector_expr (selnamelist)
  5221.      tree selnamelist;
  5222. {
  5223.   tree selname;
  5224.  
  5225.   if (!doing_objc_thang)
  5226.     objc_fatal ();
  5227.  
  5228.   /* Obtain the full selector name. */
  5229.   if (TREE_CODE (selnamelist) == IDENTIFIER_NODE)
  5230.     /* A unary selector. */
  5231.     selname = selnamelist;
  5232.   else if (TREE_CODE (selnamelist) == TREE_LIST)
  5233.     selname = build_keyword_selector (selnamelist);
  5234.  
  5235.   if (flag_typed_selectors)
  5236.     return build_typed_selector_reference (selname, 0);
  5237.   else
  5238.     return build_selector_reference (selname);
  5239. }
  5240.  
  5241. tree
  5242. build_encode_expr (type)
  5243.      tree type;
  5244. {
  5245.   tree result;
  5246.   char *string;
  5247.  
  5248.   if (!doing_objc_thang)
  5249.     objc_fatal ();
  5250.  
  5251.   encode_type (type, obstack_object_size (&util_obstack),
  5252.            OBJC_ENCODE_INLINE_DEFS);
  5253.   obstack_1grow (&util_obstack, 0);    /* null terminate string */
  5254.   string = obstack_finish (&util_obstack);
  5255.  
  5256.   /* Synthesize a string that represents the encoded struct/union. */
  5257.   result = my_build_string (strlen (string) + 1, string);
  5258.   obstack_free (&util_obstack, util_firstobj);
  5259.   return result;
  5260. }
  5261.  
  5262. tree
  5263. build_ivar_reference (id)
  5264.      tree id;
  5265. {
  5266.   if (TREE_CODE (method_context) == CLASS_METHOD_DECL)
  5267.     {
  5268.       /* Historically, a class method that produced objects (factory
  5269.      method) would assign `self' to the instance that it
  5270.      allocated.  This would effectively turn the class method into
  5271.      an instance method.  Following this assignment, the instance
  5272.      variables could be accessed.  That practice, while safe,
  5273.      violates the simple rule that a class method should not refer
  5274.      to an instance variable.  It's better to catch the cases
  5275.      where this is done unknowingly than to support the above
  5276.      paradigm.  */
  5277.       warning ("instance variable `%s' accessed in class method",
  5278.            IDENTIFIER_POINTER (id));
  5279.       TREE_TYPE (self_decl) = instance_type; /* cast */
  5280.     }
  5281.  
  5282.   return build_component_ref (build_indirect_ref (self_decl, "->"), id);
  5283. }
  5284.  
  5285. #define HASH_ALLOC_LIST_SIZE    170
  5286. #define ATTR_ALLOC_LIST_SIZE    170
  5287. #define SIZEHASHTABLE         257
  5288.  
  5289. /* make positive */
  5290. #define HASHFUNCTION(key)    ((HOST_WIDE_INT) key & 0x7fffffff)
  5291.  
  5292. static void
  5293. hash_init ()
  5294. {
  5295.   nst_method_hash_list = (hash *)xmalloc (SIZEHASHTABLE * sizeof (hash));
  5296.   cls_method_hash_list = (hash *)xmalloc (SIZEHASHTABLE * sizeof (hash));
  5297.  
  5298.   if (!nst_method_hash_list || !cls_method_hash_list)
  5299.     perror ("unable to allocate space in objc-tree.c");
  5300.   else
  5301.     {
  5302.       int i;
  5303.  
  5304.       for (i = 0; i < SIZEHASHTABLE; i++)
  5305.     {
  5306.       nst_method_hash_list[i] = 0;
  5307.       cls_method_hash_list[i] = 0;
  5308.     }
  5309.     }
  5310. }
  5311.  
  5312. static void
  5313. hash_enter (hashlist, method)
  5314.      hash *hashlist;
  5315.      tree method;
  5316. {
  5317.   static hash     hash_alloc_list = 0;
  5318.   static int    hash_alloc_index = 0;
  5319.   hash obj;
  5320.   int slot = HASHFUNCTION (METHOD_SEL_NAME (method)) % SIZEHASHTABLE;
  5321.  
  5322.   if (! hash_alloc_list || hash_alloc_index >= HASH_ALLOC_LIST_SIZE)
  5323.     {
  5324.       hash_alloc_index = 0;
  5325.       hash_alloc_list = (hash) xmalloc (sizeof (struct hashed_entry)
  5326.                     * HASH_ALLOC_LIST_SIZE);
  5327.       if (! hash_alloc_list)
  5328.     perror ("unable to allocate in objc-tree.c");
  5329.     }
  5330.   obj = &hash_alloc_list[hash_alloc_index++];
  5331.   obj->list = 0;
  5332.   obj->next = hashlist[slot];
  5333.   obj->key = method;
  5334.  
  5335.   hashlist[slot] = obj;        /* append to front */
  5336. }
  5337.  
  5338. static hash
  5339. hash_lookup (hashlist, sel_name)
  5340.      hash *hashlist;
  5341.      tree sel_name;
  5342. {
  5343.   hash target;
  5344.  
  5345.   target = hashlist[HASHFUNCTION (sel_name) % SIZEHASHTABLE];
  5346.  
  5347.   while (target)
  5348.     {
  5349.       if (sel_name == METHOD_SEL_NAME (target->key))
  5350.     return target;
  5351.  
  5352.       target = target->next;
  5353.     }
  5354.   return 0;
  5355. }
  5356.  
  5357. static void
  5358. hash_add_attr (entry, value)
  5359.      hash entry;
  5360.      tree value;
  5361. {
  5362.   static attr     attr_alloc_list = 0;
  5363.   static int    attr_alloc_index = 0;
  5364.   attr obj;
  5365.  
  5366.   if (! attr_alloc_list || attr_alloc_index >= ATTR_ALLOC_LIST_SIZE)
  5367.     {
  5368.       attr_alloc_index = 0;
  5369.       attr_alloc_list = (attr) xmalloc (sizeof (struct hashed_attribute)
  5370.                     * ATTR_ALLOC_LIST_SIZE);
  5371.       if (! attr_alloc_list)
  5372.     perror ("unable to allocate in objc-tree.c");
  5373.     }
  5374.   obj = &attr_alloc_list[attr_alloc_index++];
  5375.   obj->next = entry->list;
  5376.   obj->value = value;
  5377.  
  5378.   entry->list = obj;        /* append to front */
  5379. }
  5380.  
  5381. static tree
  5382. lookup_method (mchain, method)
  5383.      tree mchain;
  5384.      tree method;
  5385. {
  5386.   tree key;
  5387.  
  5388.   if (TREE_CODE (method) == IDENTIFIER_NODE)
  5389.     key = method;
  5390.   else
  5391.     key = METHOD_SEL_NAME (method);
  5392.  
  5393.   while (mchain)
  5394.     {
  5395.       if (METHOD_SEL_NAME (mchain) == key)
  5396.     return mchain;
  5397.       mchain = TREE_CHAIN (mchain);
  5398.     }
  5399.   return NULL_TREE;
  5400. }
  5401.  
  5402. static tree
  5403. lookup_instance_method_static (interface, ident)
  5404.      tree interface;
  5405.      tree ident;
  5406. {
  5407.   tree inter = interface;
  5408.   tree chain = CLASS_NST_METHODS (inter);
  5409.   tree meth = NULL_TREE;
  5410.  
  5411.   do
  5412.     {
  5413.       if ((meth = lookup_method (chain, ident)))
  5414.     return meth;
  5415.  
  5416.       if (CLASS_CATEGORY_LIST (inter))
  5417.     {
  5418.       tree category = CLASS_CATEGORY_LIST (inter);
  5419.       chain = CLASS_NST_METHODS (category);
  5420.  
  5421.       do
  5422.         {
  5423.           if ((meth = lookup_method (chain, ident)))
  5424.         return meth;
  5425.  
  5426.           /* Check for instance methods in protocols in categories.  */
  5427.           if (CLASS_PROTOCOL_LIST (category))
  5428.         {
  5429.           if ((meth = (lookup_method_in_protocol_list
  5430.                    (CLASS_PROTOCOL_LIST (category), ident, 0))))
  5431.             return meth;
  5432.         }
  5433.  
  5434.           if ((category = CLASS_CATEGORY_LIST (category)))
  5435.         chain = CLASS_NST_METHODS (category);
  5436.         }
  5437.       while (category);
  5438.     }
  5439.  
  5440.       if (CLASS_PROTOCOL_LIST (inter))
  5441.     {
  5442.       if ((meth = (lookup_method_in_protocol_list
  5443.                (CLASS_PROTOCOL_LIST (inter), ident, 0))))
  5444.         return meth;
  5445.     }
  5446.  
  5447.       if ((inter = lookup_interface (CLASS_SUPER_NAME (inter))))
  5448.     chain = CLASS_NST_METHODS (inter);
  5449.     }
  5450.   while (inter);
  5451.  
  5452.   return meth;
  5453. }
  5454.  
  5455. static tree
  5456. lookup_class_method_static (interface, ident)
  5457.      tree interface;
  5458.      tree ident;
  5459. {
  5460.   tree inter = interface;
  5461.   tree chain = CLASS_CLS_METHODS (inter);
  5462.   tree meth = NULL_TREE;
  5463.   tree root_inter = NULL_TREE;
  5464.  
  5465.   do
  5466.     {
  5467.       if ((meth = lookup_method (chain, ident)))
  5468.     return meth;
  5469.  
  5470.       if (CLASS_CATEGORY_LIST (inter))
  5471.     {
  5472.       tree category = CLASS_CATEGORY_LIST (inter);
  5473.       chain = CLASS_CLS_METHODS (category);
  5474.  
  5475.       do
  5476.         {
  5477.           if ((meth = lookup_method (chain, ident)))
  5478.         return meth;
  5479.  
  5480.           /* Check for class methods in protocols in categories.  */
  5481.           if (CLASS_PROTOCOL_LIST (category))
  5482.         {
  5483.           if ((meth = (lookup_method_in_protocol_list
  5484.                    (CLASS_PROTOCOL_LIST (category), ident, 1))))
  5485.             return meth;
  5486.         }
  5487.  
  5488.           if ((category = CLASS_CATEGORY_LIST (category)))
  5489.         chain = CLASS_CLS_METHODS (category);
  5490.         }
  5491.       while (category);
  5492.     }
  5493.  
  5494.       /* Check for class methods in protocols.  */
  5495.       if (CLASS_PROTOCOL_LIST (inter))
  5496.     {
  5497.       if ((meth = (lookup_method_in_protocol_list
  5498.                (CLASS_PROTOCOL_LIST (inter), ident, 1))))
  5499.         return meth;
  5500.     }
  5501.  
  5502.       root_inter = inter;
  5503.       if ((inter = lookup_interface (CLASS_SUPER_NAME (inter))))
  5504.     chain = CLASS_CLS_METHODS (inter);
  5505.     }
  5506.   while (inter);
  5507.  
  5508.   /* Simulate wrap around.  */
  5509.   return lookup_instance_method_static (root_inter, ident);
  5510. }
  5511.  
  5512. tree
  5513. add_class_method (class, method)
  5514.      tree class;
  5515.      tree method;
  5516. {
  5517.   tree mth;
  5518.   hash hsh;
  5519.  
  5520.   /* We will have allocated the method parameter declarations on the
  5521.      maybepermanent_obstack.  Need to make sure they stick around!  */
  5522.   preserve_data ();
  5523.  
  5524.   if (!(mth = lookup_method (CLASS_CLS_METHODS (class), method)))
  5525.     {
  5526.       /* put method on list in reverse order */
  5527.       TREE_CHAIN (method) = CLASS_CLS_METHODS (class);
  5528.       CLASS_CLS_METHODS (class) = method;
  5529.     }
  5530.   else
  5531.     {
  5532.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  5533.     error ("duplicate definition of class method `%s'.",
  5534.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5535.       else
  5536.         {
  5537.       /* Check types; if different, complain. */
  5538.       if (!comp_proto_with_proto (method, mth))
  5539.         error ("duplicate declaration of class method `%s'.",
  5540.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5541.         }
  5542.     }
  5543.  
  5544.   if (!(hsh = hash_lookup (cls_method_hash_list, METHOD_SEL_NAME (method))))
  5545.     {
  5546.       /* Install on a global chain. */
  5547.       hash_enter (cls_method_hash_list, method);
  5548.     }
  5549.   else
  5550.     {
  5551.       /* Check types; if different, add to a list. */
  5552.       if (!comp_proto_with_proto (method, hsh->key))
  5553.         hash_add_attr (hsh, method);
  5554.     }
  5555.   return method;
  5556. }
  5557.  
  5558. tree
  5559. add_instance_method (class, method)
  5560.      tree class;
  5561.      tree method;
  5562. {
  5563.   tree mth;
  5564.   hash hsh;
  5565.  
  5566.   /* We will have allocated the method parameter declarations on the
  5567.      maybepermanent_obstack.  Need to make sure they stick around!  */
  5568.   preserve_data ();
  5569.  
  5570.   if (!(mth = lookup_method (CLASS_NST_METHODS (class), method)))
  5571.     {
  5572.       /* Put method on list in reverse order.  */
  5573.       TREE_CHAIN (method) = CLASS_NST_METHODS (class);
  5574.       CLASS_NST_METHODS (class) = method;
  5575.     }
  5576.   else
  5577.     {
  5578.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  5579.     error ("duplicate definition of instance method `%s'.",
  5580.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5581.       else
  5582.         {
  5583.       /* Check types; if different, complain. */
  5584.       if (!comp_proto_with_proto (method, mth))
  5585.         error ("duplicate declaration of instance method `%s'.",
  5586.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5587.         }
  5588.     }
  5589.  
  5590.   if (!(hsh = hash_lookup (nst_method_hash_list, METHOD_SEL_NAME (method))))
  5591.     {
  5592.       /* Install on a global chain. */
  5593.       hash_enter (nst_method_hash_list, method);
  5594.     }
  5595.   else
  5596.     {
  5597.       /* Check types; if different, add to a list.  */
  5598.       if (!comp_proto_with_proto (method, hsh->key))
  5599.         hash_add_attr (hsh, method);
  5600.     }
  5601.   return method;
  5602. }
  5603.  
  5604. static tree
  5605. add_class (class)
  5606.      tree class;
  5607. {
  5608.   /* Put interfaces on list in reverse order. */
  5609.   TREE_CHAIN (class) = interface_chain;
  5610.   interface_chain = class;
  5611.   return interface_chain;
  5612. }
  5613.  
  5614. static void
  5615. add_category (class, category)
  5616.       tree class;
  5617.       tree category;
  5618. {
  5619.   /* Put categories on list in reverse order. */
  5620.   tree cat = CLASS_CATEGORY_LIST (class);
  5621.  
  5622.   while (cat)
  5623.     {
  5624.       if (CLASS_SUPER_NAME (cat) == CLASS_SUPER_NAME (category))
  5625.     warning ("duplicate interface declaration for category `%s(%s)'",
  5626.          IDENTIFIER_POINTER (CLASS_NAME (class)),
  5627.          IDENTIFIER_POINTER (CLASS_SUPER_NAME (category)));
  5628.       cat = CLASS_CATEGORY_LIST (cat);
  5629.     }
  5630.  
  5631.   CLASS_CATEGORY_LIST (category) = CLASS_CATEGORY_LIST (class);
  5632.   CLASS_CATEGORY_LIST (class) = category;
  5633. }
  5634.  
  5635. /* Called after parsing each instance variable declaration. Necessary to
  5636.    preserve typedefs and implement public/private...
  5637.  
  5638.    PUBLIC is 1 for public, 0 for protected, and 2 for private.  */
  5639.  
  5640. tree
  5641. add_instance_variable (class, public, declarator, declspecs, width)
  5642.      tree class;
  5643.      int public;
  5644.      tree declarator;
  5645.      tree declspecs;
  5646.      tree width;
  5647. {
  5648.   tree field_decl, raw_decl;
  5649.  
  5650.   raw_decl = build_tree_list (declspecs, declarator);
  5651.  
  5652.   if (CLASS_RAW_IVARS (class))
  5653.     chainon (CLASS_RAW_IVARS (class), raw_decl);
  5654.   else
  5655.     CLASS_RAW_IVARS (class) = raw_decl;
  5656.  
  5657.   field_decl = grokfield (input_filename, lineno,
  5658.               declarator, declspecs, width);
  5659.  
  5660.   /* Overload the public attribute, it is not used for FIELD_DECLs. */
  5661.   switch (public)
  5662.     {
  5663.     case 0:
  5664.       TREE_PUBLIC (field_decl) = 0;
  5665.       TREE_PRIVATE (field_decl) = 0;
  5666.       TREE_PROTECTED (field_decl) = 1;
  5667.       break;
  5668.  
  5669.     case 1:
  5670.       TREE_PUBLIC (field_decl) = 1;
  5671.       TREE_PRIVATE (field_decl) = 0;
  5672.       TREE_PROTECTED (field_decl) = 0;
  5673.       break;
  5674.  
  5675.     case 2:
  5676.       TREE_PUBLIC (field_decl) = 0;
  5677.       TREE_PRIVATE (field_decl) = 1;
  5678.       TREE_PROTECTED (field_decl) = 0;
  5679.       break;
  5680.  
  5681.     }
  5682.  
  5683.   if (CLASS_IVARS (class))
  5684.     chainon (CLASS_IVARS (class), field_decl);
  5685.   else
  5686.     CLASS_IVARS (class) = field_decl;
  5687.  
  5688.   return class;
  5689. }
  5690.  
  5691. tree
  5692. is_ivar (decl_chain, ident)
  5693.      tree decl_chain;
  5694.      tree ident;
  5695. {
  5696.   for ( ; decl_chain; decl_chain = TREE_CHAIN (decl_chain))
  5697.     if (DECL_NAME (decl_chain) == ident)
  5698.       return decl_chain;
  5699.   return NULL_TREE;
  5700. }
  5701.  
  5702. /* True if the ivar is private and we are not in its implementation.  */
  5703.  
  5704. int
  5705. is_private (decl)
  5706.      tree decl;
  5707. {
  5708.   if (TREE_PRIVATE (decl)
  5709.       && ! is_ivar (CLASS_IVARS (implementation_template), DECL_NAME (decl)))
  5710.     {
  5711.       error ("instance variable `%s' is declared private",
  5712.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  5713.       return 1;
  5714.     }
  5715.   else
  5716.     return 0;
  5717. }
  5718.  
  5719. /* We have an instance variable reference;, check to see if it is public.  */
  5720.  
  5721. int
  5722. is_public (expr, identifier)
  5723.      tree expr;
  5724.      tree identifier;
  5725. {
  5726.   tree basetype = TREE_TYPE (expr);
  5727.   enum tree_code code = TREE_CODE (basetype);
  5728.   tree decl;
  5729.  
  5730.   if (code == RECORD_TYPE)
  5731.     {
  5732.       if (TREE_STATIC_TEMPLATE (basetype))
  5733.     {
  5734.       if (!lookup_interface (TYPE_NAME (basetype)))
  5735.         {
  5736.           error ("Cannot find interface declaration for `%s'",
  5737.              IDENTIFIER_POINTER (TYPE_NAME (basetype)));
  5738.           return 0;
  5739.         }
  5740.  
  5741.       if ((decl = is_ivar (TYPE_FIELDS (basetype), identifier)))
  5742.         {
  5743.           if (TREE_PUBLIC (decl))
  5744.         return 1;
  5745.  
  5746.           /* Important difference between the Stepstone translator:
  5747.          all instance variables should be public within the context
  5748.          of the implementation.  */
  5749.           if (implementation_context
  5750.           && (((TREE_CODE (implementation_context)
  5751.             == CLASS_IMPLEMENTATION_TYPE)
  5752.                || (TREE_CODE (implementation_context)
  5753.                == CATEGORY_IMPLEMENTATION_TYPE))
  5754.               && (CLASS_NAME (implementation_context)
  5755.               == TYPE_NAME (basetype))))
  5756.         return ! is_private (decl);
  5757.  
  5758.           error ("instance variable `%s' is declared %s",
  5759.              IDENTIFIER_POINTER (identifier),
  5760.              TREE_PRIVATE (decl) ? "private" : "protected");
  5761.           return 0;
  5762.         }
  5763.     }
  5764.  
  5765.       else if (implementation_context && (basetype == objc_object_reference))
  5766.     {
  5767.       TREE_TYPE (expr) = uprivate_record;
  5768.       warning ("static access to object of type `id'");
  5769.     }
  5770.     }
  5771.  
  5772.   return 1;
  5773. }
  5774.  
  5775. /* Implement @defs (<classname>) within struct bodies. */
  5776.  
  5777. tree
  5778. get_class_ivars (interface)
  5779.      tree interface;
  5780. {
  5781.   if (!doing_objc_thang)
  5782.     objc_fatal ();
  5783.  
  5784.   return build_ivar_chain (interface, 1);
  5785. }
  5786.  
  5787. /* Make sure all entries in CHAIN are also in LIST. */
  5788.  
  5789. static int
  5790. check_methods (chain, list, mtype)
  5791.      tree chain;
  5792.      tree list;
  5793.      int mtype;
  5794. {
  5795.   int first = 1;
  5796.  
  5797.   while (chain)
  5798.     {
  5799.       if (!lookup_method (list, chain))
  5800.     {
  5801.       if (first)
  5802.         {
  5803.           if (TREE_CODE (implementation_context)
  5804.           == CLASS_IMPLEMENTATION_TYPE)
  5805.         warning ("incomplete implementation of class `%s'",
  5806.              IDENTIFIER_POINTER (CLASS_NAME (implementation_context)));
  5807.           else if (TREE_CODE (implementation_context)
  5808.                == CATEGORY_IMPLEMENTATION_TYPE)
  5809.         warning ("incomplete implementation of category `%s'",
  5810.              IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  5811.           first = 0;
  5812.         }
  5813.  
  5814.       warning ("method definition for `%c%s' not found",
  5815.            mtype, IDENTIFIER_POINTER (METHOD_SEL_NAME (chain)));
  5816.     }
  5817.  
  5818.       chain = TREE_CHAIN (chain);
  5819.     }
  5820.  
  5821.     return first;
  5822. }
  5823.  
  5824. static int
  5825. conforms_to_protocol (class, protocol)
  5826.      tree class;
  5827.      tree protocol;
  5828. {
  5829.    while (protocol)
  5830.      {
  5831.        tree p = CLASS_PROTOCOL_LIST (class);
  5832.  
  5833.        while (p && TREE_VALUE (p) != TREE_VALUE (protocol))
  5834.      p = TREE_CHAIN (p);
  5835.  
  5836.        if (!p)
  5837.      {
  5838.        tree super = (CLASS_SUPER_NAME (class)
  5839.              ? lookup_interface (CLASS_SUPER_NAME (class))
  5840.              : NULL_TREE);
  5841.        int tmp = super ? conforms_to_protocol (super, protocol) : 0;
  5842.        if (!tmp)
  5843.          return 0;
  5844.      }
  5845.  
  5846.        protocol = TREE_CHAIN (protocol);
  5847.      }
  5848.  
  5849.    return 1;
  5850. }
  5851.  
  5852. /* Make sure all methods in CHAIN are accessible as MTYPE methods in 
  5853.    CONTEXT.  This is one of two mechanisms to check protocol integrity. */
  5854.  
  5855. static int
  5856. check_methods_accessible (chain, context, mtype)
  5857.      tree chain;
  5858.      tree context;
  5859.      int mtype;
  5860. {
  5861.   int first = 1;
  5862.   tree list;
  5863.   tree base_context = context;
  5864.  
  5865.   while (chain)
  5866.     {
  5867.       context = base_context;
  5868.       while (context)
  5869.     {
  5870.       if (mtype == '+')
  5871.         list = CLASS_CLS_METHODS (context);
  5872.       else
  5873.         list = CLASS_NST_METHODS (context);
  5874.  
  5875.       if (lookup_method (list, chain))
  5876.           break; 
  5877.  
  5878.       else if (TREE_CODE (context) == CLASS_IMPLEMENTATION_TYPE
  5879.            || TREE_CODE (context) == CLASS_INTERFACE_TYPE)
  5880.         context = (CLASS_SUPER_NAME (context) 
  5881.                ? lookup_interface (CLASS_SUPER_NAME (context))
  5882.                : NULL_TREE);
  5883.  
  5884.       else if (TREE_CODE (context) == CATEGORY_IMPLEMENTATION_TYPE
  5885.            || TREE_CODE (context) == CATEGORY_INTERFACE_TYPE)
  5886.         context = (CLASS_NAME (context) 
  5887.                ? lookup_interface (CLASS_NAME (context))
  5888.                : NULL_TREE);
  5889.       else
  5890.         abort ();
  5891.     }
  5892.  
  5893.       if (context == NULL_TREE)
  5894.     {
  5895.       if (first)
  5896.         {
  5897.           if (TREE_CODE (implementation_context)
  5898.           == CLASS_IMPLEMENTATION_TYPE)
  5899.         warning ("incomplete implementation of class `%s'",
  5900.              IDENTIFIER_POINTER
  5901.                (CLASS_NAME (implementation_context)));
  5902.           else if (TREE_CODE (implementation_context)
  5903.                == CATEGORY_IMPLEMENTATION_TYPE)
  5904.         warning ("incomplete implementation of category `%s'",
  5905.              IDENTIFIER_POINTER
  5906.                (CLASS_SUPER_NAME (implementation_context)));
  5907.           first = 0;
  5908.         }
  5909.       warning ("method definition for `%c%s' not found",
  5910.            mtype, IDENTIFIER_POINTER (METHOD_SEL_NAME (chain)));
  5911.     }
  5912.  
  5913.       chain = TREE_CHAIN (chain); /* next method... */
  5914.     }
  5915.     return first;
  5916. }
  5917.  
  5918. static void
  5919. check_protocols (proto_list, type, name)
  5920.      tree proto_list;
  5921.      char *type;
  5922.      char *name;
  5923. {
  5924.   for ( ; proto_list; proto_list = TREE_CHAIN (proto_list))
  5925.     {
  5926.       tree p = TREE_VALUE (proto_list);
  5927.  
  5928.       if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  5929.     {
  5930.       int f1, f2;
  5931.       
  5932.       /* Ensure that all protocols have bodies. */
  5933.       if (flag_warn_protocol) {
  5934.         f1 = check_methods (PROTOCOL_CLS_METHODS (p),
  5935.                 CLASS_CLS_METHODS (implementation_context),
  5936.                 '+');
  5937.         f2 = check_methods (PROTOCOL_NST_METHODS (p),
  5938.                 CLASS_NST_METHODS (implementation_context),
  5939.                 '-');
  5940.       } else {
  5941.         f1 = check_methods_accessible (PROTOCOL_CLS_METHODS (p),
  5942.                        implementation_context,
  5943.                        '+');
  5944.         f2 = check_methods_accessible (PROTOCOL_NST_METHODS (p),
  5945.                        implementation_context,
  5946.                        '-');
  5947.       }
  5948.  
  5949.       if (!f1 || !f2)
  5950.         warning ("%s `%s' does not fully implement the `%s' protocol",
  5951.              type, name, IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  5952.  
  5953.     }
  5954.       else
  5955.     ; /* An identifier if we could not find a protocol.  */
  5956.  
  5957.       /* Check protocols recursively. */
  5958.       if (PROTOCOL_LIST (p))
  5959.     {
  5960.       tree super_class
  5961.         = lookup_interface (CLASS_SUPER_NAME (implementation_template));
  5962.       if (! conforms_to_protocol (super_class, PROTOCOL_LIST (p)))
  5963.         check_protocols (PROTOCOL_LIST (p), type, name);
  5964.     }
  5965.     }
  5966. }
  5967.  
  5968. /* Make sure that the class CLASS_NAME is defined
  5969.    CODE says which kind of thing CLASS_NAME ought to be.
  5970.    It can be CLASS_INTERFACE_TYPE, CLASS_IMPLEMENTATION_TYPE,
  5971.    CATEGORY_INTERFACE_TYPE, or CATEGORY_IMPLEMENTATION_TYPE.
  5972.  
  5973.    If CODE is CLASS_INTERFACE_TYPE, we also do a push_obstacks_nochange
  5974.    whose matching pop is in continue_class.  */
  5975.  
  5976. tree
  5977. start_class (code, class_name, super_name, protocol_list)
  5978.      enum tree_code code;
  5979.      tree class_name;
  5980.      tree super_name;
  5981.      tree protocol_list;
  5982. {
  5983.   tree class, decl;
  5984.  
  5985.   if (code == CLASS_INTERFACE_TYPE)
  5986.     {
  5987.       push_obstacks_nochange ();
  5988.       end_temporary_allocation ();
  5989.     }
  5990.  
  5991.   if (!doing_objc_thang)
  5992.     objc_fatal ();
  5993.  
  5994.   class = make_node (code);
  5995.   TYPE_BINFO (class) = make_tree_vec (5);
  5996.  
  5997.   CLASS_NAME (class) = class_name;
  5998.   CLASS_SUPER_NAME (class) = super_name;
  5999.   CLASS_CLS_METHODS (class) = NULL_TREE;
  6000.  
  6001.   if (! is_class_name (class_name) && (decl = lookup_name (class_name)))
  6002.     {
  6003.       error ("`%s' redeclared as different kind of symbol",
  6004.          IDENTIFIER_POINTER (class_name));
  6005.       error_with_decl (decl, "previous declaration of `%s'");
  6006.     }
  6007.  
  6008.   if (code == CLASS_IMPLEMENTATION_TYPE)
  6009.     {
  6010.       {
  6011.         static tree implemented_classes = 0;
  6012.         tree chain = implemented_classes;
  6013.         for (chain = implemented_classes; chain; chain = TREE_CHAIN (chain))
  6014.            if (TREE_VALUE (chain) == class_name)
  6015.          {
  6016.            error ("reimplementation of class `%s'",
  6017.               IDENTIFIER_POINTER (class_name));
  6018.            return error_mark_node;
  6019.          }
  6020.         implemented_classes = perm_tree_cons (NULL_TREE, class_name,
  6021.                           implemented_classes);
  6022.       }
  6023.  
  6024.       /* Pre-build the following entities - for speed/convenience. */
  6025.       if (!self_id)
  6026.       self_id = get_identifier ("self");
  6027.       if (!ucmd_id)
  6028.         ucmd_id = get_identifier ("_cmd");
  6029.       if (!unused_list)
  6030.     unused_list
  6031.       = build_tree_list (get_identifier ("__unused__"), NULL_TREE);
  6032.       if (!objc_super_template)
  6033.     objc_super_template = build_super_template ();
  6034.  
  6035.       /* Reset for multiple classes per file.  */
  6036.       method_slot = 0;
  6037.  
  6038.       implementation_context = class;
  6039.  
  6040.       /* Lookup the interface for this implementation. */
  6041.  
  6042.       if (!(implementation_template = lookup_interface (class_name)))
  6043.         {
  6044.       warning ("Cannot find interface declaration for `%s'",
  6045.            IDENTIFIER_POINTER (class_name));
  6046.       add_class (implementation_template = implementation_context);
  6047.         }
  6048.  
  6049.       /* If a super class has been specified in the implementation,
  6050.      insure it conforms to the one specified in the interface.  */
  6051.  
  6052.       if (super_name
  6053.       && (super_name != CLASS_SUPER_NAME (implementation_template)))
  6054.         {
  6055.       tree previous_name = CLASS_SUPER_NAME (implementation_template);
  6056.           char *name = previous_name ? IDENTIFIER_POINTER (previous_name) : "";
  6057.       error ("conflicting super class name `%s'",
  6058.          IDENTIFIER_POINTER (super_name));
  6059.       error ("previous declaration of `%s'", name);
  6060.         }
  6061.  
  6062.       else if (! super_name)
  6063.     {
  6064.       CLASS_SUPER_NAME (implementation_context) 
  6065.         = CLASS_SUPER_NAME (implementation_template);
  6066.     }
  6067.     }
  6068.  
  6069.   else if (code == CLASS_INTERFACE_TYPE)
  6070.     {
  6071.       if (lookup_interface (class_name))
  6072.         warning ("duplicate interface declaration for class `%s'",
  6073.                  IDENTIFIER_POINTER (class_name));
  6074.       else
  6075.         add_class (class);
  6076.  
  6077.       if (protocol_list)
  6078.     CLASS_PROTOCOL_LIST (class)
  6079.       = lookup_and_install_protocols (protocol_list);
  6080.     }
  6081.  
  6082.   else if (code == CATEGORY_INTERFACE_TYPE)
  6083.     {
  6084.       tree class_category_is_assoc_with;
  6085.  
  6086.       /* For a category, class_name is really the name of the class that
  6087.      the following set of methods will be associated with. We must
  6088.      find the interface so that can derive the objects template.  */
  6089.  
  6090.       if (!(class_category_is_assoc_with = lookup_interface (class_name)))
  6091.     {
  6092.       error ("Cannot find interface declaration for `%s'",
  6093.          IDENTIFIER_POINTER (class_name));
  6094.       exit (FATAL_EXIT_CODE);
  6095.     }
  6096.       else
  6097.         add_category (class_category_is_assoc_with, class);
  6098.  
  6099.       if (protocol_list)
  6100.     CLASS_PROTOCOL_LIST (class)
  6101.       = lookup_and_install_protocols (protocol_list);
  6102.     }
  6103.  
  6104.   else if (code == CATEGORY_IMPLEMENTATION_TYPE)
  6105.     {
  6106.       /* Pre-build the following entities for speed/convenience. */
  6107.       if (!self_id)
  6108.         self_id = get_identifier ("self");
  6109.       if (!ucmd_id)
  6110.         ucmd_id = get_identifier ("_cmd");
  6111.       if (!unused_list)
  6112.     unused_list
  6113.       = build_tree_list (get_identifier ("__unused__"), NULL_TREE);
  6114.       if (!objc_super_template)
  6115.     objc_super_template = build_super_template ();
  6116.  
  6117.       /* Reset for multiple classes per file.  */
  6118.       method_slot = 0;
  6119.  
  6120.       implementation_context = class;
  6121.  
  6122.       /* For a category, class_name is really the name of the class that
  6123.      the following set of methods will be associated with.  We must
  6124.      find the interface so that can derive the objects template. */
  6125.  
  6126.       if (!(implementation_template = lookup_interface (class_name)))
  6127.         {
  6128.       error ("Cannot find interface declaration for `%s'",
  6129.          IDENTIFIER_POINTER (class_name));
  6130.       exit (FATAL_EXIT_CODE);
  6131.         }
  6132.     }
  6133.   return class;
  6134. }
  6135.  
  6136. tree
  6137. continue_class (class)
  6138.      tree class;
  6139. {
  6140.   if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE
  6141.       || TREE_CODE (class) == CATEGORY_IMPLEMENTATION_TYPE)
  6142.     {
  6143.       struct imp_entry *imp_entry;
  6144.       tree ivar_context;
  6145.  
  6146.       /* Check consistency of the instance variables. */
  6147.  
  6148.       if (CLASS_IVARS (class))
  6149.     check_ivars (implementation_template, class);
  6150.  
  6151.       /* code generation */
  6152.  
  6153.       ivar_context = build_private_template (implementation_template);
  6154.  
  6155.       if (!objc_class_template)
  6156.     build_class_template ();
  6157.  
  6158.       if (!(imp_entry
  6159.         = (struct imp_entry *) xmalloc (sizeof (struct imp_entry))))
  6160.     perror ("unable to allocate in objc-tree.c");
  6161.  
  6162.       imp_entry->next = imp_list;
  6163.       imp_entry->imp_context = class;
  6164.       imp_entry->imp_template = implementation_template;
  6165.  
  6166.       synth_forward_declarations ();
  6167.       imp_entry->class_decl = UOBJC_CLASS_decl;
  6168.       imp_entry->meta_decl = UOBJC_METACLASS_decl;
  6169.  
  6170.       /* Append to front and increment count. */
  6171.       imp_list = imp_entry;
  6172.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  6173.     imp_count++;
  6174.       else
  6175.     cat_count++;
  6176.  
  6177.       return ivar_context;
  6178.     }
  6179.  
  6180.   else if (TREE_CODE (class) == CLASS_INTERFACE_TYPE)
  6181.     {
  6182.       tree record = xref_tag (RECORD_TYPE, CLASS_NAME (class));
  6183.  
  6184.       if (!TYPE_FIELDS (record))
  6185.     {
  6186.       finish_struct (record, build_ivar_chain (class, 0), NULL_TREE);
  6187.       CLASS_STATIC_TEMPLATE (class) = record;
  6188.  
  6189.       /* Mark this record as a class template for static typing.  */
  6190.       TREE_STATIC_TEMPLATE (record) = 1;
  6191.     }
  6192.  
  6193.       return NULL_TREE;
  6194.     }
  6195.  
  6196.   else
  6197.     return error_mark_node;
  6198. }
  6199.  
  6200. /* This is called once we see the "@end" in an interface/implementation.  */
  6201.  
  6202. void
  6203. finish_class (class)
  6204.      tree class;
  6205. {
  6206.   if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  6207.     {
  6208.       /* All code generation is done in finish_objc. */
  6209.  
  6210.       if (implementation_template != implementation_context)
  6211.     {
  6212.       /* Ensure that all method listed in the interface contain bodies. */
  6213.       check_methods (CLASS_CLS_METHODS (implementation_template),
  6214.              CLASS_CLS_METHODS (implementation_context), '+');
  6215.       check_methods (CLASS_NST_METHODS (implementation_template),
  6216.              CLASS_NST_METHODS (implementation_context), '-');
  6217.  
  6218.       if (CLASS_PROTOCOL_LIST (implementation_template))
  6219.         check_protocols (CLASS_PROTOCOL_LIST (implementation_template),
  6220.                  "class",
  6221.                  IDENTIFIER_POINTER (CLASS_NAME (implementation_context)));
  6222.     }
  6223.     }
  6224.  
  6225.   else if (TREE_CODE (class) == CATEGORY_IMPLEMENTATION_TYPE)
  6226.     {
  6227.       tree category = CLASS_CATEGORY_LIST (implementation_template);
  6228.  
  6229.       /* Find the category interface from the class it is associated with. */
  6230.       while (category)
  6231.     {
  6232.       if (CLASS_SUPER_NAME (class) == CLASS_SUPER_NAME (category))
  6233.         break;
  6234.       category = CLASS_CATEGORY_LIST (category);
  6235.     }
  6236.  
  6237.       if (category)
  6238.     {
  6239.       /* Ensure all method listed in the interface contain bodies. */
  6240.       check_methods (CLASS_CLS_METHODS (category),
  6241.              CLASS_CLS_METHODS (implementation_context), '+');
  6242.       check_methods (CLASS_NST_METHODS (category),
  6243.              CLASS_NST_METHODS (implementation_context), '-');
  6244.  
  6245.       if (CLASS_PROTOCOL_LIST (category))
  6246.         check_protocols (CLASS_PROTOCOL_LIST (category),
  6247.                  "category",
  6248.                  IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  6249.     }
  6250.     }
  6251.  
  6252.   else if (TREE_CODE (class) == CLASS_INTERFACE_TYPE)
  6253.     {
  6254.       tree decl_specs;
  6255.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (class));
  6256.       char *string = (char *) alloca (strlen (class_name) + 3);
  6257.  
  6258.       /* extern struct objc_object *_<my_name>; */
  6259.  
  6260.       sprintf (string, "_%s", class_name);
  6261.  
  6262.       decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_EXTERN]);
  6263.       decl_specs = tree_cons (NULL_TREE, objc_object_reference, decl_specs);
  6264.       define_decl (build1 (INDIRECT_REF, NULL_TREE, get_identifier (string)),
  6265.            decl_specs);
  6266.     }
  6267. }
  6268.  
  6269. static tree
  6270. add_protocol (protocol)
  6271.      tree protocol;
  6272. {
  6273.   /* Put protocol on list in reverse order. */
  6274.   TREE_CHAIN (protocol) = protocol_chain;
  6275.   protocol_chain = protocol;
  6276.   return protocol_chain;
  6277. }
  6278.  
  6279. static tree
  6280. lookup_protocol (ident)
  6281.      tree ident;
  6282. {
  6283.   tree chain;
  6284.  
  6285.   for (chain = protocol_chain; chain; chain = TREE_CHAIN (chain))
  6286.     {
  6287.       if (ident == PROTOCOL_NAME (chain))
  6288.     return chain;
  6289.     }
  6290.  
  6291.   return NULL_TREE;
  6292. }
  6293.  
  6294. tree
  6295. start_protocol (code, name, list)
  6296.      enum tree_code code;
  6297.      tree name;
  6298.      tree list;
  6299. {
  6300.   tree protocol;
  6301.  
  6302.   if (!doing_objc_thang)
  6303.     objc_fatal ();
  6304.  
  6305.   /* This is as good a place as any.  Need to invoke push_tag_toplevel.  */
  6306.   if (!objc_protocol_template)
  6307.     objc_protocol_template = build_protocol_template ();
  6308.  
  6309.   protocol = make_node (code);
  6310.   TYPE_BINFO (protocol) = make_tree_vec (2);
  6311.  
  6312.   PROTOCOL_NAME (protocol) = name;
  6313.   PROTOCOL_LIST (protocol) = list;
  6314.  
  6315.   lookup_and_install_protocols (list);
  6316.  
  6317.   if (lookup_protocol (name))
  6318.     warning ("duplicate declaration for protocol `%s'",
  6319.        IDENTIFIER_POINTER (name));
  6320.   else
  6321.     add_protocol (protocol);
  6322.  
  6323.   PROTOCOL_FORWARD_DECL (protocol) = NULL_TREE;
  6324.  
  6325.   return protocol;
  6326. }
  6327.  
  6328. void
  6329. finish_protocol (protocol)
  6330.     tree protocol;
  6331. {
  6332. }
  6333.  
  6334.  
  6335. /* "Encode" a data type into a string, which grows in util_obstack.
  6336.    ??? What is the FORMAT?  Someone please document this!  */
  6337.  
  6338. static void
  6339. encode_type_qualifiers (declspecs)
  6340.      tree declspecs;
  6341. {
  6342.   tree spec;
  6343.  
  6344.   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
  6345.     {
  6346.       if (ridpointers[(int) RID_CONST] == TREE_VALUE (spec))
  6347.     obstack_1grow (&util_obstack, 'r');
  6348.       else if (ridpointers[(int) RID_IN] == TREE_VALUE (spec))
  6349.     obstack_1grow (&util_obstack, 'n');
  6350.       else if (ridpointers[(int) RID_INOUT] == TREE_VALUE (spec))
  6351.     obstack_1grow (&util_obstack, 'N');
  6352.       else if (ridpointers[(int) RID_OUT] == TREE_VALUE (spec))
  6353.     obstack_1grow (&util_obstack, 'o');
  6354.       else if (ridpointers[(int) RID_BYCOPY] == TREE_VALUE (spec))
  6355.     obstack_1grow (&util_obstack, 'O');
  6356.       else if (ridpointers[(int) RID_ONEWAY] == TREE_VALUE (spec))
  6357.     obstack_1grow (&util_obstack, 'V');
  6358.     }
  6359. }
  6360.  
  6361. /* Encode a pointer type.  */
  6362.  
  6363. static void
  6364. encode_pointer (type, curtype, format)
  6365.      tree type;
  6366.      int curtype;
  6367.      int format;
  6368. {
  6369.   tree pointer_to = TREE_TYPE (type);
  6370.  
  6371.   if (TREE_CODE (pointer_to) == RECORD_TYPE)
  6372.     {
  6373.       if (TYPE_NAME (pointer_to)
  6374.       && TREE_CODE (TYPE_NAME (pointer_to)) == IDENTIFIER_NODE)
  6375.     {
  6376.       char *name = IDENTIFIER_POINTER (TYPE_NAME (pointer_to));
  6377.  
  6378.       if (strcmp (name, TAG_OBJECT) == 0) /* '@' */
  6379.         {
  6380.           obstack_1grow (&util_obstack, '@');
  6381.           return;
  6382.         }
  6383.       else if (TREE_STATIC_TEMPLATE (pointer_to))
  6384.         {
  6385.               if (generating_instance_variables)
  6386.             {
  6387.               obstack_1grow (&util_obstack, '@');
  6388.               obstack_1grow (&util_obstack, '"');
  6389.               obstack_grow (&util_obstack, name, strlen (name));
  6390.               obstack_1grow (&util_obstack, '"');
  6391.               return;
  6392.         }
  6393.               else
  6394.             {
  6395.               obstack_1grow (&util_obstack, '@');
  6396.               return;
  6397.         }
  6398.         }
  6399.       else if (strcmp (name, TAG_CLASS) == 0) /* '#' */
  6400.         {
  6401.           obstack_1grow (&util_obstack, '#');
  6402.           return;
  6403.         }
  6404. #ifndef OBJC_INT_SELECTORS
  6405.       else if (strcmp (name, TAG_SELECTOR) == 0) /* ':' */
  6406.         {
  6407.           obstack_1grow (&util_obstack, ':');
  6408.           return;
  6409.         }
  6410. #endif /* OBJC_INT_SELECTORS */
  6411.     }
  6412.     }
  6413.   else if (TREE_CODE (pointer_to) == INTEGER_TYPE
  6414.        && TYPE_MODE (pointer_to) == QImode)
  6415.     {
  6416.       obstack_1grow (&util_obstack, '*');
  6417.       return;
  6418.     }
  6419.  
  6420.   /* We have a type that does not get special treatment.  */
  6421.  
  6422.   /* NeXT extension */
  6423.   obstack_1grow (&util_obstack, '^');
  6424.   encode_type (pointer_to, curtype, format);
  6425. }
  6426.  
  6427. static void
  6428. encode_array (type, curtype, format)
  6429.      tree type;
  6430.      int curtype;
  6431.      int format;
  6432. {
  6433.   tree an_int_cst = TYPE_SIZE (type);
  6434.   tree array_of = TREE_TYPE (type);
  6435.   char buffer[40];
  6436.  
  6437.   /* An incomplete array is treated like a pointer.  */
  6438.   if (an_int_cst == NULL)
  6439.     {
  6440.       encode_pointer (type, curtype, format);
  6441.       return;
  6442.     }
  6443.  
  6444.   sprintf (buffer, "[%d",
  6445.        (TREE_INT_CST_LOW (an_int_cst)
  6446.         / TREE_INT_CST_LOW (TYPE_SIZE (array_of))));
  6447.  
  6448.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  6449.   encode_type (array_of, curtype, format);
  6450.   obstack_1grow (&util_obstack, ']');
  6451.   return;
  6452. }
  6453.  
  6454. static void
  6455. encode_aggregate (type, curtype, format)
  6456.      tree type;
  6457.      int curtype;
  6458.      int format;
  6459. {
  6460.   enum tree_code code = TREE_CODE (type);
  6461.  
  6462.   switch (code)
  6463.     {
  6464.     case RECORD_TYPE:
  6465.       {
  6466.     if (obstack_object_size (&util_obstack) > 0
  6467.         && *(obstack_next_free (&util_obstack) - 1) == '^')
  6468.       {
  6469.         tree name = TYPE_NAME (type);
  6470.  
  6471.         /* We have a reference; this is a NeXT extension. */
  6472.  
  6473.         if (obstack_object_size (&util_obstack) - curtype == 1
  6474.         && format == OBJC_ENCODE_INLINE_DEFS)
  6475.           {
  6476.         /* Output format of struct for first level only. */
  6477.         tree fields = TYPE_FIELDS (type);
  6478.  
  6479.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6480.           {
  6481.             obstack_1grow (&util_obstack, '{');
  6482.             obstack_grow (&util_obstack,
  6483.                   IDENTIFIER_POINTER (name),
  6484.                   strlen (IDENTIFIER_POINTER (name)));
  6485.             obstack_1grow (&util_obstack, '=');
  6486.           }
  6487.  
  6488.         else
  6489.           obstack_grow (&util_obstack, "{?=", 3);
  6490.  
  6491.         for ( ; fields; fields = TREE_CHAIN (fields))
  6492.           encode_field_decl (fields, curtype, format);
  6493.  
  6494.         obstack_1grow (&util_obstack, '}');
  6495.           }
  6496.  
  6497.             else if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6498.           {
  6499.         obstack_1grow (&util_obstack, '{');
  6500.         obstack_grow (&util_obstack,
  6501.                   IDENTIFIER_POINTER (name),
  6502.                   strlen (IDENTIFIER_POINTER (name)));
  6503.         obstack_1grow (&util_obstack, '}');
  6504.           }
  6505.  
  6506.         else
  6507.           /* We have an untagged structure or a typedef. */
  6508.           obstack_grow (&util_obstack, "{?}", 3);
  6509.       }
  6510.  
  6511.     else
  6512.       {
  6513.         tree name = TYPE_NAME (type);
  6514.         tree fields = TYPE_FIELDS (type);
  6515.  
  6516.         if (format == OBJC_ENCODE_INLINE_DEFS
  6517.         || generating_instance_variables)
  6518.           {
  6519.         obstack_1grow (&util_obstack, '{');
  6520.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6521.           obstack_grow (&util_obstack,
  6522.                 IDENTIFIER_POINTER (name),
  6523.                 strlen (IDENTIFIER_POINTER (name)));
  6524.  
  6525.         else
  6526.           obstack_1grow (&util_obstack, '?');
  6527.  
  6528.         obstack_1grow (&util_obstack, '=');
  6529.  
  6530.         for (; fields; fields = TREE_CHAIN (fields))
  6531.           {
  6532.                   if (generating_instance_variables)
  6533.                     {
  6534.                       tree fname = DECL_NAME (fields);
  6535.  
  6536.               obstack_1grow (&util_obstack, '"');
  6537.               if (fname && TREE_CODE (fname) == IDENTIFIER_NODE)
  6538.                 {
  6539.               obstack_grow (&util_obstack,
  6540.                     IDENTIFIER_POINTER (fname),
  6541.                     strlen (IDENTIFIER_POINTER (fname)));
  6542.             }
  6543.  
  6544.               obstack_1grow (&util_obstack, '"');
  6545.                     }
  6546.  
  6547.           encode_field_decl (fields, curtype, format);
  6548.           }
  6549.  
  6550.         obstack_1grow (&util_obstack, '}');
  6551.           }
  6552.  
  6553.         else
  6554.           {
  6555.         obstack_1grow (&util_obstack, '{');
  6556.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6557.           obstack_grow (&util_obstack,
  6558.                 IDENTIFIER_POINTER (name),
  6559.                 strlen (IDENTIFIER_POINTER (name)));
  6560.         else
  6561.           /* We have an untagged structure or a typedef. */
  6562.           obstack_1grow (&util_obstack, '?');
  6563.  
  6564.         obstack_1grow (&util_obstack, '}');
  6565.           }
  6566.       }
  6567.     break;
  6568.       }
  6569.  
  6570.     case UNION_TYPE:
  6571.       {
  6572.     if (*obstack_next_free (&util_obstack) == '^'
  6573.         || format != OBJC_ENCODE_INLINE_DEFS)
  6574.       {
  6575.         /* We have a reference (this is a NeXT extension)
  6576.            or we don't want the details.  */
  6577.             if (TYPE_NAME (type)
  6578.         && TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  6579.           {
  6580.         obstack_1grow (&util_obstack, '(');
  6581.         obstack_grow (&util_obstack,
  6582.                   IDENTIFIER_POINTER (TYPE_NAME (type)),
  6583.                   strlen (IDENTIFIER_POINTER (TYPE_NAME (type))));
  6584.         obstack_1grow (&util_obstack, ')');
  6585.           }
  6586.  
  6587.         else
  6588.           /* We have an untagged structure or a typedef. */
  6589.           obstack_grow (&util_obstack, "(?)", 3);
  6590.       }
  6591.     else
  6592.       {
  6593.         tree fields = TYPE_FIELDS (type);
  6594.         obstack_1grow (&util_obstack, '(');
  6595.         for ( ; fields; fields = TREE_CHAIN (fields))
  6596.           encode_field_decl (fields, curtype, format);
  6597.  
  6598.         obstack_1grow (&util_obstack, ')');
  6599.       }
  6600.     break;
  6601.       }
  6602.  
  6603.     case ENUMERAL_TYPE:
  6604.       obstack_1grow (&util_obstack, 'i');
  6605.       break;
  6606.     }
  6607. }
  6608.  
  6609. /* Support bitfields.  The current version of Objective-C does not support
  6610.    them.  The string will consist of one or more "b:n"'s where n is an
  6611.    integer describing the width of the bitfield. Currently, classes in
  6612.    the kit implement a method "-(char *)describeBitfieldStruct:" that
  6613.    simulates this. If they do not implement this method, the archiver
  6614.    assumes the bitfield is 16 bits wide (padded if necessary) and packed
  6615.    according to the GNU compiler. After looking at the "kit", it appears
  6616.    that all classes currently rely on this default behavior, rather than
  6617.    hand generating this string (which is tedious).  */
  6618.  
  6619. static void
  6620. encode_bitfield (width, format)
  6621.      int width;
  6622.      int format;
  6623. {
  6624.   char buffer[40];
  6625.   sprintf (buffer, "b%d", width);
  6626.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  6627. }
  6628.  
  6629. /* FORMAT will be OBJC_ENCODE_INLINE_DEFS or OBJC_ENCODE_DONT_INLINE_DEFS.  */
  6630.  
  6631. static void
  6632. encode_type (type, curtype, format)
  6633.      tree type;
  6634.      int curtype;
  6635.      int format;
  6636. {
  6637.   enum tree_code code = TREE_CODE (type);
  6638.  
  6639.   if (code == INTEGER_TYPE)
  6640.     {
  6641.       if (TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) == 0
  6642.       && TREE_INT_CST_HIGH (TYPE_MIN_VALUE (type)) == 0)
  6643.     {
  6644.       /* Unsigned integer types. */
  6645.  
  6646.       if (TYPE_MODE (type) == QImode)
  6647.         obstack_1grow (&util_obstack, 'C');
  6648.       else if (TYPE_MODE (type) == HImode)
  6649.         obstack_1grow (&util_obstack, 'S');
  6650.       else if (TYPE_MODE (type) == SImode)
  6651.         {
  6652.           if (type == long_unsigned_type_node)
  6653.         obstack_1grow (&util_obstack, 'L');
  6654.           else
  6655.         obstack_1grow (&util_obstack, 'I');
  6656.         }
  6657.       else if (TYPE_MODE (type) == DImode)
  6658.         obstack_1grow (&util_obstack, 'Q');
  6659.     }
  6660.  
  6661.       else
  6662.     /* Signed integer types. */
  6663.     {
  6664.       if (TYPE_MODE (type) == QImode)
  6665.         obstack_1grow (&util_obstack, 'c');
  6666.       else if (TYPE_MODE (type) == HImode)
  6667.         obstack_1grow (&util_obstack, 's');
  6668.       else if (TYPE_MODE (type) == SImode)
  6669.         {
  6670.           if (type == long_integer_type_node)
  6671.         obstack_1grow (&util_obstack, 'l');
  6672.           else
  6673.         obstack_1grow (&util_obstack, 'i');
  6674.         }
  6675.  
  6676.       else if (TYPE_MODE (type) == DImode)
  6677.         obstack_1grow (&util_obstack, 'q');
  6678.     }
  6679.     }
  6680.  
  6681.   else if (code == REAL_TYPE)
  6682.     {
  6683.       /* Floating point types. */
  6684.  
  6685.       if (TYPE_MODE (type) == SFmode)
  6686.     obstack_1grow (&util_obstack, 'f');
  6687.       else if (TYPE_MODE (type) == DFmode
  6688.            || TYPE_MODE (type) == TFmode)
  6689.     obstack_1grow (&util_obstack, 'd');
  6690.     }
  6691.  
  6692.   else if (code == VOID_TYPE)
  6693.     obstack_1grow (&util_obstack, 'v');
  6694.  
  6695.   else if (code == ARRAY_TYPE)
  6696.     encode_array (type, curtype, format);
  6697.  
  6698.   else if (code == POINTER_TYPE)
  6699.     encode_pointer (type, curtype, format);
  6700.  
  6701.   else if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
  6702.     encode_aggregate (type, curtype, format);
  6703.  
  6704.   else if (code == FUNCTION_TYPE) /* '?' */
  6705.     obstack_1grow (&util_obstack, '?');
  6706. }
  6707.  
  6708. static void
  6709. encode_field_decl (field_decl, curtype, format)
  6710.      tree field_decl;
  6711.      int curtype;
  6712.      int format;
  6713. {
  6714.   tree type;
  6715.  
  6716.  /* If this field is obviously a bitfield, or is a bitfield that has been
  6717.      clobbered to look like a ordinary integer mode, go ahead and generate
  6718.      the bitfield typing information. */
  6719.   type = TREE_TYPE (field_decl);
  6720.   if (DECL_BIT_FIELD (field_decl))
  6721.     encode_bitfield (DECL_FIELD_SIZE (field_decl), format);
  6722.   else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
  6723.        && DECL_FIELD_SIZE (field_decl)
  6724.        && TYPE_MODE (type) > DECL_MODE (field_decl))
  6725.     encode_bitfield (DECL_FIELD_SIZE (field_decl), format);
  6726.   else
  6727.     encode_type (TREE_TYPE (field_decl), curtype, format);
  6728. }
  6729.  
  6730. static tree
  6731. expr_last (complex_expr)
  6732.      tree complex_expr;
  6733. {
  6734.   tree next;
  6735.  
  6736.   if (complex_expr)
  6737.     while ((next = TREE_OPERAND (complex_expr, 0)))
  6738.       complex_expr = next;
  6739.  
  6740.   return complex_expr;
  6741. }
  6742.  
  6743. /* The selector of the current method,
  6744.    or NULL if we aren't compiling a method.  */
  6745.  
  6746. tree
  6747. maybe_objc_method_name (decl)
  6748.       tree decl;
  6749. {
  6750.   if (method_context)
  6751.     return METHOD_SEL_NAME (method_context);
  6752.   else
  6753.     return 0;
  6754. }
  6755.  
  6756. /* Transform a method definition into a function definition as follows:
  6757.    - synthesize the first two arguments, "self" and "_cmd".  */
  6758.  
  6759. void
  6760. start_method_def (method)
  6761.      tree method;
  6762. {
  6763.   tree decl_specs;
  6764.  
  6765.   /* Required to implement _msgSuper.  */
  6766.   method_context = method;
  6767.   UOBJC_SUPER_decl = NULL_TREE;
  6768.  
  6769.   /* Must be called BEFORE start_function.  */
  6770.   pushlevel (0);
  6771.  
  6772.   /* Generate prototype declarations for arguments..."new-style".  */
  6773.  
  6774.   if (TREE_CODE (method_context) == INSTANCE_METHOD_DECL)
  6775.     decl_specs = build_tree_list (NULL_TREE, uprivate_record);
  6776.   else
  6777.     /* Really a `struct objc_class *'. However, we allow people to
  6778.        assign to self, which changes its type midstream.  */
  6779.     decl_specs = build_tree_list (NULL_TREE, objc_object_reference);
  6780.  
  6781.   /* Amiga-specific support for explicit register specification for
  6782.      parameters. KI 7.04.1996 */
  6783.   push_parm_decl (build_tree_list
  6784.           (build_tree_list (decl_specs,
  6785.                     build1 (INDIRECT_REF, NULL_TREE, self_id)),
  6786.            build_tree_list (unused_list, NULL_TREE)), NULL_TREE);
  6787.  
  6788. #ifdef OBJC_INT_SELECTORS
  6789.   decl_specs = build_tree_list (NULL_TREE, ridpointers[(int) RID_UNSIGNED]);
  6790.   decl_specs = tree_cons (NULL_TREE, ridpointers[(int) RID_INT], decl_specs);
  6791.   /* Amiga-specific support for explicit register specification for
  6792.      parameters. KI 7.04.1996 */
  6793.   push_parm_decl (build_tree_list (build_tree_list (decl_specs, ucmd_id),
  6794.                    build_tree_list (unused_list, NULL_TREE)), NULL_TREE);
  6795. #else /* not OBJC_INT_SELECTORS */
  6796.   decl_specs = build_tree_list (NULL_TREE,
  6797.                 xref_tag (RECORD_TYPE,
  6798.                       get_identifier (TAG_SELECTOR)));
  6799.   /* Amiga-specific support for explicit register specification for
  6800.      parameters. KI 7.04.1996 */
  6801.   push_parm_decl (build_tree_list
  6802.           (build_tree_list (decl_specs,
  6803.                     build1 (INDIRECT_REF, NULL_TREE, ucmd_id)),
  6804.            build_tree_list (unused_list, NULL_TREE)), NULL_TREE);
  6805. #endif /* not OBJC_INT_SELECTORS */
  6806.  
  6807.   /* Generate argument declarations if a keyword_decl. */
  6808.   if (METHOD_SEL_ARGS (method))
  6809.     {
  6810.       tree arglist = METHOD_SEL_ARGS (method);
  6811.       do
  6812.     {
  6813.       tree arg_spec = TREE_PURPOSE (TREE_TYPE (arglist));
  6814.       tree arg_decl = TREE_VALUE (TREE_TYPE (arglist));
  6815.  
  6816.       if (arg_decl)
  6817.         {
  6818.           tree last_expr = expr_last (arg_decl);
  6819.  
  6820.           /* Unite the abstract decl with its name. */
  6821.           TREE_OPERAND (last_expr, 0) = KEYWORD_ARG_NAME (arglist);
  6822.           /* Amiga-specific support for explicit register specification
  6823.          for parameters. KI 7.04.1996 */
  6824.           push_parm_decl (build_tree_list
  6825.                   (build_tree_list (arg_spec, arg_decl),
  6826.                    build_tree_list (NULL_TREE, NULL_TREE)), NULL_TREE);
  6827.  
  6828.           /* Unhook: restore the abstract declarator. */
  6829.           TREE_OPERAND (last_expr, 0) = NULL_TREE;
  6830.         }
  6831.  
  6832.       else
  6833.         /* Amiga-specific support for explicit register specification for
  6834.            parameters. KI 7.04.1996 */
  6835.         push_parm_decl (build_tree_list
  6836.                 (build_tree_list (arg_spec,
  6837.                           KEYWORD_ARG_NAME (arglist)),
  6838.                  build_tree_list (NULL_TREE, NULL_TREE)), NULL_TREE);
  6839.  
  6840.       arglist = TREE_CHAIN (arglist);
  6841.     }
  6842.       while (arglist);
  6843.     }
  6844.  
  6845.   if (METHOD_ADD_ARGS (method) > (tree)1)
  6846.     {
  6847.       /* We have a variable length selector - in "prototype" format. */
  6848.       tree akey = TREE_PURPOSE (METHOD_ADD_ARGS (method));
  6849.       while (akey)
  6850.     {
  6851.       /* This must be done prior to calling pushdecl.  pushdecl is
  6852.          going to change our chain on us.  */
  6853.       tree nextkey = TREE_CHAIN (akey);
  6854.       pushdecl (akey);
  6855.       akey = nextkey;
  6856.     }
  6857.     }
  6858. }
  6859.  
  6860. static void
  6861. warn_with_method (message, mtype, method)
  6862.      char *message;
  6863.      int mtype;
  6864.      tree method;
  6865. {
  6866.   if (count_error (1) == 0)
  6867.     return;
  6868.  
  6869.   report_error_function (DECL_SOURCE_FILE (method));
  6870.  
  6871.   fprintf (stderr, "%s:%d: warning: ",
  6872.        DECL_SOURCE_FILE (method), DECL_SOURCE_LINE (method));
  6873.   bzero (errbuf, BUFSIZE);
  6874.   fprintf (stderr, "%s `%c%s'\n",
  6875.        message, mtype, gen_method_decl (method, errbuf));
  6876. }
  6877.  
  6878. /* Return 1 if METHOD is consistent with PROTO. */
  6879.  
  6880. static int
  6881. comp_method_with_proto (method, proto)
  6882.      tree method, proto;
  6883. {
  6884.   static tree function_type = 0;
  6885.  
  6886.   /* Create a function_type node once. */
  6887.   if (!function_type)
  6888.     {
  6889.       push_obstacks_nochange ();
  6890.       end_temporary_allocation ();
  6891.       function_type = make_node (FUNCTION_TYPE);
  6892.       pop_obstacks ();
  6893.     }
  6894.  
  6895.   /* Install argument types - normally set by build_function_type.  */
  6896.   TYPE_ARG_TYPES (function_type) = get_arg_type_list (proto, METHOD_DEF, 0);
  6897.  
  6898.   /* install return type */
  6899.   TREE_TYPE (function_type) = groktypename (TREE_TYPE (proto));
  6900.  
  6901.   return comptypes (TREE_TYPE (METHOD_DEFINITION (method)), function_type);
  6902. }
  6903.  
  6904. /* Return 1 if PROTO1 is consistent with PROTO2. */
  6905.  
  6906. static int
  6907. comp_proto_with_proto (proto1, proto2)
  6908.      tree proto1, proto2;
  6909. {
  6910.   static tree function_type1 = 0, function_type2 = 0;
  6911.  
  6912.   /* Create a couple function_type node's once. */
  6913.   if (!function_type1)
  6914.     {
  6915.       push_obstacks_nochange ();
  6916.       end_temporary_allocation ();
  6917.       function_type1 = make_node (FUNCTION_TYPE);
  6918.       function_type2 = make_node (FUNCTION_TYPE);
  6919.       pop_obstacks ();
  6920.     }
  6921.  
  6922.   /* Install argument types; normally set by build_function_type.  */
  6923.   TYPE_ARG_TYPES (function_type1) = get_arg_type_list (proto1, METHOD_REF, 0);
  6924.   TYPE_ARG_TYPES (function_type2) = get_arg_type_list (proto2, METHOD_REF, 0);
  6925.  
  6926.   /* Install return type. */
  6927.   TREE_TYPE (function_type1) = groktypename (TREE_TYPE (proto1));
  6928.   TREE_TYPE (function_type2) = groktypename (TREE_TYPE (proto2));
  6929.  
  6930.   return comptypes (function_type1, function_type2);
  6931. }
  6932.  
  6933. /* - Generate an identifier for the function. the format is "_n_cls",
  6934.      where 1 <= n <= nMethods, and cls is the name the implementation we
  6935.      are processing.
  6936.    - Install the return type from the method declaration.
  6937.    - If we have a prototype, check for type consistency.  */
  6938.  
  6939. static void
  6940. really_start_method (method, parmlist)
  6941.      tree method, parmlist;
  6942. {
  6943.   tree sc_spec, ret_spec, ret_decl, decl_specs;
  6944.   tree method_decl, method_id;
  6945.   char *buf, *sel_name, *class_name, *cat_name;
  6946.  
  6947.   /* Synth the storage class & assemble the return type. */
  6948.   sc_spec = tree_cons (NULL_TREE, ridpointers[(int) RID_STATIC], NULL_TREE);
  6949.   ret_spec = TREE_PURPOSE (TREE_TYPE (method));
  6950.   decl_specs = chainon (sc_spec, ret_spec);
  6951.  
  6952.   sel_name = IDENTIFIER_POINTER (METHOD_SEL_NAME (method));
  6953.   class_name = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  6954.   cat_name = ((TREE_CODE (implementation_context)
  6955.            == CLASS_IMPLEMENTATION_TYPE)
  6956.           ? NULL
  6957.           : IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  6958.   method_slot++;
  6959.  
  6960.   /* Make sure this is big enough for any plausible method label.  */
  6961.   buf = (char *) alloca (50 + strlen (sel_name) + strlen (class_name)
  6962.              + (cat_name ? strlen (cat_name) : 0));
  6963.  
  6964.   OBJC_GEN_METHOD_LABEL (buf, TREE_CODE (method) == INSTANCE_METHOD_DECL,
  6965.              class_name, cat_name, sel_name, method_slot);
  6966.  
  6967.   method_id = get_identifier (buf);
  6968.  
  6969.   method_decl = build_nt (CALL_EXPR, method_id, parmlist, NULL_TREE);
  6970.  
  6971.   /* Check the declarator portion of the return type for the method. */
  6972.   if ((ret_decl = TREE_VALUE (TREE_TYPE (method))))
  6973.     {
  6974.       /* Unite the complex decl (specified in the abstract decl) with the
  6975.      function decl just synthesized..(int *), (int (*)()), (int (*)[]).  */
  6976.       tree save_expr = expr_last (ret_decl);
  6977.  
  6978.       TREE_OPERAND (save_expr, 0) = method_decl;
  6979.       method_decl = ret_decl;
  6980.  
  6981.       /* Fool the parser into thinking it is starting a function. */
  6982.       start_function (decl_specs, method_decl, NULL_TREE, NULL_TREE, 0);
  6983.  
  6984.       /* Unhook: this has the effect of restoring the abstract declarator. */
  6985.       TREE_OPERAND (save_expr, 0) = NULL_TREE;
  6986.     }
  6987.  
  6988.   else
  6989.     {
  6990.       TREE_VALUE (TREE_TYPE (method)) = method_decl;
  6991.  
  6992.       /* Fool the parser into thinking it is starting a function. */
  6993.       start_function (decl_specs, method_decl, NULL_TREE, NULL_TREE, 0);
  6994.  
  6995.       /* Unhook: this has the effect of restoring the abstract declarator. */
  6996.       TREE_VALUE (TREE_TYPE (method)) = NULL_TREE;
  6997.     }
  6998.  
  6999.   METHOD_DEFINITION (method) = current_function_decl;
  7000.  
  7001.   if (implementation_template != implementation_context)
  7002.     {
  7003.       tree proto;
  7004.  
  7005.       if (TREE_CODE (method) == INSTANCE_METHOD_DECL)
  7006.     proto = lookup_instance_method_static (implementation_template,
  7007.                            METHOD_SEL_NAME (method));
  7008.       else
  7009.     proto = lookup_class_method_static (implementation_template,
  7010.                         METHOD_SEL_NAME (method));
  7011.  
  7012.       if (proto && ! comp_method_with_proto (method, proto))
  7013.     {
  7014.       char type = (TREE_CODE (method) == INSTANCE_METHOD_DECL ? '-' : '+');
  7015.  
  7016.       warn_with_method ("conflicting types for", type, method);
  7017.       warn_with_method ("previous declaration of", type, proto);
  7018.     }
  7019.     }
  7020. }
  7021.  
  7022. /* The following routine is always called...this "architecture" is to
  7023.    accommodate "old-style" variable length selectors.
  7024.  
  7025.    - a:a b:b // prototype  ; id c; id d; // old-style.  */
  7026.  
  7027. void
  7028. continue_method_def ()
  7029. {
  7030.   tree parmlist;
  7031.  
  7032.   if (METHOD_ADD_ARGS (method_context) == (tree)1)
  7033.     /* We have a `, ...' immediately following the selector.  */
  7034.     parmlist = get_parm_info (0);
  7035.   else
  7036.     parmlist = get_parm_info (1); /* place a `void_at_end' */
  7037.  
  7038.   /* Set self_decl from the first argument...this global is used by
  7039.      build_ivar_reference calling build_indirect_ref.  */
  7040.   self_decl = TREE_PURPOSE (parmlist);
  7041.  
  7042.   poplevel (0, 0, 0);
  7043.   really_start_method (method_context, parmlist);
  7044.   store_parm_decls ();
  7045. }
  7046.  
  7047. /* Called by the parser, from the `pushlevel' production.  */
  7048.  
  7049. void
  7050. add_objc_decls ()
  7051. {
  7052.   if (!UOBJC_SUPER_decl)
  7053.     {
  7054.       UOBJC_SUPER_decl = start_decl (get_identifier (UTAG_SUPER),
  7055.                      build_tree_list (NULL_TREE,
  7056.                               objc_super_template),
  7057.                      0, NULL_TREE, NULL_TREE);
  7058.  
  7059.       finish_decl (UOBJC_SUPER_decl, NULL_TREE, NULL_TREE);
  7060.  
  7061.       /* This prevents `unused variable' warnings when compiling with -Wall. */
  7062.       TREE_USED (UOBJC_SUPER_decl) = 1;
  7063.       DECL_ARTIFICIAL (UOBJC_SUPER_decl) = 1;
  7064.     }
  7065. }
  7066.  
  7067. /* _n_Method (id self, SEL sel, ...)
  7068.      {
  7069.        struct objc_super _S;
  7070.        _msgSuper ((_S.self = self, _S.class = _cls, &_S), ...);
  7071.      }  */
  7072.  
  7073. tree
  7074. get_super_receiver ()
  7075. {
  7076.   if (method_context)
  7077.     {
  7078.       tree super_expr, super_expr_list;
  7079.  
  7080.       /* Set receiver to self. */
  7081.       super_expr = build_component_ref (UOBJC_SUPER_decl, self_id);
  7082.       super_expr = build_modify_expr (super_expr, NOP_EXPR, self_decl);
  7083.       super_expr_list = build_tree_list (NULL_TREE, super_expr);
  7084.  
  7085.       /* Set class to begin searching. */
  7086.       super_expr = build_component_ref (UOBJC_SUPER_decl,
  7087.                     get_identifier ("class"));
  7088.  
  7089.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  7090.     {
  7091.       /* [_cls, __cls]Super are "pre-built" in
  7092.          synth_forward_declarations.  */
  7093.  
  7094.       super_expr = build_modify_expr (super_expr, NOP_EXPR,
  7095.                       ((TREE_CODE (method_context)
  7096.                         == INSTANCE_METHOD_DECL)
  7097.                        ? ucls_super_ref
  7098.                        : uucls_super_ref));
  7099.     }
  7100.  
  7101.       else
  7102.     /* We have a category. */
  7103.     {
  7104.       tree super_name = CLASS_SUPER_NAME (implementation_template);
  7105.       tree super_class;
  7106.  
  7107.       if (!super_name)
  7108.         {
  7109.           error ("no super class declared in interface for `%s'",
  7110.             IDENTIFIER_POINTER (CLASS_NAME (implementation_template)));
  7111.           return error_mark_node;
  7112.         }
  7113.  
  7114.       if (flag_next_runtime)
  7115.         {
  7116.           super_class = get_class_reference (super_name);
  7117.           if (TREE_CODE (method_context) == CLASS_METHOD_DECL)
  7118.         super_class
  7119.           = build_component_ref (build_indirect_ref (super_class, "->"),
  7120.                      get_identifier ("isa"));
  7121.         }
  7122.       else
  7123.         {
  7124.           add_class_reference (super_name);
  7125.           super_class = (TREE_CODE (method_context) == INSTANCE_METHOD_DECL
  7126.                  ? objc_get_class_decl : objc_get_meta_class_decl);
  7127.           assemble_external (super_class);
  7128.           super_class
  7129.         = build_function_call
  7130.           (super_class,
  7131.            build_tree_list
  7132.            (NULL_TREE,
  7133.             my_build_string (IDENTIFIER_LENGTH (super_name) + 1,
  7134.                      IDENTIFIER_POINTER (super_name))));
  7135.         }
  7136.  
  7137.       TREE_TYPE (super_class) = TREE_TYPE (ucls_super_ref);
  7138.       super_expr = build_modify_expr (super_expr, NOP_EXPR, super_class);
  7139.     }
  7140.  
  7141.       chainon (super_expr_list, build_tree_list (NULL_TREE, super_expr));
  7142.  
  7143.       super_expr = build_unary_op (ADDR_EXPR, UOBJC_SUPER_decl, 0);
  7144.       chainon (super_expr_list, build_tree_list (NULL_TREE, super_expr));
  7145.  
  7146.       return build_compound_expr (super_expr_list);
  7147.     }
  7148.   else
  7149.     {
  7150.       error ("[super ...] must appear in a method context");
  7151.       return error_mark_node;
  7152.     }
  7153. }
  7154.  
  7155. static tree
  7156. encode_method_def (func_decl)
  7157.       tree func_decl;
  7158. {
  7159.   tree parms;
  7160.   int stack_size;
  7161.   int max_parm_end = 0;
  7162.   char buffer[40];
  7163.   tree result;
  7164.  
  7165.   /* Return type. */
  7166.   encode_type (TREE_TYPE (TREE_TYPE (func_decl)),
  7167.            obstack_object_size (&util_obstack),
  7168.            OBJC_ENCODE_INLINE_DEFS);
  7169.  
  7170.   /* Stack size. */
  7171.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  7172.        parms = TREE_CHAIN (parms))
  7173.     {
  7174.       int parm_end = (forwarding_offset (parms)
  7175.               + (TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (parms)))
  7176.              / BITS_PER_UNIT));
  7177.  
  7178.       if (!offset_is_register && parm_end > max_parm_end)
  7179.     max_parm_end = parm_end;
  7180.     }
  7181.  
  7182.   stack_size = max_parm_end - OBJC_FORWARDING_MIN_OFFSET;
  7183.  
  7184.   sprintf (buffer, "%d", stack_size);
  7185.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  7186.  
  7187.   /* Argument types. */
  7188.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  7189.        parms = TREE_CHAIN (parms))
  7190.     {
  7191.       /* Type. */
  7192.       encode_type (TREE_TYPE (parms),
  7193.            obstack_object_size (&util_obstack),
  7194.            OBJC_ENCODE_INLINE_DEFS);
  7195.  
  7196.       /* Compute offset. */
  7197.       sprintf (buffer, "%d", forwarding_offset (parms));
  7198.  
  7199.       /* Indicate register. */
  7200.       if (offset_is_register)
  7201.     obstack_1grow (&util_obstack, '+');
  7202.  
  7203.       obstack_grow (&util_obstack, buffer, strlen (buffer));
  7204.     }
  7205.  
  7206.   obstack_1grow (&util_obstack, 0);
  7207.   result = get_identifier (obstack_finish (&util_obstack));
  7208.   obstack_free (&util_obstack, util_firstobj);
  7209.   return result;
  7210. }
  7211.  
  7212. void
  7213. finish_method_def ()
  7214. {
  7215.   METHOD_ENCODING (method_context) = encode_method_def (current_function_decl);
  7216.  
  7217.   finish_function (0);
  7218.  
  7219.   /* Required to implement _msgSuper. This must be done AFTER finish_function,
  7220.      since the optimizer may find "may be used before set" errors.  */
  7221.   method_context = NULL_TREE;
  7222. }
  7223.  
  7224. int
  7225. lang_report_error_function (decl)
  7226.       tree decl;
  7227. {
  7228.   if (method_context)
  7229.     {
  7230.       fprintf (stderr, "In method `%s'\n",
  7231.            IDENTIFIER_POINTER (METHOD_SEL_NAME (method_context)));
  7232.       return 1;
  7233.     }
  7234.  
  7235.   else
  7236.     return 0;
  7237. }
  7238.  
  7239. static int
  7240. is_complex_decl (type)
  7241.      tree type;
  7242. {
  7243.   return (TREE_CODE (type) == ARRAY_TYPE
  7244.       || TREE_CODE (type) == FUNCTION_TYPE
  7245.       || (TREE_CODE (type) == POINTER_TYPE && ! IS_ID (type)));
  7246. }
  7247.  
  7248.  
  7249. /* Code to convert a decl node into text for a declaration in C.  */
  7250.  
  7251. static char tmpbuf[256];
  7252.  
  7253. static void
  7254. adorn_decl (decl, str)
  7255.      tree decl;
  7256.      char *str;
  7257. {
  7258.   enum tree_code code = TREE_CODE (decl);
  7259.  
  7260.   if (code == ARRAY_REF)
  7261.     {
  7262.       tree an_int_cst = TREE_OPERAND (decl, 1);
  7263.  
  7264.       if (an_int_cst && TREE_CODE (an_int_cst) == INTEGER_CST)
  7265.     sprintf (str + strlen (str), "[%d]", TREE_INT_CST_LOW (an_int_cst));
  7266.       else
  7267.     strcat (str, "[]");
  7268.     }
  7269.  
  7270.   else if (code == ARRAY_TYPE)
  7271.     {
  7272.       tree an_int_cst = TYPE_SIZE (decl);
  7273.       tree array_of = TREE_TYPE (decl);
  7274.  
  7275.       if (an_int_cst && TREE_CODE (an_int_cst) == INTEGER_TYPE)
  7276.     sprintf (str + strlen (str), "[%d]",
  7277.          (TREE_INT_CST_LOW (an_int_cst)
  7278.           / TREE_INT_CST_LOW (TYPE_SIZE (array_of))));
  7279.       else
  7280.     strcat (str, "[]");
  7281.     }
  7282.  
  7283.   else if (code == CALL_EXPR)
  7284.     {
  7285.       tree chain = TREE_PURPOSE (TREE_OPERAND (decl, 1));
  7286.  
  7287.       strcat (str, "(");
  7288.       while (chain)
  7289.     {
  7290.       gen_declaration (chain, str);
  7291.       chain = TREE_CHAIN (chain);
  7292.       if (chain)
  7293.         strcat (str, ", ");
  7294.     }
  7295.       strcat (str, ")");
  7296.     }
  7297.  
  7298.   else if (code == FUNCTION_TYPE)
  7299.     {
  7300.       tree chain  = TYPE_ARG_TYPES (decl);
  7301.  
  7302.       strcat (str, "(");
  7303.       while (chain && TREE_VALUE (chain) != void_type_node)
  7304.     {
  7305.       gen_declaration (TREE_VALUE (chain), str);
  7306.       chain = TREE_CHAIN (chain);
  7307.       if (chain && TREE_VALUE (chain) != void_type_node)
  7308.         strcat (str, ", ");
  7309.     }
  7310.       strcat (str, ")");
  7311.     }
  7312.  
  7313.   else if (code == INDIRECT_REF)
  7314.     {
  7315.       strcpy (tmpbuf, "*");
  7316.       if (TREE_TYPE (decl) && TREE_CODE (TREE_TYPE (decl)) == TREE_LIST)
  7317.     {
  7318.       tree chain;
  7319.  
  7320.       for (chain = nreverse (copy_list (TREE_TYPE (decl)));
  7321.            chain;
  7322.            chain = TREE_CHAIN (chain))
  7323.         {
  7324.           if (TREE_CODE (TREE_VALUE (chain)) == IDENTIFIER_NODE)
  7325.         {
  7326.           strcat (tmpbuf, " ");
  7327.           strcat (tmpbuf, IDENTIFIER_POINTER (TREE_VALUE (chain)));
  7328.         }
  7329.         }
  7330.       if (str[0])
  7331.         strcat (tmpbuf, " ");
  7332.     }
  7333.       strcat (tmpbuf, str);
  7334.       strcpy (str, tmpbuf);
  7335.     }
  7336.  
  7337.   else if (code == POINTER_TYPE)
  7338.     {
  7339.       strcpy (tmpbuf, "*");
  7340.       if (TREE_READONLY (decl) || TYPE_VOLATILE (decl))
  7341.     {
  7342.       if (TREE_READONLY (decl))
  7343.         strcat (tmpbuf, " const");
  7344.       if (TYPE_VOLATILE (decl))
  7345.         strcat (tmpbuf, " volatile");
  7346.       if (str[0])
  7347.         strcat (tmpbuf, " ");
  7348.     }
  7349.       strcat (tmpbuf, str);
  7350.       strcpy (str, tmpbuf);
  7351.     }
  7352. }
  7353.  
  7354. static char *
  7355. gen_declarator (decl, buf, name)
  7356.      tree decl;
  7357.      char *buf;
  7358.      char *name;
  7359. {
  7360.   if (decl)
  7361.     {
  7362.       enum tree_code code = TREE_CODE (decl);
  7363.       char *str;
  7364.       tree op;
  7365.       int wrap = 0;
  7366.  
  7367.       switch (code)
  7368.     {
  7369.     case ARRAY_REF:
  7370.     case INDIRECT_REF:
  7371.     case CALL_EXPR:
  7372.       op = TREE_OPERAND (decl, 0);
  7373.  
  7374.       /* We have a pointer to a function or array...(*)(), (*)[] */
  7375.       if ((code == ARRAY_REF || code == CALL_EXPR)
  7376.           && op && TREE_CODE (op) == INDIRECT_REF)
  7377.         wrap = 1;
  7378.  
  7379.       str = gen_declarator (op, buf, name);
  7380.  
  7381.       if (wrap)
  7382.         {
  7383.           strcpy (tmpbuf, "(");
  7384.           strcat (tmpbuf, str);
  7385.           strcat (tmpbuf, ")");
  7386.           strcpy (str, tmpbuf);
  7387.         }
  7388.  
  7389.       adorn_decl (decl, str);
  7390.       break;
  7391.  
  7392.     case ARRAY_TYPE:
  7393.     case FUNCTION_TYPE:
  7394.     case POINTER_TYPE:
  7395.       strcpy (buf, name);
  7396.       str = buf;
  7397.  
  7398.       /* This clause is done iteratively rather than recursively. */
  7399.       do
  7400.         {
  7401.           op = (is_complex_decl (TREE_TYPE (decl))
  7402.             ? TREE_TYPE (decl) : NULL_TREE);
  7403.  
  7404.           adorn_decl (decl, str);
  7405.  
  7406.           /* We have a pointer to a function or array...(*)(), (*)[] */
  7407.           if (code == POINTER_TYPE
  7408.           && op && (TREE_CODE (op) == FUNCTION_TYPE
  7409.                 || TREE_CODE (op) == ARRAY_TYPE))
  7410.         {
  7411.           strcpy (tmpbuf, "(");
  7412.           strcat (tmpbuf, str);
  7413.           strcat (tmpbuf, ")");
  7414.           strcpy (str, tmpbuf);
  7415.         }
  7416.  
  7417.           decl = (is_complex_decl (TREE_TYPE (decl))
  7418.               ? TREE_TYPE (decl) : NULL_TREE);
  7419.         }
  7420.  
  7421.       while (decl && (code = TREE_CODE (decl)))
  7422.         ;
  7423.  
  7424.       break;
  7425.  
  7426.     case IDENTIFIER_NODE:
  7427.       /* Will only happen if we are processing a "raw" expr-decl. */
  7428.       strcpy (buf, IDENTIFIER_POINTER (decl));
  7429.       return buf;
  7430.     }
  7431.  
  7432.       return str;
  7433.     }
  7434.  
  7435.   else
  7436.     /* We have an abstract declarator or a _DECL node. */
  7437.     {
  7438.       strcpy (buf, name);
  7439.       return buf;
  7440.     }
  7441. }
  7442.  
  7443. static void
  7444. gen_declspecs (declspecs, buf, raw)
  7445.      tree declspecs;
  7446.      char *buf;
  7447.      int raw;
  7448. {
  7449.   if (raw)
  7450.     {
  7451.       tree chain;
  7452.  
  7453.       for (chain = nreverse (copy_list (declspecs));
  7454.        chain; chain = TREE_CHAIN (chain))
  7455.     {
  7456.       tree aspec = TREE_VALUE (chain);
  7457.  
  7458.       if (TREE_CODE (aspec) == IDENTIFIER_NODE)
  7459.         strcat (buf, IDENTIFIER_POINTER (aspec));
  7460.       else if (TREE_CODE (aspec) == RECORD_TYPE)
  7461.         {
  7462.           if (TYPE_NAME (aspec))
  7463.         {
  7464.           tree protocol_list = TYPE_PROTOCOL_LIST (aspec);
  7465.  
  7466.           if (! TREE_STATIC_TEMPLATE (aspec))
  7467.             strcat (buf, "struct ");
  7468.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7469.  
  7470.           /* NEW!!! */
  7471.           if (protocol_list)
  7472.             {
  7473.               tree chain = protocol_list;
  7474.  
  7475.               strcat (buf, " <");
  7476.               while (chain)
  7477.             {
  7478.               strcat (buf,
  7479.                   IDENTIFIER_POINTER
  7480.                   (PROTOCOL_NAME (TREE_VALUE (chain))));
  7481.               chain = TREE_CHAIN (chain);
  7482.               if (chain)
  7483.                 strcat (buf, ", ");
  7484.             }
  7485.               strcat (buf, ">");
  7486.             }
  7487.         }
  7488.  
  7489.           else
  7490.         strcat (buf, "untagged struct");
  7491.         }
  7492.  
  7493.       else if (TREE_CODE (aspec) == UNION_TYPE)
  7494.         {
  7495.           if (TYPE_NAME (aspec))
  7496.         {
  7497.           if (! TREE_STATIC_TEMPLATE (aspec))
  7498.             strcat (buf, "union ");
  7499.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7500.         }
  7501.           else
  7502.         strcat (buf, "untagged union");
  7503.         }
  7504.  
  7505.       else if (TREE_CODE (aspec) == ENUMERAL_TYPE)
  7506.         {
  7507.           if (TYPE_NAME (aspec))
  7508.         {
  7509.           if (! TREE_STATIC_TEMPLATE (aspec))
  7510.             strcat (buf, "enum ");
  7511.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7512.         }
  7513.           else
  7514.         strcat (buf, "untagged enum");
  7515.         }
  7516.  
  7517.       else if (TREE_CODE (aspec) == TYPE_DECL && DECL_NAME (aspec))
  7518.         strcat (buf, IDENTIFIER_POINTER (DECL_NAME (aspec)));
  7519.  
  7520.       else if (IS_ID (aspec))
  7521.         {
  7522.           tree protocol_list = TYPE_PROTOCOL_LIST (aspec);
  7523.  
  7524.           strcat (buf, "id");
  7525.           if (protocol_list)
  7526.         {
  7527.           tree chain = protocol_list;
  7528.  
  7529.           strcat (buf, " <");
  7530.           while (chain)
  7531.             {
  7532.               strcat (buf,
  7533.                   IDENTIFIER_POINTER
  7534.                   (PROTOCOL_NAME (TREE_VALUE (chain))));
  7535.               chain = TREE_CHAIN (chain);
  7536.               if (chain)
  7537.             strcat (buf, ", ");
  7538.             }
  7539.           strcat (buf, ">");
  7540.         }
  7541.         }
  7542.       if (TREE_CHAIN (chain))
  7543.         strcat (buf, " ");
  7544.     }
  7545.     }
  7546.   else
  7547.     {
  7548.       /* Type qualifiers. */
  7549.       if (TREE_READONLY (declspecs))
  7550.     strcat (buf, "const ");
  7551.       if (TYPE_VOLATILE (declspecs))
  7552.     strcat (buf, "volatile ");
  7553.  
  7554.       switch (TREE_CODE (declspecs))
  7555.     {
  7556.       /* Type specifiers. */
  7557.  
  7558.     case INTEGER_TYPE:
  7559.       declspecs = TYPE_MAIN_VARIANT (declspecs);
  7560.  
  7561.       /* Signed integer types.  */
  7562.  
  7563.       if (declspecs == short_integer_type_node)
  7564.         strcat (buf, "short int ");
  7565.       else if (declspecs == integer_type_node)
  7566.         strcat (buf, "int ");
  7567.       else if (declspecs == long_integer_type_node)
  7568.         strcat (buf, "long int ");
  7569.       else if (declspecs == long_long_integer_type_node)
  7570.         strcat (buf, "long long int ");
  7571.       else if (declspecs == signed_char_type_node
  7572.            || declspecs == char_type_node)
  7573.         strcat (buf, "char ");
  7574.  
  7575.       /* Unsigned integer types. */
  7576.  
  7577.       else if (declspecs == short_unsigned_type_node)
  7578.         strcat (buf, "unsigned short ");
  7579.       else if (declspecs == unsigned_type_node)
  7580.         strcat (buf, "unsigned int ");
  7581.       else if (declspecs == long_unsigned_type_node)
  7582.         strcat (buf, "unsigned long ");
  7583.       else if (declspecs == long_long_unsigned_type_node)
  7584.         strcat (buf, "unsigned long long ");
  7585.       else if (declspecs == unsigned_char_type_node)
  7586.         strcat (buf, "unsigned char ");
  7587.       break;
  7588.  
  7589.     case REAL_TYPE:
  7590.       declspecs = TYPE_MAIN_VARIANT (declspecs);
  7591.  
  7592.       if (declspecs == float_type_node)
  7593.         strcat (buf, "float ");
  7594.       else if (declspecs == double_type_node)
  7595.         strcat (buf, "double ");
  7596.       else if (declspecs == long_double_type_node)
  7597.         strcat (buf, "long double ");
  7598.       break;
  7599.  
  7600.       case RECORD_TYPE:
  7601.       if (TYPE_NAME (declspecs)
  7602.           && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7603.         {
  7604.           tree protocol_list = TYPE_PROTOCOL_LIST (declspecs);
  7605.  
  7606.           if (! TREE_STATIC_TEMPLATE (declspecs))
  7607.         strcat (buf, "struct ");
  7608.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7609.  
  7610.           if (protocol_list)
  7611.         {
  7612.           tree chain = protocol_list;
  7613.  
  7614.           strcat (buf, " <");
  7615.           while (chain)
  7616.             {
  7617.               strcat (buf,
  7618.                   IDENTIFIER_POINTER
  7619.                   (PROTOCOL_NAME (TREE_VALUE (chain))));
  7620.               chain = TREE_CHAIN (chain);
  7621.               if (chain)
  7622.             strcat (buf, ", ");
  7623.             }
  7624.           strcat (buf, ">");
  7625.         }
  7626.         }
  7627.  
  7628.       else
  7629.         strcat (buf, "untagged struct");
  7630.  
  7631.       strcat (buf, " ");
  7632.       break;
  7633.  
  7634.     case UNION_TYPE:
  7635.       if (TYPE_NAME (declspecs)
  7636.           && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7637.         {
  7638.           strcat (buf, "union ");
  7639.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7640.           strcat (buf, " ");
  7641.         }
  7642.  
  7643.       else
  7644.         strcat (buf, "untagged union ");
  7645.       break;
  7646.  
  7647.     case ENUMERAL_TYPE:
  7648.       if (TYPE_NAME (declspecs)
  7649.           && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7650.         {
  7651.           strcat (buf, "enum ");
  7652.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7653.           strcat (buf, " ");
  7654.         }
  7655.  
  7656.       else
  7657.         strcat (buf, "untagged enum ");
  7658.       break;
  7659.  
  7660.     case VOID_TYPE:
  7661.       strcat (buf, "void ");
  7662.       break;
  7663.  
  7664.     case POINTER_TYPE:
  7665.       {
  7666.         tree protocol_list = TYPE_PROTOCOL_LIST (declspecs);
  7667.  
  7668.         strcat (buf, "id");
  7669.         if (protocol_list)
  7670.           {
  7671.         tree chain = protocol_list;
  7672.  
  7673.         strcat (buf, " <");
  7674.         while (chain)
  7675.           {
  7676.             strcat (buf,
  7677.                 IDENTIFIER_POINTER
  7678.                 (PROTOCOL_NAME (TREE_VALUE (chain))));
  7679.             chain = TREE_CHAIN (chain);
  7680.             if (chain)
  7681.               strcat (buf, ", ");
  7682.           }
  7683.  
  7684.         strcat (buf, ">");
  7685.           }
  7686.       }
  7687.     }
  7688.     }
  7689. }
  7690.  
  7691. static char *
  7692. gen_declaration (atype_or_adecl, buf)
  7693.      tree atype_or_adecl;
  7694.      char *buf;
  7695. {
  7696.   char declbuf[256];
  7697.  
  7698.   if (TREE_CODE (atype_or_adecl) == TREE_LIST)
  7699.     {
  7700.       tree declspecs;    /* "identifier_node", "record_type" */
  7701.       tree declarator;    /* "array_ref", "indirect_ref", "call_expr"... */
  7702.  
  7703.       /* We have a "raw", abstract declarator (typename). */
  7704.       declarator = TREE_VALUE (atype_or_adecl);
  7705.       declspecs  = TREE_PURPOSE (atype_or_adecl);
  7706.  
  7707.       gen_declspecs (declspecs, buf, 1);
  7708.       if (declarator)
  7709.     {
  7710.       strcat (buf, " ");
  7711.       strcat (buf, gen_declarator (declarator, declbuf, ""));
  7712.     }
  7713.     }
  7714.  
  7715.   else
  7716.     {
  7717.       tree atype;
  7718.       tree declspecs;    /* "integer_type", "real_type", "record_type"... */
  7719.       tree declarator;    /* "array_type", "function_type", "pointer_type". */
  7720.  
  7721.       if (TREE_CODE (atype_or_adecl) == FIELD_DECL
  7722.       || TREE_CODE (atype_or_adecl) == PARM_DECL
  7723.       || TREE_CODE (atype_or_adecl) == FUNCTION_DECL)
  7724.     atype = TREE_TYPE (atype_or_adecl);
  7725.       else
  7726.     /* Assume we have a *_type node. */
  7727.     atype = atype_or_adecl;
  7728.  
  7729.       if (is_complex_decl (atype))
  7730.     {
  7731.       tree chain;
  7732.  
  7733.       /* Get the declaration specifier; it is at the end of the list. */
  7734.       declarator = chain = atype;
  7735.       do
  7736.         chain = TREE_TYPE (chain); /* not TREE_CHAIN (chain); */
  7737.       while (is_complex_decl (chain));
  7738.       declspecs = chain;
  7739.     }
  7740.  
  7741.       else
  7742.     {
  7743.       declspecs = atype;
  7744.       declarator = NULL_TREE;
  7745.     }
  7746.  
  7747.       gen_declspecs (declspecs, buf, 0);
  7748.  
  7749.       if (TREE_CODE (atype_or_adecl) == FIELD_DECL
  7750.       || TREE_CODE (atype_or_adecl) == PARM_DECL
  7751.       || TREE_CODE (atype_or_adecl) == FUNCTION_DECL)
  7752.     {
  7753.       char *decl_name = (DECL_NAME (atype_or_adecl)
  7754.                  ? IDENTIFIER_POINTER (DECL_NAME (atype_or_adecl))
  7755.                  : "");
  7756.  
  7757.       if (declarator)
  7758.         {
  7759.           strcat (buf, " ");
  7760.           strcat (buf, gen_declarator (declarator, declbuf, decl_name));
  7761.         }
  7762.  
  7763.       else if (decl_name[0])
  7764.         {
  7765.           strcat (buf, " ");
  7766.           strcat (buf, decl_name);
  7767.         }
  7768.     }
  7769.       else if (declarator)
  7770.     {
  7771.       strcat (buf, " ");
  7772.       strcat (buf, gen_declarator (declarator, declbuf, ""));
  7773.     }
  7774.     }
  7775.  
  7776.   return buf;
  7777. }
  7778.  
  7779. #define RAW_TYPESPEC(meth) (TREE_VALUE (TREE_PURPOSE (TREE_TYPE (meth))))
  7780.  
  7781. static char *
  7782. gen_method_decl (method, buf)
  7783.      tree method;
  7784.      char *buf;
  7785. {
  7786.   tree chain;
  7787.  
  7788.   if (RAW_TYPESPEC (method) != objc_object_reference)
  7789.     {
  7790.       strcpy (buf, "(");
  7791.       gen_declaration (TREE_TYPE (method), buf);
  7792.       strcat (buf, ")");
  7793.     }
  7794.  
  7795.   chain = METHOD_SEL_ARGS (method);
  7796.   if (chain)
  7797.     {
  7798.       /* We have a chain of keyword_decls. */
  7799.       do
  7800.         {
  7801.       if (KEYWORD_KEY_NAME (chain))
  7802.         strcat (buf, IDENTIFIER_POINTER (KEYWORD_KEY_NAME (chain)));
  7803.  
  7804.       strcat (buf, ":");
  7805.       if (RAW_TYPESPEC (chain) != objc_object_reference)
  7806.         {
  7807.           strcat (buf, "(");
  7808.           gen_declaration (TREE_TYPE (chain), buf);
  7809.           strcat (buf, ")");
  7810.         }
  7811.  
  7812.       strcat (buf, IDENTIFIER_POINTER (KEYWORD_ARG_NAME (chain)));
  7813.       if ((chain = TREE_CHAIN (chain)))
  7814.         strcat (buf, " ");
  7815.         }
  7816.       while (chain);
  7817.  
  7818.       if (METHOD_ADD_ARGS (method) == (tree)1)
  7819.         strcat (buf, ", ...");
  7820.       else if (METHOD_ADD_ARGS (method))
  7821.         {
  7822.       /* We have a tree list node as generate by get_parm_info.  */
  7823.       chain  = TREE_PURPOSE (METHOD_ADD_ARGS (method));
  7824.  
  7825.           /* Know we have a chain of parm_decls. */
  7826.           while (chain)
  7827.             {
  7828.           strcat (buf, ", ");
  7829.           gen_declaration (chain, buf);
  7830.           chain = TREE_CHAIN (chain);
  7831.             }
  7832.     }
  7833.     }
  7834.  
  7835.   else
  7836.     /* We have a unary selector. */
  7837.     strcat (buf, IDENTIFIER_POINTER (METHOD_SEL_NAME (method)));
  7838.  
  7839.   return buf;
  7840. }
  7841.  
  7842. /* Debug info.  */
  7843.  
  7844. static void
  7845. dump_interface (fp, chain)
  7846.      FILE *fp;
  7847.      tree chain;
  7848. {
  7849.   char *buf = (char *)xmalloc (256);
  7850.   char *my_name = IDENTIFIER_POINTER (CLASS_NAME (chain));
  7851.   tree ivar_decls = CLASS_RAW_IVARS (chain);
  7852.   tree nst_methods = CLASS_NST_METHODS (chain);
  7853.   tree cls_methods = CLASS_CLS_METHODS (chain);
  7854.  
  7855.   fprintf (fp, "\n@interface %s", my_name);
  7856.  
  7857.   if (CLASS_SUPER_NAME (chain))
  7858.     {
  7859.       char *super_name = IDENTIFIER_POINTER (CLASS_SUPER_NAME (chain));
  7860.       fprintf (fp, " : %s\n", super_name);
  7861.     }
  7862.   else
  7863.     fprintf (fp, "\n");
  7864.  
  7865.   if (ivar_decls)
  7866.     {
  7867.       fprintf (fp, "{\n");
  7868.       do
  7869.     {
  7870.       bzero (buf, 256);
  7871.       fprintf (fp, "\t%s;\n", gen_declaration (ivar_decls, buf));
  7872.       ivar_decls = TREE_CHAIN (ivar_decls);
  7873.     }
  7874.       while (ivar_decls);
  7875.       fprintf (fp, "}\n");
  7876.     }
  7877.  
  7878.   while (nst_methods)
  7879.     {
  7880.       bzero (buf, 256);
  7881.       fprintf (fp, "- %s;\n", gen_method_decl (nst_methods, buf));
  7882.       nst_methods = TREE_CHAIN (nst_methods);
  7883.     }
  7884.  
  7885.   while (cls_methods)
  7886.     {
  7887.       bzero (buf, 256);
  7888.       fprintf (fp, "+ %s;\n", gen_method_decl (cls_methods, buf));
  7889.       cls_methods = TREE_CHAIN (cls_methods);
  7890.     }
  7891.   fprintf (fp, "\n@end");
  7892. }
  7893.  
  7894. static void
  7895. init_objc ()
  7896. {
  7897.   /* Add the special tree codes of Objective C to the tables.  */
  7898.  
  7899. #define LAST_CODE LAST_AND_UNUSED_TREE_CODE
  7900.  
  7901.   gcc_obstack_init (&util_obstack);
  7902.   util_firstobj = (char *) obstack_finish (&util_obstack);
  7903.  
  7904.   tree_code_type
  7905.     = (char **) xrealloc (tree_code_type,
  7906.               sizeof (char *) * LAST_OBJC_TREE_CODE);
  7907.   tree_code_length
  7908.     = (int *) xrealloc (tree_code_length,
  7909.             sizeof (int) * LAST_OBJC_TREE_CODE);
  7910.   tree_code_name
  7911.     = (char **) xrealloc (tree_code_name,
  7912.               sizeof (char *) * LAST_OBJC_TREE_CODE);
  7913.   bcopy ((char *) objc_tree_code_type,
  7914.      (char *) (tree_code_type + (int) LAST_CODE),
  7915.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  7916.       * sizeof (char *)));
  7917.   bcopy ((char *) objc_tree_code_length,
  7918.      (char *) (tree_code_length + (int) LAST_CODE),
  7919.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  7920.       * sizeof (int)));
  7921.   bcopy ((char *) objc_tree_code_name,
  7922.      (char *) (tree_code_name + (int) LAST_CODE),
  7923.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  7924.       * sizeof (char *)));
  7925.  
  7926.   errbuf = (char *)xmalloc (BUFSIZE);
  7927.   hash_init ();
  7928.   synth_module_prologue ();
  7929. }
  7930.  
  7931. static void
  7932. finish_objc ()
  7933. {
  7934.   struct imp_entry *impent;
  7935.   tree chain;
  7936.   /* The internally generated initializers appear to have missing braces.
  7937.      Don't warn about this.  */
  7938.   int save_warn_missing_braces = warn_missing_braces;
  7939.   warn_missing_braces = 0;
  7940.  
  7941.   generate_forward_declaration_to_string_table ();
  7942.  
  7943. #ifdef OBJC_PROLOGUE
  7944.   OBJC_PROLOGUE;
  7945. #endif
  7946.  
  7947.   if (implementation_context || class_names_chain
  7948.       || meth_var_names_chain || meth_var_types_chain || sel_ref_chain)
  7949.     generate_objc_symtab_decl ();
  7950.  
  7951.   for (impent = imp_list; impent; impent = impent->next)
  7952.     {
  7953.       implementation_context = impent->imp_context;
  7954.       implementation_template = impent->imp_template;
  7955.  
  7956.       UOBJC_CLASS_decl = impent->class_decl;
  7957.       UOBJC_METACLASS_decl = impent->meta_decl;
  7958.  
  7959.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  7960.     {
  7961.       /* all of the following reference the string pool...  */
  7962.       generate_ivar_lists ();
  7963.       generate_dispatch_tables ();
  7964.       generate_shared_structures ();
  7965.     }
  7966.       else
  7967.     {
  7968.       generate_dispatch_tables ();
  7969.       generate_category (implementation_context);
  7970.     }
  7971.     }
  7972.  
  7973.   /* If we are using an array of selectors, we must always
  7974.      finish up the array decl even if no selectors were used.  */
  7975.   if (! flag_next_runtime || sel_ref_chain)
  7976.     build_selector_translation_table ();
  7977.  
  7978.   if (protocol_chain)
  7979.     generate_protocols ();
  7980.  
  7981.   if (objc_static_instances)
  7982.     generate_static_references ();
  7983.  
  7984.   if (implementation_context || class_names_chain || objc_static_instances
  7985.       || meth_var_names_chain || meth_var_types_chain || sel_ref_chain)
  7986.     {
  7987.       /* Arrange for Objc data structures to be initialized at run time.  */
  7988.       char *init_name = build_module_descriptor ();
  7989.       if (init_name)
  7990.     assemble_constructor (init_name);
  7991.     }
  7992.  
  7993.   /* Dump the class references.  This forces the appropriate classes
  7994.      to be linked into the executable image, preserving unix archive
  7995.      semantics.  This can be removed when we move to a more dynamically
  7996.      linked environment.  */
  7997.  
  7998.   for (chain = cls_ref_chain; chain; chain = TREE_CHAIN (chain))
  7999.     {
  8000.       handle_class_ref (chain);
  8001.       if (TREE_PURPOSE (chain))
  8002.     generate_classref_translation_entry (chain);
  8003.     }
  8004.  
  8005.   for (impent = imp_list; impent; impent = impent->next)
  8006.     handle_impent (impent);
  8007.  
  8008.   /* Dump the string table last. */
  8009.  
  8010.   generate_strings ();
  8011.  
  8012.   if (flag_gen_declaration)
  8013.     {
  8014.       add_class (implementation_context);
  8015.       dump_interface (gen_declaration_file, implementation_context);
  8016.     }
  8017.  
  8018.   if (warn_selector)
  8019.     {
  8020.       int slot;
  8021.       hash hsh;
  8022.  
  8023.       /* Run through the selector hash tables and print a warning for any
  8024.          selector which has multiple methods. */
  8025.  
  8026.       for (slot = 0; slot < SIZEHASHTABLE; slot++)
  8027.     for (hsh = cls_method_hash_list[slot]; hsh; hsh = hsh->next)
  8028.       if (hsh->list)
  8029.         {
  8030.           tree meth = hsh->key;
  8031.           char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL
  8032.                ? '-' : '+');
  8033.           attr loop;
  8034.  
  8035.           warning ("potential selector conflict for method `%s'",
  8036.                IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  8037.           warn_with_method ("found", type, meth);
  8038.           for (loop = hsh->list; loop; loop = loop->next)
  8039.         warn_with_method ("found", type, loop->value);
  8040.         }
  8041.  
  8042.       for (slot = 0; slot < SIZEHASHTABLE; slot++)
  8043.     for (hsh = nst_method_hash_list[slot]; hsh; hsh = hsh->next)
  8044.       if (hsh->list)
  8045.         {
  8046.           tree meth = hsh->key;
  8047.           char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL
  8048.                ? '-' : '+');
  8049.           attr loop;
  8050.  
  8051.           warning ("potential selector conflict for method `%s'",
  8052.                IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  8053.           warn_with_method ("found", type, meth);
  8054.           for (loop = hsh->list; loop; loop = loop->next)
  8055.         warn_with_method ("found", type, loop->value);
  8056.         }
  8057.     }
  8058.  
  8059.   warn_missing_braces = save_warn_missing_braces;
  8060. }
  8061.  
  8062. /* Subroutines of finish_objc.  */
  8063.  
  8064. static void
  8065. generate_classref_translation_entry (chain)
  8066.     tree chain;
  8067. {
  8068.   tree expr, name, decl_specs, decl, sc_spec;
  8069.   tree type;
  8070.  
  8071.   type = TREE_TYPE (TREE_PURPOSE (chain));
  8072.  
  8073.   expr = add_objc_string (TREE_VALUE (chain), class_names);
  8074.   expr = build_c_cast (type, expr); /* cast! */
  8075.  
  8076.   name = DECL_NAME (TREE_PURPOSE (chain));
  8077.  
  8078.   sc_spec = build_tree_list (NULL_TREE, ridpointers[(int) RID_STATIC]);
  8079.  
  8080.   /* static struct objc_class * _OBJC_CLASS_REFERENCES_n = ...; */
  8081.   decl_specs = tree_cons (NULL_TREE, type, sc_spec);
  8082.  
  8083.   /* The decl that is returned from start_decl is the one that we
  8084.      forward declared in build_class_reference.  */
  8085.   decl = start_decl (name, decl_specs, 1, NULL_TREE, NULL_TREE);
  8086.   finish_decl (decl, expr, NULL_TREE);
  8087.   return;
  8088. }
  8089.  
  8090. static void
  8091. handle_class_ref (chain)
  8092.      tree chain;
  8093. {
  8094.   char *name = IDENTIFIER_POINTER (TREE_VALUE (chain));
  8095.   if (! flag_next_runtime)
  8096.     {
  8097.       tree decl;
  8098.       char *string = (char *) alloca (strlen (name) + 30);
  8099.       tree exp;
  8100.  
  8101.       sprintf (string, "%sobjc_class_name_%s",
  8102.            (flag_next_runtime ? "." : "__"), name);
  8103.  
  8104.       /* Make a decl for this name, so we can use its address in a tree.  */
  8105.       decl = build_decl (VAR_DECL, get_identifier (string), char_type_node);
  8106.       DECL_EXTERNAL (decl) = 1;
  8107.       TREE_PUBLIC (decl) = 1;
  8108.  
  8109.       pushdecl (decl);
  8110.       rest_of_decl_compilation (decl, 0, 0, 0);
  8111.  
  8112.       /* Make following constant read-only (why not)?  */
  8113.       readonly_data_section ();
  8114.  
  8115.       exp = build1 (ADDR_EXPR, string_type_node, decl);
  8116.  
  8117.       /* Align the section properly.  */
  8118.       assemble_constant_align (exp);
  8119.  
  8120.       /* Inform the assembler about this new external thing.  */
  8121.       assemble_external (decl);
  8122.  
  8123.       /* Output a constant to reference this address.  */
  8124.       output_constant (exp, int_size_in_bytes (string_type_node));
  8125.     }
  8126.   else
  8127.     {
  8128.       /* This overreliance on our assembler (i.e. lack of portability)
  8129.      should be dealt with at some point.  The GNU strategy (above)
  8130.      won't work either, but it is a start.  */
  8131.       char *string = (char *) alloca (strlen (name) + 30);
  8132.       sprintf (string, ".reference .objc_class_name_%s", name);
  8133.       assemble_asm (my_build_string (strlen (string) + 1, string));
  8134.     }
  8135. }
  8136.  
  8137. static void
  8138. handle_impent (impent)
  8139.      struct imp_entry *impent;
  8140. {
  8141.   implementation_context = impent->imp_context;
  8142.   implementation_template = impent->imp_template;
  8143.  
  8144.   if (TREE_CODE (impent->imp_context) == CLASS_IMPLEMENTATION_TYPE)
  8145.     {
  8146.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (impent->imp_context));
  8147.       char *string = (char *) alloca (strlen (class_name) + 30);
  8148.  
  8149.       if (flag_next_runtime)
  8150.     {
  8151.       /* Grossly unportable.
  8152.          People should know better than to assume
  8153.          such things about assembler syntax!  */
  8154.       sprintf (string, ".objc_class_name_%s=0", class_name);
  8155.       assemble_asm (my_build_string (strlen (string) + 1, string));
  8156.  
  8157.       sprintf (string, ".globl .objc_class_name_%s", class_name);
  8158.       assemble_asm (my_build_string (strlen (string) + 1, string));
  8159.     }
  8160.  
  8161.       else
  8162.     {
  8163.       sprintf (string, "%sobjc_class_name_%s",
  8164.            (flag_next_runtime ? "." : "__"), class_name);
  8165.       assemble_global (string);
  8166.       assemble_label (string);
  8167.     }
  8168.     }
  8169.  
  8170.   else if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  8171.     {
  8172.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (impent->imp_context));
  8173.       char *class_super_name
  8174.     = IDENTIFIER_POINTER (CLASS_SUPER_NAME (impent->imp_context));
  8175.       char *string = (char *) alloca (strlen (class_name)
  8176.                       + strlen (class_super_name) + 30);
  8177.  
  8178.       /* Do the same for categories.  Even though no references to these
  8179.      symbols are generated automatically by the compiler, it gives
  8180.      you a handle to pull them into an archive by hand. */
  8181.       if (flag_next_runtime)
  8182.     {
  8183.       /* Grossly unportable.  */
  8184.       sprintf (string, ".objc_category_name_%s_%s=0",
  8185.            class_name, class_super_name);
  8186.       assemble_asm (my_build_string (strlen (string) + 1, string));
  8187.  
  8188.       sprintf (string, ".globl .objc_category_name_%s_%s",
  8189.            class_name, class_super_name);
  8190.       assemble_asm (my_build_string (strlen (string) + 1, string));
  8191.     }
  8192.  
  8193.       else
  8194.     {
  8195.       sprintf (string, "%sobjc_category_name_%s_%s",
  8196.            (flag_next_runtime ? "." : "__"),
  8197.            class_name, class_super_name);
  8198.       assemble_global (string);
  8199.       assemble_label (string);
  8200.     }
  8201.     }
  8202. }
  8203.  
  8204. #ifdef DEBUG
  8205.  
  8206. static void
  8207. objc_debug (fp)
  8208.      FILE *fp;
  8209. {
  8210.   char *buf = (char *)xmalloc (256);
  8211.  
  8212.   {                /* dump function prototypes */
  8213.     tree loop = UOBJC_MODULES_decl;
  8214.  
  8215.     fprintf (fp, "\n\nfunction prototypes:\n");
  8216.     while (loop)
  8217.       {
  8218.     if (TREE_CODE (loop) == FUNCTION_DECL && DECL_INITIAL (loop))
  8219.       {
  8220.         /* We have a function definition: generate prototype. */
  8221.             bzero (errbuf, BUFSIZE);
  8222.         gen_declaration (loop, errbuf);
  8223.         fprintf (fp, "%s;\n", errbuf);
  8224.       }
  8225.     loop = TREE_CHAIN (loop);
  8226.       }
  8227.   }
  8228.   {
  8229.     /* Dump global chains. */
  8230.     tree loop;
  8231.     int i, index = 0, offset = 0;
  8232.     hash hashlist;
  8233.  
  8234.     for (i = 0; i < SIZEHASHTABLE; i++)
  8235.       {
  8236.     if (hashlist = nst_method_hash_list[i])
  8237.       {
  8238.         fprintf (fp, "\n\nnst_method_hash_list[%d]:\n", i);
  8239.         do
  8240.           {
  8241.         bzero (buf, 256);
  8242.         fprintf (fp, "-%s;\n", gen_method_decl (hashlist->key, buf));
  8243.         hashlist = hashlist->next;
  8244.           }
  8245.         while (hashlist);
  8246.       }
  8247.       }
  8248.  
  8249.     for (i = 0; i < SIZEHASHTABLE; i++)
  8250.       {
  8251.     if (hashlist = cls_method_hash_list[i])
  8252.       {
  8253.         fprintf (fp, "\n\ncls_method_hash_list[%d]:\n", i);
  8254.         do
  8255.           {
  8256.         bzero (buf, 256);
  8257.         fprintf (fp, "-%s;\n", gen_method_decl (hashlist->key, buf));
  8258.         hashlist = hashlist->next;
  8259.           }
  8260.         while (hashlist);
  8261.       }
  8262.       }
  8263.  
  8264.     fprintf (fp, "\nsel_refdef_chain:\n");
  8265.     for (loop = sel_refdef_chain; loop; loop = TREE_CHAIN (loop))
  8266.       {
  8267.     fprintf (fp, "(index: %4d offset: %4d) %s\n", index, offset,
  8268.          IDENTIFIER_POINTER (TREE_VALUE (loop)));
  8269.     index++;
  8270.     /* add one for the '\0' character */
  8271.     offset += IDENTIFIER_LENGTH (TREE_VALUE (loop)) + 1;
  8272.       }
  8273.  
  8274.     fprintf (fp, "\n (max_selector_index: %4d.\n", max_selector_index);
  8275.   }
  8276. }
  8277. #endif
  8278.  
  8279. void
  8280. print_lang_statistics ()
  8281. {
  8282. }
  8283.