Skip to content

perf: SIMD percent_encode against the character-set bitmap - #1230

Merged
anonrig merged 9 commits into
mainfrom
cursor/simd-percent-encode-5263
Aug 21, 2026
Merged

perf: SIMD percent_encode against the character-set bitmap#1230
anonrig merged 9 commits into
mainfrom
cursor/simd-percent-encode-5263

Conversation

@anonrig

@anonrig anonrig commented Aug 21, 2026

Copy link
Copy Markdown
Member

Summary

percent_encode was still a scalar find_if plus byte loop on the parse / setter / url_search_params hot paths.

This adds a 16-byte encode kernel, while keeping setter codegen on the original scalar code:

  • SSSE3 pshufb looks up the existing 32-byte character_set bitmap (cs[b >> 3] & (1 << (b & 7))). gcc/clang x86-64 uses target("ssse3") so a baseline SSE2 build still gets the kernel, matching parser.cpp. Clean 32-byte pairs are appended in one go.
  • NEON uses vqtbl2q_u8 over the same bitmap, also pairing clean 32-byte runs.
  • RVV uses indexed loads (vluxei8).
  • Dirty windows walk the match mask and emit %XX only for set bits. The suffix output is reserved at 3x remaining length to avoid realloc.

Short / setter paths stay on the original code in the ada.cpp unity TU:

  • percent_encode_index is the original inline 8-byte unroll.
  • The percent_encode template (used by set_hash / set_search) is the original find_if plus byte loop.
  • Allocating percent_encode overloads use that same scalar loop when the remaining suffix is under 48 bytes.
  • The SIMD kernel lives in unicode_percent_encode.cpp (its own TU) so it does not change setter inlining. Single-header builds still amalgamate it through ada.cpp.

