]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/x86-avx512fp16-abi.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / x86-avx512fp16-abi.exp
CommitLineData
213516ef 1# Copyright 2021-2023 Free Software Foundation, Inc.
0b99a660
FW
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 support for _Float16 parameters and return values.
17
18if { [skip_avx512fp16_tests] } {
19 unsupported "target does not support AVX512fp16"
20 return -1
21}
22
23standard_testfile
24
25if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \
26 {debug additional_flags="-mavx512fp16"}] } {
27 return -1
28}
29
30if { ![runto_main] } {
0b99a660
FW
31 return -1
32}
33
34gdb_test "p square(2.2)" "= 4\\.8359"
35
36set line1 [gdb_get_line_number "BP1"]
37set line2 [gdb_get_line_number "BP2"]
38set line3 [gdb_get_line_number "BP3"]
39gdb_breakpoint $line1
40gdb_breakpoint $line3
41
42gdb_continue_to_breakpoint "line1" ".*$srcfile:$line1.*"
43
44with_test_prefix "real" {
45 gdb_test "p num" "= 1\\.25"
46 gdb_test "ptype num" "type = _Float16"
47 gdb_test "finish" "Value returned is.*= 1\\.5625"
48}
49
50gdb_continue_to_breakpoint "line3" ".*$srcfile:$line3.*"
51gdb_test "p plus(b)" "= 8\\.75 \\+ 1\\.5i"
52
53gdb_breakpoint $line2
54gdb_continue_to_breakpoint "line2" ".*$srcfile:$line2.*"
55
56with_test_prefix "complex" {
57 gdb_test "p num" "= 6\\.25 \\+ 1i"
58 gdb_test "ptype num" "type = complex _Float16"
59 gdb_test "finish" "Value returned is.*= 8\\.75 \\+ 1\\.5i"
60}
61
62gdb_continue_to_end