2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <wtf/AlwaysInline.h>
35 #include <wtf/HashTraits.h>
39 static ALWAYS_INLINE
int missingSymbolMarker() { return std::numeric_limits
<int>::max(); }
41 // The bit twiddling in this class assumes that every register index is a
42 // reasonably small positive or negative number, and therefore has its high
43 // four bits all set or all unset.
45 struct SymbolTableEntry
{
51 SymbolTableEntry(int index
)
53 ASSERT(isValidIndex(index
));
54 pack(index
, false, false);
57 SymbolTableEntry(int index
, unsigned attributes
)
59 ASSERT(isValidIndex(index
));
60 pack(index
, attributes
& ReadOnly
, attributes
& DontEnum
);
70 return m_bits
>> FlagBits
;
73 unsigned getAttributes() const
75 unsigned attributes
= 0;
76 if (m_bits
& ReadOnlyFlag
)
77 attributes
|= ReadOnly
;
78 if (m_bits
& DontEnumFlag
)
79 attributes
|= DontEnum
;
83 void setAttributes(unsigned attributes
)
85 pack(getIndex(), attributes
& ReadOnly
, attributes
& DontEnum
);
88 bool isReadOnly() const
90 return m_bits
& ReadOnlyFlag
;
94 static const unsigned ReadOnlyFlag
= 0x1;
95 static const unsigned DontEnumFlag
= 0x2;
96 static const unsigned NotNullFlag
= 0x4;
97 static const unsigned FlagBits
= 3;
99 void pack(int index
, bool readOnly
, bool dontEnum
)
101 m_bits
= (index
<< FlagBits
) | NotNullFlag
;
103 m_bits
|= ReadOnlyFlag
;
105 m_bits
|= DontEnumFlag
;
108 bool isValidIndex(int index
)
110 return ((index
<< FlagBits
) >> FlagBits
) == index
;
116 struct SymbolTableIndexHashTraits
: HashTraits
<SymbolTableEntry
> {
117 static const bool emptyValueIsZero
= true;
118 static const bool needsDestruction
= false;
121 typedef HashMap
<RefPtr
<StringImpl
>, SymbolTableEntry
, IdentifierRepHash
, HashTraits
<RefPtr
<StringImpl
> >, SymbolTableIndexHashTraits
> SymbolTable
;
123 class SharedSymbolTable
: public SymbolTable
, public RefCounted
<SharedSymbolTable
> {
124 WTF_MAKE_FAST_ALLOCATED
;
126 static PassRefPtr
<SharedSymbolTable
> create() { return adoptRef(new SharedSymbolTable
); }
128 SharedSymbolTable() { turnOffVerifier(); }
133 #endif // SymbolTable_h