2003-07-15 Michael Chastain <mec@shout.net>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.asm / asm-source.exp
CommitLineData
f2dd3617 1# Copyright 1998, 2000, 2001, 2002, 2003 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
be375bae 38switch -glob -- [istarget] {
acf4b816
RH
39 "alpha*-*-*" {
40 set asm-arch alpha
41 # ??? Won't work with ecoff systems like Tru64, but then we also
42 # don't have any other -g flag that creates mdebug output.
9e9617a5 43 set asm-flags "-gdwarf2 -no-mdebug -I${srcdir}/${subdir} -I${objdir}/${subdir}"
acf4b816 44 }
be375bae
JB
45 "*arm-*-*" {
46 set asm-arch arm
47 }
48 "xscale-*-*" {
49 set asm-arch arm
50 }
51 "d10v-*-*" {
52 set asm-arch d10v
53 }
54 "s390-*-*" {
55 set asm-arch s390
56 }
09bf6082
JB
57 "s390x-*-*" {
58 set asm-arch s390x
59 }
be375bae
JB
60 "x86_64-*-*" {
61 set asm-arch x86_64
62 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
63 }
64 "i\[3456\]86-*-*" {
65 set asm-arch i386
66 if [istarget "*-*-cygwin*"] then {
67 set link-flags "--entry _start"
68 }
69 }
70 "m32r*-*" {
71 set asm-arch m32r
72 }
73 "m6811-*-*" {
74 set asm-arch m68hc11
75 set asm-flags "-mshort-double -m68hc11 -gdwarf2 --no-warn -I${srcdir}/${subdir} -I${objdir}/${subdir}"
76 }
77 "m6812-*-*" {
78 set asm-arch m68hc11
79 set asm-flags "-mshort-double -m68hc12 -gdwarf2 --no-warn -I${srcdir}/${subdir} -I${objdir}/${subdir}"
80 }
81 "mips*-*" {
82 set asm-arch mips
83 }
84 "powerpc*-*" {
85 set asm-arch powerpc
86 }
87 "sparc-*-*" {
88 set asm-arch sparc
89 }
90 "sparc64-*-*" {
91 set asm-arch sparc64
92 set asm-flags "-xarch=v9 -gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
93 }
94 "xstormy16-*-*" {
95 set asm-arch xstormy16
96 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
97 }
98 "v850-*-*" {
99 set asm-arch v850
100 set gdb_wrapper_initialized 1
a955b5bb 101 }
2705e972
AS
102 "m68k-*-*" {
103 set asm-arch m68k
104 }
017ac23d 105}
be375bae 106
78492fde 107if { "${asm-arch}" == "" } {
9383332c 108 gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
c906108c
SS
109}
110
10059fdf
MK
111# On FreeBSD, crt1.o the final link will fail because of unresolved
112# symbols. It turns out that libc.so references symbols that are
113# normally provided by crt1.o, which isn't linked in since we specify
114# -nostartfiles. Using -nostdlib doesn't help since target_compile
115# automatically adds -lm. Linking statically avoids this mess.
116if [istarget "*-*-freebsd*"] then {
117 set link-flags "-static"
118}
119
0fcddd82
EZ
120# Watch out, we are invoking the assembler, but the testsuite sets multilib
121# switches according to compiler syntax. If we pass these options straight
122# to the assembler, they won't always make sense. If we don't pass them to
123# the assembler, the final link will complain that the object files were
124# built with different defaults. So no matter what we do, we lose. We may as
125# well get out of this test sooner rather than later.
126set dest [target_info name]
127if [board_info $dest exists multilib_flags] {
128 set multilib_flags [board_info $dest multilib_flags]
129 if { "${multilib_flags}" != "" } {
130 gdb_suppress_entire_file "Assembly source test -- multilibs not supported by this test."
131 return;
132 }
133}
134
c906108c
SS
135set testfile "asm-source"
136set binfile ${objdir}/${subdir}/${testfile}
f2dd3617
EZ
137set srcfile1 asmsrc1.s
138set srcfile2 asmsrc2.s
c906108c 139
a73a20a2
EZ
140remote_exec build "rm -f ${subdir}/arch.inc"
141remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc
16a8534a 142
78492fde
AC
143if { "${asm-flags}" == "" } {
144 #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}"
145 set asm-flags "-gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
146}
c906108c 147
f2dd3617 148if {[target_assemble ${srcdir}/${subdir}/${srcfile1} asmsrc1.o "${asm-flags}"] != ""} then {
c906108c
SS
149 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
150}
f2dd3617 151if {[target_assemble ${srcdir}/${subdir}/${srcfile2} asmsrc2.o "${asm-flags}"] != ""} then {
c906108c
SS
152 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
153}
154
cf599fa7
CV
155set opts "debug ldflags=-nostartfiles"
156foreach i ${link-flags} {
157 append opts " ldflags=$i"
158}
159if { [gdb_compile "asmsrc1.o asmsrc2.o" "${binfile}" executable $opts] != "" } {
c906108c
SS
160 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
161}
162
163remote_exec build "mv asmsrc1.o asmsrc2.o ${objdir}/${subdir}"
164
165
166gdb_start
167gdb_reinitialize_dir $srcdir/$subdir
168gdb_load ${binfile}
169
170#
171# Run to `main' where we begin our tests.
172#
173
174if ![runto_main] then {
175 gdb_suppress_tests
176}
177
178# Execute the `f' command and see if the result includes source info.
78492fde 179gdb_test "f" "asmsrc1\[.\]s:29.*several_nops" "f at main"
c906108c
SS
180
181# See if we properly `next' over a macro with several insns.
78492fde 182gdb_test "n" "33\[ \]*.*foo2" "next over macro"
c906108c
SS
183
184# See if we can properly `step' into a subroutine call.
185gdb_test "s" "8\[ \]*.*" "step into foo2"
186
edb6ede1
MS
187# Test 'info target', and incidentally capture the entry point address.
188set entry_point 0
189send_gdb "info target\n"
190gdb_expect {
191 -re "Symbols from .*asm-source.*Entry point: 0x(\[01232456789abcdefABCDEF\]+).*$gdb_prompt $" {
192 set entry_point $expect_out(1,string)
193 pass "info target"
194 }
195 -re ".*$gdb_prompt $" {
196 fail "info target"
197 }
198 timeout {
199 fail "info target (timeout)"
200 }
201}
202
203# Capture the start symbol (may be '_start' or 'start')
204set entry_symbol ""
205send_gdb "info symbol 0x$entry_point\n"
206gdb_expect {
ecace851
JB
207 -re "info symbol 0x$entry_point\[\r\n\]+(\[^\r\n\]*) in section .*$gdb_prompt $" {
208 # We match the echoed `info symbol' command here, to help us
209 # reliably identify the beginning of the start symbol in the
210 # command's output. You might think we could just use '^' to
211 # start matching at the beginning of the line, but
212 # unfortunately, in Expect, '^' matches the beginning of the
213 # input that hasn't been matched by any expect clause yet. If
214 # every expect clause consumes a complete line, along with its
215 # terminating CR/LF, this is equivalent to the beginning of a
216 # line. But expect clauses that end with `.*' will consume as
217 # much as happened to arrive from the TTY --- exactly where
218 # they leave you depends on inter-process timing. :(
edb6ede1
MS
219 set entry_symbol $expect_out(1,string)
220 pass "info symbol"
221 }
222 -re ".*$gdb_prompt $" {
223 fail "info symbol"
224 }
225 timeout {
226 fail "info symbol (timeout)"
227 }
228}
229
ca9efc90 230# Now try a 'list' from the other source file.
edb6ede1 231gdb_test "list $entry_symbol" ".*gdbasm_startup.*" "list"
ca9efc90
MS
232
233# Now try a source file search
234gdb_test "search A routine for foo2 to call" \
8b1d7e37 235 "40\[ \t\]+comment \"A routine for foo2 to call.\"" "search"
ca9efc90 236
c906108c
SS
237# See if `f' prints the right source file.
238gdb_test "f" ".*asmsrc2\[.\]s:8.*" "f in foo2"
239
240# `next' one insn (or macro) to set up our stackframe (for the following bt).
241gdb_test "n" "12\[ \]*.*foo3" "n in foo2"
242
b5703437
MS
243# See if a simple `bt' prints the right source files and
244# doesn't fall off the stack.
245
246gdb_test "bt 10" \
247 "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33(.*\#2.*start\[^\r\n\]*)?" \
248 "bt ALL in foo2"
78492fde
AC
249
250# See if a capped `bt' prints the right source files.
251gdb_test "bt 2" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33.*" "bt 2 in foo2"
c906108c
SS
252
253# Step into another subroutine which lives back in the first source file.
254gdb_test "s" "" "s 2"
255
256# Next over insns to set up the stack frame.
257gdb_test "n" "" "n 2"
258
78492fde 259# Now see if a capped `bt' is correct.
8b1d7e37 260gdb_test "bt 3" "\#0.*foo3.*asmsrc1\[.\]s:45.*\#1.*foo2.*asmsrc2\[.\]s:12.*\#2.*main.*asmsrc1\[.\]s:33.*" "bt 3 in foo3"
ca9efc90
MS
261
262# Try 'info source' from asmsrc1.s
263gdb_test "info source" \
264 "Current source file is .*asmsrc1.s.*Source language is asm.*" \
265 "info source asmsrc1.s"
266
267# Try 'finishing' from foo3
268gdb_test "finish" "Run till exit from.*\[\r\n\]13\[ \t\]+gdbasm_call foo3" \
269 "finish from foo3"
270
271# Try 'info source' from asmsrc2.s
272gdb_test "info source" \
273 "Current source file is .*asmsrc2.s.*Source language is asm.*" \
274 "info source asmsrc2.s"
275
27924826
JB
276# Try 'info sources'. This can produce a lot of output on systems
277# with dynamic linking, where the system's shared libc was compiled
278# with debugging info; for example, on Linux, this produces 47kb of
279# output. So we consume it as we go.
280send_gdb "info sources\n"
281set seen_asmsrc_1 0
282set seen_asmsrc_2 0
283gdb_expect {
284 -re "^\[^,\]*asmsrc1.s(, |\[\r\n\]+)" {
285 set seen_asmsrc_1 1
286 exp_continue
287 }
288 -re "^\[^,\]*asmsrc2.s(, |\[\r\n\]+)" {
289 set seen_asmsrc_2 1
290 exp_continue
291 }
292 -re ", " {
293 exp_continue
294 }
295 -re "$gdb_prompt $" {
296 if {$seen_asmsrc_1 && $seen_asmsrc_2} {
297 pass "info sources"
298 } else {
299 fail "info sources"
300 }
301 }
302 timeout {
303 fail "info sources (timeout)"
304 }
305}
306
ca9efc90
MS
307
308# Try 'info line'
309gdb_test "info line" \
310 "Line 13 of.*asmsrc2.s.*starts at.*<foo2+.*> and ends at.*<foo2+.*>." \
311 "info line"
312
313# Try 'nexting' over next call to foo3
314gdb_test "next" "17\[ \t\]+gdbasm_leave" "next over foo3"
315
316# Try 'return' from foo2
317gdb_test "return" "\#0 main .*37\[ \t\]+gdbasm_exit0" "return from foo2" \
8b1d7e37 318 "Make (foo2|selected stack frame) return now\?.*" "y"
ca9efc90 319
2b6fd0d8
AC
320# Disassemble something, check the output
321proc test_dis { command var } {
322 global gdb_prompt
323 send_gdb "${command}\n"
324 gdb_expect {
572eb746 325 -re "${var}.*:.*(Cannot access|Bad address)" {
2b6fd0d8
AC
326 # The "disassembler" was only accessing the local
327 # executable and that would cause attempts to disassemble
328 # variables to fail (memory not valid).
329 fail "${command} (memory read error)"
330 }
331 -re "${var}.*:.*${gdb_prompt}" {
332 pass "${command}"
333 }
334 timeout {
335 fail "${command} (timeout)"
336 }
337 }
338}
339
340# See if we can look at a global variable, three ways
ca9efc90 341gdb_test "print globalvar" ".* = 11" "look at global variable"
2c161407 342test_dis "x/i &globalvar" "globalvar"
2b6fd0d8 343test_dis "disassem &globalvar &globalvar+1" "globalvar"
ca9efc90 344
2b6fd0d8 345# See if we can look at a static variable, three ways
ca9efc90 346gdb_test "print staticvar" ".* = 5" "look at static variable"
2b6fd0d8
AC
347test_dis "x/i &staticvar" "staticvar"
348test_dis "disassem &staticvar &staticvar+1" "staticvar"
ca9efc90
MS
349
350# See if we can look at a static function
83c31e7d 351gdb_test "disassem foostatic" ".*<foostatic\\+0>:.*End of assembler dump." \
ca9efc90
MS
352 "look at static function"
353
a73a20a2 354remote_exec build "rm -f ${subdir}/arch.inc"
This page took 0.362203 seconds and 4 git commands to generate.