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

Unified Diff: tests/language/vm/lazy_deopt_with_exception_and_stacktrace_test.dart

Issue 2374173002: Revert "Pass new pool pointer to the JumpToException stub instead of reloading in through the frame… (Closed)
Patch Set: Created 4 years, 3 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 | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/vm/lazy_deopt_with_exception_and_stacktrace_test.dart
diff --git a/tests/language/vm/lazy_deopt_with_exception_and_stacktrace_test.dart b/tests/language/vm/lazy_deopt_with_exception_and_stacktrace_test.dart
deleted file mode 100644
index 8e94290b69250a373787968b94a3f30f78cceff1..0000000000000000000000000000000000000000
--- a/tests/language/vm/lazy_deopt_with_exception_and_stacktrace_test.dart
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright (c) 2016, 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.
-// Test deoptimization on an optimistically hoisted smi check.
-// VMOptions=--optimization-counter-threshold=10 --no-background-compilation --enable-inlining-annotations
-
-// Test that lazy deoptimization works if the program returns to a function
-// that is scheduled for lazy deoptimization via an exception.
-
-import 'package:expect/expect.dart';
-
-class C {
- var x = 42;
-}
-
-
-const NeverInline = "NeverInline";
-
-@NeverInline
-AA(C c, bool b) {
- if (b) {
- c.x = 2.5;
- throw 123;
- }
-}
-
-@NeverInline
-T1(C c, bool b) {
- try {
- AA(c, b);
- } on dynamic catch (e, st) {
- print(e);
- print(st);
- }
- return c.x + 1;
-}
-
-
-@NeverInline
-T2(C c, bool b) {
- try {
- AA(c, b);
- } on String catch(e, st) {
- print(e);
- print(st);
- Expect.isTrue(false);
- } on int catch(e, st) {
- Expect.equals(e, 123);
- Expect.equals(b, true);
- Expect.equals(c.x, 2.5);
- print(st);
- }
- return c.x + 1;
-}
-
-
-main() {
- var c = new C();
- for (var i = 0; i < 10000; ++i) {
- T1(c, false);
- T2(c, false);
- }
- Expect.equals(43, T1(c, false));
- Expect.equals(43, T2(c, false));
- Expect.equals(3.5, T1(c, true));
- Expect.equals(3.5, T2(c, true));
-}
« no previous file with comments | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698