mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
383c1d729e
Avoid a few locks We can use atomics or datastructures tuned for specific access patterns instead of locks. This may be an improvement for parallel rustc, but it's mostly a cleanup making various datastructures only usable in the way they are used right now (append data, never mutate), instead of having a general purpose lock.