Hacker News new | ask | show | jobs
by fluffything 1943 days ago
Lifetime analysis doesn’t even show up in Rust compiler profiles. It takes 0 seconds.

Rust lifetime analysis is a function-local pass. It never needs to access any state outside the function. It can be done on all functions in parallel, etc.

You could do Rust alias analysis with 33 MHZ.