Bug 239714 - Use equalLettersIgnoringASCIICase() and SortedArrayMap in more places
Summary: Use equalLettersIgnoringASCIICase() and SortedArrayMap in more places
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Chris Dumez
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2022-04-24 15:48 PDT by Chris Dumez
Modified: 2022-04-25 08:53 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris Dumez 2022-04-24 15:48:47 PDT
Use equalLettersIgnoringASCIICase() and SortedArrayMap in more places, for performance.
Comment 1 Chris Dumez 2022-04-24 16:06:53 PDT
Pull request: https://github.com/WebKit/WebKit/pull/375
Comment 2 EWS 2022-04-24 21:45:54 PDT
Committed r293309 (249932@main): <https://commits.webkit.org/249932@main>

Reviewed commits have been landed. Closing PR #375 and removing active labels.
Comment 3 Radar WebKit Bug Importer 2022-04-24 21:46:13 PDT
<rdar://problem/92247702>
Comment 4 Darin Adler 2022-04-25 08:53:29 PDT
A stray thought: Maybe some day we can make equalIgnoringASCIICase a smart function template that automatically calls the "letters" version based on the characters in the constant string passed to it, analyzed at compile time. It would be nice to *not* have each programmer get this right, and automatically get the more efficient idiom.