]> err.no Git - sope/blob - gnustep-objc/runtime.h
Added WEPrototype and bumped framework versions. WEPrototype hasn't been tested very...
[sope] / gnustep-objc / runtime.h
1 /* GNU Objective C Runtime internal declarations
2    Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
3    Contributed by Kresten Krab Thorup
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 2, or (at your option) any later version.
10
11 GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14 details.
15
16 You should have received a copy of the GNU General Public License along with
17 GNU CC; see the file COPYING.  If not, write to the Free Software
18 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* As a special exception, if you link this library with files compiled with
21    GCC to produce an executable, this does not cause the resulting executable
22    to be covered by the GNU General Public License. This exception does not
23    however invalidate any other reasons why the executable file might be
24    covered by the GNU General Public License.  */
25
26 #ifndef __objc_runtime_INCLUDE_GNU
27 #define __objc_runtime_INCLUDE_GNU
28
29 /*
30   runtime.h is private header file
31 */
32
33 #include <stdarg.h>             /* for varargs and va_list's */
34
35 #include <stdio.h>
36 #include <ctype.h>
37
38 #include <stddef.h>             /* so noone else will get system versions */
39
40 #if OBJC_WITH_GC
41 #  include "gc.h"
42 #endif
43
44 #include "assert.h"
45
46 #include "objc.h"       /* core data types */
47 #include "objc-api.h"   /* runtime api functions */
48 #include "thr.h"        /* thread and mutex support */
49 #include "hash.h"       /* hash structures */
50 #include "objc-list.h"  /* linear lists */
51 #include "globals.h"
52
53 objc_EXPORT void __objc_add_class_to_hash(Class);   /* (objc-class.c) */
54 objc_EXPORT void __objc_init_selector_tables(void); /* (objc-sel.c) */
55 objc_EXPORT void __objc_init_class_tables(void);    /* (objc-class.c) */
56 objc_EXPORT void __objc_init_dispatch_tables(void); /* (objc-dispatch.c) */
57 objc_EXPORT void __objc_resolve_class_links(void);  /* (objc-class.c) */
58 objc_EXPORT void __objc_register_selectors_from_class(Class); /* (objc-sel.c) */
59 objc_EXPORT void __objc_update_dispatch_table_for_class (Class);/* (objc-msg.c) */
60
61 objc_EXPORT int  __objc_init_thread_system(void);    /* thread.c */
62 objc_EXPORT int  __objc_fini_thread_system(void);    /* thread.c */
63 objc_EXPORT void __objc_print_dtable_stats(void);    /* sendmsg.c */
64
65 objc_EXPORT void class_add_method_list(Class, MethodList_t);
66
67 /* Registering instance methods as class methods for root classes */
68 objc_EXPORT void __objc_register_instance_methods_to_class(Class);
69 objc_EXPORT Method_t search_for_method_in_list(MethodList_t list, SEL op);
70
71 /* True when class links has been resolved */     
72 objc_EXPORT BOOL __objc_class_links_resolved;
73
74 /* Number of selectors stored in each of the selector  tables */
75 objc_EXPORT int __objc_selector_max_index;
76
77 /* Mutex locking __objc_selector_max_index and its arrays. */
78 objc_EXPORT objc_mutex_t __objc_runtime_mutex;
79
80 /* Number of threads which are alive. */
81 objc_EXPORT int __objc_runtime_threads_alive;
82
83 #ifdef OBJC_DEBUG
84 #  define DEBUG_PRINTF(format, args...) printf (format, ## args)
85 #else
86 #  define DEBUG_PRINTF(format, args...)
87 #endif 
88
89 BOOL __objc_responds_to (id object, SEL sel); /* for internal use only! */
90 SEL  __sel_register_typed_name (const char*, const char*, 
91                                 struct objc_selector*, BOOL is_const);
92
93 /* runtime locking */
94
95 #if !defined(OBJC_WITHOUT_THREADING)
96 #  define RUNTIME_LOCK   objc_mutex_lock(__objc_runtime_mutex)
97 #  define RUNTIME_UNLOCK objc_mutex_unlock(__objc_runtime_mutex)
98 #else
99 #  define RUNTIME_LOCK
100 #  define RUNTIME_UNLOCK
101 #endif
102
103 /* memory stuff */
104
105 static inline void *OBJC_MALLOC_UNCOLLECTABLE(unsigned int size) {
106 #if OBJC_WITH_GC
107   return GC_MALLOC_UNCOLLECTABLE(size);
108 #else
109   return malloc(size);
110 #endif
111 }
112
113 static inline void *OBJC_CALLOC_UNCOLLECTABLE(unsigned int size) {
114 #if OBJC_WITH_GC
115   register void *result = GC_MALLOC_UNCOLLECTABLE(size);
116   memset(result, 0, size);
117   return result;
118 #else
119   return calloc(1, size);
120 #endif
121 }
122
123 #endif /* not __objc_runtime_INCLUDE_GNU */