]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/Operations.h
c6a7e7a303f6801f69ce9fa3590e5c12fcebf74c
2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2002, 2005, 2006, 2007, 2008, 2009 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 Library 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 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
25 #include "JSImmediate.h"
26 #include "JSNumberCell.h"
32 inline bool JSValuePtr::equal(ExecState
* exec
, JSValuePtr v1
, JSValuePtr v2
)
34 if (JSImmediate::areBothImmediateIntegerNumbers(v1
, v2
))
37 return equalSlowCase(exec
, v1
, v2
);
40 ALWAYS_INLINE
bool JSValuePtr::equalSlowCaseInline(ExecState
* exec
, JSValuePtr v1
, JSValuePtr v2
)
42 ASSERT(!JSImmediate::areBothImmediateIntegerNumbers(v1
, v2
));
45 if (v1
.isNumber() && v2
.isNumber())
46 return v1
.uncheckedGetNumber() == v2
.uncheckedGetNumber();
48 bool s1
= v1
.isString();
49 bool s2
= v2
.isString();
51 return asString(v1
)->value() == asString(v2
)->value();
53 if (v1
.isUndefinedOrNull()) {
54 if (v2
.isUndefinedOrNull())
56 if (JSImmediate::isImmediate(v2
))
58 return v2
.asCell()->structure()->typeInfo().masqueradesAsUndefined();
61 if (v2
.isUndefinedOrNull()) {
62 if (JSImmediate::isImmediate(v1
))
64 return v1
.asCell()->structure()->typeInfo().masqueradesAsUndefined();
70 JSValuePtr p1
= v1
.toPrimitive(exec
);
71 if (exec
->hadException())
74 if (JSImmediate::areBothImmediateIntegerNumbers(v1
, v2
))
80 JSValuePtr p2
= v2
.toPrimitive(exec
);
81 if (exec
->hadException())
84 if (JSImmediate::areBothImmediateIntegerNumbers(v1
, v2
))
90 double d1
= v1
.toNumber(exec
);
91 double d2
= v2
.toNumber(exec
);
97 return static_cast<double>(v1
.getBoolean()) == v2
.uncheckedGetNumber();
98 } else if (v2
.isBoolean()) {
100 return v1
.uncheckedGetNumber() == static_cast<double>(v2
.getBoolean());
108 inline bool JSValuePtr::strictEqual(JSValuePtr v1
, JSValuePtr v2
)
110 if (JSImmediate::areBothImmediateIntegerNumbers(v1
, v2
))
113 if (v1
.isNumber() && v2
.isNumber())
114 return v1
.uncheckedGetNumber() == v2
.uncheckedGetNumber();
116 if (JSImmediate::isEitherImmediate(v1
, v2
))
119 return strictEqualSlowCase(v1
, v2
);
122 ALWAYS_INLINE
bool JSValuePtr::strictEqualSlowCaseInline(JSValuePtr v1
, JSValuePtr v2
)
124 ASSERT(!JSImmediate::isEitherImmediate(v1
, v2
));
126 if (v1
.asCell()->isString() && v2
.asCell()->isString())
127 return asString(v1
)->value() == asString(v2
)->value();
132 JSValuePtr
throwOutOfMemoryError(ExecState
*);