rust/compiler/rustc_parse/src
bors 383c1d729e Auto merge of #109117 - oli-obk:locks, r=michaelwoerister
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.
2023-04-05 10:38:02 +00:00
..
lexer Replace another lock with an append-only vec 2023-04-04 09:01:44 +00:00
parser Auto merge of #109117 - oli-obk:locks, r=michaelwoerister 2023-04-05 10:38:02 +00:00
errors.rs Add (..) syntax for RTN 2023-03-28 01:14:28 +00:00
lib.rs Simplify message paths 2023-03-11 22:51:57 +01:00
validate_attr.rs Avoid unnecessary MetaItem/Attribute conversions. 2022-11-29 12:08:57 +11:00