aboutsummaryrefslogtreecommitdiffstats
path: root/src/translate/grt/config/ppc.S
blob: bedd48ab49a5be1df141f8e830e1c3c3acf1ba0d (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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/*  GRT stack implementation for ppc.
    Copyright (C) 2005 - 2014 Tristan Gingold.

    GHDL 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 2, or (at your option) any later
    version.

    GHDL 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 GCC; see the file COPYING.  If not, write to the Free
    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    02111-1307, USA.

    As a special exception, if other files instantiate generics from this
    unit, or you link this unit with other files to produce an executable,
    this unit does not by itself cause the resulting executable to be
    covered by the GNU General Public License. This exception does not
    however invalidate any other reasons why the executable file might be
    covered by the GNU Public License.
*/
	.file		"ppc.S"
	
	.section	".text"

#define OFF 240

#define GREG(x) x
#define FREG(x) x
	
#define r0 GREG(0)
#define r1 GREG(1)
#define r2 GREG(2)
#define r3 GREG(3)
#define r4 GREG(4)
#define r5 GREG(5)
#define r6 GREG(6)
#define r7 GREG(7)
#define r8 GREG(8)
#define r9 GREG(9)
#define r10 GREG(10)
#define r11 GREG(11)
#define r12 GREG(12)
#define r13 GREG(13)
#define r14 GREG(14)
#define r15 GREG(15)
#define r16 GREG(16)
#define r17 GREG(17)
#define r18 GREG(18)
#define r19 GREG(19)
#define r20 GREG(20)
#define r21 GREG(21)
#define r22 GREG(22)
#define r23 GREG(23)
#define r24 GREG(24)
#define r25 GREG(25)
#define r26 GREG(26)
#define r27 GREG(27)
#define r28 GREG(28)
#define r29 GREG(29)
#define r30 GREG(30)
#define r31 GREG(31)

#define f0 FREG(0)
#define f1 FREG(1)
#define f2 FREG(2)
#define f3 FREG(3)
#define f4 FREG(4)
#define f5 FREG(5)
#define f6 FREG(6)
#define f7 FREG(7)
#define f8 FREG(8)
#define f9 FREG(9)
#define f10 FREG(10)
#define f11 FREG(11)
#define f12 FREG(12)
#define f13 FREG(13)
#define f14 FREG(14)
#define f15 FREG(15)
#define f16 FREG(16)
#define f17 FREG(17)
#define f18 FREG(18)
#define f19 FREG(19)
#define f20 FREG(20)
#define f21 FREG(21)
#define f22 FREG(22)
#define f23 FREG(23)
#define f24 FREG(24)
#define f25 FREG(25)
#define f26 FREG(26)
#define f27 FREG(27)
#define f28 FREG(28)
#define f29 FREG(29)
#define f30 FREG(30)
#define f31 FREG(31)

	/* Stack structure is:
           +4 :	cur_length   \  Stack
	   +0 :	cur_sp       /  Context
	   -4 :	arg
	   -8 :	func
	
	   -12:	pad
	   -16: pad
           -20: LR save word
	   -24:	Back chain
	
	   -28: fp/gp saved registers. 
	   -4 :	return address
	   -8 :	process function to be executed
           -12:	function argument
	   ...
           -72:	%sp
	*/
	
	/* Function called to loop on the process.  */	
	.align 4
	.type	grt_stack_loop,@function
grt_stack_loop:
	/* Get function.  */
	lwz	r0,16(r1)
	/* Get argument.  */
	lwz	r3,20(r1)
	mtlr	r0
	blrl
	b	grt_stack_loop
	.size	grt_stack_loop, . - grt_stack_loop

	/* function Stack_Create (Func : Address; Arg : Address)
	                         return Stack_Type;  */
	.align	4
	.global grt_stack_create
	.type	 grt_stack_create,@function
grt_stack_create:
	/* Standard prologue.  */
	stwu	r1,-32(r1)
	mflr	r0
	stw	r0,36(r1)

	/* Save arguments.  */
	stw	r3,24(r1)
	stw	r4,28(r1)
	
	/* Allocate the stack, and exit in case of failure  */
	bl	grt_stack_allocate
	cmpwi	0,r3,0
	beq-	.Ldone

	/* Note: r3 contains the address of the stack_context.  This is
	   also the top of the stack.  */
				
	/* Prepare stack.  */
	/* Align the stack.  */
	addi	r5,r3,-24

	/* Save the parameters.  */
	lwz	r6,24(r1)
	stw	r6,16(r5)
	lwz	r7,28(r1)
	stw	r7,20(r5)
	
	/* The return function.  */
	lis	r4,grt_stack_loop@ha
	la	r4,grt_stack_loop@l(r4)
	stw	r4,4(r5)
	/* Back-Chain.  */
	addi	r4,r1,32
	stw	r4,0(r5)

	/* Save register.
	   They should be considered as garbage.  */
	addi	r4,r5,-OFF
	
	stfd	f31,(OFF - 8)(r4)
	stfd	f30,(OFF - 16)(r4)
	stfd	f29,(OFF - 24)(r4)
	stfd	f28,(OFF - 32)(r4)
	stfd	f27,(OFF - 40)(r4)
	stfd	f26,(OFF - 48)(r4)
	stfd	f25,(OFF - 56)(r4)
	stfd	f24,(OFF - 64)(r4)
	stfd	f23,(OFF - 72)(r4)
	stfd	f22,(OFF - 80)(r4)
	stfd	f21,(OFF - 88)(r4)
	stfd	f20,(OFF - 96)(r4)
	stfd	f19,(OFF - 104)(r4)
	stfd	f18,(OFF - 112)(r4)
	stfd	f17,(OFF - 120)(r4)
	stfd	f16,(OFF - 128)(r4)
	stfd	f15,(OFF - 136)(r4)
	stfd	f14,(OFF - 144)(r4)
	stw	r31,(OFF - 148)(r4)
	stw	r30,(OFF - 152)(r4)
	stw	r29,(OFF - 156)(r4)
	stw	r28,(OFF - 160)(r4)
	stw	r27,(OFF - 164)(r4)
	stw	r26,(OFF - 168)(r4)
	stw	r25,(OFF - 172)(r4)
	stw	r24,(OFF - 176)(r4)
	stw	r23,(OFF - 180)(r4)
	stw	r22,(OFF - 184)(r4)
	stw	r21,(OFF - 188)(r4)
	stw	r20,(OFF - 192)(r4)
	stw	r19,(OFF - 196)(r4)
	stw	r18,(OFF - 200)(r4)
	stw	r17,(OFF - 204)(r4)
	stw	r16,(OFF - 208)(r4)
	stw	r15,(OFF - 212)(r4)
	stw	r14,(OFF - 216)(r4)
	mfcr	r0
	stw	r0, (OFF - 220)(r4)

	/* Save stack pointer.  */
	stw	r4, 0(r3)

.Ldone:
	lwz	r0,36(r1)
	mtlr	r0
	addi	r1,r1,32
	blr
	.size	 grt_stack_create,. - grt_stack_create


	.align 4
	.global grt_stack_switch
	/* Arguments:	TO, FROM.
	   Both are pointers to a stack_context.  */
	.type	 grt_stack_switch,@function
grt_stack_switch:
	/* Standard prologue, save return address.  */
	stwu	r1,(-OFF)(r1)
	mflr	r0
	stw	r0,(OFF + 4)(r1)

	/* Save r14-r31, f14-f31, CR
	   This is 18 words + 18 double words, ie 216 bytes.  */
	/* Maybe use the savefpr function ? */
	stfd	f31,(OFF - 8)(r1)
	stfd	f30,(OFF - 16)(r1)
	stfd	f29,(OFF - 24)(r1)
	stfd	f28,(OFF - 32)(r1)
	stfd	f27,(OFF - 40)(r1)
	stfd	f26,(OFF - 48)(r1)
	stfd	f25,(OFF - 56)(r1)
	stfd	f24,(OFF - 64)(r1)
	stfd	f23,(OFF - 72)(r1)
	stfd	f22,(OFF - 80)(r1)
	stfd	f21,(OFF - 88)(r1)
	stfd	f20,(OFF - 96)(r1)
	stfd	f19,(OFF - 104)(r1)
	stfd	f18,(OFF - 112)(r1)
	stfd	f17,(OFF - 120)(r1)
	stfd	f16,(OFF - 128)(r1)
	stfd	f15,(OFF - 136)(r1)
	stfd	f14,(OFF - 144)(r1)
	stw	r31,(OFF - 148)(r1)
	stw	r30,(OFF - 152)(r1)
	stw	r29,(OFF - 156)(r1)
	stw	r28,(OFF - 160)(r1)
	stw	r27,(OFF - 164)(r1)
	stw	r26,(OFF - 168)(r1)
	stw	r25,(OFF - 172)(r1)
	stw	r24,(OFF - 176)(r1)
	stw	r23,(OFF - 180)(r1)
	stw	r22,(OFF - 184)(r1)
	stw	r21,(OFF - 188)(r1)
	stw	r20,(OFF - 192)(r1)
	stw	r19,(OFF - 196)(r1)
	stw	r18,(OFF - 200)(r1)
	stw	r17,(OFF - 204)(r1)
	stw	r16,(OFF - 208)(r1)
	stw	r15,(OFF - 212)(r1)
	stw	r14,(OFF - 216)(r1)
	mfcr	r0
	stw	r0, (OFF - 220)(r1)
	
	/* Save stack pointer.  */
	stw	r1, 0(r4)

	/* Load stack pointer.  */
	lwz	r1, 0(r3)
			

	lfd	f31,(OFF - 8)(r1)
	lfd	f30,(OFF - 16)(r1)
	lfd	f29,(OFF - 24)(r1)
	lfd	f28,(OFF - 32)(r1)
	lfd	f27,(OFF - 40)(r1)
	lfd	f26,(OFF - 48)(r1)
	lfd	f25,(OFF - 56)(r1)
	lfd	f24,(OFF - 64)(r1)
	lfd	f23,(OFF - 72)(r1)
	lfd	f22,(OFF - 80)(r1)
	lfd	f21,(OFF - 88)(r1)
	lfd	f20,(OFF - 96)(r1)
	lfd	f19,(OFF - 104)(r1)
	lfd	f18,(OFF - 112)(r1)
	lfd	f17,(OFF - 120)(r1)
	lfd	f16,(OFF - 128)(r1)
	lfd	f15,(OFF - 136)(r1)
	lfd	f14,(OFF - 144)(r1)
	lwz	r31,(OFF - 148)(r1)
	lwz	r30,(OFF - 152)(r1)
	lwz	r29,(OFF - 156)(r1)
	lwz	r28,(OFF - 160)(r1)
	lwz	r27,(OFF - 164)(r1)
	lwz	r26,(OFF - 168)(r1)
	lwz	r25,(OFF - 172)(r1)
	lwz	r24,(OFF - 176)(r1)
	lwz	r23,(OFF - 180)(r1)
	lwz	r22,(OFF - 184)(r1)
	lwz	r21,(OFF - 188)(r1)
	lwz	r20,(OFF - 192)(r1)
	lwz	r19,(OFF - 196)(r1)
	lwz	r18,(OFF - 200)(r1)
	lwz	r17,(OFF - 204)(r1)
	lwz	r16,(OFF - 208)(r1)
	lwz	r15,(OFF - 212)(r1)
	lwz	r14,(OFF - 216)(r1)
	lwz	r0, (OFF - 220)(r1)
	mtcr	r0

	lwz	r0,(OFF + 4)(r1)
	mtlr	r0
	addi	r1,r1,OFF
	blr
	.size	 grt_stack_switch, . - grt_stack_switch

	
	.ident	"Written by T.Gingold"