home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / objc / objc.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  16KB  |  355 lines

  1. /* Basic data types for Objective C.
  2.    Copyright (C) 1992 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. /* As a special exception, if you link this library with files
  21.    compiled with GCC to produce an executable, this does not cause
  22.    the resulting executable to be covered by the GNU General Public License.
  23.    This exception does not however invalidate any other reasons why
  24.    the executable file might be covered by the GNU General Public License.  */
  25.  
  26.  
  27. #ifndef __objc_INCLUDE_GNU
  28. #define __objc_INCLUDE_GNU
  29.  
  30. /* If someone is using a c++ compiler then adjust the types in the
  31.    file back to C.  */
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. #include  "record.h"
  37.  
  38.  
  39. #define nil (id)0                               /* id of Nil instance */
  40. #define Nil (Class_t)0                          /* id of Nil class */
  41. typedef char* STR;                              /* String alias */
  42.  
  43.                                                 /* Boolean typedefs */
  44. typedef char  BOOL;
  45. #define YES   (BOOL)1
  46. #define NO    (BOOL)0
  47.  
  48. /* Definition of a selector.  Selectors are really of type char*. The
  49.    run-time hashes the string's address to locate the method.  If the
  50.    method isn't in the hash table then a search is made through the
  51.    class hierarchy using strcmp to locate the method.  */
  52. #if 0
  53. typedef struct objc_selector*   SEL;
  54. #else
  55. typedef void* SEL;
  56. #endif
  57.  
  58. /* ObjC uses this typedef for untyped instances.  */
  59.  
  60. typedef struct objc_object {
  61.   struct objc_class*  class_pointer;
  62. } *id;
  63.  
  64. /* Prototype for method functions. */
  65. typedef id  (*IMP)(id, SEL, ...); 
  66.  
  67. /* Filer types used to describe Ivars and Methods.  */
  68. #define _C_ID       '@'
  69. #define _C_CLASS    '#'
  70. #define _C_SEL      ':'
  71. #define _C_CHR      'c'
  72. #define _C_UCHR     'C'
  73. #define _C_SHT      's'
  74. #define _C_USHT     'S'
  75. #define _C_INT      'i'
  76. #define _C_UINT     'I'
  77. #define _C_LNG      'l'
  78. #define _C_ULNG     'L'
  79. #define _C_FLT      'f'
  80. #define _C_DBL      'd'
  81. #define _C_BFLD     'b'
  82. #define _C_VOID     'v'
  83. #define _C_UNDEF    '?'
  84. #define _C_PTR      '^'
  85. #define _C_CHARPTR  '*'
  86. #define _C_ARY_B    '['
  87. #define _C_ARY_E    ']'
  88. #define _C_UNION_B  '('
  89. #define _C_UNION_E  ')'
  90. #define _C_STRUCT_B '{'
  91. #define _C_STRUCT_E '}'
  92.  
  93. /* These definitions are masks used with the "info" member variable in
  94.    the lass and meta class structures.  */
  95. #define CLS_CLASS         0x1L                  /* The structure is of type
  96.                                                   class (Class_t). */
  97. #define CLS_META          0x2L                  /* The structure is of type
  98.                                                   meta class (MetaClass_t). */
  99. #define CLS_INITIALIZED   0x4L                  /* Class is initialized. A
  100.                                                   +initialize method is the
  101.                                                   first message sent to a
  102.                                                   class.  It isn't guaranteed
  103.                                                   to be sent only once. */
  104. #define CLS_RTI           0x8L                  /* The class has been initialized
  105.                            within the run time library. */
  106.  
  107. /* Set this variable nonzero to print a line describing each
  108.    message that is sent.  */
  109. extern BOOL objc_trace;
  110.  
  111.  
  112. /*
  113.  * Whereas a Module (defined further down) is the root (typically) of a file,
  114.  * a Symtab is the root of the class and category definitions within the
  115.  * module.  
  116.  *
  117.  * A Symtab contains a variable length array of pointers to classes and
  118.  * categories  defined in the module. 
  119.  */
  120. typedef struct objc_symtab {
  121.   unsigned long sel_ref_cnt;                     /* Unknown. */
  122.   SEL       *refs;                              /* Unknown. */
  123.   unsigned short cls_def_cnt;                   /* Number of classes compiled
  124.                                                   (defined) in the module. */
  125.   unsigned short cat_def_cnt;                   /* Number of categories 
  126.                                                   compiled (defined) in the 
  127.                                                   module. */
  128.   void      *defs[1];                           /* Variable array of pointers.
  129.                                                   cls_def_cnt of type Class_t 
  130.                                                   followed by cat_def_cnt of
  131.                                                   type Category_t. */
  132. } Symtab,   *Symtab_t;
  133.  
  134.  
  135. /*
  136.  * The compiler generates one of these structures for each module that
  137.  * composes the executable (eg main.m).  
  138.  *
  139.  * This data structure is the root of the definition tree for the module.  
  140.  *
  141.  * A collect program runs between ld stages and creates a ObjC ctor array. 
  142.  * That array holds a pointer to each module structure of the executable. 
  143.  */
  144. typedef struct objc_module {
  145.   unsigned long version;                        /* Compiler revision. */
  146.   unsigned long size;                           /* sizeof(Module). */
  147.   const char* name;                             /* Name of the file where the 
  148.                                                   module was generated.   The 
  149.                                                   name includes the path. */
  150.   Symtab_t    symtab;                           /* Pointer to the Symtab of
  151.                                                   the module.  The Symtab
  152.                                                   holds an array of pointers to 
  153.                                                   the classes and categories 
  154.                                                   defined in the module. */
  155. } Module, *Module_t;
  156.  
  157.  
  158. /*
  159.  * The compiler generates one of these structures for a class that has
  160.  * instance variables defined in its specification. 
  161.  */
  162. typedef struct objc_ivar* Ivar_t;
  163. typedef struct objc_ivar_list {
  164.   int   ivar_count;                             /* Number of structures (Ivar) 
  165.                                                   contained in the list.  One
  166.                                                   structure per instance 
  167.                                                   variable defined in the
  168.                                                   class. */
  169.   struct objc_ivar {
  170.     const char* ivar_name;                      /* Name of the instance
  171.                                                   variable as entered in the
  172.                                                   class definition. */
  173.     const char* ivar_type;                      /* Description of the Ivar's
  174.                                                   type.  Useful for 
  175.                                                   debuggers. */
  176.     int         ivar_offset;                    /* Byte offset from the base 
  177.                                                   address of the instance 
  178.                                                   structure to the variable. */
  179.  
  180.   } ivar_list[1];                               /* Variable length 
  181.                                                   structure. */
  182. } IvarList, *IvarList_t;
  183.  
  184.  
  185. /*
  186.  * The compiler generates one (or more) of these structures for a class that
  187.  * has methods defined in its specification. 
  188.  *
  189.  * The implementation of a class can be broken into separate pieces in a file
  190.  * and categories can break them across modules. To handle this problem is a
  191.  * singly linked list of methods. 
  192.  */
  193. typedef struct objc_method Method;
  194. typedef Method* Method_t;
  195. typedef struct objc_method_list {
  196.   struct objc_method_list*  method_next;      /* This variable is used to link 
  197.                                                 a method list to another.  It 
  198.