]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/PropertyMapHashTable.h
935df6803191aaacb11e819928996593ecf24993
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #ifndef PropertyMapHashTable_h
22 #define PropertyMapHashTable_h
25 #include <wtf/Vector.h>
29 struct PropertyMapEntry
{
35 PropertyMapEntry(UString::Rep
* key
, unsigned attributes
)
38 , attributes(attributes
)
43 PropertyMapEntry(UString::Rep
* key
, unsigned offset
, unsigned attributes
, unsigned index
)
46 , attributes(attributes
)
52 // lastIndexUsed is an ever-increasing index used to identify the order items
53 // were inserted into the property map. It's required that getEnumerablePropertyNames
54 // return the properties in the order they were added for compatibility with other
55 // browsers' JavaScript implementations.
56 struct PropertyMapHashTable
{
60 unsigned deletedSentinelCount
;
61 unsigned lastIndexUsed
;
62 Vector
<unsigned>* deletedOffsets
;
63 unsigned entryIndices
[1];
65 PropertyMapEntry
* entries()
67 // The entries vector comes after the indices vector.
68 // The 0th item in the entries vector is not really used; it has to
69 // have a 0 in its key to allow the hash table lookup to handle deleted
70 // sentinels without any special-case code, but the other fields are unused.
71 return reinterpret_cast<PropertyMapEntry
*>(&entryIndices
[size
]);
74 static size_t allocationSize(unsigned size
)
76 // We never let a hash table get more than half full,
77 // So the number of indices we need is the size of the hash table.
78 // But the number of entries is half that (plus one for the deleted sentinel).
79 return sizeof(PropertyMapHashTable
)
80 + (size
- 1) * sizeof(unsigned)
81 + (1 + size
/ 2) * sizeof(PropertyMapEntry
);
87 #endif // PropertyMapHashTable_h