e6b8a47f6d
Allocation sinking does not handle the case of optimized try-catch yet. I added a TODO to support it at a later point. BUG=https://code.google.com/p/dart/issues/detail?id=11873 TEST=tests/language/try_catch_optimized2_test.dart R=srdjan@google.com Review URL: https://codereview.chromium.org//19462004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25146 260f80e4-7a28-3924-810f-c04153c831b5
32 lines
641 B
Dart
32 lines
641 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
// VMOptions=--optimization-counter-threshold=10 --no-use-osr
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
// Test allocation sinking with optimized try-catch.
|
|
|
|
bar() { // Should not be inlined.
|
|
try {
|
|
} finally { }
|
|
}
|
|
|
|
foo(a) {
|
|
var r = 0;
|
|
for (var i in a) {
|
|
r += i;
|
|
}
|
|
try {
|
|
bar();
|
|
} finally {
|
|
}
|
|
return r;
|
|
}
|
|
|
|
main() {
|
|
var a = [1,2,3];
|
|
for (var i = 0; i < 20; i++) foo(a);
|
|
Expect.equals(6, foo(a));
|
|
}
|