No per-call nibble LUT (the #1124 regression).

Why this path

Issue #1120 identified percent-encode as the remaining scalar bottleneck. Host/path/query/hash scans are already SIMD; encode was still byte-at-a-time on long query/fragment/form strings.

Performance

Release, g++ 13.3, Xeon. Long query/fragment (~200 B) uses the SIMD suffix. Setter microbenchmarks match main.

CodSpeed

Earlier revisions inlined SIMD into the unity TU and regressed SetHash. Setter templates stay on the scalar loop; the kernel is a separate TU. AVX2 runtime dispatch was dropped after it moved unrelated setter benches.

Correctness

Oracle tests for every official character set, lengths 0–80 plus 96/128/256-byte windows, encode bytes at every offset, non-ASCII, dense punctuation, and append/replace templates.

The percent_encode<append> template is explicitly instantiated so Apple Clang Release still exports the symbol for tests.

No public signature or object-layout change.

Closes #1120.

Open in Web Open in Cursor 

Scan and encode 16-byte runs with SSSE3 pshufb, NEON tbl, or RVV
indexed loads. Tables come from the existing 32-byte character_set
bitmap, so short strings keep the inline 8-byte scalar path and avoid
the per-call LUT build that regressed #1124.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
@codspeed-hq

codspeed-hq Bot commented Aug 21, 2026

Copy link
Copy Markdown

Merging this PR will not alter performance

✅ 45 untouched benchmarks
🆕 2 new benchmarks
⏩ 4 skipped benchmarks1

Performance Changes

Benchmark BASE HEAD Efficiency
🆕 LongFragment N/A 7.3 µs N/A
🆕 LongQuery N/A 7.3 µs N/A

Comparing cursor/simd-percent-encode-5263 (0848284) with main (18ca958)

Open in CodSpeed

Footnotes

  1. 4 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

@codecov

codecov Bot commented Aug 21, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 86.07595% with 11 lines in your changes missing coverage. Please review.
✅ Project coverage is 63.25%. Comparing base (18ca958) to head (0848284).

Files with missing lines Patch % Lines
src/unicode.cpp 50.00% 0 Missing and 6 partials ⚠️
src/unicode_percent_encode.cpp 92.53% 0 Missing and 5 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1230      +/-   ##
==========================================
+ Coverage   63.00%   63.25%   +0.25%     
==========================================
  Files          38       39       +1     
  Lines        7628     7699      +71     
  Branches     3496     3514      +18     
==========================================
+ Hits         4806     4870      +64     
  Misses        749      749              
- Partials     2073     2080       +7     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Use the equivalent _mm_cmpgt_epi8 form instead of the deprecated
_mm_cmplt_epi8 compare when selecting the high half of the bitmap.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
@anonrig
anonrig marked this pull request as ready for review August 21, 2026 17:12
cursoragent and others added 3 commits August 21, 2026 17:17
Restore the original inline 8-byte percent_encode_index scan so
username/hash setters do not pay an extra branch or out-of-line call.
Use SIMD encode only when the remaining suffix is at least 48 bytes,
which is past the CodSpeed setter and UserInfo inputs that regressed
from table setup and dense mask walking.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
The just_ascii test rejects non-ASCII source; replace the en-dash in
the SIMD threshold comment.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
Keep the original std::ranges::find_if prefix check so SetHash and
other no-encode setter paths match main on instruction count. SIMD
still runs only for remaining suffixes of 48 bytes or more.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
cursor Bot pushed a commit that referenced this pull request Aug 21, 2026
CodSpeed on #1218/#1230 showed 16-byte encode classify regresses
SetHash and the official percent_encode examples. Gate the nibble-table
walk on a 48-byte remainder and keep it noinline so setter-sized
percent_encode stays a tight scalar tail.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
cursoragent and others added 4 commits August 21, 2026 17:24
SetHash still regressed on CodSpeed after the 48-byte SIMD gate
because the template inlined the SIMD dispatch. Restore the original
find_if plus byte loop in the append/replace template so hash/search
setters match main. SIMD stays on the allocating overloads used by
long query/fragment strings.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
SetHash and SetPort still moved on CodSpeed after the scalar setter
template was restored, because the SSSE3 kernel lived in the ada.cpp
unity TU and changed inlining. Move the kernel to
unicode_percent_encode.cpp and keep short encode loops in unicode.cpp.
Single-header builds still amalgamate the kernel through ada.cpp.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
Classify 32 bytes per iteration with vpshufb when AVX2 is available
(runtime dispatch from an SSE2 TU). SSSE3 and NEON now append a
fully clean 32-byte pair in one go. Reserve 3x the remaining suffix
so long dirty strings do not realloc while walking windows.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
Apple Clang Release inlines the setter template and omits its
symbol, so macOS static-library tests fail to link. Explicitly
instantiate both append modes.

clang-cl treats unused SIMD helpers as errors when SSSE3 is
disabled; compile those helpers only for SSSE3 and NEON.

Drop AVX2 runtime dispatch. CodSpeed reported setter regressions
on that revision; the previous separate-TU commit without AVX2
did not.

Co-authored-by: Yagiz Nizipli <anonrig@users.noreply.github.com>
@anonrig
anonrig merged commit fa9a175 into main Aug 21, 2026
55 checks passed
@anonrig
anonrig deleted the cursor/simd-percent-encode-5263 branch August 21, 2026 18:36
FranciscoThiesen added a commit to FranciscoThiesen/ada that referenced this pull request Aug 26, 2026
…identical to main)

Including the ~1800-line route-set compiler in the unity ada.cpp reshuffles
GCC's unit-wide inlining budget: url_aggregator setter hot paths lose inlined
std::string growth (e.g. append_base_pathname 200 -> 106 instructions), which
CodSpeed reported as SetHash -12%, SetProtocol -6%, SetPort -5%, SetHostname
-3%. Clang is unaffected.

Mirror the ADA_PERCENT_ENCODE_SIMD_SEPARATE_TU pattern from ada-url#1230: build
url_pattern_list.cpp as a separate TU under CMake (ADA_URL_PATTERN_LIST_SEPARATE_TU)
while the amalgamated single-file build keeps including it inline. With the
guard active the unity TU's pre-existing functions are opcode-identical to
main (0 of 793 changed, GCC 14 -O3). Also drops an unused constant that the
standalone TU surfaced.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
lemire pushed a commit that referenced this pull request Sep 13, 2026
…1234)

