-
-
Notifications
You must be signed in to change notification settings - Fork 62
Add count-trailing-zero libcalls #597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
assume adl=1 | ||
|
||
section .text | ||
public __bcttz | ||
__bcttz: | ||
tst a, 0Fh | ||
jr z, .high4 | ||
tst a, 3 | ||
jr z, .high6 | ||
cpl | ||
and a, 1 | ||
ret | ||
.high6: | ||
dec a | ||
and a, 6 | ||
ret po | ||
rrca | ||
ret | ||
.high4: | ||
tst a, 030h | ||
jr z, .high2 | ||
dec a | ||
and a, 014h | ||
ret po | ||
ld a, 5 | ||
ret | ||
.high2: | ||
add a, a | ||
sbc a, -8 | ||
ret p | ||
ld a, 6 | ||
ret | ||
|
||
section .text | ||
public __scttz | ||
__scttz: | ||
ld a, l | ||
or a, a | ||
runer112 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
jr nz, __bcttz | ||
ld a, h | ||
require __scttz.hijack | ||
|
||
section .text | ||
private __scttz.hijack | ||
__scttz.hijack: | ||
call __bcttz | ||
add a, 8 | ||
ret | ||
|
||
section .text | ||
public __icttz | ||
__icttz: | ||
xor a, a | ||
require __icttz.hijack | ||
|
||
section .text | ||
private __icttz.hijack | ||
__icttz.hijack: | ||
or a, l | ||
jr nz, __bcttz | ||
or a, h | ||
jr nz, __scttz.hijack | ||
dec sp | ||
push hl | ||
inc sp | ||
pop af | ||
call __bcttz | ||
add a, 16 | ||
ret | ||
|
||
section .text | ||
public __lcttz | ||
__lcttz: | ||
add hl, de | ||
xor a, a | ||
sbc hl, de | ||
jr nz, __icttz.hijack | ||
ld a, e | ||
call __bcttz | ||
add a, 24 | ||
ret | ||
|
||
section .text | ||
public __llcttz | ||
__llcttz: | ||
add hl, de | ||
xor a, a | ||
sbc hl, de | ||
jr nz, __icttz.hijack | ||
ex de, hl | ||
sbc hl, de | ||
jr nz, __i48cttz.hijack | ||
or a, c | ||
jr z, .high | ||
call __bcttz | ||
add a, 48 | ||
ret | ||
.high: | ||
ld a, b | ||
call __bcttz | ||
add a, 56 | ||
ret | ||
|
||
section .text | ||
public __i48cttz | ||
__i48cttz: | ||
add hl, de | ||
xor a, a | ||
sbc hl, de | ||
jr nz, __icttz.hijack | ||
ex de, hl | ||
require __i48cttz.hijack | ||
|
||
section .text | ||
private __i48cttz.hijack | ||
__i48cttz.hijack: | ||
call __icttz.hijack | ||
ex de, hl | ||
add a, 24 | ||
ret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.