2012-01-24 08:43:12 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2011-06-29 13:02:00 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2016-11-11 12:07:41 +00:00
|
|
|
// Flags: --expose-gc
|
2012-08-10 12:26:33 +00:00
|
|
|
|
2011-06-29 13:02:00 +00:00
|
|
|
Debug = debug.Debug
|
|
|
|
|
2011-07-08 08:55:26 +00:00
|
|
|
var listenerComplete = false;
|
2018-03-21 10:15:59 +00:00
|
|
|
var exceptionThrown = false;
|
2011-07-08 08:55:26 +00:00
|
|
|
|
|
|
|
var testingConstructCall = false;
|
2011-06-29 13:02:00 +00:00
|
|
|
|
2012-01-24 08:43:12 +00:00
|
|
|
var expected = [
|
2016-11-11 12:07:41 +00:00
|
|
|
{ locals: {i: 0, x0: 3, y0: 4, a0: 1, b0: 2},
|
2012-08-10 12:26:33 +00:00
|
|
|
args: { names: ["i", "x0", "y0"], values: [0, 3, 4] } },
|
2016-11-11 12:07:41 +00:00
|
|
|
{ locals: {i: 1, x1: 5, y1: 6, a1: 3, b1: 4},
|
2012-08-10 12:26:33 +00:00
|
|
|
args: { names: ["i", "x1", "y1"], values: [1, 5, 6] } },
|
2016-11-11 12:07:41 +00:00
|
|
|
{ locals: {i: 2, a2: 5, b2: 6},
|
2012-08-10 12:26:33 +00:00
|
|
|
args: { names: ["i"], values: [2] } },
|
2016-11-11 12:07:41 +00:00
|
|
|
{ locals: {i: 3, x3: 9, y3: 10, z3: undefined, a3: 7, b3: 8},
|
2012-08-10 12:26:33 +00:00
|
|
|
args: { names: ["i", "x3", "y3", "z3"], values: [3, 9, 10, undefined] } },
|
2016-11-11 12:07:41 +00:00
|
|
|
{ locals: {i: 4, x4: 11, y4: 12, a4: 9, b4: 10},
|
2012-08-10 12:26:33 +00:00
|
|
|
args: { names: ["i", "x4", "y4"], values: [4, 11, 12] } }
|
2012-01-24 08:43:12 +00:00
|
|
|
];
|
|
|
|
|
2011-06-29 13:02:00 +00:00
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
|
|
try {
|
|
|
|
if (event == Debug.DebugEvent.Break)
|
|
|
|
{
|
|
|
|
assertEquals(6, exec_state.frameCount());
|
|
|
|
|
|
|
|
for (var i = 0; i < exec_state.frameCount(); i++) {
|
|
|
|
var frame = exec_state.frame(i);
|
|
|
|
if (i < exec_state.frameCount() - 1) {
|
2012-01-24 08:43:12 +00:00
|
|
|
var expected_args = expected[i].args;
|
|
|
|
var expected_locals = expected[i].locals;
|
|
|
|
|
|
|
|
// All frames except the bottom one have expected locals.
|
|
|
|
var locals = {};
|
|
|
|
for (var j = 0; j < frame.localCount(); j++) {
|
|
|
|
locals[frame.localName(j)] = frame.localValue(j).value();
|
|
|
|
}
|
|
|
|
assertPropertiesEqual(expected_locals, locals);
|
|
|
|
|
2014-11-17 17:57:56 +00:00
|
|
|
// All frames except the bottom one have three scopes.
|
|
|
|
assertEquals(3, frame.scopeCount());
|
2011-07-13 12:49:27 +00:00
|
|
|
assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
|
2014-11-17 17:57:56 +00:00
|
|
|
assertEquals(debug.ScopeType.Script, frame.scope(1).scopeType());
|
|
|
|
assertEquals(debug.ScopeType.Global, frame.scope(2).scopeType());
|
2012-01-24 08:43:12 +00:00
|
|
|
|
|
|
|
Object.keys(expected_locals).forEach(function (name) {
|
2012-08-10 12:26:33 +00:00
|
|
|
assertEquals(expected_locals[name],
|
|
|
|
frame.scope(0).scopeObject().value()[name]);
|
2012-01-24 08:43:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
for (var j = 0; j < expected_args.names.length; j++) {
|
|
|
|
var arg_name = expected_args.names[j];
|
|
|
|
var arg_value = expected_args.values[j];
|
2012-08-10 12:26:33 +00:00
|
|
|
assertEquals(arg_value,
|
|
|
|
frame.scope(0).scopeObject().value()[arg_name]);
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
2011-07-13 12:49:27 +00:00
|
|
|
|
|
|
|
// Evaluate in the inlined frame.
|
2012-01-24 08:43:12 +00:00
|
|
|
Object.keys(expected_locals).forEach(function (name) {
|
|
|
|
assertEquals(expected_locals[name], frame.evaluate(name).value());
|
|
|
|
});
|
|
|
|
|
|
|
|
for (var j = 0; j < expected_args.names.length; j++) {
|
|
|
|
var arg_name = expected_args.names[j];
|
|
|
|
var arg_value = expected_args.values[j];
|
|
|
|
assertEquals(arg_value, frame.evaluate(arg_name).value());
|
|
|
|
assertEquals(arg_value, frame.evaluate('arguments['+j+']').value());
|
|
|
|
}
|
2011-07-13 12:49:27 +00:00
|
|
|
} else {
|
2014-11-17 17:57:56 +00:00
|
|
|
// The bottom frame only have the script scope and the global scope.
|
|
|
|
assertEquals(2, frame.scopeCount());
|
|
|
|
assertEquals(debug.ScopeType.Script, frame.scope(0).scopeType());
|
|
|
|
assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType());
|
2011-06-29 13:02:00 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 13:02:17 +00:00
|
|
|
// Check the frame function.
|
|
|
|
switch (i) {
|
2016-11-11 12:07:41 +00:00
|
|
|
case 0: assertEquals("h", frame.func().name()); break;
|
|
|
|
case 1: assertEquals("g3", frame.func().name()); break;
|
|
|
|
case 2: assertEquals("g2", frame.func().name()); break;
|
|
|
|
case 3: assertEquals("g1", frame.func().name()); break;
|
|
|
|
case 4: assertEquals("f", frame.func().name()); break;
|
2011-07-06 13:02:17 +00:00
|
|
|
case 5: break;
|
|
|
|
default: assertUnreachable();
|
|
|
|
}
|
2011-06-29 13:02:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Indicate that all was processed.
|
|
|
|
listenerComplete = true;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2018-03-21 10:15:59 +00:00
|
|
|
exceptionThrown = true;
|
2011-06-29 13:02:00 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2012-01-24 08:43:12 +00:00
|
|
|
for (var i = 0; i < 4; i++) f(expected.length - 1, 11, 12);
|
2011-06-29 13:02:00 +00:00
|
|
|
%OptimizeFunctionOnNextCall(f);
|
2012-01-24 08:43:12 +00:00
|
|
|
f(expected.length - 1, 11, 12);
|
2011-06-29 13:02:00 +00:00
|
|
|
|
|
|
|
// Add the debug event listener.
|
|
|
|
Debug.setListener(listener);
|
|
|
|
|
2012-01-24 08:43:12 +00:00
|
|
|
function h(i, x0, y0) {
|
|
|
|
var a0 = expected[i].locals.a0;
|
|
|
|
var b0 = expected[i].locals.b0;
|
2011-06-29 13:02:00 +00:00
|
|
|
debugger; // Breakpoint.
|
2013-06-04 16:41:24 +00:00
|
|
|
return a0 + b0;
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function g3(i, x1, y1) {
|
|
|
|
var a1 = expected[i].locals.a1;
|
|
|
|
var b1 = expected[i].locals.b1;
|
|
|
|
h(i - 1, a1, b1);
|
2013-06-04 16:41:24 +00:00
|
|
|
return a1 + b1;
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function g2(i) {
|
|
|
|
var a2 = expected[i].locals.a2;
|
|
|
|
var b2 = expected[i].locals.b2;
|
|
|
|
g3(i - 1, a2, b2);
|
2013-06-04 16:41:24 +00:00
|
|
|
return a2 + b2;
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function g1(i, x3, y3, z3) {
|
|
|
|
var a3 = expected[i].locals.a3;
|
|
|
|
var b3 = expected[i].locals.b3;
|
2012-02-28 09:05:55 +00:00
|
|
|
new g2(i - 1, a3, b3);
|
2013-06-04 16:41:24 +00:00
|
|
|
return a3 + b3;
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function f(i, x4, y4) {
|
|
|
|
var a4 = expected[i].locals.a4;
|
|
|
|
var b4 = expected[i].locals.b4;
|
|
|
|
g1(i - 1, a4, b4);
|
2013-06-04 16:41:24 +00:00
|
|
|
return a4 + b4;
|
2012-01-24 08:43:12 +00:00
|
|
|
}
|
2011-06-29 13:02:00 +00:00
|
|
|
|
2011-07-08 08:55:26 +00:00
|
|
|
// Test calling f normally and as a constructor.
|
2012-01-24 08:43:12 +00:00
|
|
|
f(expected.length - 1, 11, 12);
|
|
|
|
f(expected.length - 1, 11, 12, 0);
|
2011-07-08 08:55:26 +00:00
|
|
|
testingConstructCall = true;
|
2012-01-24 08:43:12 +00:00
|
|
|
new f(expected.length - 1, 11, 12);
|
|
|
|
new f(expected.length - 1, 11, 12, 0);
|
2011-06-29 13:02:00 +00:00
|
|
|
|
2012-02-28 09:05:55 +00:00
|
|
|
// Make sure that the debug event listener was invoked.
|
2018-03-21 10:15:59 +00:00
|
|
|
assertFalse(exceptionThrown, "exception in listener");
|
2011-06-29 13:02:00 +00:00
|
|
|
assertTrue(listenerComplete);
|
|
|
|
|
2012-02-28 09:05:55 +00:00
|
|
|
// Throw away type information for next run.
|
|
|
|
gc();
|
|
|
|
|
2011-06-29 13:02:00 +00:00
|
|
|
Debug.setListener(null);
|