Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: tests/language/allocation_sinking_inlining_test.dart

Issue 21272003: Fix crash bug in the polymorphic inlining. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: fixed one more corner case Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/flow_graph_inliner.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_inliner.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698