1c87b03e5Sespie/*
2c87b03e5Sespie * Special support for eabi and SVR4
3c87b03e5Sespie *
4c87b03e5Sespie *   Copyright (C) 1995, 1996, 1998, 2000, 2001 Free Software Foundation, Inc.
5c87b03e5Sespie *   Written By Michael Meissner
6c87b03e5Sespie *   64-bit support written by David Edelsohn
7c87b03e5Sespie *
8c87b03e5Sespie * This file is free software; you can redistribute it and/or modify it
9c87b03e5Sespie * under the terms of the GNU General Public License as published by the
10c87b03e5Sespie * Free Software Foundation; either version 2, or (at your option) any
11c87b03e5Sespie * later version.
12c87b03e5Sespie *
13c87b03e5Sespie * In addition to the permissions in the GNU General Public License, the
14c87b03e5Sespie * Free Software Foundation gives you unlimited permission to link the
15c87b03e5Sespie * compiled version of this file with other programs, and to distribute
16c87b03e5Sespie * those programs without any restriction coming from the use of this
17c87b03e5Sespie * file.  (The General Public License restrictions do apply in other
18c87b03e5Sespie * respects; for example, they cover modification of the file, and
19c87b03e5Sespie * distribution when not linked into another program.)
20c87b03e5Sespie *
21c87b03e5Sespie * This file is distributed in the hope that it will be useful, but
22c87b03e5Sespie * WITHOUT ANY WARRANTY; without even the implied warranty of
23c87b03e5Sespie * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24c87b03e5Sespie * General Public License for more details.
25c87b03e5Sespie *
26c87b03e5Sespie * You should have received a copy of the GNU General Public License
27c87b03e5Sespie * along with this program; see the file COPYING.  If not, write to
28c87b03e5Sespie * the Free Software Foundation, 59 Temple Place - Suite 330,
29c87b03e5Sespie * Boston, MA 02111-1307, USA.
30c87b03e5Sespie *
31c87b03e5Sespie *    As a special exception, if you link this library with files
32c87b03e5Sespie *    compiled with GCC to produce an executable, this does not cause
33c87b03e5Sespie *    the resulting executable to be covered by the GNU General Public License.
34c87b03e5Sespie *    This exception does not however invalidate any other reasons why
35c87b03e5Sespie *    the executable file might be covered by the GNU General Public License.
36c87b03e5Sespie */
37c87b03e5Sespie
38c87b03e5Sespie/* Do any initializations needed for the eabi environment */
39c87b03e5Sespie
40c87b03e5Sespie	.file	"crtsavres.asm"
41c87b03e5Sespie	.section ".text"
42*ddbba0f0Sespie	#include "rs6000/ppc-asm.h"
43c87b03e5Sespie
44c87b03e5Sespie#ifndef __powerpc64__
45c87b03e5Sespie
46c87b03e5Sespie/* Routines for saving floating point registers, called by the compiler.  */
47c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
48c87b03e5Sespie/* function, just beyond the end of the floating point save area.  */
49c87b03e5Sespie
50c87b03e5SespieFUNC_START(_savefpr_14)	stfd	14,-144(11)	/* save fp registers */
51c87b03e5SespieFUNC_START(_savefpr_15)	stfd	15,-136(11)
52c87b03e5SespieFUNC_START(_savefpr_16)	stfd	16,-128(11)
53c87b03e5SespieFUNC_START(_savefpr_17)	stfd	17,-120(11)
54c87b03e5SespieFUNC_START(_savefpr_18)	stfd	18,-112(11)
55c87b03e5SespieFUNC_START(_savefpr_19)	stfd	19,-104(11)
56c87b03e5SespieFUNC_START(_savefpr_20)	stfd	20,-96(11)
57c87b03e5SespieFUNC_START(_savefpr_21)	stfd	21,-88(11)
58c87b03e5SespieFUNC_START(_savefpr_22)	stfd	22,-80(11)
59c87b03e5SespieFUNC_START(_savefpr_23)	stfd	23,-72(11)
60c87b03e5SespieFUNC_START(_savefpr_24)	stfd	24,-64(11)
61c87b03e5SespieFUNC_START(_savefpr_25)	stfd	25,-56(11)
62c87b03e5SespieFUNC_START(_savefpr_26)	stfd	26,-48(11)
63c87b03e5SespieFUNC_START(_savefpr_27)	stfd	27,-40(11)
64c87b03e5SespieFUNC_START(_savefpr_28)	stfd	28,-32(11)
65c87b03e5SespieFUNC_START(_savefpr_29)	stfd	29,-24(11)
66c87b03e5SespieFUNC_START(_savefpr_30)	stfd	30,-16(11)
67c87b03e5SespieFUNC_START(_savefpr_31)	stfd	31,-8(11)
68c87b03e5Sespie			blr
69c87b03e5SespieFUNC_END(_savefpr_31)
70c87b03e5SespieFUNC_END(_savefpr_30)
71c87b03e5SespieFUNC_END(_savefpr_29)
72c87b03e5SespieFUNC_END(_savefpr_28)
73c87b03e5SespieFUNC_END(_savefpr_27)
74c87b03e5SespieFUNC_END(_savefpr_26)
75c87b03e5SespieFUNC_END(_savefpr_25)
76c87b03e5SespieFUNC_END(_savefpr_24)
77c87b03e5SespieFUNC_END(_savefpr_23)
78c87b03e5SespieFUNC_END(_savefpr_22)
79c87b03e5SespieFUNC_END(_savefpr_21)
80c87b03e5SespieFUNC_END(_savefpr_20)
81c87b03e5SespieFUNC_END(_savefpr_19)
82c87b03e5SespieFUNC_END(_savefpr_18)
83c87b03e5SespieFUNC_END(_savefpr_17)
84c87b03e5SespieFUNC_END(_savefpr_16)
85c87b03e5SespieFUNC_END(_savefpr_15)
86c87b03e5SespieFUNC_END(_savefpr_14)
87c87b03e5Sespie
88c87b03e5Sespie/* Routines for saving integer registers, called by the compiler.  */
89c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
90c87b03e5Sespie/* function, just beyond the end of the integer save area.  */
91c87b03e5Sespie
92c87b03e5SespieFUNC_START(_savegpr_14)	stw	14,-72(11)	/* save gp registers */
93c87b03e5SespieFUNC_START(_savegpr_15)	stw	15,-68(11)
94c87b03e5SespieFUNC_START(_savegpr_16)	stw	16,-64(11)
95c87b03e5SespieFUNC_START(_savegpr_17)	stw	17,-60(11)
96c87b03e5SespieFUNC_START(_savegpr_18)	stw	18,-56(11)
97c87b03e5SespieFUNC_START(_savegpr_19)	stw	19,-52(11)
98c87b03e5SespieFUNC_START(_savegpr_20)	stw	20,-48(11)
99c87b03e5SespieFUNC_START(_savegpr_21)	stw	21,-44(11)
100c87b03e5SespieFUNC_START(_savegpr_22)	stw	22,-40(11)
101c87b03e5SespieFUNC_START(_savegpr_23)	stw	23,-36(11)
102c87b03e5SespieFUNC_START(_savegpr_24)	stw	24,-32(11)
103c87b03e5SespieFUNC_START(_savegpr_25)	stw	25,-28(11)
104c87b03e5SespieFUNC_START(_savegpr_26)	stw	26,-24(11)
105c87b03e5SespieFUNC_START(_savegpr_27)	stw	27,-20(11)
106c87b03e5SespieFUNC_START(_savegpr_28)	stw	28,-16(11)
107c87b03e5SespieFUNC_START(_savegpr_29)	stw	29,-12(11)
108c87b03e5SespieFUNC_START(_savegpr_30)	stw	30,-8(11)
109c87b03e5SespieFUNC_START(_savegpr_31)	stw	31,-4(11)
110c87b03e5Sespie			blr
111c87b03e5SespieFUNC_END(_savegpr_31)
112c87b03e5SespieFUNC_END(_savegpr_30)
113c87b03e5SespieFUNC_END(_savegpr_29)
114c87b03e5SespieFUNC_END(_savegpr_28)
115c87b03e5SespieFUNC_END(_savegpr_27)
116c87b03e5SespieFUNC_END(_savegpr_26)
117c87b03e5SespieFUNC_END(_savegpr_25)
118c87b03e5SespieFUNC_END(_savegpr_24)
119c87b03e5SespieFUNC_END(_savegpr_23)
120c87b03e5SespieFUNC_END(_savegpr_22)
121c87b03e5SespieFUNC_END(_savegpr_21)
122c87b03e5SespieFUNC_END(_savegpr_20)
123c87b03e5SespieFUNC_END(_savegpr_19)
124c87b03e5SespieFUNC_END(_savegpr_18)
125c87b03e5SespieFUNC_END(_savegpr_17)
126c87b03e5SespieFUNC_END(_savegpr_16)
127c87b03e5SespieFUNC_END(_savegpr_15)
128c87b03e5SespieFUNC_END(_savegpr_14)
129c87b03e5Sespie
130c87b03e5Sespie/* Routines for restoring floating point registers, called by the compiler.  */
131c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
132c87b03e5Sespie/* function, just beyond the end of the floating point save area.  */
133c87b03e5Sespie
134c87b03e5SespieFUNC_START(_restfpr_14)	lfd	14,-144(11)	/* restore fp registers */
135c87b03e5SespieFUNC_START(_restfpr_15)	lfd	15,-136(11)
136c87b03e5SespieFUNC_START(_restfpr_16)	lfd	16,-128(11)
137c87b03e5SespieFUNC_START(_restfpr_17)	lfd	17,-120(11)
138c87b03e5SespieFUNC_START(_restfpr_18)	lfd	18,-112(11)
139c87b03e5SespieFUNC_START(_restfpr_19)	lfd	19,-104(11)
140c87b03e5SespieFUNC_START(_restfpr_20)	lfd	20,-96(11)
141c87b03e5SespieFUNC_START(_restfpr_21)	lfd	21,-88(11)
142c87b03e5SespieFUNC_START(_restfpr_22)	lfd	22,-80(11)
143c87b03e5SespieFUNC_START(_restfpr_23)	lfd	23,-72(11)
144c87b03e5SespieFUNC_START(_restfpr_24)	lfd	24,-64(11)
145c87b03e5SespieFUNC_START(_restfpr_25)	lfd	25,-56(11)
146c87b03e5SespieFUNC_START(_restfpr_26)	lfd	26,-48(11)
147c87b03e5SespieFUNC_START(_restfpr_27)	lfd	27,-40(11)
148c87b03e5SespieFUNC_START(_restfpr_28)	lfd	28,-32(11)
149c87b03e5SespieFUNC_START(_restfpr_29)	lfd	29,-24(11)
150c87b03e5SespieFUNC_START(_restfpr_30)	lfd	30,-16(11)
151c87b03e5SespieFUNC_START(_restfpr_31)	lfd	31,-8(11)
152c87b03e5Sespie			blr
153c87b03e5SespieFUNC_END(_restfpr_31)
154c87b03e5SespieFUNC_END(_restfpr_30)
155c87b03e5SespieFUNC_END(_restfpr_29)
156c87b03e5SespieFUNC_END(_restfpr_28)
157c87b03e5SespieFUNC_END(_restfpr_27)
158c87b03e5SespieFUNC_END(_restfpr_26)
159c87b03e5SespieFUNC_END(_restfpr_25)
160c87b03e5SespieFUNC_END(_restfpr_24)
161c87b03e5SespieFUNC_END(_restfpr_23)
162c87b03e5SespieFUNC_END(_restfpr_22)
163c87b03e5SespieFUNC_END(_restfpr_21)
164c87b03e5SespieFUNC_END(_restfpr_20)
165c87b03e5SespieFUNC_END(_restfpr_19)
166c87b03e5SespieFUNC_END(_restfpr_18)
167c87b03e5SespieFUNC_END(_restfpr_17)
168c87b03e5SespieFUNC_END(_restfpr_16)
169c87b03e5SespieFUNC_END(_restfpr_15)
170c87b03e5SespieFUNC_END(_restfpr_14)
171c87b03e5Sespie
172c87b03e5Sespie/* Routines for restoring integer registers, called by the compiler.  */
173c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
174c87b03e5Sespie/* function, just beyond the end of the integer restore area.  */
175c87b03e5Sespie
176c87b03e5SespieFUNC_START(_restgpr_14)	lwz	14,-72(11)	/* restore gp registers */
177c87b03e5SespieFUNC_START(_restgpr_15)	lwz	15,-68(11)
178c87b03e5SespieFUNC_START(_restgpr_16)	lwz	16,-64(11)
179c87b03e5SespieFUNC_START(_restgpr_17)	lwz	17,-60(11)
180c87b03e5SespieFUNC_START(_restgpr_18)	lwz	18,-56(11)
181c87b03e5SespieFUNC_START(_restgpr_19)	lwz	19,-52(11)
182c87b03e5SespieFUNC_START(_restgpr_20)	lwz	20,-48(11)
183c87b03e5SespieFUNC_START(_restgpr_21)	lwz	21,-44(11)
184c87b03e5SespieFUNC_START(_restgpr_22)	lwz	22,-40(11)
185c87b03e5SespieFUNC_START(_restgpr_23)	lwz	23,-36(11)
186c87b03e5SespieFUNC_START(_restgpr_24)	lwz	24,-32(11)
187c87b03e5SespieFUNC_START(_restgpr_25)	lwz	25,-28(11)
188c87b03e5SespieFUNC_START(_restgpr_26)	lwz	26,-24(11)
189c87b03e5SespieFUNC_START(_restgpr_27)	lwz	27,-20(11)
190c87b03e5SespieFUNC_START(_restgpr_28)	lwz	28,-16(11)
191c87b03e5SespieFUNC_START(_restgpr_29)	lwz	29,-12(11)
192c87b03e5SespieFUNC_START(_restgpr_30)	lwz	30,-8(11)
193c87b03e5SespieFUNC_START(_restgpr_31)	lwz	31,-4(11)
194c87b03e5Sespie			blr
195c87b03e5SespieFUNC_END(_restgpr_31)
196c87b03e5SespieFUNC_END(_restgpr_30)
197c87b03e5SespieFUNC_END(_restgpr_29)
198c87b03e5SespieFUNC_END(_restgpr_28)
199c87b03e5SespieFUNC_END(_restgpr_27)
200c87b03e5SespieFUNC_END(_restgpr_26)
201c87b03e5SespieFUNC_END(_restgpr_25)
202c87b03e5SespieFUNC_END(_restgpr_24)
203c87b03e5SespieFUNC_END(_restgpr_23)
204c87b03e5SespieFUNC_END(_restgpr_22)
205c87b03e5SespieFUNC_END(_restgpr_21)
206c87b03e5SespieFUNC_END(_restgpr_20)
207c87b03e5SespieFUNC_END(_restgpr_19)
208c87b03e5SespieFUNC_END(_restgpr_18)
209c87b03e5SespieFUNC_END(_restgpr_17)
210c87b03e5SespieFUNC_END(_restgpr_16)
211c87b03e5SespieFUNC_END(_restgpr_15)
212c87b03e5SespieFUNC_END(_restgpr_14)
213c87b03e5Sespie
214c87b03e5Sespie/* Routines for restoring floating point registers, called by the compiler.  */
215c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
216c87b03e5Sespie/* function, just beyond the end of the floating point save area.  */
217c87b03e5Sespie/* In addition to restoring the fp registers, it will return to the caller's */
218c87b03e5Sespie/* caller */
219c87b03e5Sespie
220c87b03e5SespieFUNC_START(_restfpr_14_x)	lfd	14,-144(11)	/* restore fp registers */
221c87b03e5SespieFUNC_START(_restfpr_15_x)	lfd	15,-136(11)
222c87b03e5SespieFUNC_START(_restfpr_16_x)	lfd	16,-128(11)
223c87b03e5SespieFUNC_START(_restfpr_17_x)	lfd	17,-120(11)
224c87b03e5SespieFUNC_START(_restfpr_18_x)	lfd	18,-112(11)
225c87b03e5SespieFUNC_START(_restfpr_19_x)	lfd	19,-104(11)
226c87b03e5SespieFUNC_START(_restfpr_20_x)	lfd	20,-96(11)
227c87b03e5SespieFUNC_START(_restfpr_21_x)	lfd	21,-88(11)
228c87b03e5SespieFUNC_START(_restfpr_22_x)	lfd	22,-80(11)
229c87b03e5SespieFUNC_START(_restfpr_23_x)	lfd	23,-72(11)
230c87b03e5SespieFUNC_START(_restfpr_24_x)	lfd	24,-64(11)
231c87b03e5SespieFUNC_START(_restfpr_25_x)	lfd	25,-56(11)
232c87b03e5SespieFUNC_START(_restfpr_26_x)	lfd	26,-48(11)
233c87b03e5SespieFUNC_START(_restfpr_27_x)	lfd	27,-40(11)
234c87b03e5SespieFUNC_START(_restfpr_28_x)	lfd	28,-32(11)
235c87b03e5SespieFUNC_START(_restfpr_29_x)	lfd	29,-24(11)
236c87b03e5SespieFUNC_START(_restfpr_30_x)	lfd	30,-16(11)
237c87b03e5SespieFUNC_START(_restfpr_31_x)	lwz	0,4(11)
238c87b03e5Sespie				lfd	31,-8(11)
239c87b03e5Sespie				mtlr	0
240c87b03e5Sespie				mr	1,11
241c87b03e5Sespie				blr
242c87b03e5SespieFUNC_END(_restfpr_31_x)
243c87b03e5SespieFUNC_END(_restfpr_30_x)
244c87b03e5SespieFUNC_END(_restfpr_29_x)
245c87b03e5SespieFUNC_END(_restfpr_28_x)
246c87b03e5SespieFUNC_END(_restfpr_27_x)
247c87b03e5SespieFUNC_END(_restfpr_26_x)
248c87b03e5SespieFUNC_END(_restfpr_25_x)
249c87b03e5SespieFUNC_END(_restfpr_24_x)
250c87b03e5SespieFUNC_END(_restfpr_23_x)
251c87b03e5SespieFUNC_END(_restfpr_22_x)
252c87b03e5SespieFUNC_END(_restfpr_21_x)
253c87b03e5SespieFUNC_END(_restfpr_20_x)
254c87b03e5SespieFUNC_END(_restfpr_19_x)
255c87b03e5SespieFUNC_END(_restfpr_18_x)
256c87b03e5SespieFUNC_END(_restfpr_17_x)
257c87b03e5SespieFUNC_END(_restfpr_16_x)
258c87b03e5SespieFUNC_END(_restfpr_15_x)
259c87b03e5SespieFUNC_END(_restfpr_14_x)
260c87b03e5Sespie
261c87b03e5Sespie/* Routines for restoring integer registers, called by the compiler.  */
262c87b03e5Sespie/* Called with r11 pointing to the stack header word of the caller of the */
263c87b03e5Sespie/* function, just beyond the end of the integer restore area.  */
264c87b03e5Sespie
265c87b03e5SespieFUNC_START(_restgpr_14_x)	lwz	14,-72(11)	/* restore gp registers */
266c87b03e5SespieFUNC_START(_restgpr_15_x)	lwz	15,-68(11)
267c87b03e5SespieFUNC_START(_restgpr_16_x)	lwz	16,-64(11)
268c87b03e5SespieFUNC_START(_restgpr_17_x)	lwz	17,-60(11)
269c87b03e5SespieFUNC_START(_restgpr_18_x)	lwz	18,-56(11)
270c87b03e5SespieFUNC_START(_restgpr_19_x)	lwz	19,-52(11)
271c87b03e5SespieFUNC_START(_restgpr_20_x)	lwz	20,-48(11)
272c87b03e5SespieFUNC_START(_restgpr_21_x)	lwz	21,-44(11)
273c87b03e5SespieFUNC_START(_restgpr_22_x)	lwz	22,-40(11)
274c87b03e5SespieFUNC_START(_restgpr_23_x)	lwz	23,-36(11)
275c87b03e5SespieFUNC_START(_restgpr_24_x)	lwz	24,-32(11)
276c87b03e5SespieFUNC_START(_restgpr_25_x)	lwz	25,-28(11)
277c87b03e5SespieFUNC_START(_restgpr_26_x)	lwz	26,-24(11)
278c87b03e5SespieFUNC_START(_restgpr_27_x)	lwz	27,-20(11)
279c87b03e5SespieFUNC_START(_restgpr_28_x)	lwz	28,-16(11)
280c87b03e5SespieFUNC_START(_restgpr_29_x)	lwz	29,-12(11)
281c87b03e5SespieFUNC_START(_restgpr_30_x)	lwz	30,-8(11)
282c87b03e5SespieFUNC_START(_restgpr_31_x)	lwz	0,4(11)
283c87b03e5Sespie				lwz	31,-4(11)
284c87b03e5Sespie				mtlr	0
285c87b03e5Sespie				mr	1,11
286c87b03e5Sespie				blr
287c87b03e5SespieFUNC_END(_restgpr_31_x)
288c87b03e5SespieFUNC_END(_restgpr_30_x)
289c87b03e5SespieFUNC_END(_restgpr_29_x)
290c87b03e5SespieFUNC_END(_restgpr_28_x)
291c87b03e5SespieFUNC_END(_restgpr_27_x)
292c87b03e5SespieFUNC_END(_restgpr_26_x)
293c87b03e5SespieFUNC_END(_restgpr_25_x)
294c87b03e5SespieFUNC_END(_restgpr_24_x)
295c87b03e5SespieFUNC_END(_restgpr_23_x)
296c87b03e5SespieFUNC_END(_restgpr_22_x)
297c87b03e5SespieFUNC_END(_restgpr_21_x)
298c87b03e5SespieFUNC_END(_restgpr_20_x)
299c87b03e5SespieFUNC_END(_restgpr_19_x)
300c87b03e5SespieFUNC_END(_restgpr_18_x)
301c87b03e5SespieFUNC_END(_restgpr_17_x)
302c87b03e5SespieFUNC_END(_restgpr_16_x)
303c87b03e5SespieFUNC_END(_restgpr_15_x)
304c87b03e5SespieFUNC_END(_restgpr_14_x)
305c87b03e5Sespie
306c87b03e5Sespie#else /* __powerpc64__ */
307c87b03e5Sespie
308c87b03e5Sespie	.section ".text"
309c87b03e5Sespie	.align 2
310c87b03e5Sespie
311c87b03e5Sespie/* Routines for saving floating point registers, called by the compiler.  */
312c87b03e5Sespie
313c87b03e5Sespie.fsav:
314c87b03e5SespieFUNC_START(_savef14)	stfd	14,-144(1)	/* save fp registers */
315c87b03e5SespieFUNC_START(_savef15)	stfd	15,-136(1)
316c87b03e5SespieFUNC_START(_savef16)	stfd	16,-128(1)
317c87b03e5SespieFUNC_START(_savef17)	stfd	17,-120(1)
318c87b03e5SespieFUNC_START(_savef18)	stfd	18,-112(1)
319c87b03e5SespieFUNC_START(_savef19)	stfd	19,-104(1)
320c87b03e5SespieFUNC_START(_savef20)	stfd	20,-96(1)
321c87b03e5SespieFUNC_START(_savef21)	stfd	21,-88(1)
322c87b03e5SespieFUNC_START(_savef22)	stfd	22,-80(1)
323c87b03e5SespieFUNC_START(_savef23)	stfd	23,-72(1)
324c87b03e5SespieFUNC_START(_savef24)	stfd	24,-64(1)
325c87b03e5SespieFUNC_START(_savef25)	stfd	25,-56(1)
326c87b03e5SespieFUNC_START(_savef26)	stfd	26,-48(1)
327c87b03e5SespieFUNC_START(_savef27)	stfd	27,-40(1)
328c87b03e5SespieFUNC_START(_savef28)	stfd	28,-32(1)
329c87b03e5SespieFUNC_START(_savef29)	stfd	29,-24(1)
330c87b03e5SespieFUNC_START(_savef30)	stfd	30,-16(1)
331c87b03e5SespieFUNC_START(_savef31)	stfd	31,-8(1)
332c87b03e5Sespie			blr
333c87b03e5Sespie.LTfsav:
334c87b03e5Sespie			.long 0
335c87b03e5Sespie			.byte 0,12,0,0,0,0,0,0
336c87b03e5Sespie			.long 0
337c87b03e5Sespie			.long .LTfsav-.fsav
338c87b03e5Sespie			.short 4
339c87b03e5Sespie			.ascii "fsav"
340c87b03e5SespieFUNC_END(_savef31)
341c87b03e5SespieFUNC_END(_savef30)
342c87b03e5SespieFUNC_END(_savef29)
343c87b03e5SespieFUNC_END(_savef28)
344c87b03e5SespieFUNC_END(_savef27)
345c87b03e5SespieFUNC_END(_savef26)
346c87b03e5SespieFUNC_END(_savef25)
347c87b03e5SespieFUNC_END(_savef24)
348c87b03e5SespieFUNC_END(_savef23)
349c87b03e5SespieFUNC_END(_savef22)
350c87b03e5SespieFUNC_END(_savef21)
351c87b03e5SespieFUNC_END(_savef20)
352c87b03e5SespieFUNC_END(_savef19)
353c87b03e5SespieFUNC_END(_savef18)
354c87b03e5SespieFUNC_END(_savef17)
355c87b03e5SespieFUNC_END(_savef16)
356c87b03e5SespieFUNC_END(_savef15)
357c87b03e5SespieFUNC_END(_savef14)
358c87b03e5Sespie
359c87b03e5Sespie/* Routines for restoring floating point registers, called by the compiler.  */
360c87b03e5Sespie
361c87b03e5Sespie.fres:
362c87b03e5SespieFUNC_START(_restf14)	lfd	14,-144(1)	/* restore fp registers */
363c87b03e5SespieFUNC_START(_restf15)	lfd	15,-136(1)
364c87b03e5SespieFUNC_START(_restf16)	lfd	16,-128(1)
365c87b03e5SespieFUNC_START(_restf17)	lfd	17,-120(1)
366c87b03e5SespieFUNC_START(_restf18)	lfd	18,-112(1)
367c87b03e5SespieFUNC_START(_restf19)	lfd	19,-104(1)
368c87b03e5SespieFUNC_START(_restf20)	lfd	20,-96(1)
369c87b03e5SespieFUNC_START(_restf21)	lfd	21,-88(1)
370c87b03e5SespieFUNC_START(_restf22)	lfd	22,-80(1)
371c87b03e5SespieFUNC_START(_restf23)	lfd	23,-72(1)
372c87b03e5SespieFUNC_START(_restf24)	lfd	24,-64(1)
373c87b03e5SespieFUNC_START(_restf25)	lfd	25,-56(1)
374c87b03e5SespieFUNC_START(_restf26)	lfd	26,-48(1)
375c87b03e5SespieFUNC_START(_restf27)	lfd	27,-40(1)
376c87b03e5SespieFUNC_START(_restf28)	lfd	28,-32(1)
377c87b03e5SespieFUNC_START(_restf29)	lfd	29,-24(1)
378c87b03e5SespieFUNC_START(_restf30)	lfd	30,-16(1)
379c87b03e5SespieFUNC_START(_restf31)	lfd	31,-8(1)
380c87b03e5Sespie			blr
381c87b03e5Sespie.LTfres:
382c87b03e5Sespie			.long 0
383c87b03e5Sespie			.byte 0,12,0,0,0,0,0,0
384c87b03e5Sespie			.long 0
385c87b03e5Sespie			.long .LTfres-.fres
386c87b03e5Sespie			.short 4
387c87b03e5Sespie			.ascii "fres"
388c87b03e5SespieFUNC_END(_restf31)
389c87b03e5SespieFUNC_END(_restf30)
390c87b03e5SespieFUNC_END(_restf29)
391c87b03e5SespieFUNC_END(_restf28)
392c87b03e5SespieFUNC_END(_restf27)
393c87b03e5SespieFUNC_END(_restf26)
394c87b03e5SespieFUNC_END(_restf25)
395c87b03e5SespieFUNC_END(_restf24)
396c87b03e5SespieFUNC_END(_restf23)
397c87b03e5SespieFUNC_END(_restf22)
398c87b03e5SespieFUNC_END(_restf21)
399c87b03e5SespieFUNC_END(_restf20)
400c87b03e5SespieFUNC_END(_restf19)
401c87b03e5SespieFUNC_END(_restf18)
402c87b03e5SespieFUNC_END(_restf17)
403c87b03e5SespieFUNC_END(_restf16)
404c87b03e5SespieFUNC_END(_restf15)
405c87b03e5SespieFUNC_END(_restf14)
406c87b03e5Sespie
407c87b03e5Sespie#endif
408