* feat: add url_pattern_list - compiled route-set matching (RFC)

ada::url_pattern_list<regex_provider> compiles a set of URLPattern
pathname patterns into one dispatch structure (segment trie with
per-node witness-byte dispatch, a whole-pathname exact table for fully
static routes, and per-shape dispatch tables for parameterized routes),
answering "which route matches this pathname, and what are the
parameter values?" in tens of nanoseconds instead of a loop of
url_pattern::exec calls. This is the URLPatternList use case
(whatwg/urlpattern#166), scoped to the pathname component.

Design points:

- The pattern side reuses ada's own URLPattern machinery:
  parse_pattern_string + canonicalize_pathname classify each pattern's
  part list; the static / ":param" / "*" subset is compiled, and
  patterns needing regexp semantics are matched through the regex
  provider while participating in the same priority order.
- Match priority is specificity order (literal < ":param" < "*",
  per-segment from the left), insertion order breaking ties -
  find-my-way/Express-compatible. Whether URLPatternList should use
  insertion order instead is an open question for the RFC.
- Fast-path limits (4096-byte inputs, 24 input segments, 16 pattern
  segments, 8 captures, 254-entry dispatch tables) are performance
  gates, not match contracts: inputs and routes beyond them fall back
  to a sequential matcher with identical semantics, and failed offline
  table searches demote to linear scans. No input aborts; construction
  errors return tl::expected (errors::type_error, like the URLPattern
  constructor).
- The matcher is allocation-free and regex-free on the fast path; the
  NEON segment scan has a portable scalar fallback
  (ADA_URL_PATTERN_LIST_NO_NEON) and the packed-window compares are
  endian-safe.

Includes a GTest suite (priority/boundary cases, out-of-fast-path
inputs, a semantics pin against ada::url_pattern, and a randomized
differential test against an independent reference matcher) and a
benchmark (benchmarks/urlpattern_list.cpp) comparing a sequential
url_pattern::exec loop with url_pattern_list::match over a 101-route
REST table: 58.4 us/url vs 54.0 ns/url (~1080x) on Apple M3 Max,
answers cross-checked identical.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* test: expand url_pattern_list coverage, add fuzzer, guard private API docs

Addresses the review feedback on the url_pattern_list RFC:

- Tests: coverage-driven expansion of url_pattern_list_tests.cpp (598 ->
  1168 lines, 16 -> 32 tests). Adds a data-driven semantics table (~130
  pattern/input/capture triplets over every subset syntax feature, subset
  boundary, and canonicalization interaction, cross-checked row by row
  against ada::url_pattern::test), targeted tests for every dispatch and
  demotion rung (witness-plan exhaustion for nodes, shape groups and the
  exact table, >64-key slot tables, >254-entry linear demotions, 16-bit
  key overflow, segment-count gate boundaries, probe-order promotion and
  its dependent-group counterpart, kind-sequence packing caps), group-name
  and capture-alignment tests including duplicate names across routes, and
  a per-route url_pattern::test cross-check sampled inside the existing
  differential test. Local llvm-cov: url_pattern_list.cpp 99.67% lines /
  98.57% branches / 100% functions; url_pattern_list-inl.h and
  url_pattern_list.h 100% on all metrics.

- Fuzzing: new fuzz/url_pattern_list.cc (with .options, wired into
  fuzz/build.sh) drives three strategies from one harness: arbitrary
  construction over 1..64 derived patterns exercising the full public
  surface, a differential oracle that rebuilds each route through the
  sequential helpers (or the compiled pathname component) and aborts on
  any winner or capture-slice disagreement, and fast-path-gate crossings
  around the 4096-byte and 24-segment limits. 372k executions over 10
  minutes under ASan+UBSan locally: no findings.

- Docs: every internal type, function and member in url_pattern_list.h is
  now guarded with @Private doc comments (27 markers), following
  character_sets.h/checkers.h conventions; compute_kind_sequence moved out
  of the public header into the translation unit. Doxygen runs clean over
  the tree with no warnings for these files.

- Benchmarks: the shared URL stream shrinks from 512 to 32 URLs so one
  iteration of the sequential url_pattern::exec baseline stays well under
  CodSpeed's per-iteration budget (~2.1 ms locally, was ~34 ms); both
  benchmarks still iterate the identical stream and the disagreement
  cross-check is unchanged.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* build: compile url_pattern_list in its own TU (keeps setter inlining identical to main)

Including the ~1800-line route-set compiler in the unity ada.cpp reshuffles
GCC's unit-wide inlining budget: url_aggregator setter hot paths lose inlined
std::string growth (e.g. append_base_pathname 200 -> 106 instructions), which
CodSpeed reported as SetHash -12%, SetProtocol -6%, SetPort -5%, SetHostname
-3%. Clang is unaffected.

Mirror the ADA_PERCENT_ENCODE_SIMD_SEPARATE_TU pattern from #1230: build
url_pattern_list.cpp as a separate TU under CMake (ADA_URL_PATTERN_LIST_SEPARATE_TU)
while the amalgamated single-file build keeps including it inline. With the
guard active the unity TU's pre-existing functions are opcode-identical to
main (0 of 793 changed, GCC 14 -O3). Also drops an unused constant that the
standalone TU surfaced.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix: record ignore_case on url_pattern objects

parse_url_pattern_impl forwarded options->ignore_case into the component
compile options but never stored it on the url_pattern, so
url_pattern::ignore_case() always returned false. parse_url_pattern_list's
url_pattern-object overload reads that flag, so store it.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* refactor: url_pattern_list matches parse_url_pattern; matcher inline, compiler private

API:
- ada::parse_url_pattern_list<Provider>(span<const string_view>, base_url*,
  url_pattern_options*) next to parse_url_pattern, plus an overload taking
  span<const url_pattern<Provider>> that reuses the objects' compiled
  pathname components and their ignore_case(). url_pattern_list::create is
  private; the free functions are the entry points.
- ignore_case reaches url_pattern_compile_component_options for regexp
  routes (the provider sees the flag) and the static/":param"/"*" subset
  compares literals with ASCII case folding (compiled literals folded at
  creation, the input folded into a stack copy at match time; offsets are
  unchanged so captures still slice the original).
- Regexp routes are tested with regex_match and executed with
  regex_search for their group values, URLPattern's own test/exec split;
  the match result carries them as regexp_groups (owned, aligned with
  group_names) next to the zero-allocation (offset, length) slices of
  subset routes, with regexp_route telling the two forms apart.

Public header and TU split:
- include/ada/url_pattern_list.h now holds only the limits, the match
  result, url_pattern_list and the table records the inline matcher reads;
  the route-set compiler (route_info, classify_parts, compile_route_set,
  witness planners, arena packing) moved to src/url_pattern_list_compiler.h,
  which ada.h does not include. The fuzzer reaches it through the
  amalgamated ada.cpp, as the other fuzzers do.
- The walk (scan_segments, verify_edge, dispatch_static, match_compiled)
  is ada_really_inline in url_pattern_list-inl.h and inlines into
  url_pattern_list::match; only the builder stays in the separate TU. The
  parse_url_pattern_list definitions live in implementation-inl.h, after
  the defaulted declarations, as parse_url_pattern's does. The unity
  ada.cpp codegen is unchanged under GCC 14 -O3: all 793 functions,
  url_aggregator setters included, have identical opcode streams.

Match path:
- Auxiliary routes (regexp mode, sequential mode) are no longer walked
  after a fast-path hit: at creation each trie route records the auxiliary
  routes that both outrank it and could match the same input (literal
  agreement and segment-count compatibility); after a hit only those are
  tested. A regexp route whose parts are fixed text and ":name" groups has
  an exact segment shape, and one with custom groups an anchored literal
  prefix; match_regexp_shape rejects inputs that cannot fit it before any
  provider call, on hits and misses alike.
- Direct compares up to 16 children (measured against 8: faster on every
  stream, static hits 28.0 -> 25.9 ns/url); a 256-entry first-byte index at the
  root (children sorted by first byte, runs of at most 16); projection only
  for wider nodes.
- One arena holds every table (nodes, hash payloads, edges, slots, blob,
  route records, segment table, aux table, root index), addressed by
  section offsets. node_record is 24 bytes; the projection payload lives
  in a separate hash_record only for hashed nodes.
- Portable SWAR slash scan (8 bytes per step, exact zero-lane test on
  x ^ '/'-fill, byte-exact partial tail load, no over-read); keys of 8..16
  bytes verify from two whole-word loads inside the segment, shorter keys
  from a masked load only when 8 bytes are readable and from a byte gather
  otherwise; memcmp past 16 bytes. eq_bytes, the NEON scanner and endpad
  are gone.
- The whole-pathname exact table and the shape tables are removed: with
  the root index and direct compares, static hits measured within noise
  of the exact table and param hits within noise of the shape tables, and
  the shape tables depended on the exact table's completeness. Empty
  literal segments ("/users/") are now trie routes.
  shape_group::{mask, n_static, witness_ids}, n_ids_out and
  covered_by_static_table go with them.

Tests: a counting provider wrapper (create_instance / regex_search /
regex_match calls and the ignore_case flag), ignore_case parity with
url_pattern, base URL processing, url_pattern objects as input, auxiliary
route pruning, SWAR scan sweep, short tails, root index, direct fanout,
and match() over exactly sized unterminated buffers. The fuzzer's oracle
is now each route's url_pattern pathname component (regex_search
included) ranked by the compiler's kind sequences, over exactly sized
input buffers.

