]>
Commit | Line | Data |
---|---|---|
9dae56ea A |
1 | /* |
2 | * Copyright (C) 1999-2001 Harri Porten (porten@kde.org) | |
3 | * Copyright (C) 2001 Peter Kelly (pmk@post.com) | |
4 | * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Library General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Library General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Library General Public License | |
17 | * along with this library; see the file COPYING.LIB. If not, write to | |
18 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
19 | * Boston, MA 02110-1301, USA. | |
20 | * | |
21 | */ | |
22 | ||
23 | #ifndef ClassInfo_h | |
24 | #define ClassInfo_h | |
25 | ||
26 | #include "CallFrame.h" | |
6fe7ccc8 | 27 | #include "ConstructData.h" |
81345200 | 28 | #include "CopyToken.h" |
6fe7ccc8 | 29 | #include "JSCell.h" |
9dae56ea A |
30 | |
31 | namespace JSC { | |
32 | ||
81345200 | 33 | class JSArrayBufferView; |
93a37866 | 34 | struct HashTable; |
9dae56ea | 35 | |
93a37866 A |
36 | struct MethodTable { |
37 | typedef void (*DestroyFunctionPtr)(JSCell*); | |
38 | DestroyFunctionPtr destroy; | |
6fe7ccc8 | 39 | |
93a37866 A |
40 | typedef void (*VisitChildrenFunctionPtr)(JSCell*, SlotVisitor&); |
41 | VisitChildrenFunctionPtr visitChildren; | |
6fe7ccc8 | 42 | |
81345200 | 43 | typedef void (*CopyBackingStoreFunctionPtr)(JSCell*, CopyVisitor&, CopyToken); |
93a37866 | 44 | CopyBackingStoreFunctionPtr copyBackingStore; |
6fe7ccc8 | 45 | |
93a37866 A |
46 | typedef CallType (*GetCallDataFunctionPtr)(JSCell*, CallData&); |
47 | GetCallDataFunctionPtr getCallData; | |
6fe7ccc8 | 48 | |
93a37866 A |
49 | typedef ConstructType (*GetConstructDataFunctionPtr)(JSCell*, ConstructData&); |
50 | GetConstructDataFunctionPtr getConstructData; | |
6fe7ccc8 | 51 | |
93a37866 A |
52 | typedef void (*PutFunctionPtr)(JSCell*, ExecState*, PropertyName propertyName, JSValue, PutPropertySlot&); |
53 | PutFunctionPtr put; | |
6fe7ccc8 | 54 | |
93a37866 A |
55 | typedef void (*PutByIndexFunctionPtr)(JSCell*, ExecState*, unsigned propertyName, JSValue, bool shouldThrow); |
56 | PutByIndexFunctionPtr putByIndex; | |
6fe7ccc8 | 57 | |
93a37866 A |
58 | typedef bool (*DeletePropertyFunctionPtr)(JSCell*, ExecState*, PropertyName); |
59 | DeletePropertyFunctionPtr deleteProperty; | |
6fe7ccc8 | 60 | |
93a37866 A |
61 | typedef bool (*DeletePropertyByIndexFunctionPtr)(JSCell*, ExecState*, unsigned); |
62 | DeletePropertyByIndexFunctionPtr deletePropertyByIndex; | |
6fe7ccc8 | 63 | |
81345200 | 64 | typedef bool (*GetOwnPropertySlotFunctionPtr)(JSObject*, ExecState*, PropertyName, PropertySlot&); |
93a37866 | 65 | GetOwnPropertySlotFunctionPtr getOwnPropertySlot; |
6fe7ccc8 | 66 | |
81345200 | 67 | typedef bool (*GetOwnPropertySlotByIndexFunctionPtr)(JSObject*, ExecState*, unsigned, PropertySlot&); |
93a37866 | 68 | GetOwnPropertySlotByIndexFunctionPtr getOwnPropertySlotByIndex; |
6fe7ccc8 | 69 | |
81345200 A |
70 | typedef JSValue (*ToThisFunctionPtr)(JSCell*, ExecState*, ECMAMode); |
71 | ToThisFunctionPtr toThis; | |
6fe7ccc8 | 72 | |
93a37866 A |
73 | typedef JSValue (*DefaultValueFunctionPtr)(const JSObject*, ExecState*, PreferredPrimitiveType); |
74 | DefaultValueFunctionPtr defaultValue; | |
6fe7ccc8 | 75 | |
93a37866 A |
76 | typedef void (*GetOwnPropertyNamesFunctionPtr)(JSObject*, ExecState*, PropertyNameArray&, EnumerationMode); |
77 | GetOwnPropertyNamesFunctionPtr getOwnPropertyNames; | |
6fe7ccc8 | 78 | |
93a37866 A |
79 | typedef void (*GetOwnNonIndexPropertyNamesFunctionPtr)(JSObject*, ExecState*, PropertyNameArray&, EnumerationMode); |
80 | GetOwnNonIndexPropertyNamesFunctionPtr getOwnNonIndexPropertyNames; | |
6fe7ccc8 | 81 | |
93a37866 A |
82 | typedef void (*GetPropertyNamesFunctionPtr)(JSObject*, ExecState*, PropertyNameArray&, EnumerationMode); |
83 | GetPropertyNamesFunctionPtr getPropertyNames; | |
6fe7ccc8 | 84 | |
ed1e77d3 A |
85 | typedef uint32_t (*GetEnumerableLengthFunctionPtr)(ExecState*, JSObject*); |
86 | GetEnumerableLengthFunctionPtr getEnumerableLength; | |
87 | ||
88 | GetPropertyNamesFunctionPtr getStructurePropertyNames; | |
89 | GetPropertyNamesFunctionPtr getGenericPropertyNames; | |
90 | ||
93a37866 A |
91 | typedef String (*ClassNameFunctionPtr)(const JSObject*); |
92 | ClassNameFunctionPtr className; | |
6fe7ccc8 | 93 | |
93a37866 A |
94 | typedef bool (*CustomHasInstanceFunctionPtr)(JSObject*, ExecState*, JSValue); |
95 | CustomHasInstanceFunctionPtr customHasInstance; | |
6fe7ccc8 | 96 | |
81345200 | 97 | typedef bool (*DefineOwnPropertyFunctionPtr)(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool); |
93a37866 A |
98 | DefineOwnPropertyFunctionPtr defineOwnProperty; |
99 | ||
81345200 A |
100 | typedef ArrayBuffer* (*SlowDownAndWasteMemory)(JSArrayBufferView*); |
101 | SlowDownAndWasteMemory slowDownAndWasteMemory; | |
102 | ||
103 | typedef PassRefPtr<ArrayBufferView> (*GetTypedArrayImpl)(JSArrayBufferView*); | |
104 | GetTypedArrayImpl getTypedArrayImpl; | |
105 | ||
106 | typedef void (*DumpToStreamFunctionPtr)(const JSCell*, PrintStream&); | |
107 | DumpToStreamFunctionPtr dumpToStream; | |
93a37866 | 108 | }; |
6fe7ccc8 A |
109 | |
110 | #define CREATE_MEMBER_CHECKER(member) \ | |
93a37866 A |
111 | template <typename T> \ |
112 | struct MemberCheck##member { \ | |
113 | struct Fallback { \ | |
114 | void member(...); \ | |
115 | }; \ | |
116 | struct Derived : T, Fallback { }; \ | |
117 | template <typename U, U> struct Check; \ | |
118 | typedef char Yes[2]; \ | |
119 | typedef char No[1]; \ | |
120 | template <typename U> \ | |
121 | static No &func(Check<void (Fallback::*)(...), &U::member>*); \ | |
122 | template <typename U> \ | |
123 | static Yes &func(...); \ | |
124 | enum { has = sizeof(func<Derived>(0)) == sizeof(Yes) }; \ | |
125 | } | |
6fe7ccc8 A |
126 | |
127 | #define HAS_MEMBER_NAMED(klass, name) (MemberCheck##name<klass>::has) | |
128 | ||
129 | #define CREATE_METHOD_TABLE(ClassName) { \ | |
130 | &ClassName::destroy, \ | |
131 | &ClassName::visitChildren, \ | |
93a37866 | 132 | &ClassName::copyBackingStore, \ |
6fe7ccc8 A |
133 | &ClassName::getCallData, \ |
134 | &ClassName::getConstructData, \ | |
135 | &ClassName::put, \ | |
136 | &ClassName::putByIndex, \ | |
137 | &ClassName::deleteProperty, \ | |
138 | &ClassName::deletePropertyByIndex, \ | |
139 | &ClassName::getOwnPropertySlot, \ | |
140 | &ClassName::getOwnPropertySlotByIndex, \ | |
81345200 | 141 | &ClassName::toThis, \ |
6fe7ccc8 A |
142 | &ClassName::defaultValue, \ |
143 | &ClassName::getOwnPropertyNames, \ | |
93a37866 | 144 | &ClassName::getOwnNonIndexPropertyNames, \ |
6fe7ccc8 | 145 | &ClassName::getPropertyNames, \ |
ed1e77d3 A |
146 | &ClassName::getEnumerableLength, \ |
147 | &ClassName::getStructurePropertyNames, \ | |
148 | &ClassName::getGenericPropertyNames, \ | |
6fe7ccc8 | 149 | &ClassName::className, \ |
93a37866 | 150 | &ClassName::customHasInstance, \ |
6fe7ccc8 | 151 | &ClassName::defineOwnProperty, \ |
81345200 A |
152 | &ClassName::slowDownAndWasteMemory, \ |
153 | &ClassName::getTypedArrayImpl, \ | |
154 | &ClassName::dumpToStream \ | |
6fe7ccc8 A |
155 | }, \ |
156 | ClassName::TypedArrayStorageType | |
157 | ||
93a37866 | 158 | struct ClassInfo { |
81345200 | 159 | // A string denoting the class name. Example: "Window". |
93a37866 A |
160 | const char* className; |
161 | ||
81345200 A |
162 | // Pointer to the class information of the base class. |
163 | // nullptrif there is none. | |
93a37866 | 164 | const ClassInfo* parentClass; |
81345200 | 165 | |
93a37866 A |
166 | bool isSubClassOf(const ClassInfo* other) const |
167 | { | |
168 | for (const ClassInfo* ci = this; ci; ci = ci->parentClass) { | |
169 | if (ci == other) | |
170 | return true; | |
6fe7ccc8 | 171 | } |
93a37866 A |
172 | return false; |
173 | } | |
174 | ||
175 | bool hasStaticProperties() const | |
176 | { | |
177 | for (const ClassInfo* ci = this; ci; ci = ci->parentClass) { | |
ed1e77d3 | 178 | if (ci->staticPropHashTable) |
93a37866 | 179 | return true; |
6fe7ccc8 | 180 | } |
93a37866 A |
181 | return false; |
182 | } | |
9dae56ea | 183 | |
ed1e77d3 | 184 | bool hasStaticSetterOrReadonlyProperties() const; |
81345200 | 185 | |
93a37866 | 186 | const HashTable* staticPropHashTable; |
6fe7ccc8 | 187 | |
93a37866 | 188 | MethodTable methodTable; |
6fe7ccc8 | 189 | |
93a37866 A |
190 | TypedArrayType typedArrayStorageType; |
191 | }; | |
9dae56ea A |
192 | |
193 | } // namespace JSC | |
194 | ||
195 | #endif // ClassInfo_h |