Commit 4ed5aa3
Coalesce per-file plugins into one salsa query per file (#308)
`per_file_plugin_ops` was keyed `(file, plugin_id)`, so N registered
per-file plugins meant N salsa queries (and N memo entries) per file —
the salsa bookkeeping (memo table, dependency edges, per-build
revalidation) grew O(files × plugins). Re-key it on `(file, set_id)`,
where `set_id` interns the ordered, deduped per-file plugin id list, and
run the whole set inside the one query body. Salsa work is now
O(files); the per-plugin loop is plain Rust, free of salsa.
* New `PER_FILE_PLUGIN_SETS` registry interns an ordered id list to a
stable `set_id` (FxHasher over the list). Interning by the list keeps
it sound across `Analysis`es with different plugin sets — a different
list → a different `set_id` → separate memo entries — and identical
sets (incl. across `re_materialize`) share entries. Same append-only,
immutable-per-id contract as the configured/external registries, so
the untracked lookup from inside the query is sound.
* `extract_per_file_plugin_set` dedups by id preserving registration
order, exactly reproducing the dedup the old `(file, id)` key gave for
free (two `main_block()`s, or identical `ServerConfig` configs that
intern to one id, run once).
* Populate warms one query per file; assemble reads one slice per file.
The shared dispatch is factored into `run_one_per_file`.
No support for the plugin list changing mid-session is added (per the
design): invalidation stays purely per-file via the file's tracked
inputs. Byte-identical output (A/B on the framework corpus with all 17
builtin plugins), full suite (745) green incl. the ServerConfig
cache-interning tests.
https://claude.ai/code/session_01KYNAs8Y9ctXsM1waLmXEaP
Co-authored-by: Claude <noreply@anthropic.com>1 parent ca1c38f commit 4ed5aa3
2 files changed
Lines changed: 129 additions & 58 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
943 | 943 | | |
944 | 944 | | |
945 | 945 | | |
946 | | - | |
947 | | - | |
948 | | - | |
949 | | - | |
950 | | - | |
951 | | - | |
952 | | - | |
953 | | - | |
| 946 | + | |
| 947 | + | |
| 948 | + | |
| 949 | + | |
| 950 | + | |
| 951 | + | |
| 952 | + | |
| 953 | + | |
| 954 | + | |
| 955 | + | |
| 956 | + | |
| 957 | + | |
| 958 | + | |
| 959 | + | |
| 960 | + | |
| 961 | + | |
| 962 | + | |
| 963 | + | |
| 964 | + | |
| 965 | + | |
| 966 | + | |
| 967 | + | |
| 968 | + | |
| 969 | + | |
| 970 | + | |
| 971 | + | |
| 972 | + | |
| 973 | + | |
| 974 | + | |
| 975 | + | |
| 976 | + | |
| 977 | + | |
| 978 | + | |
| 979 | + | |
| 980 | + | |
| 981 | + | |
| 982 | + | |
| 983 | + | |
| 984 | + | |
| 985 | + | |
| 986 | + | |
| 987 | + | |
| 988 | + | |
| 989 | + | |
| 990 | + | |
| 991 | + | |
| 992 | + | |
| 993 | + | |
| 994 | + | |
| 995 | + | |
| 996 | + | |
| 997 | + | |
| 998 | + | |
| 999 | + | |
954 | 1000 | | |
955 | | - | |
956 | | - | |
957 | | - | |
958 | | - | |
959 | | - | |
960 | | - | |
| 1001 | + | |
| 1002 | + | |
| 1003 | + | |
961 | 1004 | | |
962 | | - | |
| 1005 | + | |
963 | 1006 | | |
964 | 1007 | | |
965 | 1008 | | |
966 | 1009 | | |
967 | 1010 | | |
968 | | - | |
| 1011 | + | |
969 | 1012 | | |
970 | 1013 | | |
971 | 1014 | | |
972 | 1015 | | |
973 | 1016 | | |
974 | 1017 | | |
975 | 1018 | | |
976 | | - | |
| 1019 | + | |
977 | 1020 | | |
978 | 1021 | | |
979 | 1022 | | |
980 | 1023 | | |
| 1024 | + | |
| 1025 | + | |
| 1026 | + | |
| 1027 | + | |
| 1028 | + | |
| 1029 | + | |
| 1030 | + | |
| 1031 | + | |
| 1032 | + | |
| 1033 | + | |
| 1034 | + | |
| 1035 | + | |
| 1036 | + | |
| 1037 | + | |
| 1038 | + | |
| 1039 | + | |
| 1040 | + | |
| 1041 | + | |
| 1042 | + | |
| 1043 | + | |
| 1044 | + | |
981 | 1045 | | |
982 | 1046 | | |
983 | 1047 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
100 | | - | |
| 100 | + | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
| |||
376 | 376 | | |
377 | 377 | | |
378 | 378 | | |
379 | | - | |
| 379 | + | |
380 | 380 | | |
381 | 381 | | |
382 | 382 | | |
| |||
552 | 552 | | |
553 | 553 | | |
554 | 554 | | |
555 | | - | |
556 | 555 | | |
557 | 556 | | |
558 | 557 | | |
| |||
599 | 598 | | |
600 | 599 | | |
601 | 600 | | |
602 | | - | |
603 | | - | |
604 | | - | |
605 | | - | |
606 | | - | |
607 | | - | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | + | |
| 608 | + | |
| 609 | + | |
608 | 610 | | |
609 | | - | |
| 611 | + | |
610 | 612 | | |
611 | 613 | | |
612 | 614 | | |
| |||
688 | 690 | | |
689 | 691 | | |
690 | 692 | | |
691 | | - | |
| 693 | + | |
692 | 694 | | |
693 | 695 | | |
694 | 696 | | |
| |||
879 | 881 | | |
880 | 882 | | |
881 | 883 | | |
882 | | - | |
| 884 | + | |
883 | 885 | | |
884 | 886 | | |
885 | 887 | | |
| |||
1049 | 1051 | | |
1050 | 1052 | | |
1051 | 1053 | | |
1052 | | - | |
1053 | | - | |
1054 | | - | |
1055 | | - | |
1056 | | - | |
1057 | | - | |
1058 | | - | |
1059 | | - | |
1060 | | - | |
| 1054 | + | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
1061 | 1060 | | |
1062 | | - | |
1063 | | - | |
1064 | | - | |
1065 | | - | |
1066 | | - | |
1067 | | - | |
1068 | | - | |
| 1061 | + | |
| 1062 | + | |
| 1063 | + | |
1069 | 1064 | | |
1070 | 1065 | | |
1071 | 1066 | | |
| |||
2112 | 2107 | | |
2113 | 2108 | | |
2114 | 2109 | | |
2115 | | - | |
| 2110 | + | |
2116 | 2111 | | |
2117 | 2112 | | |
2118 | 2113 | | |
2119 | 2114 | | |
2120 | 2115 | | |
2121 | 2116 | | |
2122 | 2117 | | |
2123 | | - | |
| 2118 | + | |
2124 | 2119 | | |
2125 | 2120 | | |
2126 | 2121 | | |
| |||
2275 | 2270 | | |
2276 | 2271 | | |
2277 | 2272 | | |
2278 | | - | |
| 2273 | + | |
2279 | 2274 | | |
2280 | 2275 | | |
2281 | 2276 | | |
| |||
2573 | 2568 | | |
2574 | 2569 | | |
2575 | 2570 | | |
2576 | | - | |
2577 | | - | |
2578 | | - | |
2579 | | - | |
| 2571 | + | |
| 2572 | + | |
| 2573 | + | |
| 2574 | + | |
| 2575 | + | |
| 2576 | + | |
2580 | 2577 | | |
2581 | | - | |
| 2578 | + | |
| 2579 | + | |
| 2580 | + | |
| 2581 | + | |
| 2582 | + | |
| 2583 | + | |
| 2584 | + | |
| 2585 | + | |
| 2586 | + | |
| 2587 | + | |
| 2588 | + | |
2582 | 2589 | | |
2583 | 2590 | | |
2584 | 2591 | | |
2585 | 2592 | | |
2586 | 2593 | | |
2587 | | - | |
| 2594 | + | |
2588 | 2595 | | |
2589 | 2596 | | |
2590 | 2597 | | |
2591 | | - | |
| 2598 | + | |
2592 | 2599 | | |
2593 | 2600 | | |
2594 | 2601 | | |
2595 | | - | |
| 2602 | + | |
2596 | 2603 | | |
2597 | 2604 | | |
2598 | 2605 | | |
| |||
3398 | 3405 | | |
3399 | 3406 | | |
3400 | 3407 | | |
3401 | | - | |
| 3408 | + | |
3402 | 3409 | | |
3403 | 3410 | | |
3404 | 3411 | | |
| |||
3422 | 3429 | | |
3423 | 3430 | | |
3424 | 3431 | | |
3425 | | - | |
| 3432 | + | |
3426 | 3433 | | |
3427 | 3434 | | |
3428 | 3435 | | |
| |||
0 commit comments