diff options
author | David Robillard <d@drobilla.net> | 2023-03-28 12:12:15 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-05 09:45:15 -0400 |
commit | 6033875bcb22169de59126451e227dce1ee2db0c (patch) | |
tree | ff5eb50cd5dfb63e81ff1faaa2a326e0c978833c /src/string_utils.h | |
parent | ab68ee17007626e5662c4f8c7388cb0540f3067c (diff) | |
download | serd-6033875bcb22169de59126451e227dce1ee2db0c.tar.gz serd-6033875bcb22169de59126451e227dce1ee2db0c.tar.bz2 serd-6033875bcb22169de59126451e227dce1ee2db0c.zip |
Shrink UTF-8 utility code
I've found that the negative cache impact of the 32-byte lookup table here can
be worse than the simple conditional code in real-world scenarios (even though
it's faster in micro-benchmarks). So, go with the simple (and conveniently
more terse) thing.
Diffstat (limited to 'src/string_utils.h')
-rw-r--r-- | src/string_utils.h | 41 |
1 files changed, 5 insertions, 36 deletions
diff --git a/src/string_utils.h b/src/string_utils.h index ea47c4b8..9ae0abcb 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -110,42 +110,11 @@ serd_strncasecmp(const char* s1, const char* s2, size_t n) static inline uint32_t utf8_num_bytes(const uint8_t leading) { - static const uint8_t lengths[32] = { - 1U, // 00000xxx - 1U, // 00001xxx - 1U, // 00010xxx - 1U, // 00011xxx - 1U, // 00100xxx - 1U, // 00101xxx - 1U, // 00110xxx - 1U, // 00111xxx - 1U, // 01000xxx - 1U, // 01001xxx - 1U, // 01010xxx - 1U, // 01011xxx - 1U, // 01100xxx - 1U, // 01101xxx - 1U, // 01110xxx - 1U, // 01111xxx - 0U, // 10000xxx - 0U, // 10001xxx - 0U, // 10010xxx - 0U, // 10011xxx - 0U, // 10100xxx - 0U, // 10101xxx - 0U, // 10110xxx - 0U, // 10111xxx - 2U, // 11000xxx - 2U, // 11001xxx - 2U, // 11010xxx - 2U, // 11011xxx - 3U, // 11100xxx - 3U, // 11101xxx - 4U, // 11110xxx - 0U // 11111xxx - }; - - return lengths[leading >> 3U]; + return ((leading & 0x80U) == 0x00U) ? 1U // Starts with `0' + : ((leading & 0xE0U) == 0xC0U) ? 2U // Starts with `110' + : ((leading & 0xF0U) == 0xE0U) ? 3U // Starts with `1110' + : ((leading & 0xF8U) == 0xF0U) ? 4U // Starts with `11110' + : 0U; // Invalid } /// Return the code point of a UTF-8 character with known length |