You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2025. It is now read-only.
[experimental, do not merge!] a faster implementation of Polonius
This is an experiment to use a more lazy approach to Polonius by only invoking the
location-sensitive analysis when needed and using NLL otherwise. This means all programs that
currently compile will still use NLL for borrow checking, and the experimental location-sensitive
analysis will only be triggered if NLL encounters an invalid access. The idea is that it should not affect
performance significantly for existing programs that compile with NLL. However, it still alters the
computation of active loans in rustc_borrowck, and I want a perf run to measure the performance
impact. I expect a slight regression but hopefully not so much.
r? lqd
0 commit comments