OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgcc/] [config/] [rs6000/] [crtresxfpr.S] - Blame information for rev 734

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 734 jeremybenn
/*
2
 * Special support for eabi and SVR4
3
 *
4
 *   Copyright (C) 1995, 1996, 1998, 2000, 2001, 2008, 2009
5
 *   Free Software Foundation, Inc.
6
 *   Written By Michael Meissner
7
 *   64-bit support written by David Edelsohn
8
 *
9
 * This file is free software; you can redistribute it and/or modify it
10
 * under the terms of the GNU General Public License as published by the
11
 * Free Software Foundation; either version 3, or (at your option) any
12
 * later version.
13
 *
14
 * This file is distributed in the hope that it will be useful, but
15
 * WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 * General Public License for more details.
18
 *
19
 * Under Section 7 of GPL version 3, you are granted additional
20
 * permissions described in the GCC Runtime Library Exception, version
21
 * 3.1, as published by the Free Software Foundation.
22
 *
23
 * You should have received a copy of the GNU General Public License and
24
 * a copy of the GCC Runtime Library Exception along with this program;
25
 * see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
26
 * .
27
 */
28
 
29
/* Do any initializations needed for the eabi environment */
30
 
31
        .section ".text"
32
        #include "ppc-asm.h"
33
 
34
/* On PowerPC64 Linux, these functions are provided by the linker.  */
35
#ifndef __powerpc64__
36
 
37
/* Routines for restoring floating point registers, called by the compiler.  */
38
/* Called with r11 pointing to the stack header word of the caller of the */
39
/* function, just beyond the end of the floating point save area.  */
40
/* In addition to restoring the fp registers, it will return to the caller's */
41
/* caller */
42
 
43
CFI_STARTPROC
44
CFI_DEF_CFA_REGISTER (11)
45
CFI_OFFSET (65, 4)
46
CFI_OFFSET (46, -144)
47
CFI_OFFSET (47, -136)
48
CFI_OFFSET (48, -128)
49
CFI_OFFSET (49, -120)
50
CFI_OFFSET (50, -112)
51
CFI_OFFSET (51, -104)
52
CFI_OFFSET (52, -96)
53
CFI_OFFSET (53, -88)
54
CFI_OFFSET (54, -80)
55
CFI_OFFSET (55, -72)
56
CFI_OFFSET (56, -64)
57
CFI_OFFSET (57, -56)
58
CFI_OFFSET (58, -48)
59
CFI_OFFSET (59, -40)
60
CFI_OFFSET (60, -32)
61
CFI_OFFSET (61, -24)
62
CFI_OFFSET (62, -16)
63
CFI_OFFSET (63, -8)
64
HIDDEN_FUNC(_restfpr_14_x)      lfd     14,-144(11)     /* restore fp registers */
65
CFI_RESTORE (46)
66
HIDDEN_FUNC(_restfpr_15_x)      lfd     15,-136(11)
67
CFI_RESTORE (47)
68
HIDDEN_FUNC(_restfpr_16_x)      lfd     16,-128(11)
69
CFI_RESTORE (48)
70
HIDDEN_FUNC(_restfpr_17_x)      lfd     17,-120(11)
71
CFI_RESTORE (49)
72
HIDDEN_FUNC(_restfpr_18_x)      lfd     18,-112(11)
73
CFI_RESTORE (50)
74
HIDDEN_FUNC(_restfpr_19_x)      lfd     19,-104(11)
75
CFI_RESTORE (51)
76
HIDDEN_FUNC(_restfpr_20_x)      lfd     20,-96(11)
77
CFI_RESTORE (52)
78
HIDDEN_FUNC(_restfpr_21_x)      lfd     21,-88(11)
79
CFI_RESTORE (53)
80
HIDDEN_FUNC(_restfpr_22_x)      lfd     22,-80(11)
81
CFI_RESTORE (54)
82
HIDDEN_FUNC(_restfpr_23_x)      lfd     23,-72(11)
83
CFI_RESTORE (55)
84
HIDDEN_FUNC(_restfpr_24_x)      lfd     24,-64(11)
85
CFI_RESTORE (56)
86
HIDDEN_FUNC(_restfpr_25_x)      lfd     25,-56(11)
87
CFI_RESTORE (57)
88
HIDDEN_FUNC(_restfpr_26_x)      lfd     26,-48(11)
89
CFI_RESTORE (58)
90
HIDDEN_FUNC(_restfpr_27_x)      lfd     27,-40(11)
91
CFI_RESTORE (59)
92
HIDDEN_FUNC(_restfpr_28_x)      lfd     28,-32(11)
93
CFI_RESTORE (60)
94
HIDDEN_FUNC(_restfpr_29_x)      lfd     29,-24(11)
95
CFI_RESTORE (61)
96
HIDDEN_FUNC(_restfpr_30_x)      lfd     30,-16(11)
97
CFI_RESTORE (62)
98
HIDDEN_FUNC(_restfpr_31_x)      lwz     0,4(11)
99
                                lfd     31,-8(11)
100
CFI_RESTORE (63)
101
                                mtlr    0
102
CFI_RESTORE (65)
103
                                mr      1,11
104
CFI_DEF_CFA_REGISTER (1)
105
                                blr
106
FUNC_END(_restfpr_31_x)
107
FUNC_END(_restfpr_30_x)
108
FUNC_END(_restfpr_29_x)
109
FUNC_END(_restfpr_28_x)
110
FUNC_END(_restfpr_27_x)
111
FUNC_END(_restfpr_26_x)
112
FUNC_END(_restfpr_25_x)
113
FUNC_END(_restfpr_24_x)
114
FUNC_END(_restfpr_23_x)
115
FUNC_END(_restfpr_22_x)
116
FUNC_END(_restfpr_21_x)
117
FUNC_END(_restfpr_20_x)
118
FUNC_END(_restfpr_19_x)
119
FUNC_END(_restfpr_18_x)
120
FUNC_END(_restfpr_17_x)
121
FUNC_END(_restfpr_16_x)
122
FUNC_END(_restfpr_15_x)
123
FUNC_END(_restfpr_14_x)
124
CFI_ENDPROC
125
 
126
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.