]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-disassemble.exp
Switch the license of all .exp files to GPLv3.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-disassemble.exp
CommitLineData
6aba47ca
DJ
1# Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2007
2# Free Software Foundation, Inc.
fb40c209
AC
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
fb40c209 7# (at your option) any later version.
e22f8b7c 8#
fb40c209
AC
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
fb40c209 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb40c209 16
fb40c209
AC
17#
18# Test Machine interface (MI) operations for disassembly.
19#
20# The goal is not to test gdb functionality, which is done by other tests,
21# but to verify the correct output response to MI operations.
22#
23
24load_lib mi-support.exp
b30bf9ee 25set MIFLAGS "-i=mi"
fb40c209
AC
26
27gdb_exit
28if [mi_gdb_start] {
29 continue
30}
31
32set testfile "basics"
33set srcfile ${testfile}.c
34set binfile ${objdir}/${subdir}/${testfile}
35if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
b60f0898
JB
36 untested mi-disassemble.exp
37 return -1
fb40c209
AC
38}
39
fb40c209
AC
40proc test_disassembly_only {} {
41 global mi_gdb_prompt
42 global hex
19e08fb3 43 global decimal
fb40c209 44
45f07fef
MC
45 set line_main_head [gdb_get_line_number "main ("]
46 set line_main_body [expr $line_main_head + 2]
47
fb40c209
AC
48 # Test disassembly more only for the current function.
49 # Tests:
e2d00831 50 # -data-disassemble -s $pc -e "$pc+8" -- 0
45f07fef 51 # -data-disassembly -f basics.c -l $line_main_body -- 0
fb40c209
AC
52
53 mi_gdb_test "print/x \$pc" "" ""
e2d00831 54 mi_gdb_test "111-data-disassemble -s \$pc -e \"\$pc + 12\" -- 0" \
70242e8d 55 "111\\^done,asm_insns=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\},\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}.*\]" \
e2d00831 56 "data-disassemble from pc to pc+12 assembly only"
fb40c209 57
45f07fef 58 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -- 0" \
70242e8d 59 "222\\^done,asm_insns=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"0\",inst=\".*\"\},.*,\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]" \
e2d00831 60 "data-disassemble file & line, assembly only"
fb40c209
AC
61}
62
63proc test_disassembly_lines_limit {} {
64 global mi_gdb_prompt
65 global hex
19e08fb3 66 global decimal
fb40c209 67
45f07fef
MC
68 set line_main_head [gdb_get_line_number "main ("]
69 set line_main_body [expr $line_main_head + 2]
70
fb40c209
AC
71 # Test disassembly more only for the current function.
72 # Tests:
45f07fef
MC
73 # -data-disassembly -f basics.c -l $line_main_body -n 20 -- 0
74 # -data-disassembly -f basics.c -l $line_main_body -n 0 -- 0
75 # -data-disassembly -f basics.c -l $line_main_body -n 50 -- 0
fb40c209
AC
76
77 mi_gdb_test "print/x \$pc" "" ""
45f07fef 78 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 20 -- 0" \
70242e8d 79 "222\\^done,asm_insns=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"0\",inst=\".*\"\},.*,\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]" \
e2d00831 80 "data-disassemble file, line, number assembly only"
fb40c209 81
45f07fef 82 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 0 -- 0" \
70242e8d 83 "222\\^done,asm_insns=\\\[\\\]" \
e2d00831 84 "data-disassemble file, line, number (zero lines) assembly only"
fb40c209 85
45f07fef 86 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 50 -- 0" \
70242e8d 87 "222\\^done,asm_insns=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"0\",inst=\".*\"\},.*,\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]" \
e2d00831 88 "data-disassemble file, line, number (more than main lines) assembly only"
fb40c209
AC
89}
90
e2d00831 91
fb40c209
AC
92proc test_disassembly_mixed {} {
93 global mi_gdb_prompt
94 global hex
95 global decimal
96
45f07fef
MC
97 set line_callee2_head [gdb_get_line_number "callee2 ("]
98 set line_callee2_open_brace [expr $line_callee2_head + 1]
99
fb40c209
AC
100 # Test disassembly more only for the current function.
101 # Tests:
45f07fef 102 # -data-disassembly -f basics.c -l $line_callee2_open_brace -- 1
e2d00831 103 # -data-disassembly -s $pc -e "$pc+8" -- 1
fb40c209 104
45f07fef
MC
105 mi_gdb_test "002-data-disassemble -f basics.c -l $line_callee2_open_brace -- 1" \
106 "002\\^done,asm_insns=\\\[src_and_asm_line=\{line=\"$line_callee2_open_brace\",file=\".*basics.c\",line_asm_insn=\\\[\{address=\"$hex\",func-name=\"callee2\",offset=\"0\",inst=\".*\"\}.*\\\]\}.*,src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\\\[.*\{address=\"$hex\",func-name=\"callee2\",offset=\"$decimal\",inst=\".*\"\}\\\]\}\\\]" \
e2d00831 107 "data-disassemble file, line assembly mixed"
fb40c209
AC
108
109 #
110 # In mixed mode, the lowest level of granularity is the source line.
111 # So we are going to get the disassembly for the source line at
e2d00831 112 # which we are now, even if we have specified that the range is only 2 insns.
fb40c209 113 #
e2d00831 114 mi_gdb_test "003-data-disassemble -s \$pc -e \"\$pc+4\" -- 1" \
70242e8d 115 "003\\^done,asm_insns=\\\[src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}.*\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]\}\\\]" \
fb40c209 116 "data-disassemble range assembly mixed"
fb40c209
AC
117}
118
119proc test_disassembly_mixed_lines_limit {} {
120 global mi_gdb_prompt
121 global hex
122 global decimal
123
45f07fef
MC
124 set line_main_head [gdb_get_line_number "main ("]
125 set line_main_open_brace [expr $line_main_head + 1]
126 set line_main_body [expr $line_main_head + 2]
127
fb40c209
AC
128 # Test disassembly more only for the current function.
129 # Tests:
45f07fef
MC
130 # -data-disassembly -f basics.c -l $line_main_body -n 20 -- 1
131 # -data-disassembly -f basics.c -l $line_main_body -n 0 -- 1
132 # -data-disassembly -f basics.c -l $line_main_body -n 50 -- 1
fb40c209
AC
133
134 mi_gdb_test "print/x \$pc" "" ""
45f07fef 135 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 20 -- 1" \
70242e8d 136 "222\\^done,asm_insns=\\\[src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"0\",inst=\".*\"\},.*,\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]\}\]" \
e2d00831 137 "data-disassemble file, line, number assembly mixed"
fb40c209 138
45f07fef
MC
139 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 0 -- 1" \
140 "222\\^done,asm_insns=\\\[src_and_asm_line=\{line=\"$line_main_open_brace\",file=\".*basics.c\",line_asm_insn=\\\[\\\]\}\\\]" \
e2d00831 141 "data-disassemble file, line, number (zero lines) assembly mixed"
fb40c209 142
45f07fef 143 mi_gdb_test "222-data-disassemble -f basics.c -l $line_main_body -n 50 -- 1" \
70242e8d 144 "222\\^done,asm_insns=\\\[src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\\\[\{address=\"$hex\",func-name=\"main\",offset=\"0\",inst=\".*\"\}.*,\{address=\"$hex\",func-name=\"main\",offset=\"$decimal\",inst=\".*\"\}\\\]\}\]" \
e2d00831 145 "data-disassemble file, line, number (more than main lines) assembly mixed"
fb40c209
AC
146}
147
148proc test_disassembly_bogus_args {} {
149 global mi_gdb_prompt
150 global hex
151
45f07fef
MC
152 set line_main_head [gdb_get_line_number "main ("]
153 set line_main_body [expr $line_main_head + 2]
154
fb40c209
AC
155 # Test that bogus input to disassembly command is rejected.
156 # Tests:
e2d00831
EZ
157 # -data-disassembly -f foo -l abc -n 0 -- 0
158 # -data-disassembly -s foo -e bar -- 0
159 # -data-disassembly -s $pc -f basics.c -- 0
160 # -data-disassembly -f basics.c -l 32 -- 9
fb40c209 161
e2d00831 162 mi_gdb_test "123-data-disassemble -f foo -l abc -n 0 -- 0" \
39fb8e9e 163 "&.*123\\^error,msg=\"mi_cmd_disassemble: Invalid filename.\"" \
e2d00831 164 "data-disassemble bogus filename"
fb40c209 165
e2d00831 166 mi_gdb_test "321-data-disassemble -s foo -e bar -- 0" \
39fb8e9e 167 "&.*321\\^error,msg=\"No symbol \\\\\"foo\\\\\" in current context.\"" \
e2d00831 168 "data-disassemble bogus address"
fb40c209 169
e2d00831 170 mi_gdb_test "456-data-disassemble -s \$pc -f basics.c -- 0" \
39fb8e9e 171 "&.*456\\^error,msg=\"mi_cmd_disassemble: Usage: \\( .-f filename -l linenum .-n howmany.. \\| .-s startaddr -e endaddr.\\) .--. mixed_mode.\"" \
e2d00831 172 "data-disassemble mix different args"
fb40c209 173
45f07fef 174 mi_gdb_test "789-data-disassemble -f basics.c -l $line_main_body -- 9" \
39fb8e9e 175 "&.*789\\^error,msg=\"mi_cmd_disassemble: Mixed_mode argument must be 0 or 1.\"" \
e2d00831 176 "data-disassemble wrong mode arg"
fb40c209
AC
177
178}
179
6afa27b0 180mi_run_to_main
fb40c209
AC
181test_disassembly_only
182test_disassembly_mixed
183test_disassembly_bogus_args
184test_disassembly_lines_limit
185test_disassembly_mixed_lines_limit
fb40c209
AC
186
187mi_gdb_exit
188return 0