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