1 /* GNU Objective C Runtime initialization
2 Copyright (C) 1993, 1995, 1996, 1997 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 GNU CC.
8 GNU CC 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 GNU CC 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 GNU CC; see the file COPYING. If not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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. */
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 class
59 or a category is loaded into the runtime. This may e.g. help a
60 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 and the
76 classes in its nodes receive the +load message if these methods were not
77 executed before. The algorithm ensures that when the +load method of a class
78 is executed all the superclasses have been already received the +load
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 trees
94 are root classes (their super class is Nil). These different trees
95 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 should
99 not be destroyed during the execution of the program. */
100 static cache_ptr __objc_load_methods
= NULL
;
102 /* Creates a tree of classes whose topmost class is directly inherited from
103 `upper' and the bottom class in this tree is `bottom_class'. The classes
104 in this tree are super classes of `bottom_class'. `subclasses' member
105 of each tree node point to the next subclass tree node. */
106 static objc_class_tree
*
107 create_tree_of_subclasses_inherited_from (Class bottom_class
, Class upper
)
109 Class superclass
= bottom_class
->super_class
?
110 objc_lookup_class ((char*)bottom_class
->super_class
)
113 objc_class_tree
*tree
, *prev
;
115 DEBUG_PRINTF ("create_tree_of_subclasses_inherited_from:");
116 DEBUG_PRINTF ("bottom_class = %s, upper = %s\n",
117 (bottom_class
? bottom_class
->name
: NULL
),
118 (upper
? upper
->name
: NULL
));
120 tree
= prev
= objc_calloc (1, sizeof (objc_class_tree
));
121 prev
->class = bottom_class
;
123 while (superclass
!= upper
)
125 tree
= objc_calloc (1, sizeof (objc_class_tree
));
126 tree
->class = superclass
;
127 tree
->subclasses
= list_cons (prev
, tree
->subclasses
);
128 superclass
= (superclass
->super_class
?
129 objc_lookup_class ((char*)superclass
->super_class
)
137 /* Insert the `class' into the proper place in the `tree' class hierarchy. This
138 function returns a new tree if the class has been successfully inserted into
139 the tree or NULL if the class is not part of the classes hierarchy described
140 by `tree'. This function is private to objc_tree_insert_class(), you should
141 not call it directly. */
142 static objc_class_tree
*
143 __objc_tree_insert_class (objc_class_tree
*tree
, Class
class)
145 DEBUG_PRINTF ("__objc_tree_insert_class: tree = %x, class = %s\n",
149 return create_tree_of_subclasses_inherited_from (class, NULL
);
150 else if (class == tree
->class)
152 /* `class' has been already inserted */
153 DEBUG_PRINTF ("1. class %s was previously inserted\n", class->name
);
156 else if ((class->super_class
?
157 objc_lookup_class ((char*)class->super_class
)
161 /* If class is a direct subclass of tree->class then add class to the
162 list of subclasses. First check to see if it wasn't already
164 struct objc_list
*list
= tree
->subclasses
;
165 objc_class_tree
*node
;
169 /* Class has been already inserted; do nothing just return
171 if (((objc_class_tree
*)list
->head
)->class == class)
173 DEBUG_PRINTF ("2. class %s was previously inserted\n",
180 /* Create a new node class and insert it into the list of subclasses */
181 node
= objc_calloc (1, sizeof (objc_class_tree
));
183 tree
->subclasses
= list_cons (node
, tree
->subclasses
);
184 DEBUG_PRINTF ("3. class %s inserted\n", class->name
);
189 /* The class is not a direct subclass of tree->class. Search for class's
190 superclasses in the list of subclasses. */
191 struct objc_list
*subclasses
= tree
->subclasses
;
193 /* Precondition: the class must be a subclass of tree->class; otherwise
194 return NULL to indicate our caller that it must take the next tree. */
195 if (!class_is_subclass_of_class (class, tree
->class))
198 for (; subclasses
!= NULL
; subclasses
= subclasses
->tail
)
200 Class aClass
= ((objc_class_tree
*)(subclasses
->head
))->class;
202 if (class_is_subclass_of_class (class, aClass
))
204 /* If we found one of class's superclasses we insert the class
205 into its subtree and return the original tree since nothing
208 = __objc_tree_insert_class (subclasses
->head
, class);
209 DEBUG_PRINTF ("4. class %s inserted\n", class->name
);
214 /* We haven't found a subclass of `class' in the `subclasses' list.
215 Create a new tree of classes whose topmost class is a direct subclass
218 objc_class_tree
*new_tree
219 = create_tree_of_subclasses_inherited_from (class, tree
->class);
220 tree
->subclasses
= list_cons (new_tree
, tree
->subclasses
);
221 DEBUG_PRINTF ("5. class %s inserted\n", class->name
);
227 /* This function inserts `class' in the right tree hierarchy classes. */
229 objc_tree_insert_class (Class
class)
231 struct objc_list
*list_node
;
232 objc_class_tree
*tree
;
234 list_node
= __objc_class_tree_list
;
237 tree
= __objc_tree_insert_class (list_node
->head
, class);
240 list_node
->head
= tree
;
244 list_node
= list_node
->tail
;
247 /* If the list was finished but the class hasn't been inserted, insert it
251 __objc_class_tree_list
= list_cons (NULL
, __objc_class_tree_list
);
252 __objc_class_tree_list
->head
= __objc_tree_insert_class (NULL
, class);
256 /* Traverse tree in preorder. Used to send +load. */
258 objc_preorder_traverse (objc_class_tree
*tree
,
260 void (*function
)(objc_class_tree
*, int))
262 struct objc_list
*node
;
264 (*function
) (tree
, level
);
265 for (node
= tree
->subclasses
; node
; node
= node
->tail
)
266 objc_preorder_traverse (node
->head
, level
+ 1, function
);
269 /* Traverse tree in postorder. Used to destroy a tree. */
271 objc_postorder_traverse (objc_class_tree
*tree
,
273 void (*function
)(objc_class_tree
*, int))
275 struct objc_list
*node
;
277 for (node
= tree
->subclasses
; node
; node
= node
->tail
)
278 objc_postorder_traverse (node
->head
, level
+ 1, function
);
279 (*function
) (tree
, level
);
282 /* Used to print a tree class hierarchy. */
285 __objc_tree_print (objc_class_tree
*tree
, int level
)
289 for (i
= 0; i
< level
; i
++)
291 printf ("%s\n", tree
->class->name
);
295 /* Walks on a linked list of methods in the reverse order and executes all
296 the methods corresponding to `op' selector. Walking in the reverse order
297 assures the +load of class is executed first and then +load of categories
298 because of the way in which categories are added to the class methods. */
300 __objc_send_message_in_list (MethodList_t method_list
, Class
class, SEL op
)
307 /* First execute the `op' message in the following method lists */
308 __objc_send_message_in_list (method_list
->method_next
, class, op
);
310 /* Search the method list. */
311 for (i
= 0; i
< method_list
->method_count
; i
++)
313 Method_t mth
= &method_list
->method_list
[i
];
315 if (mth
->method_name
&& sel_eq (mth
->method_name
, op
)
316 && !hash_is_key_in_hash (__objc_load_methods
, mth
->method_imp
))
318 /* Add this method into the +load hash table */
319 hash_add (&__objc_load_methods
, mth
->method_imp
, mth
->method_imp
);
321 DEBUG_PRINTF ("sending +load in class: %s\n", class->name
);
323 /* The method was found and wasn't previously executed. */
324 (*mth
->method_imp
) ((id
)class, mth
->method_name
);
332 __objc_send_load (objc_class_tree
*tree
, int level
)
334 static SEL load_sel
= 0;
335 Class
class = tree
->class;
336 MethodList_t method_list
= class->class_pointer
->methods
;
339 load_sel
= sel_register_name ("load");
341 __objc_send_message_in_list (method_list
, class, load_sel
);
345 __objc_destroy_class_tree_node (objc_class_tree
*tree
, int level
)
350 /* This is used to check if the relationship between two classes before the
351 runtime completely installs the classes. */
353 class_is_subclass_of_class (Class
class, Class superclass
)
355 for (; class != Nil
;)
357 if (class == superclass
)
359 class = (class->super_class
?
360 objc_lookup_class ((char*)class->super_class
)
367 /* This list contains all the classes in the runtime system for whom their
368 superclasses are not yet know to the runtime. */
369 static struct objc_list
* unresolved_classes
= 0;
371 /* Extern function used to reference the Object and NXConstantString classes.
374 extern void __objc_force_linking (void);
377 __objc_force_linking (void)
379 extern void __objc_linking (void);
383 /* Run through the statics list, removing modules as soon as all its statics
384 have been initialized. */
386 objc_init_statics (void)
388 struct objc_list
**cell
= &uninitialized_statics
;
389 struct objc_static_instances
**statics_in_module
;
391 objc_mutex_lock(__objc_runtime_mutex
);
395 int module_initialized
= 1;
397 for (statics_in_module
= (*cell
)->head
;
398 *statics_in_module
; statics_in_module
++)
400 struct objc_static_instances
*statics
= *statics_in_module
;
401 Class
class = objc_lookup_class (statics
->class_name
);
404 module_initialized
= 0;
405 /* Actually, the static's class_pointer will be NULL when we
406 haven't been here before. However, the comparison is to be
407 reminded of taking into account class posing and to think about
408 possible semantics... */
409 else if (class != statics
->instances
[0]->class_pointer
)
413 for (inst
= &statics
->instances
[0]; *inst
; inst
++)
415 (*inst
)->class_pointer
= class;
417 /* ??? Make sure the object will not be freed. With
418 refcounting, invoke `-retain'. Without refcounting, do
419 nothing and hope that `-free' will never be invoked. */
421 /* ??? Send the object an `-initStatic' or something to
422 that effect now or later on? What are the semantics of
423 statically allocated instances, besides the trivial
424 NXConstantString, anyway? */
428 if (module_initialized
)
430 /* Remove this module from the uninitialized list. */
431 struct objc_list
*this = *cell
;
436 cell
= &(*cell
)->tail
;
439 objc_mutex_unlock(__objc_runtime_mutex
);
440 } /* objc_init_statics */
442 /* This function is called by constructor functions generated for each
443 module compiled. (_GLOBAL_$I$...) The purpose of this function is to
444 gather the module pointers so that they may be processed by the
445 initialization routines as soon as possible */
448 __objc_exec_class (Module_t module
)
450 /* Have we processed any constructors previously? This flag is used to
451 indicate that some global data structures need to be built. */
452 static BOOL previous_constructors
= 0;
454 static struct objc_list
* unclaimed_categories
= 0;
456 /* The symbol table (defined in objc-api.h) generated by gcc */
457 Symtab_t symtab
= module
->symtab
;
459 /* The statics in this module */
460 struct objc_static_instances
**statics
461 = symtab
->defs
[symtab
->cls_def_cnt
+ symtab
->cat_def_cnt
];
463 /* Entry used to traverse hash lists */
464 struct objc_list
** cell
;
466 /* The table of selector references for this module */
467 SEL selectors
= symtab
->refs
;
472 DEBUG_PRINTF ("received module: %s\n", module
->name
);
474 /* check gcc version */
475 init_check_module_version(module
);
477 /* On the first call of this routine, initialize some data structures. */
478 if (!previous_constructors
)
480 /* Initialize thread-safe system */
481 __objc_init_thread_system();
482 __objc_runtime_threads_alive
= 1;
483 __objc_runtime_mutex
= objc_mutex_allocate();
485 __objc_init_selector_tables();
486 __objc_init_class_tables();
487 __objc_init_dispatch_tables();
488 __objc_class_tree_list
= list_cons (NULL
, __objc_class_tree_list
);
490 = hash_new (128, (hash_func_type
)hash_ptr
, compare_ptrs
);
491 previous_constructors
= 1;
494 /* Save the module pointer for later processing. (not currently used) */
495 objc_mutex_lock(__objc_runtime_mutex
);
496 __objc_module_list
= list_cons(module
, __objc_module_list
);
498 /* Replace referenced selectors from names to SEL's. */
501 for (i
= 0; selectors
[i
].sel_id
; ++i
)
503 const char *name
, *type
;
504 name
= (char*)selectors
[i
].sel_id
;
505 type
= (char*)selectors
[i
].sel_types
;
506 /* Constructors are constant static data so we can safely store
507 pointers to them in the runtime structures. is_const == YES */
508 __sel_register_typed_name (name
, type
,
509 (struct objc_selector
*)&(selectors
[i
]),
514 /* Parse the classes in the load module and gather selector information. */
515 DEBUG_PRINTF ("gathering selectors from module: %s\n", module
->name
);
516 for (i
= 0; i
< symtab
->cls_def_cnt
; ++i
)
518 Class
class = (Class
) symtab
->defs
[i
];
519 const char* superclass
= (char*)class->super_class
;
521 /* Make sure we have what we think. */
522 assert (CLS_ISCLASS(class));
523 assert (CLS_ISMETA(class->class_pointer
));
524 DEBUG_PRINTF ("phase 1, processing class: %s\n", class->name
);
526 /* Initialize the subclass list to be NULL.
527 In some cases it isn't and this crashes the program. */
528 class->subclass_list
= NULL
;
530 /* Store the class in the class table and assign class numbers. */
531 __objc_add_class_to_hash (class);
533 /* Register all of the selectors in the class and meta class. */
534 __objc_register_selectors_from_class (class);
535 __objc_register_selectors_from_class ((Class
) class->class_pointer
);
537 /* Install the fake dispatch tables */
538 __objc_install_premature_dtable(class);
539 __objc_install_premature_dtable(class->class_pointer
);
541 /* Register the instance methods as class methods, this is
542 only done for root classes. */
543 __objc_register_instance_methods_to_class(class);
545 if (class->protocols
)
546 __objc_init_protocols (class->protocols
);
548 /* Check to see if the superclass is known in this point. If it's not
549 add the class to the unresolved_classes list. */
550 if (superclass
&& !objc_lookup_class (superclass
))
551 unresolved_classes
= list_cons (class, unresolved_classes
);
554 /* Process category information from the module. */
555 for (i
= 0; i
< symtab
->cat_def_cnt
; ++i
)
557 Category_t category
= symtab
->defs
[i
+ symtab
->cls_def_cnt
];
558 Class
class = objc_lookup_class (category
->class_name
);
560 /* If the class for the category exists then append its methods. */
564 DEBUG_PRINTF ("processing categories from (module,object): %s, %s\n",
568 /* Do instance methods. */
569 if (category
->instance_methods
)
570 class_add_method_list (class, category
->instance_methods
);
572 /* Do class methods. */
573 if (category
->class_methods
)
574 class_add_method_list ((Class
) class->class_pointer
,
575 category
->class_methods
);
577 if (category
->protocols
)
579 __objc_init_protocols (category
->protocols
);
580 __objc_class_add_protocols (class, category
->protocols
);
583 /* Register the instance methods as class methods, this is
584 only done for root classes. */
585 __objc_register_instance_methods_to_class(class);
589 /* The object to which the category methods belong can't be found.
590 Save the information. */
591 unclaimed_categories
= list_cons(category
, unclaimed_categories
);
596 uninitialized_statics
= list_cons (statics
, uninitialized_statics
);
597 if (uninitialized_statics
)
598 objc_init_statics ();
600 /* Scan the unclaimed category hash. Attempt to attach any unclaimed
601 categories to objects. */
602 for (cell
= &unclaimed_categories
; *cell
; )
604 Category_t category
= (*cell
)->head
;
605 Class
class = objc_lookup_class (category
->class_name
);
609 DEBUG_PRINTF ("attaching stored categories to object: %s\n",
612 list_remove_head (cell
);
614 if (category
->instance_methods
)
615 class_add_method_list (class, category
->instance_methods
);
617 if (category
->class_methods
)
618 class_add_method_list ((Class
) class->class_pointer
,
619 category
->class_methods
);
621 if (category
->protocols
)
623 __objc_init_protocols (category
->protocols
);
624 __objc_class_add_protocols (class, category
->protocols
);
627 /* Register the instance methods as class methods, this is
628 only done for root classes. */
629 __objc_register_instance_methods_to_class(class);
632 cell
= &(*cell
)->tail
;
635 if (unclaimed_proto_list
&& objc_lookup_class ("Protocol"))
637 list_mapcar (unclaimed_proto_list
,(void(*)(void*))__objc_init_protocols
);
638 list_free (unclaimed_proto_list
);
639 unclaimed_proto_list
= 0;
644 objc_mutex_unlock(__objc_runtime_mutex
);
647 static void objc_send_load (void)
649 if (!__objc_module_list
)
652 /* Try to find out if all the classes loaded so far also have their
653 superclasses known to the runtime. We suppose that the objects that are
654 allocated in the +load method are in general of a class declared in the
656 if (unresolved_classes
)
658 Class
class = unresolved_classes
->head
;
660 while (objc_lookup_class ((char*)class->super_class
))
662 list_remove_head (&unresolved_classes
);
663 if (unresolved_classes
)
664 class = unresolved_classes
->head
;
670 * If we still have classes for whom we don't have yet their super
671 * classes known to the runtime we don't send the +load messages.
673 if (unresolved_classes
)
677 /* Special check to allow creating and sending messages to constant strings
678 in +load methods. If these classes are not yet known, even if all the
679 other classes are known, delay sending of +load. */
680 if (!objc_lookup_class ("NXConstantString") ||
681 !objc_lookup_class ("Object"))
684 /* Iterate over all modules in the __objc_module_list and call on them the
685 __objc_create_classes_tree function. This function creates a tree of
686 classes that resembles the class hierarchy. */
687 list_mapcar (__objc_module_list
, (void(*)(void*))__objc_create_classes_tree
);
689 while (__objc_class_tree_list
)
692 objc_preorder_traverse (__objc_class_tree_list
->head
,
693 0, __objc_tree_print
);
695 objc_preorder_traverse (__objc_class_tree_list
->head
,
696 0, __objc_send_load
);
697 objc_postorder_traverse (__objc_class_tree_list
->head
,
698 0, __objc_destroy_class_tree_node
);
699 list_remove_head (&__objc_class_tree_list
);
702 list_mapcar (__objc_module_list
, (void(*)(void*))__objc_call_callback
);
703 list_free (__objc_module_list
);
704 __objc_module_list
= NULL
;
708 __objc_create_classes_tree (Module_t module
)
710 /* The runtime mutex is locked in this point */
712 Symtab_t symtab
= module
->symtab
;
715 /* Iterate thru classes defined in this module and insert them in the classes
717 for (i
= 0; i
< symtab
->cls_def_cnt
; i
++)
719 Class
class = (Class
) symtab
->defs
[i
];
721 objc_tree_insert_class (class);
726 __objc_call_callback (Module_t module
)
728 /* The runtime mutex is locked in this point */
730 Symtab_t symtab
= module
->symtab
;
733 /* Iterate thru classes defined in this module and call the callback for
735 for (i
= 0; i
< symtab
->cls_def_cnt
; i
++)
737 Class
class = (Class
) symtab
->defs
[i
];
739 /* Call the _objc_load_callback for this class. */
740 if (_objc_load_callback
)
741 _objc_load_callback(class, 0);
744 /* Call the _objc_load_callback for categories. Don't register the instance
745 methods as class methods for categories to root classes since they were
746 already added in the class. */
747 for (i
= 0; i
< symtab
->cat_def_cnt
; i
++)
749 Category_t category
= symtab
->defs
[i
+ symtab
->cls_def_cnt
];
750 Class
class = objc_lookup_class (category
->class_name
);
752 if (_objc_load_callback
)
753 _objc_load_callback(class, category
);
757 /* Sanity check the version of gcc used to compile `module'*/
758 static void init_check_module_version(Module_t module
)
760 if ((module
->version
!= OBJC_VERSION
) || (module
->size
!= sizeof (Module
)))
764 if(module
->version
> OBJC_VERSION
)
765 code
= OBJC_ERR_OBJC_VERSION
;
766 else if (module
->version
< OBJC_VERSION
)
767 code
= OBJC_ERR_GCC_VERSION
;
769 code
= OBJC_ERR_MODULE_SIZE
;
771 objc_error(nil
, code
, "Module %s version %d doesn't match runtime %d\n",
772 module
->name
, (int)module
->version
, OBJC_VERSION
);
777 __objc_init_protocols (struct objc_protocol_list
* protos
)
780 static Class proto_class
= 0;
785 objc_mutex_lock(__objc_runtime_mutex
);
788 proto_class
= objc_lookup_class("Protocol");
792 unclaimed_proto_list
= list_cons (protos
, unclaimed_proto_list
);
793 objc_mutex_unlock(__objc_runtime_mutex
);
798 assert (protos
->next
== 0); /* only single ones allowed */
801 for(i
= 0; i
< protos
->count
; i
++)
803 struct objc_protocol
* aProto
= protos
->list
[i
];
804 if (((size_t)aProto
->class_pointer
) == PROTOCOL_VERSION
)
806 /* assign class pointer */
807 aProto
->class_pointer
= proto_class
;
809 /* init super protocols */
810 __objc_init_protocols (aProto
->protocol_list
);
812 else if (protos
->list
[i
]->class_pointer
!= proto_class
)
814 objc_error(nil
, OBJC_ERR_PROTOCOL_VERSION
,
815 "Version %d doesn't match runtime protocol version %d\n",
816 (int)((char*)protos
->list
[i
]->class_pointer
-(char*)0),
821 objc_mutex_unlock(__objc_runtime_mutex
);
824 static void __objc_class_add_protocols (Class
class,
825 struct objc_protocol_list
* protos
)
832 protos
->next
= class->protocols
;
833 class->protocols
= protos
;