]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.arch/aarch64-fp.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / aarch64-fp.exp
1 # Copyright 2008-2023 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
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.
12 #
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/>.
15 #
16 # This file is part of the gdb testsuite.
17
18 # PR server/17457
19 # Test aarch64 floating point registers q0, q1, v0, v1, fpsr, fpcr
20
21 if {![is_aarch64_target]} {
22 verbose "Skipping ${gdb_test_file_name}."
23 return
24 }
25
26 standard_testfile
27 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
28 return -1
29 }
30
31 if ![runto_main] {
32 return -1
33 }
34
35 set endianness [get_endianness]
36
37 gdb_test "break ${srcfile}:[gdb_get_line_number "return"]" \
38 "Breakpoint $decimal at 0x\[0-9a-fA-F\]+: file .*${srcfile}.*\\\." \
39 "set the breakpoint after setting the fp registers"
40
41 gdb_test "continue" \
42 "Continuing.*Breakpoint $decimal.*" \
43 "continue until breakpoint"
44
45 if {$endianness == "little"} {
46 set reg_value0 "0x1f1e1d1c1b1a19181716151413121110"
47 set reg_value1 "0x2f2e2d2c2b2a29282726252423222120"
48 } else {
49 set reg_value0 "0x101112131415161718191a1b1c1d1e1f"
50 set reg_value1 "0x202122232425262728292a2b2c2d2e2f"
51 }
52
53 gdb_test "p/x \$q0" \
54 "q0.*{u = $reg_value0, s = $reg_value0.*" \
55 "check register q0 value"
56
57 gdb_test "p/x \$q1" \
58 "q1.*{u = $reg_value1, s = $reg_value1.*" \
59 "check register q1 value"
60
61 gdb_test "p/x \$v0" \
62 "v0.*$reg_value0}}}" \
63 "check register v0 value"
64
65 gdb_test "p/x \$v1" \
66 "v1.*$reg_value1}}}" \
67 "check register v1 value"
68
69 gdb_test "p/x \$fpsr" \
70 "fpsr.*0x\[0-9a-fA-F\].*" \
71 "check register fpsr value"
72
73 gdb_test "p/x \$fpcr" \
74 "fpcr.*0x\[0-9a-fA-F\].*" \
75 "check register fpcr value"
76
77 with_test_prefix "bfloat16" {
78 gdb_test "set \$h0.bf = 1.185e-38" \
79 ".*" \
80 "set h0.bf to 129"
81
82 gdb_test "p \$h0" \
83 "h0.*{bf = 1.185e-38, f = 7.689e-06, u = 129, s = 129}" \
84 "h0 fields are valid"
85
86 gdb_test "set \$v0.h.bf\[0\] = 0" \
87 "v0.* = 0" \
88 "set v0.h.bf\[0\] to 0"
89
90 gdb_test "p \$v0.h.s\[0\]" \
91 "v0.* = 0" \
92 "v0.h.s\[0\] is 0"
93
94 gdb_test "set \$v0.h.bf\[0\] = 1.185e-38" \
95 "v0.* = 1.185e-38" \
96 "set v0.h.bf\[0\] to 129"
97
98 gdb_test "p \$v0.h.s\[0\]" \
99 "v0.* = 129" \
100 "v0.h.s\[0\] is 129"
101 }