runtime.js 19.2 KB
Newer Older
1
// Copyright 2006-2008 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// This files contains runtime support implemented in JavaScript.

// CAUTION: Some of the functions specified in this file are called
// directly from compiled code. These are the functions with names in
// ALL CAPS. The compiled code passes the first argument in 'this' and
// it does not push the function onto the stack. This means that you
// cannot use contexts in all these functions.


/* -----------------------------------
   - - -   C o m p a r i s o n   - - -
   -----------------------------------
*/

42 43 44 45 46 47 48 49
// The following declarations are shared with other native JS files.
// They are all declared at this one spot to avoid redeclaration errors.
var $Object = global.Object;
var $Array = global.Array;
var $String = global.String;
var $Number = global.Number;
var $Function = global.Function;
var $Boolean = global.Boolean;
50
var $NaN = %GetRootNaN();
51
var builtins = this;
52

53
// ECMA-262 Section 11.9.3.
54
function EQUALS(y) {
55
  if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y);
56 57 58 59
  var x = this;

  while (true) {
    if (IS_NUMBER(x)) {
60 61 62 63 64 65 66 67 68
      while (true) {
        if (IS_NUMBER(y)) return %NumberEquals(x, y);
        if (IS_NULL_OR_UNDEFINED(y)) return 1;  // not equal
        if (!IS_SPEC_OBJECT(y)) {
          // String or boolean.
          return %NumberEquals(x, %ToNumber(y));
        }
        y = %ToPrimitive(y, NO_HINT);
      }
69
    } else if (IS_STRING(x)) {
70 71 72 73 74 75 76 77 78 79
      while (true) {
        if (IS_STRING(y)) return %StringEquals(x, y);
        if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y);
        if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
        if (IS_NULL_OR_UNDEFINED(y)) return 1;  // not equal
        y = %ToPrimitive(y, NO_HINT);
      }
    } else if (IS_BOOLEAN(x)) {
      if (IS_BOOLEAN(y)) return %_ObjectEquals(x, y) ? 0 : 1;
      if (IS_NULL_OR_UNDEFINED(y)) return 1;
80
      if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y);
81 82 83
      if (IS_STRING(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
      // y is object.
      x = %ToNumber(x);
84
      y = %ToPrimitive(y, NO_HINT);
85 86
    } else if (IS_NULL_OR_UNDEFINED(x)) {
      return IS_NULL_OR_UNDEFINED(y) ? 0 : 1;
87
    } else {
88
      // x is an object.
89
      if (IS_SPEC_OBJECT(y)) {
90 91
        return %_ObjectEquals(x, y) ? 0 : 1;
      }
92 93
      if (IS_NULL_OR_UNDEFINED(y)) return 1;  // not equal
      if (IS_BOOLEAN(y)) y = %ToNumber(y);
94 95 96
      x = %ToPrimitive(x, NO_HINT);
    }
  }
97
}
98 99 100 101 102 103

// ECMA-262, section 11.9.4, page 56.
function STRICT_EQUALS(x) {
  if (IS_STRING(this)) {
    if (!IS_STRING(x)) return 1;  // not equal
    return %StringEquals(this, x);
104
  }
105

106 107 108
  if (IS_NUMBER(this)) {
    if (!IS_NUMBER(x)) return 1;  // not equal
    return %NumberEquals(this, x);
109
  }
110

111 112 113
  // If anything else gets here, we just do simple identity check.
  // Objects (including functions), null, undefined and booleans were
  // checked in the CompareStub, so there should be nothing left.
114
  return %_ObjectEquals(this, x) ? 0 : 1;
115
}
116 117 118 119 120


// ECMA-262, section 11.8.5, page 53. The 'ncr' parameter is used as
// the result when either (or both) the operands are NaN.
function COMPARE(x, ncr) {
121
  var left;
122
  var right;
123 124
  // Fast cases for string, numbers and undefined compares.
  if (IS_STRING(this)) {
125
    if (IS_STRING(x)) return %_StringCompare(this, x);
126 127 128 129 130 131 132
    if (IS_UNDEFINED(x)) return ncr;
    left = this;
  } else if (IS_NUMBER(this)) {
    if (IS_NUMBER(x)) return %NumberCompare(this, x, ncr);
    if (IS_UNDEFINED(x)) return ncr;
    left = this;
  } else if (IS_UNDEFINED(this)) {
133 134 135 136 137 138
    if (!IS_UNDEFINED(x)) {
      %ToPrimitive(x, NUMBER_HINT);
    }
    return ncr;
  } else if (IS_UNDEFINED(x)) {
    %ToPrimitive(this, NUMBER_HINT);
139
    return ncr;
140 141
  } else {
    left = %ToPrimitive(this, NUMBER_HINT);
142 143
  }

144
  right = %ToPrimitive(x, NUMBER_HINT);
145
  if (IS_STRING(left) && IS_STRING(right)) {
146
    return %_StringCompare(left, right);
147
  } else {
148 149 150 151
    var left_number = %ToNumber(left);
    var right_number = %ToNumber(right);
    if (NUMBER_IS_NAN(left_number) || NUMBER_IS_NAN(right_number)) return ncr;
    return %NumberCompare(left_number, right_number, ncr);
152
  }
153
}
154 155 156 157 158 159 160 161 162 163 164



