count-deopt.js 4.76 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 2010 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 29
// Flags: --allow-natives-syntax

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
// Test deopt with count operation on parameter.
var max_smi = 1073741823;
var o = {x:0};

function inc1(x) { x++; o.x = x; }
inc1(max_smi);
assertEquals(max_smi + 1, o.x);

inc1(1.1);
assertEquals(2.1, o.x);


// Test deopt with count operation on named property.
function inc2(p) { p.x++ }

o.x = "42";
inc2(o);
assertEquals(43, o.x);

49
var s = max_smi - 10;
50
o.x = s;
51
for(var i = 0; i < 20; i++) {
52
  inc2(o);
53 54 55
  if (i == 4) {
    %OptimizeFunctionOnNextCall(inc2);
  }
56
}
57
assertEquals(max_smi + 10, o.x);
58 59 60 61 62 63 64 65 66


// Test deopt with count operation on keyed property.
function inc3(a, b) { a[b]++; }

o = ["42"];
inc3(o, 0);
assertEquals(43, o[0]);

67
var s = max_smi - 10;
68
o[0] = s;
69
for(var i = 0; i < 20; i++) {
70
  inc3(o, 0);
71 72 73
  if (i == 4) {
    %OptimizeFunctionOnNextCall(inc3);
  }
74
}
75
assertEquals(max_smi + 10, o[0]);
76 77 78

inc3(o,"0");

79
assertEquals(max_smi + 11, o[0]);
80 81 82

// Test bailout when accessing a non-existing array element.
o[0] = 0;
83
for(var i = 0; i < 5; i++) {
84 85
  inc3(o, 0);
}
86 87 88
%OptimizeFunctionOnNextCall(inc3);
inc3(o, 0);
inc3(o, 1);
89 90 91

// Test bailout with count operation in a value context.
function inc4(x,y) { return (x++) + y; }
92 93 94
for (var i = 0; i < 5; ++i) assertEquals(3, inc4(2, 1));
%OptimizeFunctionOnNextCall(inc4);
inc4(2, 1);
95 96 97
assertEquals(3.1, inc4(2, 1.1));

function inc5(x,y) { return (++x) + y; }
98 99 100
for (var i = 0; i < 5; ++i) assertEquals(4, inc5(2, 1));
%OptimizeFunctionOnNextCall(inc5);
assertEquals(4, inc5(2, 1));
101 102 103 104 105
assertEquals(4.1, inc5(2, 1.1));
assertEquals(4.1, inc5(2.1, 1));

function inc6(o,y) { return (o.x++) + y; }
o = {x:0};
106
for (var i = 0; i < 5; ++i) {
107 108 109
  o.x = 42;
  assertEquals(43, inc6(o, 1));
}
110 111 112
%OptimizeFunctionOnNextCall(inc6);
o.x = 42;
assertEquals(43, inc6(o, 1));
113 114 115 116 117 118 119
o.x = 42;
assertEquals(43.1, inc6(o, 1.1));
o.x = 42.1;
assertEquals(43.1, inc6(o, 1));

function inc7(o,y) { return (++o.x) + y; }
o = {x:0};
120
for (var i = 0; i < 5; ++i) {
121 122 123
  o.x = 42;
  assertEquals(44, inc7(o, 1));
}
124 125 126
%OptimizeFunctionOnNextCall(inc7);
o.x = 42;
assertEquals(44, inc7(o, 1));
127 128 129 130 131 132 133
o.x = 42;
assertEquals(44.1, inc7(o, 1.1));
o.x = 42.1;
assertEquals(44.1, inc7(o, 1));

function inc8(o,y) { return (o[0]++) + y; }
var q = [0];
134
for (var i = 0; i < 5; ++i) {
135 136 137
  q[0] = 42;
  assertEquals(43, inc8(q, 1));
}
138 139 140
%OptimizeFunctionOnNextCall(inc8);
q[0] = 42;
assertEquals(43, inc8(q, 1));
141 142 143 144 145 146 147
q[0] = 42;
assertEquals(43.1, inc8(q, 1.1));
q[0] = 42.1;
assertEquals(43.1, inc8(q, 1));

function inc9(o,y) { return (++o[0]) + y; }
q = [0];
148
for (var i = 0; i < 5; ++i) {
149 150 151
  q[0] = 42;
  assertEquals(44, inc9(q, 1));
}
152 153 154
%OptimizeFunctionOnNextCall(inc9);
q[0] = 42;
assertEquals(44, inc9(q, 1));
155 156 157 158 159 160 161 162 163
q[0] = 42;
assertEquals(44.1, inc9(q, 1.1));
q[0] = 42.1;
assertEquals(44.1, inc9(q, 1));

// Test deopt because of a failed map check.
function inc10(p) { return p.x++ }
var g1 = {x:0};
var g2 = {y:0, x:42}
164
for (var i = 0; i < 5; ++i) {
165 166 167 168
  g1.x = 42;
  assertEquals(42, inc10(g1));
  assertEquals(43, g1.x);
}
169 170 171 172
%OptimizeFunctionOnNextCall(inc10);
g1.x = 42;
assertEquals(42, inc10(g1));
assertEquals(43, g1.x);
173 174 175 176 177 178 179 180
assertEquals(42, inc10(g2));
assertEquals(43, g2.x);

// Test deoptimization with postfix operation in a value context.
function inc11(a) { return a[this.x++]; }
var g3 = {x:null, f:inc11};
var g4 = [42];
assertEquals(42, g3.f(g4));