aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.arch/x86-avx512fp16.exp
blob: 144b51bfa68febfd7a18fec1b1d060891f0d6a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 2021-2023 Free Software Foundation, Inc.

# 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
# the Free Software Foundation; either version 3 of the License, or
# (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
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Test fp16 support in AVX512 registers.

require allow_avx512fp16_tests

standard_testfile

if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
    return -1
}

if { ![runto_main] } {
    return -1
}

# Test xmm.
set line1 [gdb_get_line_number "first breakpoint here"]
gdb_breakpoint $line1
gdb_continue_to_breakpoint "line1" ".*$srcfile:$line1.*"

gdb_test "print \$xmm0.v8_half" \
    "= \\{0.5, 0.625, 0.75, 0.875, 0, 0, 0, 0\\}"

gdb_test "print \$xmm6.v8_half" \
    "= \\{3.5, 3.625, 3.75, 3.875, 0, 0, 0, 0\\}"

# Test ymm.
set line2 [gdb_get_line_number "second breakpoint here"]
gdb_breakpoint $line2
gdb_continue_to_breakpoint "line2" ".*$srcfile:$line2.*"

gdb_test "print \$ymm0.v16_half\[1\]" "= 10.25"
gdb_test "print \$ymm6.v16_half\[1\]" "= 22.25"

# Test zmm.
set line3 [gdb_get_line_number "third breakpoint here"]
gdb_breakpoint $line3
gdb_continue_to_breakpoint "line3" ".*$srcfile:$line3.*"

gdb_test "print \$zmm0.v32_half\[1\]" "= 28.5"
gdb_test "print \$zmm6.v32_half\[1\]" "= 76.5"

# Test setting of half values.
gdb_test_no_output "set var \$xmm0.v8_half\[0\] = 32.25"
gdb_test_no_output "set var \$ymm3.v16_half\[1\] = 33.5"
gdb_test_no_output "set var \$zmm7.v32_half\[2\] = 22.75"

gdb_test "p \$xmm0.v8_half\[0\]" "= 32.25"
gdb_test "p \$ymm3.v16_half\[1\]" "= 33.5"
gdb_test "p \$zmm7.v32_half\[2\]" "= 22.75"