Browse Source
I've wrestled for a long time with how to support integer division with its hard-coded registers. The answer's always been staring me in the face: just turn it into a function! We already expect function outputs to go to hard-coded registers.main
4 changed files with 23 additions and 103 deletions
@ -0,0 +1,17 @@
|
||||
== code |
||||
|
||||
integer-divide: # a: int, b: int -> quotient/eax: int, remainder/edx: int |
||||
# . prologue |
||||
55/push-ebp |
||||
89/<- %ebp 4/r32/esp |
||||
# eax = a |
||||
8b/-> *(ebp+8) 0/r32/eax |
||||
# edx = all 0s or all 1s |
||||
99/sign-extend-eax-into-edx |
||||
# quotient, remainder = divide eax by b |
||||
f7 7/subop/divide-eax-edx-by *(ebp+0xc) |
||||
$integer-divide:end: |
||||
# . epilogue |
||||
89/<- %esp 5/r32/ebp |
||||
5d/pop-to-ebp |
||||
c3/return |
Loading…
Reference in new issue