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