blob: 4b600df7360b3431f9a3834937a022e35d1a4648 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28// This files contains runtime support implemented in JavaScript.
29
30// CAUTION: Some of the functions specified in this file are called
31// directly from compiled code. These are the functions with names in
32// ALL CAPS. The compiled code passes the first argument in 'this' and
33// it does not push the function onto the stack. This means that you
34// cannot use contexts in all these functions.
35
36
37/* -----------------------------------
38 - - - C o m p a r i s o n - - -
39 -----------------------------------
40*/
41
42// The following const declarations are shared with other native JS files.
43// They are all declared at this one spot to avoid const redeclaration errors.
44const $Object = global.Object;
45const $Array = global.Array;
46const $String = global.String;
47const $Number = global.Number;
48const $Function = global.Function;
49const $Boolean = global.Boolean;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000050const $NaN = 0/0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000051
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000052// ECMA-262 Section 11.9.3.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000053function EQUALS(y) {
ager@chromium.org7c537e22008-10-16 08:43:32 +000054 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000055 var x = this;
56
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000057 while (true) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000058 if (IS_NUMBER(x)) {
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000059 while (true) {
60 if (IS_NUMBER(y)) return %NumberEquals(x, y);
61 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
62 if (!IS_SPEC_OBJECT(y)) {
63 // String or boolean.
64 return %NumberEquals(x, %ToNumber(y));
65 }
66 y = %ToPrimitive(y, NO_HINT);
ager@chromium.org9258b6b2008-09-11 09:11:10 +000067 }
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000068 } else if (IS_STRING(x)) {
69 while (true) {
70 if (IS_STRING(y)) return %StringEquals(x, y);
71 if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y);
72 if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
73 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
74 y = %ToPrimitive(y, NO_HINT);
75 }
76 } else if (IS_BOOLEAN(x)) {
77 if (IS_BOOLEAN(y)) return %_ObjectEquals(x, y) ? 0 : 1;
78 if (IS_NULL_OR_UNDEFINED(y)) return 1;
79 if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y);
80 if (IS_STRING(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
81 // y is object.
82 x = %ToNumber(x);
83 y = %ToPrimitive(y, NO_HINT);
84 } else if (IS_NULL_OR_UNDEFINED(x)) {
85 return IS_NULL_OR_UNDEFINED(y) ? 0 : 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000086 } else {
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000087 // x is an object.
ricow@chromium.org4980dff2010-07-19 08:33:45 +000088 if (IS_SPEC_OBJECT(y)) {
ager@chromium.org9258b6b2008-09-11 09:11:10 +000089 return %_ObjectEquals(x, y) ? 0 : 1;
90 }
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000091 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
92 if (IS_BOOLEAN(y)) y = %ToNumber(y);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000093 x = %ToPrimitive(x, NO_HINT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094 }
95 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000096}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000097
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000098// ECMA-262, section 11.9.4, page 56.
99function STRICT_EQUALS(x) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000100 if (IS_STRING(this)) {
101 if (!IS_STRING(x)) return 1; // not equal
102 return %StringEquals(this, x);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000103 }
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000104
ager@chromium.org7c537e22008-10-16 08:43:32 +0000105 if (IS_NUMBER(this)) {
106 if (!IS_NUMBER(x)) return 1; // not equal
107 return %NumberEquals(this, x);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000108 }
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000109
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000110 // If anything else gets here, we just do simple identity check.
111 // Objects (including functions), null, undefined and booleans were
112 // checked in the CompareStub, so there should be nothing left.
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000113 return %_ObjectEquals(this, x) ? 0 : 1;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000114}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000115
116
117// ECMA-262, section 11.8.5, page 53. The 'ncr' parameter is used as
118// the result when either (or both) the operands are NaN.
119function COMPARE(x, ncr) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000120 var left;
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000121 var right;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000122 // Fast cases for string, numbers and undefined compares.
123 if (IS_STRING(this)) {
124 if (IS_STRING(x)) return %_StringCompare(this, x);
125 if (IS_UNDEFINED(x)) return ncr;
126 left = this;
127 } else if (IS_NUMBER(this)) {
128 if (IS_NUMBER(x)) return %NumberCompare(this, x, ncr);
129 if (IS_UNDEFINED(x)) return ncr;
130 left = this;
131 } else if (IS_UNDEFINED(this)) {
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000132 if (!IS_UNDEFINED(x)) {
133 %ToPrimitive(x, NUMBER_HINT);
134 }
135 return ncr;
136 } else if (IS_UNDEFINED(x)) {
137 %ToPrimitive(this, NUMBER_HINT);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000138 return ncr;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000139 } else {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000140 left = %ToPrimitive(this, NUMBER_HINT);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000141 }
142
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000143 right = %ToPrimitive(x, NUMBER_HINT);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000144 if (IS_STRING(left) && IS_STRING(right)) {
145 return %_StringCompare(left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146 } else {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000147 var left_number = %ToNumber(left);
148 var right_number = %ToNumber(right);
149 if (NUMBER_IS_NAN(left_number) || NUMBER_IS_NAN(right_number)) return ncr;
150 return %NumberCompare(left_number, right_number, ncr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000151 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000152}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000153
154
155
156/* -----------------------------------
157 - - - A r i t h m e t i c - - -
158 -----------------------------------
159*/
160
161// ECMA-262, section 11.6.1, page 50.
162function ADD(x) {
163 // Fast case: Check for number operands and do the addition.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000164 if (IS_NUMBER(this) && IS_NUMBER(x)) return %NumberAdd(this, x);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000165 if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000166
ager@chromium.org7c537e22008-10-16 08:43:32 +0000167 // Default implementation.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000168 var a = %ToPrimitive(this, NO_HINT);
169 var b = %ToPrimitive(x, NO_HINT);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000170
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000171 if (IS_STRING(a)) {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000172 return %_StringAdd(a, %ToString(b));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000173 } else if (IS_STRING(b)) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000174 return %_StringAdd(%NonStringToString(a), b);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000175 } else {
176 return %NumberAdd(%ToNumber(a), %ToNumber(b));
177 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000178}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000179
180
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000181// Left operand (this) is already a string.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000182function STRING_ADD_LEFT(y) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000183 if (!IS_STRING(y)) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000184 if (IS_STRING_WRAPPER(y) && %_IsStringWrapperSafeForDefaultValueOf(y)) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000185 y = %_ValueOf(y);
186 } else {
187 y = IS_NUMBER(y)
ager@chromium.org5c838252010-02-19 08:53:10 +0000188 ? %_NumberToString(y)
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000189 : %ToString(%ToPrimitive(y, NO_HINT));
190 }
191 }
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000192 return %_StringAdd(this, y);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000193}
194
195
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000196// Right operand (y) is already a string.
197function STRING_ADD_RIGHT(y) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000198 var x = this;
199 if (!IS_STRING(x)) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000200 if (IS_STRING_WRAPPER(x) && %_IsStringWrapperSafeForDefaultValueOf(x)) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000201 x = %_ValueOf(x);
202 } else {
203 x = IS_NUMBER(x)
ager@chromium.org5c838252010-02-19 08:53:10 +0000204 ? %_NumberToString(x)
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000205 : %ToString(%ToPrimitive(x, NO_HINT));
206 }
207 }
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000208 return %_StringAdd(x, y);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000209}
210
211
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000212// ECMA-262, section 11.6.2, page 50.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000213function SUB(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000214 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
215 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000216 return %NumberSub(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000217}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000218
219
220// ECMA-262, section 11.5.1, page 48.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000221function MUL(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000222 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
223 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000224 return %NumberMul(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000225}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226
227
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000228// ECMA-262, section 11.5.2, page 49.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000229function DIV(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000230 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
231 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000232 return %NumberDiv(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000233}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000234
235
236// ECMA-262, section 11.5.3, page 49.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000237function MOD(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000238 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
239 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000240 return %NumberMod(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000241}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000242
243
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000244
245/* -------------------------------------------
246 - - - B i t o p e r a t i o n s - - -
247 -------------------------------------------
248*/
249
250// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000251function BIT_OR(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000252 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
253 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000254 return %NumberOr(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000255}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000256
257
258// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000259function BIT_AND(y) {
260 var x;
261 if (IS_NUMBER(this)) {
262 x = this;
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000263 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000264 } else {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000265 x = %NonNumberToNumber(this);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000266 // Make sure to convert the right operand to a number before
267 // bailing out in the fast case, but after converting the
268 // left operand. This ensures that valueOf methods on the right
269 // operand are always executed.
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000270 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000271 // Optimize for the case where we end up AND'ing a value
272 // that doesn't convert to a number. This is common in
273 // certain benchmarks.
274 if (NUMBER_IS_NAN(x)) return 0;
275 }
276 return %NumberAnd(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000277}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000278
279
280// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000281function BIT_XOR(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000282 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
283 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000284 return %NumberXor(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000285}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000286
287
288// ECMA-262, section 11.4.7, page 47.
289function UNARY_MINUS() {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000290 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000291 return %NumberUnaryMinus(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000292}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000293
294
295// ECMA-262, section 11.4.8, page 48.
296function BIT_NOT() {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000297 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000298 return %NumberNot(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000299}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000300
301
302// ECMA-262, section 11.7.1, page 51.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000303function SHL(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000304 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
305 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000306 return %NumberShl(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000307}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000308
309
310// ECMA-262, section 11.7.2, page 51.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000311function SAR(y) {
312 var x;
313 if (IS_NUMBER(this)) {
314 x = this;
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000315 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000316 } else {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000317 x = %NonNumberToNumber(this);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000318 // Make sure to convert the right operand to a number before
319 // bailing out in the fast case, but after converting the
320 // left operand. This ensures that valueOf methods on the right
321 // operand are always executed.
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000322 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000323 // Optimize for the case where we end up shifting a value
324 // that doesn't convert to a number. This is common in
325 // certain benchmarks.
326 if (NUMBER_IS_NAN(x)) return 0;
327 }
328 return %NumberSar(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000329}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000330
331
332// ECMA-262, section 11.7.3, page 52.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000333function SHR(y) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000334 var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
335 if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000336 return %NumberShr(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000337}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000338
339
340
341/* -----------------------------
342 - - - H e l p e r s - - -
343 -----------------------------
344*/
345
346// ECMA-262, section 11.4.1, page 46.
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +0000347function DELETE(key, strict) {
348 return %DeleteProperty(%ToObject(this), %ToString(key), strict);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000349}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000350
351
352// ECMA-262, section 11.8.7, page 54.
353function IN(x) {
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000354 if (!IS_SPEC_OBJECT(x)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000355 throw %MakeTypeError('invalid_in_operator_use', [this, x]);
356 }
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000357 return %_IsNonNegativeSmi(this) && !%IsJSProxy(x) ?
358 %HasElement(x, this) : %HasProperty(x, %ToString(this));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000359}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000360
361
ager@chromium.org7c537e22008-10-16 08:43:32 +0000362// ECMA-262, section 11.8.6, page 54. To make the implementation more
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000363// efficient, the return value should be zero if the 'this' is an
ager@chromium.org7c537e22008-10-16 08:43:32 +0000364// instance of F, and non-zero if not. This makes it possible to avoid
365// an expensive ToBoolean conversion in the generated code.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000366function INSTANCE_OF(F) {
367 var V = this;
368 if (!IS_FUNCTION(F)) {
369 throw %MakeTypeError('instanceof_function_expected', [V]);
370 }
371
372 // If V is not an object, return false.
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000373 if (!IS_SPEC_OBJECT(V)) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000374 return 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375 }
376
377 // Get the prototype of F; if it is not an object, throw an error.
378 var O = F.prototype;
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000379 if (!IS_SPEC_OBJECT(O)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000380 throw %MakeTypeError('instanceof_nonobject_proto', [O]);
381 }
382
383 // Return whether or not O is in the prototype chain of V.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000384 return %IsInPrototypeChain(O, V) ? 0 : 1;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000385}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000386
387
388// Get an array of property keys for the given object. Used in
389// for-in statements.
390function GET_KEYS() {
391 return %GetPropertyNames(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000392}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000393
394
395// Filter a given key against an object by checking if the object
396// has a property with the given key; return the key as a string if
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000397// it has. Otherwise returns 0 (smi). Used in for-in statements.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000398function FILTER_KEY(key) {
399 var string = %ToString(key);
400 if (%HasProperty(this, string)) return string;
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000401 return 0;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000402}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000403
404
405function CALL_NON_FUNCTION() {
ager@chromium.org5c838252010-02-19 08:53:10 +0000406 var delegate = %GetFunctionDelegate(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000407 if (!IS_FUNCTION(delegate)) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000408 throw %MakeTypeError('called_non_callable', [typeof this]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000409 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000410 return delegate.apply(this, arguments);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000411}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000412
413
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000414function CALL_NON_FUNCTION_AS_CONSTRUCTOR() {
ager@chromium.org5c838252010-02-19 08:53:10 +0000415 var delegate = %GetConstructorDelegate(this);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000416 if (!IS_FUNCTION(delegate)) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000417 throw %MakeTypeError('called_non_callable', [typeof this]);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000418 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000419 return delegate.apply(this, arguments);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000420}
421
422
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000423function APPLY_PREPARE(args) {
424 var length;
ager@chromium.org3e875802009-06-29 08:26:34 +0000425 // First check whether length is a positive Smi and args is an
426 // array. This is the fast case. If this fails, we do the slow case
427 // that takes care of more eventualities.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000428 if (IS_ARRAY(args)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000429 length = args.length;
430 if (%_IsSmi(length) && length >= 0 && length < 0x800000 && IS_FUNCTION(this)) {
431 return length;
432 }
433 }
434
435 length = (args == null) ? 0 : %ToUint32(args.length);
436
437 // We can handle any number of apply arguments if the stack is
438 // big enough, but sanity check the value to avoid overflow when
439 // multiplying with pointer size.
440 if (length > 0x800000) {
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000441 throw %MakeRangeError('stack_overflow', []);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000442 }
443
444 if (!IS_FUNCTION(this)) {
445 throw %MakeTypeError('apply_non_function', [ %ToString(this), typeof this ]);
446 }
447
448 // Make sure the arguments list has the right type.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000449 if (args != null && !IS_ARRAY(args) && !IS_ARGUMENTS(args)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000450 throw %MakeTypeError('apply_wrong_args', []);
451 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000452
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000453 // Return the length which is the number of arguments to copy to the
454 // stack. It is guaranteed to be a small integer at this point.
455 return length;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000456}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000457
458
459function APPLY_OVERFLOW(length) {
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000460 throw %MakeRangeError('stack_overflow', []);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000461}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000462
463
464// Convert the receiver to an object - forward to ToObject.
465function TO_OBJECT() {
466 return %ToObject(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000467}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000468
469
470// Convert the receiver to a number - forward to ToNumber.
471function TO_NUMBER() {
472 return %ToNumber(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000473}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000474
475
476// Convert the receiver to a string - forward to ToString.
477function TO_STRING() {
478 return %ToString(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000479}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000480
481
482/* -------------------------------------
483 - - - C o n v e r s i o n s - - -
484 -------------------------------------
485*/
486
487// ECMA-262, section 9.1, page 30. Use null/undefined for no hint,
488// (1) for number hint, and (2) for string hint.
489function ToPrimitive(x, hint) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000490 // Fast case check.
491 if (IS_STRING(x)) return x;
492 // Normal behavior.
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000493 if (!IS_SPEC_OBJECT(x)) return x;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000494 if (hint == NO_HINT) hint = (IS_DATE(x)) ? STRING_HINT : NUMBER_HINT;
495 return (hint == NUMBER_HINT) ? %DefaultNumber(x) : %DefaultString(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000496}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000497
498
ager@chromium.org5c838252010-02-19 08:53:10 +0000499// ECMA-262, section 9.2, page 30
500function ToBoolean(x) {
501 if (IS_BOOLEAN(x)) return x;
502 if (IS_STRING(x)) return x.length != 0;
503 if (x == null) return false;
504 if (IS_NUMBER(x)) return !((x == 0) || NUMBER_IS_NAN(x));
505 return true;
506}
507
508
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000509// ECMA-262, section 9.3, page 31.
510function ToNumber(x) {
511 if (IS_NUMBER(x)) return x;
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000512 if (IS_STRING(x)) {
513 return %_HasCachedArrayIndex(x) ? %_GetCachedArrayIndex(x)
514 : %StringToNumber(x);
515 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000516 if (IS_BOOLEAN(x)) return x ? 1 : 0;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000517 if (IS_UNDEFINED(x)) return $NaN;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000518 return (IS_NULL(x)) ? 0 : ToNumber(%DefaultNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000519}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000520
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000521function NonNumberToNumber(x) {
522 if (IS_STRING(x)) {
523 return %_HasCachedArrayIndex(x) ? %_GetCachedArrayIndex(x)
524 : %StringToNumber(x);
525 }
526 if (IS_BOOLEAN(x)) return x ? 1 : 0;
527 if (IS_UNDEFINED(x)) return $NaN;
528 return (IS_NULL(x)) ? 0 : ToNumber(%DefaultNumber(x));
529}
530
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000531
532// ECMA-262, section 9.8, page 35.
533function ToString(x) {
534 if (IS_STRING(x)) return x;
ager@chromium.org5c838252010-02-19 08:53:10 +0000535 if (IS_NUMBER(x)) return %_NumberToString(x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000536 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
537 if (IS_UNDEFINED(x)) return 'undefined';
538 return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000539}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000540
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000541function NonStringToString(x) {
ager@chromium.org357bf652010-04-12 11:30:10 +0000542 if (IS_NUMBER(x)) return %_NumberToString(x);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000543 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
544 if (IS_UNDEFINED(x)) return 'undefined';
545 return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
546}
547
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000548
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000549// ECMA-262, section 9.9, page 36.
550function ToObject(x) {
551 if (IS_STRING(x)) return new $String(x);
552 if (IS_NUMBER(x)) return new $Number(x);
553 if (IS_BOOLEAN(x)) return new $Boolean(x);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000554 if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {
555 throw %MakeTypeError('null_to_object', []);
556 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000557 return x;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000558}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000559
560
561// ECMA-262, section 9.4, page 34.
562function ToInteger(x) {
563 if (%_IsSmi(x)) return x;
564 return %NumberToInteger(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000565}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000566
567
568// ECMA-262, section 9.6, page 34.
569function ToUint32(x) {
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000570 if (%_IsSmi(x) && x >= 0) return x;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000571 return %NumberToJSUint32(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000572}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000573
574
575// ECMA-262, section 9.5, page 34
576function ToInt32(x) {
577 if (%_IsSmi(x)) return x;
578 return %NumberToJSInt32(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000579}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000580
581
ager@chromium.org5c838252010-02-19 08:53:10 +0000582// ES5, section 9.12
583function SameValue(x, y) {
584 if (typeof x != typeof y) return false;
ager@chromium.org5c838252010-02-19 08:53:10 +0000585 if (IS_NUMBER(x)) {
586 if (NUMBER_IS_NAN(x) && NUMBER_IS_NAN(y)) return true;
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000587 // x is +0 and y is -0 or vice versa.
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000588 if (x === 0 && y === 0 && (1 / x) != (1 / y)) return false;
ager@chromium.org5c838252010-02-19 08:53:10 +0000589 }
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000590 return x === y;
ager@chromium.org5c838252010-02-19 08:53:10 +0000591}
592
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000593
594/* ---------------------------------
595 - - - U t i l i t i e s - - -
596 ---------------------------------
597*/
598
599// Returns if the given x is a primitive value - not an object or a
600// function.
601function IsPrimitive(x) {
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000602 // Even though the type of null is "object", null is still
603 // considered a primitive value. IS_SPEC_OBJECT handles this correctly
604 // (i.e., it will return false if x is null).
605 return !IS_SPEC_OBJECT(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000606}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000607
608
609// ECMA-262, section 8.6.2.6, page 28.
610function DefaultNumber(x) {
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000611 var valueOf = x.valueOf;
612 if (IS_FUNCTION(valueOf)) {
613 var v = %_CallFunction(x, valueOf);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000614 if (%IsPrimitive(v)) return v;
615 }
616
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000617 var toString = x.toString;
618 if (IS_FUNCTION(toString)) {
619 var s = %_CallFunction(x, toString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000620 if (%IsPrimitive(s)) return s;
621 }
622
623 throw %MakeTypeError('cannot_convert_to_primitive', []);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000624}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000625
626
627// ECMA-262, section 8.6.2.6, page 28.
628function DefaultString(x) {
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000629 var toString = x.toString;
630 if (IS_FUNCTION(toString)) {
631 var s = %_CallFunction(x, toString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000632 if (%IsPrimitive(s)) return s;
633 }
634
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000635 var valueOf = x.valueOf;
636 if (IS_FUNCTION(valueOf)) {
637 var v = %_CallFunction(x, valueOf);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000638 if (%IsPrimitive(v)) return v;
639 }
640
641 throw %MakeTypeError('cannot_convert_to_primitive', []);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000642}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000643
644
645// NOTE: Setting the prototype for Array must take place as early as
646// possible due to code generation for array literals. When
647// generating code for a array literal a boilerplate array is created
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000648// that is cloned when running the code. It is essential that the
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000649// boilerplate gets the right prototype.
650%FunctionSetPrototype($Array, new $Array(0));