1 # Copyright
2011-2022 Free Software Foundation
, Inc.
2 # This
program is free software
; you can redistribute it and
/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation
; either version
3 of the License
, or
5 #
(at your option
) any later version.
7 # This
program is distributed in the hope that it will be useful
,
8 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License
for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this
program.
If not
, see
<http
://www.gnu.org
/licenses
/>.
15 load_lib
"trace-support.exp"
17 if {[skip_shlib_tests
]} {
22 set executable $testfile
23 set expfile $testfile.exp
25 # Some targets have leading underscores
on assembly symbols.
26 set additional_flags
[gdb_target_symbol_prefix_flags
]
28 if ![gdb_trace_common_supports_arch
] {
29 unsupported
"no trace-common.h support for arch"
33 if [prepare_for_testing
"failed to prepare" $executable $srcfile \
34 [list debug $additional_flags
]] {
42 if ![gdb_target_supports_trace
] {
43 unsupported
"target does not support trace"
47 set libipa
[get_in_proc_agent
]
48 set remote_libipa
[gdb_load_shlib $libipa
]
50 # Can
't use prepare_for_testing, because that splits compiling into
51 # building objects and then linking, and we'd fail with
"linker input
52 # file unused because linking not done
" when building the object.
54 if { [gdb_compile
"$srcdir/$subdir/$srcfile" $binfile \
55 executable
[list debug nopie $additional_flags shlib
=$libipa
] ] != "" } {
56 untested
"failed to compile"
59 clean_restart $
{executable
}
65 proc run_trace_experiment
{} {
68 ".*Breakpoint \[0-9\]+, begin .*" \
69 "advance to trace begin"
71 gdb_test_no_output
"tstart" "start trace experiment"
73 # Fast tracepoint can be
set in
signal handler
, so gdb_collect in
74 # IPA shouldn
't call any non-async-signal-safe functions. It is
75 # impractical to list all non-async-signal-safe functions, and set
76 # breakpoints on them, so choose malloc only in this test.
77 gdb_test "b -q malloc"
79 # Performance-wise, gdb_collect in IPA shouldn't
call any syscall
80 # in order to keep fast tracepoint fast enough.
82 set test
"catch syscall"
83 gdb_test_multiple $test $test
{
84 -re
"The feature \'catch syscall\' is not supported.*\r\n$gdb_prompt $" {
86 -re
".*$gdb_prompt $" {
92 set test
"advance through tracing"
93 gdb_test_multiple
"continue" $test {
94 -re
"Thread 2 .* hit Catchpoint $decimal \\(call to syscall .*\\).*\r\n$gdb_prompt $" {
95 # IPA starts a helper thread
, which calls accept. Ignore it.
99 -re
"Breakpoint $decimal, end .*$gdb_prompt $" {
104 gdb_test
"tstatus" ".*Trace .*" "check on trace status"
106 gdb_test
"tstop" "" ""
109 proc test_fast_tracepoints
{} {
114 gdb_breakpoint
"begin" qualified
116 gdb_breakpoint
"end" qualified
118 gdb_test
"print gdb_agent_gdb_trampoline_buffer_error" ".*" ""
120 gdb_test
"ftrace set_point" "Fast tracepoint .*" \
121 "fast tracepoint at a long insn"
123 gdb_trace_setactions
"collect at set_point: define actions" \
125 "collect globvar, anarg" "^$"
127 # Make a test of shorter fast tracepoints
, 32-bit x86 only
129 if { [istarget
"i?86-*-*"] } {
131 # A Linux target needs to be able to allocate trampolines in the
132 #
16-bit range
, check mmap_min_addr so we can warn testers.
133 if { [istarget
"i?86-*-linux*"] } {
135 set minaddr
[exec sh
-c
"cat /proc/sys/vm/mmap_min_addr"]
137 if { [expr $minaddr
> 64512] } {
138 warning
"mmap_min_addr > 64512, fast tracepoint will fail"
139 warning
"do \"sudo sysctl -w vm.mmap_min_addr=32768\" to adjust"
143 gdb_test_multiple
"ftrace four_byter" "set 4-byte fast tracepoint" {
144 -re
"May not have a fast tracepoint at .*\r\n$gdb_prompt $" {
145 pass
"4-byte fast tracepoint could not be set"
147 -re
"Fast tracepoint .*\r\n$gdb_prompt $" {
148 pass
"4-byte fast tracepoint is set"
155 gdb_trace_setactions
"collect at four_byter: define actions" \
157 "collect globvar, anarg" "^$"
163 gdb_test
"tfind pc *set_point" "Found trace frame .*" \
164 "tfind set_point frame, first time"
166 gdb_test
"print globvar" " = 1"
168 gdb_test
"tfind pc *set_point" "Found trace frame .*" \
169 "tfind set_point frame, second time"
171 setup_kfail
"gdb/13808" "x86_64-*-linux*"
172 gdb_test
"print anarg" " = 200"
174 gdb_test
"tfind start" "Found trace frame .*" \
179 gdb_test
"tfind pc *four_byter" "Found trace frame .*" \
180 "tfind four_byter frame, first time"
182 gdb_test
"print anarg" " = 101" \
183 "look at collected local, first time"
185 gdb_test
"tfind pc *four_byter" "Found trace frame .*" \
186 "tfind four_byter frame, second time"
188 gdb_test
"print anarg" " = 201" \
189 "look at collected local, second time"
193 #
If debugging with the remote target
, try force disabling the
194 # fast tracepoints RSP feature
, and confirm fast tracepoints
195 # can no longer be downloaded.
196 set test
"fast tracepoint could not be downloaded with the feature disabled"
197 if [gdb_is_target_remote
] {
198 gdb_test
"set remote fast-tracepoints-packet off"
200 gdb_test_multiple
"tstart" $test {
201 -re
"warning: Target does not support fast tracepoints, downloading .* as regular tracepoint.*\r\n$gdb_prompt $" {
210 gdb_reinitialize_dir $srcdir
/$subdir
212 if { [gdb_test
"info sharedlibrary" ".*${remote_libipa}.*" "IPA loaded"] != 0 } {
213 untested
"could not find IPA lib loaded"
217 test_fast_tracepoints