Measures Box::new+type-erasure (2-160ns) vs full send_to (1.9-7.2us) to
identify the real send latency bottleneck. Finding: allocation is only
1-5% of total cost; the dominant overhead is RwLock address_map lookup
and HybridChannel operations.
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
fn_complexity: per-function line count, nesting depth, and unsafe detection.
loc_analysis: per-file breakdown of logic vs comment vs blank vs string lines.
Both support --json, --top N, directory recursion.
Key finding: tick_once is 196 lines (5x runner-up), core is 1,615 logic lines.
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
Remove redundant AtomicUsize/Ordering/Arc re-exports from common/mod.rs
and runtime_mechanics.rs. Zero warnings now.
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
Move HTML content from Rust raw string literals into proper .html
files, replacing each _html.rs with a 1-line include_str!() call.
- runtime-dashboard: dashboard.html (511), actors.html (739),
distribution.html (746)
- simulation-dashboard: dashboard.html (1,436)
Enables proper HTML syntax highlighting and linting in editors.
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
Merge Watch death-notification system into swactor-std, reducing core
surface. WatchRegistry now lives alongside MonitorRegistry in StdExtension,
with CtxWatching and RuntimeWatching extension traits for the public API.
Phase 5b removed from tick_once; notifications delivered via on_actor_death
in phase 7. Core shrinks from 2,636 to 2,440 lines (-196, -7.4%).
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski