summaryrefslogtreecommitdiffstats
path: root/lib/libc/sparc64/fpu/fpu_reg.S
blob: 781b4fec8f9cb39ecb695c7c134e9fe57b85e255 (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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*-
 * Copyright (c) 2002 by Thomas Moestl <tmm@FreeBSD.org>.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <machine/asm.h>
__FBSDID("$FreeBSD$");

/*
 * Define arrays of leaf functions to load/store fp registers to memory. See
 * fpu_reg.h for the definitions to use this from C code. The function sizes
 * defines there must be kept in sync with this file!
 */

.macro ld32	reg
	retl
	 ld	[%o0], %f\reg
.endm

.macro st32	reg
	retl
	 st	%f\reg, [%o0]
.endm

.macro ld64	reg
	retl
	 ldd	[%o0], %f\reg
.endm

.macro st64	reg
	retl
	 std	%f\reg, [%o0]
.endm

/* The actual function arrays. */
	.globl	__fpu_ld32
__fpu_ld32:
	ld32	0
	ld32	1
	ld32	2
	ld32	3
	ld32	4
	ld32	5
	ld32	6
	ld32	7
	ld32	8
	ld32	9
	ld32	10
	ld32	11
	ld32	12
	ld32	13
	ld32	14
	ld32	15
	ld32	16
	ld32	17
	ld32	18
	ld32	19
	ld32	20
	ld32	21
	ld32	22
	ld32	23
	ld32	24
	ld32	25
	ld32	26
	ld32	27
	ld32	28
	ld32	29
	ld32	30
	ld32	31

	.globl	__fpu_st32
__fpu_st32:
	st32	0
	st32	1
	st32	2
	st32	3
	st32	4
	st32	5
	st32	6
	st32	7
	st32	8
	st32	9
	st32	10
	st32	11
	st32	12
	st32	13
	st32	14
	st32	15
	st32	16
	st32	17
	st32	18
	st32	19
	st32	20
	st32	21
	st32	22
	st32	23
	st32	24
	st32	25
	st32	26
	st32	27
	st32	28
	st32	29
	st32	30
	st32	31

	.globl	__fpu_ld64
__fpu_ld64:
	ld64	0
	ld64	2
	ld64	4
	ld64	6
	ld64	8
	ld64	10
	ld64	12
	ld64	14
	ld64	16
	ld64	18
	ld64	20
	ld64	22
	ld64	24
	ld64	26
	ld64	28
	ld64	30
	ld64	32
	ld64	34
	ld64	36
	ld64	38
	ld64	40
	ld64	42
	ld64	44
	ld64	46
	ld64	48
	ld64	50
	ld64	52
	ld64	54
	ld64	56
	ld64	58
	ld64	60
	ld64	62

	.globl	__fpu_st64
__fpu_st64:
	st64	0
	st64	2
	st64	4
	st64	6
	st64	8
	st64	10
	st64	12
	st64	14
	st64	16
	st64	18
	st64	20
	st64	22
	st64	24
	st64	26
	st64	28
	st64	30
	st64	32
	st64	34
	st64	36
	st64	38
	st64	40
	st64	42
	st64	44
	st64	46
	st64	48
	st64	50
	st64	52
	st64	54
	st64	56
	st64	58
	st64	60
	st64	62
OpenPOWER on IntegriCloud