mu/linux/factorial4.subx

89 lines
2.1 KiB
Plaintext
Raw Normal View History

## compute the factorial of 5, and return the result in the exit code
#
2019-10-20 01:49:40 +00:00
# Uses syntax sugar for:
# rm32 operands
# function calls
# control flow
#
# To run:
2021-03-30 01:47:52 +00:00
# $ ./translate_subx init.linux [01]*.subx factorial.subx -o factorial
2021-03-04 08:24:24 +00:00
# $ bootstrap/bootstrap run factorial
# Expected result:
# $ echo $?
# 120
#
# You can also run the automated test suite:
2021-03-04 08:24:24 +00:00
# $ bootstrap/bootstrap run factorial test
# Expected output:
# ........
# Every '.' indicates a passing test. Failing tests get a 'F'.
2020-10-14 20:42:03 +00:00
#
2021-03-30 01:47:52 +00:00
# Compare factorial3.subx
== code
2020-11-02 06:02:13 +00:00
factorial: # n: int -> _/eax: int
# . prologue
55/push-ebp
89/<- %ebp 4/r32/esp
# save registers
2020-03-14 08:06:27 +00:00
51/push-ecx
# if (n <= 1) return 1
81 7/subop/compare *(ebp+8) 1/imm32
{
7f/jump-if-> break/disp8
b8/copy-to-eax 1/imm32
2020-11-02 06:02:13 +00:00
eb/jump $factorial:end/disp8
}
2020-11-02 06:02:13 +00:00
# n > 1; return n * factorial(n-1)
8b/-> *(ebp+8) 1/r32/ecx
49/decrement-ecx
(factorial %ecx) # => eax
f7 4/subop/multiply-into-eax *(ebp+8)
# TODO: check for overflow
$factorial:end:
# restore registers
2020-03-14 08:06:27 +00:00
59/pop-to-ecx
# . epilogue
89/<- %esp 5/r32/ebp
5d/pop-to-ebp
c3/return
test-factorial:
(factorial 5)
(check-ints-equal %eax 0x78 "F - test-factorial")
c3/return
2020-10-14 20:42:03 +00:00
Entry: # run tests if necessary, compute `factorial(5)` if not
# . prologue
89/<- %ebp 4/r32/esp
# initialize heap (needed by tests elsewhere)
(new-segment *Heap-size Heap)
# if (argc <= 1) return factorial(5)
{
# if (argc > 1) break
81 7/subop/compare *ebp 1/imm32
7f/jump-if-> break/disp8
# ebx = factorial(5)
(factorial 5) # => eax
89/<- %ebx 0/r32/eax
2020-11-02 06:02:13 +00:00
eb/jump $main:end/disp8
2020-10-14 20:42:03 +00:00
}
2020-11-02 06:02:13 +00:00
# otherwise if first arg is "test", then return run_tests()
2020-10-14 20:42:03 +00:00
{
# if (!kernel-string-equal?(argv[1], "test")) break
(kernel-string-equal? *(ebp+8) "test") # => eax
3d/compare-eax-and 0/imm32/false
74/jump-if-= break/disp8
#
(run-tests)
2020-11-02 06:02:13 +00:00
# exit(*Num-test-failures)
2020-10-14 20:42:03 +00:00
8b/-> *Num-test-failures 3/r32/ebx
2020-11-02 06:02:13 +00:00
eb/jump $main:end/disp8
2020-10-14 20:42:03 +00:00
}
2020-11-02 06:02:13 +00:00
bb/copy-to-ebx 0/imm32
$main:end:
2020-10-14 20:42:03 +00:00
e8/call syscall_exit/disp32