2 * Copyright (c) 2012 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
26 #include "objc-private.h"
27 #include "DenseMapExtras.h"
29 static objc::ExplicitInitDenseSet<const char *> namedSelectors;
30 static SEL search_builtins(const char *key);
33 /***********************************************************************
35 * Initialize selector tables and register selectors used internally.
36 **********************************************************************/
37 void sel_init(size_t selrefCount)
41 _objc_inform("PREOPTIMIZATION: using dyld selector opt");
45 namedSelectors.init((unsigned)selrefCount);
47 // Register selectors used by libobjc
49 mutex_locker_t lock(selLock);
51 SEL_cxx_construct = sel_registerNameNoLock(".cxx_construct", NO);
52 SEL_cxx_destruct = sel_registerNameNoLock(".cxx_destruct", NO);
56 static SEL sel_alloc(const char *name, bool copy)
58 selLock.assertLocked();
59 return (SEL)(copy ? strdupIfMutable(name) : name);
63 const char *sel_getName(SEL sel)
65 if (!sel) return "<null selector>";
66 return (const char *)(const void*)sel;
70 unsigned long sel_hash(SEL sel)
72 unsigned long selAddr = (unsigned long)sel;
73 #if CONFIG_USE_PREOPT_CACHES
74 selAddr ^= (selAddr >> 7);
80 BOOL sel_isMapped(SEL sel)
84 const char *name = (const char *)(void *)sel;
86 if (sel == search_builtins(name)) return YES;
88 mutex_locker_t lock(selLock);
89 auto it = namedSelectors.get().find(name);
90 return it != namedSelectors.get().end() && (SEL)*it == sel;
94 static SEL search_builtins(const char *name)
97 if (SEL result = (SEL)_dyld_get_objc_selector(name))
104 static SEL __sel_registerName(const char *name, bool shouldLock, bool copy)
108 if (shouldLock) selLock.assertUnlocked();
109 else selLock.assertLocked();
111 if (!name) return (SEL)0;
113 result = search_builtins(name);
114 if (result) return result;
116 conditional_mutex_locker_t lock(selLock, shouldLock);
117 auto it = namedSelectors.get().insert(name);
120 *it.first = (const char *)sel_alloc(name, copy);
122 return (SEL)*it.first;
126 SEL sel_registerName(const char *name) {
127 return __sel_registerName(name, 1, 1); // YES lock, YES copy
130 SEL sel_registerNameNoLock(const char *name, bool copy) {
131 return __sel_registerName(name, 0, copy); // NO lock, maybe copy
136 // the majority of uses of this function (which used to return NULL if not found)
137 // did not check for NULL, so, in fact, never return NULL
139 SEL sel_getUid(const char *name) {
140 return __sel_registerName(name, 2, 1); // YES lock, YES copy
144 BOOL sel_isEqual(SEL lhs, SEL rhs)
146 return bool(lhs == rhs);