2 * Copyright (C) 2003, 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.
22 #include "Identifier.h"
24 #include "CallFrame.h"
26 #include "NumericStrings.h"
27 #include "ScopeChain.h"
28 #include <new> // for placement new
29 #include <string.h> // for strlen
30 #include <wtf/Assertions.h>
31 #include <wtf/FastMalloc.h>
32 #include <wtf/HashSet.h>
33 #include <wtf/text/StringHash.h>
35 using WTF::ThreadSpecific
;
39 IdentifierTable
* createIdentifierTable()
41 return new IdentifierTable
;
44 void deleteIdentifierTable(IdentifierTable
* table
)
49 struct IdentifierCStringTranslator
{
50 static unsigned hash(const LChar
* c
)
52 return StringHasher::computeHash
<LChar
>(c
);
55 static bool equal(StringImpl
* r
, const LChar
* s
)
57 return Identifier::equal(r
, s
);
60 static void translate(StringImpl
*& location
, const LChar
* c
, unsigned hash
)
62 size_t length
= strlen(reinterpret_cast<const char*>(c
));
64 StringImpl
* r
= StringImpl::createUninitialized(length
, d
).leakRef();
65 for (size_t i
= 0; i
!= length
; i
++)
72 struct IdentifierLCharFromUCharTranslator
{
73 static unsigned hash(const CharBuffer
<UChar
>& buf
)
75 return StringHasher::computeHash
<UChar
>(buf
.s
, buf
.length
);
78 static bool equal(StringImpl
* str
, const CharBuffer
<UChar
>& buf
)
80 return Identifier::equal(str
, buf
.s
, buf
.length
);
83 static void translate(StringImpl
*& location
, const CharBuffer
<UChar
>& buf
, unsigned hash
)
86 StringImpl
* r
= StringImpl::createUninitialized(buf
.length
, d
).leakRef();
87 for (unsigned i
= 0; i
!= buf
.length
; i
++) {
97 PassRefPtr
<StringImpl
> Identifier::add(JSGlobalData
* globalData
, const char* c
)
102 return StringImpl::empty();
104 return add(globalData
, globalData
->smallStrings
.singleCharacterStringRep(c
[0]));
106 IdentifierTable
& identifierTable
= *globalData
->identifierTable
;
107 LiteralIdentifierTable
& literalIdentifierTable
= identifierTable
.literalTable();
109 const LiteralIdentifierTable::iterator
& iter
= literalIdentifierTable
.find(c
);
110 if (iter
!= literalIdentifierTable
.end())
113 HashSet
<StringImpl
*>::AddResult addResult
= identifierTable
.add
<const LChar
*, IdentifierCStringTranslator
>(reinterpret_cast<const LChar
*>(c
));
115 // If the string is newly-translated, then we need to adopt it.
116 // The boolean in the pair tells us if that is so.
117 RefPtr
<StringImpl
> addedString
= addResult
.isNewEntry
? adoptRef(*addResult
.iterator
) : *addResult
.iterator
;
119 literalIdentifierTable
.add(c
, addedString
.get());
121 return addedString
.release();
124 PassRefPtr
<StringImpl
> Identifier::add(ExecState
* exec
, const char* c
)
126 return add(&exec
->globalData(), c
);
129 PassRefPtr
<StringImpl
> Identifier::add8(JSGlobalData
* globalData
, const UChar
* s
, int length
)
134 if (canUseSingleCharacterString(c
))
135 return add(globalData
, globalData
->smallStrings
.singleCharacterStringRep(c
));
139 return StringImpl::empty();
140 CharBuffer
<UChar
> buf
= {s
, length
};
141 HashSet
<StringImpl
*>::AddResult addResult
= globalData
->identifierTable
->add
<CharBuffer
<UChar
>, IdentifierLCharFromUCharTranslator
>(buf
);
143 // If the string is newly-translated, then we need to adopt it.
144 // The boolean in the pair tells us if that is so.
145 return addResult
.isNewEntry
? adoptRef(*addResult
.iterator
) : *addResult
.iterator
;
148 template <typename CharType
>
149 ALWAYS_INLINE
uint32_t Identifier::toUInt32FromCharacters(const CharType
* characters
, unsigned length
, bool& ok
)
151 // Get the first character, turning it into a digit.
152 uint32_t value
= characters
[0] - '0';
156 // Check for leading zeros. If the first characher is 0, then the
157 // length of the string must be one - e.g. "042" is not equal to "42".
158 if (!value
&& length
> 1)
162 // Multiply value by 10, checking for overflow out of 32 bits.
163 if (value
> 0xFFFFFFFFU
/ 10)
167 // Get the next character, turning it into a digit.
168 uint32_t newValue
= *(++characters
) - '0';
172 // Add in the old value, checking for overflow out of 32 bits.
174 if (newValue
< value
)
183 uint32_t Identifier::toUInt32(const UString
& string
, bool& ok
)
187 unsigned length
= string
.length();
189 // An empty string is not a number.
194 return toUInt32FromCharacters(string
.characters8(), length
, ok
);
195 return toUInt32FromCharacters(string
.characters16(), length
, ok
);
198 PassRefPtr
<StringImpl
> Identifier::addSlowCase(JSGlobalData
* globalData
, StringImpl
* r
)
200 ASSERT(!r
->isIdentifier());
201 // The empty & null strings are static singletons, and static strings are handled
202 // in ::add() in the header, so we should never get here with a zero length string.
205 if (r
->length() == 1) {
207 if (c
<= maxSingleCharacterString
)
208 r
= globalData
->smallStrings
.singleCharacterStringRep(c
);
209 if (r
->isIdentifier())
213 return *globalData
->identifierTable
->add(r
).iterator
;
216 PassRefPtr
<StringImpl
> Identifier::addSlowCase(ExecState
* exec
, StringImpl
* r
)
218 return addSlowCase(&exec
->globalData(), r
);
221 Identifier
Identifier::from(ExecState
* exec
, unsigned value
)
223 return Identifier(exec
, exec
->globalData().numericStrings
.add(value
));
226 Identifier
Identifier::from(ExecState
* exec
, int value
)
228 return Identifier(exec
, exec
->globalData().numericStrings
.add(value
));
231 Identifier
Identifier::from(ExecState
* exec
, double value
)
233 return Identifier(exec
, exec
->globalData().numericStrings
.add(value
));
236 Identifier
Identifier::from(JSGlobalData
* globalData
, unsigned value
)
238 return Identifier(globalData
, globalData
->numericStrings
.add(value
));
241 Identifier
Identifier::from(JSGlobalData
* globalData
, int value
)
243 return Identifier(globalData
, globalData
->numericStrings
.add(value
));
246 Identifier
Identifier::from(JSGlobalData
* globalData
, double value
)
248 return Identifier(globalData
, globalData
->numericStrings
.add(value
));
253 void Identifier::checkCurrentIdentifierTable(JSGlobalData
* globalData
)
255 // Check the identifier table accessible through the threadspecific matches the
256 // globalData's identifier table.
257 ASSERT_UNUSED(globalData
, globalData
->identifierTable
== wtfThreadData().currentIdentifierTable());
260 void Identifier::checkCurrentIdentifierTable(ExecState
* exec
)
262 checkCurrentIdentifierTable(&exec
->globalData());
267 // These only exists so that our exports are the same for debug and release builds.
268 // This would be an ASSERT_NOT_REACHED(), but we're in NDEBUG only code here!
269 NO_RETURN_DUE_TO_CRASH
void Identifier::checkCurrentIdentifierTable(JSGlobalData
*) { CRASH(); }
270 NO_RETURN_DUE_TO_CRASH
void Identifier::checkCurrentIdentifierTable(ExecState
*) { CRASH(); }