1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 06:38:40 +11:00

Optimised parsing functions and other minor optimisations

UnsetZ has been reduced by a byte, and between 17 and 28 cycles saved based on branching. Since branching is based on a being 0, it shouldn't have to branch very often and so be 28 cycles saved most the time. Including the initial call, the old version was 60 cycles, so this should be nearly twice as fast. 
fmtHex has been reduced by 4 bytes and between 3 and 8 cycles based on branching.
fmtHexPair had a redundant "and" removed, saving two bytes and seven cycles.
parseHex has been reduced by 7 bytes. Due to so much branching, it's hard to say if it's faster, but it should be since it's fewer operations and now conditional returns are used which are a cycle faster than conditional jumps. I think there's more to improve here, but I haven't come up with anything yet.
This commit is contained in:
Clanmaster21 2019-10-13 13:10:51 +01:00 committed by GitHub
parent 8926c33ab1
commit 6bc516b2e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 30 deletions

View File

@ -126,14 +126,16 @@ callIY:
jp (iy) jp (iy)
; Ensures that Z is unset (more complicated than it sounds...) ; Ensures that Z is unset (more complicated than it sounds...)
; There are often better inline alternatives, either replacing rets with
; appropriate jmps, or if an 8 bit register is known to not be 0, an inc
; then a dec. If a is nonzero, 'or a' is optimal.
unsetZ: unsetZ:
push bc or a ;if a nonzero, Z reset
ld b, a ret nz
inc b cp 1 ;if a is zero, Z reset
cp b
pop bc
ret ret
; *** STRINGS *** ; *** STRINGS ***
; Fill B bytes at (HL) with A ; Fill B bytes at (HL) with A
@ -179,15 +181,19 @@ findchar:
pop bc pop bc
ret ret
; Format the lower nibble of A into a hex char and stores the result in A. ; Format the lower nibble of A into a hex char and stores the result in A.
; daa does the following operation if we were working in a high level language:
; a += (2*N-1)*(0x60*(a >= 0xa0) + 0x06*((a & 0x0f) >= 0x0a))
; N is the Negative flag. The C and H flags are also taken into account, but we
; clear both so this is a good enough description for our purposes.
fmtHex: fmtHex:
and 0xf ; we need to make the upper nibble a known value
cp 10 ; also clears the N, C and H flags for daa
jr nc, .alpha ; if >= 10, we have alpha or 0xf0
add a, '0' daa ; now a =0x50 + the original value + 0x06 if >= 0xfa
ret add a, 0xa0 ; cause a carry for the values that were >=0x0a
.alpha: adc a, 0x40
add a, 'A'-10
ret ret
; Formats value in A into a string hex pair. Stores it in the memory location ; Formats value in A into a string hex pair. Stores it in the memory location
@ -204,7 +210,6 @@ fmtHexPair:
dec hl dec hl
pop af pop af
push af push af
and 0xf0
rra \ rra \ rra \ rra rra \ rra \ rra \ rra
call fmtHex call fmtHex
ld (hl), a ld (hl), a
@ -212,6 +217,7 @@ fmtHexPair:
pop af pop af
ret ret
; Compares strings pointed to by HL and DE up to A count of characters. If ; Compares strings pointed to by HL and DE up to A count of characters. If
; equal, Z is set. If not equal, Z is reset. ; equal, Z is set. If not equal, Z is reset.
strncmp: strncmp:

View File

@ -11,26 +11,21 @@
; On success, the carry flag is reset. On error, it is set. ; On success, the carry flag is reset. On error, it is set.
parseHex: parseHex:
; First, let's see if we have an easy 0-9 case ; First, let's see if we have an easy 0-9 case
cp '0' sub '0'
jr c, .error ; if < '0', we have a problem ret c
cp '9'+1 cp 10
jr nc, .alpha ; if >= '9'+1, we might have alpha ccf
; We are in the 0-9 range ret nc
sub '0' ; C is clear
ret
.alpha: .alpha:
call upcase and 0xdf ; converts uppercase to lowercase
cp 'A' sub 0x11 ; C if <'A'
jr c, .error ; if < 'A', we have a problem ret c
cp 'F'+1 cp 6 ; not C if >'F'
jr nc, .error ; if >= 'F', we have a problem ccf
ret c
; We have alpha. ; We have alpha.
sub 'A'-10 ; C is clear add a, 10 ; C is clear
ret
.error:
scf
ret ret
; Parses 2 characters of the string pointed to by HL and returns the numerical ; Parses 2 characters of the string pointed to by HL and returns the numerical