1998-09-21 03:22:07 +02:00
|
|
|
/* GNU Objective C Runtime selector related functions
|
2004-05-25 21:10:54 +02:00
|
|
|
Copyright (C) 1993, 1995, 1996, 1997, 2002, 2004 Free Software Foundation, Inc.
|
1998-09-21 03:22:07 +02:00
|
|
|
Contributed by Kresten Krab Thorup
|
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
This file is part of GCC.
|
1998-09-21 03:22:07 +02:00
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
GCC is free software; you can redistribute it and/or modify it under the
|
1998-09-21 03:22:07 +02:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2, or (at your option) any later version.
|
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
1998-09-21 03:22:07 +02:00
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
GCC; see the file COPYING. If not, write to the Free Software
|
2005-08-17 05:21:42 +02:00
|
|
|
Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
/* As a special exception, if you link this library with files compiled with
|
|
|
|
GCC to produce an executable, this does not cause the resulting executable
|
|
|
|
to be covered by the GNU General Public License. This exception does not
|
|
|
|
however invalidate any other reasons why the executable file might be
|
|
|
|
covered by the GNU General Public License. */
|
|
|
|
|
archive.c, [...]: Include hash.h.
2005-06-07 David Ayers <d.ayers@inode.at>
* archive.c, init.c, selector.c: Include hash.h.
* archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
Include Objective-C headers with quotes and objc/ directory
prefix.
From-SVN: r100723
2005-06-07 23:04:19 +02:00
|
|
|
#include "objc/runtime.h"
|
|
|
|
#include "objc/sarray.h"
|
|
|
|
#include "objc/encoding.h"
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
/* Initial selector hash table size. Value doesn't matter much */
|
|
|
|
#define SELECTOR_HASH_SIZE 128
|
|
|
|
|
|
|
|
/* Tables mapping selector names to uid and opposite */
|
2002-07-02 21:43:03 +02:00
|
|
|
static struct sarray *__objc_selector_array = 0; /* uid -> sel !T:MUTEX */
|
|
|
|
static struct sarray *__objc_selector_names = 0; /* uid -> name !T:MUTEX */
|
1998-09-21 03:22:07 +02:00
|
|
|
static cache_ptr __objc_selector_hash = 0; /* name -> uid !T:MUTEX */
|
|
|
|
|
|
|
|
/* Number of selectors stored in each of the above tables */
|
2002-06-21 16:36:37 +02:00
|
|
|
unsigned int __objc_selector_max_index = 0; /* !T:MUTEX */
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2004-12-12 00:26:00 +01:00
|
|
|
void __objc_init_selector_tables (void)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
__objc_selector_array = sarray_new (SELECTOR_HASH_SIZE, 0);
|
|
|
|
__objc_selector_names = sarray_new (SELECTOR_HASH_SIZE, 0);
|
|
|
|
__objc_selector_hash
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
= objc_hash_new (SELECTOR_HASH_SIZE,
|
|
|
|
(hash_func_type) objc_hash_string,
|
|
|
|
(compare_func_type) objc_compare_strings);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This routine is given a class and records all of the methods in its class
|
|
|
|
structure in the record table. */
|
|
|
|
void
|
|
|
|
__objc_register_selectors_from_class (Class class)
|
|
|
|
{
|
|
|
|
MethodList_t method_list;
|
|
|
|
|
|
|
|
method_list = class->methods;
|
|
|
|
while (method_list)
|
|
|
|
{
|
2004-05-25 21:10:54 +02:00
|
|
|
__objc_register_selectors_from_list (method_list);
|
1998-09-21 03:22:07 +02:00
|
|
|
method_list = method_list->method_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This routine is given a list of methods and records each of the methods in
|
|
|
|
the record table. This is the routine that does the actual recording
|
|
|
|
work.
|
|
|
|
|
2004-05-25 21:10:54 +02:00
|
|
|
The name and type pointers in the method list must be permanent and
|
|
|
|
immutable.
|
1998-09-21 03:22:07 +02:00
|
|
|
*/
|
2004-05-25 21:10:54 +02:00
|
|
|
void
|
|
|
|
__objc_register_selectors_from_list (MethodList_t method_list)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
int i = 0;
|
2004-05-25 21:10:54 +02:00
|
|
|
|
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
while (i < method_list->method_count)
|
|
|
|
{
|
|
|
|
Method_t method = &method_list->method_list[i];
|
2004-05-25 21:10:54 +02:00
|
|
|
if (method->method_name)
|
|
|
|
{
|
|
|
|
method->method_name
|
|
|
|
= __sel_register_typed_name ((const char *) method->method_name,
|
|
|
|
method->method_types, 0, YES);
|
|
|
|
}
|
1998-09-21 03:22:07 +02:00
|
|
|
i += 1;
|
|
|
|
}
|
2004-05-25 21:10:54 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Register instance methods as class methods for root classes */
|
2002-07-02 21:43:03 +02:00
|
|
|
void __objc_register_instance_methods_to_class (Class class)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
MethodList_t method_list;
|
|
|
|
MethodList_t class_method_list;
|
|
|
|
int max_methods_no = 16;
|
|
|
|
MethodList_t new_list;
|
|
|
|
Method_t curr_method;
|
|
|
|
|
|
|
|
/* Only if a root class. */
|
2002-07-02 21:43:03 +02:00
|
|
|
if (class->super_class)
|
1998-09-21 03:22:07 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Allocate a method list to hold the new class methods */
|
2002-07-02 21:43:03 +02:00
|
|
|
new_list = objc_calloc (sizeof (struct objc_method_list)
|
|
|
|
+ sizeof (struct objc_method[max_methods_no]), 1);
|
1998-09-21 03:22:07 +02:00
|
|
|
method_list = class->methods;
|
|
|
|
class_method_list = class->class_pointer->methods;
|
|
|
|
curr_method = &new_list->method_list[0];
|
|
|
|
|
|
|
|
/* Iterate through the method lists for the class */
|
|
|
|
while (method_list)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Iterate through the methods from this method list */
|
|
|
|
for (i = 0; i < method_list->method_count; i++)
|
|
|
|
{
|
|
|
|
Method_t mth = &method_list->method_list[i];
|
|
|
|
if (mth->method_name
|
2002-07-02 21:43:03 +02:00
|
|
|
&& ! search_for_method_in_list (class_method_list,
|
1998-09-21 03:22:07 +02:00
|
|
|
mth->method_name))
|
|
|
|
{
|
|
|
|
/* This instance method isn't a class method.
|
|
|
|
Add it into the new_list. */
|
|
|
|
*curr_method = *mth;
|
|
|
|
|
|
|
|
/* Reallocate the method list if necessary */
|
2002-07-02 21:43:03 +02:00
|
|
|
if (++new_list->method_count == max_methods_no)
|
1998-09-21 03:22:07 +02:00
|
|
|
new_list =
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_realloc (new_list, sizeof (struct objc_method_list)
|
|
|
|
+ sizeof (struct
|
1998-09-21 03:22:07 +02:00
|
|
|
objc_method[max_methods_no += 16]));
|
|
|
|
curr_method = &new_list->method_list[new_list->method_count];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
method_list = method_list->method_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we created any new class methods
|
|
|
|
then attach the method list to the class */
|
|
|
|
if (new_list->method_count)
|
|
|
|
{
|
|
|
|
new_list =
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_realloc (new_list, sizeof (struct objc_method_list)
|
|
|
|
+ sizeof (struct objc_method[new_list->method_count]));
|
1998-09-21 03:22:07 +02:00
|
|
|
new_list->method_next = class->class_pointer->methods;
|
|
|
|
class->class_pointer->methods = new_list;
|
|
|
|
}
|
2004-01-15 02:49:41 +01:00
|
|
|
else
|
|
|
|
objc_free(new_list);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
__objc_update_dispatch_table_for_class (class->class_pointer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns YES iff t1 and t2 have same method types, but we ignore
|
|
|
|
the argframe layout */
|
|
|
|
BOOL
|
2002-07-02 21:43:03 +02:00
|
|
|
sel_types_match (const char *t1, const char *t2)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
if (! t1 || ! t2)
|
1998-09-21 03:22:07 +02:00
|
|
|
return NO;
|
|
|
|
while (*t1 && *t2)
|
|
|
|
{
|
|
|
|
if (*t1 == '+') t1++;
|
|
|
|
if (*t2 == '+') t2++;
|
2002-07-02 21:43:03 +02:00
|
|
|
while (isdigit ((unsigned char) *t1)) t1++;
|
|
|
|
while (isdigit ((unsigned char) *t2)) t2++;
|
1998-09-21 03:22:07 +02:00
|
|
|
/* xxx Remove these next two lines when qualifiers are put in
|
|
|
|
all selectors, not just Protocol selectors. */
|
2002-07-02 21:43:03 +02:00
|
|
|
t1 = objc_skip_type_qualifiers (t1);
|
|
|
|
t2 = objc_skip_type_qualifiers (t2);
|
|
|
|
if (! *t1 && ! *t2)
|
1998-09-21 03:22:07 +02:00
|
|
|
return YES;
|
|
|
|
if (*t1 != *t2)
|
|
|
|
return NO;
|
|
|
|
t1++;
|
|
|
|
t2++;
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return selector representing name */
|
|
|
|
SEL
|
|
|
|
sel_get_typed_uid (const char *name, const char *types)
|
|
|
|
{
|
|
|
|
struct objc_list *l;
|
|
|
|
sidx i;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
i = (sidx) objc_hash_value_for_key (__objc_selector_hash, name);
|
1998-09-21 03:22:07 +02:00
|
|
|
if (i == 0)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
for (l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i);
|
1998-09-21 03:22:07 +02:00
|
|
|
l; l = l->tail)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
SEL s = (SEL) l->head;
|
1998-09-21 03:22:07 +02:00
|
|
|
if (types == 0 || s->sel_types == 0)
|
|
|
|
{
|
|
|
|
if (s->sel_types == types)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sel_types_match (s->sel_types, types))
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return selector representing name; prefer a selector with non-NULL type */
|
|
|
|
SEL
|
|
|
|
sel_get_any_typed_uid (const char *name)
|
|
|
|
{
|
|
|
|
struct objc_list *l;
|
|
|
|
sidx i;
|
|
|
|
SEL s = NULL;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
i = (sidx) objc_hash_value_for_key (__objc_selector_hash, name);
|
1998-09-21 03:22:07 +02:00
|
|
|
if (i == 0)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
for (l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i);
|
1998-09-21 03:22:07 +02:00
|
|
|
l; l = l->tail)
|
|
|
|
{
|
|
|
|
s = (SEL) l->head;
|
|
|
|
if (s->sel_types)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return selector representing name */
|
|
|
|
SEL
|
|
|
|
sel_get_any_uid (const char *name)
|
|
|
|
{
|
|
|
|
struct objc_list *l;
|
|
|
|
sidx i;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
i = (sidx) objc_hash_value_for_key (__objc_selector_hash, name);
|
1998-09-21 03:22:07 +02:00
|
|
|
if (soffset_decode (i) == 0)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i);
|
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
if (l == 0)
|
|
|
|
return 0;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
return (SEL) l->head;
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* return selector representing name */
|
|
|
|
SEL
|
|
|
|
sel_get_uid (const char *name)
|
|
|
|
{
|
|
|
|
return sel_register_typed_name (name, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get name of selector. If selector is unknown, the empty string ""
|
|
|
|
is returned */
|
2002-07-02 21:43:03 +02:00
|
|
|
const char *sel_get_name (SEL selector)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
const char *ret;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
|
|
|
if ((soffset_decode ((sidx)selector->sel_id) > 0)
|
|
|
|
&& (soffset_decode ((sidx)selector->sel_id) <= __objc_selector_max_index))
|
1998-09-21 03:22:07 +02:00
|
|
|
ret = sarray_get_safe (__objc_selector_names, (sidx) selector->sel_id);
|
|
|
|
else
|
|
|
|
ret = 0;
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
sel_is_mapped (SEL selector)
|
|
|
|
{
|
|
|
|
unsigned int idx = soffset_decode ((sidx)selector->sel_id);
|
|
|
|
return ((idx > 0) && (idx <= __objc_selector_max_index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
const char *sel_get_type (SEL selector)
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
if (selector)
|
|
|
|
return selector->sel_types;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The uninstalled dispatch table */
|
2002-07-02 21:43:03 +02:00
|
|
|
extern struct sarray *__objc_uninstalled_dtable;
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2004-05-25 21:10:54 +02:00
|
|
|
/* __sel_register_typed_name allocates lots of struct objc_selector:s
|
|
|
|
of 8 (16, if pointers are 64 bits) bytes at startup. To reduce the number
|
|
|
|
of malloc calls and memory lost to malloc overhead, we allocate
|
|
|
|
objc_selector:s in blocks here. This is only called from
|
|
|
|
__sel_register_typed_name, and __sel_register_typed_name may only be
|
|
|
|
called when __objc_runtime_mutex is locked.
|
|
|
|
|
|
|
|
Note that the objc_selector:s allocated from __sel_register_typed_name
|
|
|
|
are never freed.
|
|
|
|
|
|
|
|
62 because 62 * sizeof (struct objc_selector) = 496 (992). This should
|
|
|
|
let malloc add some overhead and use a nice, round 512 (1024) byte chunk.
|
|
|
|
*/
|
|
|
|
#define SELECTOR_POOL_SIZE 62
|
|
|
|
static struct objc_selector *selector_pool;
|
|
|
|
static int selector_pool_left;
|
|
|
|
|
|
|
|
static struct objc_selector *
|
|
|
|
pool_alloc_selector(void)
|
|
|
|
{
|
|
|
|
if (!selector_pool_left)
|
|
|
|
{
|
|
|
|
selector_pool = objc_malloc (sizeof (struct objc_selector)
|
|
|
|
* SELECTOR_POOL_SIZE);
|
|
|
|
selector_pool_left = SELECTOR_POOL_SIZE;
|
|
|
|
}
|
|
|
|
return &selector_pool[--selector_pool_left];
|
|
|
|
}
|
|
|
|
|
1998-09-21 03:22:07 +02:00
|
|
|
/* Store the passed selector name in the selector record and return its
|
|
|
|
selector value (value returned by sel_get_uid).
|
|
|
|
Assumes that the calling function has locked down __objc_runtime_mutex. */
|
|
|
|
/* is_const parameter tells us if the name and types parameters
|
|
|
|
are really constant or not. If YES then they are constant and
|
|
|
|
we can just store the pointers. If NO then we need to copy
|
|
|
|
name and types because the pointers may disappear later on. */
|
|
|
|
SEL
|
|
|
|
__sel_register_typed_name (const char *name, const char *types,
|
|
|
|
struct objc_selector *orig, BOOL is_const)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
struct objc_selector *j;
|
1998-09-21 03:22:07 +02:00
|
|
|
sidx i;
|
|
|
|
struct objc_list *l;
|
|
|
|
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
i = (sidx) objc_hash_value_for_key (__objc_selector_hash, name);
|
1998-09-21 03:22:07 +02:00
|
|
|
if (soffset_decode (i) != 0)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
for (l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i);
|
1998-09-21 03:22:07 +02:00
|
|
|
l; l = l->tail)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
SEL s = (SEL) l->head;
|
1998-09-21 03:22:07 +02:00
|
|
|
if (types == 0 || s->sel_types == 0)
|
|
|
|
{
|
|
|
|
if (s->sel_types == types)
|
|
|
|
{
|
|
|
|
if (orig)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
orig->sel_id = (void *) i;
|
1998-09-21 03:22:07 +02:00
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
2002-07-02 21:43:03 +02:00
|
|
|
else if (! strcmp (s->sel_types, types))
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
if (orig)
|
|
|
|
{
|
2002-07-02 21:43:03 +02:00
|
|
|
orig->sel_id = (void *) i;
|
1998-09-21 03:22:07 +02:00
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (orig)
|
|
|
|
j = orig;
|
|
|
|
else
|
2004-05-25 21:10:54 +02:00
|
|
|
j = pool_alloc_selector ();
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_id = (void *) i;
|
1998-09-21 03:22:07 +02:00
|
|
|
/* Can we use the pointer or must copy types? Don't copy if NULL */
|
|
|
|
if ((is_const) || (types == 0))
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_types = (const char *) types;
|
1998-09-21 03:22:07 +02:00
|
|
|
else {
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_types = (char *) objc_malloc (strlen (types) + 1);
|
|
|
|
strcpy ((char *) j->sel_types, types);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
2002-07-02 21:43:03 +02:00
|
|
|
l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
__objc_selector_max_index += 1;
|
2002-07-02 21:43:03 +02:00
|
|
|
i = soffset_encode (__objc_selector_max_index);
|
1998-09-21 03:22:07 +02:00
|
|
|
if (orig)
|
|
|
|
j = orig;
|
|
|
|
else
|
2004-05-25 21:10:54 +02:00
|
|
|
j = pool_alloc_selector ();
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_id = (void *) i;
|
1998-09-21 03:22:07 +02:00
|
|
|
/* Can we use the pointer or must copy types? Don't copy if NULL */
|
|
|
|
if ((is_const) || (types == 0))
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_types = (const char *) types;
|
1998-09-21 03:22:07 +02:00
|
|
|
else {
|
2002-07-02 21:43:03 +02:00
|
|
|
j->sel_types = (char *) objc_malloc (strlen (types) + 1);
|
|
|
|
strcpy ((char *) j->sel_types, types);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
l = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_PRINTF ("Record selector %s[%s] as: %ld\n", name, types,
|
2004-05-25 21:10:54 +02:00
|
|
|
(long) soffset_decode (i));
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
int is_new = (l == 0);
|
|
|
|
const char *new_name;
|
|
|
|
|
|
|
|
/* Can we use the pointer or must copy name? Don't copy if NULL */
|
|
|
|
if ((is_const) || (name == 0))
|
|
|
|
new_name = name;
|
|
|
|
else {
|
2002-07-02 21:43:03 +02:00
|
|
|
new_name = (char *) objc_malloc (strlen (name) + 1);
|
|
|
|
strcpy ((char *) new_name, name);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
l = list_cons ((void *) j, l);
|
1998-09-21 03:22:07 +02:00
|
|
|
sarray_at_put_safe (__objc_selector_names, i, (void *) new_name);
|
|
|
|
sarray_at_put_safe (__objc_selector_array, i, (void *) l);
|
|
|
|
if (is_new)
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-02 20:37:03 +01:00
|
|
|
objc_hash_add (&__objc_selector_hash, (void *) new_name, (void *) i);
|
1998-09-21 03:22:07 +02:00
|
|
|
}
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
sarray_realloc (__objc_uninstalled_dtable, __objc_selector_max_index + 1);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
return (SEL) j;
|
|
|
|
}
|
|
|
|
|
|
|
|
SEL
|
|
|
|
sel_register_name (const char *name)
|
|
|
|
{
|
|
|
|
SEL ret;
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
/* Assume that name is not constant static memory and needs to be
|
|
|
|
copied before put into a runtime structure. is_const == NO */
|
|
|
|
ret = __sel_register_typed_name (name, 0, 0, NO);
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
SEL
|
|
|
|
sel_register_typed_name (const char *name, const char *type)
|
|
|
|
{
|
|
|
|
SEL ret;
|
2004-05-25 21:10:54 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_lock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
/* Assume that name and type are not constant static memory and need to
|
|
|
|
be copied before put into a runtime structure. is_const == NO */
|
|
|
|
ret = __sel_register_typed_name (name, type, 0, NO);
|
2002-07-02 21:43:03 +02:00
|
|
|
objc_mutex_unlock (__objc_runtime_mutex);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|