/* -----------------------------------
   - - -   A r i t h m e t i c   - - -
   -----------------------------------
*/

// ECMA-262, section 11.6.1, page 50.
function ADD(x) {
  // Fast case: Check for number operands and do the addition.
165
  if (IS_NUMBER(this) && IS_NUMBER(x)) return %NumberAdd(this, x);
166
  if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x);
167

168
  // Default implementation.
169 170
  var a = %ToPrimitive(this, NO_HINT);
  var b = %ToPrimitive(x, NO_HINT);
171

172
  if (IS_STRING(a)) {
173
    return %_StringAdd(a, %ToString(b));
174
  } else if (IS_STRING(b)) {
175
    return %_StringAdd(%NonStringToString(a), b);
176 177 178
  } else {
    return %NumberAdd(%ToNumber(a), %ToNumber(b));
  }
179
}
180 181


182
// Left operand (this) is already a string.
183
function STRING_ADD_LEFT(y) {
184
  if (!IS_STRING(y)) {
185
    if (IS_STRING_WRAPPER(y) && %_IsStringWrapperSafeForDefaultValueOf(y)) {
186 187 188
      y = %_ValueOf(y);
    } else {
      y = IS_NUMBER(y)
189
          ? %_NumberToString(y)
190 191 192
          : %ToString(%ToPrimitive(y, NO_HINT));
    }
  }
193
  return %_StringAdd(this, y);
194 195 196
}


197 198
// Right operand (y) is already a string.
function STRING_ADD_RIGHT(y) {
199 200
  var x = this;
  if (!IS_STRING(x)) {
201
    if (IS_STRING_WRAPPER(x) && %_IsStringWrapperSafeForDefaultValueOf(x)) {
202 203 204
      x = %_ValueOf(x);
    } else {
      x = IS_NUMBER(x)
205
          ? %_NumberToString(x)
206 207 208
          : %ToString(%ToPrimitive(x, NO_HINT));
    }
  }
209
  return %_StringAdd(x, y);
210 211 212
}


213
// ECMA-262, section 11.6.2, page 50.
214
function SUB(y) {
215 216
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
217
  return %NumberSub(x, y);
218
}
219 220 221


// ECMA-262, section 11.5.1, page 48.
222
function MUL(y) {
223 224
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
225
  return %NumberMul(x, y);
226
}
227 228 229


// ECMA-262, section 11.5.2, page 49.
230
function DIV(y) {
231 232
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
233
  return %NumberDiv(x, y);
234
}
235 236 237


// ECMA-262, section 11.5.3, page 49.
238
function MOD(y) {
239 240
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
241
  return %NumberMod(x, y);
242
}
243 244 245 246 247 248 249 250 251



/* -------------------------------------------
   - - -   B i t   o p e r a t i o n s   - - -
   -------------------------------------------
*/

// ECMA-262, section 11.10, page 57.
252
function BIT_OR(y) {
253 254
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
255
  return %NumberOr(x, y);
256
}
257 258 259


// ECMA-262, section 11.10, page 57.
260 261 262 263
function BIT_AND(y) {
  var x;
  if (IS_NUMBER(this)) {
    x = this;
264
    if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
265
  } else {
266
    x = %NonNumberToNumber(this);
267 268 269 270
    // Make sure to convert the right operand to a number before
    // bailing out in the fast case, but after converting the
    // left operand. This ensures that valueOf methods on the right
    // operand are always executed.
271
    if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
272 273 274 275 276 277
    // Optimize for the case where we end up AND'ing a value
    // that doesn't convert to a number. This is common in
    // certain benchmarks.
    if (NUMBER_IS_NAN(x)) return 0;
  }
  return %NumberAnd(x, y);
278
}
279 280 281


// ECMA-262, section 11.10, page 57.
282
function BIT_XOR(y) {
283 284
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
285
  return %NumberXor(x, y);
286
}
287 288 289 290


