-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor some
char
, u8
ascii functions to be branchless
Decompose singular `matches!` with or-patterns to individual `matches!` statements to enable branchless code output. The following functions were changed: - `is_ascii_alphanumeric` - `is_ascii_hexdigit` - `is_ascii_punctuation` Add codegen tests Co-authored-by: George Bateman <george.bateman16@gmail.com> Co-authored-by: scottmcm <scottmcm@users.noreply.github.com>
- Loading branch information
1 parent
8396efe
commit 465ffc9
Showing
3 changed files
with
59 additions
and
6 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Checks that these functions are branchless. | ||
// | ||
// compile-flags: -O | ||
|
||
#![crate_type = "lib"] | ||
|
||
// CHECK-LABEL: @is_ascii_alphanumeric_char | ||
#[no_mangle] | ||
pub fn is_ascii_alphanumeric_char(x: char) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_alphanumeric() | ||
} | ||
|
||
// CHECK-LABEL: @is_ascii_alphanumeric_u8 | ||
#[no_mangle] | ||
pub fn is_ascii_alphanumeric_u8(x: u8) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_alphanumeric() | ||
} | ||
|
||
// CHECK-LABEL: @is_ascii_hexdigit_char | ||
#[no_mangle] | ||
pub fn is_ascii_hexdigit_char(x: char) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_hexdigit() | ||
} | ||
|
||
// CHECK-LABEL: @is_ascii_hexdigit_u8 | ||
#[no_mangle] | ||
pub fn is_ascii_hexdigit_u8(x: u8) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_hexdigit() | ||
} | ||
|
||
// CHECK-LABEL: @is_ascii_punctuation_char | ||
#[no_mangle] | ||
pub fn is_ascii_punctuation_char(x: char) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_punctuation() | ||
} | ||
|
||
// CHECK-LABEL: @is_ascii_punctuation_u8 | ||
#[no_mangle] | ||
pub fn is_ascii_punctuation_u8(x: u8) -> bool { | ||
// CHECK-NOT: br | ||
x.is_ascii_punctuation() | ||
} |