Benchmark (benchmarks/urlpattern_list.cpp, 32-URL stream, ns/url, median
of 6 interleaved runs, before -> after): mixed stream 52.4 -> 34.0,
static hits 27.7 -> 26.6, param hits 31.9 -> 32.7,
table with one "(\d+)" route 114.9 -> 41.9.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix: a "*" segment does not match line terminators

"*" stands for "(.*)" in the URLPattern regexp, and "." in an ECMAScript
regular expression never matches LF or CR, so url_pattern rejects a raw
line terminator in the wildcard tail while the compiled matcher accepted
it (found by the fuzzer's url_pattern oracle: pattern "/*", input
"/\n"). Apply the rule in the trie walk and in the sequential matcher.
Canonical pathnames percent-encode both bytes, so only raw inputs are
affected.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* perf: direct compares up to 8 children, not 16

Measured on a synthetic node with N static children under a fixed prefix
(plus a ":rest" sibling), hit uniformly, with keys of varied length and
with keys of one length and prefix, which the length gate never rejects.
Three builds: projection from 3 children, direct compares up to 8, direct
compares at every fanout. ns/url, median of 3 interleaved runs, written
as projection / direct:

  hits, varied keys    N=3 20.5/19.0  N=8 20.6/19.7  N=12 21.1/20.4  N=16 21.0/21.7  N=24 20.7/23.6
  hits, same length    N=3 16.8/21.4  N=8 16.8/21.8  N=12 16.8/24.9  N=16 16.9/27.1  N=24 16.8/31.1
  misses, varied keys  N=3 20.6/20.3  N=8 20.7/23.7  N=12 21.2/26.1  N=16 21.1/28.9
  misses, same length  N=3 17.5/18.9  N=8 17.5/25.5  N=12 17.5/31.0  N=16 17.5/36.5