// ECMA-262, section 11.4.7, page 47.
function UNARY_MINUS() {
291
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
292
  return %NumberUnaryMinus(x);
293
}
294 295 296 297


// ECMA-262, section 11.4.8, page 48.
function BIT_NOT() {
298
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
299
  return %NumberNot(x);
300
}
301 302 303


// ECMA-262, section 11.7.1, page 51.
304
function SHL(y) {
305 306
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
307
  return %NumberShl(x, y);
308
}
309 310 311


// ECMA-262, section 11.7.2, page 51.
312 313 314 315
function SAR(y) {
  var x;
  if (IS_NUMBER(this)) {
    x = this;
316
    if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
317
  } else {
318
    x = %NonNumberToNumber(this);
319 320 321 322
    // Make sure to convert the right operand to a number before
    // bailing out in the fast case, but after converting the
    // left operand. This ensures that valueOf methods on the right
    // operand are always executed.
323
    if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
324 325 326 327 328 329
    // Optimize for the case where we end up shifting a value
    // that doesn't convert to a number. This is common in
    // certain benchmarks.
    if (NUMBER_IS_NAN(x)) return 0;
  }
  return %NumberSar(x, y);
330
}
331 332 333


// ECMA-262, section 11.7.3, page 52.
334
function SHR(y) {
335 336
  var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
  if (!IS_NUMBER(y)) y = %NonNumberToNumber(y);
337
  return %NumberShr(x, y);
338
}
339 340 341 342 343 344 345 346 347



/* -----------------------------
   - - -   H e l p e r s   - - -
   -----------------------------
*/

// ECMA-262, section 11.4.1, page 46.
348
function DELETE(key, strict) {
349
  return %DeleteProperty(%ToObject(this), %ToName(key), strict);
350
}
351 352 353 354


// ECMA-262, section 11.8.7, page 54.
function IN(x) {
355
  if (!IS_SPEC_OBJECT(x)) {
356 357
    throw %MakeTypeError('invalid_in_operator_use', [this, x]);
  }
358
  return %_IsNonNegativeSmi(this) ?
359
    %HasElement(x, this) : %HasProperty(x, %ToName(this));
360
}
361 362


363
// ECMA-262, section 11.8.6, page 54. To make the implementation more
364
// efficient, the return value should be zero if the 'this' is an
365 366
// instance of F, and non-zero if not. This makes it possible to avoid
// an expensive ToBoolean conversion in the generated code.
367 368
function INSTANCE_OF(F) {
  var V = this;
369
  if (!IS_SPEC_FUNCTION(F)) {
yangguo@chromium.org's avatar
yangguo@chromium.org committed
370
    throw %MakeTypeError('instanceof_function_expected', [V]);
371 372 373
  }

  // If V is not an object, return false.
374
  if (!IS_SPEC_OBJECT(V)) {
375
    return 1;
376 377
  }

378 379 380 381 382 383
  // Check if function is bound, if so, get [[BoundFunction]] from it
  // and use that instead of F.
  var bindings = %BoundFunctionGetBindings(F);
  if (bindings) {
    F = bindings[kBoundFunctionIndex];  // Always a non-bound function.
  }
384 385
  // Get the prototype of F; if it is not an object, throw an error.
  var O = F.prototype;
386
  if (!IS_SPEC_OBJECT(O)) {
387 388 389 390
    throw %MakeTypeError('instanceof_nonobject_proto', [O]);
  }

  // Return whether or not O is in the prototype chain of V.
391
  return %IsInPrototypeChain(O, V) ? 0 : 1;
392
}
393 394 395 396


// Filter a given key against an object by checking if the object
// has a property with the given key; return the key as a string if
397
// it has. Otherwise returns 0 (smi). Used in for-in statements.
398
function FILTER_KEY(key) {
399
  var string = %ToName(key);
400
  if (%HasProperty(this, string)) return string;
401
  return 0;
402
}
403 404 405


function CALL_NON_FUNCTION() {
406
  var delegate = %GetFunctionDelegate(this);
407
  if (!IS_FUNCTION(delegate)) {
408
    throw %MakeTypeError('called_non_callable', [typeof this]);
409
  }
410
  return %Apply(delegate, this, arguments, 0, %_ArgumentsLength());
411 412 413 414
}


function CALL_NON_FUNCTION_AS_CONSTRUCTOR() {
415
  var delegate = %GetConstructorDelegate(this);
416
  if (!IS_FUNCTION(delegate)) {
417
    throw %MakeTypeError('called_non_callable', [typeof this]);
418
  }
419
  return %Apply(delegate, this, arguments, 0, %_ArgumentsLength());
420
}
421 422


