2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2008 Apple Inc. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef ObjectConstructor_h
22 #define ObjectConstructor_h
24 #include "InternalFunction.h"
25 #include "JSGlobalObject.h"
26 #include "ObjectPrototype.h"
30 EncodedJSValue JSC_HOST_CALL
objectConstructorGetOwnPropertyDescriptor(ExecState
*);
31 EncodedJSValue JSC_HOST_CALL
objectConstructorGetOwnPropertySymbols(ExecState
*);
32 EncodedJSValue JSC_HOST_CALL
objectConstructorKeys(ExecState
*);
34 class ObjectPrototype
;
36 class ObjectConstructor
: public InternalFunction
{
38 typedef InternalFunction Base
;
39 static const unsigned StructureFlags
= Base::StructureFlags
| OverridesGetOwnPropertySlot
;
41 static ObjectConstructor
* create(VM
& vm
, JSGlobalObject
* globalObject
, Structure
* structure
, ObjectPrototype
* objectPrototype
)
43 ObjectConstructor
* constructor
= new (NotNull
, allocateCell
<ObjectConstructor
>(vm
.heap
)) ObjectConstructor(vm
, structure
);
44 constructor
->finishCreation(vm
, globalObject
, objectPrototype
);
48 static bool getOwnPropertySlot(JSObject
*, ExecState
*, PropertyName
, PropertySlot
&);
52 static Structure
* createStructure(VM
& vm
, JSGlobalObject
* globalObject
, JSValue prototype
)
54 return Structure::create(vm
, globalObject
, prototype
, TypeInfo(ObjectType
, StructureFlags
), info());
57 JSFunction
* addDefineProperty(ExecState
*, JSGlobalObject
*);
60 void finishCreation(VM
&, JSGlobalObject
*, ObjectPrototype
*);
63 ObjectConstructor(VM
&, Structure
*);
64 static ConstructType
getConstructData(JSCell
*, ConstructData
&);
65 static CallType
getCallData(JSCell
*, CallData
&);
68 inline JSObject
* constructEmptyObject(ExecState
* exec
, Structure
* structure
)
70 return JSFinalObject::create(exec
, structure
);
73 inline JSObject
* constructEmptyObject(ExecState
* exec
, JSObject
* prototype
, unsigned inlineCapacity
)
75 JSGlobalObject
* globalObject
= exec
->lexicalGlobalObject();
76 PrototypeMap
& prototypeMap
= globalObject
->vm().prototypeMap
;
77 Structure
* structure
= prototypeMap
.emptyObjectStructureForPrototype(
78 prototype
, inlineCapacity
);
79 return constructEmptyObject(exec
, structure
);
82 inline JSObject
* constructEmptyObject(ExecState
* exec
, JSObject
* prototype
)
84 return constructEmptyObject(exec
, prototype
, JSFinalObject::defaultInlineCapacity());
87 inline JSObject
* constructEmptyObject(ExecState
* exec
)
89 return constructEmptyObject(exec
, exec
->lexicalGlobalObject()->objectPrototype());
92 JSObject
* objectConstructorFreeze(ExecState
*, JSObject
*);
96 #endif // ObjectConstructor_h