Direct compares win only for keys of varied length, by about 1 ns, and
only up to about 12 children; for keys of one length the projection wins
by 4-5 ns at every fanout, and by more on misses. Sixteen had gained
2.5 ns on the PR benchmark table because that stream is skewed toward
/api, which makes the direct loop's exit predictable. Eight keeps the
common-case win and bounds the loss; on the PR table it is a wash against
projection from 3 (static hits 28.0 vs 28.3, ":param" hits 34.9 vs 35.0).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HBz2pfstt62q1rGwqbjP9X

* perf: check the wildcard tail for line terminators with SWAR, out of line

The check added in 5a40de0 walked the captured tail byte by byte on every
"*" hit: about 0.3 ns per byte, 1.3 us for a 4 KB pathname and 5-8 ns on a
typical one. Now 8 bytes per step with the "some byte below 0x20" test
(exact as a yes/no answer) and the exact byte check only for a tail that
holds a control byte. Kept out of line on purpose: inlined into the walk,
the loop cost the static and ":param" paths, which never run it, about
5 ns through register allocation (27.7 -> 32.4 and 34.9 -> 39.6 ns/url on
the PR benchmark); as a call it costs only wildcard hits.

Long-pathname benchmark (two-node table, "/files/*" wins, ns/url), the
NEON scanner at 840804f vs the SWAR scanner:

  32 B, 2 segments    15.4 vs 18.7     128 B, 24 segments   24.1 vs 37.2
  128 B, 2            17.3 vs 26.8     1 KB, 24             47 vs 137
  1 KB, 2             40 vs 132        4 KB, 24             131 vs 585
  4 KB, 2             126 vs 460

