]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/Lookup.cpp
cc1981257fed01b34fd80ca4df527e090ec9e086
2 * Copyright (C) 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 Lesser 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 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "JSFunction.h"
24 #include "PrototypeFunction.h"
28 void HashTable::createTable(JSGlobalData
* globalData
) const
31 int linkIndex
= compactHashSizeMask
+ 1;
32 HashEntry
* entries
= new HashEntry
[compactSize
];
33 for (int i
= 0; i
< compactSize
; ++i
)
35 for (int i
= 0; values
[i
].key
; ++i
) {
36 UString::Rep
* identifier
= Identifier::add(globalData
, values
[i
].key
).releaseRef();
37 int hashIndex
= identifier
->existingHash() & compactHashSizeMask
;
38 HashEntry
* entry
= &entries
[hashIndex
];
41 while (entry
->next()) {
42 entry
= entry
->next();
44 ASSERT(linkIndex
< compactSize
);
45 entry
->setNext(&entries
[linkIndex
++]);
46 entry
= entry
->next();
49 entry
->initialize(identifier
, values
[i
].attributes
, values
[i
].value1
, values
[i
].value2
58 void HashTable::deleteTable() const
61 int max
= compactSize
;
62 for (int i
= 0; i
!= max
; ++i
) {
63 if (UString::Rep
* key
= table
[i
].key())
71 void setUpStaticFunctionSlot(ExecState
* exec
, const HashEntry
* entry
, JSObject
* thisObj
, const Identifier
& propertyName
, PropertySlot
& slot
)
73 ASSERT(entry
->attributes() & Function
);
74 JSValue
* location
= thisObj
->getDirectLocation(propertyName
);
77 InternalFunction
* function
;
78 #if ENABLE(JIT) && ENABLE(JIT_OPTIMIZE_NATIVE_CALL)
79 if (entry
->generator())
80 function
= new (exec
) NativeFunctionWrapper(exec
, exec
->lexicalGlobalObject()->prototypeFunctionStructure(), entry
->functionLength(), propertyName
, exec
->globalData().getThunk(entry
->generator()), entry
->function());
83 function
= new (exec
) NativeFunctionWrapper(exec
, exec
->lexicalGlobalObject()->prototypeFunctionStructure(), entry
->functionLength(), propertyName
, entry
->function());
85 thisObj
->putDirectFunction(propertyName
, function
, entry
->attributes());
86 location
= thisObj
->getDirectLocation(propertyName
);
89 slot
.setValueSlot(thisObj
, location
, thisObj
->offsetForLocation(location
));