-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Branchless buffer refills for vector decoding
This reduces the number instructions emitted by nearly half when we check if there is enough data to blindly refill the lookahead. The best part, we don't even need to use the unchecked API to blindly refill -- somehow the compiler can figured this out when we ensure there is at least 16 bytes left unbuffered. Crazy.
- Loading branch information
1 parent
dbaa174
commit a938ffc
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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