PR benchmark, 840804f -> this commit: mixed stream 50.0 -> 34.2, static
hits 26.6 -> 27.6, ":param" hits 30.5 -> 35.6, table with one "(\d+)"
route 110.9 -> 42.6.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HBz2pfstt62q1rGwqbjP9X

* perf: keep the NEON segment scan; SWAR stays the portable path

The 1k+ pathname benchmark asked for in review: a two-node table where
"/files/*" wins, so the scan dominates; the NEON scanner at 840804f
against the SWAR loop at a4ab137, ns/url:

  32 B, 2 segments    15.4 vs 18.7     128 B, 24 segments   24.1 vs 37.2
  128 B, 2            17.3 vs 26.8     1 KB, 24             47 vs 137
  1 KB, 2             40 vs 132        4 KB, 24             131 vs 585
  4 KB, 2             126 vs 460

NEON is faster at every length on an Apple M3, 1-3 ns on 20-40 byte paths
and 3-4x past 1 KB, so 12e6b41 removed it wrongly. Restored under
ADA_NEON for inputs of 16 bytes or more: 16 bytes per step, the '/'
compare narrowed to one nibble per byte, an overlapped last block so the
input is never over-read. The SWAR loop stays as the portable scan and
for shorter inputs, and the sweep test exercises both. The wildcard tail
check takes the same 16-byte step (a running byte minimum). With this the
32-byte case is back at parity (15.6 vs 15.8 ns/url); the remaining 2x on
4 KB "*" tails is the line-terminator check's second pass over the tail.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HBz2pfstt62q1rGwqbjP9X

* bench: correct the note on the regexp-route stream

A counting provider over the benchmark's 32-URL stream shows the "(\d+)"
route is tested once, on an "/api/v1/invoices/.../zz" miss that lands on
"/*", where it legitimately could win; the comment claimed std::regex
never runs on that stream.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HBz2pfstt62q1rGwqbjP9X

* docs: rewrite the URLPattern list section of the README

Same shape as the URLPattern section above it: a short introduction, an
example with the same provider, and a few plain notes on what is matched,
the priority order, the options and the limits.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01A6djgGCa4kARsjHSipVCbH

* fix the builds on Apple clang 15 and MSVC

Apple clang 15 does not match a friend declaration that redeclares a
constrained function template, so parse_url_pattern_list could not reach
the private members of url_pattern_list and the macOS 14 job failed on
every use. Declare the two overloads before the class and befriend those
specializations instead. Their default arguments stay in implementation.h,
which this header always pulls in first, since a function template may not
gain default arguments in a later declaration.

MSVC's ada_never_inline is __declspec(noinline) with no inline linkage, so
the wildcard_tail_ok definition in the header was emitted in every
translation unit and the link failed with LNK2005. Move it next to the
other detail functions in url_pattern_list.cpp. It was already never
inlined, so the call is unchanged.

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

SIMD-accelerated percent_encode / percent_decode

3 participants