423 424 425 426 427 428 429 430
function CALL_FUNCTION_PROXY() {
  var arity = %_ArgumentsLength() - 1;
  var proxy = %_Arguments(arity);  // The proxy comes in as an additional arg.
  var trap = %GetCallTrap(proxy);
  return %Apply(trap, this, arguments, 0, arity);
}


431 432
function CALL_FUNCTION_PROXY_AS_CONSTRUCTOR() {
  var proxy = this;
433
  var trap = %GetConstructTrap(proxy);
434
  return %Apply(trap, this, arguments, 0, %_ArgumentsLength());
435 436 437
}


438 439
function APPLY_PREPARE(args) {
  var length;
440 441 442
  // First check whether length is a positive Smi and args is an
  // array. This is the fast case. If this fails, we do the slow case
  // that takes care of more eventualities.
443
  if (IS_ARRAY(args)) {
444
    length = args.length;
445 446
    if (%_IsSmi(length) && length >= 0 && length < 0x800000 &&
        IS_SPEC_FUNCTION(this)) {
447 448 449 450
      return length;
    }
  }

451
  length = (args == null) ? 0 : %ToUint32(args.length);
452 453 454 455 456

  // We can handle any number of apply arguments if the stack is
  // big enough, but sanity check the value to avoid overflow when
  // multiplying with pointer size.
  if (length > 0x800000) {
457
    throw %MakeRangeError('stack_overflow', []);
458 459
  }

460
  if (!IS_SPEC_FUNCTION(this)) {
461 462
    throw %MakeTypeError('apply_non_function',
                         [ %ToString(this), typeof this ]);
463 464 465
  }

  // Make sure the arguments list has the right type.
466
  if (args != null && !IS_SPEC_OBJECT(args)) {
467 468
    throw %MakeTypeError('apply_wrong_args', []);
  }
469

470 471 472
  // Return the length which is the number of arguments to copy to the
  // stack. It is guaranteed to be a small integer at this point.
  return length;
473
}
474 475 476


function APPLY_OVERFLOW(length) {
477
  throw %MakeRangeError('stack_overflow', []);
478
}
479 480 481 482 483


// Convert the receiver to an object - forward to ToObject.
function TO_OBJECT() {
  return %ToObject(this);
484
}
485 486 487 488 489


// Convert the receiver to a number - forward to ToNumber.
function TO_NUMBER() {
  return %ToNumber(this);
490
}
491 492 493 494 495


// Convert the receiver to a string - forward to ToString.
function TO_STRING() {
  return %ToString(this);
496
}
497 498 499 500 501 502 503 504 505 506


/* -------------------------------------
   - - -   C o n v e r s i o n s   - - -
   -------------------------------------
*/

// ECMA-262, section 9.1, page 30. Use null/undefined for no hint,
// (1) for number hint, and (2) for string hint.
function ToPrimitive(x, hint) {
507 508
  // Fast case check.
  if (IS_STRING(x)) return x;
509
  // Normal behavior.
510
  if (!IS_SPEC_OBJECT(x)) return x;
511 512
  if (hint == NO_HINT) hint = (IS_DATE(x)) ? STRING_HINT : NUMBER_HINT;
  return (hint == NUMBER_HINT) ? %DefaultNumber(x) : %DefaultString(x);
513
}
514 515


516 517 518 519 520 521 522 523 524 525
// ECMA-262, section 9.2, page 30
function ToBoolean(x) {
  if (IS_BOOLEAN(x)) return x;
  if (IS_STRING(x)) return x.length != 0;
  if (x == null) return false;
  if (IS_NUMBER(x)) return !((x == 0) || NUMBER_IS_NAN(x));
  return true;
}


526 527 528
// ECMA-262, section 9.3, page 31.
function ToNumber(x) {
  if (IS_NUMBER(x)) return x;
529 530 531 532
  if (IS_STRING(x)) {
    return %_HasCachedArrayIndex(x) ? %_GetCachedArrayIndex(x)
                                    : %StringToNumber(x);
  }
533
  if (IS_BOOLEAN(x)) return x ? 1 : 0;
534
  if (IS_UNDEFINED(x)) return $NaN;
535
  return (IS_NULL(x)) ? 0 : ToNumber(%DefaultNumber(x));
536
}
537

538 539 540 541 542 543 544 545 546 547
function NonNumberToNumber(x) {
  if (IS_STRING(x)) {
    return %_HasCachedArrayIndex(x) ? %_GetCachedArrayIndex(x)
                                    : %StringToNumber(x);
  }
  if (IS_BOOLEAN(x)) return x ? 1 : 0;
  if (IS_UNDEFINED(x)) return $NaN;
  return (IS_NULL(x)) ? 0 : ToNumber(%DefaultNumber(x));
}

