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

Unified Diff: tests/language/deopt_inlined_function_lazy_test.dart

Issue 19034002: Add VMOptions to optimize tests that need to be (Part I). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/deopt_hoisted_smi_check_vm_test.dart ('k') | tests/language/deopt_no_feedback_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/deopt_inlined_function_lazy_test.dart
===================================================================
--- tests/language/deopt_inlined_function_lazy_test.dart (revision 24922)
+++ tests/language/deopt_inlined_function_lazy_test.dart (working copy)
@@ -2,7 +2,7 @@
// 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.
// Test lazy deoptimization from within an inlined function.
-// VMOptions=--deoptimize_alot
+// VMOptions=--deoptimize_alot --optimization-counter-threshold=10 --no-use-osr
import "package:expect/expect.dart";
@@ -25,7 +25,7 @@
main() {
Expect.equals(42, foo(1));
- for (var i = 0; i < 2000; i++) foo(7);
+ for (var i = 0; i < 20; i++) foo(7);
Expect.equals(42, foo(2));
// Call the runtime to trigger lazy deopt with foo/bar on the stack.
Expect.equals(42, foo(-1));
« no previous file with comments | « tests/language/deopt_hoisted_smi_check_vm_test.dart ('k') | tests/language/deopt_no_feedback_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698