1 /* GNU Objective C Runtime initialization
2 Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
3 Contributed by Kresten Krab Thorup
4 +load support contributed by Ovidiu Predescu <ovidiu@net-community.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under the
9 terms of the GNU General Public License as published by the Free Software
10 Foundation; either version 2, or (at your option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 You should have received a copy of the GNU General Public License along with
18 GCC; see the file COPYING. If not, write to the Free Software
19 Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
21 /* As a special exception, if you link this library with files compiled with
22 GCC to produce an executable, this does not cause the resulting executable
23 to be covered by the GNU General Public License. This exception does not
24 however invalidate any other reasons why the executable file might be
25 covered by the GNU General Public License. */
27 #include "objc/runtime.h"
29 /* The version number of this runtime. This must match the number
30 defined in gcc (objc-act.c). */
31 #define OBJC_VERSION 8
32 #define PROTOCOL_VERSION 2
34 /* This list contains all modules currently loaded into the runtime. */
35 static struct objc_list
*__objc_module_list
= 0; /* !T:MUTEX */
37 /* This list contains all proto_list's not yet assigned class links. */
38 static struct objc_list
*unclaimed_proto_list
= 0; /* !T:MUTEX */
40 /* List of unresolved static instances. */
41 static struct objc_list
*uninitialized_statics
= 0; /* !T:MUTEX */
43 /* Global runtime "write" mutex. */
44 objc_mutex_t __objc_runtime_mutex
= 0;
46 /* Number of threads that are alive. */
47 int __objc_runtime_threads_alive
= 1; /* !T:MUTEX */
49 /* Check compiler vs runtime version. */
50 static void init_check_module_version (Module_t
);
52 /* Assign isa links to protos. */
53 static void __objc_init_protocols (struct objc_protocol_list
*protos
);
55 /* Add protocol to class. */
56 static void __objc_class_add_protocols (Class
, struct objc_protocol_list
*);
58 /* This is a hook which is called by __objc_exec_class every time a
59 class or a category is loaded into the runtime. This may e.g. help
60 a dynamic loader determine the classes that have been loaded when
61 an object file is dynamically linked in. */
62 void (*_objc_load_callback
) (Class
class, Category
*category
); /* !T:SAFE */
64 /* Is all categories/classes resolved? */
65 BOOL __objc_dangling_categories
= NO
; /* !T:UNUSED */
68 __sel_register_typed_name (const char *name
, const char *types
,
69 struct objc_selector
*orig
, BOOL is_const
);
71 /* Sends +load to all classes and categories in certain situations. */
72 static void objc_send_load (void);
74 /* Inserts all the classes defined in module in a tree of classes that
75 resembles the class hierarchy. This tree is traversed in preorder
76 and the classes in its nodes receive the +load message if these
77 methods were not executed before. The algorithm ensures that when
78 the +load method of a class is executed all the superclasses have
79 been already received the +load message. */
80 static void __objc_create_classes_tree (Module_t module
);
82 static void __objc_call_callback (Module_t module
);
84 /* A special version that works only before the classes are completely
85 installed in the runtime. */
86 static BOOL
class_is_subclass_of_class (Class
class, Class superclass
);
88 typedef struct objc_class_tree
{
90 struct objc_list
*subclasses
; /* `head' is pointer to an objc_class_tree */
93 /* This is a linked list of objc_class_tree trees. The head of these
94 trees are root classes (their super class is Nil). These different
95 trees represent different class hierarchies. */
96 static struct objc_list
*__objc_class_tree_list
= NULL
;
98 /* Keeps the +load methods who have been already executed. This hash
99 should not be destroyed during the execution of the program. */
100 static cache_ptr __objc_load_methods
= NULL
;
102 /* This function is used when building the class tree used to send
103 ordinately the +load message to all classes needing it. The tree
104 is really needed so that superclasses will get the message before
107 This tree will contain classes which are being loaded (or have just
108 being loaded), and whose super_class pointers have not yet been
109 resolved. This implies that their super_class pointers point to a
110 string with the name of the superclass; when the first message is
111 sent to the class (/an object of that class) the class links will
112 be resolved, which will replace the super_class pointers with
113 pointers to the actual superclasses.
115 Unfortunately, the tree might also contain classes which had been
116 loaded previously, and whose class links have already been
119 This function returns the superclass of a class in both cases, and
120 can be used to build the determine the class relationships while
123 static Class
class_superclass_of_class (Class
class)
125 char *super_class_name
;
127 /* If the class links have been resolved, use the resolved
129 if (CLS_ISRESOLV (class))
130 return class->super_class
;
132 /* Else, 'class' has not yet been resolved. This means that its
133 * super_class pointer is really the name of the super class (rather
134 * than a pointer to the actual superclass). */
135 super_class_name
= (char *)class->super_class
;
137 /* Return Nil for a root class. */
138 if (super_class_name
== NULL
)
141 /* Lookup the superclass of non-root classes. */
142 return objc_lookup_class (super_class_name
);
146 /* Creates a tree of classes whose topmost class is directly inherited
147 from `upper' and the bottom class in this tree is
148 `bottom_class'. The classes in this tree are super classes of
149 `bottom_class'. `subclasses' member of each tree node point to the
150 next subclass tree node. */
152 static objc_class_tree
*
153 create_tree_of_subclasses_inherited_from (Class bottom_class
, Class upper
)
155 Class superclass
= bottom_class
->super_class
?
156 objc_lookup_class ((char *) bottom_class
->super_class
)
159 objc_class_tree
*tree
, *prev
;
161 DEBUG_PRINTF ("create_tree_of_subclasses_inherited_from:");
162 DEBUG_PRINTF ("bottom_class = %s, upper = %s\n",
163 (bottom_class
? bottom_class
->name
: NULL
),
164 (upper
? upper
->name
: NULL
));
166 tree
= prev
= objc_calloc (1, sizeof (objc_class_tree
));
167 prev
->class = bottom_class
;
169 while (superclass
!= upper
)
171 tree
= objc_calloc (1, sizeof (objc_class_tree
));
172 tree
->class = superclass
;
173 tree
->subclasses
= list_cons (prev
, tree
->subclasses
);
174 superclass
= class_superclass_of_class (superclass
);
181 /* Insert the `class' into the proper place in the `tree' class
182 hierarchy. This function returns a new tree if the class has been
183 successfully inserted into the tree or NULL if the class is not
184 part of the classes hierarchy described by `tree'. This function is
185 private to objc_tree_insert_class (), you should not call it
188 static objc_class_tree
*
189 __objc_tree_insert_class (objc_class_tree
*tree
, Class
class)
191 DEBUG_PRINTF ("__objc_tree_insert_class: tree = %x, class = %s\n",
195 return create_tree_of_subclasses_inherited_from (class, NULL
);
196 else if (class == tree
->class)
198 /* `class' has been already inserted */
199 DEBUG_PRINTF ("1. class %s was previously inserted\n", class->name
);
202 else if (class_superclass_of_class (class) == tree
->class)
204 /* If class is a direct subclass of tree->class then add class to the
205 list of subclasses. First check to see if it wasn't already
207 struct objc_list
*list
= tree
->subclasses
;
208 objc_class_tree
*node
;
212 /* Class has been already inserted; do nothing just return
214 if (((objc_class_tree
*) list
->head
)->class == class)
216 DEBUG_PRINTF ("2. class %s was previously inserted\n",
223 /* Create a new node class and insert it into the list of subclasses */
224 node
= objc_calloc (1, sizeof (objc_class_tree
));
226 tree
->subclasses
= list_cons (node
, tree
->subclasses
);
227 DEBUG_PRINTF ("3. class %s inserted\n", class->name
);
232 /* The class is not a direct subclass of tree->class. Search for
233 class's superclasses in the list of subclasses. */
234 struct objc_list
*subclasses
= tree
->subclasses
;
236 /* Precondition: the class must be a subclass of tree->class;
237 otherwise return NULL to indicate our caller that it must
238 take the next tree. */
239 if (! class_is_subclass_of_class (class, tree
->class))
242 for (; subclasses
!= NULL
; subclasses
= subclasses
->tail
)
244 Class aClass
= ((objc_class_tree
*) (subclasses
->head
))->class;
246 if (class_is_subclass_of_class (class, aClass
))
248 /* If we found one of class's superclasses we insert the
249 class into its subtree and return the original tree
250 since nothing has been changed. */
252 = __objc_tree_insert_class (subclasses
->head
, class);
253 DEBUG_PRINTF ("4. class %s inserted\n", class->name
);
258 /* We haven't found a subclass of `class' in the `subclasses'
259 list. Create a new tree of classes whose topmost class is a
260 direct subclass of tree->class. */
262 objc_class_tree
*new_tree
263 = create_tree_of_subclasses_inherited_from (class, tree
->class);
264 tree
->subclasses
= list_cons (new_tree
, tree
->subclasses
);
265 DEBUG_PRINTF ("5. class %s inserted\n", class->name
);
271 /* This function inserts `class' in the right tree hierarchy classes. */
274 objc_tree_insert_class (Class
class)
276 struct objc_list
*list_node
;
277 objc_class_tree
*tree
;
279 list_node
= __objc_class_tree_list
;
282 tree
= __objc_tree_insert_class (list_node
->head
, class);
285 list_node
->head
= tree
;
289 list_node
= list_node
->tail
;
292 /* If the list was finished but the class hasn't been inserted,
296 __objc_class_tree_list
= list_cons (NULL
, __objc_class_tree_list
);
297 __objc_class_tree_list
->head
= __objc_tree_insert_class (NULL
, class);
301 /* Traverse tree in preorder. Used to send +load. */
304 objc_preorder_traverse (objc_class_tree
*tree
,
306 void (*function
) (objc_class_tree
*, int))
308 struct objc_list
*node
;
310 (*function
) (tree
, level
);
311 for (node
= tree
->subclasses
; node
; node
= node
->tail
)
312 objc_preorder_traverse (node
->head
, level
+ 1, function
);
315 /* Traverse tree in postorder. Used to destroy a tree. */
318 objc_postorder_traverse (objc_class_tree
*tree
,
320 void (*function
) (objc_class_tree
*, int))
322 struct objc_list
*node
;
324 for (node
= tree
->subclasses
; node
; node
= node
->tail
)
325 objc_postorder_traverse (node
->head
, level
+ 1, function
);
326 (*function
) (tree
, level
);
329 /* Used to print a tree class hierarchy. */
333 __objc_tree_print (objc_class_tree
*tree
, int level
)
337 for (i
= 0; i
< level
; i
++)
339 printf ("%s\n", tree
->class->name
);
343 /* Walks on a linked list of methods in the reverse order and executes
344 all the methods corresponding to `op' selector. Walking in the
345 reverse order assures the +load of class is executed first and then
346 +load of categories because of the way in which categories are
347 added to the class methods. */
350 __objc_send_message_in_list (MethodList_t method_list
, Class
class, SEL op
)
357 /* First execute the `op' message in the following method lists */
358 __objc_send_message_in_list (method_list
->method_next
, class, op
);
360 /* Search the method list. */
361 for (i
= 0; i
< method_list
->method_count
; i
++)
363 Method_t mth
= &method_list
->method_list
[i
];
365 if (mth
->method_name
&& sel_eq (mth
->method_name
, op
)
366 && ! objc_hash_is_key_in_hash (__objc_load_methods
, mth
->method_imp
))
368 /* Add this method into the +load hash table */
369 objc_hash_add (&__objc_load_methods
,
373 DEBUG_PRINTF ("sending +load in class: %s\n", class->name
);
375 /* The method was found and wasn't previously executed. */
376 (*mth
->method_imp
) ((id
)class, mth
->method_name
);
384 __objc_send_load (objc_class_tree
*tree
,
385 int level
__attribute__ ((__unused__
)))
387 static SEL load_sel
= 0;
388 Class
class = tree
->class;
389 MethodList_t method_list
= class->class_pointer
->methods
;
392 load_sel
= sel_register_name ("load");
394 __objc_send_message_in_list (method_list
, class, load_sel
);
398 __objc_destroy_class_tree_node (objc_class_tree
*tree
,
399 int level
__attribute__ ((__unused__
)))
404 /* This is used to check if the relationship between two classes
405 before the runtime completely installs the classes. */
408 class_is_subclass_of_class (Class
class, Class superclass
)
410 for (; class != Nil
;)
412 if (class == superclass
)
414 class = class_superclass_of_class (class);
420 /* This list contains all the classes in the runtime system for whom
421 their superclasses are not yet known to the runtime. */
422 static struct objc_list
*unresolved_classes
= 0;
424 /* Extern function used to reference the Object and NXConstantString
427 extern void __objc_force_linking (void);
430 __objc_force_linking (void)
432 extern void __objc_linking (void);
436 /* Run through the statics list, removing modules as soon as all its
437 statics have been initialized. */
440 objc_init_statics (void)
442 struct objc_list
**cell
= &uninitialized_statics
;
443 struct objc_static_instances
**statics_in_module
;
445 objc_mutex_lock (__objc_runtime_mutex
);
449 int module_initialized
= 1;
451 for (statics_in_module
= (*cell
)->head
;
452 *statics_in_module
; statics_in_module
++)
454 struct objc_static_instances
*statics
= *statics_in_module
;
455 Class
class = objc_lookup_class (statics
->class_name
);
458 module_initialized
= 0;
459 /* Actually, the static's class_pointer will be NULL when we
460 haven't been here before. However, the comparison is to be
461 reminded of taking into account class posing and to think about
462 possible semantics... */
463 else if (class != statics
->instances
[0]->class_pointer
)
467 for (inst
= &statics
->instances
[0]; *inst
; inst
++)
469 (*inst
)->class_pointer
= class;
471 /* ??? Make sure the object will not be freed. With
472 refcounting, invoke `-retain'. Without refcounting, do
473 nothing and hope that `-free' will never be invoked. */
475 /* ??? Send the object an `-initStatic' or something to
476 that effect now or later on? What are the semantics of
477 statically allocated instances, besides the trivial
478 NXConstantString, anyway? */
482 if (module_initialized
)
484 /* Remove this module from the uninitialized list. */
485 struct objc_list
*this = *cell
;
490 cell
= &(*cell
)->tail
;
493 objc_mutex_unlock (__objc_runtime_mutex
);
494 } /* objc_init_statics */
496 /* This function is called by constructor functions generated for each
497 module compiled. (_GLOBAL_$I$...) The purpose of this function is
498 to gather the module pointers so that they may be processed by the
499 initialization routines as soon as possible. */
502 __objc_exec_class (Module_t module
)
504 /* Have we processed any constructors previously? This flag is used to
505 indicate that some global data structures need to be built. */
506 static BOOL previous_constructors
= 0;
508 static struct objc_list
*unclaimed_categories
= 0;
510 /* The symbol table (defined in objc-api.h) generated by gcc */
511 Symtab_t symtab
= module
->symtab
;
513 /* The statics in this module */
514 struct objc_static_instances
**statics
515 = symtab
->defs
[symtab
->cls_def_cnt
+ symtab
->cat_def_cnt
];
517 /* Entry used to traverse hash lists */
518 struct objc_list
**cell
;
520 /* The table of selector references for this module */
521 SEL selectors
= symtab
->refs
;
526 DEBUG_PRINTF ("received module: %s\n", module
->name
);
528 /* check gcc version */
529 init_check_module_version (module
);
531 /* On the first call of this routine, initialize some data structures. */
532 if (! previous_constructors
)
534 /* Initialize thread-safe system */
535 __objc_init_thread_system ();
536 __objc_runtime_threads_alive
= 1;
537 __objc_runtime_mutex
= objc_mutex_allocate ();
539 __objc_init_selector_tables ();
540 __objc_init_class_tables ();
541 __objc_init_dispatch_tables ();
542 __objc_class_tree_list
= list_cons (NULL
, __objc_class_tree_list
);
543 __objc_load_methods
= objc_hash_new (128,
544 (hash_func_type
)objc_hash_ptr
,
546 previous_constructors
= 1;
549 /* Save the module pointer for later processing. (not currently used) */
550 objc_mutex_lock (__objc_runtime_mutex
);
551 __objc_module_list
= list_cons (module
, __objc_module_list
);
553 /* Replace referenced selectors from names to SEL's. */
556 for (i
= 0; selectors
[i
].sel_id
; ++i
)
558 const char *name
, *type
;
559 name
= (char *) selectors
[i
].sel_id
;
560 type
= (char *) selectors
[i
].sel_types
;
561 /* Constructors are constant static data so we can safely store
562 pointers to them in the runtime structures. is_const == YES */
563 __sel_register_typed_name (name
, type
,
564 (struct objc_selector
*) &(selectors
[i
]),
569 /* Parse the classes in the load module and gather selector information. */
570 DEBUG_PRINTF ("gathering selectors from module: %s\n", module
->name
);
571 for (i
= 0; i
< symtab
->cls_def_cnt
; ++i
)
573 Class
class = (Class
) symtab
->defs
[i
];
574 const char *superclass
= (char *) class->super_class
;
576 /* Make sure we have what we think. */
577 assert (CLS_ISCLASS (class));
578 assert (CLS_ISMETA (class->class_pointer
));
579 DEBUG_PRINTF ("phase 1, processing class: %s\n", class->name
);
581 /* Initialize the subclass list to be NULL.
582 In some cases it isn't and this crashes the program. */
583 class->subclass_list
= NULL
;
585 /* Store the class in the class table and assign class numbers. */
586 __objc_add_class_to_hash (class);
588 /* Register all of the selectors in the class and meta class. */
589 __objc_register_selectors_from_class (class);
590 __objc_register_selectors_from_class ((Class
) class->class_pointer
);
592 /* Install the fake dispatch tables */
593 __objc_install_premature_dtable (class);
594 __objc_install_premature_dtable (class->class_pointer
);
596 /* Register the instance methods as class methods, this is
597 only done for root classes. */
598 __objc_register_instance_methods_to_class (class);
600 if (class->protocols
)
601 __objc_init_protocols (class->protocols
);
603 /* Check to see if the superclass is known in this point. If it's not
604 add the class to the unresolved_classes list. */
605 if (superclass
&& ! objc_lookup_class (superclass
))
606 unresolved_classes
= list_cons (class, unresolved_classes
);
609 /* Process category information from the module. */
610 for (i
= 0; i
< symtab
->cat_def_cnt
; ++i
)
612 Category_t category
= symtab
->defs
[i
+ symtab
->cls_def_cnt
];
613 Class
class = objc_lookup_class (category
->class_name
);
615 /* If the class for the category exists then append its methods. */
619 DEBUG_PRINTF ("processing categories from (module,object): %s, %s\n",
623 /* Do instance methods. */
624 if (category
->instance_methods
)
625 class_add_method_list (class, category
->instance_methods
);
627 /* Do class methods. */
628 if (category
->class_methods
)
629 class_add_method_list ((Class
) class->class_pointer
,
630 category
->class_methods
);
632 if (category
->protocols
)
634 __objc_init_protocols (category
->protocols
);
635 __objc_class_add_protocols (class, category
->protocols
);
638 /* Register the instance methods as class methods, this is
639 only done for root classes. */
640 __objc_register_instance_methods_to_class (class);
644 /* The object to which the category methods belong can't be found.
645 Save the information. */
646 unclaimed_categories
= list_cons (category
, unclaimed_categories
);
651 uninitialized_statics
= list_cons (statics
, uninitialized_statics
);
652 if (uninitialized_statics
)
653 objc_init_statics ();
655 /* Scan the unclaimed category hash. Attempt to attach any unclaimed
656 categories to objects. */
657 for (cell
= &unclaimed_categories
; *cell
; )
659 Category_t category
= (*cell
)->head
;
660 Class
class = objc_lookup_class (category
->class_name
);
664 DEBUG_PRINTF ("attaching stored categories to object: %s\n",
667 list_remove_head (cell
);
669 if (category
->instance_methods
)
670 class_add_method_list (class, category
->instance_methods
);
672 if (category
->class_methods
)
673 class_add_method_list ((Class
) class->class_pointer
,
674 category
->class_methods
);
676 if (category
->protocols
)
678 __objc_init_protocols (category
->protocols
);
679 __objc_class_add_protocols (class, category
->protocols
);
682 /* Register the instance methods as class methods, this is
683 only done for root classes. */
684 __objc_register_instance_methods_to_class (class);
687 cell
= &(*cell
)->tail
;
690 if (unclaimed_proto_list
&& objc_lookup_class ("Protocol"))
692 list_mapcar (unclaimed_proto_list
,
693 (void (*) (void *))__objc_init_protocols
);
694 list_free (unclaimed_proto_list
);
695 unclaimed_proto_list
= 0;
700 objc_mutex_unlock (__objc_runtime_mutex
);
704 objc_send_load (void)
706 if (! __objc_module_list
)
709 /* Try to find out if all the classes loaded so far also have their
710 superclasses known to the runtime. We suppose that the objects
711 that are allocated in the +load method are in general of a class
712 declared in the same module. */
713 if (unresolved_classes
)
715 Class
class = unresolved_classes
->head
;
717 while (objc_lookup_class ((char *) class->super_class
))
719 list_remove_head (&unresolved_classes
);
720 if (unresolved_classes
)
721 class = unresolved_classes
->head
;
726 /* If we still have classes for whom we don't have yet their
727 super classes known to the runtime we don't send the +load
729 if (unresolved_classes
)
733 /* Special check to allow creating and sending messages to constant
734 strings in +load methods. If these classes are not yet known,
735 even if all the other classes are known, delay sending of +load. */
736 if (! objc_lookup_class ("NXConstantString") ||
737 ! objc_lookup_class ("Object"))
740 /* Iterate over all modules in the __objc_module_list and call on
741 them the __objc_create_classes_tree function. This function
742 creates a tree of classes that resembles the class hierarchy. */
743 list_mapcar (__objc_module_list
,
744 (void (*) (void *)) __objc_create_classes_tree
);
746 while (__objc_class_tree_list
)
749 objc_preorder_traverse (__objc_class_tree_list
->head
,
750 0, __objc_tree_print
);
752 objc_preorder_traverse (__objc_class_tree_list
->head
,
753 0, __objc_send_load
);
754 objc_postorder_traverse (__objc_class_tree_list
->head
,
755 0, __objc_destroy_class_tree_node
);
756 list_remove_head (&__objc_class_tree_list
);
759 list_mapcar (__objc_module_list
, (void (*) (void *)) __objc_call_callback
);
760 list_free (__objc_module_list
);
761 __objc_module_list
= NULL
;
765 __objc_create_classes_tree (Module_t module
)
767 /* The runtime mutex is locked in this point */
769 Symtab_t symtab
= module
->symtab
;
772 /* Iterate thru classes defined in this module and insert them in
773 the classes tree hierarchy. */
774 for (i
= 0; i
< symtab
->cls_def_cnt
; i
++)
776 Class
class = (Class
) symtab
->defs
[i
];
778 objc_tree_insert_class (class);
783 __objc_call_callback (Module_t module
)
785 /* The runtime mutex is locked in this point. */
787 Symtab_t symtab
= module
->symtab
;
790 /* Iterate thru classes defined in this module and call the callback
792 for (i
= 0; i
< symtab
->cls_def_cnt
; i
++)
794 Class
class = (Class
) symtab
->defs
[i
];
796 /* Call the _objc_load_callback for this class. */
797 if (_objc_load_callback
)
798 _objc_load_callback (class, 0);
801 /* Call the _objc_load_callback for categories. Don't register the
802 instance methods as class methods for categories to root classes
803 since they were already added in the class. */
804 for (i
= 0; i
< symtab
->cat_def_cnt
; i
++)
806 Category_t category
= symtab
->defs
[i
+ symtab
->cls_def_cnt
];
807 Class
class = objc_lookup_class (category
->class_name
);
809 if (_objc_load_callback
)
810 _objc_load_callback (class, category
);
814 /* Sanity check the version of gcc used to compile `module'. */
817 init_check_module_version (Module_t module
)
819 if ((module
->version
!= OBJC_VERSION
) || (module
->size
!= sizeof (Module
)))
823 if (module
->version
> OBJC_VERSION
)
824 code
= OBJC_ERR_OBJC_VERSION
;
825 else if (module
->version
< OBJC_VERSION
)
826 code
= OBJC_ERR_GCC_VERSION
;
828 code
= OBJC_ERR_MODULE_SIZE
;
830 objc_error (nil
, code
, "Module %s version %d doesn't match runtime %d\n",
831 module
->name
, (int)module
->version
, OBJC_VERSION
);
836 __objc_init_protocols (struct objc_protocol_list
*protos
)
839 static Class proto_class
= 0;
844 objc_mutex_lock (__objc_runtime_mutex
);
847 proto_class
= objc_lookup_class ("Protocol");
851 unclaimed_proto_list
= list_cons (protos
, unclaimed_proto_list
);
852 objc_mutex_unlock (__objc_runtime_mutex
);
857 assert (protos
->next
== 0); /* only single ones allowed */
860 for (i
= 0; i
< protos
->count
; i
++)
862 struct objc_protocol
*aProto
= protos
->list
[i
];
863 if (((size_t)aProto
->class_pointer
) == PROTOCOL_VERSION
)
865 /* assign class pointer */
866 aProto
->class_pointer
= proto_class
;
868 /* init super protocols */
869 __objc_init_protocols (aProto
->protocol_list
);
871 else if (protos
->list
[i
]->class_pointer
!= proto_class
)
873 objc_error (nil
, OBJC_ERR_PROTOCOL_VERSION
,
874 "Version %d doesn't match runtime protocol version %d\n",
875 (int) ((char *) protos
->list
[i
]->class_pointer
881 objc_mutex_unlock (__objc_runtime_mutex
);
885 __objc_class_add_protocols (Class
class, struct objc_protocol_list
*protos
)
892 protos
->next
= class->protocols
;
893 class->protocols
= protos
;