*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.asm / asm-source.exp
CommitLineData
b6ba6518 1# Copyright 1998, 2000 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}
017ac23d
MS
50if [istarget "i\[3456\]86-*-*"] then {
51 set asm-arch i386
52}
9a4d72d5
MS
53if [istarget "m32r*-*"] then {
54 set asm-arch m32r
55}
756caa3d
MS
56if [istarget "sparc-*-*"] then {
57 set asm-arch sparc
58}
105ba819
CV
59if [istarget "xstormy16-*-*"] then {
60 set asm-arch xstormy16
61 set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
105ba819 62}
78492fde 63if { "${asm-arch}" == "" } {
9383332c 64 gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
c906108c
SS
65}
66
67set testfile "asm-source"
68set binfile ${objdir}/${subdir}/${testfile}
69set src1 ${srcdir}/${subdir}/asmsrc1.s
70set src2 ${srcdir}/${subdir}/asmsrc2.s
71
78492fde
AC
72if { "${asm-flags}" == "" } {
73 #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}"
74 set asm-flags "-gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
75}
c906108c 76
78492fde 77if {[target_assemble ${src1} asmsrc1.o "${asm-flags}"] != ""} then {
c906108c
SS
78 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
79}
78492fde 80if {[target_assemble ${src2} asmsrc2.o "${asm-flags}"] != ""} then {
c906108c
SS
81 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
82}
83
cf599fa7
CV
84set opts "debug ldflags=-nostartfiles"
85foreach i ${link-flags} {
86 append opts " ldflags=$i"
87}
88if { [gdb_compile "asmsrc1.o asmsrc2.o" "${binfile}" executable $opts] != "" } {
c906108c
SS
89 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
90}
91
92remote_exec build "mv asmsrc1.o asmsrc2.o ${objdir}/${subdir}"
93
94
95gdb_start
96gdb_reinitialize_dir $srcdir/$subdir
97gdb_load ${binfile}
98
99#
100# Run to `main' where we begin our tests.
101#
102
103if ![runto_main] then {
104 gdb_suppress_tests
105}
106
107# Execute the `f' command and see if the result includes source info.
78492fde 108gdb_test "f" "asmsrc1\[.\]s:29.*several_nops" "f at main"
c906108c
SS
109
110# See if we properly `next' over a macro with several insns.
78492fde 111gdb_test "n" "33\[ \]*.*foo2" "next over macro"
c906108c
SS
112
113# See if we can properly `step' into a subroutine call.
114gdb_test "s" "8\[ \]*.*" "step into foo2"
115
edb6ede1
MS
116# Test 'info target', and incidentally capture the entry point address.
117set entry_point 0
118send_gdb "info target\n"
119gdb_expect {
120 -re "Symbols from .*asm-source.*Entry point: 0x(\[01232456789abcdefABCDEF\]+).*$gdb_prompt $" {
121 set entry_point $expect_out(1,string)
122 pass "info target"
123 }
124 -re ".*$gdb_prompt $" {
125 fail "info target"
126 }
127 timeout {
128 fail "info target (timeout)"
129 }
130}
131
132# Capture the start symbol (may be '_start' or 'start')
133set entry_symbol ""
134send_gdb "info symbol 0x$entry_point\n"
135gdb_expect {
136 -re "info symbol 0x$entry_point\[\r\n\]*" {
137 exp_continue
138 }
347dc97d
JB
139 -re "^(.*) in section .*$gdb_prompt $" {
140 # It's important to anchor the pattern above at the beginning
141 # of the line. Without that carat, the (.*) may end up
142 # matching the empty string.
edb6ede1
MS
143 set entry_symbol $expect_out(1,string)
144 pass "info symbol"
145 }
146 -re ".*$gdb_prompt $" {
147 fail "info symbol"
148 }
149 timeout {
150 fail "info symbol (timeout)"
151 }
152}
153
ca9efc90 154# Now try a 'list' from the other source file.
edb6ede1 155gdb_test "list $entry_symbol" ".*gdbasm_startup.*" "list"
ca9efc90
MS
156
157# Now try a source file search
158gdb_test "search A routine for foo2 to call" \
159 "39\[ \t\]+comment \"A routine for foo2 to call.\"" "search"
160
c906108c
SS
161# See if `f' prints the right source file.
162gdb_test "f" ".*asmsrc2\[.\]s:8.*" "f in foo2"
163
164# `next' one insn (or macro) to set up our stackframe (for the following bt).
165gdb_test "n" "12\[ \]*.*foo3" "n in foo2"
166
b5703437
MS
167# See if a simple `bt' prints the right source files and
168# doesn't fall off the stack.
169
170gdb_test "bt 10" \
171 "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33(.*\#2.*start\[^\r\n\]*)?" \
172 "bt ALL in foo2"
78492fde
AC
173
174# See if a capped `bt' prints the right source files.
175gdb_test "bt 2" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33.*" "bt 2 in foo2"
c906108c
SS
176
177# Step into another subroutine which lives back in the first source file.
178gdb_test "s" "" "s 2"
179
180# Next over insns to set up the stack frame.
181gdb_test "n" "" "n 2"
182
78492fde
AC
183# Now see if a capped `bt' is correct.
184gdb_test "bt 3" "\#0.*foo3.*asmsrc1\[.\]s:44.*\#1.*foo2.*asmsrc2\[.\]s:12.*\#2.*main.*asmsrc1\[.\]s:33.*" "bt 3 in foo3"
ca9efc90
MS
185
186# Try 'info source' from asmsrc1.s
187gdb_test "info source" \
188 "Current source file is .*asmsrc1.s.*Source language is asm.*" \
189 "info source asmsrc1.s"
190
191# Try 'finishing' from foo3
192gdb_test "finish" "Run till exit from.*\[\r\n\]13\[ \t\]+gdbasm_call foo3" \
193 "finish from foo3"
194
195# Try 'info source' from asmsrc2.s
196gdb_test "info source" \
197 "Current source file is .*asmsrc2.s.*Source language is asm.*" \
198 "info source asmsrc2.s"
199
200# Try 'info sources'
201gdb_test "info sources" \
202 "Source files .*asmsrc\[12\].s.*asmsrc\[12\].s.*" \
203 "info sources"
204
205# Try 'info line'
206gdb_test "info line" \
207 "Line 13 of.*asmsrc2.s.*starts at.*<foo2+.*> and ends at.*<foo2+.*>." \
208 "info line"
209
210# Try 'nexting' over next call to foo3
211gdb_test "next" "17\[ \t\]+gdbasm_leave" "next over foo3"
212
213# Try 'return' from foo2
214gdb_test "return" "\#0 main .*37\[ \t\]+gdbasm_exit0" "return from foo2" \
215 "Make selected stack frame return now\?.*" "y"
216
217# See if we can look at a global variable
218gdb_test "print globalvar" ".* = 11" "look at global variable"
219
220# See if we can look at a static variable
221gdb_test "print staticvar" ".* = 5" "look at static variable"
222
223# See if we can look at a static function
224gdb_test "disassem foostatic" ".*<foostatic>:.*End of assembler dump." \
225 "look at static function"
226
This page took 0.178147 seconds and 4 git commands to generate.