]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/s390-vregs.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / s390-vregs.exp
CommitLineData
213516ef 1# Copyright 2015-2023 Free Software Foundation, Inc.
4fa5d7b4
AA
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# Test vector register access for s390 platforms.
17
18if { ![istarget s390-*-*] && ![istarget s390x-*-* ] } {
19 verbose "Skipping s390 vector register tests."
20 return
21}
22
23standard_testfile .S
24
25if [isnative] {
26 # Create a temporary directory, to take a core dump there later.
27 set coredir [standard_output_file ${testfile}.d]
28 remote_exec build "rm -rf $coredir"
29 remote_exec build "mkdir $coredir"
30}
31
5b362f04 32if { [prepare_for_testing "failed to prepare" $testfile $srcfile \
af9fd6f8 33 [list "additional_flags=-mzarch"]] } {
4fa5d7b4
AA
34 return -1
35}
36
37if ![runto_main] {
4fa5d7b4
AA
38 return -1
39}
40
41# Run to the first vector instruction and step it. If the inferior
42# doesn't crash, we have vector support.
43
44gdb_breakpoint "check_vx"
45gdb_continue_to_breakpoint "first vector insn"
46set before_pc 0
47gdb_test_multiple "x/i \$pc" "get PC at vector insn" {
48 -re "(0x\\S+)\\s+\\S+\\s+vlr\\s+.*$gdb_prompt $" {
49 set before_pc $expect_out(1,string)
50 }
51}
52
53gdb_test_multiple "stepi" "check for vector support" {
54 -re "Program received signal SIGILL,.*\r\n$gdb_prompt $" {
55 unsupported "no vector support."
56 return
57 }
58 -re "\[0-9\]+.*\r\n$gdb_prompt $" {
59 pass "vector support available"
60 }
61 -re "$gdb_prompt $" {
62 fail "no vector support (unknown error)"
63 return
64 }
65}
66
67# Has the PC advanced by the expected amount? The kernel may do
68# something special for the first vector insn in the process.
69
70set after_pc 0
71gdb_test_multiple "x/i \$pc" "get PC after vector insn" {
72 -re "(0x\\S+)\\s+.*$gdb_prompt $" {
73 set after_pc $expect_out(1,string)
74 }
75}
76
77if [expr $before_pc + 6 != $after_pc] {
78 fail "stepping first vector insn"
79}
80
81# Lift the core file limit, if possible, and change into the temporary
82# directory.
83
84if { $coredir != "" } {
634c1c31 85 gdb_test {print (int) setrlimit (4, &(unsigned long [2]){~0UL, ~0UL})} \
4fa5d7b4 86 " = .*" "setrlimit"
634c1c31 87 gdb_test "print (int) chdir (\"${coredir}\")" " = 0" "chdir"
4fa5d7b4
AA
88}
89
90# Initialize all vector registers with GDB "set" commands, using
91# distinct values. Handle left and right halves separately, in
92# pseudo-random order.
93
94set a_high 1
95set a_low 2
96set b_high 3
97set b_low 5
98
99set a [expr ($a_high << 32) | $a_low]
100set b [expr ($b_high << 32) | $b_low]
101
102for {set j 0} {$j < 32} {incr j 1} {
103 set i [expr 17 * $j % 32]
104 gdb_test_no_output \
105 "set \$v$i.v2_int64\[0\] = [expr $a * ($i + 1)]" \
106 "set v$i left"
107 set i [expr 19 * (31 - $j) % 32]
108 gdb_test_no_output \
109 "set \$v$i.v2_int64\[1\] = [expr $b * (32 - $i)]" \
110 "set v$i right"
111}
112
113# Verify a vector register's union members.
114
115gdb_test "info register v0 v31" \
116 "v4_float .* v2_double .* v16_int8 .* v8_int16 .* v4_int32 .* v2_int64 .* uint128\
117 .*v4_float .* v2_double .* v16_int8 .* v8_int16 .* v4_int32 .* v2_int64 .* uint128 .*"
118
119# Let the inferior store all vector registers in a buffer, then dump
120# the buffer and check it.
121
122gdb_continue_to_breakpoint "store vrs"
123set vregs [capture_command_output "x/64xg &save_area" ""]
124
125set i 0
126foreach {- left right} [regexp -all -inline -line {^.*:\s+(\w+)\s+(\w+)} $vregs] {
127 if [expr $left != $a * ($i + 1) || $right != $b * (32 - $i)] {
128 fail "verify \$v$i after set"
129 }
130 if { $i < 16 } {
131 # Check that the FP register was updated accordingly.
132 gdb_test "info register f$i" "raw ${left}.*"
133 }
134 incr i 1
135}
136
137if { $i != 32 } {
138 fail "dump save area (bad output)"
139}
140
141# Let the inferior change all VRs according to a simple algorithm,
142# then print all VRs and compare their values with our result of the
143# same algorithm.
144
145gdb_continue_to_breakpoint "change vrs"
146set vregs [capture_command_output "info registers vector" ""]
147
30a25466 148# Format a 128-bit value, given individual 4-byte values, as hex.
031ed05d 149# Suppress leading zeros.
30a25466 150proc hex128 {a_high a_low b_high b_low} {
031ed05d
AA
151 set result [format "%x%08x%08x%08x" $a_high $a_low $b_high $b_low]
152 regsub -- "^0*" $result "" result
153 if { $result eq "" } { set result 0 }
154 return $result
30a25466
TT
155}
156
4fa5d7b4
AA
157set j 1
158foreach {- r i val} [regexp -all -inline -line \
159 {^(\D*)(\d+)\s+.*?uint128 = 0x([0-9a-f]+?)} $vregs] {
160 if { $r ne "v" } {
161 fail "info registers vector: bad line $j"
031ed05d
AA
162 } elseif { $val ne [hex128 \
163 [expr $a_high * ($i + 1) * $a_high ] \
164 [expr $a_low * ($i + 1) * $a_low ] \
165 [expr $b_high * (32 - $i) * $b_high * 32] \
166 [expr $b_low * (32 - $i) * $b_low * 32] ] } {
4fa5d7b4
AA
167 fail "compare \$v$i"
168 }
169 incr j 1
170}
171
172if { $j != 33 } {
173 fail "info registers vector"
174}
175
176if { $coredir == "" } {
177 return
178}
179
180# Take a core dump.
181
182gdb_test "signal SIGABRT" "Program terminated with signal SIGABRT, .*"
183gdb_exit
184
185# Find the core file and rename it (avoid accumulating core files).
186
187set cores [glob -nocomplain -directory $coredir *core*]
188if {[llength $cores] != 1} {
189 untested "core file not found"
190 remote_exec build "rm -rf $coredir"
191 return -1
192}
193set destcore [standard_output_file ${testfile}.core]
194remote_exec build "mv [file join $coredir [lindex $cores 0]] $destcore"
195remote_exec build "rm -rf $coredir"
196
197# Restart gdb and load the core file. Compare the VRs.
198
199clean_restart ${testfile}
200
201with_test_prefix "core" {
202 set core_loaded [gdb_core_cmd $destcore "load"]
203 if { $core_loaded != -1 } {
204 set vregs_from_core [capture_command_output "info registers vector" ""]
205 if { $vregs_from_core eq $vregs } {
206 pass "compare vector registers"
207 } else {
208 fail "vector registers mismatch"
209 }
210 }
211}