| OLD | NEW |
| (Empty) | |
| 1 |
| 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 3 // for details. All rights reserved. Use of this source code is governed by a |
| 4 // BSD-style license that can be found in the LICENSE file. |
| 5 // VMOptions=--optimization-counter-threshold=10 --no-use-osr |
| 6 |
| 7 // Test allocation sinking with polymorphic inlining. |
| 8 |
| 9 import "package:expect/expect.dart"; |
| 10 |
| 11 class A { |
| 12 foo(x) => ++x.f; |
| 13 } |
| 14 |
| 15 class B { |
| 16 foo(x) => --x.f; |
| 17 } |
| 18 |
| 19 class C { |
| 20 int f = 0; |
| 21 } |
| 22 |
| 23 test(obj) { |
| 24 var c = new C(); |
| 25 return obj.foo(c); |
| 26 } |
| 27 |
| 28 main() { |
| 29 var a = new A(); |
| 30 var b = new B(); |
| 31 Expect.equals(1, test(a)); |
| 32 Expect.equals(-1, test(b)); |
| 33 for (var i = 0; i < 20; i++) test(a); |
| 34 Expect.equals(1, test(a)); |
| 35 Expect.equals(-1, test(b)); |
| 36 } |
| OLD | NEW |