blob: f2c8d6b84622fb0355eed6f6ddb190701ebb1ae6 [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
52
53// ECMA-262, section 11.9.1, page 55.
54function EQUALS(y) {
ager@chromium.org7c537e22008-10-16 08:43:32 +000055 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000056 var x = this;
57
58 // NOTE: We use iteration instead of recursion, because it is
59 // difficult to call EQUALS with the correct setting of 'this' in
60 // an efficient way.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061 while (true) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000062 if (IS_NUMBER(x)) {
63 if (y == null) return 1; // not equal
64 return %NumberEquals(x, %ToNumber(y));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000065 } else if (IS_STRING(x)) {
66 if (IS_STRING(y)) return %StringEquals(x, y);
67 if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y);
68 if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
69 if (y == null) return 1; // not equal
70 y = %ToPrimitive(y, NO_HINT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000071 } else if (IS_BOOLEAN(x)) {
ager@chromium.org9258b6b2008-09-11 09:11:10 +000072 if (IS_BOOLEAN(y)) {
73 return %_ObjectEquals(x, y) ? 0 : 1;
74 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000075 if (y == null) return 1; // not equal
76 return %NumberEquals(%ToNumber(x), %ToNumber(y));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000077 } else if (x == null) {
78 // NOTE: This checks for both null and undefined.
79 return (y == null) ? 0 : 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000080 } else {
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000081 // x is not a number, boolean, null or undefined.
82 if (y == null) return 1; // not equal
ricow@chromium.org4980dff2010-07-19 08:33:45 +000083 if (IS_SPEC_OBJECT(y)) {
ager@chromium.org9258b6b2008-09-11 09:11:10 +000084 return %_ObjectEquals(x, y) ? 0 : 1;
85 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000086
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000087 x = %ToPrimitive(x, NO_HINT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000088 }
89 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000090}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000091
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000092// ECMA-262, section 11.9.4, page 56.
93function STRICT_EQUALS(x) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094 if (IS_STRING(this)) {
95 if (!IS_STRING(x)) return 1; // not equal
96 return %StringEquals(this, x);
ager@chromium.orgeadaf222009-06-16 09:43:10 +000097 }
ager@chromium.org9258b6b2008-09-11 09:11:10 +000098
ager@chromium.org7c537e22008-10-16 08:43:32 +000099 if (IS_NUMBER(this)) {
100 if (!IS_NUMBER(x)) return 1; // not equal
101 return %NumberEquals(this, x);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000102 }
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000103
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000104 // If anything else gets here, we just do simple identity check.
105 // Objects (including functions), null, undefined and booleans were
106 // checked in the CompareStub, so there should be nothing left.
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000107 return %_ObjectEquals(this, x) ? 0 : 1;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000108}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000109
110
111// ECMA-262, section 11.8.5, page 53. The 'ncr' parameter is used as
112// the result when either (or both) the operands are NaN.
113function COMPARE(x, ncr) {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000114 var left;
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000115 var right;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000116 // Fast cases for string, numbers and undefined compares.
117 if (IS_STRING(this)) {
118 if (IS_STRING(x)) return %_StringCompare(this, x);
119 if (IS_UNDEFINED(x)) return ncr;
120 left = this;
121 } else if (IS_NUMBER(this)) {
122 if (IS_NUMBER(x)) return %NumberCompare(this, x, ncr);
123 if (IS_UNDEFINED(x)) return ncr;
124 left = this;
125 } else if (IS_UNDEFINED(this)) {
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000126 if (!IS_UNDEFINED(x)) {
127 %ToPrimitive(x, NUMBER_HINT);
128 }
129 return ncr;
130 } else if (IS_UNDEFINED(x)) {
131 %ToPrimitive(this, NUMBER_HINT);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000132 return ncr;
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000133 } else {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000134 left = %ToPrimitive(this, NUMBER_HINT);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000135 }
136
lrn@chromium.org32d961d2010-06-30 09:09:34 +0000137 right = %ToPrimitive(x, NUMBER_HINT);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000138 if (IS_STRING(left) && IS_STRING(right)) {
139 return %_StringCompare(left, right);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000140 } else {
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000141 var left_number = %ToNumber(left);
142 var right_number = %ToNumber(right);
143 if (NUMBER_IS_NAN(left_number) || NUMBER_IS_NAN(right_number)) return ncr;
144 return %NumberCompare(left_number, right_number, ncr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000145 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000146}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000147
148
149
150/* -----------------------------------
151 - - - A r i t h m e t i c - - -
152 -----------------------------------
153*/
154
155// ECMA-262, section 11.6.1, page 50.
156function ADD(x) {
157 // Fast case: Check for number operands and do the addition.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000158 if (IS_NUMBER(this) && IS_NUMBER(x)) return %NumberAdd(this, x);
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000159 if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000160
ager@chromium.org7c537e22008-10-16 08:43:32 +0000161 // Default implementation.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000162 var a = %ToPrimitive(this, NO_HINT);
163 var b = %ToPrimitive(x, NO_HINT);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000164
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165 if (IS_STRING(a)) {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000166 return %_StringAdd(a, %ToString(b));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000167 } else if (IS_STRING(b)) {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000168 return %_StringAdd(%ToString(a), b);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000169 } else {
170 return %NumberAdd(%ToNumber(a), %ToNumber(b));
171 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000172}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000173
174
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000175// Left operand (this) is already a string.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000176function STRING_ADD_LEFT(y) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000177 if (!IS_STRING(y)) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000178 if (IS_STRING_WRAPPER(y) && %_IsStringWrapperSafeForDefaultValueOf(y)) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000179 y = %_ValueOf(y);
180 } else {
181 y = IS_NUMBER(y)
ager@chromium.org5c838252010-02-19 08:53:10 +0000182 ? %_NumberToString(y)
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000183 : %ToString(%ToPrimitive(y, NO_HINT));
184 }
185 }
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000186 return %_StringAdd(this, y);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000187}
188
189
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000190// Right operand (y) is already a string.
191function STRING_ADD_RIGHT(y) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000192 var x = this;
193 if (!IS_STRING(x)) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000194 if (IS_STRING_WRAPPER(x) && %_IsStringWrapperSafeForDefaultValueOf(x)) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000195 x = %_ValueOf(x);
196 } else {
197 x = IS_NUMBER(x)
ager@chromium.org5c838252010-02-19 08:53:10 +0000198 ? %_NumberToString(x)
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000199 : %ToString(%ToPrimitive(x, NO_HINT));
200 }
201 }
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000202 return %_StringAdd(x, y);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000203}
204
205
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000206// ECMA-262, section 11.6.2, page 50.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000207function SUB(y) {
208 var x = IS_NUMBER(this) ? this : %ToNumber(this);
209 if (!IS_NUMBER(y)) y = %ToNumber(y);
210 return %NumberSub(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000211}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000212
213
214// ECMA-262, section 11.5.1, page 48.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000215function MUL(y) {
216 var x = IS_NUMBER(this) ? this : %ToNumber(this);
217 if (!IS_NUMBER(y)) y = %ToNumber(y);
218 return %NumberMul(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000219}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000220
221
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000222// ECMA-262, section 11.5.2, page 49.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000223function DIV(y) {
224 var x = IS_NUMBER(this) ? this : %ToNumber(this);
225 if (!IS_NUMBER(y)) y = %ToNumber(y);
226 return %NumberDiv(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000227}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000228
229
230// ECMA-262, section 11.5.3, page 49.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000231function MOD(y) {
232 var x = IS_NUMBER(this) ? this : %ToNumber(this);
233 if (!IS_NUMBER(y)) y = %ToNumber(y);
234 return %NumberMod(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000235}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000236
237
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000238
239/* -------------------------------------------
240 - - - B i t o p e r a t i o n s - - -
241 -------------------------------------------
242*/
243
244// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000245function BIT_OR(y) {
246 var x = IS_NUMBER(this) ? this : %ToNumber(this);
247 if (!IS_NUMBER(y)) y = %ToNumber(y);
248 return %NumberOr(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000249}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000250
251
252// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000253function BIT_AND(y) {
254 var x;
255 if (IS_NUMBER(this)) {
256 x = this;
257 if (!IS_NUMBER(y)) y = %ToNumber(y);
258 } else {
259 x = %ToNumber(this);
260 // Make sure to convert the right operand to a number before
261 // bailing out in the fast case, but after converting the
262 // left operand. This ensures that valueOf methods on the right
263 // operand are always executed.
264 if (!IS_NUMBER(y)) y = %ToNumber(y);
265 // Optimize for the case where we end up AND'ing a value
266 // that doesn't convert to a number. This is common in
267 // certain benchmarks.
268 if (NUMBER_IS_NAN(x)) return 0;
269 }
270 return %NumberAnd(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000271}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000272
273
274// ECMA-262, section 11.10, page 57.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000275function BIT_XOR(y) {
276 var x = IS_NUMBER(this) ? this : %ToNumber(this);
277 if (!IS_NUMBER(y)) y = %ToNumber(y);
278 return %NumberXor(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000279}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000280
281
282// ECMA-262, section 11.4.7, page 47.
283function UNARY_MINUS() {
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000284 var x = IS_NUMBER(this) ? this : %ToNumber(this);
285 return %NumberUnaryMinus(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000286}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000287
288
289// ECMA-262, section 11.4.8, page 48.
290function BIT_NOT() {
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000291 var x = IS_NUMBER(this) ? this : %ToNumber(this);
292 return %NumberNot(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000293}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000294
295
296// ECMA-262, section 11.7.1, page 51.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000297function SHL(y) {
298 var x = IS_NUMBER(this) ? this : %ToNumber(this);
299 if (!IS_NUMBER(y)) y = %ToNumber(y);
300 return %NumberShl(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000301}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000302
303
304// ECMA-262, section 11.7.2, page 51.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000305function SAR(y) {
306 var x;
307 if (IS_NUMBER(this)) {
308 x = this;
309 if (!IS_NUMBER(y)) y = %ToNumber(y);
310 } else {
311 x = %ToNumber(this);
312 // Make sure to convert the right operand to a number before
313 // bailing out in the fast case, but after converting the
314 // left operand. This ensures that valueOf methods on the right
315 // operand are always executed.
316 if (!IS_NUMBER(y)) y = %ToNumber(y);
317 // Optimize for the case where we end up shifting a value
318 // that doesn't convert to a number. This is common in
319 // certain benchmarks.
320 if (NUMBER_IS_NAN(x)) return 0;
321 }
322 return %NumberSar(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000323}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000324
325
326// ECMA-262, section 11.7.3, page 52.
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000327function SHR(y) {
328 var x = IS_NUMBER(this) ? this : %ToNumber(this);
329 if (!IS_NUMBER(y)) y = %ToNumber(y);
330 return %NumberShr(x, y);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000331}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000332
333
334
335/* -----------------------------
336 - - - H e l p e r s - - -
337 -----------------------------
338*/
339
340// ECMA-262, section 11.4.1, page 46.
341function DELETE(key) {
342 return %DeleteProperty(%ToObject(this), %ToString(key));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000343}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000344
345
346// ECMA-262, section 11.8.7, page 54.
347function IN(x) {
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000348 if (!IS_SPEC_OBJECT(x)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000349 throw %MakeTypeError('invalid_in_operator_use', [this, x]);
350 }
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000351 return %_IsNonNegativeSmi(this) ? %HasElement(x, this) : %HasProperty(x, %ToString(this));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000352}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000353
354
ager@chromium.org7c537e22008-10-16 08:43:32 +0000355// ECMA-262, section 11.8.6, page 54. To make the implementation more
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000356// efficient, the return value should be zero if the 'this' is an
ager@chromium.org7c537e22008-10-16 08:43:32 +0000357// instance of F, and non-zero if not. This makes it possible to avoid
358// an expensive ToBoolean conversion in the generated code.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000359function INSTANCE_OF(F) {
360 var V = this;
361 if (!IS_FUNCTION(F)) {
362 throw %MakeTypeError('instanceof_function_expected', [V]);
363 }
364
365 // If V is not an object, return false.
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000366 if (!IS_SPEC_OBJECT(V)) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000367 return 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000368 }
369
370 // Get the prototype of F; if it is not an object, throw an error.
371 var O = F.prototype;
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000372 if (!IS_SPEC_OBJECT(O)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000373 throw %MakeTypeError('instanceof_nonobject_proto', [O]);
374 }
375
376 // Return whether or not O is in the prototype chain of V.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000377 return %IsInPrototypeChain(O, V) ? 0 : 1;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000378}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000379
380
381// Get an array of property keys for the given object. Used in
382// for-in statements.
383function GET_KEYS() {
384 return %GetPropertyNames(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000385}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000386
387
388// Filter a given key against an object by checking if the object
389// has a property with the given key; return the key as a string if
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000390// it has. Otherwise returns 0 (smi). Used in for-in statements.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000391function FILTER_KEY(key) {
392 var string = %ToString(key);
393 if (%HasProperty(this, string)) return string;
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000394 return 0;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000395}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000396
397
398function CALL_NON_FUNCTION() {
ager@chromium.org5c838252010-02-19 08:53:10 +0000399 var delegate = %GetFunctionDelegate(this);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000400 if (!IS_FUNCTION(delegate)) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000401 throw %MakeTypeError('called_non_callable', [typeof this]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000402 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000403 return delegate.apply(this, arguments);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000404}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000405
406
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000407function CALL_NON_FUNCTION_AS_CONSTRUCTOR() {
ager@chromium.org5c838252010-02-19 08:53:10 +0000408 var delegate = %GetConstructorDelegate(this);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000409 if (!IS_FUNCTION(delegate)) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000410 throw %MakeTypeError('called_non_callable', [typeof this]);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000411 }
ager@chromium.org5c838252010-02-19 08:53:10 +0000412 return delegate.apply(this, arguments);
sgjesse@chromium.org05521fc2009-05-21 07:37:44 +0000413}
414
415
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000416function APPLY_PREPARE(args) {
417 var length;
ager@chromium.org3e875802009-06-29 08:26:34 +0000418 // First check whether length is a positive Smi and args is an
419 // array. This is the fast case. If this fails, we do the slow case
420 // that takes care of more eventualities.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000421 if (IS_ARRAY(args)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422 length = args.length;
423 if (%_IsSmi(length) && length >= 0 && length < 0x800000 && IS_FUNCTION(this)) {
424 return length;
425 }
426 }
427
428 length = (args == null) ? 0 : %ToUint32(args.length);
429
430 // We can handle any number of apply arguments if the stack is
431 // big enough, but sanity check the value to avoid overflow when
432 // multiplying with pointer size.
433 if (length > 0x800000) {
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000434 throw %MakeRangeError('stack_overflow', []);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000435 }
436
437 if (!IS_FUNCTION(this)) {
438 throw %MakeTypeError('apply_non_function', [ %ToString(this), typeof this ]);
439 }
440
441 // Make sure the arguments list has the right type.
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000442 if (args != null && !IS_ARRAY(args) && !IS_ARGUMENTS(args)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000443 throw %MakeTypeError('apply_wrong_args', []);
444 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000445
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000446 // Return the length which is the number of arguments to copy to the
447 // stack. It is guaranteed to be a small integer at this point.
448 return length;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000449}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000450
451
452function APPLY_OVERFLOW(length) {
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000453 throw %MakeRangeError('stack_overflow', []);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000454}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000455
456
457// Convert the receiver to an object - forward to ToObject.
458function TO_OBJECT() {
459 return %ToObject(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000460}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000461
462
463// Convert the receiver to a number - forward to ToNumber.
464function TO_NUMBER() {
465 return %ToNumber(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000466}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000467
468
469// Convert the receiver to a string - forward to ToString.
470function TO_STRING() {
471 return %ToString(this);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000472}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000473
474
475/* -------------------------------------
476 - - - C o n v e r s i o n s - - -
477 -------------------------------------
478*/
479
480// ECMA-262, section 9.1, page 30. Use null/undefined for no hint,
481// (1) for number hint, and (2) for string hint.
482function ToPrimitive(x, hint) {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000483 // Fast case check.
484 if (IS_STRING(x)) return x;
485 // Normal behavior.
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000486 if (!IS_SPEC_OBJECT(x)) return x;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000487 if (hint == NO_HINT) hint = (IS_DATE(x)) ? STRING_HINT : NUMBER_HINT;
488 return (hint == NUMBER_HINT) ? %DefaultNumber(x) : %DefaultString(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000489}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000490
491
ager@chromium.org5c838252010-02-19 08:53:10 +0000492// ECMA-262, section 9.2, page 30
493function ToBoolean(x) {
494 if (IS_BOOLEAN(x)) return x;
495 if (IS_STRING(x)) return x.length != 0;
496 if (x == null) return false;
497 if (IS_NUMBER(x)) return !((x == 0) || NUMBER_IS_NAN(x));
498 return true;
499}
500
501
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000502// ECMA-262, section 9.3, page 31.
503function ToNumber(x) {
504 if (IS_NUMBER(x)) return x;
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000505 if (IS_STRING(x)) {
506 return %_HasCachedArrayIndex(x) ? %_GetCachedArrayIndex(x)
507 : %StringToNumber(x);
508 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000509 if (IS_BOOLEAN(x)) return x ? 1 : 0;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000510 if (IS_UNDEFINED(x)) return $NaN;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000511 return (IS_NULL(x)) ? 0 : ToNumber(%DefaultNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000512}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000513
514
515// ECMA-262, section 9.8, page 35.
516function ToString(x) {
517 if (IS_STRING(x)) return x;
ager@chromium.org5c838252010-02-19 08:53:10 +0000518 if (IS_NUMBER(x)) return %_NumberToString(x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000519 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
520 if (IS_UNDEFINED(x)) return 'undefined';
521 return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000522}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000523
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000524function NonStringToString(x) {
ager@chromium.org357bf652010-04-12 11:30:10 +0000525 if (IS_NUMBER(x)) return %_NumberToString(x);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000526 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
527 if (IS_UNDEFINED(x)) return 'undefined';
528 return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
529}
530
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000531
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000532// ECMA-262, section 9.9, page 36.
533function ToObject(x) {
534 if (IS_STRING(x)) return new $String(x);
535 if (IS_NUMBER(x)) return new $Number(x);
536 if (IS_BOOLEAN(x)) return new $Boolean(x);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000537 if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {
538 throw %MakeTypeError('null_to_object', []);
539 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000540 return x;
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000541}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000542
543
544// ECMA-262, section 9.4, page 34.
545function ToInteger(x) {
546 if (%_IsSmi(x)) return x;
547 return %NumberToInteger(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000548}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000549
550
551// ECMA-262, section 9.6, page 34.
552function ToUint32(x) {
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000553 if (%_IsSmi(x) && x >= 0) return x;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000554 return %NumberToJSUint32(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000555}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000556
557
558// ECMA-262, section 9.5, page 34
559function ToInt32(x) {
560 if (%_IsSmi(x)) return x;
561 return %NumberToJSInt32(ToNumber(x));
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000562}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000563
564
ager@chromium.org5c838252010-02-19 08:53:10 +0000565// ES5, section 9.12
566function SameValue(x, y) {
567 if (typeof x != typeof y) return false;
ager@chromium.org5c838252010-02-19 08:53:10 +0000568 if (IS_NUMBER(x)) {
569 if (NUMBER_IS_NAN(x) && NUMBER_IS_NAN(y)) return true;
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000570 // x is +0 and y is -0 or vice versa.
571 if (x === 0 && y === 0 && (1 / x) != (1 / y)) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000572 return false;
573 }
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000574 return x === y;
ager@chromium.org5c838252010-02-19 08:53:10 +0000575 }
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000576 return x === y
ager@chromium.org5c838252010-02-19 08:53:10 +0000577}
578
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000579
580/* ---------------------------------
581 - - - U t i l i t i e s - - -
582 ---------------------------------
583*/
584
585// Returns if the given x is a primitive value - not an object or a
586// function.
587function IsPrimitive(x) {
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000588 // Even though the type of null is "object", null is still
589 // considered a primitive value. IS_SPEC_OBJECT handles this correctly
590 // (i.e., it will return false if x is null).
591 return !IS_SPEC_OBJECT(x);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000592}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000593
594
595// ECMA-262, section 8.6.2.6, page 28.
596function DefaultNumber(x) {
597 if (IS_FUNCTION(x.valueOf)) {
598 var v = x.valueOf();
599 if (%IsPrimitive(v)) return v;
600 }
601
602 if (IS_FUNCTION(x.toString)) {
603 var s = x.toString();
604 if (%IsPrimitive(s)) return s;
605 }
606
607 throw %MakeTypeError('cannot_convert_to_primitive', []);
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000608}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000609
610
611// ECMA-262, section 8.6.2.6, page 28.
612function DefaultString(x) {
613 if (IS_FUNCTION(x.toString)) {
614 var s = x.toString();
615 if (%IsPrimitive(s)) return s;
616 }
617
618 if (IS_FUNCTION(x.valueOf)) {
619 var v = x.valueOf();
620 if (%IsPrimitive(v)) return v;
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// NOTE: Setting the prototype for Array must take place as early as
628// possible due to code generation for array literals. When
629// generating code for a array literal a boilerplate array is created
630// that is cloned when running the code. It is essiential that the
631// boilerplate gets the right prototype.
632%FunctionSetPrototype($Array, new $Array(0));