You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch implements an optimization to inline small memchr calls into a sequence of loads and comparisons when the length is below a threshold. This allows better optimization of small string searches.
The implementation: Adds support for inlining memchr calls with constant length, introduces a memchr-inline-threshold parameter (default: 6), and adds test coverage for small memchr operations.
0 commit comments