gdb/copyright.py: Convert to Python 3
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / store.exp
CommitLineData
8da195dd
AC
1# This testcase is part of GDB, the GNU debugger.
2
42a4f53d 3# Copyright 2002-2019 Free Software Foundation, Inc.
27e829d0
AC
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
27e829d0
AC
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
27e829d0 17
e229648e
JK
18standard_testfile
19set executable $testfile
27e829d0 20
5b362f04 21if { [prepare_for_testing "failed to prepare" $executable $srcfile] } {
b9c5a23d 22 return -1
27e829d0
AC
23}
24
4c93b1db 25if [get_compiler_info] {
ae59b1da 26 return -1
27e829d0
AC
27}
28
27e829d0
AC
29#
30# set it up at a breakpoint so we can play with the variable values
31#
32
33if ![runto_main] then {
34 perror "couldn't run to breakpoint"
35 continue
36}
37
38#
39
81a58f5b 40proc check_set { t l r new add } {
263a0f8c
JK
41 global gdb_prompt
42
8da195dd 43 set prefix "var ${t} l"
27e829d0 44 gdb_test "tbreak wack_${t}"
263a0f8c
JK
45
46 set test "continue to wack_${t}"
47 gdb_test_multiple "continue" $test {
48 -re "register ${t} l = u, r = v;\r\n$gdb_prompt $" {
49 # See GCC PR debug/53948.
50 send_gdb "next\n"
51 exp_continue
52 }
53 -re "l = add_${t} .l, r.;\r\n$gdb_prompt $" {
54 pass $test
55 }
56 }
57
25e5c209
TV
58 set supported 1
59 set test "${prefix}; print old l, expecting ${l}"
60 gdb_test_multiple "print l" "$test" {
61 -re " = <optimized out>\r\n$gdb_prompt $" {
62 unsupported $test
63 set supported 0
64 }
65 -re " = ${l}\r\n$gdb_prompt $" {
66 pass $test
67 }
68 }
69 if { $supported } {
70 gdb_test "print r" " = ${r}" \
71 "${prefix}; print old r, expecting ${r}"
72 gdb_test_no_output "set variable l = 4" \
73 "${prefix}; setting l to 4"
74 gdb_test "print l" " = ${new}" \
75 "${prefix}; print new l, expecting ${new}"
76 gdb_test "next" "return l \\+ r;" \
77 "${prefix}; next over add call"
78 gdb_test "print l" " = ${add}" \
79 "${prefix}; print incremented l, expecting ${add}"
80 }
27e829d0
AC
81}
82
30b66ecc 83check_set "charest" "-1 .*" "-2 .*" "4 ..004." "2 ..002."
81a58f5b
AC
84check_set "short" "-1" "-2" "4" "2"
85check_set "int" "-1" "-2" "4" "2"
86check_set "long" "-1" "-2" "4" "2"
87check_set "longest" "-1" "-2" "4" "2"
88check_set "float" "-1" "-2" "4" "2"
89check_set "double" "-1" "-2" "4" "2"
90check_set "doublest" "-1" "-2" "4" "2"
27e829d0
AC
91
92#
93
81a58f5b 94proc up_set { t l r new } {
25e5c209
TV
95 global gdb_prompt
96
8da195dd 97 set prefix "upvar ${t} l"
27e829d0 98 gdb_test "tbreak add_${t}"
8da195dd
AC
99 gdb_test "continue" "return u . v;" \
100 "continue to add_${t}"
101 gdb_test "up" "l = add_${t} .l, r.;" \
102 "${prefix}; up"
25e5c209
TV
103
104 set supported 1
105 set test "${prefix}; print old l, expecting ${l}"
106 gdb_test_multiple "print l" "$test" {
107 -re " = <optimized out>\r\n$gdb_prompt $" {
108 unsupported $test
109 set supported 0
110 }
111 -re " = ${l}\r\n$gdb_prompt $" {
112 pass $test
113 }
114 }
115 if { $supported } {
116 gdb_test "print r" " = ${r}" \
117 "${prefix}; print old r, expecting ${r}"
118 gdb_test_no_output "set variable l = 4" \
119 "${prefix}; set l to 4"
120 gdb_test "print l" " = ${new}" \
121 "${prefix}; print new l, expecting ${new}"
122 }
27e829d0
AC
123}
124
30b66ecc 125up_set "charest" "-1 .*" "-2 .*" "4 ..004."
81a58f5b
AC
126up_set "short" "-1" "-2" "4"
127up_set "int" "-1" "-2" "4"
128up_set "long" "-1" "-2" "4"
129up_set "longest" "-1" "-2" "4"
130up_set "float" "-1" "-2" "4"
131up_set "double" "-1" "-2" "4"
132up_set "doublest" "-1" "-2" "4"
27e829d0
AC
133
134#
135
136proc check_struct { t old new } {
8da195dd 137 set prefix "var struct ${t} u"
27e829d0
AC
138 gdb_test "tbreak wack_struct_${t}"
139 gdb_test "continue" "int i; register struct s_${t} u = z_${t};" \
8da195dd
AC
140 "continue to wack_struct_${t}"
141 gdb_test "next 2" "add_struct_${t} .u.;" \
142 "${prefix}; next to add_struct_${t} call"
143 gdb_test "print u" " = ${old}" \
144 "${prefix}; print old u, expecting ${old}"
27d3a1a2 145 gdb_test_no_output "set variable u = s_${t}" \
8da195dd
AC
146 "${prefix}; set u to s_${t}"
147 gdb_test "print u" " = ${new}" \
148 "${prefix}; print new u, expecting ${new}"
27e829d0
AC
149}
150
7634bb6e
DJ
151check_struct "1" "{s = \\{0}}" "{s = \\{1}}"
152check_struct "2" "{s = \\{0, 0}}" "{s = \\{1, 2}}"
153check_struct "3" "{s = \\{0, 0, 0}}" "{s = \\{1, 2, 3}}"
154check_struct "4" "{s = \\{0, 0, 0, 0}}" "{s = \\{1, 2, 3, 4}}"
27e829d0
AC
155
156proc up_struct { t old new } {
8da195dd 157 set prefix "up struct ${t} u"
27e829d0
AC
158 gdb_test "tbreak add_struct_${t}"
159 gdb_test "continue" "for .i = 0; i < sizeof .s. / sizeof .s.s.0..; i..." \
8da195dd
AC
160 "continue to add_struct_${t}"
161 gdb_test "up" "u = add_struct_${t} .u.;" \
162 "${prefix}; up"
163 gdb_test "print u" " = ${old}" \
164 "${prefix}; print old u, expecting ${old}"
27d3a1a2 165 gdb_test_no_output "set variable u = s_${t}" \
8da195dd
AC
166 "${prefix}; set u to s_${t}"
167 gdb_test "print u" " = ${new}" \
168 "${prefix}; print new u, expecting ${new}"
27e829d0
AC
169}
170
7634bb6e
DJ
171up_struct "1" "{s = \\{0}}" "{s = \\{1}}"
172up_struct "2" "{s = \\{0, 0}}" "{s = \\{1, 2}}"
173up_struct "3" "{s = \\{0, 0, 0}}" "{s = \\{1, 2, 3}}"
174up_struct "4" "{s = \\{0, 0, 0, 0}}" "{s = \\{1, 2, 3, 4}}"
27e829d0
AC
175
176#
177
178proc check_field { t } {
179 global gdb_prompt
180 gdb_test "tbreak wack_field_${t}"
181 gdb_test "continue" "register struct f_${t} u = f_${t};" \
182 "continue field ${t}"
81a58f5b
AC
183
184 # Match either the return statement, or the line immediatly after
185 # it. The compiler can end up merging the return statement into
186 # the return instruction.
187 gdb_test "next" "(return u;|\})" "next field ${t}"
27e829d0
AC
188
189 gdb_test "print u" " = {i = 1, j = 1, k = 1}" "old field ${t}"
27d3a1a2 190 gdb_test_no_output "set variable u = F_${t}"
27e829d0
AC
191 gdb_test "print u" " = {i = 0, j = 0, k = 0}" "new field ${t}"
192
27d3a1a2 193 gdb_test_no_output "set variable u = F_${t}, u.i = f_${t}.i"
27e829d0
AC
194 gdb_test "print u" " = {i = 1, j = 0, k = 0}" "f_${t}.i"
195
27d3a1a2 196 gdb_test_no_output "set variable u = F_${t}, u.j = f_${t}.j"
27e829d0
AC
197 gdb_test "print u" " = {i = 0, j = 1, k = 0}" "f_${t}.j"
198
27d3a1a2 199 gdb_test_no_output "set variable u = F_${t}, u.k = f_${t}.k"
27e829d0
AC
200 gdb_test "print u" " = {i = 0, j = 0, k = 1}" "f_${t}.k"
201
27d3a1a2 202 gdb_test_no_output "set variable u = f_${t}, u.i = F_${t}.i"
27e829d0
AC
203 gdb_test "print u" " = {i = 0, j = 1, k = 1}" "F_${t}.i"
204
27d3a1a2 205 gdb_test_no_output "set variable u = f_${t}, u.j = F_${t}.j"
27e829d0
AC
206 gdb_test "print u" " = {i = 1, j = 0, k = 1}" "F_${t}.j"
207
27d3a1a2 208 gdb_test_no_output "set variable u = f_${t}, u.k = F_${t}.k"
27e829d0
AC
209 gdb_test "print u" " = {i = 1, j = 1, k = 0}" "F_${t}.k"
210
211}
212
213check_field 1
214check_field 2
215check_field 3
216check_field 4
217
218#
219
220# WANTED: A fairly portable way of convincing the compiler to split a
221# value across memory and registers.
222
This page took 1.855477 seconds and 4 git commands to generate.