548 549 550 551

// ECMA-262, section 9.8, page 35.
function ToString(x) {
  if (IS_STRING(x)) return x;
552
  if (IS_NUMBER(x)) return %_NumberToString(x);
553 554 555
  if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
  if (IS_UNDEFINED(x)) return 'undefined';
  return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
556
}
557

558
function NonStringToString(x) {
559
  if (IS_NUMBER(x)) return %_NumberToString(x);
560 561 562 563 564
  if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
  if (IS_UNDEFINED(x)) return 'undefined';
  return (IS_NULL(x)) ? 'null' : %ToString(%DefaultString(x));
}

565

566 567 568 569 570 571
// ES6 symbols
function ToName(x) {
  return IS_SYMBOL(x) ? x : %ToString(x);
}


572 573 574 575 576
// ECMA-262, section 9.9, page 36.
function ToObject(x) {
  if (IS_STRING(x)) return new $String(x);
  if (IS_NUMBER(x)) return new $Number(x);
  if (IS_BOOLEAN(x)) return new $Boolean(x);
577 578 579
  if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {
    throw %MakeTypeError('null_to_object', []);
  }
580
  return x;
581
}
582 583 584 585 586 587


// ECMA-262, section 9.4, page 34.
function ToInteger(x) {
  if (%_IsSmi(x)) return x;
  return %NumberToInteger(ToNumber(x));
588
}
589 590 591 592


// ECMA-262, section 9.6, page 34.
function ToUint32(x) {
593
  if (%_IsSmi(x) && x >= 0) return x;
594
  return %NumberToJSUint32(ToNumber(x));
595
}
596 597 598 599 600 601


// ECMA-262, section 9.5, page 34
function ToInt32(x) {
  if (%_IsSmi(x)) return x;
  return %NumberToJSInt32(ToNumber(x));
602
}
603 604


605 606 607 608 609
// ES5, section 9.12
function SameValue(x, y) {
  if (typeof x != typeof y) return false;
  if (IS_NUMBER(x)) {
    if (NUMBER_IS_NAN(x) && NUMBER_IS_NAN(y)) return true;
610
    // x is +0 and y is -0 or vice versa.
611
    if (x === 0 && y === 0 && (1 / x) != (1 / y)) return false;
612
  }
613
  return x === y;
614 615
}

616 617 618 619 620 621 622 623 624

/* ---------------------------------
   - - -   U t i l i t i e s   - - -
   ---------------------------------
*/

// Returns if the given x is a primitive value - not an object or a
// function.
function IsPrimitive(x) {
625 626 627 628
  // Even though the type of null is "object", null is still
  // considered a primitive value. IS_SPEC_OBJECT handles this correctly
  // (i.e., it will return false if x is null).
  return !IS_SPEC_OBJECT(x);
629
}
630 631 632 633


// ECMA-262, section 8.6.2.6, page 28.
function DefaultNumber(x) {
634
  var valueOf = x.valueOf;
635
  if (IS_SPEC_FUNCTION(valueOf)) {
636
    var v = %_CallFunction(x, valueOf);
637 638 639
    if (%IsPrimitive(v)) return v;
  }

640
  var toString = x.toString;
641
  if (IS_SPEC_FUNCTION(toString)) {
642
    var s = %_CallFunction(x, toString);
643 644 645 646
    if (%IsPrimitive(s)) return s;
  }

  throw %MakeTypeError('cannot_convert_to_primitive', []);
647
}
648 649 650 651


// ECMA-262, section 8.6.2.6, page 28.
function DefaultString(x) {
652
  var toString = x.toString;
653
  if (IS_SPEC_FUNCTION(toString)) {
654
    var s = %_CallFunction(x, toString);
655 656 657
    if (%IsPrimitive(s)) return s;
  }

658
  var valueOf = x.valueOf;
659
  if (IS_SPEC_FUNCTION(valueOf)) {
660
    var v = %_CallFunction(x, valueOf);
661 662 663 664
    if (%IsPrimitive(v)) return v;
  }

  throw %MakeTypeError('cannot_convert_to_primitive', []);
665
}
666 667 668 669 670


// NOTE: Setting the prototype for Array must take place as early as
// possible due to code generation for array literals.  When
// generating code for a array literal a boilerplate array is created
671
// that is cloned when running the code.  It is essential that the
672 673
// boilerplate gets the right prototype.
%FunctionSetPrototype($Array, new $Array(0));