home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / objc-actions.h < prev    next >
C/C++ Source or Header  |  1992-02-07  |  5KB  |  151 lines

  1. /* Declarations for objc-actions.c.
  2.    Copyright (C) 1990 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /*** Public Interface (procedures) ***/
  22.  
  23. /* used by compile_file */
  24.  
  25. extern void init_objc (), finish_objc ();
  26.  
  27. /* used by yyparse */
  28.  
  29. extern tree start_class ();
  30. extern tree continue_class ();
  31. extern tree finish_class ();
  32. extern void start_method_def ();
  33. extern void continue_method_def ();
  34. extern void finish_method_def ();
  35. extern tree start_protocol ();
  36. extern void finish_protocol ();
  37.  
  38. extern tree is_ivar ();
  39. extern int  is_private ();
  40. extern int  is_public ();
  41. extern tree add_instance_variable ();
  42. extern tree add_class_method ();
  43. extern tree add_instance_method ();
  44. extern void add_objc_decls ();
  45. extern tree get_super_receiver ();
  46. extern tree get_class_ivars ();
  47. extern tree get_class_reference ();
  48. extern tree get_static_reference ();
  49. extern tree get_object_reference ();
  50.  
  51. extern tree build_message_expr ();
  52. extern tree build_selector_expr ();
  53. extern tree build_protocol_expr ();
  54. extern tree build_ivar_reference ();
  55. extern tree build_keyword_decl ();
  56. extern tree build_method_decl ();
  57. extern tree build_objc_string_object ();
  58. extern tree build_objc_string ();
  59.  
  60. extern void objc_declare_class ();
  61. extern void objc_declare_alias ();
  62. extern tree is_class_name ();
  63.  
  64. /* Nonzero enables objc features.  */
  65.  
  66. extern int doing_objc_thang;
  67.  
  68. /* the following routines are used to implement statically typed objects */
  69.  
  70. extern tree lookup_interface ();
  71. extern int  objc_comptypes ();
  72. extern void objc_check_decl ();
  73.  
  74. /* NeXT extensions */
  75.  
  76. extern tree build_encode_expr ();
  77.  
  78. /* used by rest_of_compilation.  */
  79.  
  80. extern void genPrototype ();
  81.  
  82. /* Objective-C structures */
  83.  
  84. /* KEYWORD_DECL */
  85. #define KEYWORD_KEY_NAME(DECL) \
  86.     (((struct objc_tree_keyword_decl *)(DECL))->key_name)
  87. #define KEYWORD_ARG_NAME(DECL) \
  88.     (((struct objc_tree_keyword_decl *)(DECL))->arg_name)
  89.  
  90. /* INSTANCE_METHOD_DECL, CLASS_METHOD_DECL */
  91. #define METHOD_FILENAME(DECL) \
  92.     (((struct objc_tree_method_decl *)(DECL))->filename)
  93. #define METHOD_LINENUM(DECL) \
  94.     (((struct objc_tree_method_decl *)(DECL))->linenum)
  95. #define METHOD_SEL_NAME(DECL) \
  96.     (((struct objc_tree_method_decl *)(DECL))->sel_name)
  97. #define METHOD_SEL_ARGS(DECL) \
  98.     (((struct objc_tree_method_decl *)(DECL))->sel_args)
  99. #define METHOD_ADD_ARGS(DECL) \
  100.     (((struct objc_tree_method_decl *)(DECL))->add_args)
  101. #define METHOD_DEFINITION(DECL) \
  102.     (((struct objc_tree_method_decl *)(DECL))->mth_defn)
  103. #define METHOD_ENCODING(DECL) \
  104.     (((struct objc_tree_method_decl *)(DECL))->encode_types)
  105.  
  106. /* CLASS_INTERFACE, CLASS_IMPLEMENTATION,
  107.    CATEGORY_INTERFACE, CATEGORY_IMPLEMENTATION,
  108.    PROTOCOL_INTERFACE */
  109. #define CLASS_NAME(CLASS) \
  110.     (((struct objc_tree_class_type *)(CLASS))->my_name)
  111. #define CLASS_SUPER_NAME(CLASS) \
  112.     (((struct objc_tree_class_type *)(CLASS))->super_name)
  113. #define CLASS_IVARS(CLASS) \
  114.     (((struct objc_tree_class_type *)(CLASS))->ivar_decls)
  115. #define CLASS_RAW_IVARS(CLASS) \
  116.     (((struct objc_tree_class_type *)(CLASS))->raw_ivars)
  117. #define CLASS_NST_METHODS(CLASS) \
  118.     (((struct objc_tree_class_type *)(CLASS))->nst_method_chain)
  119. #define CLASS_CLS_METHODS(CLASS) \
  120.     (((struct objc_tree_class_type *)(CLASS))->cls_method_chain)
  121. #define CLASS_STATIC_TEMPLATE(CLASS) \
  122.     (((struct objc_tree_class_type *)(CLASS))->static_template)
  123. #define CLASS_CATEGORY_LIST(CLASS) \
  124.     (((struct objc_tree_class_type *)(CLASS))->category_list)
  125. #define CLASS_PROTOCOL_LIST(CLASS) \
  126.     (((struct objc_tree_class_type *)(CLASS))->protocol_list)
  127. #define PROTOCOL_NAME(CLASS) \
  128.     (((struct objc_tree_class_type *)(CLASS))->my_name)
  129. #define PROTOCOL_LIST(CLASS) \
  130.     (((struct objc_tree_class_type *)(CLASS))->super_name)
  131. #define PROTOCOL_NST_METHODS(CLASS) \
  132.     (((struct objc_tree_class_type *)(CLASS))->nst_method_chain)
  133. #define PROTOCOL_CLS_METHODS(CLASS) \
  134.     (((struct objc_tree_class_type *)(CLASS))->cls_method_chain)
  135. #define PROTOCOL_FORWARD_DECL(CLASS) \
  136.     (((struct objc_tree_class_type *)(CLASS))->static_template)
  137.  
  138. #define TYPE_PROTOCOL_LIST(TYPE) ((tree) TYPE_LANG_SPECIFIC (TYPE))
  139.  
  140. /* Define the Objective-C language-specific tree codes.  */
  141.  
  142. #define FIRST_OBJC_TREE_CODE LAST_AND_UNUSED_TREE_CODE
  143.  
  144. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM,
  145. enum objc_tree_code {
  146.   dummy_tree_code = FIRST_OBJC_TREE_CODE,
  147. #include "objc-tree.def"
  148.   LAST_OBJC_TREE_CODE
  149. };
  150. #undef DEFTREECODE
  151.