2 * Copyright (c) 1999-2003, 2005-2007 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@
24 Copyright 1990-1996 NeXT Software, Inc.
25 Created by Bertrand Serlet, August 1990
33 #include "objc-private.h"
35 #include "hashtable2.h"
38 /****** Macros and utilities ****************************/
46 typedef struct _MapPair {
51 static INLINE unsigned xorHash(unsigned hash) {
52 unsigned xored = (hash & 0xffff) ^ (hash >> 16);
53 return ((xored * 65521) + hash);
56 static INLINE unsigned bucketOf(NXMapTable *table, const void *key) {
57 unsigned hash = (table->prototype->hash)(table, key);
58 return hash & table->nbBucketsMinusOne;
61 static INLINE int isEqual(NXMapTable *table, const void *key1, const void *key2) {
62 return (key1 == key2) ? 1 : (table->prototype->isEqual)(table, key1, key2);
65 static INLINE unsigned nextIndex(NXMapTable *table, unsigned index) {
66 return (index + 1) & table->nbBucketsMinusOne;
69 static INLINE void *allocBuckets(void *z, unsigned nb) {
70 MapPair *pairs = 1+(MapPair *)malloc_zone_malloc((malloc_zone_t *)z, ((nb+1) * sizeof(MapPair)));
71 MapPair *pair = pairs;
72 while (nb--) { pair->key = NX_MAPNOTAKEY; pair->value = NULL; pair++; }
76 static INLINE void freeBuckets(void *p) {
77 free(-1+(MapPair *)p);
80 /***** Global data and bootstrap **********************/
82 static int isEqualPrototype (const void *info, const void *data1, const void *data2) {
83 NXHashTablePrototype *proto1 = (NXHashTablePrototype *) data1;
84 NXHashTablePrototype *proto2 = (NXHashTablePrototype *) data2;
86 return (proto1->hash == proto2->hash) && (proto1->isEqual == proto2->isEqual) && (proto1->free == proto2->free) && (proto1->style == proto2->style);
89 static uintptr_t hashPrototype (const void *info, const void *data) {
90 NXHashTablePrototype *proto = (NXHashTablePrototype *) data;
92 return NXPtrHash(info, (void*)proto->hash) ^ NXPtrHash(info, (void*)proto->isEqual) ^ NXPtrHash(info, (void*)proto->free) ^ (uintptr_t) proto->style;
95 static NXHashTablePrototype protoPrototype = {
96 hashPrototype, isEqualPrototype, NXNoEffectFree, 0
99 static NXHashTable *prototypes = NULL;
100 /* table of all prototypes */
102 /**** Fundamentals Operations **************/
104 NXMapTable *NXCreateMapTableFromZone(NXMapTablePrototype prototype, unsigned capacity, void *z) {
105 NXMapTable *table = (NXMapTable *)malloc_zone_malloc((malloc_zone_t *)z, sizeof(NXMapTable));
106 NXMapTablePrototype *proto;
107 if (! prototypes) prototypes = NXCreateHashTable(protoPrototype, 0, NULL);
108 if (! prototype.hash || ! prototype.isEqual || ! prototype.free || prototype.style) {
109 _objc_inform("*** NXCreateMapTable: invalid creation parameters\n");
112 proto = (NXMapTablePrototype *)NXHashGet(prototypes, &prototype);
114 proto = (NXMapTablePrototype *)malloc(sizeof(NXMapTablePrototype));
116 (void)NXHashInsert(prototypes, proto);
118 table->prototype = proto; table->count = 0;
119 table->nbBucketsMinusOne = exp2u(log2u(capacity)+1) - 1;
120 table->buckets = allocBuckets(z, table->nbBucketsMinusOne + 1);
124 NXMapTable *NXCreateMapTable(NXMapTablePrototype prototype, unsigned capacity) {
125 return NXCreateMapTableFromZone(prototype, capacity, malloc_default_zone());
128 void NXFreeMapTable(NXMapTable *table) {
129 NXResetMapTable(table);
130 freeBuckets(table->buckets);
134 void NXResetMapTable(NXMapTable *table) {
135 MapPair *pairs = (MapPair *)table->buckets;
136 void (*freeProc)(struct _NXMapTable *, void *, void *) = table->prototype->free;
137 unsigned index = table->nbBucketsMinusOne + 1;
139 if (pairs->key != NX_MAPNOTAKEY) {
140 freeProc(table, (void *)pairs->key, (void *)pairs->value);
141 pairs->key = NX_MAPNOTAKEY; pairs->value = NULL;
148 BOOL NXCompareMapTables(NXMapTable *table1, NXMapTable *table2) {
149 if (table1 == table2) return YES;
150 if (table1->count != table2->count) return NO;
154 NXMapState state = NXInitMapState(table1);
155 while (NXNextMapState(table1, &state, &key, &value)) {
156 if (NXMapMember(table2, key, (void**)&value) == NX_MAPNOTAKEY) return NO;
162 unsigned NXCountMapTable(NXMapTable *table) { return table->count; }
165 extern "C" void __NXMAPTABLE_CORRUPTED__
166 (const void *table, const void *buckets, uint64_t count,
167 uint64_t nbBucketsMinusOne, uint64_t badkeys, uint64_t index,
168 uint64_t index2, uint64_t pairIndexes, const void *key1,
169 const void *value1, const void *key2, const void *value2,
170 const void *key3, const void *value3);
172 static int _mapStrIsEqual(NXMapTable *table, const void *key1, const void *key2);
175 "\n .private_extern ___NXMAPTABLE_CORRUPTED__"
176 "\n ___NXMAPTABLE_CORRUPTED__:"
177 // push a frame for the unwinder to see
180 // push register parameters to the stack in reverse order
187 // pop the pushed register parameters into their destinations
188 "\n popq %rax" // table
189 "\n popq %rbx" // buckets
190 "\n popq %rcx" // count
191 "\n popq %rdx" // nbBucketsMinusOne
192 "\n popq %rdi" // badkeys
193 "\n popq %rsi" // index
194 // read stack parameters into their destinations
195 "\n mov 0*8+16(%rbp), %r8" // index2
196 "\n mov 1*8+16(%rbp), %r9" // pairIndexes
197 "\n mov 2*8+16(%rbp), %r10" // key1
198 "\n mov 3*8+16(%rbp), %r11" // value1
199 "\n mov 4*8+16(%rbp), %r12" // key2
200 "\n mov 5*8+16(%rbp), %r13" // value2
201 "\n mov 6*8+16(%rbp), %r14" // key3
202 "\n mov 7*8+16(%rbp), %r15" // value3
206 // Look for a particular case of data corruption (rdar://36373000)
207 // and investigate it further before crashing.
208 static void validateKey(NXMapTable *table, MapPair *pair,
209 unsigned index, unsigned index2)
212 # define BADKEY ((void * _Nonnull)(0xfffffffffffffffeULL))
213 if (pair->key != BADKEY ||
214 table->prototype->isEqual != _mapStrIsEqual)
219 _objc_inform_now_and_on_crash
220 ("NXMapTable %p (%p) has invalid key/value pair %p->%p (%p)",
221 table, table->buckets, pair->key, pair->value, pair);
222 _objc_inform_now_and_on_crash
223 ("table %p, buckets %p, count %u, nbNucketsMinusOne %u, "
224 "prototype %p (hash %p, isEqual %p, free %p)",
225 table, table->buckets, table->count, table->nbBucketsMinusOne,
226 table->prototype, table->prototype->hash, table->prototype->isEqual,
227 table->prototype->free);
229 // Count the number of bad keys in the table.
230 MapPair *pairs = (MapPair *)table->buckets;
231 unsigned badKeys = 0;
232 for (unsigned i = 0; i < table->nbBucketsMinusOne+1; i++) {
233 if (pairs[i].key == BADKEY) badKeys++;
236 _objc_inform_now_and_on_crash("%u invalid keys in table", badKeys);
238 // Record some additional key pairs for posterity.
239 unsigned pair2Index = nextIndex(table, index);
240 unsigned pair3Index = nextIndex(table, pair2Index);
241 MapPair *pair2 = pairs + pair2Index;
242 MapPair *pair3 = pairs + pair3Index;
243 uint64_t pairIndexes = ((uint64_t)pair2Index << 32) | pair3Index;
245 // Save a bunch of values to registers so we can see them in the crash log.
246 __NXMAPTABLE_CORRUPTED__
247 (// rax, rbx, rcx, rdx
248 table, table->buckets, table->count, table->nbBucketsMinusOne,
249 // rdi, rsi, skip rbp, skip rsp
252 index2, pairIndexes, pair->key, pair->value,
253 // r12, r13, r14, r15
254 pair2->key, pair2->value, pair3->key, pair3->value);
258 static INLINE void *_NXMapMember(NXMapTable *table, const void *key, void **value) {
259 MapPair *pairs = (MapPair *)table->buckets;
260 unsigned index = bucketOf(table, key);
261 MapPair *pair = pairs + index;
262 if (pair->key == NX_MAPNOTAKEY) return NX_MAPNOTAKEY;
263 validateKey(table, pair, index, index);
265 if (isEqual(table, pair->key, key)) {
266 *value = (void *)pair->value;
267 return (void *)pair->key;
269 unsigned index2 = index;
270 while ((index2 = nextIndex(table, index2)) != index) {
271 pair = pairs + index2;
272 if (pair->key == NX_MAPNOTAKEY) return NX_MAPNOTAKEY;
273 validateKey(table, pair, index, index2);
274 if (isEqual(table, pair->key, key)) {
275 *value = (void *)pair->value;
276 return (void *)pair->key;
279 return NX_MAPNOTAKEY;
283 void *NXMapMember(NXMapTable *table, const void *key, void **value) {
284 return _NXMapMember(table, key, value);
287 void *NXMapGet(NXMapTable *table, const void *key) {
289 return (_NXMapMember(table, key, &value) != NX_MAPNOTAKEY) ? value : NULL;
292 static void _NXMapRehash(NXMapTable *table) {
293 MapPair *pairs = (MapPair *)table->buckets;
294 MapPair *pair = pairs;
295 unsigned numBuckets = table->nbBucketsMinusOne + 1;
296 unsigned index = numBuckets;
297 unsigned oldCount = table->count;
299 table->nbBucketsMinusOne = 2 * numBuckets - 1;
301 table->buckets = allocBuckets(malloc_zone_from_ptr(table), table->nbBucketsMinusOne + 1);
303 if (pair->key != NX_MAPNOTAKEY) {
304 (void)NXMapInsert(table, pair->key, pair->value);
308 if (oldCount != table->count)
309 _objc_inform("*** maptable: count differs after rehashing; probably indicates a broken invariant: there are x and y such as isEqual(x, y) is TRUE but hash(x) != hash (y)\n");
313 void *NXMapInsert(NXMapTable *table, const void *key, const void *value) {
314 MapPair *pairs = (MapPair *)table->buckets;
315 unsigned index = bucketOf(table, key);
316 MapPair *pair = pairs + index;
317 if (key == NX_MAPNOTAKEY) {
318 _objc_inform("*** NXMapInsert: invalid key: -1\n");
322 unsigned numBuckets = table->nbBucketsMinusOne + 1;
324 if (pair->key == NX_MAPNOTAKEY) {
325 pair->key = key; pair->value = value;
327 if (table->count * 4 > numBuckets * 3) _NXMapRehash(table);
331 if (isEqual(table, pair->key, key)) {
332 const void *old = pair->value;
333 if (old != value) pair->value = value;/* avoid writing unless needed! */
335 } else if (table->count == numBuckets) {
336 /* no room: rehash and retry */
338 return NXMapInsert(table, key, value);
340 unsigned index2 = index;
341 while ((index2 = nextIndex(table, index2)) != index) {
342 pair = pairs + index2;
343 if (pair->key == NX_MAPNOTAKEY) {
344 pair->key = key; pair->value = value;
346 if (table->count * 4 > numBuckets * 3) _NXMapRehash(table);
349 if (isEqual(table, pair->key, key)) {
350 const void *old = pair->value;
351 if (old != value) pair->value = value;/* avoid writing unless needed! */
355 /* no room: can't happen! */
356 _objc_inform("**** NXMapInsert: bug\n");
361 void *NXMapRemove(NXMapTable *table, const void *key) {
362 MapPair *pairs = (MapPair *)table->buckets;
363 unsigned index = bucketOf(table, key);
364 MapPair *pair = pairs + index;
365 unsigned chain = 1; /* number of non-nil pairs in a row */
367 const void *old = NULL;
368 if (pair->key == NX_MAPNOTAKEY) return NULL;
371 unsigned index2 = index;
372 if (isEqual(table, pair->key, key)) {found ++; old = pair->value; }
373 while ((index2 = nextIndex(table, index2)) != index) {
374 pair = pairs + index2;
375 if (pair->key == NX_MAPNOTAKEY) break;
376 if (isEqual(table, pair->key, key)) {found ++; old = pair->value; }
380 if (! found) return NULL;
381 if (found != 1) _objc_inform("**** NXMapRemove: incorrect table\n");
382 /* remove then reinsert */
385 MapPair *aux = (chain > 16) ? (MapPair *)malloc(sizeof(MapPair)*(chain-1)) : buffer;
388 unsigned index2 = index;
390 pair = pairs + index2;
391 if (! isEqual(table, pair->key, key)) aux[auxnb++] = *pair;
392 pair->key = NX_MAPNOTAKEY; pair->value = NULL;
393 index2 = nextIndex(table, index2);
395 table->count -= chain;
396 if (auxnb != chain-1) _objc_inform("**** NXMapRemove: bug\n");
397 while (auxnb--) NXMapInsert(table, aux[auxnb].key, aux[auxnb].value);
398 if (chain > 16) free(aux);
403 NXMapState NXInitMapState(NXMapTable *table) {
405 state.index = table->nbBucketsMinusOne + 1;
409 int NXNextMapState(NXMapTable *table, NXMapState *state, const void **key, const void **value) {
410 MapPair *pairs = (MapPair *)table->buckets;
411 while (state->index--) {
412 MapPair *pair = pairs + state->index;
413 if (pair->key != NX_MAPNOTAKEY) {
414 *key = pair->key; *value = pair->value;
422 /***********************************************************************
423 * NXMapKeyCopyingInsert
424 * Like NXMapInsert, but strdups the key if necessary.
425 * Used to prevent stale pointers when bundles are unloaded.
426 **********************************************************************/
427 void *NXMapKeyCopyingInsert(NXMapTable *table, const void *key, const void *value)
430 void *realValue = NULL;
432 if ((realKey = NXMapMember(table, key, &realValue)) != NX_MAPNOTAKEY) {
433 // key DOES exist in table - use table's key for insertion
435 // key DOES NOT exist in table - copy the new key before insertion
436 realKey = (void *)strdupIfMutable((char *)key);
438 return NXMapInsert(table, realKey, value);
442 /***********************************************************************
443 * NXMapKeyFreeingRemove
444 * Like NXMapRemove, but frees the existing key if necessary.
445 * Used to prevent stale pointers when bundles are unloaded.
446 **********************************************************************/
447 void *NXMapKeyFreeingRemove(NXMapTable *table, const void *key)
450 void *realValue = NULL;
452 if ((realKey = NXMapMember(table, key, &realValue)) != NX_MAPNOTAKEY) {
453 // key DOES exist in table - remove pair and free key
454 realValue = NXMapRemove(table, realKey);
455 // free the key from the table, not necessarily the one given
456 freeIfMutable((char *)realKey);
459 // key DOES NOT exist in table - nothing to do
465 /**** Conveniences *************************************/
467 static unsigned _mapPtrHash(NXMapTable *table, const void *key) {
469 return (unsigned)(((uintptr_t)key) >> 3);
471 return ((uintptr_t)key) >> 2;
475 static unsigned _mapStrHash(NXMapTable *table, const void *key) {
477 unsigned char *s = (unsigned char *)key;
478 /* unsigned to avoid a sign-extend */
479 /* unroll the loop */
481 if (*s == '\0') break;
483 if (*s == '\0') break;
485 if (*s == '\0') break;
487 if (*s == '\0') break;
490 return xorHash(hash);
493 static int _mapPtrIsEqual(NXMapTable *table, const void *key1, const void *key2) {
497 static int _mapStrIsEqual(NXMapTable *table, const void *key1, const void *key2) {
498 if (key1 == key2) return YES;
499 if (! key1) return ! strlen ((char *) key2);
500 if (! key2) return ! strlen ((char *) key1);
501 if (((char *) key1)[0] != ((char *) key2)[0]) return NO;
502 return (strcmp((char *) key1, (char *) key2)) ? NO : YES;
505 static void _mapNoFree(NXMapTable *table, void *key, void *value) {}
507 const NXMapTablePrototype NXPtrValueMapPrototype = {
508 _mapPtrHash, _mapPtrIsEqual, _mapNoFree, 0
511 const NXMapTablePrototype NXStrValueMapPrototype = {
512 _mapStrHash, _mapStrIsEqual, _mapNoFree, 0
516 #if !__OBJC2__ && !TARGET_OS_WIN32
518 /* This only works with class Object, which is unavailable. */
520 /* Method prototypes */
521 @interface DoesNotExist
525 - (const char *)UTF8String;
526 - (unsigned long)hash;
527 - (BOOL)isEqual:(id)object;
531 static unsigned _mapObjectHash(NXMapTable *table, const void *key) {
532 return [(id)key hash];
535 static int _mapObjectIsEqual(NXMapTable *table, const void *key1, const void *key2) {
536 return [(id)key1 isEqual:(id)key2];
539 static void _mapObjectFree(NXMapTable *table, void *key, void *value) {
543 const NXMapTablePrototype NXObjectMapPrototype = {
544 _mapObjectHash, _mapObjectIsEqual, _mapObjectFree, 0