mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-20 13:28:13 +03:00
AK: Add ASCII fast path to Utf8CodePointIterator
Much of the UTF-8 data that we'll iterate over will be ASCII only, and we can get a significant speed-up by simply having a fast path when the iterator points at a byte that is obviously an ASCII character (<= 0x7F).
This commit is contained in:
parent
75cecd19a5
commit
a19d8a4a37
Notes:
sideshowbarker
2024-07-18 03:23:00 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a19d8a4a37 Pull-request: https://github.com/SerenityOS/serenity/pull/22496 Reviewed-by: https://github.com/LucasChollet
@ -147,6 +147,13 @@ Utf8CodePointIterator& Utf8CodePointIterator::operator++()
|
||||
{
|
||||
VERIFY(m_length > 0);
|
||||
|
||||
// OPTIMIZATION: Fast path for ASCII characters.
|
||||
if (*m_ptr <= 0x7F) {
|
||||
m_ptr += 1;
|
||||
m_length -= 1;
|
||||
return *this;
|
||||
}
|
||||
|
||||
size_t code_point_length_in_bytes = underlying_code_point_length_in_bytes();
|
||||
if (code_point_length_in_bytes > m_length) {
|
||||
// We don't have enough data for the next code point. Skip one character and try again.
|
||||
@ -190,6 +197,11 @@ ReadonlyBytes Utf8CodePointIterator::underlying_code_point_bytes() const
|
||||
u32 Utf8CodePointIterator::operator*() const
|
||||
{
|
||||
VERIFY(m_length > 0);
|
||||
|
||||
// OPTIMIZATION: Fast path for ASCII characters.
|
||||
if (*m_ptr <= 0x7F)
|
||||
return *m_ptr;
|
||||
|
||||
auto [code_point_length_in_bytes, code_point_value_so_far, first_byte_makes_sense] = Utf8View::decode_leading_byte(*m_ptr);
|
||||
|
||||
if (!first_byte_makes_sense) {
|
||||
|
Loading…
Reference in New Issue
Block a user