Fix invoking "[kill|detach] inferiors" on inferiors that are not running
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / gnu_vector.exp
CommitLineData
32d0add0 1# Copyright 2010-2015 Free Software Foundation, Inc.
7346b668
KW
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# Contributed by Ken Werner <ken.werner@de.ibm.com>.
17#
18# Tests GDBs support for GNU vectors.
19# http://gcc.gnu.org/onlinedocs/gcc/Vector-Extensions.html
20
289f9037 21standard_testfile .c
7346b668 22
e6c693af
AA
23# If supported by the compiler, "-mcpu=native" or "-march=native"
24# should enable the highest available vector ABI. Try both, then try
25# without a CPU option. If all variants fail, assume that the
26# compiler can not handle GNU vectors.
27
28if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" ${binfile} executable {debug quiet additional_flags=-mcpu=native}] != ""
29 && [gdb_compile "${srcdir}/${subdir}/${srcfile}" ${binfile} executable {debug quiet additional_flags=-march=native}] != ""
30 && [gdb_compile "${srcdir}/${subdir}/${srcfile}" ${binfile} executable {debug quiet}] != ""} {
31 untested "compiler can't handle the vector_size attribute?"
7346b668
KW
32 return -1
33}
34
e6c693af 35clean_restart ${binfile}
7346b668
KW
36
37if { ![runto main] } {
38 fail "runto main"
39 return -1
40}
41
4c406179
JM
42# Get endianess for the scalar->vector casts
43gdb_test_multiple "show endian" "show endian" {
44 -re ".* (big|little) endian.*$gdb_prompt $" {
45 set endian $expect_out(1,string)
46 pass "endianness: $endian"
47 }
48}
49
2844d6b5
KW
50# Test printing of character vector types
51gdb_test "print c4" "\\\$$decimal = \\{1, 2, 3, 4\\}"
52gdb_test "print c4\[2\]" "\\\$$decimal = 3"
53
120bd360 54# Test operators on integer vector types
7346b668
KW
55gdb_test "print i4a" "\\\$$decimal = \\{2, 4, 8, 16\\}"
56gdb_test "print i4b" "\\\$$decimal = \\{1, 2, 8, 4\\}"
57# Arithmetic operators
58gdb_test "print i4a + i4b" "\\\$$decimal = \\{3, 6, 16, 20\\}"
59gdb_test "print i4a - i4b" "\\\$$decimal = \\{1, 2, 0, 12\\}"
60gdb_test "print i4a * i4b" "\\\$$decimal = \\{2, 8, 64, 64\\}"
61gdb_test "print i4a / i4b" "\\\$$decimal = \\{2, 2, 1, 4\\}"
62gdb_test "print i4a % i4b" "\\\$$decimal = \\{0, 0, 0, 0\\}"
120bd360
KW
63gdb_test "print i4a++" "\\\$$decimal = \\{2, 4, 8, 16\\}"
64gdb_test "print ++i4a" "\\\$$decimal = \\{4, 6, 10, 18\\}"
65gdb_test "print i4a--" "\\\$$decimal = \\{4, 6, 10, 18\\}"
66gdb_test "print --i4a" "\\\$$decimal = \\{2, 4, 8, 16\\}"
67gdb_test "print +i4a" "\\\$$decimal = \\{2, 4, 8, 16\\}"
68gdb_test "print -i4a" "\\\$$decimal = \\{-2, -4, -8, -16\\}"
69
7346b668
KW
70# Bitwise operators
71gdb_test "print i4a & i4b" "\\\$$decimal = \\{0, 0, 8, 0\\}"
72gdb_test "print i4a | i4b" "\\\$$decimal = \\{3, 6, 8, 20\\}"
73gdb_test "print i4a ^ i4b" "\\\$$decimal = \\{3, 6, 0, 20\\}"
120bd360 74gdb_test "print ~i4a" "\\\$$decimal = \\{-3, -5, -9, -17\\}"
7346b668
KW
75# Shift operators
76gdb_test "print i4a << i4b" "\\\$$decimal = \\{4, 16, 2048, 256\\}"
77gdb_test "print i4a >> i4b" "\\\$$decimal = \\{1, 1, 0, 1\\}"
78
120bd360 79# Test operators on floating point vector types
7346b668
KW
80gdb_test "print f4a" "\\\$$decimal = \\{2, 4, 8, 16\\}"
81gdb_test "print f4b" "\\\$$decimal = \\{1, 2, 8, 4\\}"
82# Arithmetic operators
83gdb_test "print f4a + f4b" "\\\$$decimal = \\{3, 6, 16, 20\\}"
84gdb_test "print f4a - f4b" "\\\$$decimal = \\{1, 2, 0, 12\\}"
85gdb_test "print f4a * f4b" "\\\$$decimal = \\{2, 8, 64, 64\\}"
86gdb_test "print f4a / f4b" "\\\$$decimal = \\{2, 2, 1, 4\\}"
120bd360
KW
87gdb_test "print +f4a" "\\\$$decimal = \\{2, 4, 8, 16\\}"
88gdb_test "print -f4a" "\\\$$decimal = \\{-2, -4, -8, -16\\}"
7346b668 89
8954db33
AB
90# When casting to vector the input type must have the same length as
91# the total length of the vector.
92gdb_test "print (char4) 0x01010101" "\\\$$decimal = \\{1, 1, 1, 1\\}"
8954db33
AB
93gdb_test "print (int2) lla" "\\\$$decimal = \\{1, 1\\}"
94
4c406179
JM
95if { ![string compare $endian big] } then {
96 gdb_test "print (char4) ia" "\\\$$decimal = \\{0, 0, 0, 2\\}"
97} else {
98 gdb_test "print (char4) ia" "\\\$$decimal = \\{2, 0, 0, 0\\}"
99}
100
8954db33
AB
101gdb_test "print (int2) 1" "can only cast scalar to vector of same size"
102gdb_test "print (longlong2) 2" "can only cast scalar to vector of same size"
103gdb_test "print (float2) 3" "can only cast scalar to vector of same size"
104gdb_test "print (double2) 4" "can only cast scalar to vector of same size"
105gdb_test "print (uint4) ia" "can only cast scalar to vector of same size"
106gdb_test "print (int4) -3" "can only cast scalar to vector of same size"
107gdb_test "print (float4) 4" "can only cast scalar to vector of same size"
108
109gdb_test "print i4b = ia" "can only cast scalar to vector of same size"
110gdb_test "print i4a = 3" "can only cast scalar to vector of same size"
111gdb_test "print f4a = fb" "can only cast scalar to vector of same size"
112gdb_test "print f4b = 2" "can only cast scalar to vector of same size"
113
114gdb_test "print c4 + lla" "conversion of scalar to vector involves truncation"
115gdb_test "print i4a + lla" "conversion of scalar to vector involves truncation"
116gdb_test "print lla + c4" "conversion of scalar to vector involves truncation"
117gdb_test "print lla + i4a" "conversion of scalar to vector involves truncation"
118
119gdb_test "print c4 + ib" "\\\$$decimal = \\{2, 3, 4, 5\\}"
3bdf2bbd 120gdb_test "print i4a + ib" "\\\$$decimal = \\{3, 5, 9, 17\\}"
8954db33
AB
121gdb_test "print i4a + 1" "\\\$$decimal = \\{3, 5, 9, 17\\}"
122gdb_test "print 1 + i4a" "\\\$$decimal = \\{3, 5, 9, 17\\}"
3bdf2bbd 123gdb_test "print fa - f4b" "\\\$$decimal = \\{1, 0, -6, -2\\}"
8954db33 124gdb_test "print 2 - f4b" "\\\$$decimal = \\{1, 0, -6, -2\\}"
3bdf2bbd 125gdb_test "print f4a * fb" "\\\$$decimal = \\{2, 4, 8, 16\\}"
8954db33 126gdb_test "print f4a * 1" "\\\$$decimal = \\{2, 4, 8, 16\\}"
3bdf2bbd 127gdb_test "print ia / i4b" "\\\$$decimal = \\{2, 1, 0, 0\\}"
8954db33 128gdb_test "print 2 / i4b" "\\\$$decimal = \\{2, 1, 0, 0\\}"
3bdf2bbd 129gdb_test "print i4a % ib" "\\\$$decimal = \\{0, 0, 0, 0\\}"
8954db33 130gdb_test "print i4a % 1" "\\\$$decimal = \\{0, 0, 0, 0\\}"
3bdf2bbd 131gdb_test "print ia & i4b" "\\\$$decimal = \\{0, 2, 0, 0\\}"
8954db33 132gdb_test "print 2 & i4b" "\\\$$decimal = \\{0, 2, 0, 0\\}"
3bdf2bbd 133gdb_test "print i4a | ib" "\\\$$decimal = \\{3, 5, 9, 17\\}"
8954db33 134gdb_test "print i4a | 1" "\\\$$decimal = \\{3, 5, 9, 17\\}"
3bdf2bbd 135gdb_test "print ia ^ i4b" "\\\$$decimal = \\{3, 0, 10, 6\\}"
8954db33 136gdb_test "print 2 ^ i4b" "\\\$$decimal = \\{3, 0, 10, 6\\}"
3bdf2bbd 137gdb_test "print i4a << ib" "\\\$$decimal = \\{4, 8, 16, 32\\}"
8954db33 138gdb_test "print i4a << 1" "\\\$$decimal = \\{4, 8, 16, 32\\}"
3bdf2bbd 139gdb_test "print i4a >> ib" "\\\$$decimal = \\{1, 2, 4, 8\\}"
8954db33 140gdb_test "print i4a >> 1" "\\\$$decimal = \\{1, 2, 4, 8\\}"
3bdf2bbd
KW
141
142gdb_test "print i4a = \{2, 4, 8, 16\}" "\\\$$decimal = \\{2, 4, 8, 16\\}"
143gdb_test "print i4a <<= ib" "\\\$$decimal = \\{4, 8, 16, 32\\}"
144
145# Test some error scenarios
7346b668
KW
146gdb_test "print i4a + d2" "Cannot perform operation on vectors with different types"
147gdb_test "print d2 + i4a" "Cannot perform operation on vectors with different types"
148gdb_test "print f4a + ll2" "Cannot perform operation on vectors with different types"
149gdb_test "print ll2 + f4a" "Cannot perform operation on vectors with different types"
150gdb_test "print i2 + ll2" "Cannot perform operation on vectors with different types"
151gdb_test "print ll2 + i2" "Cannot perform operation on vectors with different types"
152gdb_test "print i4a + ll2" "Cannot perform operation on vectors with different types"
153gdb_test "print ll2 + i4a" "Cannot perform operation on vectors with different types"
154gdb_test "print f4a + d2" "Cannot perform operation on vectors with different types"
155gdb_test "print d2 + f4a" "Cannot perform operation on vectors with different types"
156gdb_test "print ui4 + i4a" "Cannot perform operation on vectors with different types"
157gdb_test "print i4a + ui4" "Cannot perform operation on vectors with different types"
dbc98a8b
KW
158gdb_test "print i4a + i2" "Cannot perform operation on vectors with different types"
159gdb_test "print i2 + i4a" "Cannot perform operation on vectors with different types"
160gdb_test "print f4a + f2" "Cannot perform operation on vectors with different types"
161gdb_test "print f2 + f4a" "Cannot perform operation on vectors with different types"
7346b668 162
8954db33
AB
163gdb_test "print (double2) f2" "Cannot convert between vector values of different sizes"
164gdb_test "print (int4) c4" "Cannot convert between vector values of different sizes"
165gdb_test "print (char4) i4a" "Cannot convert between vector values of different sizes"
166
2f27adfe
AB
167# Test ptype on vector types.
168gdb_test "ptype c4" "type = char __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
169gdb_test "ptype char4" "type = char __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
170gdb_test "ptype i4a" "type = int __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
171gdb_test "ptype int4" "type = int __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
172gdb_test "ptype f4b" "type = float __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
173gdb_test "ptype float4" "type = float __attribute__ \\(\\(vector_size\\(4\\)\\)\\)"
174
175gdb_test "ptype union_with_vector_1" "type = union {\r\n\[\t \]+int i;\r\n\[\t \]+char cv __attribute__ \\(\\(vector_size\\(4\\)\\)\\);\r\n}"
176gdb_test "ptype struct_with_vector_1" "type = struct {\r\n\[\t \]+int i;\r\n\[\t \]+char cv __attribute__ \\(\\(vector_size\\(4\\)\\)\\);\r\n\[\t \]+float4 f4;\r\n}"
e6c693af
AA
177
178# Test inferior function calls with vector arguments and/or vector
179# return values.
e03ed3c6
AA
180if { [istarget "i?86-*-*"] || [istarget "x86_64-*-*" ] } {
181 # These platforms don't support infcalls with vector arguments
182 # and/or vector return values, so skip the remaining tests.
183 # See also PR exp/18537.
184 unsupported "skip remaining vector ABI tests on this arch"
185 return
186}
e6c693af
AA
187gdb_test "print add_some_intvecs(i4a, i4b, 3 * i4a)" "= \\{17, 34, 72, 132\\}" \
188 "call add_some_intvecs"
e6c693af
AA
189gdb_test "print add_many_charvecs(c4, c4, c4, c4, c4, c4, c4, c4, c4, c4)" \
190 "= \\{10, 20, 30, 40\\}" "call add_many_charvecs"
e6c693af
AA
191gdb_test "print add_various_floatvecs(2, f4a, f4b)" "= \\{3, 6, 16, 20\\}" \
192 "call add_various_floatvecs"
e6c693af
AA
193gdb_test "print add_structvecs(i2, (struct just_int2)\{2*i2\}, (struct two_int2)\{3*i2, 4*i2\})" \
194 "= \\{i = \\{10, 20\\}\\}" "call add_structvecs"
195gdb_test "print add_singlevecs((char1) \{6\}, (int1) \{12\}, (double1) \{24\})" "= \\{42\\}" \
196 "call add_singlevecs"
197
198# Test vector return value handling with "finish" and "return".
199gdb_breakpoint "add_some_intvecs"
200gdb_continue "add_some_intvecs"
e6c693af
AA
201gdb_test "finish" "Value returned is .* = \\{10, 20, 48, 72\\}" \
202 "finish shows vector return value"
203gdb_continue "add_some_intvecs"
204gdb_test "return (int4) \{4, 2, 7, 6\}" \
205 "#0 .* main .*" \
206 "set vector return value" \
207 "Make add_some_intvecs return now. .y or n.*" "y"
e6c693af 208gdb_test "continue" "4 2 7 6\r\n.*" "verify vector return value"
This page took 0.601304 seconds and 4 git commands to generate.