summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.arch/arm-neon.exp
blob: 409623e8c6c0cefa10a27d9b150435c6e8bffcfe (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
# Copyright 2015-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/>.

# This file is part of the gdb testsuite.

if {![istarget "aarch64*-*-*"] && ![istarget "arm*-*-*"]} {
    verbose "Skipping ${gdb_test_file_name}."
    return
}

if { [gdb_skip_float_test] } {
    verbose "Skipping ${gdb_test_file_name}."
    return
}

standard_testfile
if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debug quiet}] } {
    unsupported "ARM NEON is not supported"
    return -1
}

if ![runto_main] {
    return -1
}

# Test passing vectors in function argument in the inferior call.

for {set i 1} {$i <= 18} {incr i} {

    set contents ""
    set test "print a${i}"
    gdb_test_multiple "p a${i}" $test {
	-re " = (.*)\r\n$gdb_prompt $" {
	    set contents $expect_out(1,string)
	}
    }
    regsub -all "\{" $contents "\\\\\{" contents
    gdb_test "p vec_func${i} \(a${i}\)" "= $contents"
}

# Test passing homogeneous vector aggregate in function argument
# in the inferior call.

for {set i 1} {$i <= 3} {incr i} {
    set contents ""
    set test "print hva${i}"
    gdb_test_multiple "p hva${i}" $test {
	-re " = (.*)\r\n$gdb_prompt $" {
	    set contents $expect_out(1,string)
	}
    }
    regsub -all "\{" $contents "\\\\\{" contents
    gdb_test "p hva_func${i} \(hva${i}\)" "= $contents"
}