]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/JSCell.cpp
d449deb368b82a24f6a5b55176e8aaf8d012818d
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::getTruncatedInt32(int32_t&) const
98 bool JSCell::getTruncatedUInt32(uint32_t&) const
103 bool JSCell::getString(UString
&stringValue
) const
107 stringValue
= static_cast<const JSString
*>(this)->value();
111 UString
JSCell::getString() const
113 return isString() ? static_cast<const JSString
*>(this)->value() : UString();
116 JSObject
* JSCell::getObject()
118 return isObject() ? static_cast<JSObject
*>(this) : 0;
121 const JSObject
* JSCell::getObject() const
123 return isObject() ? static_cast<const JSObject
*>(this) : 0;
126 CallType
JSCell::getCallData(CallData
&)
131 ConstructType
JSCell::getConstructData(ConstructData
&)
133 return ConstructTypeNone
;
136 bool JSCell::getOwnPropertySlot(ExecState
* exec
, const Identifier
& identifier
, PropertySlot
& slot
)
138 // This is not a general purpose implementation of getOwnPropertySlot.
139 // It should only be called by JSValue::get.
140 // It calls getPropertySlot, not getOwnPropertySlot.
141 JSObject
* object
= toObject(exec
);
142 slot
.setBase(object
);
143 if (!object
->getPropertySlot(exec
, identifier
, slot
))
148 bool JSCell::getOwnPropertySlot(ExecState
* exec
, unsigned identifier
, PropertySlot
& slot
)
150 // This is not a general purpose implementation of getOwnPropertySlot.
151 // It should only be called by JSValue::get.
152 // It calls getPropertySlot, not getOwnPropertySlot.
153 JSObject
* object
= toObject(exec
);
154 slot
.setBase(object
);
155 if (!object
->getPropertySlot(exec
, identifier
, slot
))
160 void JSCell::put(ExecState
* exec
, const Identifier
& identifier
, JSValuePtr value
, PutPropertySlot
& slot
)
162 toObject(exec
)->put(exec
, identifier
, value
, slot
);
165 void JSCell::put(ExecState
* exec
, unsigned identifier
, JSValuePtr value
)
167 toObject(exec
)->put(exec
, identifier
, value
);
170 bool JSCell::deleteProperty(ExecState
* exec
, const Identifier
& identifier
)
172 return toObject(exec
)->deleteProperty(exec
, identifier
);
175 bool JSCell::deleteProperty(ExecState
* exec
, unsigned identifier
)
177 return toObject(exec
)->deleteProperty(exec
, identifier
);
180 JSObject
* JSCell::toThisObject(ExecState
* exec
) const
182 return toObject(exec
);
185 UString
JSCell::toThisString(ExecState
* exec
) const
187 return toThisObject(exec
)->toString(exec
);
190 JSString
* JSCell::toThisJSString(ExecState
* exec
)
192 return jsString(exec
, toThisString(exec
));
195 const ClassInfo
* JSCell::classInfo() const
200 JSValuePtr
JSCell::getJSNumber()
205 bool JSCell::isGetterSetter() const