-
Notifications
You must be signed in to change notification settings - Fork 171
optimize fastfloat_strncasecmp #356
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 all commits
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 |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |
| #define FASTFLOAT_FLOAT_COMMON_H | ||
|
|
||
| #include <cfloat> | ||
| #include <cstddef> | ||
| #include <cstdint> | ||
| #include <cassert> | ||
| #include <cstring> | ||
|
|
@@ -267,18 +268,151 @@ struct is_supported_char_type | |
| > { | ||
| }; | ||
|
|
||
| template <typename UC> | ||
| inline FASTFLOAT_CONSTEXPR14 bool | ||
| fastfloat_strncasecmp3(UC const *actual_mixedcase, | ||
| UC const *expected_lowercase) { | ||
| uint64_t mask{0}; | ||
| FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 1) { mask = 0x2020202020202020; } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 2) { | ||
| mask = 0x0020002000200020; | ||
| } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 4) { | ||
| mask = 0x0000002000000020; | ||
| } | ||
| else { | ||
| return false; | ||
| } | ||
|
|
||
| uint64_t val1{0}, val2{0}; | ||
| if (cpp20_and_in_constexpr()) { | ||
| for (size_t i = 0; i < 3; i++) { | ||
| if ((actual_mixedcase[i] | 32) != expected_lowercase[i]) { | ||
| return false; | ||
| } | ||
| return true; | ||
| } | ||
| } else { | ||
| FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 1 || sizeof(UC) == 2) { | ||
| ::memcpy(&val1, actual_mixedcase, 3 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase, 3 * sizeof(UC)); | ||
| val1 |= mask; | ||
| val2 |= mask; | ||
| return val1 == val2; | ||
| } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 4) { | ||
| ::memcpy(&val1, actual_mixedcase, 2 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase, 2 * sizeof(UC)); | ||
| val1 |= mask; | ||
| if (val1 != val2) { | ||
| return false; | ||
| } | ||
| return (actual_mixedcase[2] | 32) == (expected_lowercase[2]); | ||
| } | ||
| else { | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| return true; | ||
| } | ||
|
|
||
| template <typename UC> | ||
| inline FASTFLOAT_CONSTEXPR14 bool | ||
| fastfloat_strncasecmp5(UC const *actual_mixedcase, | ||
| UC const *expected_lowercase) { | ||
| uint64_t mask{0}; | ||
| uint64_t val1{0}, val2{0}; | ||
| if (cpp20_and_in_constexpr()) { | ||
| for (size_t i = 0; i < 5; i++) { | ||
| if ((actual_mixedcase[i] | 32) != expected_lowercase[i]) { | ||
| return false; | ||
| } | ||
| return true; | ||
|
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. Also exit after 1 cycle.
Contributor
Author
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. sorry for the overlook, will raise a fix PR shortly. |
||
| } | ||
| } else { | ||
| FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 1) { | ||
| mask = 0x2020202020202020; | ||
| ::memcpy(&val1, actual_mixedcase, 5 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase, 5 * sizeof(UC)); | ||
| val1 |= mask; | ||
| val2 |= mask; | ||
| return val1 == val2; | ||
| } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 2) { | ||
| mask = 0x0020002000200020; | ||
| ::memcpy(&val1, actual_mixedcase, 4 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase, 4 * sizeof(UC)); | ||
| val1 |= mask; | ||
| if (val1 != val2) { | ||
| return false; | ||
| } | ||
| return (actual_mixedcase[4] | 32) == (expected_lowercase[4]); | ||
| } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 4) { | ||
| mask = 0x0000002000000020; | ||
| ::memcpy(&val1, actual_mixedcase, 2 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase, 2 * sizeof(UC)); | ||
| val1 |= mask; | ||
| if (val1 != val2) { | ||
| return false; | ||
| } | ||
| ::memcpy(&val1, actual_mixedcase + 2, 2 * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase + 2, 2 * sizeof(UC)); | ||
| val1 |= mask; | ||
| if (val1 != val2) { | ||
| return false; | ||
| } | ||
| return (actual_mixedcase[4] | 32) == (expected_lowercase[4]); | ||
| } | ||
| else { | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| return true; | ||
| } | ||
|
|
||
| // Compares two ASCII strings in a case insensitive manner. | ||
| template <typename UC> | ||
| inline FASTFLOAT_CONSTEXPR14 bool | ||
| fastfloat_strncasecmp(UC const *actual_mixedcase, UC const *expected_lowercase, | ||
| size_t length) { | ||
| for (size_t i = 0; i < length; ++i) { | ||
| UC const actual = actual_mixedcase[i]; | ||
| if ((actual < 256 ? actual | 32 : actual) != expected_lowercase[i]) { | ||
| return false; | ||
| uint64_t mask{0}; | ||
| FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 1) { mask = 0x2020202020202020; } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 2) { | ||
| mask = 0x0020002000200020; | ||
| } | ||
| else FASTFLOAT_IF_CONSTEXPR17(sizeof(UC) == 4) { | ||
| mask = 0x0000002000000020; | ||
| } | ||
| else { | ||
| return false; | ||
| } | ||
|
|
||
| if (cpp20_and_in_constexpr()) { | ||
| for (size_t i = 0; i < length; i++) { | ||
| if ((actual_mixedcase[i] | 32) != expected_lowercase[i]) { | ||
| return false; | ||
| } | ||
| return true; | ||
| } | ||
| } else { | ||
| uint64_t val1{0}, val2{0}; | ||
| size_t sz{8 / (sizeof(UC))}; | ||
| for (size_t i = 0; i < length; i += sz) { | ||
| val1 = val2 = 0; | ||
| sz = std::min(sz, length - i); | ||
| ::memcpy(&val1, actual_mixedcase + i, sz * sizeof(UC)); | ||
| ::memcpy(&val2, expected_lowercase + i, sz * sizeof(UC)); | ||
| val1 |= mask; | ||
| val2 |= mask; | ||
| if (val1 != val2) { | ||
| return false; | ||
| } | ||
| } | ||
| return true; | ||
| } | ||
| return true; | ||
| } | ||
|
|
||
| #ifndef FLT_EVAL_METHOD | ||
|
|
||
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
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.
Exit after 1 cycle.