[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / data-loc.exp
blob5817c49fe59bd4f05f36a02f35cb44b449853eea
1 # Copyright 2014-2019 Free Software Foundation, Inc.
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.
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.
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 load_lib dwarf.exp
17 # This test can only be run on targets which support DWARF-2 and use gas.
18 if {![dwarf2_support]} {
19 return 0
22 standard_testfile data-loc.c data-loc-dw.S
24 # We need to know the size of integer and address types in order
25 # to write some of the debugging info we'd like to generate.
27 # For that, we ask GDB by debugging our data-loc.c program.
28 # Any program would do, but since we already have data-loc.c
29 # specifically for this testcase, might as well use that.
31 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
32 return -1
35 # Make some DWARF for the test.
36 set asm_file [standard_output_file $srcfile2]
37 Dwarf::assemble $asm_file {
38 cu {} {
39 DW_TAG_compile_unit {
40 {DW_AT_language @DW_LANG_Ada95}
41 {DW_AT_name foo.adb}
42 {DW_AT_comp_dir /tmp}
43 } {
44 declare_labels integer_label array_label array_ptr_label
45 set int_size [get_sizeof "int" 4]
47 integer_label: DW_TAG_base_type {
48 {DW_AT_byte_size $int_size DW_FORM_sdata}
49 {DW_AT_encoding @DW_ATE_signed}
50 {DW_AT_name integer}
53 array_label: DW_TAG_array_type {
54 {DW_AT_name foo__array_type}
55 {DW_AT_type :$integer_label}
56 {DW_AT_data_location {
57 DW_OP_push_object_address
58 DW_OP_deref
59 } SPECIAL_expr}
60 {external 1 flag}
61 } {
62 DW_TAG_subrange_type {
63 {DW_AT_type :$integer_label}
64 {DW_AT_lower_bound {
65 DW_OP_push_object_address
66 DW_OP_plus_uconst [get_sizeof "void *" 96]
67 DW_OP_deref
68 DW_OP_deref_size [get_sizeof "int" 4]
69 } SPECIAL_expr}
70 {DW_AT_upper_bound {
71 DW_OP_push_object_address
72 DW_OP_plus_uconst [get_sizeof "void *" 96]
73 DW_OP_deref
74 DW_OP_plus_uconst [get_sizeof "int" 4]
75 DW_OP_deref_size [get_sizeof "int" 4]
76 } SPECIAL_expr}
79 array_ptr_label: DW_TAG_typedef {
80 {DW_AT_name foo__array_type}
81 {DW_AT_type :$array_label}
83 DW_TAG_variable {
84 {DW_AT_name foo__three}
85 {DW_AT_type :$array_label}
86 {DW_AT_location {
87 DW_OP_addr [gdb_target_symbol table_1]
88 } SPECIAL_expr}
89 {external 1 flag}
91 DW_TAG_variable {
92 {DW_AT_name foo__three_tdef}
93 {DW_AT_type :$array_ptr_label}
94 {DW_AT_location {
95 DW_OP_addr [gdb_target_symbol table_1]
96 } SPECIAL_expr}
97 {external 1 flag}
99 DW_TAG_variable {
100 {DW_AT_name foo__five}
101 {DW_AT_type :$array_label}
102 {DW_AT_location {
103 DW_OP_addr [gdb_target_symbol table_2]
104 } SPECIAL_expr}
105 {external 1 flag}
107 DW_TAG_variable {
108 {DW_AT_name foo__five_tdef}
109 {DW_AT_type :$array_ptr_label}
110 {DW_AT_location {
111 DW_OP_addr [gdb_target_symbol table_2]
112 } SPECIAL_expr}
113 {external 1 flag}
119 # Now that we've generated the DWARF debugging info, rebuild our
120 # program using our debug info instead of the info generated by
121 # the compiler.
123 if { [prepare_for_testing "failed to prepare" ${testfile} \
124 [list $srcfile $asm_file] {nodebug}] } {
125 return -1
128 if ![runto_main] {
129 return -1
132 gdb_test_no_output "set language ada"
134 # foo.three
136 gdb_test "print foo.three" \
137 " = \\(1, 2, 3\\)"
139 gdb_test "ptype foo.three" \
140 "type = array \\(1 .. 3\\) of integer"
142 gdb_test "print foo.three(1)" \
143 " = 1"
145 gdb_test "print foo.three(2)" \
146 " = 2"
148 gdb_test "print foo.three(3)" \
149 " = 3"
151 gdb_test "print foo.three'first" \
152 " = 1"
154 gdb_test "print foo.three'last" \
155 " = 3"
157 gdb_test "print foo.three'length" \
158 " = 3"
160 # foo.three_tdef
162 gdb_test "print foo.three_tdef" \
163 " = \\(1, 2, 3\\)"
165 gdb_test "ptype foo.three_tdef" \
166 "type = array \\(1 .. 3\\) of integer"
168 gdb_test "print foo.three_tdef(1)" \
169 " = 1"
171 gdb_test "print foo.three_tdef(2)" \
172 " = 2"
174 gdb_test "print foo.three_tdef(3)" \
175 " = 3"
177 gdb_test "print foo.three_tdef'first" \
178 " = 1"
180 gdb_test "print foo.three_tdef'last" \
181 " = 3"
183 gdb_test "print foo.three_tdef'length" \
184 " = 3"
186 gdb_test "print foo.five" \
187 " = \\(2 => 5, 8, 13, 21, 34\\)"
189 gdb_test "ptype foo.five" \
190 "type = array \\(2 .. 6\\) of integer"
192 gdb_test "ptype foo.array_type" \
193 "type = array \\(<>\\) of integer"
195 # foo.five
197 gdb_test "print foo.five(2)" \
198 " = 5"
200 gdb_test "print foo.five(3)" \
201 " = 8"
203 gdb_test "print foo.five(4)" \
204 " = 13"
206 gdb_test "print foo.five(5)" \
207 " = 21"
209 gdb_test "print foo.five(6)" \
210 " = 34"
212 gdb_test "print foo.five'first" \
213 " = 2"
215 gdb_test "print foo.five'last" \
216 " = 6"
218 gdb_test "print foo.five'length" \
219 " = 5"
221 # foo.five_tdef
223 gdb_test "print foo.five_tdef" \
224 " = \\(2 => 5, 8, 13, 21, 34\\)"
226 gdb_test "ptype foo.five_tdef" \
227 "type = array \\(2 .. 6\\) of integer"
229 gdb_test "ptype foo.array_type" \
230 "type = array \\(<>\\) of integer"
232 gdb_test "print foo.five_tdef(2)" \
233 " = 5"
235 gdb_test "print foo.five_tdef(3)" \
236 " = 8"
238 gdb_test "print foo.five_tdef(4)" \
239 " = 13"
241 gdb_test "print foo.five_tdef(5)" \
242 " = 21"
244 gdb_test "print foo.five_tdef(6)" \
245 " = 34"
247 gdb_test "print foo.five_tdef'first" \
248 " = 2"
250 gdb_test "print foo.five_tdef'last" \
251 " = 6"
253 gdb_test "print foo.five_tdef'length" \
254 " = 5"
256 gdb_test_no_output "set lang c"
258 # foo__three
260 gdb_test "print foo__three" \
261 " = \\{1, 2, 3\\}"
263 gdb_test "ptype foo__three" \
264 "type = integer \\\[3\\\]"
266 # foo__three_tdef
268 gdb_test "print foo__three_tdef" \
269 " = \\{1, 2, 3\\}"
271 gdb_test "ptype foo__three_tdef" \
272 "type = integer \\\[3\\\]"
274 # foo__five
276 gdb_test "print foo__five" \
277 " = \\{5, 8, 13, 21, 34\\}"
279 gdb_test "ptype foo__five" \
280 "type = integer \\\[5\\\]"
282 # foo__five_tdef
284 gdb_test "print foo__five_tdef" \
285 " = \\{5, 8, 13, 21, 34\\}"
287 gdb_test "ptype foo__five_tdef" \
288 "type = integer \\\[5\\\]"
290 gdb_test "ptype foo__array_type" \
291 "type = integer \\\[variable length\\\]"