1 # Copyright 2018-2023 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/>.
16 # Test support for DW_OP_GNU_variable_value.
20 # This test can only be run on targets which support DWARF-2 and use gas.
21 if ![dwarf2_support] {
25 # We'll place the output of Dwarf::assemble in varval.S.
26 standard_testfile .c .S
28 # ${testfile} is now "varval". srcfile2 is "varval.S".
29 set executable ${testfile}
30 set asm_file [standard_output_file ${srcfile2}]
32 # We need to know the size of integer and address types in order
33 # to write some of the debugging info we'd like to generate.
35 # For that, we ask GDB by debugging our varval program.
36 # Any program would do, but since we already have varval
37 # specifically for this testcase, might as well use that.
38 if [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] {
41 set int_size [get_sizeof "int" -1]
42 # gdb always assumes references are implemented as pointers.
43 set addr_size [get_sizeof "void *" -1]
45 proc setup_exec { arg_bad } {
46 global asm_file executable srcfile bad
50 Dwarf::assemble ${asm_file} {
51 global bad int_size addr_size
55 {DW_AT_language @DW_LANG_C_plus_plus}
57 declare_labels int_label ptr_label struct_label var_a_label \
58 var_b_label var_c_label var_p_label var_bad_label \
59 varval_label var_s_label var_untyped_label \
60 var_a_abstract_label var_a_concrete_label \
61 varval2_label varval3_def_label varval3_decl_label \
62 int_array_label int_array_of_1_label
65 int_label: DW_TAG_base_type {
66 {DW_AT_byte_size ${int_size} DW_FORM_udata}
67 {DW_AT_encoding @DW_ATE_signed}
71 ptr_label: DW_TAG_pointer_type {
72 {DW_AT_type :$int_label}
75 var_a_label: DW_TAG_variable {
77 {DW_AT_type :${int_label}}
78 {DW_AT_external 1 DW_FORM_flag}
79 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_a"]} SPECIAL_expr}
82 var_a_abstract_label: DW_TAG_variable {
83 {DW_AT_type :${int_label}}
84 {DW_AT_external 1 DW_FORM_flag}
87 var_b_label: DW_TAG_variable {
89 {DW_AT_type :${int_label}}
90 {DW_AT_external 1 DW_FORM_flag}
91 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_b"]} SPECIAL_expr}
94 var_c_label: DW_TAG_variable {
96 {DW_AT_type :${int_label}}
97 {DW_AT_external 1 DW_FORM_flag}
98 {DW_AT_const_value 53 DW_FORM_sdata}
101 var_p_label: DW_TAG_variable {
103 {DW_AT_type :${ptr_label}}
104 {DW_AT_external 1 DW_FORM_flag}
105 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_p"]} SPECIAL_expr}
109 var_bad_label: DW_TAG_variable {
110 {DW_AT_name "var_bad"}
111 {DW_AT_type :${int_label}}
112 {DW_AT_external 1 DW_FORM_flag}
116 struct_label: DW_TAG_structure_type {
117 {DW_AT_byte_size 8*$int_size DW_FORM_sdata}
121 {DW_AT_type :$int_label}
122 {DW_AT_data_member_location 0*$int_size DW_FORM_udata}
126 {DW_AT_type :$int_label}
127 {DW_AT_data_member_location 1*$int_size DW_FORM_udata}
131 {DW_AT_type :$int_label}
132 {DW_AT_data_member_location 2*$int_size DW_FORM_udata}
136 {DW_AT_type :$int_label}
137 {DW_AT_data_member_location 3*$int_size DW_FORM_udata}
141 {DW_AT_type :$int_label}
142 {DW_AT_data_member_location 4*$int_size DW_FORM_udata}
146 {DW_AT_type :$int_label}
147 {DW_AT_data_member_location 5*$int_size DW_FORM_udata}
151 {DW_AT_type :$int_label}
152 {DW_AT_data_member_location 6*$int_size DW_FORM_udata}
156 {DW_AT_type :$int_label}
157 {DW_AT_data_member_location 7*$int_size DW_FORM_udata}
161 var_s_label: DW_TAG_variable {
163 {DW_AT_type :${struct_label}}
164 {DW_AT_external 1 DW_FORM_flag}
165 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_s"]} SPECIAL_expr}
168 var_untyped_label: DW_TAG_variable {
169 {DW_AT_name "var_untyped"}
170 {DW_AT_external 1 DW_FORM_flag}
171 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_b"]} SPECIAL_expr}
174 int_array_label: DW_TAG_array_type {
175 {DW_AT_type :${int_label}}
177 DW_TAG_subrange_type {}
179 varval3_decl_label: DW_TAG_variable {
180 {DW_AT_name "varval3"}
181 {DW_AT_type :${int_array_label}}
182 {DW_AT_external 1 DW_FORM_flag}
183 {DW_AT_declaration 1 DW_FORM_flag}
185 int_array_of_1_label: DW_TAG_array_type {
186 {DW_AT_type :${int_label}}
188 DW_TAG_subrange_type {
189 {DW_AT_type :$int_label}
190 {DW_AT_upper_bound 0 DW_FORM_data1}
193 varval3_def_label: DW_TAG_variable {
194 {DW_AT_name "varval3"}
195 {DW_AT_external 1 DW_FORM_flag}
196 {DW_AT_type :${int_array_of_1_label}}
197 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_a"]} SPECIAL_expr}
201 {MACRO_AT_func { "main" }}
202 {DW_AT_type :${int_label}}
203 {DW_AT_external 1 DW_FORM_flag}
205 varval_label: DW_TAG_variable {
206 {DW_AT_name "varval"}
207 {DW_AT_type :${int_label}}
209 DW_OP_GNU_variable_value ${var_a_label}
215 varval2_label: DW_TAG_variable {
216 {DW_AT_name "varval2"}
217 {DW_AT_type :${int_label}}
219 DW_OP_GNU_variable_value ${var_a_abstract_label}
223 var_a_concrete_label: DW_TAG_variable {
224 {DW_AT_abstract_origin :${var_a_abstract_label}}
225 {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_a"]} SPECIAL_expr}
228 {DW_AT_name "constval"}
229 {DW_AT_type :${int_label}}
231 DW_OP_GNU_variable_value ${var_c_label}
236 {DW_AT_name "mixedval"}
237 {DW_AT_type :${int_label}}
239 DW_OP_GNU_variable_value ${var_c_label}
240 DW_OP_GNU_variable_value ${var_b_label}
242 DW_OP_GNU_variable_value ${varval_label}
246 DW_OP_GNU_variable_value ${varval_label}
252 {DW_AT_name "pointerval"}
253 {DW_AT_type :${ptr_label}}
255 DW_OP_GNU_variable_value ${var_p_label}
261 {DW_AT_name "badval"}
262 {DW_AT_type :${int_label}}
264 DW_OP_GNU_variable_value ${var_bad_label}
270 {DW_AT_name "structval"}
271 {DW_AT_type :${struct_label}}
273 DW_OP_GNU_variable_value ${var_s_label}
278 {DW_AT_name "untypedval"}
280 DW_OP_GNU_variable_value ${var_untyped_label}
286 {DW_AT_name "bad_die_val1"}
288 DW_OP_GNU_variable_value 0xabcdef11
293 {DW_AT_name "bad_die_val2"}
295 DW_OP_GNU_variable_value ${ptr_label}+1
305 if [prepare_for_testing "failed to prepare" ${executable} [list ${asm_file} ${srcfile}] {}] {
310 if { [setup_exec 0] == -1 } {
314 with_test_prefix "pre-main" {
315 gdb_test "print varval3" "= \\{8\\}" ""
318 # DW_OP_GNU_variable_value implementation requires a valid frame.
323 gdb_test "print varval" "= 8"
324 gdb_test "print varval2" "= 8"
325 gdb_test "print varval3" "= \\{8\\}"
326 gdb_test "print constval" "= 53"
327 gdb_test "print mixedval" "= 42"
328 gdb_test "print pointerval" "= \\(int \\*\\) $hex <var_b>"
329 gdb_test "print *pointerval" "= 3"
331 # Jakub says: "The intended behavior is that the debug info consumer
332 # computes the value of that referenced variable at the current PC,
333 # and if it can compute it and pushes the value as a generic type
334 # integer into the DWARF stack (it is really only meaningful when
335 # referring to integral/pointer typed variables)."
337 gdb_test "print structval" \
338 "Type of DW_OP_GNU_variable_value DIE must be an integer or pointer\\."
340 gdb_test "print untypedval" \
341 "Type of DW_OP_GNU_variable_value DIE must be an integer or pointer\\."
343 if { [setup_exec 1] == -1 } {
347 # DW_OP_GNU_variable_value implementation requires a valid frame.
351 gdb_test "print badval" "value has been optimized out"
352 gdb_test "print bad_die_val1" \
353 "invalid dwarf2 offset 0xabcdef11"
354 gdb_test "print bad_die_val2" \
355 "Bad DW_OP_GNU_variable_value DIE\\."