aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.arch/aarch64-sme-sanity.exp
blob: 913d0be5a315532b71f51e891ec0cad202f15688 (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
65
66
67
68
# Copyright (C) 2023-2024 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/>.
#
# Sanity check for AArch64 Scalable Vector/Matrix Extensions functionality.

load_lib aarch64-scalable.exp

#
# Run a series of basic checks for SVE/SME states.
#
proc sanity_check { vl svl } {
    # Run the program until the point where we start initializing the different
    # register states.
    set state_breakpoint "stop here"
    gdb_breakpoint [gdb_get_line_number $state_breakpoint]

    for {set id 0} {$id < 5} {incr id} {
	set state [state_id_to_state_string $id]

	with_test_prefix "state=${state} vl=${vl} svl=${svl}" {
	    gdb_continue_to_breakpoint $state_breakpoint
	    check_state $state $vl $svl
	}
    }
}

require is_aarch64_target
require allow_aarch64_sve_tests
require allow_aarch64_sme_tests

# Remote targets can't communicate vector length (vl or svl) changes
# to GDB via the RSP.
require !gdb_protocol_is_remote

set compile_flags {"debug" "macros" "additional_flags=-march=armv8.5-a+sve"}
standard_testfile
if {[prepare_for_testing "failed to prepare" ${testfile} ${srcfile} ${compile_flags}]} {
    return -1
}

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

# Adjust the repeat count for the test.
gdb_test_no_output "set print repeats 1" "adjust repeat count"

# Fetch both the vector length and the streaming vector length the target
# system is using.  We do not force any vector lengths and do not change
# it mid-execution.
set vl [expr [get_valueof "" "\$vg" "0" "fetch value of vl"] * 8]
set svl [expr [get_valueof "" "\$svg" "0" "fetch value of svl"] * 8]

# Now we are at the point where we can start checking state and moving the
# testcase forward.
sanity_check $vl $svl