* ld-srec/srec.exp (run_srec_test): Pass --traditional-format to ld.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.asm / asm-source.exp
CommitLineData
16a8534a 1# Copyright 1998, 2000, 2002 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
AC
34set asm-arch ""
35set asm-flags ""
25050984 36set link-flags ""
78492fde 37
7d159115
CV
38if [istarget "*arm-*-*"] then {
39 set asm-arch arm
40}
41if [istarget "xscale-*-*"] then {
42 set asm-arch arm
43}
c906108c
SS
44if [istarget "d10v-*-*"] then {
45 set asm-arch d10v
78492fde 46}
cd5195a8
JB
47if [istarget "s390-*-*"] then {
48 set asm-arch s390
49}
be26fe0d
ML
50if [istarget "x86_64-*-*"] then {
51 set asm-arch x86_64
52 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
53}
017ac23d
MS
54if [istarget "i\[3456\]86-*-*"] then {
55 set asm-arch i386
56}
9a4d72d5
MS
57if [istarget "m32r*-*"] then {
58 set asm-arch m32r
59}
8b1d7e37
DJ
60if [istarget "mips*-*"] then {
61 set asm-arch mips
62}
7cdb7107
DJ
63if [istarget "powerpc*-*"] then {
64 set asm-arch powerpc
65}
756caa3d
MS
66if [istarget "sparc-*-*"] then {
67 set asm-arch sparc
68}
a1706bfd
DM
69if [istarget "sparc64-*-*"] then {
70 set asm-arch sparc64
71 set asm-flags "-xarch=v9 -gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
72}
105ba819
CV
73if [istarget "xstormy16-*-*"] then {
74 set asm-arch xstormy16
75 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
105ba819 76}
db589741
CV
77if [istarget "v850-*-*"] then {
78 set asm-arch v850
79 set gdb_wrapper_initialized 1
80}
78492fde 81if { "${asm-arch}" == "" } {
9383332c 82 gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
c906108c
SS
83}
84
0fcddd82
EZ
85# Watch out, we are invoking the assembler, but the testsuite sets multilib
86# switches according to compiler syntax. If we pass these options straight
87# to the assembler, they won't always make sense. If we don't pass them to
88# the assembler, the final link will complain that the object files were
89# built with different defaults. So no matter what we do, we lose. We may as
90# well get out of this test sooner rather than later.
91set dest [target_info name]
92if [board_info $dest exists multilib_flags] {
93 set multilib_flags [board_info $dest multilib_flags]
94 if { "${multilib_flags}" != "" } {
95 gdb_suppress_entire_file "Assembly source test -- multilibs not supported by this test."
96 return;
97 }
98}
99
c906108c
SS
100set testfile "asm-source"
101set binfile ${objdir}/${subdir}/${testfile}
102set src1 ${srcdir}/${subdir}/asmsrc1.s
103set src2 ${srcdir}/${subdir}/asmsrc2.s
104
a73a20a2
EZ
105remote_exec build "rm -f ${subdir}/arch.inc"
106remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc
16a8534a 107
78492fde
AC
108if { "${asm-flags}" == "" } {
109 #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}"
110 set asm-flags "-gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
111}
c906108c 112
78492fde 113if {[target_assemble ${src1} asmsrc1.o "${asm-flags}"] != ""} then {
c906108c
SS
114 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
115}
78492fde 116if {[target_assemble ${src2} asmsrc2.o "${asm-flags}"] != ""} then {
c906108c
SS
117 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
118}
119
cf599fa7
CV
120set opts "debug ldflags=-nostartfiles"
121foreach i ${link-flags} {
122 append opts " ldflags=$i"
123}
124if { [gdb_compile "asmsrc1.o asmsrc2.o" "${binfile}" executable $opts] != "" } {
c906108c
SS
125 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
126}
127
128remote_exec build "mv asmsrc1.o asmsrc2.o ${objdir}/${subdir}"
129
130
131gdb_start
132gdb_reinitialize_dir $srcdir/$subdir
133gdb_load ${binfile}
134
135#
136# Run to `main' where we begin our tests.
137#
138
139if ![runto_main] then {
140 gdb_suppress_tests
141}
142
143# Execute the `f' command and see if the result includes source info.
78492fde 144gdb_test "f" "asmsrc1\[.\]s:29.*several_nops" "f at main"
c906108c
SS
145
146# See if we properly `next' over a macro with several insns.
78492fde 147gdb_test "n" "33\[ \]*.*foo2" "next over macro"
c906108c
SS
148
149# See if we can properly `step' into a subroutine call.
150gdb_test "s" "8\[ \]*.*" "step into foo2"
151
edb6ede1
MS
152# Test 'info target', and incidentally capture the entry point address.
153set entry_point 0
154send_gdb "info target\n"
155gdb_expect {
156 -re "Symbols from .*asm-source.*Entry point: 0x(\[01232456789abcdefABCDEF\]+).*$gdb_prompt $" {
157 set entry_point $expect_out(1,string)
158 pass "info target"
159 }
160 -re ".*$gdb_prompt $" {
161 fail "info target"
162 }
163 timeout {
164 fail "info target (timeout)"
165 }
166}
167
168# Capture the start symbol (may be '_start' or 'start')
169set entry_symbol ""
170send_gdb "info symbol 0x$entry_point\n"
171gdb_expect {
ecace851
JB
172 -re "info symbol 0x$entry_point\[\r\n\]+(\[^\r\n\]*) in section .*$gdb_prompt $" {
173 # We match the echoed `info symbol' command here, to help us
174 # reliably identify the beginning of the start symbol in the
175 # command's output. You might think we could just use '^' to
176 # start matching at the beginning of the line, but
177 # unfortunately, in Expect, '^' matches the beginning of the
178 # input that hasn't been matched by any expect clause yet. If
179 # every expect clause consumes a complete line, along with its
180 # terminating CR/LF, this is equivalent to the beginning of a
181 # line. But expect clauses that end with `.*' will consume as
182 # much as happened to arrive from the TTY --- exactly where
183 # they leave you depends on inter-process timing. :(
edb6ede1
MS
184 set entry_symbol $expect_out(1,string)
185 pass "info symbol"
186 }
187 -re ".*$gdb_prompt $" {
188 fail "info symbol"
189 }
190 timeout {
191 fail "info symbol (timeout)"
192 }
193}
194
ca9efc90 195# Now try a 'list' from the other source file.
edb6ede1 196gdb_test "list $entry_symbol" ".*gdbasm_startup.*" "list"
ca9efc90
MS
197
198# Now try a source file search
199gdb_test "search A routine for foo2 to call" \
8b1d7e37 200 "40\[ \t\]+comment \"A routine for foo2 to call.\"" "search"
ca9efc90 201
c906108c
SS
202# See if `f' prints the right source file.
203gdb_test "f" ".*asmsrc2\[.\]s:8.*" "f in foo2"
204
205# `next' one insn (or macro) to set up our stackframe (for the following bt).
206gdb_test "n" "12\[ \]*.*foo3" "n in foo2"
207
b5703437
MS
208# See if a simple `bt' prints the right source files and
209# doesn't fall off the stack.
210
211gdb_test "bt 10" \
212 "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33(.*\#2.*start\[^\r\n\]*)?" \
213 "bt ALL in foo2"
78492fde
AC
214
215# See if a capped `bt' prints the right source files.
216gdb_test "bt 2" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33.*" "bt 2 in foo2"
c906108c
SS
217
218# Step into another subroutine which lives back in the first source file.
219gdb_test "s" "" "s 2"
220
221# Next over insns to set up the stack frame.
222gdb_test "n" "" "n 2"
223
78492fde 224# Now see if a capped `bt' is correct.
8b1d7e37 225gdb_test "bt 3" "\#0.*foo3.*asmsrc1\[.\]s:45.*\#1.*foo2.*asmsrc2\[.\]s:12.*\#2.*main.*asmsrc1\[.\]s:33.*" "bt 3 in foo3"
ca9efc90
MS
226
227# Try 'info source' from asmsrc1.s
228gdb_test "info source" \
229 "Current source file is .*asmsrc1.s.*Source language is asm.*" \
230 "info source asmsrc1.s"
231
232# Try 'finishing' from foo3
233gdb_test "finish" "Run till exit from.*\[\r\n\]13\[ \t\]+gdbasm_call foo3" \
234 "finish from foo3"
235
236# Try 'info source' from asmsrc2.s
237gdb_test "info source" \
238 "Current source file is .*asmsrc2.s.*Source language is asm.*" \
239 "info source asmsrc2.s"
240
27924826
JB
241# Try 'info sources'. This can produce a lot of output on systems
242# with dynamic linking, where the system's shared libc was compiled
243# with debugging info; for example, on Linux, this produces 47kb of
244# output. So we consume it as we go.
245send_gdb "info sources\n"
246set seen_asmsrc_1 0
247set seen_asmsrc_2 0
248gdb_expect {
249 -re "^\[^,\]*asmsrc1.s(, |\[\r\n\]+)" {
250 set seen_asmsrc_1 1
251 exp_continue
252 }
253 -re "^\[^,\]*asmsrc2.s(, |\[\r\n\]+)" {
254 set seen_asmsrc_2 1
255 exp_continue
256 }
257 -re ", " {
258 exp_continue
259 }
260 -re "$gdb_prompt $" {
261 if {$seen_asmsrc_1 && $seen_asmsrc_2} {
262 pass "info sources"
263 } else {
264 fail "info sources"
265 }
266 }
267 timeout {
268 fail "info sources (timeout)"
269 }
270}
271
ca9efc90
MS
272
273# Try 'info line'
274gdb_test "info line" \
275 "Line 13 of.*asmsrc2.s.*starts at.*<foo2+.*> and ends at.*<foo2+.*>." \
276 "info line"
277
278# Try 'nexting' over next call to foo3
279gdb_test "next" "17\[ \t\]+gdbasm_leave" "next over foo3"
280
281# Try 'return' from foo2
282gdb_test "return" "\#0 main .*37\[ \t\]+gdbasm_exit0" "return from foo2" \
8b1d7e37 283 "Make (foo2|selected stack frame) return now\?.*" "y"
ca9efc90
MS
284
285# See if we can look at a global variable
286gdb_test "print globalvar" ".* = 11" "look at global variable"
287
288# See if we can look at a static variable
289gdb_test "print staticvar" ".* = 5" "look at static variable"
290
291# See if we can look at a static function
83c31e7d 292gdb_test "disassem foostatic" ".*<foostatic\\+0>:.*End of assembler dump." \
ca9efc90
MS
293 "look at static function"
294
a73a20a2 295remote_exec build "rm -f ${subdir}/arch.inc"
This page took 0.321956 seconds and 4 git commands to generate.