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

Unified Diff: test/mjsunit/regress/regress-crbug-465298.js

Issue 1074793003: [turbofan] Fix FrameInspector when deoptimizer is disabled. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 | « src/runtime/runtime-debug.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-465298.js
diff --git a/test/mjsunit/regress/regress-crbug-465298.js b/test/mjsunit/regress/regress-crbug-465298.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b2827b0d2f8fb0e47a10a8b0c4377382fafc049
--- /dev/null
+++ b/test/mjsunit/regress/regress-crbug-465298.js
@@ -0,0 +1,55 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --noturbo-osr --expose-debug-as debug
+
+var stdlib = this;
+var buffer = new ArrayBuffer(64 * 1024);
+var foreign = { thrower: thrower, debugme: debugme }
+
+// Get the Debug object exposed from the debug context global object.
+Debug = debug.Debug;
+
+var listenerCalled = false;
+function listener(event, exec_state, event_data, data) {
+ try {
+ if (event == Debug.DebugEvent.Break) {
+ var frame = exec_state.frame(1);
+ assertEquals(m.foo, frame.func().value());
+ listenerCalled = true;
+ }
+ } catch (e) {
+ print("Caught: " + e + " " + e.stack);
+ };
+}
+
+function thrower() { throw "boom"; }
+function debugme() { Debug.setListener(listener); debugger; }
+
+function Module(stdlib, foreign, heap) {
+ "use asm";
+ var thrower = foreign.thrower;
+ var debugme = foreign.debugme;
+ function foo(i) {
+ i = i|0;
+ var a = 101; // Local variables exist ...
+ var b = 102; // ... to make the debugger ...
+ var c = 103; // ... inspect them during break.
+ if (i > 0) {
+ debugme();
+ i = 23;
+ } else {
+ thrower();
+ i = 42;
+ }
+ return i|0;
+ }
+ return { foo: foo };
+}
+
+var m = Module(stdlib, foreign, buffer);
+
+assertThrows("m.foo(0)");
+assertEquals(23, m.foo(1));
+assertTrue(listenerCalled);
« no previous file with comments | « src/runtime/runtime-debug.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698