diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2022-05-30 15:59:45 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2022-06-01 10:36:39 +1000 |
| commit | 11d22ae7c572ce35923ced63415e95f0a2ab8361 (patch) | |
| tree | 68ea3d088f7f7d7b88dda504097149f31f5a92ba /compiler/rustc_codegen_llvm/src | |
| parent | 2f250783b168a7cb98d608d015e860232362d678 (diff) | |
| download | rust-11d22ae7c572ce35923ced63415e95f0a2ab8361.tar.gz rust-11d22ae7c572ce35923ced63415e95f0a2ab8361.zip | |
Lazify `SourceFile::lines`.
`SourceFile::lines` is a big part of metadata. It's stored in a compressed form (a difference list) to save disk space. Decoding it is a big fraction of compile time for very small crates/programs. This commit introduces a new type `SourceFileLines` which has a `Lines` form and a `Diffs` form. The latter is used when the metadata is first read, and it is only decoded into the `Lines` form when line data is actually needed. This avoids the decoding cost for many files, especially in `std`. It's a performance win of up to 15% for tiny crates/programs where metadata decoding is a high part of compilation costs. A `Lock` is needed because the methods that access lines data (which can trigger decoding) take `&self` rather than `&mut self`. To allow for this, `SourceFile::lines` now takes a `FnMut` that operates on the lines slice rather than returning the lines slice.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions
