inline-accessors.js 11.6 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 --inline-accessors --max-opt-count=100
29 30 31 32 33 34

var accessorCallCount, setterArgument, setterValue, obj, forceDeopt;

// -----------------------------------------------------------------------------
// Helpers for testing inlining of getters.

35 36
function TestInlinedGetter(context, obj, expected) {
  forceDeopt = { deopt: 0 };
37 38
  accessorCallCount = 0;

39
  assertEquals(expected, context(obj));
40 41
  assertEquals(1, accessorCallCount);

42
  assertEquals(expected, context(obj));
43 44 45
  assertEquals(2, accessorCallCount);

  %OptimizeFunctionOnNextCall(context);
46
  assertEquals(expected, context(obj));
47 48
  assertEquals(3, accessorCallCount);

49 50 51
  forceDeopt = { /* empty*/ };
  assertEquals(expected, context(obj));
  assertEquals(4, accessorCallCount);
52 53 54
}


55 56 57 58 59 60 61 62 63
function value_context_for_getter(obj) {
  return obj.getterProperty;
}

function test_context_for_getter(obj) {
  if (obj.getterProperty) {
    return 111;
  } else {
    return 222;
64
  }
65
}
66

67 68 69 70 71 72 73 74 75 76 77 78
function effect_context_for_getter(obj) {
  obj.getterProperty;
  return 5678;
}

function TryGetter(context, getter, obj, expected, expectException) {
  try {
    TestInlinedGetter(context, obj, expected);
    assertFalse(expectException);
  } catch (exception) {
    assertTrue(expectException);
    assertEquals(7, exception.stack.split('\n').length);
79
  }
80 81 82 83 84 85 86 87 88 89
  %DeoptimizeFunction(context);
  %ClearFunctionTypeFeedback(context);
  %ClearFunctionTypeFeedback(getter);
}

function TestGetterInAllContexts(getter, obj, expected, expectException) {
  TryGetter(value_context_for_getter, getter, obj, expected, expectException);
  TryGetter(test_context_for_getter, getter, obj, expected ? 111 : 222,
            expectException);
  TryGetter(effect_context_for_getter, getter, obj, 5678, expectException);
90 91 92 93 94 95 96 97
}

// -----------------------------------------------------------------------------
// Test getter returning something 'true'ish in all contexts.

function getter1() {
  assertSame(obj, this);
  accessorCallCount++;
98
  forceDeopt.deopt;
99 100 101 102 103
  return 1234;
}

function ConstrG1() { }
obj = Object.defineProperty(new ConstrG1(), "getterProperty", { get: getter1 });
104
TestGetterInAllContexts(getter1, obj, 1234, false);
105
obj = Object.create(obj);
106
TestGetterInAllContexts(getter1, obj, 1234, false);
107 108 109 110 111 112 113

// -----------------------------------------------------------------------------
// Test getter returning false in all contexts.

function getter2() {
  assertSame(obj, this);
  accessorCallCount++;
114
  forceDeopt.deopt;
115 116 117 118 119
  return false;
}

function ConstrG2() { }
obj = Object.defineProperty(new ConstrG2(), "getterProperty", { get: getter2 });
120
TestGetterInAllContexts(getter2, obj, false, false);
121
obj = Object.create(obj);
122
TestGetterInAllContexts(getter2, obj, false, false);
123 124 125 126 127 128 129

// -----------------------------------------------------------------------------
// Test getter without a return in all contexts.

function getter3() {
  assertSame(obj, this);
  accessorCallCount++;
130
  forceDeopt.deopt;
131 132 133 134
}

function ConstrG3() { }
obj = Object.defineProperty(new ConstrG3(), "getterProperty", { get: getter3 });
135
TestGetterInAllContexts(getter3, obj, undefined, false);
136
obj = Object.create(obj);
137
TestGetterInAllContexts(getter3, obj, undefined, false);
138 139 140 141 142 143 144 145

// -----------------------------------------------------------------------------
// Test getter with too many arguments without a return in all contexts.

function getter4(a) {
  assertSame(obj, this);
  assertEquals(undefined, a);
  accessorCallCount++;
146
  forceDeopt.deopt;
147 148 149 150
}

function ConstrG4() { }
obj = Object.defineProperty(new ConstrG4(), "getterProperty", { get: getter4 });
151
TestGetterInAllContexts(getter4, obj, undefined, false);
152
obj = Object.create(obj);
153
TestGetterInAllContexts(getter4, obj, undefined, false);
154 155 156 157 158 159 160 161

// -----------------------------------------------------------------------------
// Test getter with too many arguments with a return in all contexts.

function getter5(a) {
  assertSame(obj, this);
  assertEquals(undefined, a);
  accessorCallCount++;
162
  forceDeopt.deopt;
163 164 165 166 167
  return 9876;
}

function ConstrG5() { }
obj = Object.defineProperty(new ConstrG5(), "getterProperty", { get: getter5 });
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
TestGetterInAllContexts(getter5, obj, 9876, false);
obj = Object.create(obj);
TestGetterInAllContexts(getter5, obj, 9876, false);

// -----------------------------------------------------------------------------
// Test getter which throws from optimized code.

function getter6() {
  assertSame(obj, this);
  accessorCallCount++;
  forceDeopt.deopt;
  if (accessorCallCount == 4) { 123 in null; }
  return 13579;
}

function ConstrG6() { }
obj = Object.defineProperty(new ConstrG6(), "getterProperty", { get: getter6 });
TestGetterInAllContexts(getter6, obj, 13579, true);
186
obj = Object.create(obj);
187
TestGetterInAllContexts(getter6, obj, 13579, true);
188 189 190 191

// -----------------------------------------------------------------------------
// Helpers for testing inlining of setters.

192 193
function TestInlinedSetter(context, obj, value, expected) {
  forceDeopt = { deopt: 0 };
194 195 196
  accessorCallCount = 0;
  setterArgument = value;

197
  assertEquals(expected, context(obj, value));
198 199 200
  assertEquals(value, setterValue);
  assertEquals(1, accessorCallCount);

201
  assertEquals(expected, context(obj, value));
202 203 204 205
  assertEquals(value, setterValue);
  assertEquals(2, accessorCallCount);

  %OptimizeFunctionOnNextCall(context);
206
  assertEquals(expected, context(obj, value));
207 208 209
  assertEquals(value, setterValue);
  assertEquals(3, accessorCallCount);

210 211 212 213
  forceDeopt = { /* empty*/ };
  assertEquals(expected, context(obj, value));
  assertEquals(value, setterValue);
  assertEquals(4, accessorCallCount);
214 215
}

216 217 218 219 220 221 222 223 224
function value_context_for_setter(obj, value) {
  return obj.setterProperty = value;
}

function test_context_for_setter(obj, value) {
  if (obj.setterProperty = value) {
    return 333;
  } else {
    return 444;
225
  }
226 227 228 229 230 231
}

function effect_context_for_setter(obj, value) {
  obj.setterProperty = value;
  return 666;
}
232

233 234 235 236 237 238 239
function TrySetter(context, setter, obj, expectException, value, expected) {
  try {
    TestInlinedSetter(context, obj, value, expected);
    assertFalse(expectException);
  } catch (exception) {
    assertTrue(expectException);
    assertEquals(7, exception.stack.split('\n').length);
240
  }
241 242 243 244 245 246 247 248 249 250
  %DeoptimizeFunction(context);
  %ClearFunctionTypeFeedback(context);
  %ClearFunctionTypeFeedback(setter);
}

function TestSetterInAllContexts(setter, obj, expectException) {
  TrySetter(value_context_for_setter, setter, obj, expectException, 111, 111);
  TrySetter(test_context_for_setter, setter, obj, expectException, true, 333);
  TrySetter(test_context_for_setter, setter, obj, expectException, false, 444);
  TrySetter(effect_context_for_setter, setter, obj, expectException, 555, 666);
251 252 253 254 255 256 257 258
}

// -----------------------------------------------------------------------------
// Test setter without a return in all contexts.

