-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathff-i386-plan9.s
558 lines (469 loc) · 7.52 KB
/
ff-i386-plan9.s
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
;;;; ff kernel, i386 Plan 9 variant
;
; Register usage:
;
; TOS: eax
; SP: esp
; RP: ebp
; AP: esi
; W: edi
bits 32
HEAP_SIZE equ 10000000
SSTACK_SIZE equ 4096
RSTACK_SIZE equ 4096
org 0x1000
; a.out header:
db 0, 0, 1, 0xeb ; magic
;; these should be big-endian, but we change them later, anyway
dd 0 ; textsize XXX
dd 0 ; datesize XXX
dd 0 ; bsssize XXX
dd 0 ; size of symtable
dd 0 ; entry point
dd 0 ; sp/pc offset table size
dd 0 ; pc/ln table size
_start:
mov ebx, [v_dp + 4]
mov ebx, [ebx]
mov eax, ebx
add eax, 8
xor ecx, ecx
mov cl, [ebx + 4]
add eax, ecx
and eax, ~3
lea esi, [eax + 4]
mov [heaptop - 4], esp ; argc + argv
%macro NEXT 0
mov edi, [esi]
add esi, 4
mov ebx, [edi]
jmp ebx
%endm
NEXT
reset:
mov ebp, rstack
NEXT
clear:
mov esp, sstack_end
NEXT
colon:
mov [ebp], esi
add ebp, 4
lea esi, [edi + 4]
NEXT
dodoes: ; ( -- a )
mov [ebp], esi
add ebp, 4
mov esi, [edi + 4]
push eax
lea eax, [edi + 8]
NEXT
jump: ; ( -- )
mov esi, [esi]
NEXT
cjump: ; ( f -- )
mov ebx, [esi]
add esi, 4
test eax, eax
jnz .l1
mov esi, ebx
.l1:
pop eax
NEXT
fetch: ; ( a -- n )
mov eax, [eax]
NEXT
store: ; ( n a -- )
pop dword [eax]
pop eax
NEXT
cfetch: ; ( a -- c )
xor ebx, ebx
mov bl, [eax]
mov eax, ebx
NEXT
cstore: ; ( c a -- )
pop ebx
mov [eax], bl
pop eax
NEXT
terminate: ; ( n -- )
xor ebx, ebx
test eax, eax
jz .l1
mov ebx, failtext
.l1:
push ebx
sub esp, 4 ; dummy retaddr
mov eax, 8 ; EXITS
int 64
failtext:
db 'error', 0
fsopen: ; ( cstr flags mode -- fd )
pop ebx ; flags
pop ecx ; name
push eax
mov eax, 14 ; OPEN
test ebx, 512 ; O_CREAT?
jz .l1
mov eax, 22 ; CREATE
.l1:
and ebx, 0xf ; retain only OREAD, OWRITE, ORDWR
push ebx
push ecx
sub esp, 4 ; dummy retaddr
int 64
add esp, 16
NEXT
nop
nop
nop
nop
nop
fsclose: ; ( fd -- n )
push eax ; fd
sub esp, 4 ; dummy retaddr
mov eax, 4 ; CLOSE
int 64
add esp, 8
NEXT
nop
nop
nop
nop
nop
fsread: ; ( a n fd -- n2 )
pop ecx ; size
pop edx ; buf
mov ebx, -1 ; -1LL (seek pos)
push ebx
push ebx
push ecx
push edx
push eax
sub esp, 4 ; dummy retaddr
mov eax, 50 ; PREAD
int 64
add esp, 24
NEXT
nop
nop
nop
nop
nop
nop
nop
fswrite: ; ( a n fd -- n2 )
pop ecx ; size
pop edx ; buf
mov ebx, -1 ; -1LL (seek pos)
push ebx
push ebx
push ecx
push edx
push eax
sub esp, 4 ; dummy retaddr
mov eax, 51 ; PWRITE
int 64
add esp, 24
NEXT
nop
nop
nop
nop
nop
nop
nop
fsseek: ; ( pos fd -- n )
pop ebx ; offset
xor edx, edx ; type 0
sub esp, 8 ; space for vlong result
mov ecx, esp
push edx
push edx ; high part of position (0)
push ebx ; low part
push eax
push ecx ; result ptr
sub esp, 4 ; dummy retaddr
mov eax, 39 ; SEEK
int 64
add esp, 32
NEXT
mmap: ; ( a1 -- a2 )
mov eax , -1 ; unimplemented
NEXT
variable: ; ( -- a )
push eax
lea eax, [edi + 4]
NEXT
constant: ; ( -- n )
push eax
mov eax, [edi + 4]
NEXT
literal: ; ( -- n )
push eax
mov eax, [esi]
add esi, 4
NEXT
sliteral: ; ( -- a n )
push eax
xor eax, eax
mov al, [esi]
inc esi
push esi
add esi, eax
add esi, 3
and esi, ~3
NEXT
exit:
sub ebp, 4
mov esi, [ebp]
NEXT
doinit: ; ( hi lo -- )
mov [ebp], eax
pop eax
mov [ebp + 4], eax
pop eax
add ebp, 8
NEXT
doloop:
inc dword [ebp - 8]
doloop1:
mov ebx, [ebp - 8]
cmp ebx, [ebp - 4]
jge .l1
mov esi, [esi]
NEXT
.l1:
sub ebp, 8
add esi, 4
NEXT
doploop: ; ( n -- )
add [ebp - 8], eax
pop eax
jmp doloop1
rfetch: ; ( -- n )
push eax
mov eax, [ebp - 4]
NEXT
rpush: ; ( n -- )
mov [ebp], eax
pop eax
add ebp, 4
NEXT
rpop: ; ( -- n )
push eax
sub ebp, 4
mov eax, [ebp]
NEXT
i: ; ( -- n )
push eax
mov eax, [ebp - 8]
NEXT
j: ; ( -- n )
push eax
mov eax, [ebp - 16]
NEXT
plus: ; ( n1 n2 -- n )
pop ebx
add eax, ebx
NEXT
minus: ; ( n1 n2 -- n )
pop ebx
sub ebx, eax
mov eax, ebx
NEXT
multiply: ; ( n1 n2 -- n )
pop ebx
imul ebx
NEXT
slashmod: ; ( n1 n2 -- n3 n4 )
mov ebx, eax
mov eax, [esp]
cdq
idiv ebx
mov [esp], edx
NEXT
uslashmod: ; ( u1 u2 -- u3 u4 )
mov ebx, eax
mov eax, [esp]
xor edx, edx
div ebx
mov [esp], edx
NEXT
binand: ; ( n1 n2 -- n )
and eax, [esp]
add esp, 4
NEXT
binor: ; ( n1 n2 -- n )
or eax, [esp]
add esp, 4
NEXT
binxor: ; ( n1 n2 -- n )
xor eax, [esp]
add esp, 4
NEXT
xswap: ; ( x y -- y x )
xchg [esp], eax
NEXT
drop: ; ( x -- )
pop eax
NEXT
dup: ; ( x -- x x )
push eax
NEXT
over: ; ( x y -- x y x )
push eax
mov eax, [esp + 4]
NEXT
equal: ; ( x y -- f )
pop ebx
cmp ebx, eax
je true
xor eax, eax
NEXT
true:
mov eax, -1
NEXT
greater: ; ( x y -- f )
pop ebx
cmp ebx, eax
jg true
xor eax, eax
NEXT
less: ; ( x y -- f )
pop ebx
cmp ebx, eax
jl true
xor eax, eax
NEXT
stackptr: ; ( -- a ) does not include TOS!
push eax
mov eax, esp
NEXT
lshift: ; ( n1 n2 -- n )
mov ecx, eax
pop eax
shl eax, cl
NEXT
rshift: ; ( n1 n2 -- n )
mov ecx, eax
pop eax
shr eax, cl
NEXT
rshifta: ; ( n1 n2 -- n )
mov ecx, eax
pop eax
sar eax, cl
NEXT
execute: ; ( ... a -- ... )
mov edi, eax
pop eax
mov ebx, [edi]
jmp ebx
deferred:
mov edi, [edi + 4]
mov ebx, [edi]
jmp ebx
unloop:
sub ebp, 8
NEXT
cmove: ; ( a1 a2 n -- )
mov ecx, eax
pop edi
mov ebx, esi
pop esi
rep movsb
mov esi, ebx
pop eax
NEXT
cmoveb: ; ( a1 a2 n -- )
mov ecx, eax
pop edi
dec eax
add edi, eax
mov ebx, esi
pop esi
add esi, eax
std
rep movsb
cld
mov esi, ebx
pop eax
NEXT
cas: ; ( a old new -- f )
mov ecx, eax ; new
pop eax ; old
pop ebx ; addr
lock cmpxchg [ebx], ecx
je true
xor eax, eax
pause
NEXT
align 4
_end:
;;; dictionary
%assign LAST 0
%macro MENTRY 3
%%link: dd LAST
%define LAST %%link
db %3
db %1
align 4
m_%2:
dd %2
%endm
%macro CENTRY 3
%%link: dd LAST
%define LAST %%link
db %3
db %1
align 4
%2:
dd colon
%endm
%macro CIENTRY 3
%%link: dd LAST
%define LAST %%link
db %3 | 0x80
db %1
align 4
%2:
dd colon
%endm
%macro MVENTRY 4
%%link: dd LAST
%define LAST %%link
db %4
db %1
align 4
v_%2:
dd constant
dd %3
%endm
%macro VENTRY 3
%%link: dd LAST
%define LAST %%link
db %3
db %1
align 4
%2:
dd variable
dd 0
%endm
; fill page (nasm's ORG can't be used multiple times)
times 0x1000 - ($ - $$) db 0
%include "primitives.s"
%include "words-nasm.s"
align 4
htop: dd heap
dtop: dd LAST
heapend: dd heaptop
align 4
tibuffer: resb 1024
wordbuffer: resb 256
heap: resb HEAP_SIZE
heaptop:
rstack: resb RSTACK_SIZE
sstack: resb SSTACK_SIZE
sstack_end: