1 # Copyright
(C
) 2002, 2003, 2005 Free Software Foundation
, Inc.
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
2 of the License
, or
6 #
(at your option
) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this
program; if not
, write to the Free Software
15 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
17 # Please email
any bugs
, comments
, and
/or additions to this file to
:
18 # bug
-gdb@prep.ai.mit.edu
21 # Tests
for Powerpc AltiVec register setting and fetching
28 # Test the use of registers
, especially AltiVec registers
, for Powerpc.
29 # This file uses altivec
-regs.c
for input.
35 if {![istarget
"powerpc*"] || [skip_altivec_tests]} then {
36 verbose
"Skipping altivec register tests."
37 verbose
-log "Skipping altivec register tests."
41 set testfile
"altivec-regs"
42 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
43 set srcfile $
{testfile
}.c
45 set compile_flags
{debug nowarnings
}
46 if [get_compiler_info $binfile
] {
47 warning
"get_compiler failed"
51 if [test_compiler_info gcc
*] {
52 set compile_flags
"$compile_flags additional_flags=-maltivec"
53 } elseif
[test_compiler_info xlc
*] {
54 set compile_flags
"$compile_flags additional_flags=-qaltivec"
56 warning
"unknown compiler"
60 if { [gdb_compile $
{srcdir
}/$
{subdir
}/$
{srcfile
} $
{binfile
} executable $compile_flags
] != "" } {
61 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
65 gdb_reinitialize_dir $srcdir
/$subdir
69 # Run to `main
' where we begin our tests.
72 if ![runto_main] then {
76 # set all the registers integer portions to 1
77 for {set i 0} {$i < 32} {incr i 1} {
78 for {set j 0} {$j < 4} {incr j 1} {
79 gdb_test "set \$vr$i.v4_int32\[$j\] = 1" "" "set reg vr$i.v4si.f\[$j\]"
83 gdb_test "set \$vscr = 1" "" ""
84 gdb_test "set \$vrsave = 1" "" ""
86 # Now execute some target code, so that GDB's register
cache is flushed.
90 send_gdb
"show endian\n"
92 -re
"(The target endianness is set automatically .currently )(big|little)( endian.*)$gdb_prompt $" {
94 set endianness $expect_out
(2,string
)
96 -re
".*$gdb_prompt $" {
97 fail
"couldn't get endianness"
99 timeout
{ fail
"(timeout) endianness" }
102 # And
then read the AltiVec registers
back, to see that
103 # a
) the register write above worked
, and
104 # b
) the register read
(below
) also works.
106 if {$endianness
== "big"} {
107 set vector_register
".uint128 = 0x00000001000000010000000100000001, v4_float = .0x0, 0x0, 0x0, 0x0., v4_int32 = .0x1, 0x1, 0x1, 0x1., v8_int16 = .0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1., v16_int8 = .0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1.."
109 set vector_register
".uint128 = 0x00000001000000010000000100000001, v4_float = .0x0, 0x0, 0x0, 0x0., v4_int32 = .0x1, 0x1, 0x1, 0x1., v8_int16 = .0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0., v16_int8 = .0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0.."
112 for {set i
0} {$i
< 32} {incr i
1} {
113 gdb_test
"info reg vr$i" "vr$i.*$vector_register" "info reg vr$i"
116 gdb_test
"info reg vrsave" "vrsave.*0x1\t1" "info reg vrsave"
117 gdb_test
"info reg vscr" "vscr.*0x1\t1" "info reg vscr"
119 # Now
redo the same tests
, but using the print command.
120 # Note
: in LE case
, the char array is printed WITHOUT the last character.
121 # Gdb treats the terminating null char in the array like the terminating
122 # null char in a string and doesn
't print it. This is not a failure, but
125 if {$endianness == "big"} {
126 set decimal_vector ".uint128 = 0x00000001000000010000000100000001, v4_float = .1.*e-45, 1.*e-45, 1.*e-45, 1.*e-45., v4_int32 = .1, 1, 1, 1., v8_int16 = .0, 1, 0, 1, 0, 1, 0, 1., v16_int8 = ..000.000.000.001.000.000.000.001.000.000.000.001.000.000.000.001.."
128 set decimal_vector ".uint128 = 0x00000001000000010000000100000001, v4_float = .1.*e-45, 1.*e-45, 1.*e-45, 1.*e-45., v4_int32 = .1, 1, 1, 1., v8_int16 = .1, 0, 1, 0, 1, 0, 1, 0., v16_int8 = ..001.000.000.000.001.000.000.000.001.000.000.000.001.000.000.."
131 for {set i 0} {$i < 32} {incr i 1} {
132 gdb_test "print \$vr$i" ".* = $decimal_vector" "print vr$i"
135 gdb_test "print \$vrsave" ".* = 1" "print vrsave"
136 gdb_test "print \$vscr" ".* = 1" "print vscr"
138 for {set i 0} {$i < 32} {incr i 1} {
139 set pattern$i ".*vr$i.*"
140 append pattern$i $vector_register
143 send_gdb "info vector\n"
144 gdb_expect_list "info vector" ".*$gdb_prompt $" {
177 "\[ \t\n\r\]+vscr\[ \t\]+0x1"
178 "\[ \t\n\r\]+vrsave\[ \t\]+0x1"
181 gdb_test "break vector_fun" \
182 "Breakpoint 2 at.*altivec-regs.c, line \[0-9\]+\\." \
183 "Set breakpoint at vector_fun"
185 # Actually it is nuch easier to see these results printed in hex.
186 gdb_test "set output-radix 16" \
187 "Output radix now set to decimal 16, hex 10, octal 20." \
188 "Set output radix to hex"
190 gdb_test "continue" \
191 "Breakpoint 2, vector_fun .a=.0xfefefefe, 0xfefefefe, 0xfefefefe, 0xfefefefe., b=.0x1010101, 0x1010101, 0x1010101, 0x1010101.*altivec-regs.c.*vec_splat_u8.2..;" \
192 "continue to vector_fun"
194 # Do a next over the assignment to vector 'a
'.
195 gdb_test "next" ".*b = \\(\\(vector unsigned int\\) vec_splat_u8\\(3\\)\\);" \
198 # Do a next over the assignment to vector 'b
'.
199 gdb_test "next" "c = vec_add \\(a, b\\);" \
202 # Now 'a
' should be '0x02020202...
' and 'b
' should be '0x03030303...
'
203 gdb_test "print/x a" \
204 ".*= .0x2020202, 0x2020202, 0x2020202, 0x2020202." \
205 "print vector parameter a"
207 gdb_test "print/x b" \
208 ".*= .0x3030303, 0x3030303, 0x3030303, 0x3030303." \
209 "print vector parameter b"
211 # If we do an 'up
' now, and print 'x
' and 'y
' we should see the values they
212 # have in main, not the values they have in vector_fun.
213 gdb_test "up" ".1.*main \\(\\) at.*altivec-regs.c.*z = vector_fun \\(x, y\\);" \
216 gdb_test "print/x x" \
217 ".*= .0xfefefefe, 0xfefefefe, 0xfefefefe, 0xfefefefe." \
220 gdb_test "print/x y" \
221 ".*= .0x1010101, 0x1010101, 0x1010101, 0x1010101." \
224 # now go back to vector_func and do a finish, to see if we can print the return
228 ".0 vector_fun \\(a=.0x2020202, 0x2020202, 0x2020202, 0x2020202., b=.0x3030303, 0x3030303, 0x3030303, 0x3030303.\\) at.*altivec-regs.c.*c = vec_add \\(a, b\\);" \
232 "Run till exit from .0 vector_fun \\(a=.0x2020202, 0x2020202, 0x2020202, 0x2020202., b=.0x3030303, 0x3030303, 0x3030303, 0x3030303.\\) at.*altivec-regs.c.*in main \\(\\) at.*altivec-regs.c.*z = vector_fun \\(x, y\\);.*Value returned is.*= .0x5050505, 0x5050505, 0x5050505, 0x5050505." \
233 "finish returned correct value"