https://github.com/akkartik/mu/blob/master/apps/factorial2.subx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 == code
20
21 Entry:
22
23 89/<- %ebp 4/r32/esp
24
25
26
27
28 68/push Heap/imm32
29 ff 6/subop/push *Heap-size
30
31 e8/call new-segment/disp32
32
33 81 0/subop/add %esp 8/imm32
34
35
36
37 81 7/subop/compare *ebp 1/imm32
38 7e/jump-if-<= $run-main/disp8
39
40
41
42 68/push "test"/imm32
43 ff 6/subop/push *(ebp+8)
44
45 e8/call kernel-string-equal?/disp32
46
47 81 0/subop/add %esp 8/imm32
48
49 3d/compare-eax-and 0/imm32/false
50 74/jump-if-= $run-main/disp8
51
52 e8/call run-tests/disp32
53
54 8b/-> *Num-test-failures 3/r32/ebx
55 eb/jump $main:end/disp8
56 $run-main:
57
58
59
60 68/push 5/imm32
61
62 e8/call factorial/disp32
63
64 81 0/subop/add %esp 4/imm32
65
66 89/<- %ebx 0/r32/eax
67 $main:end:
68 e8/call syscall_exit/disp32
69
70 factorial:
71
72 55/push-ebp
73 89/<- %ebp 4/r32/esp
74 53/push-ebx
75
76 b8/copy-to-eax 1/imm32
77 81 7/subop/compare *(ebp+8) 1/imm32
78 7e/jump-if-<= $factorial:end/disp8
79
80 8b/-> *(ebp+8) 3/r32/ebx
81 4b/decrement-ebx
82
83
84 53/push-ebx
85
86 e8/call factorial/disp32
87
88 81 0/subop/add %esp 4/imm32
89
90 f7 4/subop/multiply-into-eax *(ebp+8)
91
92 $factorial:end:
93
94 5b/pop-to-ebx
95 89/<- %esp 5/r32/ebp
96 5d/pop-to-ebp
97 c3/return
98
99 test-factorial:
100
101
102 68/push 5/imm32
103
104 e8/call factorial/disp32
105
106 81 0/subop/add %esp 4/imm32
107
108
109 68/push "F - test-factorial"/imm32
110 68/push 0x78/imm32/expected-120
111 50/push-eax
112
113 e8/call check-ints-equal/disp32
114
115 81 0/subop/add %esp 0xc/imm32
116
117 c3/return