186c406b19
PR c++/9593: * thread.c (clear_thread_inferior_resources): Call delete_longjmp_breakpoint. * infrun.c (handle_inferior_event): Handle exception breakpoints. (handle_inferior_event): Likewise. (insert_exception_resume_breakpoint): New function. (check_exception_resume): Likewise. * inferior.h (delete_longjmp_breakpoint_cleanup): Declare. * infcmd.c (delete_longjmp_breakpoint_cleanup): No longer static. (step_1): Set thread's initiating frame. (until_next_continuation): New function. (until_next_command): Support exception breakpoints. (finish_command_continuation): Delete longjmp breakpoint. (finish_forward): Support exception breakpoints. * gdbthread.h (struct thread_info) <initiating_frame>: New field. * breakpoint.h (enum bptype) <bp_exception, bp_exception_resume, bp_exception_master>: New constants. (struct bpstat_what) <is_longjmp>: New field. (set_longjmp_breakpoint): Update. * breakpoint.c (create_exception_master_breakpoint): New function. (update_breakpoints_after_exec): Handle bp_exception_master. Call create_exception_master_breakpoint. (print_it_typical): Handle bp_exception_master, bp_exception. (bpstat_stop_status): Handle bp_exception_master. (bpstat_what): Handle bp_exception_master, bp_exception, bp_exception_resume. (bptype_string): Likewise. (print_one_breakpoint_location): Likewise. (allocate_bp_location): Likewise. (set_longjmp_breakpoint): Handle exception breakpoints. Change interface. (delete_longjmp_breakpoint): Handle exception breakpoints. (mention): Likewise. (struct until_break_command_continuation_args) <thread_num>: New field. (until_break_command_continuation): Call delete_longjmp_breakpoint. (until_break_command): Support exception breakpoints. (delete_command): Likewise. (breakpoint_re_set_one): Likewise. (breakpoint_re_set): Likewise. gdb/testuite * gdb.java/jnpe.java: New file. * gdb.java/jnpe.exp: New file. * gdb.cp/nextoverthrow.exp: New file. * gdb.cp/nextoverthrow.cc: New file.
74 lines
2.3 KiB
Text
74 lines
2.3 KiB
Text
# Copyright 2009, 2010 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
if $tracelevel then {
|
|
strace $tracelevel
|
|
}
|
|
|
|
load_lib "java.exp"
|
|
|
|
set testfile "jnpe"
|
|
set srcfile ${testfile}.java
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
if { [compile_java_from_source ${srcdir}/$subdir/${srcfile} ${binfile} "-g"] != "" } {
|
|
untested "Couldn't compile ${srcdir}/$subdir/${srcfile}"
|
|
return -1
|
|
}
|
|
|
|
# Start with a fresh gdb.
|
|
|
|
clean_restart $testfile
|
|
|
|
set line [gdb_get_line_number "break here" $testfile.java]
|
|
if ![runto "$testfile.java:$line"] then {
|
|
perror "couldn't run to jnpe.main"
|
|
continue
|
|
}
|
|
|
|
# See whether we have the needed unwinder hooks.
|
|
set ok 1
|
|
gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook in java" {
|
|
-re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
|
|
pass "check for unwinder hook in java"
|
|
}
|
|
-re "No symbol .* in current context.?\r\n$gdb_prompt $" {
|
|
# Pass the test so we don't get bogus fails in the results.
|
|
setup_xfail *-*-*
|
|
fail "check for unwinder hook in java"
|
|
set ok 0
|
|
}
|
|
}
|
|
if {!$ok} {
|
|
unsupported "jnpe.exp could not find _Unwind_DebugHook"
|
|
return -1
|
|
}
|
|
|
|
gdb_test "handle SIGSEGV nostop noprint" \
|
|
"SIGSEGV.*fault" \
|
|
"disable SIGSEGV for next-over-NPE"
|
|
|
|
# The line where we stop differs according to gcj; just check that we
|
|
# did not already execute the catch point. This is done in a somewhat
|
|
# funny way due to other gcj debuginfo oddities that don't
|
|
# meaningfully affect the user's experience.
|
|
|
|
gdb_test "next" \
|
|
".*" \
|
|
"next over NPE"
|
|
|
|
set line [gdb_get_line_number "stop point"]
|
|
gdb_breakpoint $line
|
|
gdb_test "continue" "Continuing.\[\r\n\]*success\[\r\n\]*Breakpoint .*:$line\[\r\n\]*.*// stop point\[\r\n\]*" \
|
|
"continue to success for next-over-NPE"
|