1 # Copyright 2002, 2004, 2007, 2008, 2009 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 # 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.
28 # test running programs
34 set srcfile ${testfile}.c
35 set binfile ${objdir}/${subdir}/${testfile}
37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
42 if [get_compiler_info ${binfile}] {
48 gdb_reinitialize_dir $srcdir/$subdir
51 if ![runto_main] then {
52 perror "couldn't run to breakpoint"
57 # Get the value of PC and FP
59 set valueof_pc [get_hexadecimal_valueof "\$pc" "0"]
60 set valueof_fp [get_hexadecimal_valueof "\$fp" "0"]
62 # Check that the sequence $REGNAME -> REGNUM -> $REGNAME works. Use
63 # display since that encodes and then decodes the expression parameter
64 # (and hence uses the mechanisms we're trying to test).
66 gdb_test "display/i \$pc" "1: x/i +\\\$pc( +|\r\n)${valueof_pc}.*"
67 gdb_test "display/w \$fp" "2: x/xw +\\\$fp +${valueof_fp}.*"
69 # FIXME: cagney/2002-09-04: Should also check that ``info registers
70 # $pc'' et.al.'' come back with the same value as the above displays
71 # and a print --- assuming that is that people agree to such behavour.
72 # Need to re-write default_print_registers_info() for it to work (and
73 # such a rewrite is on the reggroups branch).
75 # gdb_test "info registers \$pc" "${valueof_pc}"
76 # gdb_test "info registers \$fp" "${valueof_fp}"