OSDN Git Service

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