2004-08-04 16:59:56 +02:00
|
|
|
# This testcase is part of GDB, the GNU debugger.
|
|
|
|
|
2011-01-01 16:34:07 +01:00
|
|
|
# Copyright 2002, 2003, 2004, 2007, 2008, 2009, 2010, 2011
|
2010-01-01 08:32:07 +01:00
|
|
|
# Free Software Foundation, Inc.
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2002-12-05 02:48:19 +01:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
if $tracelevel {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# test running programs
|
|
|
|
#
|
|
|
|
|
|
|
|
set testfile "store"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2006-06-22 21:57:02 +02:00
|
|
|
untested store.exp
|
|
|
|
return -1
|
2002-12-05 02:48:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if [get_compiler_info ${binfile}] {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
#
|
|
|
|
# set it up at a breakpoint so we can play with the variable values
|
|
|
|
#
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
|
2003-06-15 00:10:47 +02:00
|
|
|
proc check_set { t l r new add } {
|
2004-08-04 16:59:56 +02:00
|
|
|
set prefix "var ${t} l"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "tbreak wack_${t}"
|
2004-08-04 16:59:56 +02:00
|
|
|
gdb_test "continue" "register ${t} l = u, r = v;" \
|
|
|
|
"continue to wack_${t}"
|
|
|
|
gdb_test "next" "l = add_${t} .l, r.;" \
|
|
|
|
"${prefix}; next ${t}"
|
|
|
|
gdb_test "print l" " = ${l}" \
|
|
|
|
"${prefix}; print old l, expecting ${l}"
|
|
|
|
gdb_test "print r" " = ${r}" \
|
|
|
|
"${prefix}; print old r, expecting ${r}"
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable l = 4" \
|
2004-08-04 16:59:56 +02:00
|
|
|
"${prefix}; setting l to 4"
|
|
|
|
gdb_test "print l" " = ${new}" \
|
2009-09-03 23:44:49 +02:00
|
|
|
"${prefix}; print new l, expecting ${new}"
|
2004-08-04 16:59:56 +02:00
|
|
|
gdb_test "next" "return l \\+ r;" \
|
|
|
|
"${prefix}; next over add call"
|
|
|
|
gdb_test "print l" " = ${add}" \
|
|
|
|
"${prefix}; print incremented l, expecting ${add}"
|
2002-12-05 02:48:19 +01:00
|
|
|
}
|
|
|
|
|
2009-07-07 23:33:50 +02:00
|
|
|
check_set "charest" "-1 .*" "-2 .*" "4 ..004." "2 ..002."
|
2003-06-15 00:10:47 +02:00
|
|
|
check_set "short" "-1" "-2" "4" "2"
|
|
|
|
check_set "int" "-1" "-2" "4" "2"
|
|
|
|
check_set "long" "-1" "-2" "4" "2"
|
|
|
|
check_set "longest" "-1" "-2" "4" "2"
|
|
|
|
check_set "float" "-1" "-2" "4" "2"
|
|
|
|
check_set "double" "-1" "-2" "4" "2"
|
|
|
|
check_set "doublest" "-1" "-2" "4" "2"
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
|
2003-06-15 00:10:47 +02:00
|
|
|
proc up_set { t l r new } {
|
2004-08-04 16:59:56 +02:00
|
|
|
set prefix "upvar ${t} l"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "tbreak add_${t}"
|
2004-08-04 16:59:56 +02:00
|
|
|
gdb_test "continue" "return u . v;" \
|
|
|
|
"continue to add_${t}"
|
|
|
|
gdb_test "up" "l = add_${t} .l, r.;" \
|
|
|
|
"${prefix}; up"
|
|
|
|
gdb_test "print l" " = ${l}" \
|
|
|
|
"${prefix}; print old l, expecting ${l}"
|
|
|
|
gdb_test "print r" " = ${r}" \
|
|
|
|
"${prefix}; print old r, expecting ${r}"
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable l = 4" \
|
2004-08-04 16:59:56 +02:00
|
|
|
"${prefix}; set l to 4"
|
|
|
|
gdb_test "print l" " = ${new}" \
|
|
|
|
"${prefix}; print new l, expecting ${new}"
|
2002-12-05 02:48:19 +01:00
|
|
|
}
|
|
|
|
|
2009-07-07 23:33:50 +02:00
|
|
|
up_set "charest" "-1 .*" "-2 .*" "4 ..004."
|
2003-06-15 00:10:47 +02:00
|
|
|
up_set "short" "-1" "-2" "4"
|
|
|
|
up_set "int" "-1" "-2" "4"
|
|
|
|
up_set "long" "-1" "-2" "4"
|
|
|
|
up_set "longest" "-1" "-2" "4"
|
|
|
|
up_set "float" "-1" "-2" "4"
|
|
|
|
up_set "double" "-1" "-2" "4"
|
|
|
|
up_set "doublest" "-1" "-2" "4"
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
proc check_struct { t old new } {
|
2004-08-04 16:59:56 +02:00
|
|
|
set prefix "var struct ${t} u"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "tbreak wack_struct_${t}"
|
|
|
|
gdb_test "continue" "int i; register struct s_${t} u = z_${t};" \
|
2004-08-04 16:59:56 +02:00
|
|
|
"continue to wack_struct_${t}"
|
|
|
|
gdb_test "next 2" "add_struct_${t} .u.;" \
|
|
|
|
"${prefix}; next to add_struct_${t} call"
|
|
|
|
gdb_test "print u" " = ${old}" \
|
|
|
|
"${prefix}; print old u, expecting ${old}"
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = s_${t}" \
|
2004-08-04 16:59:56 +02:00
|
|
|
"${prefix}; set u to s_${t}"
|
|
|
|
gdb_test "print u" " = ${new}" \
|
|
|
|
"${prefix}; print new u, expecting ${new}"
|
2002-12-05 02:48:19 +01:00
|
|
|
}
|
|
|
|
|
2003-01-04 04:59:27 +01:00
|
|
|
check_struct "1" "{s = \\{0}}" "{s = \\{1}}"
|
|
|
|
check_struct "2" "{s = \\{0, 0}}" "{s = \\{1, 2}}"
|
|
|
|
check_struct "3" "{s = \\{0, 0, 0}}" "{s = \\{1, 2, 3}}"
|
|
|
|
check_struct "4" "{s = \\{0, 0, 0, 0}}" "{s = \\{1, 2, 3, 4}}"
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
proc up_struct { t old new } {
|
2004-08-04 16:59:56 +02:00
|
|
|
set prefix "up struct ${t} u"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "tbreak add_struct_${t}"
|
|
|
|
gdb_test "continue" "for .i = 0; i < sizeof .s. / sizeof .s.s.0..; i..." \
|
2004-08-04 16:59:56 +02:00
|
|
|
"continue to add_struct_${t}"
|
|
|
|
gdb_test "up" "u = add_struct_${t} .u.;" \
|
|
|
|
"${prefix}; up"
|
|
|
|
gdb_test "print u" " = ${old}" \
|
|
|
|
"${prefix}; print old u, expecting ${old}"
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = s_${t}" \
|
2004-08-04 16:59:56 +02:00
|
|
|
"${prefix}; set u to s_${t}"
|
|
|
|
gdb_test "print u" " = ${new}" \
|
|
|
|
"${prefix}; print new u, expecting ${new}"
|
2002-12-05 02:48:19 +01:00
|
|
|
}
|
|
|
|
|
2003-01-04 04:59:27 +01:00
|
|
|
up_struct "1" "{s = \\{0}}" "{s = \\{1}}"
|
|
|
|
up_struct "2" "{s = \\{0, 0}}" "{s = \\{1, 2}}"
|
|
|
|
up_struct "3" "{s = \\{0, 0, 0}}" "{s = \\{1, 2, 3}}"
|
|
|
|
up_struct "4" "{s = \\{0, 0, 0, 0}}" "{s = \\{1, 2, 3, 4}}"
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
proc check_field { t } {
|
|
|
|
global gdb_prompt
|
|
|
|
gdb_test "tbreak wack_field_${t}"
|
|
|
|
gdb_test "continue" "register struct f_${t} u = f_${t};" \
|
|
|
|
"continue field ${t}"
|
2003-06-15 00:10:47 +02:00
|
|
|
|
|
|
|
# Match either the return statement, or the line immediatly after
|
|
|
|
# it. The compiler can end up merging the return statement into
|
|
|
|
# the return instruction.
|
|
|
|
gdb_test "next" "(return u;|\})" "next field ${t}"
|
2002-12-05 02:48:19 +01:00
|
|
|
|
|
|
|
gdb_test "print u" " = {i = 1, j = 1, k = 1}" "old field ${t}"
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = F_${t}"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 0, j = 0, k = 0}" "new field ${t}"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = F_${t}, u.i = f_${t}.i"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 1, j = 0, k = 0}" "f_${t}.i"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = F_${t}, u.j = f_${t}.j"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 0, j = 1, k = 0}" "f_${t}.j"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = F_${t}, u.k = f_${t}.k"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 0, j = 0, k = 1}" "f_${t}.k"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = f_${t}, u.i = F_${t}.i"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 0, j = 1, k = 1}" "F_${t}.i"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = f_${t}, u.j = F_${t}.j"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 1, j = 0, k = 1}" "F_${t}.j"
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set variable u = f_${t}, u.k = F_${t}.k"
|
2002-12-05 02:48:19 +01:00
|
|
|
gdb_test "print u" " = {i = 1, j = 1, k = 0}" "F_${t}.k"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
check_field 1
|
|
|
|
check_field 2
|
|
|
|
check_field 3
|
|
|
|
check_field 4
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# WANTED: A fairly portable way of convincing the compiler to split a
|
|
|
|
# value across memory and registers.
|
|
|
|
|