]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.asm/asm-source.exp
*** empty log message ***
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.asm / asm-source.exp
CommitLineData
7b79a9d7 1# Copyright 1998, 2000, 2001, 2002, 2003, 2004 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 Kendra.
21
22if $tracelevel then {
23 strace $tracelevel
24}
25
26#
27# Test debugging assembly level programs.
28# This file uses asmsrc[12].s for input.
29#
30
31set prms_id 0
32set bug_id 0
33
78492fde 34set asm-arch ""
71507b56 35set asm-note "empty"
78492fde 36set asm-flags ""
31d3fb18 37set link-flags "-e _start"
575eebb1 38set debug-flags ""
78492fde 39
be375bae 40switch -glob -- [istarget] {
acf4b816
RH
41 "alpha*-*-*" {
42 set asm-arch alpha
43 # ??? Won't work with ecoff systems like Tru64, but then we also
44 # don't have any other -g flag that creates mdebug output.
575eebb1
NC
45 set asm-flags "-no-mdebug -I${srcdir}/${subdir} -I${objdir}/${subdir}"
46 set debug-flags "-gdwarf-2"
acf4b816 47 }
be375bae
JB
48 "*arm-*-*" {
49 set asm-arch arm
50 }
51 "xscale-*-*" {
52 set asm-arch arm
53 }
54 "d10v-*-*" {
55 set asm-arch d10v
56 }
3a4c9371
KB
57 "frv-*-*" {
58 set asm-arch frv
59 }
be375bae
JB
60 "s390-*-*" {
61 set asm-arch s390
62 }
09bf6082
JB
63 "s390x-*-*" {
64 set asm-arch s390x
65 }
be375bae
JB
66 "x86_64-*-*" {
67 set asm-arch x86_64
575eebb1
NC
68 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
69 set debug-flags "-gdwarf-2"
be375bae
JB
70 }
71 "i\[3456\]86-*-*" {
72 set asm-arch i386
be375bae 73 }
73cb587d
KI
74 "m32r*-linux*" {
75 set asm-arch m32r-linux
76 }
be375bae
JB
77 "m32r*-*" {
78 set asm-arch m32r
3a4b3aac 79 append link-flags "--whole-archive -lgloss --no-whole-archive"
be375bae
JB
80 }
81 "m6811-*-*" {
82 set asm-arch m68hc11
c3d0b56e
SC
83 set asm-flags "-mshort-double -m68hc11 --no-warn -I${srcdir}/${subdir} -I${objdir}/${subdir}"
84 set debug-flags "-gdwarf-2"
85 # This asm test is specific and uses the linker directly.
86 # We must not use the target board linker script defined for other
87 # tests. Remove it and restore it later on.
88 set board [target_info name]
89 set old_ldscript [board_info $board ldscript]
90 unset_board_info "ldscript"
be375bae
JB
91 }
92 "m6812-*-*" {
93 set asm-arch m68hc11
c3d0b56e
SC
94 set asm-flags "-mshort-double -m68hc12 --no-warn -I${srcdir}/${subdir} -I${objdir}/${subdir}"
95 set debug-flags "-gdwarf-2"
96 # This asm test is specific and uses the linker directly.
97 # We must not use the target board linker script defined for other
98 # tests. Remove it and restore it later on.
99 set board [target_info name]
100 set old_ldscript [board_info $board ldscript]
101 set_board_info ldscript ""
be375bae
JB
102 }
103 "mips*-*" {
104 set asm-arch mips
105 }
106 "powerpc*-*" {
107 set asm-arch powerpc
108 }
71e06f80
CV
109 "sh*-*-*" {
110 set asm-arch sh
575eebb1
NC
111 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
112 set debug-flags "-gdwarf-2"
71e06f80 113 }
be375bae
JB
114 "sparc-*-*" {
115 set asm-arch sparc
116 }
117 "sparc64-*-*" {
118 set asm-arch sparc64
575eebb1
NC
119 set asm-flags "-xarch=v9 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
120 set debug-flags "-gdwarf-2"
be375bae
JB
121 }
122 "xstormy16-*-*" {
123 set asm-arch xstormy16
575eebb1
NC
124 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
125 set debug-flags "-gdwarf-2"
be375bae
JB
126 }
127 "v850-*-*" {
128 set asm-arch v850
129 set gdb_wrapper_initialized 1
a955b5bb 130 }
2705e972
AS
131 "m68k-*-*" {
132 set asm-arch m68k
133 }
4630e498
JJ
134 "ia64-*-*" {
135 set asm-arch ia64
575eebb1
NC
136 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
137 set debug-flags "-gdwarf-2"
4630e498 138 }
be46087e
CV
139 "iq2000-*-*" {
140 set asm-arch iq2000
141 }
81bb3443
RC
142 "hppa*-linux-*" {
143 set asm-arch pa
575eebb1
NC
144 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
145 set debug-flags "-gdwarf-2"
81bb3443 146 }
a1b06f35
MK
147 "hppa-*-openbsd*" {
148 set asm-arch pa
149 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
150 set debug-flags "-gdwarf-2"
151 }
9fdb1f50
RC
152 "hppa64-*-hpux*" {
153 set asm-arch pa64
154 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
155 set debug-flags "-gdwarf-2"
156 }
547b869a
CV
157 "h83*-*" {
158 set asm-arch h8300
159 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
160 }
017ac23d 161}
be375bae 162
78492fde 163if { "${asm-arch}" == "" } {
9383332c 164 gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
c906108c
SS
165}
166
71507b56
MK
167# On NetBSD/ELF we need a special NetBSD-identifying note section.
168if { [istarget "*-*-netbsdelf*"]
b7cbf173 169 || [istarget "mips*-*-netbsd*"]
71507b56
MK
170 || [istarget "x86_64-*-netbsd*"] } then {
171 set asm-note "netbsd"
172}
173
53904d1e
MK
174# On OpenBSD/ELF we need a similar note section. We make no attempt
175# of handing a.out here since most OpenBSD/a.out systems use a rather
176# outdated assembler that doesn't assemble this test's code anyway.
177if { [istarget "*-*-openbsd*"] } then {
178 set asm-note "openbsd"
179}
180
0fcddd82
EZ
181# Watch out, we are invoking the assembler, but the testsuite sets multilib
182# switches according to compiler syntax. If we pass these options straight
183# to the assembler, they won't always make sense. If we don't pass them to
184# the assembler, the final link will complain that the object files were
185# built with different defaults. So no matter what we do, we lose. We may as
186# well get out of this test sooner rather than later.
187set dest [target_info name]
188if [board_info $dest exists multilib_flags] {
189 set multilib_flags [board_info $dest multilib_flags]
190 if { "${multilib_flags}" != "" } {
191 gdb_suppress_entire_file "Assembly source test -- multilibs not supported by this test."
192 return;
193 }
194}
195
c906108c
SS
196set testfile "asm-source"
197set binfile ${objdir}/${subdir}/${testfile}
f2dd3617
EZ
198set srcfile1 asmsrc1.s
199set srcfile2 asmsrc2.s
c906108c 200
a73a20a2
EZ
201remote_exec build "rm -f ${subdir}/arch.inc"
202remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc
71507b56
MK
203remote_exec build "rm -f ${subdir}/note.inc"
204remote_download host ${srcdir}/${subdir}/${asm-note}.inc ${subdir}/note.inc
16a8534a 205
78492fde 206if { "${asm-flags}" == "" } {
575eebb1
NC
207 set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
208 set debug-flags "-gstabs"
78492fde 209}
c906108c 210
c724d49b 211# Allow the target board to override the debug flags.
575eebb1
NC
212if { [board_info $dest exists debug_flags] } then {
213 set debug-flags "[board_info $dest debug_flags]"
214}
215
c724d49b
MC
216# The debug flags are in the format that gcc expects:
217# "-gdwarf-2", "-gstabs+", or "-gstabs". To be compatible with the
218# other languages in the test suite, we accept this input format.
219# So the user can run the test suite with:
220#
221# runtest --target_board unix/gdb:debug_flags=-gdwarf-2
222# make check RUNTESTFLAGS="--target_board unix/gdb:debug_flags=-gdwarf-2"
223#
224# However, the GNU assembler has different spellings than gcc.
225# So I adjust the debug flags here.
226
227# The GNU assembler spells "dwarf-2" as "dwarf2".
228regsub "--" "-gdwarf-2" "${debug-flags}" "-gdwarf2" debug-flags
229
230# The GNU assembler before 2.15 did not support "stabs+".
231regsub "--" "-gstabs\[+\]" "${debug-flags}" "-gstabs" debug-flags
232
233# The GNU assembler does not support level options like "-g2" or "-g3".
234regsub "--" "-g\[0-9\]" "${debug-flags}" "" debug-flags
575eebb1
NC
235
236if {[target_assemble ${srcdir}/${subdir}/${srcfile1} asmsrc1.o "${asm-flags} ${debug-flags}"] != ""} then {
c906108c
SS
237 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
238}
575eebb1 239if {[target_assemble ${srcdir}/${subdir}/${srcfile2} asmsrc2.o "${asm-flags} ${debug-flags}"] != ""} then {
c906108c
SS
240 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
241}
242
3a4b3aac
MK
243# We deliberately don't use gdb_compile here to link together the
244# assembled object files. Using gdb_compile, and therefore the C
245# compiler, is conceptually wrong, since we're testing raw assembler
246# code here that provides its own startup code. Using target_link
247# also avoids a lot of problems on many systems, most notably on
248# *-*-*bsd* and *-*-solaris2*.
249if {[target_link "asmsrc1.o asmsrc2.o" "${binfile}" ${link-flags}] != "" } then {
c906108c
SS
250 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
251}
252
c3d0b56e
SC
253# Restore the target board linker script for HC11/HC12.
254if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"] } {
255 set_board_info ldscript $old_ldscript
256}
257
c906108c
SS
258remote_exec build "mv asmsrc1.o asmsrc2.o ${objdir}/${subdir}"
259
260
261gdb_start
262gdb_reinitialize_dir $srcdir/$subdir
263gdb_load ${binfile}
264
265#
266# Run to `main' where we begin our tests.
267#
268
269if ![runto_main] then {
270 gdb_suppress_tests
271}
272
273# Execute the `f' command and see if the result includes source info.
78492fde 274gdb_test "f" "asmsrc1\[.\]s:29.*several_nops" "f at main"
c906108c
SS
275
276# See if we properly `next' over a macro with several insns.
78492fde 277gdb_test "n" "33\[ \]*.*foo2" "next over macro"
c906108c
SS
278
279# See if we can properly `step' into a subroutine call.
280gdb_test "s" "8\[ \]*.*" "step into foo2"
281
edb6ede1
MS
282# Test 'info target', and incidentally capture the entry point address.
283set entry_point 0
284send_gdb "info target\n"
285gdb_expect {
286 -re "Symbols from .*asm-source.*Entry point: 0x(\[01232456789abcdefABCDEF\]+).*$gdb_prompt $" {
287 set entry_point $expect_out(1,string)
288 pass "info target"
289 }
290 -re ".*$gdb_prompt $" {
291 fail "info target"
292 }
293 timeout {
294 fail "info target (timeout)"
295 }
296}
297
298# Capture the start symbol (may be '_start' or 'start')
299set entry_symbol ""
300send_gdb "info symbol 0x$entry_point\n"
301gdb_expect {
ecace851
JB
302 -re "info symbol 0x$entry_point\[\r\n\]+(\[^\r\n\]*) in section .*$gdb_prompt $" {
303 # We match the echoed `info symbol' command here, to help us
304 # reliably identify the beginning of the start symbol in the
305 # command's output. You might think we could just use '^' to
306 # start matching at the beginning of the line, but
307 # unfortunately, in Expect, '^' matches the beginning of the
308 # input that hasn't been matched by any expect clause yet. If
309 # every expect clause consumes a complete line, along with its
310 # terminating CR/LF, this is equivalent to the beginning of a
311 # line. But expect clauses that end with `.*' will consume as
312 # much as happened to arrive from the TTY --- exactly where
313 # they leave you depends on inter-process timing. :(
edb6ede1
MS
314 set entry_symbol $expect_out(1,string)
315 pass "info symbol"
316 }
317 -re ".*$gdb_prompt $" {
318 fail "info symbol"
319 }
320 timeout {
321 fail "info symbol (timeout)"
322 }
323}
324
ca9efc90 325# Now try a 'list' from the other source file.
edb6ede1 326gdb_test "list $entry_symbol" ".*gdbasm_startup.*" "list"
ca9efc90
MS
327
328# Now try a source file search
329gdb_test "search A routine for foo2 to call" \
8b1d7e37 330 "40\[ \t\]+comment \"A routine for foo2 to call.\"" "search"
ca9efc90 331
c906108c
SS
332# See if `f' prints the right source file.
333gdb_test "f" ".*asmsrc2\[.\]s:8.*" "f in foo2"
334
335# `next' one insn (or macro) to set up our stackframe (for the following bt).
336gdb_test "n" "12\[ \]*.*foo3" "n in foo2"
337
b5703437
MS
338# See if a simple `bt' prints the right source files and
339# doesn't fall off the stack.
340
341gdb_test "bt 10" \
0714963c 342 "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33" \
b5703437 343 "bt ALL in foo2"
78492fde
AC
344
345# See if a capped `bt' prints the right source files.
346gdb_test "bt 2" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33.*" "bt 2 in foo2"
c906108c
SS
347
348# Step into another subroutine which lives back in the first source file.
349gdb_test "s" "" "s 2"
350
351# Next over insns to set up the stack frame.
352gdb_test "n" "" "n 2"
353
78492fde 354# Now see if a capped `bt' is correct.
8b1d7e37 355gdb_test "bt 3" "\#0.*foo3.*asmsrc1\[.\]s:45.*\#1.*foo2.*asmsrc2\[.\]s:12.*\#2.*main.*asmsrc1\[.\]s:33.*" "bt 3 in foo3"
ca9efc90
MS
356
357# Try 'info source' from asmsrc1.s
358gdb_test "info source" \
359 "Current source file is .*asmsrc1.s.*Source language is asm.*" \
360 "info source asmsrc1.s"
361
362# Try 'finishing' from foo3
363gdb_test "finish" "Run till exit from.*\[\r\n\]13\[ \t\]+gdbasm_call foo3" \
364 "finish from foo3"
365
366# Try 'info source' from asmsrc2.s
367gdb_test "info source" \
368 "Current source file is .*asmsrc2.s.*Source language is asm.*" \
369 "info source asmsrc2.s"
370
27924826
JB
371# Try 'info sources'. This can produce a lot of output on systems
372# with dynamic linking, where the system's shared libc was compiled
373# with debugging info; for example, on Linux, this produces 47kb of
374# output. So we consume it as we go.
375send_gdb "info sources\n"
376set seen_asmsrc_1 0
377set seen_asmsrc_2 0
378gdb_expect {
379 -re "^\[^,\]*asmsrc1.s(, |\[\r\n\]+)" {
380 set seen_asmsrc_1 1
381 exp_continue
382 }
383 -re "^\[^,\]*asmsrc2.s(, |\[\r\n\]+)" {
384 set seen_asmsrc_2 1
385 exp_continue
386 }
387 -re ", " {
388 exp_continue
389 }
390 -re "$gdb_prompt $" {
391 if {$seen_asmsrc_1 && $seen_asmsrc_2} {
392 pass "info sources"
393 } else {
394 fail "info sources"
395 }
396 }
397 timeout {
398 fail "info sources (timeout)"
399 }
400}
401
ca9efc90
MS
402
403# Try 'info line'
404gdb_test "info line" \
405 "Line 13 of.*asmsrc2.s.*starts at.*<foo2+.*> and ends at.*<foo2+.*>." \
406 "info line"
407
408# Try 'nexting' over next call to foo3
409gdb_test "next" "17\[ \t\]+gdbasm_leave" "next over foo3"
410
411# Try 'return' from foo2
412gdb_test "return" "\#0 main .*37\[ \t\]+gdbasm_exit0" "return from foo2" \
8b1d7e37 413 "Make (foo2|selected stack frame) return now\?.*" "y"
ca9efc90 414
2b6fd0d8
AC
415# Disassemble something, check the output
416proc test_dis { command var } {
417 global gdb_prompt
418 send_gdb "${command}\n"
419 gdb_expect {
572eb746 420 -re "${var}.*:.*(Cannot access|Bad address)" {
2b6fd0d8
AC
421 # The "disassembler" was only accessing the local
422 # executable and that would cause attempts to disassemble
423 # variables to fail (memory not valid).
424 fail "${command} (memory read error)"
425 }
426 -re "${var}.*:.*${gdb_prompt}" {
427 pass "${command}"
428 }
429 timeout {
430 fail "${command} (timeout)"
431 }
432 }
433}
434
435# See if we can look at a global variable, three ways
ca9efc90 436gdb_test "print globalvar" ".* = 11" "look at global variable"
2c161407 437test_dis "x/i &globalvar" "globalvar"
2b6fd0d8 438test_dis "disassem &globalvar &globalvar+1" "globalvar"
ca9efc90 439
2b6fd0d8 440# See if we can look at a static variable, three ways
ca9efc90 441gdb_test "print staticvar" ".* = 5" "look at static variable"
2b6fd0d8
AC
442test_dis "x/i &staticvar" "staticvar"
443test_dis "disassem &staticvar &staticvar+1" "staticvar"
ca9efc90
MS
444
445# See if we can look at a static function
83c31e7d 446gdb_test "disassem foostatic" ".*<foostatic\\+0>:.*End of assembler dump." \
ca9efc90
MS
447 "look at static function"
448
a73a20a2 449remote_exec build "rm -f ${subdir}/arch.inc"
71507b56 450remote_exec build "rm -f ${subdir}/note.inc"