Skip to content

docs(codegen): record that the per-site concat cache is admitted only for counted-loop induction variables — it never fires on cc (not a defect) #9824

Description

@proggeramlug

Found while counting executions at string-concat sites for the cc-performance
campaign. Filing rather than fixing, because it belongs to whoever owns #9514
and it bears on an attribution outside my lane.

Two independent measurements agree: the cache is not cold, it is not there

Runtime counter. I added a counter at the top of
js_string_concat_site_value, before the slot lookup — so it counts calls, not
hits. One 400-character streamed reply through the offline mock-API rig, on the
compiled claude-code TUI:

[enum-diag] concat calls=4748  site=0  chain=4953      (eager arm)
[enum-diag] concat calls=3395  site=0  chain=4853      (deferred arm)
[enum-diag] concat calls=3719  site=0  chain=4881      (third run, separate binary)

js_string_concat and js_string_concat_chain are called ~8,600 times per
reply between them. js_string_concat_site_value is called zero times, in
three runs across two separately-compiled binaries.

Static check, which explains why. The symbol is not in the linked binary at
all:

$ nm -m /tmp/cc_ksforin | grep -c js_string_concat_site_value
0
$ nm -m /tmp/cc_ksforin | grep js_string_concat
... _js_string_concat
... _js_string_concat_box
... _js_string_concat_chain
... _js_string_concat_value

Every other concat entry point is present; the site-cache one has been
dead-stripped, which it can only be if codegen emitted no call to it for
this module. So this is not a cache that misses — it is a cache with no call
sites in the workload.

(This is the same method that settled #9802: nm on the compiled object said
the outlined IC miss-handler was never referenced, and that turned out to be
the whole story there too.)

Why it is worth someone's time

  1. A cache with no call sites cannot pay back its complexity — the
    CONCAT_SITE_SLOTS table, its GC lifecycle (gc/tests/concat_site.rs) and
    the codegen pass are all carried for a path this workload never takes.
  2. An attribution elsewhere may rest on it. bench_object_property beating
    node was attributed to the per-site concat mechanism. That is a different
    program and the mechanism may well fire there — but "it works" has now been
    shown to be workload-dependent in a way nobody had measured, so the
    benchmark deserves the same nm/counter check before the attribution is
    relied on again.
  3. It may be a regression rather than a design limit. perf(strings): per-site concat cache for "literal" + proven-small value — bench_object_property beats node #9514 landed on the
    strength of a measured admission gate, so either cc's concat shapes never
    matched the specialisation, or something in codegen stopped matching them.
    Those want different fixes and the counter above distinguishes them cheaply.

What I did NOT determine

Whether cc's concat sites should match. concat_site_cache.rs specialises
prefix + <number> (its doc comment gives "field_" + j for j < 20), and I
have not characterised what cc's ~8,600 concatenations per reply actually look
like — they may legitimately all be string+string, in which case the answer is
"expected, and the cache is simply for other programs" and this issue closes as
working-as-intended with a note. The counter to settle it is a split of
js_string_concat* calls by right-hand-side type.

Reproducing

PERRY_ENUM_DIAG=<path> on the branch of #9823 reports the counters above.
Binary: a full compile of cli_2.1.112.js from perf/for-in-deferred-shadow-set
(main c7361c87c + that diff), measured with
secret-tests/cc-permission-harness/stream_scale.py at chunk 100, length 400.

https://claude.ai/code/session_014UZWia6L37DpA93VLtNK9m

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions