-
-
Notifications
You must be signed in to change notification settings - Fork 61
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
Open
calc84maniac
wants to merge
1
commit into
master
Choose a base branch
from
cttz-libcalls
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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 | ||||||||||
Comment on lines
+37
to
+38
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Matching
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, I always forget to think about compression alongside other size optimizations. |
||||||||||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This unfortunately breaks the optimization of the first trailing one functions relying on this to produce an output of 8 for an input of 0, but it might be worth it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this change would also hurt for maybe eventually implementing
std::countr_zero
, wouldn't it...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, that assumption is also made by the compiler (this libcall implements CTTZ which is output by
__builtin_ctz
intrinsics on the Z80 target and not CTTZ_ZERO_UNDEF). Good optimization idea though, I'll have to think whether I can do something similar.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's actually already been implemented in the toolchain recently, and makes use of the Z80 intrinsic behavior I mentioned.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It occurs to me that, except for that pesky 0 case, you could potentially rework this whole routine to be based on branches after pairs of left shifts. I think whether that would be faster or not depends on the input distribution, but it would certainly be smaller.