Imported Upstream version 7.9
[platform/upstream/gdb.git] / gdb / testsuite / gdb.arch / e500-regs.exp
1 # Copyright 2003-2015 Free Software Foundation, Inc.
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
17 # Tests for Powerpc E500 register setting and fetching
18
19 #
20 # Test the use of registers, especially E500 registers, for Powerpc.
21 # This file uses e500-regs.c for input.
22 #
23
24
25 if ![istarget "powerpc-*eabispe"] then {
26     verbose "Skipping e500 register tests."
27     return
28 }
29
30 set testfile "e500-regs"
31 set binfile ${objdir}/${subdir}/${testfile}
32 set src1 ${srcdir}/${subdir}/${testfile}.c
33
34 if  { [gdb_compile ${src1} ${binfile} executable {debug nowarnings}] != "" } {
35      untested e500-regs.exp
36      return -1
37 }
38
39 gdb_start
40 gdb_reinitialize_dir $srcdir/$subdir
41 gdb_load ${binfile}
42
43 #
44 # Run to `main' where we begin our tests.
45 #
46
47 if ![runto_main] then {
48     gdb_suppress_tests
49 }
50
51 # set all the registers integer portions to 1
52 for {set i 0} {$i < 32} {incr i 1} {
53         for {set j 0} {$j < 2} {incr j 1} {
54            gdb_test "set \$ev$i.v2_int32\[$j\] = 1" "" "set reg ev$i.v4si.f\[$j\]"
55         }
56 }
57
58 # Now execute some target code, so that GDB's register cache is flushed.
59
60 #gdb_test "next" "" ""
61
62 send_gdb "show endian\n"
63 gdb_expect {
64     -re "(The target endianness is set automatically .currently )(big|little)( endian.*)$gdb_prompt $" {
65         pass "endianness"
66         set endianness $expect_out(2,string)
67     }
68     -re ".*$gdb_prompt $" {
69         fail "couldn't get endianness"
70     }
71     timeout             { fail "(timeout) endianness" }
72 }
73
74 # And then read the E500 registers back, to see that
75 # a) the register write above worked, and
76 # b) the register read (below) also works.
77
78 if {$endianness == "big"} {
79 set vector_register ".uint64 = 0x100000001, v2_float = .0x0, 0x0., v2_int32 = .0x1, 0x1., v4_int16 = .0x0, 0x1, 0x0, 0x1., v8_int8 = .0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1.."
80 } else {
81 set vector_register ".uint64 = 0x100000001, v2_float = .0x0, 0x0., v2_int32 = .0x1, 0x1., v4_int16 = .0x1, 0x0, 0x1, 0x0., v8_int8 = .0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0.."
82 }
83
84 for {set i 0} {$i < 32} {incr i 1} {
85         gdb_test "info reg ev$i" "ev$i.*$vector_register" "info reg ev$i"
86 }
87
88 # Test wether the GPRs are updated accordingly. (GPRs are just the lower
89 # 32 bits of the EV registers.)
90
91 set general_register "0x1\[ \t\]+1"
92
93 for {set i 0} {$i < 32} {incr i 1} {
94         gdb_test "info reg r$i" "r$i.*$general_register" "info reg r$i"
95 }
96
97 # Now redo the same tests, but using the print command.
98
99 if {$endianness == "big"} {
100      set decimal_vector ".uint64 = 4294967297, v2_float = .1.*e-45, 1.*e-45., v2_int32 = .1, 1., v4_int16 = .0, 1, 0, 1., v8_int8 = .0, 0, 0, 1, 0, 0, 0, 1.."
101 } else {
102      set decimal_vector ".uint64 = 4294967297, v2_float = .1.*e-45, 1.*e-45., v2_int32 = .1, 1., v4_int16 = .1, 0, 1, 0., v8_int8 = .1, 0, 0, 0, 1, 0, 0, 0.."
103 }
104
105 for {set i 0} {$i < 32} {incr i 1} {
106         gdb_test "print \$ev$i" ".* = $decimal_vector" "print ev$i"
107 }
108
109 for {set i 0} {$i < 32} {incr i 1} {
110          set pattern$i ".*ev$i.*"
111          append pattern$i $vector_register
112 }
113
114 send_gdb "info vector\n"
115 gdb_expect_list "info vector" ".*$gdb_prompt $" {
116 [$pattern0]
117 [$pattern1]
118 [$pattern2]
119 [$pattern3]
120 [$pattern4]
121 [$pattern5]
122 [$pattern6]
123 [$pattern7]
124 [$pattern8]
125 [$pattern9]
126 [$pattern10]
127 [$pattern11]
128 [$pattern12]
129 [$pattern13]
130 [$pattern14]
131 [$pattern15]
132 [$pattern16]
133 [$pattern17]
134 [$pattern18]
135 [$pattern19]
136 [$pattern20]
137 [$pattern21]
138 [$pattern22]
139 [$pattern23]
140 [$pattern24]
141 [$pattern25]
142 [$pattern26]
143 [$pattern27]
144 [$pattern28]
145 [$pattern29]
146 [$pattern30]
147 [$pattern31]
148 }
149
150 # We must restart everything, because we have set important registers to
151 # some unusual values.
152
153 gdb_exit
154 gdb_start
155 gdb_reinitialize_dir $srcdir/$subdir
156 gdb_load ${binfile}
157 if ![runto_main] then {
158     gdb_suppress_tests
159 }
160
161 gdb_test "break vector_fun" \
162  "Breakpoint 2 at.*e500-regs.c, line \[0-9\]+\\." \
163  "Set breakpoint at vector_fun"
164
165 # Actually it is nuch easier to see these results printed in hex.
166 # gdb_test "set output-radix 16" \
167 #   "Output radix now set to decimal 16, hex 10, octal 20." \
168 #   "Set output radix to hex"
169
170 gdb_test "continue" \
171   "Breakpoint 2, vector_fun .a=.-2, -2., b=.1, 1.*e500-regs.c.*ev_create_s32 .2, 2.;" \
172   "continue to vector_fun"
173
174 # Do a next over the assignment to vector 'a'. 
175 gdb_test "next" ".*b = \\(vector int\\) __ev_create_s32 \\(3, 3\\);" \
176   "next (1)"
177
178 # Do a next over the assignment to vector 'b'. 
179 gdb_test "next" "c = __ev_and \\(a, b\\);" \
180   "next (2)"
181
182 # Now 'a' should be '0x02020202...' and 'b' should be '0x03030303...'
183 gdb_test "print/x a" \
184   ".*= .0x2, 0x2." \
185   "print vector parameter a"
186
187 gdb_test "print/x b" \
188   ".*= .0x3, 0x3." \
189   "print vector parameter b"
190
191 # If we do an 'up' now, and print 'x' and 'y' we should see the values they
192 # have in main, not the values they have in vector_fun.
193 gdb_test "up" ".1.*main \\(\\) at.*e500-regs.c.*z = vector_fun \\(x, y\\);" \
194   "up to main"
195
196 gdb_test "print x" \
197   ".*= .-2, -2." \
198   "print vector x"
199
200 gdb_test "print y" \
201   ".*= .1, 1." \
202   "print vector y"
203
204 # now go back to vector_func and do a finish, to see if we can print the return
205 # value correctly.
206
207 gdb_test "down" \
208   ".0  vector_fun \\(a=.2, 2., b=.3, 3.\\) at.*e500-regs.c.*c = __ev_and \\(a, b\\);" \
209   "down to vector_fun"
210
211 gdb_test "finish" \
212   "Run till exit from .0  vector_fun \\(a=.2, 2., b=.3, 3.\\) at.*e500-regs.c.*main \\(\\) at.*e500-regs.c.*z = vector_fun \\(x, y\\);.*Value returned is.*= .2, 2." \
213   "finish returned correct value"
214
215
216