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
|
/* ==== syscall.S ============================================================
* Copyright (c) 1993 by John F. Carr, jfc@mit.edu
*
* 1.00 93/09/xx proven
* -Started coding this file.
*/
#ifndef lint
static const char rcsid[] = "$Id$";
#endif
/* DO NOT USE COLONS IN THIS FILE, GCC CAN'T HANDLE THEM */
/* #include <copyright.h> */
.globl .oVncs
.text
.align 2
/* ==========================================================================
* machdep_sys_write()
*/
.globl _machdep_sys_write
.globl _.machdep_sys_write
.text 2
_machdep_sys_write:
.long _.machdep_sys_write
.text
_.machdep_sys_write:
lcs r0,0(r3)
svc 4(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_read()
*/
.globl _machdep_sys_read
.globl _.machdep_sys_read
.text 2
_machdep_sys_read:
.long _.machdep_sys_read
.text
_.machdep_sys_read:
lcs r0,0(r3)
svc 3(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_open()
*/
.globl _machdep_sys_open
.globl _.machdep_sys_open
.text 2
_machdep_sys_open:
.long _.machdep_sys_open
.text
_.machdep_sys_open:
lcs r0,0(r2)
svc 5(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_bind()
*/
.globl _machdep_sys_bind
.globl _.machdep_sys_bind
.text 2
_machdep_sys_bind:
.long _.machdep_sys_bind
.text
_.machdep_sys_bind:
ls r0,0(r3)
svc 104(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_socket()
*/
.globl _machdep_sys_socket
.globl _.machdep_sys_socket
.text 2
_machdep_sys_socket:
.long _.machdep_sys_socket
.text
.align 2
_.machdep_sys_socket:
svc 97(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_close()
*/
.globl _machdep_sys_close
.globl _.machdep_sys_close
.text 2
_machdep_sys_close:
.long _.machdep_sys_close
.text
.align 2
_.machdep_sys_close:
svc 6(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_connect()
*/
.globl _machdep_sys_connect
.globl _.machdep_sys_connect
.text 2
_machdep_sys_connect:
.long _.machdep_sys_connect
.text
_.machdep_sys_connect:
lcs r0,0(r3)
svc 98(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_accept()
*/
.globl _machdep_sys_accept
.globl _.machdep_sys_accept
.text 2
_machdep_sys_accept:
.long _.machdep_sys_accept
.text
_.machdep_sys_accept:
lcs r0,0(r3)
svc 99(r0)
bntbr r15
store r2,_errno,r5
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_listen()
*/
.globl _machdep_sys_listen
.globl _.machdep_sys_listen
.text 2
.align 2
_machdep_sys_listen:
.long _.machdep_sys_listen
.text
.align 2
_.machdep_sys_listen:
svc 106(r0)
bntbr r15
brx r15
twoc r2,r2
/* ==========================================================================
* machdep_sys_fcntl()
*/
.globl _.machdep_sys_fcntl
.globl _machdep_sys_fcntl
.text 2
_machdep_sys_fcntl:
.long _.machdep_sys_fcntl
.text
_.machdep_sys_fcntl:
lcs r0,0(sp)
svc 92(r0)
bntbr r15
store r2,_errno,r5
brx r15
cal r2,-1(r0)
/* ==========================================================================
* machdep_sys_getpeername()
*/
.globl _machdep_sys_getpeername
.globl _.machdep_sys_getpeername
.text 2
_machdep_sys_getpeername:
.long _.machdep_sys_getpeername
.text
_.machdep_sys_getpeername:
ls r0,0(sp)
svc 141(r0)
bntbr r15
brx r15
twoc r2,r2
/* ==========================================================================
* machdep_sys_getsockopt()
*/
.globl _machdep_sys_getsockopt
.globl _.machdep_sys_getsockopt
.text 2
_machdep_sys_getsockopt:
.long _.machdep_sys_getsockopt
.text
_.machdep_sys_getsockopt:
ls r0,0(sp)
svc 118(r0)
bntbr r15
brx r15
twoc r2,r2
/* ==========================================================================
* machdep_sys_select()
*/
.globl _.machdep_sys_select
.globl _machdep_sys_select
.text 2
_machdep_sys_select:
.long _.machdep_sys_select
.text
_.machdep_sys_select:
svc 93(r0)
bntbr r15
brx r15
twoc r2,r2
/* ==========================================================================
* __tsh()
*/
.globl _._tsh
.globl __tsh
.text 2
__tsh: .long _._tsh
.text
.align 2
_._tsh:
brx r15
tsh r2,0(r2)
/* ==========================================================================
* __pthread_save()
*/
.globl __pthread_save
.globl _._pthread_save
.text 2
__pthread_save:
.long _._pthread_save
.text
.align 2
_._pthread_save:
ail r5,r4,0
jne 1f
mr r4,sp
lis r5,0
stm r4,0(r2)
brx r15
lis r2,0
1:
mr r0,r15 # save old return address
ls r15,0(r4) # new return address
mr r5,r4 # r0 to restore
mr r4,r3 # sp to restore
stm r4,0(r2)
brx r0
lis r2,0
/* ==========================================================================
* __pthread_restore()
*/
.globl __pthread_restore
.globl _._pthread_restore
.text 2
__pthread_restore:
.long _._pthread_restore
.text
.align 2
_._pthread_restore:
lm r4,0(r2)
mr r0,r5
lis r2,1
brx r15
mr sp,r4
|