595cb76374
- deletion of breakpoints - better cleanup of debugger resources Review URL: https://chromiumcodereview.appspot.com//9271008 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3470 260f80e4-7a28-3924-810f-c04153c831b5
200 lines
6.3 KiB
C++
200 lines
6.3 KiB
C++
// Copyright (c) 2012, 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.
|
|
|
|
#include "include/dart_debugger_api.h"
|
|
#include "platform/assert.h"
|
|
#include "vm/dart_api_impl.h"
|
|
#include "vm/unit_test.h"
|
|
|
|
namespace dart {
|
|
|
|
// Only ia32 and x64 can run execution tests.
|
|
#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
|
|
|
static bool breakpoint_hit = false;
|
|
static int breakpoint_hit_counter = 0;
|
|
|
|
static const bool verbose = false;
|
|
|
|
#define EXPECT_NOT_ERROR(handle) \
|
|
if (Dart_IsError(handle)) { \
|
|
OS::Print("Error: %s\n", Dart_GetError(handle)); \
|
|
} \
|
|
EXPECT(!Dart_IsError(handle));
|
|
|
|
|
|
void TestBreakpointHandler(Dart_Breakpoint bpt, Dart_StackTrace trace) {
|
|
const char* expected_trace[] = {"A.foo", "main"};
|
|
const intptr_t expected_trace_length = 2;
|
|
breakpoint_hit = true;
|
|
breakpoint_hit_counter++;
|
|
intptr_t trace_len;
|
|
Dart_Handle res = Dart_StackTraceLength(trace, &trace_len);
|
|
EXPECT_NOT_ERROR(res);
|
|
EXPECT_EQ(expected_trace_length, trace_len);
|
|
for (int i = 0; i < trace_len; i++) {
|
|
Dart_ActivationFrame frame;
|
|
res = Dart_GetActivationFrame(trace, i, &frame);
|
|
EXPECT_NOT_ERROR(res);
|
|
Dart_Handle func_name;
|
|
res = Dart_ActivationFrameInfo(frame, &func_name, NULL, NULL);
|
|
EXPECT_NOT_ERROR(res);
|
|
EXPECT(Dart_IsString(func_name));
|
|
const char* name_chars;
|
|
Dart_StringToCString(func_name, &name_chars);
|
|
EXPECT_STREQ(expected_trace[i], name_chars);
|
|
if (verbose) printf(" >> %d: %s\n", i, name_chars);
|
|
}
|
|
}
|
|
|
|
|
|
TEST_CASE(Debug_Breakpoint) {
|
|
const char* kScriptChars =
|
|
"void moo(s) { }\n"
|
|
"class A {\n"
|
|
" static void foo() {\n"
|
|
" moo('good news');\n"
|
|
" }\n"
|
|
"}\n"
|
|
"void main() {\n"
|
|
" A.foo();\n"
|
|
"}\n";
|
|
|
|
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
|
|
EXPECT(!Dart_IsError(lib));
|
|
|
|
Dart_SetBreakpointHandler(&TestBreakpointHandler);
|
|
|
|
Dart_Handle c_name = Dart_NewString("A");
|
|
Dart_Handle f_name = Dart_NewString("foo");
|
|
Dart_Breakpoint bpt;
|
|
Dart_Handle res = Dart_SetBreakpointAtEntry(lib, c_name, f_name, &bpt);
|
|
EXPECT_NOT_ERROR(res);
|
|
|
|
breakpoint_hit = false;
|
|
Dart_Handle retval = Dart_InvokeStatic(lib,
|
|
Dart_NewString(""),
|
|
Dart_NewString("main"),
|
|
0,
|
|
NULL);
|
|
EXPECT(!Dart_IsError(retval));
|
|
EXPECT(breakpoint_hit == true);
|
|
}
|
|
|
|
|
|
static void DeleteBreakpointHandler(Dart_Breakpoint bpt,
|
|
Dart_StackTrace trace) {
|
|
const char* expected_trace[] = {"foo", "main"};
|
|
const intptr_t expected_trace_length = 2;
|
|
breakpoint_hit_counter++;
|
|
intptr_t trace_len;
|
|
Dart_Handle res = Dart_StackTraceLength(trace, &trace_len);
|
|
EXPECT_NOT_ERROR(res);
|
|
EXPECT_EQ(expected_trace_length, trace_len);
|
|
for (int i = 0; i < trace_len; i++) {
|
|
Dart_ActivationFrame frame;
|
|
res = Dart_GetActivationFrame(trace, i, &frame);
|
|
EXPECT_NOT_ERROR(res);
|
|
Dart_Handle func_name;
|
|
res = Dart_ActivationFrameInfo(frame, &func_name, NULL, NULL);
|
|
EXPECT_NOT_ERROR(res);
|
|
EXPECT(Dart_IsString(func_name));
|
|
const char* name_chars;
|
|
Dart_StringToCString(func_name, &name_chars);
|
|
EXPECT_STREQ(expected_trace[i], name_chars);
|
|
if (verbose) printf(" >> %d: %s\n", i, name_chars);
|
|
}
|
|
// Remove the breakpoint after we've hit it twice
|
|
if (breakpoint_hit_counter == 2) {
|
|
if (verbose) printf("uninstalling breakpoint\n");
|
|
Dart_Handle res = Dart_DeleteBreakpoint(bpt);
|
|
EXPECT_NOT_ERROR(res);
|
|
}
|
|
}
|
|
|
|
|
|
TEST_CASE(Debug_DeleteBreakpoint) {
|
|
const char* kScriptChars =
|
|
"moo(s) { }\n"
|
|
"\n"
|
|
"foo() {\n"
|
|
" moo('good news');\n"
|
|
"}\n"
|
|
"\n"
|
|
"void main() {\n"
|
|
" foo();\n"
|
|
" foo();\n"
|
|
" foo();\n"
|
|
"}\n";
|
|
|
|
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
|
|
EXPECT(!Dart_IsError(lib));
|
|
|
|
Dart_Handle script_url = Dart_NewString(TestCase::url());
|
|
Dart_Handle line_no = Dart_NewInteger(4); // In function 'foo'.
|
|
|
|
Dart_SetBreakpointHandler(&DeleteBreakpointHandler);
|
|
|
|
Dart_Breakpoint bpt;
|
|
Dart_Handle res = Dart_SetBreakpointAtLine(script_url, line_no, &bpt);
|
|
EXPECT_NOT_ERROR(res);
|
|
|
|
// Function main() calls foo() 3 times. On the second iteration, the
|
|
// breakpoint is removed by the handler, so we expect the breakpoint
|
|
// to fire twice only.
|
|
breakpoint_hit_counter = 0;
|
|
Dart_Handle retval = Dart_InvokeStatic(lib,
|
|
Dart_NewString(""),
|
|
Dart_NewString("main"),
|
|
0,
|
|
NULL);
|
|
EXPECT(!Dart_IsError(retval));
|
|
EXPECT(breakpoint_hit_counter == 2);
|
|
}
|
|
|
|
|
|
TEST_CASE(Debug_LookupSourceLine) {
|
|
const char* kScriptChars =
|
|
/*1*/ "class A {\n"
|
|
/*2*/ " static void foo() {\n"
|
|
/*3*/ " moo('good news');\n"
|
|
/*4*/ " }\n"
|
|
/*5*/ "}\n"
|
|
/*6*/ "\n"
|
|
/*7*/ "void main() {\n"
|
|
/*8*/ " A.foo();\n"
|
|
/*9*/ "}\n"
|
|
/*10*/ "\n";
|
|
|
|
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
|
|
EXPECT(!Dart_IsError(lib));
|
|
|
|
const Library& test_lib = Library::CheckedHandle(Api::UnwrapHandle(lib));
|
|
const String& script_url = String::Handle(String::New(TestCase::url()));
|
|
Function& func = Function::Handle();
|
|
|
|
// TODO(hausner): Looking up functions from source and line number
|
|
// needs to be refined. We currently dont find "main" on line 7.
|
|
for (int line = 8; line <= 9; line++) {
|
|
func = test_lib.LookupFunctionInSource(script_url, line);
|
|
EXPECT(!func.IsNull());
|
|
EXPECT_STREQ("main", String::Handle(func.name()).ToCString());
|
|
}
|
|
|
|
func = test_lib.LookupFunctionInSource(script_url, 3);
|
|
EXPECT(!func.IsNull());
|
|
EXPECT_STREQ("foo", String::Handle(func.name()).ToCString());
|
|
|
|
func = test_lib.LookupFunctionInSource(script_url, 1);
|
|
EXPECT(func.IsNull());
|
|
func = test_lib.LookupFunctionInSource(script_url, 6);
|
|
EXPECT(func.IsNull());
|
|
func = test_lib.LookupFunctionInSource(script_url, 10);
|
|
EXPECT(func.IsNull());
|
|
}
|
|
|
|
#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
|
|
|
|
} // namespace dart
|