]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/JSCell.cpp
2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
3 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
4 * Copyright (C) 2003, 2007, 2008 Apple Inc. All rights reserved.
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.
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.
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.
26 #include "JSFunction.h"
29 #include <wtf/MathExtras.h>
33 #if defined NAN && defined INFINITY
35 extern const double NaN
= NAN
;
36 extern const double Inf
= INFINITY
;
38 #else // !(defined NAN && defined INFINITY)
40 // The trick is to define the NaN and Inf globals with a different type than the declaration.
41 // This trick works because the mangled name of the globals does not include the type, although
42 // I'm not sure that's guaranteed. There could be alignment issues with this, since arrays of
43 // characters don't necessarily need the same alignment doubles do, but for now it seems to work.
44 // It would be good to figure out a 100% clean way that still avoids code that runs at init time.
46 // Note, we have to use union to ensure alignment. Otherwise, NaN_Bytes can start anywhere,
47 // while NaN_double has to be 4-byte aligned for 32-bits.
48 // With -fstrict-aliasing enabled, unions are the only safe way to do type masquerading.
52 unsigned char NaN_Bytes
[8];
53 unsigned char Inf_Bytes
[8];
62 #if PLATFORM(BIG_ENDIAN)
63 { 0x7f, 0xf8, 0, 0, 0, 0, 0, 0 },
64 { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 }
65 #elif PLATFORM(MIDDLE_ENDIAN)
66 { 0, 0, 0xf8, 0x7f, 0, 0, 0, 0 },
67 { 0, 0, 0xf0, 0x7f, 0, 0, 0, 0 }
69 { 0, 0, 0, 0, 0, 0, 0xf8, 0x7f },
70 { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f }
74 extern const double NaN
= NaNInf
.doubles
.NaN_Double
;
75 extern const double Inf
= NaNInf
.doubles
.Inf_Double
;
77 #endif // !(defined NAN && defined INFINITY)
79 void* JSCell::operator new(size_t size
, ExecState
* exec
)
81 #ifdef JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE
82 return exec
->heap()->inlineAllocate(size
);
84 return exec
->heap()->allocate(size
);
88 bool JSCell::getUInt32(uint32_t&) const
93 bool JSCell::getString(UString
&stringValue
) const
97 stringValue
= static_cast<const JSString
*>(this)->value();
101 UString
JSCell::getString() const
103 return isString() ? static_cast<const JSString
*>(this)->value() : UString();
106 JSObject
* JSCell::getObject()
108 return isObject() ? static_cast<JSObject
*>(this) : 0;
111 const JSObject
* JSCell::getObject() const
113 return isObject() ? static_cast<const JSObject
*>(this) : 0;
116 CallType
JSCell::getCallData(CallData
&)
121 ConstructType
JSCell::getConstructData(ConstructData
&)
123 return ConstructTypeNone
;
126 bool JSCell::getOwnPropertySlot(ExecState
* exec
, const Identifier
& identifier
, PropertySlot
& slot
)
128 // This is not a general purpose implementation of getOwnPropertySlot.
129 // It should only be called by JSValue::get.
130 // It calls getPropertySlot, not getOwnPropertySlot.
131 JSObject
* object
= toObject(exec
);
132 slot
.setBase(object
);
133 if (!object
->getPropertySlot(exec
, identifier
, slot
))
138 bool JSCell::getOwnPropertySlot(ExecState
* exec
, unsigned identifier
, PropertySlot
& slot
)
140 // This is not a general purpose implementation of getOwnPropertySlot.
141 // It should only be called by JSValue::get.
142 // It calls getPropertySlot, not getOwnPropertySlot.
143 JSObject
* object
= toObject(exec
);
144 slot
.setBase(object
);
145 if (!object
->getPropertySlot(exec
, identifier
, slot
))
150 void JSCell::put(ExecState
* exec
, const Identifier
& identifier
, JSValue value
, PutPropertySlot
& slot
)
152 toObject(exec
)->put(exec
, identifier
, value
, slot
);
155 void JSCell::put(ExecState
* exec
, unsigned identifier
, JSValue value
)
157 toObject(exec
)->put(exec
, identifier
, value
);
160 bool JSCell::deleteProperty(ExecState
* exec
, const Identifier
& identifier
)
162 return toObject(exec
)->deleteProperty(exec
, identifier
);
165 bool JSCell::deleteProperty(ExecState
* exec
, unsigned identifier
)
167 return toObject(exec
)->deleteProperty(exec
, identifier
);
170 JSObject
* JSCell::toThisObject(ExecState
* exec
) const
172 return toObject(exec
);
175 UString
JSCell::toThisString(ExecState
* exec
) const
177 return toThisObject(exec
)->toString(exec
);
180 JSString
* JSCell::toThisJSString(ExecState
* exec
)
182 return jsString(exec
, toThisString(exec
));
185 const ClassInfo
* JSCell::classInfo() const
190 JSValue
JSCell::getJSNumber()
195 bool JSCell::isGetterSetter() const