mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +11:00
Removed skip leading zeroes, added skip first multiply
Now instead of skipping leading zeroes, the first digit is loaded directly into hl without first multiplying by 10. This means the first loop is skipped in the overhead, making the method 2-3 times faster overall, and is now faster for the more common fewer digit cases too. The number of bytes is exactly the same, and the inner loop is slightly faster too thanks to no longer needing to load a into c. To be more precise about the speed increase over the current code, for decimals of length 1 it'll be 3.18x faster, for decimals of length 2, 2.50x faster, for length 3, 2.31x faster, for length 4, 2.22x faster, and for length 5 and above, at least 2.03x faster. In terms of cycles, this is around 100+(132*length) cycles saved per decimal.
This commit is contained in:
parent
ac2d899e80
commit
67adc6fcfc
@ -17,29 +17,32 @@
|
|||||||
; same conditions as parseLiteral.
|
; same conditions as parseLiteral.
|
||||||
; Sets Z on success, unset on error.
|
; Sets Z on success, unset on error.
|
||||||
|
|
||||||
; 55 bytes, 32 cycles in first loop
|
; 55 bytes
|
||||||
; 90 cycles overhead + up to 69 cycles if length >= 5
|
; 107 cycles overhead + up to 45 cycles if length >= 5
|
||||||
; 140 cycles in loop
|
; 136 cycles in loop
|
||||||
|
; first digit is skipped in overhead
|
||||||
parseDecimal:
|
parseDecimal:
|
||||||
push hl
|
push hl
|
||||||
|
|
||||||
.skip: ; Skips leading zeroes
|
ld a, (hl)
|
||||||
ld a, (hl)
|
add a, 0xc6 ; converts '0'-'9' to 0-9
|
||||||
inc hl
|
sub 0xf6 ; carries if out of range
|
||||||
cp '0'
|
|
||||||
jr z, .skip
|
|
||||||
|
|
||||||
exx ; preserve bc, hl, de
|
exx ; preserve bc, hl, de
|
||||||
ld hl, 0
|
ld h, 0
|
||||||
ld b, 5 ; Carries can only occur for decimals >=5 in length
|
ld l, a ; load first digit in without multiplying
|
||||||
jr .start
|
ld b, 4 ; Carries can only occur for decimals >=5 in length
|
||||||
|
jr c, .error
|
||||||
|
|
||||||
.loop:
|
.loop:
|
||||||
ld c, a ; c holds current digit
|
|
||||||
exx ;swap hl back in to get address
|
|
||||||
ld a, (hl) ; a checks if following digit is null at end of loop
|
|
||||||
inc hl
|
|
||||||
exx
|
exx
|
||||||
|
inc hl
|
||||||
|
ld a, (hl)
|
||||||
|
exx
|
||||||
|
|
||||||
|
add a, 0xc6 ; converts '0'-'9' to 0-9
|
||||||
|
sub 0xf6 ; carries if out of range
|
||||||
|
jr c, .error
|
||||||
|
|
||||||
add hl, hl ; x2
|
add hl, hl ; x2
|
||||||
ld d, h
|
ld d, h
|
||||||
ld e, l ; de is x2
|
ld e, l ; de is x2
|
||||||
@ -47,16 +50,9 @@ parseDecimal:
|
|||||||
add hl, hl ; x8
|
add hl, hl ; x8
|
||||||
add hl, de ; x10
|
add hl, de ; x10
|
||||||
ld d, 0
|
ld d, 0
|
||||||
ld e, c
|
ld e, a
|
||||||
add hl, de
|
add hl, de
|
||||||
jr c, .error ; if hl was 0x1999, it may carry here
|
jr c, .error ; if hl was 0x1999, it may carry here
|
||||||
; This check could be taken outside the loop, but at the cost of 6 bytes
|
|
||||||
|
|
||||||
.start:
|
|
||||||
add a, 0xc6 ; converts '0'-'9' to 0-9
|
|
||||||
sub 0xf6 ; carries if out of range
|
|
||||||
jr c, .error
|
|
||||||
|
|
||||||
djnz .loop
|
djnz .loop
|
||||||
|
|
||||||
|
|
||||||
@ -71,8 +67,7 @@ parseDecimal:
|
|||||||
sub 0xd0 ; if a is null, set Z
|
sub 0xd0 ; if a is null, set Z
|
||||||
; a is checked for null before any errors
|
; a is checked for null before any errors
|
||||||
.end:
|
.end:
|
||||||
push hl
|
push hl \ pop ix
|
||||||
pop ix
|
|
||||||
exx ; restore original de and bc
|
exx ; restore original de and bc
|
||||||
pop hl
|
pop hl
|
||||||
ret
|
ret
|
||||||
|
Loading…
Reference in New Issue
Block a user