blob: 0bedf640b92eb1beab6af35cfbda2e1300acee27 [file] [log] [blame]
Brian Carlstrom73cd2472015-05-18 08:42:58 -07001#
2# Copyright (C) 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Dave Allison22382a42014-09-08 16:33:24 -070015
16# ART debugging. ART uses SIGSEGV signals for internal purposes. To allow
17# gdb to debug programs using ART we need to treat this signal specially. We
18# also set a breakpoint in a libart.so function to stop when the program
19# hits an unexpected breakpoint
20set $art_debug_enabled = 0
21define art-on
22 if $art_debug_enabled == 0
23 # deal with SIGSEGV signals
24 handle SIGSEGV noprint nostop pass
25
26 # set a breakpoint and record its number
27 set breakpoint pending on
28 break art_sigsegv_fault
29 set $art_bpnum = $bpnum
30 commands $art_bpnum
31 silent
32 printf "Caught SIGSEGV in user program\n"
33 end
34 set breakpoint pending auto
35
36 printf "ART debugging mode is enabled.\n"
Christopher Ferris436b7402014-10-03 17:31:41 -070037 printf "If you are debugging a native only process, you need to\n"
38 printf "re-enable normal SIGSEGV handling using this command:\n"
39 printf " handle SIGSEGV print stop\n"
Dave Allison22382a42014-09-08 16:33:24 -070040 set $art_debug_enabled = 1
41 else
42 printf "ART debugging mode is already enabled.\n"
43 end
44end
45
46document art-on
47 Enter ART debugging mode. In ART debugging mode, SIGSEGV signals are ignored
48 by gdb unless they are not handled by ART itself. A breakpoint is
49 set to stop the program when an unexpected SIGSEGV signal is
50 encountered.
51
52 To switch ART debugging mode off, use "art-off"
53end
54
55define art-off
56 if $art_debug_enabled == 1
57 # restore SIGSEGV to its default
58 handle SIGSEGV print stop pass
59
60 # delete our breakpoint
61 delete $art_bpnum
62
63 set $art_debug_enabled = 0
64 printf "ART debugging mode is disabled.\n"
65 end
66end
67
68document art-off
69 Leave ART debugging mode. Signal handling is restored to default settings.
70
71 Use the command "art-on" to enable ART debugging mode.
72end