Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crt0.S « spu « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c4bac6608409d448bc2c398af5eeed191298ee4 (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
/* (C) Copyright IBM Corp. 2005, 2006
All rights reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.
    * 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.
    * Neither the name of IBM nor the names of its contributors may be 
used to endorse or promote products derived from this software without 
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER 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.
*/

/* crt0.S - entry function for C Runtime.
 *
 * With _STD_MAIN switch, the crt0.S will be compiled to crt2.o.
 * The crt2.o sets up a C99-style interface for the SPU application's
 * main() function, including a local copy of argv strings.
 * 
 * The number of argument strings is passed in R3.  The size and EA 
 * location of the argument vector region is passed in R4.  Once the
 * argv region is copied to the highest range of LS, and $SP is set 
 * just below it.
 *
 * Without _STD_MAIN, the crt0.S is compiled to crt1.o. 
 * The crt1.o prepares the entry for an SPU module. The main() function
 * is called with different parameter list: spu_id, param and env 
 * are passed by R3, R4 and R5 respectively.
 */

#ifdef _STD_MAIN
#define MFC_TAG_UPDATE_ALL 	2
#define MFC_GET_CMD		0x40
#define TAGID			0
#define TAGMASK			1
#endif

.comm __ea_local_store,16,16

.text
.global _start
.type _start, @function
	
_start:
	/* Save the local store base from $6.  */
	stqr $6, __ea_local_store

#ifdef _STD_MAIN
	/* 
 	 * Copy the argument vector region from EA to LS.  The DMA
	 * parameters are passed in R4:
	 *
 	 *        +-------+-------+-------+-------+
	 *     R4 |   LS  | EA-HI | EA-LO | SIZE  |
	 *        +-------+-------+-------+-------+
	 *  word     0       1       2       3
	 *
 	 * By the end of this sequence, the prefered slot (word 0) of
	 * R4 will contain the LS offset of argv region, which also
	 * serves as the base offset for $SP.
	 */
	wrch	$MFC_LSA, $4
	rotqbyi	$4, $4, 4
	wrch	$MFC_EAH, $4
	rotqbyi	$4, $4, 4
	wrch	$MFC_EAL, $4
	rotqbyi	$4, $4, 4
	wrch	$MFC_Size, $4
	rotqbyi	$4, $4, 4
	il	$LR, TAGID
	wrch	$MFC_TagID, $LR

	/* Issue MFC_GET_CMD, then wait for transfer of argument
	 * vector region to complete.
	 */
	il	$LR, MFC_GET_CMD
	wrch	$MFC_Cmd, $LR
	il	$LR, TAGMASK
	wrch	$MFC_WrTagMask, $LR
	il	$LR, MFC_TAG_UPDATE_ALL
	wrch	$MFC_WrTagUpdate, $LR
	rdch	$LR, $MFC_RdTagStat
#endif

	/* Save parameter list of main function to the non-volatile
	 * registers. spu_thread module has three parameters, while
	 * spulet only has two.
	 */
	ori     $80, $3, 0
	ori     $81, $4, 0
#ifndef _STD_MAIN
	ori 	$82, $5, 0
#endif

	/* The Link Register is initialized to NULL.
	 */
	il	$LR, 0

#ifdef _STD_MAIN	
	/* For spulet, initialize stack pointer just below the argv region.
	 */
	ai	$SP,$4,-16
#else
	/* For spe_thread module, the stack pointer is initialized 
	 * below the area where __stack points to.
	 */
	ila     $SP,__stack
#endif
	/* Initialize back chain to NULL.
	 */
	stqd    $LR,0($SP)

	/* Allocate 2 slots for stack frame.
	 */
	stqd    $SP,-32($SP)
	ai      $SP,$SP,-32

	/* Save the Link Register in Link Register Save Area.
	 */
	stqd	$LR,16($SP)

	/* Calculate stack size.
	 */
	ila 	$3,_end
	sf	$3,$3,$SP
	rotqbyi	$3,$3,12

        /* The BE Linux ABI passes the stack size in $2, or use
         * the default if $2 == 0.
         */
	rotqbyi	$4,$2,12
	ceqi	$5,$4,0
	selb	$3,$4,$3,$5
	fsmbi	$4,3840
	selb	$SP,$SP,$3,$4

	/* Call the _init function.
	 */
	brsl	$LR, _init
	
	/* Call the _fini function at exit time.
	 */
	ila	$3, _fini
	brsl	$LR, atexit

#ifdef _PROFILE
	/* Call monstartup if profiling is enabled
	 */
#ifdef _STD_MAIN
	ila     $3,0
#else
	ori     $3,$80,0
#endif
	brsl	$LR, __monstartup
#endif
	ori     $3,$80,0
	ori     $4,$81,0	
#ifndef _STD_MAIN
	ori	$5,$82,0
#endif

	/* Call the programs main.
	 */
	brsl	$LR, main
	
	/* Call exit.
	 */
	brsl	$LR, exit