packed-elements.js 3.61 KB
Newer Older
1 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
// Copyright 2012 the V8 project authors. All rights reserved.
// 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.

28
// Flags: --allow-natives-syntax
29 30 31

function test1() {
  var a = Array(8);
32 33
  assertTrue(%HasSmiOrObjectElements(a));
  assertTrue(%HasHoleyElements(a));
34 35 36 37
}

function test2() {
  var a = Array();
38 39
  assertTrue(%HasSmiOrObjectElements(a));
  assertFalse(%HasHoleyElements(a));
40 41 42 43
}

function test3() {
  var a = Array(1,2,3,4,5,6,7);
44 45
  assertTrue(%HasSmiOrObjectElements(a));
  assertFalse(%HasHoleyElements(a));
46 47 48 49
}

function test4() {
  var a = [1, 2, 3, 4];
50 51
  assertTrue(%HasSmiElements(a));
  assertFalse(%HasHoleyElements(a));
52
  var b = [1, 2,, 4];
53 54
  assertTrue(%HasSmiElements(b));
  assertTrue(%HasHoleyElements(b));
55 56 57 58
}

function test5() {
  var a = [1, 2, 3, 4.5];
59 60
  assertTrue(%HasDoubleElements(a));
  assertFalse(%HasHoleyElements(a));
61
  var b = [1,, 3.5, 4];
62 63
  assertTrue(%HasDoubleElements(b));
  assertTrue(%HasHoleyElements(b));
64
  var c = [1, 3.5,, 4];
65 66
  assertTrue(%HasDoubleElements(c));
  assertTrue(%HasHoleyElements(c));
67 68 69 70 71
}

function test6() {
  var x = new Object();
  var a = [1, 2, 3.5, x];
72 73
  assertTrue(%HasObjectElements(a));
  assertFalse(%HasHoleyElements(a));
74 75 76 77 78
  assertEquals(1, a[0]);
  assertEquals(2, a[1]);
  assertEquals(3.5, a[2]);
  assertEquals(x, a[3]);
  var b = [1,, 3.5, x];
79 80
  assertTrue(%HasObjectElements(b));
  assertTrue(%HasHoleyElements(b));
81 82 83 84 85
  assertEquals(1, b[0]);
  assertEquals(undefined, b[1]);
  assertEquals(3.5, b[2]);
  assertEquals(x, b[3]);
  var c = [1, 3.5, x,,];
86 87
  assertTrue(%HasObjectElements(c));
  assertTrue(%HasHoleyElements(c));
88 89 90 91 92 93 94
  assertEquals(1, c[0]);
  assertEquals(3.5, c[1]);
  assertEquals(x, c[2]);
  assertEquals(undefined, c[3]);
}

function test_with_optimization(f) {
95
  %PrepareFunctionForOptimization(f);
96 97 98 99
  for (i = 0; i < 3; ++i) f();
  // Cause the inlined Array() constructor to fall back to the runtime impl.
  %SimulateNewspaceFull();
  f();
100
  %OptimizeFunctionOnNextCall(f);
101 102 103
  f();
  %SimulateNewspaceFull();  // Make sure GC happens.
  f();
104 105
}

106 107 108 109 110 111
test_with_optimization(test1);
test_with_optimization(test2);
test_with_optimization(test3);
test_with_optimization(test4);
test_with_optimization(test5);
test_with_optimization(test6);