]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/pc-fp.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / pc-fp.exp
CommitLineData
1d506c26 1# Copyright 2002-2024 Free Software Foundation, Inc.
e36180d7
AC
2
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
e36180d7 6# (at your option) any later version.
e22f8b7c 7#
e36180d7
AC
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.
e22f8b7c 12#
e36180d7 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
e36180d7 15
e36180d7
AC
16# The doco makes reference to built-in registers -- $pc and $fp. If
17# the ISA contains registers by that name then they should be
18# displayed. If the ISA contains registers identified as being
19# equivalent, but have different names, then GDB will provide these as
20# aliases. If the ISA doesn't provide any equivalent registers, then
21# GDB will provide registers that map onto the frame's PC and FP.
22
e36180d7
AC
23#
24# test running programs
25#
e36180d7 26
822bd149 27standard_testfile
e36180d7 28
5b362f04 29if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug nowarnings}]} {
e36180d7
AC
30 return -1
31}
32
65a33d75 33if {![runto_main]} {
cdd42066 34 return
e36180d7
AC
35}
36
e36180d7
AC
37
38# Get the value of PC and FP
39
faafb047
PM
40set valueof_pc [get_hexadecimal_valueof "\$pc" "0"]
41set valueof_fp [get_hexadecimal_valueof "\$fp" "0"]
e36180d7
AC
42
43# Check that the sequence $REGNAME -> REGNUM -> $REGNAME works. Use
44# display since that encodes and then decodes the expression parameter
45# (and hence uses the mechanisms we're trying to test).
46
2b28d209 47gdb_test "display/i \$pc" "1: x/i +\\\$pc( +|\r\n)=> ${valueof_pc}.*"
e36180d7
AC
48gdb_test "display/w \$fp" "2: x/xw +\\\$fp +${valueof_fp}.*"
49
3af2590d
TT
50gdb_test "info register \$pc" "${valueof_pc}.*"
51gdb_test "info register \$fp" "${valueof_fp}.*"
e36180d7 52
3af2590d
TT
53# Regression test for
54# http://sourceware.org/bugzilla/show_bug.cgi?id=12659
55gdb_test "info register pc fp" \
e2f62013 56 "pc +${valueof_pc}\[ \t\]+${valueof_pc} <.*>\[\r\n\]+fp +${valueof_fp}\[ \t\]+${valueof_fp}"