function setter1(value) {
  assertSame(obj, this);
  accessorCallCount++;
259
  forceDeopt.deopt;
260 261 262 263 264
  setterValue = value;
}

function ConstrS1() { }
obj = Object.defineProperty(new ConstrS1(), "setterProperty", { set: setter1 });
265
TestSetterInAllContexts(setter1, obj, false);
266
obj = Object.create(obj);
267
TestSetterInAllContexts(setter1, obj, false);
268 269 270 271 272 273 274

// -----------------------------------------------------------------------------
// Test setter returning something different than the RHS in all contexts.

function setter2(value) {
  assertSame(obj, this);
  accessorCallCount++;
275
  forceDeopt.deopt;
276 277 278 279 280 281
  setterValue = value;
  return 1000000;
}

function ConstrS2() { }
obj = Object.defineProperty(new ConstrS2(), "setterProperty", { set: setter2 });
282
TestSetterInAllContexts(setter2, obj, false);
283
obj = Object.create(obj);
284
TestSetterInAllContexts(setter2, obj, false);
285 286 287 288 289 290 291

// -----------------------------------------------------------------------------
// Test setter with too few arguments without a return in all contexts.

function setter3() {
  assertSame(obj, this);
  accessorCallCount++;
292
  forceDeopt.deopt;
293 294 295 296 297
  setterValue = setterArgument;
}

function ConstrS3() { }
obj = Object.defineProperty(new ConstrS3(), "setterProperty", { set: setter3 });
298
TestSetterInAllContexts(setter3, obj, false);
299
obj = Object.create(obj);
300
TestSetterInAllContexts(setter3, obj, false);
301 302 303 304 305 306 307

// -----------------------------------------------------------------------------
// Test setter with too few arguments with a return in all contexts.

function setter4() {
  assertSame(obj, this);
  accessorCallCount++;
308
  forceDeopt.deopt;
309 310 311 312 313 314
  setterValue = setterArgument;
  return 2000000;
}

function ConstrS4() { }
obj = Object.defineProperty(new ConstrS4(), "setterProperty", { set: setter4 });
315
TestSetterInAllContexts(setter4, obj, false);
316
obj = Object.create(obj);
317
TestSetterInAllContexts(setter4, obj, false);
318 319 320 321 322 323 324 325

// -----------------------------------------------------------------------------
// Test setter with too many arguments without a return in all contexts.

function setter5(value, foo) {
  assertSame(obj, this);
  assertEquals(undefined, foo);
  accessorCallCount++;
326
  forceDeopt.deopt;
327 328 329 330 331
  setterValue = value;
}

function ConstrS5() { }
obj = Object.defineProperty(new ConstrS5(), "setterProperty", { set: setter5 });
332
TestSetterInAllContexts(setter5, obj, false);
333
obj = Object.create(obj);
334
TestSetterInAllContexts(setter5, obj, false);
335 336 337 338 339 340 341 342

// -----------------------------------------------------------------------------
// Test setter with too many arguments with a return in all contexts.

function setter6(value, foo) {
  assertSame(obj, this);
  assertEquals(undefined, foo);
  accessorCallCount++;
343
  forceDeopt.deopt;
344 345 346 347 348 349
  setterValue = value;
  return 3000000;
}

function ConstrS6() { }
obj = Object.defineProperty(new ConstrS6(), "setterProperty", { set: setter6 });
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
TestSetterInAllContexts(setter6, obj, false);
obj = Object.create(obj);
TestSetterInAllContexts(setter6, obj, false);

// -----------------------------------------------------------------------------
// Test setter which throws from optimized code.

function setter7(value) {
  accessorCallCount++;
  forceDeopt.deopt;
  if (accessorCallCount == 4) { 123 in null; }
  setterValue = value;
}

function ConstrS7() { }
obj = Object.defineProperty(new ConstrS7(), "setterProperty", { set: setter7 });
TestSetterInAllContexts(setter7, obj, true);
367
obj = Object.create(obj);
368
TestSetterInAllContexts(setter7, obj, true);