]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/backtrace.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / backtrace.exp
CommitLineData
6aba47ca 1# Copyright 1998, 2007 Free Software Foundation, Inc.
c906108c
SS
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Michael Snyder (msnyder@cygnus.com)
21
22load_lib "trace-support.exp";
23
24if $tracelevel then {
25 strace $tracelevel
26}
27
28set prms_id 0
29set bug_id 0
30
31gdb_exit
32gdb_start
33
34if [istarget "m68k-*-elf"] then {
35 load_lib "emc-support.exp";
36 set srcfile gdb_c_test.c
37 set binfile [board_info target d490_binfile];
38 gdb_test "set remotetimeout 6" "" ""
39 set timeout 500
40 gdb_target_monitor "$binfile"
41 # Give a TSTOP and ignore errors, to make sure any previous trace is off
42 gdb_test "tstop" "" ""
43 gdb_test "tfind none" "" ""
44 send_gdb "compare-sections CS\n"
45 gdb_expect {
46 -re "MIS-MATCHED.*$gdb_prompt $" {
b60f0898
JB
47 untested backtrace.exp
48 return -1
c906108c
SS
49 all tests in this module will fail.";
50 }
51 -re ".*$gdb_prompt $" { }
52 }
53} else {
54 set testfile "actions"
55 set srcfile ${testfile}.c
56 set binfile $objdir/$subdir/$testfile
57 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
fc91c6c2 58 executable {debug nowarnings}] != "" } {
b60f0898
JB
59 untested backtrace.exp
60 return -1
c906108c
SS
61 }
62 gdb_load $binfile
63 gdb_test "tstop" "" ""
64 gdb_test "tfind none" "" ""
65 runto_main
66}
67gdb_reinitialize_dir $srcdir/$subdir
68
69# We generously give ourselves one "pass" if we successfully
70# detect that this test cannot be run on this target!
71if { ![gdb_target_supports_trace] } then {
72 pass "Current target does not supporst trace"
73 return 1;
74
75}
76
77#
78# test backtraces in trace frames
79#
80
81set testline1 0
82set testline2 0
83set testline3 0
84set testline4 0
85set testline5 0
86set testline6 0
87
88set arg1 1
89set arg2 2
90set arg3 3
91set arg4 4
92set arg5 5
93set arg6 6
94
95set baseline [gdb_find_recursion_test_baseline $srcfile];
96if { $baseline == -1 } {
97 fail "Could not find gdb_recursion_test function"
98 return;
99}
100
101send_gdb "list $baseline, +12\n"
102gdb_expect {
103 -re "\[\r\n\](\[0-9\]+).*gdbtestline 1 " {
104 set testline1 $expect_out(1,string)
105 exp_continue
106 }
107 -re "\[\r\n\](\[0-9\]+).*gdbtestline 2 " {
108 set testline2 $expect_out(1,string)
109 exp_continue
110 }
111 -re "\[\r\n\](\[0-9\]+).*gdbtestline 3 " {
112 set testline3 $expect_out(1,string)
113 exp_continue
114 }
115 -re "\[\r\n\](\[0-9\]+).*gdbtestline 4 " {
116 set testline4 $expect_out(1,string)
117 exp_continue
118 }
119 -re "\[\r\n\](\[0-9\]+).*gdbtestline 5 " {
120 set testline5 $expect_out(1,string)
121 exp_continue
122 }
123 -re "\[\r\n\](\[0-9\]+).*gdbtestline 6 " {
124 set testline6 $expect_out(1,string)
125 exp_continue
126 }
127 -re ".*$gdb_prompt $" {
128 if { ($testline1 == 0) || ($testline2 == 0) || ($testline3 == 0) || ($testline4 == 0) || ($testline5 == 0) || ($testline6 == 0) } {
b60f0898
JB
129 untested backtrace.exp
130 return -1
c906108c
SS
131all tests in this module will fail."
132 }
133 }
134 default {
b60f0898
JB
135 untested backtrace.exp
136 return -1
c906108c
SS
137all tests in this module will fail."
138 }
139}
140
141#
142# Setup backtrace experiment. This will involve:
143# 1) a tracepoint where nothing is collected
144# 2) a tracepoint where only regs are collected
145# 3) a tracepoint where regs, locals and args are collected
146# 4) a tracepoint where regs plus some amount of stack are collected.
147#
148
149gdb_delete_tracepoints
150set tdp2 [gdb_gettpnum $testline2]
151set tdp3 [gdb_gettpnum $testline3]
152set tdp4 [gdb_gettpnum $testline4]
153set tdp5 [gdb_gettpnum $testline5]
154set tdp6 [gdb_gettpnum $testline6]
155if { $tdp2 <= 0 || $tdp3 <= 0 || \
156 $tdp4 <= 0 || $tdp5 <= 0 || $tdp6 <= 0 } then {
157 fail "setting tracepoints failed"
158 return;
159}
160
161#gdb_trace_setactions "setup TP to collect FP" \
162# "$tdp2" \
163# "collect \$fp" ""
164#
165
166gdb_trace_setactions "8.6: setup TP to collect regs" \
167 "$tdp3" \
168 "collect \$regs" "^$"
169
170gdb_trace_setactions "8.6: setup TP to collect regs, args, and locals" \
171 "$tdp4" \
172 "collect \$regs, \$args, \$locs" "^$"
173
174gdb_trace_setactions "8.6: setup TP to collect stack mem cast expr" \
175 "$tdp6" \
176 "collect \$fp, \(\*\(void \*\*\) \(\$sp\)\) @ 64" "^$"
177
178gdb_test "tstart" "" ""
179
180if [istarget "m68k-*-elf"] then {
181 gdb_emclaptop_command "85,$arg1,$arg2,$arg3,$arg4,$arg5,$arg6"
182 sleep 5
183} else {
184 gdb_test "break end" "" ""
185 gdb_test "continue" \
186 "Continuing.*Breakpoint $decimal, end.*" \
187 "run trace experiment"
188}
189
190gdb_test "tstop" "" ""
191
192proc gdb_backtrace_tdp_1 { msg } {
193 global gdb_prompt
194
195 # We are in a trace frame at which we didn't collect anything
196 # except $PC. Therefore we expect to be able to identify stack
197 # frame #0, but that's about all. In particular we do not expect
198 # to be able to display the function's arguments or locals, and we
199 # do not expect to be able to identify the caller of this function.
200
201 send_gdb "backtrace\n"
202 gdb_expect {
203 -re "#0\[\t \]+gdb_recursion_test.*depth=.*$gdb_prompt $" {
204 pass "$msg"
205 }
206 -re ".*$gdb_prompt $" {
207 fail "$msg"
208 }
209 timeout { fail "$msg (timeout)" }
210 }
211}
212
213proc gdb_backtrace_tdp_2 { msg } {
214 global gdb_prompt
215
216 # We are in a trace frame at which we collected only the registers
217 # Therefore we expect to be able to identify stack frame #0, but
218 # we don't expect to be able to display its args unles they are
219 # passed in registers (which isn't the case for m68k), and we
220 # don't expect to be able to identify the caller's stack frame.
221
222 send_gdb "backtrace\n"
223 gdb_expect {
224 -re "#0\[\t \]+gdb_recursion_test.*depth=.*$gdb_prompt $" {
225 pass "$msg"
226 }
227 -re ".*$gdb_prompt $" {
228 fail "$msg"
229 }
230 timeout { fail "$msg (timeout)" }
231 }
232}
233
234proc gdb_backtrace_tdp_3 { msg } {
235 global gdb_prompt
236
237 # We are in a trace frame at which we collected all registers, all
238 # arguments and all locals. This means that the display of
239 # stack frame #0 should be complete (including argument values).
240
241 send_gdb "backtrace\n"
242 gdb_expect {
243 -re "#0\[\t \]+gdb_recursion_test.*depth=\[0-9\]+.*q1=\[0-9\]+.*q2=\[0-9\]+.*q3=\[0-9\]+.*q4=\[0-9\]+.*q5=\[0-9\]+.*q6=\[0-9\]+.*$gdb_prompt $" {
244 pass "$msg"
245 }
246 -re "#0\[\t \]+gdb_recursion_test.*depth=Cannot access.*$gdb_prompt $" {
247 fail "$msg (failed to collect arguments)"
248 }
249 -re ".*$gdb_prompt $" {
250 fail "$msg"
251 }
252 timeout { fail "$msg (timeout)" }
253 }
254}
255
256proc gdb_backtrace_tdp_4 { msg depth } {
257 global gdb_prompt
258
259 # We are in a trace frame at which we collected all registers,
260 # plus a sizeable hunk of stack memory. This should enable us to
261 # display at least several stack frames worth of backtrace. We'll
262 # assume that if we can't display at least "depth" levels (with
263 # args), it counts as an error.
264
265 send_gdb "backtrace\n"
266 gdb_expect {
267 -re "#$depth\[\t \].*gdb_recursion_test.*depth=\[0-9\]+.*q1=\[0-9\]+.*q2=\[0-9\]+.*q3=\[0-9\]+.*q4=\[0-9\]+.*q5=\[0-9\]+.*q6=\[0-9\]+.*$gdb_prompt $" {
268 pass "$msg"
269 }
270 -re "#$depth\[\t \].*gdb_recursion_test.*depth=.*$gdb_prompt $" {
271 fail "$msg (args missing from #$depth stack frame)"
272 }
273 -re "#\[0-9\]+\[\t \].*gdb_recursion_test.*depth=.*$gdb_prompt $" {
274 fail "$msg (fewer than $depth stack frames found)"
275 }
276 -re ".*$gdb_prompt $" {
277 fail "$msg"
278 }
279 timeout { fail "$msg (timeout)" }
280 }
281}
282
283#
284# begin backtrace test
285#
286
287set timeout 60
288
289gdb_tfind_test "init: make sure not debugging any trace frame" "none" "-1"
290
291gdb_tfind_test "8.6: find start frame" "start" "0"
292gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
293 "TDP $tdp2:" ""
294gdb_backtrace_tdp_1 "8.6: Backtrace, depth == 1, collect nothing"
295
296gdb_tfind_test "8.6: find frame 1" "1" "1"
297gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
298 "TDP $tdp3:" ""
299gdb_backtrace_tdp_2 "8.6: Backtrace, depth == 1, collect regs"
300
301gdb_tfind_test "8.6: find frame 2" "2" "2"
302gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
303 "TDP $tdp4:" ""
304gdb_backtrace_tdp_3 "8.6: Backtrace, depth == 1, collect args and locals"
305
306
307gdb_tfind_test "8.6: find frame 4" "4" "4"
308gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
309 "TDP $tdp6:" ""
310gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0"
311
312gdb_tfind_test "8.6: find frame 5" "5" "5"
313gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
314 "TDP $tdp2:" ""
315gdb_backtrace_tdp_1 "8.6: Backtrace, depth == 2, collect nothing"
316
317gdb_tfind_test "8.6: find frame 6" "6" "6"
318gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
319 "TDP $tdp3:" ""
320gdb_backtrace_tdp_2 "8.6: Backtrace, depth == 2, collect regs"
321
322gdb_tfind_test "8.6: find frame 7" "7" "7"
323gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
324 "TDP $tdp4:" ""
325gdb_backtrace_tdp_3 "8.6: Backtrace, depth == 2, collect args and locals"
326
327
328gdb_tfind_test "8.6: find frame 9" "9" "9"
329gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
330 "TDP $tdp6:" ""
331gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0"
332
333gdb_tfind_test "8.6: find frame 10" "10" "10"
334gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
335 "TDP $tdp2:" ""
336gdb_backtrace_tdp_1 "8.6: Backtrace, depth == 3, collect nothing"
337
338gdb_tfind_test "8.6: find frame 11" "11" "11"
339gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
340 "TDP $tdp3:" ""
341gdb_backtrace_tdp_2 "8.6: Backtrace, depth == 3, collect regs"
342
343gdb_tfind_test "8.6: find frame 12" "12" "12"
344gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
345 "TDP $tdp4:" ""
346gdb_backtrace_tdp_3 "8.6: Backtrace, depth == 3, collect args and locals"
347
348
349gdb_tfind_test "8.6: find frame 14" "14" "14"
350gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
351 "TDP $tdp6:" ""
352gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0"
353
354gdb_tfind_test "8.6: find frame 15" "15" "15"
355gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
356 "TDP $tdp2:" ""
357gdb_backtrace_tdp_1 "8.6: Backtrace, depth == 4, collect nothing"
358
359gdb_tfind_test "8.6: find frame 16" "16" "16"
360gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
361 "TDP $tdp3:" ""
362gdb_backtrace_tdp_2 "8.6: Backtrace, depth == 4, collect regs"
363
364gdb_tfind_test "8.6: find frame 17" "17" "17"
365gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
366 "TDP $tdp4:" ""
367gdb_backtrace_tdp_3 "8.6: Backtrace, depth == 4, collect args and locals"
368
369
370gdb_tfind_test "8.6: find frame 19" "19" "19"
371gdb_test "printf \"TDP \%d:\\n\", \$tracepoint" \
372 "TDP $tdp6:" ""
373gdb_backtrace_tdp_4 "8.6: Backtrace, depth == 1, collect stack mem expr" "0"
374
375gdb_test "printf \"x \%d x\\n\", depth == 3" \
376 "x 0 x" \
377 "1.13: trace in recursion: depth not equal to 3"
378
379# Finished!
380gdb_test "tfind none" "" ""