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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/* Copyright 2017-2018 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.
KAT for decoding various sparc64 registers. */
.section ".text"
.align 4
.global main
.type main, #function
main:
call test_ccr
nop
call test_fsr
nop
retl
nop
.size main, .-main
.type test_ccr, #function
test_ccr:
.cfi_startproc
wr %g0, 0x01, %ccr
wr %g0, 0x02, %ccr
wr %g0, 0x03, %ccr
wr %g0, 0x04, %ccr
wr %g0, 0x05, %ccr
wr %g0, 0x06, %ccr
wr %g0, 0x07, %ccr
wr %g0, 0x08, %ccr
wr %g0, 0x09, %ccr
wr %g0, 0x0a, %ccr
wr %g0, 0x0b, %ccr
wr %g0, 0x0c, %ccr
wr %g0, 0x0d, %ccr
wr %g0, 0x0e, %ccr
wr %g0, 0x0f, %ccr
wr %g0, 0x10, %ccr
wr %g0, 0x20, %ccr
wr %g0, 0x30, %ccr
wr %g0, 0x40, %ccr
wr %g0, 0x50, %ccr
wr %g0, 0x60, %ccr
wr %g0, 0x70, %ccr
wr %g0, 0x80, %ccr
wr %g0, 0x90, %ccr
wr %g0, 0xa0, %ccr
wr %g0, 0xb0, %ccr
wr %g0, 0xc0, %ccr
wr %g0, 0xd0, %ccr
wr %g0, 0xe0, %ccr
wr %g0, 0xf0, %ccr
retl
nop
.cfi_endproc
.size test_ccr, .-test_ccr
.type test_fsr, #function
test_fsr:
.cfi_startproc
wr %g0, 4, %fprs
setx flags, %l1, %l0
mov 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1 ! sparc64-regs.exp: after first %fsr
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 14, %l1 ! move to fsr.tem fields
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
stx %l1, [%l0]
ldx [%l0], %fsr
sllx %l1, 1, %l1
retl
nop
.cfi_endproc
.size test_fsr, .-test_fsr
.section ".data"
.align 8
flags: .xword 0x0000000000000000
.size flags, .-flags
|