]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_span/src/source_map.rs
Rollup merge of #104233 - compiler-errors:issue-104209, r=lcnr
[rust.git] / compiler / rustc_span / src / source_map.rs
1 //! Types for tracking pieces of source code within a crate.
2 //!
3 //! The [`SourceMap`] tracks all the source code used within a single crate, mapping
4 //! from integer byte positions to the original source code location. Each bit
5 //! of source parsed during crate parsing (typically files, in-memory strings,
6 //! or various bits of macro expansion) cover a continuous range of bytes in the
7 //! `SourceMap` and are represented by [`SourceFile`]s. Byte positions are stored in
8 //! [`Span`] and used pervasively in the compiler. They are absolute positions
9 //! within the `SourceMap`, which upon request can be converted to line and column
10 //! information, source code snippets, etc.
11
12 pub use crate::hygiene::{ExpnData, ExpnKind};
13 pub use crate::*;
14
15 use rustc_data_structures::fx::FxHashMap;
16 use rustc_data_structures::stable_hasher::StableHasher;
17 use rustc_data_structures::sync::{AtomicU32, Lrc, MappedReadGuard, ReadGuard, RwLock};
18 use std::hash::Hash;
19 use std::path::{Path, PathBuf};
20 use std::sync::atomic::Ordering;
21 use std::{clone::Clone, cmp};
22 use std::{convert::TryFrom, unreachable};
23
24 use std::fs;
25 use std::io;
26
27 #[cfg(test)]
28 mod tests;
29
30 /// Returns the span itself if it doesn't come from a macro expansion,
31 /// otherwise return the call site span up to the `enclosing_sp` by
32 /// following the `expn_data` chain.
33 pub fn original_sp(sp: Span, enclosing_sp: Span) -> Span {
34     let expn_data1 = sp.ctxt().outer_expn_data();
35     let expn_data2 = enclosing_sp.ctxt().outer_expn_data();
36     if expn_data1.is_root() || !expn_data2.is_root() && expn_data1.call_site == expn_data2.call_site
37     {
38         sp
39     } else {
40         original_sp(expn_data1.call_site, enclosing_sp)
41     }
42 }
43
44 pub mod monotonic {
45     use std::ops::{Deref, DerefMut};
46
47     /// A `MonotonicVec` is a `Vec` which can only be grown.
48     /// Once inserted, an element can never be removed or swapped,
49     /// guaranteeing that any indices into a `MonotonicVec` are stable
50     // This is declared in its own module to ensure that the private
51     // field is inaccessible
52     pub struct MonotonicVec<T>(Vec<T>);
53     impl<T> MonotonicVec<T> {
54         pub fn new(val: Vec<T>) -> MonotonicVec<T> {
55             MonotonicVec(val)
56         }
57
58         pub fn push(&mut self, val: T) {
59             self.0.push(val);
60         }
61     }
62
63     impl<T> Default for MonotonicVec<T> {
64         fn default() -> Self {
65             MonotonicVec::new(vec![])
66         }
67     }
68
69     impl<T> Deref for MonotonicVec<T> {
70         type Target = Vec<T>;
71         fn deref(&self) -> &Self::Target {
72             &self.0
73         }
74     }
75
76     impl<T> !DerefMut for MonotonicVec<T> {}
77 }
78
79 #[derive(Clone, Encodable, Decodable, Debug, Copy, HashStable_Generic)]
80 pub struct Spanned<T> {
81     pub node: T,
82     pub span: Span,
83 }
84
85 pub fn respan<T>(sp: Span, t: T) -> Spanned<T> {
86     Spanned { node: t, span: sp }
87 }
88
89 pub fn dummy_spanned<T>(t: T) -> Spanned<T> {
90     respan(DUMMY_SP, t)
91 }
92
93 // _____________________________________________________________________________
94 // SourceFile, MultiByteChar, FileName, FileLines
95 //
96
97 /// An abstraction over the fs operations used by the Parser.
98 pub trait FileLoader {
99     /// Query the existence of a file.
100     fn file_exists(&self, path: &Path) -> bool;
101
102     /// Read the contents of a UTF-8 file into memory.
103     fn read_file(&self, path: &Path) -> io::Result<String>;
104 }
105
106 /// A FileLoader that uses std::fs to load real files.
107 pub struct RealFileLoader;
108
109 impl FileLoader for RealFileLoader {
110     fn file_exists(&self, path: &Path) -> bool {
111         path.exists()
112     }
113
114     fn read_file(&self, path: &Path) -> io::Result<String> {
115         fs::read_to_string(path)
116     }
117 }
118
119 /// This is a [SourceFile] identifier that is used to correlate source files between
120 /// subsequent compilation sessions (which is something we need to do during
121 /// incremental compilation).
122 ///
123 /// The [StableSourceFileId] also contains the CrateNum of the crate the source
124 /// file was originally parsed for. This way we get two separate entries in
125 /// the [SourceMap] if the same file is part of both the local and an upstream
126 /// crate. Trying to only have one entry for both cases is problematic because
127 /// at the point where we discover that there's a local use of the file in
128 /// addition to the upstream one, we might already have made decisions based on
129 /// the assumption that it's an upstream file. Treating the two files as
130 /// different has no real downsides.
131 #[derive(Copy, Clone, PartialEq, Eq, Hash, Encodable, Decodable, Debug)]
132 pub struct StableSourceFileId {
133     // A hash of the source file's FileName. This is hash so that it's size
134     // is more predictable than if we included the actual FileName value.
135     pub file_name_hash: u64,
136
137     // The CrateNum of the crate this source file was originally parsed for.
138     // We cannot include this information in the hash because at the time
139     // of hashing we don't have the context to map from the CrateNum's numeric
140     // value to a StableCrateId.
141     pub cnum: CrateNum,
142 }
143
144 // FIXME: we need a more globally consistent approach to the problem solved by
145 // StableSourceFileId, perhaps built atop source_file.name_hash.
146 impl StableSourceFileId {
147     pub fn new(source_file: &SourceFile) -> StableSourceFileId {
148         StableSourceFileId::new_from_name(&source_file.name, source_file.cnum)
149     }
150
151     fn new_from_name(name: &FileName, cnum: CrateNum) -> StableSourceFileId {
152         let mut hasher = StableHasher::new();
153         name.hash(&mut hasher);
154         StableSourceFileId { file_name_hash: hasher.finish(), cnum }
155     }
156 }
157
158 // _____________________________________________________________________________
159 // SourceMap
160 //
161
162 #[derive(Default)]
163 pub(super) struct SourceMapFiles {
164     source_files: monotonic::MonotonicVec<Lrc<SourceFile>>,
165     stable_id_to_source_file: FxHashMap<StableSourceFileId, Lrc<SourceFile>>,
166 }
167
168 pub struct SourceMap {
169     /// The address space below this value is currently used by the files in the source map.
170     used_address_space: AtomicU32,
171
172     files: RwLock<SourceMapFiles>,
173     file_loader: Box<dyn FileLoader + Sync + Send>,
174     // This is used to apply the file path remapping as specified via
175     // `--remap-path-prefix` to all `SourceFile`s allocated within this `SourceMap`.
176     path_mapping: FilePathMapping,
177
178     /// The algorithm used for hashing the contents of each source file.
179     hash_kind: SourceFileHashAlgorithm,
180 }
181
182 impl SourceMap {
183     pub fn new(path_mapping: FilePathMapping) -> SourceMap {
184         Self::with_file_loader_and_hash_kind(
185             Box::new(RealFileLoader),
186             path_mapping,
187             SourceFileHashAlgorithm::Md5,
188         )
189     }
190
191     pub fn with_file_loader_and_hash_kind(
192         file_loader: Box<dyn FileLoader + Sync + Send>,
193         path_mapping: FilePathMapping,
194         hash_kind: SourceFileHashAlgorithm,
195     ) -> SourceMap {
196         SourceMap {
197             used_address_space: AtomicU32::new(0),
198             files: Default::default(),
199             file_loader,
200             path_mapping,
201             hash_kind,
202         }
203     }
204
205     pub fn path_mapping(&self) -> &FilePathMapping {
206         &self.path_mapping
207     }
208
209     pub fn file_exists(&self, path: &Path) -> bool {
210         self.file_loader.file_exists(path)
211     }
212
213     pub fn load_file(&self, path: &Path) -> io::Result<Lrc<SourceFile>> {
214         let src = self.file_loader.read_file(path)?;
215         let filename = path.to_owned().into();
216         Ok(self.new_source_file(filename, src))
217     }
218
219     /// Loads source file as a binary blob.
220     ///
221     /// Unlike `load_file`, guarantees that no normalization like BOM-removal
222     /// takes place.
223     pub fn load_binary_file(&self, path: &Path) -> io::Result<Vec<u8>> {
224         // Ideally, this should use `self.file_loader`, but it can't
225         // deal with binary files yet.
226         let bytes = fs::read(path)?;
227
228         // We need to add file to the `SourceMap`, so that it is present
229         // in dep-info. There's also an edge case that file might be both
230         // loaded as a binary via `include_bytes!` and as proper `SourceFile`
231         // via `mod`, so we try to use real file contents and not just an
232         // empty string.
233         let text = std::str::from_utf8(&bytes).unwrap_or("").to_string();
234         self.new_source_file(path.to_owned().into(), text);
235         Ok(bytes)
236     }
237
238     // By returning a `MonotonicVec`, we ensure that consumers cannot invalidate
239     // any existing indices pointing into `files`.
240     pub fn files(&self) -> MappedReadGuard<'_, monotonic::MonotonicVec<Lrc<SourceFile>>> {
241         ReadGuard::map(self.files.borrow(), |files| &files.source_files)
242     }
243
244     pub fn source_file_by_stable_id(
245         &self,
246         stable_id: StableSourceFileId,
247     ) -> Option<Lrc<SourceFile>> {
248         self.files.borrow().stable_id_to_source_file.get(&stable_id).cloned()
249     }
250
251     fn allocate_address_space(&self, size: usize) -> Result<usize, OffsetOverflowError> {
252         let size = u32::try_from(size).map_err(|_| OffsetOverflowError)?;
253
254         loop {
255             let current = self.used_address_space.load(Ordering::Relaxed);
256             let next = current
257                 .checked_add(size)
258                 // Add one so there is some space between files. This lets us distinguish
259                 // positions in the `SourceMap`, even in the presence of zero-length files.
260                 .and_then(|next| next.checked_add(1))
261                 .ok_or(OffsetOverflowError)?;
262
263             if self
264                 .used_address_space
265                 .compare_exchange(current, next, Ordering::Relaxed, Ordering::Relaxed)
266                 .is_ok()
267             {
268                 return Ok(usize::try_from(current).unwrap());
269             }
270         }
271     }
272
273     /// Creates a new `SourceFile`.
274     /// If a file already exists in the `SourceMap` with the same ID, that file is returned
275     /// unmodified.
276     pub fn new_source_file(&self, filename: FileName, src: String) -> Lrc<SourceFile> {
277         self.try_new_source_file(filename, src).unwrap_or_else(|OffsetOverflowError| {
278             eprintln!("fatal error: rustc does not support files larger than 4GB");
279             crate::fatal_error::FatalError.raise()
280         })
281     }
282
283     fn try_new_source_file(
284         &self,
285         filename: FileName,
286         src: String,
287     ) -> Result<Lrc<SourceFile>, OffsetOverflowError> {
288         // Note that filename may not be a valid path, eg it may be `<anon>` etc,
289         // but this is okay because the directory determined by `path.pop()` will
290         // be empty, so the working directory will be used.
291         let (filename, _) = self.path_mapping.map_filename_prefix(&filename);
292
293         let file_id = StableSourceFileId::new_from_name(&filename, LOCAL_CRATE);
294
295         let lrc_sf = match self.source_file_by_stable_id(file_id) {
296             Some(lrc_sf) => lrc_sf,
297             None => {
298                 let start_pos = self.allocate_address_space(src.len())?;
299
300                 let source_file = Lrc::new(SourceFile::new(
301                     filename,
302                     src,
303                     Pos::from_usize(start_pos),
304                     self.hash_kind,
305                 ));
306
307                 // Let's make sure the file_id we generated above actually matches
308                 // the ID we generate for the SourceFile we just created.
309                 debug_assert_eq!(StableSourceFileId::new(&source_file), file_id);
310
311                 let mut files = self.files.borrow_mut();
312
313                 files.source_files.push(source_file.clone());
314                 files.stable_id_to_source_file.insert(file_id, source_file.clone());
315
316                 source_file
317             }
318         };
319         Ok(lrc_sf)
320     }
321
322     /// Allocates a new `SourceFile` representing a source file from an external
323     /// crate. The source code of such an "imported `SourceFile`" is not available,
324     /// but we still know enough to generate accurate debuginfo location
325     /// information for things inlined from other crates.
326     pub fn new_imported_source_file(
327         &self,
328         filename: FileName,
329         src_hash: SourceFileHash,
330         name_hash: u128,
331         source_len: usize,
332         cnum: CrateNum,
333         file_local_lines: Lock<SourceFileLines>,
334         mut file_local_multibyte_chars: Vec<MultiByteChar>,
335         mut file_local_non_narrow_chars: Vec<NonNarrowChar>,
336         mut file_local_normalized_pos: Vec<NormalizedPos>,
337         original_start_pos: BytePos,
338         metadata_index: u32,
339     ) -> Lrc<SourceFile> {
340         let start_pos = self
341             .allocate_address_space(source_len)
342             .expect("not enough address space for imported source file");
343
344         let end_pos = Pos::from_usize(start_pos + source_len);
345         let start_pos = Pos::from_usize(start_pos);
346
347         // Translate these positions into the new global frame of reference,
348         // now that the offset of the SourceFile is known.
349         //
350         // These are all unsigned values. `original_start_pos` may be larger or
351         // smaller than `start_pos`, but `pos` is always larger than both.
352         // Therefore, `(pos - original_start_pos) + start_pos` won't overflow
353         // but `start_pos - original_start_pos` might. So we use the former
354         // form rather than pre-computing the offset into a local variable. The
355         // compiler backend can optimize away the repeated computations in a
356         // way that won't trigger overflow checks.
357         match &mut *file_local_lines.borrow_mut() {
358             SourceFileLines::Lines(lines) => {
359                 for pos in lines {
360                     *pos = (*pos - original_start_pos) + start_pos;
361                 }
362             }
363             SourceFileLines::Diffs(SourceFileDiffs { line_start, .. }) => {
364                 *line_start = (*line_start - original_start_pos) + start_pos;
365             }
366         }
367         for mbc in &mut file_local_multibyte_chars {
368             mbc.pos = (mbc.pos - original_start_pos) + start_pos;
369         }
370         for swc in &mut file_local_non_narrow_chars {
371             *swc = (*swc - original_start_pos) + start_pos;
372         }
373         for nc in &mut file_local_normalized_pos {
374             nc.pos = (nc.pos - original_start_pos) + start_pos;
375         }
376
377         let source_file = Lrc::new(SourceFile {
378             name: filename,
379             src: None,
380             src_hash,
381             external_src: Lock::new(ExternalSource::Foreign {
382                 kind: ExternalSourceKind::AbsentOk,
383                 metadata_index,
384             }),
385             start_pos,
386             end_pos,
387             lines: file_local_lines,
388             multibyte_chars: file_local_multibyte_chars,
389             non_narrow_chars: file_local_non_narrow_chars,
390             normalized_pos: file_local_normalized_pos,
391             name_hash,
392             cnum,
393         });
394
395         let mut files = self.files.borrow_mut();
396
397         files.source_files.push(source_file.clone());
398         files
399             .stable_id_to_source_file
400             .insert(StableSourceFileId::new(&source_file), source_file.clone());
401
402         source_file
403     }
404
405     // If there is a doctest offset, applies it to the line.
406     pub fn doctest_offset_line(&self, file: &FileName, orig: usize) -> usize {
407         match file {
408             FileName::DocTest(_, offset) => {
409                 if *offset < 0 {
410                     orig - (-(*offset)) as usize
411                 } else {
412                     orig + *offset as usize
413                 }
414             }
415             _ => orig,
416         }
417     }
418
419     /// Return the SourceFile that contains the given `BytePos`
420     pub fn lookup_source_file(&self, pos: BytePos) -> Lrc<SourceFile> {
421         let idx = self.lookup_source_file_idx(pos);
422         (*self.files.borrow().source_files)[idx].clone()
423     }
424
425     /// Looks up source information about a `BytePos`.
426     pub fn lookup_char_pos(&self, pos: BytePos) -> Loc {
427         let sf = self.lookup_source_file(pos);
428         let (line, col, col_display) = sf.lookup_file_pos_with_col_display(pos);
429         Loc { file: sf, line, col, col_display }
430     }
431
432     // If the corresponding `SourceFile` is empty, does not return a line number.
433     pub fn lookup_line(&self, pos: BytePos) -> Result<SourceFileAndLine, Lrc<SourceFile>> {
434         let f = self.lookup_source_file(pos);
435
436         match f.lookup_line(pos) {
437             Some(line) => Ok(SourceFileAndLine { sf: f, line }),
438             None => Err(f),
439         }
440     }
441
442     fn span_to_string(&self, sp: Span, filename_display_pref: FileNameDisplayPreference) -> String {
443         if self.files.borrow().source_files.is_empty() || sp.is_dummy() {
444             return "no-location".to_string();
445         }
446
447         let lo = self.lookup_char_pos(sp.lo());
448         let hi = self.lookup_char_pos(sp.hi());
449         format!(
450             "{}:{}:{}: {}:{}",
451             lo.file.name.display(filename_display_pref),
452             lo.line,
453             lo.col.to_usize() + 1,
454             hi.line,
455             hi.col.to_usize() + 1,
456         )
457     }
458
459     /// Format the span location suitable for embedding in build artifacts
460     pub fn span_to_embeddable_string(&self, sp: Span) -> String {
461         self.span_to_string(sp, FileNameDisplayPreference::Remapped)
462     }
463
464     /// Format the span location suitable for pretty printing anotations with relative line numbers
465     pub fn span_to_relative_line_string(&self, sp: Span, relative_to: Span) -> String {
466         if self.files.borrow().source_files.is_empty() || sp.is_dummy() || relative_to.is_dummy() {
467             return "no-location".to_string();
468         }
469
470         let lo = self.lookup_char_pos(sp.lo());
471         let hi = self.lookup_char_pos(sp.hi());
472         let offset = self.lookup_char_pos(relative_to.lo());
473
474         if lo.file.name != offset.file.name || !relative_to.contains(sp) {
475             return self.span_to_embeddable_string(sp);
476         }
477
478         let lo_line = lo.line.saturating_sub(offset.line);
479         let hi_line = hi.line.saturating_sub(offset.line);
480
481         format!(
482             "{}:+{}:{}: +{}:{}",
483             lo.file.name.display(FileNameDisplayPreference::Remapped),
484             lo_line,
485             lo.col.to_usize() + 1,
486             hi_line,
487             hi.col.to_usize() + 1,
488         )
489     }
490
491     /// Format the span location to be printed in diagnostics. Must not be emitted
492     /// to build artifacts as this may leak local file paths. Use span_to_embeddable_string
493     /// for string suitable for embedding.
494     pub fn span_to_diagnostic_string(&self, sp: Span) -> String {
495         self.span_to_string(sp, self.path_mapping.filename_display_for_diagnostics)
496     }
497
498     pub fn span_to_filename(&self, sp: Span) -> FileName {
499         self.lookup_char_pos(sp.lo()).file.name.clone()
500     }
501
502     pub fn filename_for_diagnostics<'a>(&self, filename: &'a FileName) -> FileNameDisplay<'a> {
503         filename.display(self.path_mapping.filename_display_for_diagnostics)
504     }
505
506     pub fn is_multiline(&self, sp: Span) -> bool {
507         let lo = self.lookup_source_file_idx(sp.lo());
508         let hi = self.lookup_source_file_idx(sp.hi());
509         if lo != hi {
510             return true;
511         }
512         let f = (*self.files.borrow().source_files)[lo].clone();
513         f.lookup_line(sp.lo()) != f.lookup_line(sp.hi())
514     }
515
516     #[instrument(skip(self), level = "trace")]
517     pub fn is_valid_span(&self, sp: Span) -> Result<(Loc, Loc), SpanLinesError> {
518         let lo = self.lookup_char_pos(sp.lo());
519         trace!(?lo);
520         let hi = self.lookup_char_pos(sp.hi());
521         trace!(?hi);
522         if lo.file.start_pos != hi.file.start_pos {
523             return Err(SpanLinesError::DistinctSources(DistinctSources {
524                 begin: (lo.file.name.clone(), lo.file.start_pos),
525                 end: (hi.file.name.clone(), hi.file.start_pos),
526             }));
527         }
528         Ok((lo, hi))
529     }
530
531     pub fn is_line_before_span_empty(&self, sp: Span) -> bool {
532         match self.span_to_prev_source(sp) {
533             Ok(s) => s.rsplit_once('\n').unwrap_or(("", &s)).1.trim_start().is_empty(),
534             Err(_) => false,
535         }
536     }
537
538     pub fn span_to_lines(&self, sp: Span) -> FileLinesResult {
539         debug!("span_to_lines(sp={:?})", sp);
540         let (lo, hi) = self.is_valid_span(sp)?;
541         assert!(hi.line >= lo.line);
542
543         if sp.is_dummy() {
544             return Ok(FileLines { file: lo.file, lines: Vec::new() });
545         }
546
547         let mut lines = Vec::with_capacity(hi.line - lo.line + 1);
548
549         // The span starts partway through the first line,
550         // but after that it starts from offset 0.
551         let mut start_col = lo.col;
552
553         // For every line but the last, it extends from `start_col`
554         // and to the end of the line. Be careful because the line
555         // numbers in Loc are 1-based, so we subtract 1 to get 0-based
556         // lines.
557         //
558         // FIXME: now that we handle DUMMY_SP up above, we should consider
559         // asserting that the line numbers here are all indeed 1-based.
560         let hi_line = hi.line.saturating_sub(1);
561         for line_index in lo.line.saturating_sub(1)..hi_line {
562             let line_len = lo.file.get_line(line_index).map_or(0, |s| s.chars().count());
563             lines.push(LineInfo { line_index, start_col, end_col: CharPos::from_usize(line_len) });
564             start_col = CharPos::from_usize(0);
565         }
566
567         // For the last line, it extends from `start_col` to `hi.col`:
568         lines.push(LineInfo { line_index: hi_line, start_col, end_col: hi.col });
569
570         Ok(FileLines { file: lo.file, lines })
571     }
572
573     /// Extracts the source surrounding the given `Span` using the `extract_source` function. The
574     /// extract function takes three arguments: a string slice containing the source, an index in
575     /// the slice for the beginning of the span and an index in the slice for the end of the span.
576     fn span_to_source<F, T>(&self, sp: Span, extract_source: F) -> Result<T, SpanSnippetError>
577     where
578         F: Fn(&str, usize, usize) -> Result<T, SpanSnippetError>,
579     {
580         let local_begin = self.lookup_byte_offset(sp.lo());
581         let local_end = self.lookup_byte_offset(sp.hi());
582
583         if local_begin.sf.start_pos != local_end.sf.start_pos {
584             Err(SpanSnippetError::DistinctSources(DistinctSources {
585                 begin: (local_begin.sf.name.clone(), local_begin.sf.start_pos),
586                 end: (local_end.sf.name.clone(), local_end.sf.start_pos),
587             }))
588         } else {
589             self.ensure_source_file_source_present(local_begin.sf.clone());
590
591             let start_index = local_begin.pos.to_usize();
592             let end_index = local_end.pos.to_usize();
593             let source_len = (local_begin.sf.end_pos - local_begin.sf.start_pos).to_usize();
594
595             if start_index > end_index || end_index > source_len {
596                 return Err(SpanSnippetError::MalformedForSourcemap(MalformedSourceMapPositions {
597                     name: local_begin.sf.name.clone(),
598                     source_len,
599                     begin_pos: local_begin.pos,
600                     end_pos: local_end.pos,
601                 }));
602             }
603
604             if let Some(ref src) = local_begin.sf.src {
605                 extract_source(src, start_index, end_index)
606             } else if let Some(src) = local_begin.sf.external_src.borrow().get_source() {
607                 extract_source(src, start_index, end_index)
608             } else {
609                 Err(SpanSnippetError::SourceNotAvailable { filename: local_begin.sf.name.clone() })
610             }
611         }
612     }
613
614     pub fn is_span_accessible(&self, sp: Span) -> bool {
615         self.span_to_source(sp, |src, start_index, end_index| {
616             Ok(src.get(start_index..end_index).is_some())
617         })
618         .map_or(false, |is_accessible| is_accessible)
619     }
620
621     /// Returns the source snippet as `String` corresponding to the given `Span`.
622     pub fn span_to_snippet(&self, sp: Span) -> Result<String, SpanSnippetError> {
623         self.span_to_source(sp, |src, start_index, end_index| {
624             src.get(start_index..end_index)
625                 .map(|s| s.to_string())
626                 .ok_or(SpanSnippetError::IllFormedSpan(sp))
627         })
628     }
629
630     pub fn span_to_margin(&self, sp: Span) -> Option<usize> {
631         Some(self.indentation_before(sp)?.len())
632     }
633
634     pub fn indentation_before(&self, sp: Span) -> Option<String> {
635         self.span_to_source(sp, |src, start_index, _| {
636             let before = &src[..start_index];
637             let last_line = before.rsplit_once('\n').map_or(before, |(_, last)| last);
638             Ok(last_line
639                 .split_once(|c: char| !c.is_whitespace())
640                 .map_or(last_line, |(indent, _)| indent)
641                 .to_string())
642         })
643         .ok()
644     }
645
646     /// Returns the source snippet as `String` before the given `Span`.
647     pub fn span_to_prev_source(&self, sp: Span) -> Result<String, SpanSnippetError> {
648         self.span_to_source(sp, |src, start_index, _| {
649             src.get(..start_index).map(|s| s.to_string()).ok_or(SpanSnippetError::IllFormedSpan(sp))
650         })
651     }
652
653     /// Extends the given `Span` to just after the previous occurrence of `c`. Return the same span
654     /// if no character could be found or if an error occurred while retrieving the code snippet.
655     pub fn span_extend_to_prev_char(&self, sp: Span, c: char, accept_newlines: bool) -> Span {
656         if let Ok(prev_source) = self.span_to_prev_source(sp) {
657             let prev_source = prev_source.rsplit(c).next().unwrap_or("");
658             if !prev_source.is_empty() && (accept_newlines || !prev_source.contains('\n')) {
659                 return sp.with_lo(BytePos(sp.lo().0 - prev_source.len() as u32));
660             }
661         }
662
663         sp
664     }
665
666     /// Extends the given `Span` to just after the previous occurrence of `pat` when surrounded by
667     /// whitespace. Returns None if the pattern could not be found or if an error occurred while
668     /// retrieving the code snippet.
669     pub fn span_extend_to_prev_str(
670         &self,
671         sp: Span,
672         pat: &str,
673         accept_newlines: bool,
674         include_whitespace: bool,
675     ) -> Option<Span> {
676         // assure that the pattern is delimited, to avoid the following
677         //     fn my_fn()
678         //           ^^^^ returned span without the check
679         //     ---------- correct span
680         let prev_source = self.span_to_prev_source(sp).ok()?;
681         for ws in &[" ", "\t", "\n"] {
682             let pat = pat.to_owned() + ws;
683             if let Some(pat_pos) = prev_source.rfind(&pat) {
684                 let just_after_pat_pos = pat_pos + pat.len() - 1;
685                 let just_after_pat_plus_ws = if include_whitespace {
686                     just_after_pat_pos
687                         + prev_source[just_after_pat_pos..]
688                             .find(|c: char| !c.is_whitespace())
689                             .unwrap_or(0)
690                 } else {
691                     just_after_pat_pos
692                 };
693                 let len = prev_source.len() - just_after_pat_plus_ws;
694                 let prev_source = &prev_source[just_after_pat_plus_ws..];
695                 if accept_newlines || !prev_source.trim_start().contains('\n') {
696                     return Some(sp.with_lo(BytePos(sp.lo().0 - len as u32)));
697                 }
698             }
699         }
700
701         None
702     }
703
704     /// Returns the source snippet as `String` after the given `Span`.
705     pub fn span_to_next_source(&self, sp: Span) -> Result<String, SpanSnippetError> {
706         self.span_to_source(sp, |src, _, end_index| {
707             src.get(end_index..).map(|s| s.to_string()).ok_or(SpanSnippetError::IllFormedSpan(sp))
708         })
709     }
710
711     /// Extends the given `Span` while the next character matches the predicate
712     pub fn span_extend_while(
713         &self,
714         span: Span,
715         f: impl Fn(char) -> bool,
716     ) -> Result<Span, SpanSnippetError> {
717         self.span_to_source(span, |s, _start, end| {
718             let n = s[end..].char_indices().find(|&(_, c)| !f(c)).map_or(s.len() - end, |(i, _)| i);
719             Ok(span.with_hi(span.hi() + BytePos(n as u32)))
720         })
721     }
722
723     /// Extends the given `Span` to just before the next occurrence of `c`.
724     pub fn span_extend_to_next_char(&self, sp: Span, c: char, accept_newlines: bool) -> Span {
725         if let Ok(next_source) = self.span_to_next_source(sp) {
726             let next_source = next_source.split(c).next().unwrap_or("");
727             if !next_source.is_empty() && (accept_newlines || !next_source.contains('\n')) {
728                 return sp.with_hi(BytePos(sp.hi().0 + next_source.len() as u32));
729             }
730         }
731
732         sp
733     }
734
735     /// Extends the given `Span` to contain the entire line it is on.
736     pub fn span_extend_to_line(&self, sp: Span) -> Span {
737         self.span_extend_to_prev_char(self.span_extend_to_next_char(sp, '\n', true), '\n', true)
738     }
739
740     /// Given a `Span`, tries to get a shorter span ending before the first occurrence of `char`
741     /// `c`.
742     pub fn span_until_char(&self, sp: Span, c: char) -> Span {
743         match self.span_to_snippet(sp) {
744             Ok(snippet) => {
745                 let snippet = snippet.split(c).next().unwrap_or("").trim_end();
746                 if !snippet.is_empty() && !snippet.contains('\n') {
747                     sp.with_hi(BytePos(sp.lo().0 + snippet.len() as u32))
748                 } else {
749                     sp
750                 }
751             }
752             _ => sp,
753         }
754     }
755
756     /// Given a 'Span', tries to tell if the next character is '>'
757     /// and the previous charactoer is '<' after skipping white space
758     /// return true if wrapped by '<>'
759     pub fn span_wrapped_by_angle_bracket(&self, span: Span) -> bool {
760         self.span_to_source(span, |src, start_index, end_index| {
761             if src.get(start_index..end_index).is_none() {
762                 return Ok(false);
763             }
764             // test the right side to match '>' after skipping white space
765             let end_src = &src[end_index..];
766             let mut i = 0;
767             while let Some(cc) = end_src.chars().nth(i) {
768                 if cc == ' ' {
769                     i = i + 1;
770                 } else if cc == '>' {
771                     // found > in the right;
772                     break;
773                 } else {
774                     // failed to find '>' return false immediately
775                     return Ok(false);
776                 }
777             }
778             // test the left side to match '<' after skipping white space
779             i = start_index;
780             let start_src = &src[0..start_index];
781             while let Some(cc) = start_src.chars().nth(i) {
782                 if cc == ' ' {
783                     if i == 0 {
784                         return Ok(false);
785                     }
786                     i = i - 1;
787                 } else if cc == '<' {
788                     // found < in the left
789                     break;
790                 } else {
791                     // failed to find '<' return false immediately
792                     return Ok(false);
793                 }
794             }
795             return Ok(true);
796         })
797         .map_or(false, |is_accessible| is_accessible)
798     }
799
800     /// Given a `Span`, tries to get a shorter span ending just after the first occurrence of `char`
801     /// `c`.
802     pub fn span_through_char(&self, sp: Span, c: char) -> Span {
803         if let Ok(snippet) = self.span_to_snippet(sp) {
804             if let Some(offset) = snippet.find(c) {
805                 return sp.with_hi(BytePos(sp.lo().0 + (offset + c.len_utf8()) as u32));
806             }
807         }
808         sp
809     }
810
811     /// Given a `Span`, gets a new `Span` covering the first token and all its trailing whitespace
812     /// or the original `Span`.
813     ///
814     /// If `sp` points to `"let mut x"`, then a span pointing at `"let "` will be returned.
815     pub fn span_until_non_whitespace(&self, sp: Span) -> Span {
816         let mut whitespace_found = false;
817
818         self.span_take_while(sp, |c| {
819             if !whitespace_found && c.is_whitespace() {
820                 whitespace_found = true;
821             }
822
823             !whitespace_found || c.is_whitespace()
824         })
825     }
826
827     /// Given a `Span`, gets a new `Span` covering the first token without its trailing whitespace
828     /// or the original `Span` in case of error.
829     ///
830     /// If `sp` points to `"let mut x"`, then a span pointing at `"let"` will be returned.
831     pub fn span_until_whitespace(&self, sp: Span) -> Span {
832         self.span_take_while(sp, |c| !c.is_whitespace())
833     }
834
835     /// Given a `Span`, gets a shorter one until `predicate` yields `false`.
836     pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
837     where
838         P: for<'r> FnMut(&'r char) -> bool,
839     {
840         if let Ok(snippet) = self.span_to_snippet(sp) {
841             let offset = snippet.chars().take_while(predicate).map(|c| c.len_utf8()).sum::<usize>();
842
843             sp.with_hi(BytePos(sp.lo().0 + (offset as u32)))
844         } else {
845             sp
846         }
847     }
848
849     /// Given a `Span`, return a span ending in the closest `{`. This is useful when you have a
850     /// `Span` enclosing a whole item but we need to point at only the head (usually the first
851     /// line) of that item.
852     ///
853     /// *Only suitable for diagnostics.*
854     pub fn guess_head_span(&self, sp: Span) -> Span {
855         // FIXME: extend the AST items to have a head span, or replace callers with pointing at
856         // the item's ident when appropriate.
857         self.span_until_char(sp, '{')
858     }
859
860     /// Returns a new span representing just the first character of the given span.
861     pub fn start_point(&self, sp: Span) -> Span {
862         let width = {
863             let sp = sp.data();
864             let local_begin = self.lookup_byte_offset(sp.lo);
865             let start_index = local_begin.pos.to_usize();
866             let src = local_begin.sf.external_src.borrow();
867
868             let snippet = if let Some(ref src) = local_begin.sf.src {
869                 Some(&src[start_index..])
870             } else if let Some(src) = src.get_source() {
871                 Some(&src[start_index..])
872             } else {
873                 None
874             };
875
876             match snippet {
877                 None => 1,
878                 Some(snippet) => match snippet.chars().next() {
879                     None => 1,
880                     Some(c) => c.len_utf8(),
881                 },
882             }
883         };
884
885         sp.with_hi(BytePos(sp.lo().0 + width as u32))
886     }
887
888     /// Returns a new span representing just the last character of this span.
889     pub fn end_point(&self, sp: Span) -> Span {
890         let pos = sp.hi().0;
891
892         let width = self.find_width_of_character_at_span(sp, false);
893         let corrected_end_position = pos.checked_sub(width).unwrap_or(pos);
894
895         let end_point = BytePos(cmp::max(corrected_end_position, sp.lo().0));
896         sp.with_lo(end_point)
897     }
898
899     /// Returns a new span representing the next character after the end-point of this span.
900     /// Special cases:
901     /// - if span is a dummy one, returns the same span
902     /// - if next_point reached the end of source, return a span exceeding the end of source,
903     ///   which means sm.span_to_snippet(next_point) will get `Err`
904     /// - respect multi-byte characters
905     pub fn next_point(&self, sp: Span) -> Span {
906         if sp.is_dummy() {
907             return sp;
908         }
909         let start_of_next_point = sp.hi().0;
910
911         let width = self.find_width_of_character_at_span(sp, true);
912         // If the width is 1, then the next span should only contain the next char besides current ending.
913         // However, in the case of a multibyte character, where the width != 1, the next span should
914         // span multiple bytes to include the whole character.
915         let end_of_next_point =
916             start_of_next_point.checked_add(width).unwrap_or(start_of_next_point);
917
918         let end_of_next_point = BytePos(cmp::max(start_of_next_point + 1, end_of_next_point));
919         Span::new(BytePos(start_of_next_point), end_of_next_point, sp.ctxt(), None)
920     }
921
922     /// Returns a new span to check next none-whitespace character or some specified expected character
923     /// If `expect` is none, the first span of non-whitespace character is returned.
924     /// If `expect` presented, the first span of the character `expect` is returned
925     /// Otherwise, the span reached to limit is returned.
926     pub fn span_look_ahead(&self, span: Span, expect: Option<&str>, limit: Option<usize>) -> Span {
927         let mut sp = span;
928         for _ in 0..limit.unwrap_or(100 as usize) {
929             sp = self.next_point(sp);
930             if let Ok(ref snippet) = self.span_to_snippet(sp) {
931                 if expect.map_or(false, |es| snippet == es) {
932                     break;
933                 }
934                 if expect.is_none() && snippet.chars().any(|c| !c.is_whitespace()) {
935                     break;
936                 }
937             }
938         }
939         sp
940     }
941
942     /// Finds the width of the character, either before or after the end of provided span,
943     /// depending on the `forwards` parameter.
944     fn find_width_of_character_at_span(&self, sp: Span, forwards: bool) -> u32 {
945         let sp = sp.data();
946
947         if sp.lo == sp.hi && !forwards {
948             debug!("find_width_of_character_at_span: early return empty span");
949             return 1;
950         }
951
952         let local_begin = self.lookup_byte_offset(sp.lo);
953         let local_end = self.lookup_byte_offset(sp.hi);
954         debug!(
955             "find_width_of_character_at_span: local_begin=`{:?}`, local_end=`{:?}`",
956             local_begin, local_end
957         );
958
959         if local_begin.sf.start_pos != local_end.sf.start_pos {
960             debug!("find_width_of_character_at_span: begin and end are in different files");
961             return 1;
962         }
963
964         let start_index = local_begin.pos.to_usize();
965         let end_index = local_end.pos.to_usize();
966         debug!(
967             "find_width_of_character_at_span: start_index=`{:?}`, end_index=`{:?}`",
968             start_index, end_index
969         );
970
971         // Disregard indexes that are at the start or end of their spans, they can't fit bigger
972         // characters.
973         if (!forwards && end_index == usize::MIN) || (forwards && start_index == usize::MAX) {
974             debug!("find_width_of_character_at_span: start or end of span, cannot be multibyte");
975             return 1;
976         }
977
978         let source_len = (local_begin.sf.end_pos - local_begin.sf.start_pos).to_usize();
979         debug!("find_width_of_character_at_span: source_len=`{:?}`", source_len);
980         // Ensure indexes are also not malformed.
981         if start_index > end_index || end_index > source_len - 1 {
982             debug!("find_width_of_character_at_span: source indexes are malformed");
983             return 1;
984         }
985
986         let src = local_begin.sf.external_src.borrow();
987
988         // We need to extend the snippet to the end of the src rather than to end_index so when
989         // searching forwards for boundaries we've got somewhere to search.
990         let snippet = if let Some(ref src) = local_begin.sf.src {
991             &src[start_index..]
992         } else if let Some(src) = src.get_source() {
993             &src[start_index..]
994         } else {
995             return 1;
996         };
997         debug!("find_width_of_character_at_span: snippet=`{:?}`", snippet);
998
999         let mut target = if forwards { end_index + 1 } else { end_index - 1 };
1000         debug!("find_width_of_character_at_span: initial target=`{:?}`", target);
1001
1002         while !snippet.is_char_boundary(target - start_index) && target < source_len {
1003             target = if forwards {
1004                 target + 1
1005             } else {
1006                 match target.checked_sub(1) {
1007                     Some(target) => target,
1008                     None => {
1009                         break;
1010                     }
1011                 }
1012             };
1013             debug!("find_width_of_character_at_span: target=`{:?}`", target);
1014         }
1015         debug!("find_width_of_character_at_span: final target=`{:?}`", target);
1016
1017         if forwards { (target - end_index) as u32 } else { (end_index - target) as u32 }
1018     }
1019
1020     pub fn get_source_file(&self, filename: &FileName) -> Option<Lrc<SourceFile>> {
1021         // Remap filename before lookup
1022         let filename = self.path_mapping().map_filename_prefix(filename).0;
1023         for sf in self.files.borrow().source_files.iter() {
1024             if filename == sf.name {
1025                 return Some(sf.clone());
1026             }
1027         }
1028         None
1029     }
1030
1031     /// For a global `BytePos`, computes the local offset within the containing `SourceFile`.
1032     pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos {
1033         let idx = self.lookup_source_file_idx(bpos);
1034         let sf = (*self.files.borrow().source_files)[idx].clone();
1035         let offset = bpos - sf.start_pos;
1036         SourceFileAndBytePos { sf, pos: offset }
1037     }
1038
1039     // Returns the index of the `SourceFile` (in `self.files`) that contains `pos`.
1040     // This index is guaranteed to be valid for the lifetime of this `SourceMap`,
1041     // since `source_files` is a `MonotonicVec`
1042     pub fn lookup_source_file_idx(&self, pos: BytePos) -> usize {
1043         self.files
1044             .borrow()
1045             .source_files
1046             .binary_search_by_key(&pos, |key| key.start_pos)
1047             .unwrap_or_else(|p| p - 1)
1048     }
1049
1050     pub fn count_lines(&self) -> usize {
1051         self.files().iter().fold(0, |a, f| a + f.count_lines())
1052     }
1053
1054     pub fn ensure_source_file_source_present(&self, source_file: Lrc<SourceFile>) -> bool {
1055         source_file.add_external_src(|| {
1056             match source_file.name {
1057                 FileName::Real(ref name) if let Some(local_path) = name.local_path() => {
1058                     self.file_loader.read_file(local_path).ok()
1059                 }
1060                 _ => None,
1061             }
1062         })
1063     }
1064
1065     pub fn is_imported(&self, sp: Span) -> bool {
1066         let source_file_index = self.lookup_source_file_idx(sp.lo());
1067         let source_file = &self.files()[source_file_index];
1068         source_file.is_imported()
1069     }
1070
1071     /// Gets the span of a statement. If the statement is a macro expansion, the
1072     /// span in the context of the block span is found. The trailing semicolon is included
1073     /// on a best-effort basis.
1074     pub fn stmt_span(&self, stmt_span: Span, block_span: Span) -> Span {
1075         if !stmt_span.from_expansion() {
1076             return stmt_span;
1077         }
1078         let mac_call = original_sp(stmt_span, block_span);
1079         self.mac_call_stmt_semi_span(mac_call).map_or(mac_call, |s| mac_call.with_hi(s.hi()))
1080     }
1081
1082     /// Tries to find the span of the semicolon of a macro call statement.
1083     /// The input must be the *call site* span of a statement from macro expansion.
1084     /// ```ignore (illustrative)
1085     /// //       v output
1086     ///    mac!();
1087     /// // ^^^^^^ input
1088     /// ```
1089     pub fn mac_call_stmt_semi_span(&self, mac_call: Span) -> Option<Span> {
1090         let span = self.span_extend_while(mac_call, char::is_whitespace).ok()?;
1091         let span = span.shrink_to_hi().with_hi(BytePos(span.hi().0.checked_add(1)?));
1092         if self.span_to_snippet(span).as_deref() != Ok(";") {
1093             return None;
1094         }
1095         Some(span)
1096     }
1097 }
1098
1099 #[derive(Clone)]
1100 pub struct FilePathMapping {
1101     mapping: Vec<(PathBuf, PathBuf)>,
1102     filename_display_for_diagnostics: FileNameDisplayPreference,
1103 }
1104
1105 impl FilePathMapping {
1106     pub fn empty() -> FilePathMapping {
1107         FilePathMapping::new(Vec::new())
1108     }
1109
1110     pub fn new(mapping: Vec<(PathBuf, PathBuf)>) -> FilePathMapping {
1111         let filename_display_for_diagnostics = if mapping.is_empty() {
1112             FileNameDisplayPreference::Local
1113         } else {
1114             FileNameDisplayPreference::Remapped
1115         };
1116
1117         FilePathMapping { mapping, filename_display_for_diagnostics }
1118     }
1119
1120     /// Applies any path prefix substitution as defined by the mapping.
1121     /// The return value is the remapped path and a boolean indicating whether
1122     /// the path was affected by the mapping.
1123     pub fn map_prefix(&self, path: PathBuf) -> (PathBuf, bool) {
1124         if path.as_os_str().is_empty() {
1125             // Exit early if the path is empty and therefore there's nothing to remap.
1126             // This is mostly to reduce spam for `RUSTC_LOG=[remap_path_prefix]`.
1127             return (path, false);
1128         }
1129
1130         return remap_path_prefix(&self.mapping, path);
1131
1132         #[instrument(level = "debug", skip(mapping), ret)]
1133         fn remap_path_prefix(mapping: &[(PathBuf, PathBuf)], path: PathBuf) -> (PathBuf, bool) {
1134             // NOTE: We are iterating over the mapping entries from last to first
1135             //       because entries specified later on the command line should
1136             //       take precedence.
1137             for &(ref from, ref to) in mapping.iter().rev() {
1138                 debug!("Trying to apply {from:?} => {to:?}");
1139
1140                 if let Ok(rest) = path.strip_prefix(from) {
1141                     let remapped = if rest.as_os_str().is_empty() {
1142                         // This is subtle, joining an empty path onto e.g. `foo/bar` will
1143                         // result in `foo/bar/`, that is, there'll be an additional directory
1144                         // separator at the end. This can lead to duplicated directory separators
1145                         // in remapped paths down the line.
1146                         // So, if we have an exact match, we just return that without a call
1147                         // to `Path::join()`.
1148                         to.clone()
1149                     } else {
1150                         to.join(rest)
1151                     };
1152                     debug!("Match - remapped");
1153
1154                     return (remapped, true);
1155                 } else {
1156                     debug!("No match - prefix {from:?} does not match");
1157                 }
1158             }
1159
1160             debug!("not remapped");
1161             (path, false)
1162         }
1163     }
1164
1165     fn map_filename_prefix(&self, file: &FileName) -> (FileName, bool) {
1166         match file {
1167             FileName::Real(realfile) if let RealFileName::LocalPath(local_path) = realfile => {
1168                 let (mapped_path, mapped) = self.map_prefix(local_path.to_path_buf());
1169                 let realfile = if mapped {
1170                     RealFileName::Remapped {
1171                         local_path: Some(local_path.clone()),
1172                         virtual_name: mapped_path,
1173                     }
1174                 } else {
1175                     realfile.clone()
1176                 };
1177                 (FileName::Real(realfile), mapped)
1178             }
1179             FileName::Real(_) => unreachable!("attempted to remap an already remapped filename"),
1180             other => (other.clone(), false),
1181         }
1182     }
1183
1184     /// Expand a relative path to an absolute path with remapping taken into account.
1185     /// Use this when absolute paths are required (e.g. debuginfo or crate metadata).
1186     ///
1187     /// The resulting `RealFileName` will have its `local_path` portion erased if
1188     /// possible (i.e. if there's also a remapped path).
1189     pub fn to_embeddable_absolute_path(
1190         &self,
1191         file_path: RealFileName,
1192         working_directory: &RealFileName,
1193     ) -> RealFileName {
1194         match file_path {
1195             // Anything that's already remapped we don't modify, except for erasing
1196             // the `local_path` portion.
1197             RealFileName::Remapped { local_path: _, virtual_name } => {
1198                 RealFileName::Remapped {
1199                     // We do not want any local path to be exported into metadata
1200                     local_path: None,
1201                     // We use the remapped name verbatim, even if it looks like a relative
1202                     // path. The assumption is that the user doesn't want us to further
1203                     // process paths that have gone through remapping.
1204                     virtual_name,
1205                 }
1206             }
1207
1208             RealFileName::LocalPath(unmapped_file_path) => {
1209                 // If no remapping has been applied yet, try to do so
1210                 let (new_path, was_remapped) = self.map_prefix(unmapped_file_path);
1211                 if was_remapped {
1212                     // It was remapped, so don't modify further
1213                     return RealFileName::Remapped { local_path: None, virtual_name: new_path };
1214                 }
1215
1216                 if new_path.is_absolute() {
1217                     // No remapping has applied to this path and it is absolute,
1218                     // so the working directory cannot influence it either, so
1219                     // we are done.
1220                     return RealFileName::LocalPath(new_path);
1221                 }
1222
1223                 debug_assert!(new_path.is_relative());
1224                 let unmapped_file_path_rel = new_path;
1225
1226                 match working_directory {
1227                     RealFileName::LocalPath(unmapped_working_dir_abs) => {
1228                         let file_path_abs = unmapped_working_dir_abs.join(unmapped_file_path_rel);
1229
1230                         // Although neither `working_directory` nor the file name were subject
1231                         // to path remapping, the concatenation between the two may be. Hence
1232                         // we need to do a remapping here.
1233                         let (file_path_abs, was_remapped) = self.map_prefix(file_path_abs);
1234                         if was_remapped {
1235                             RealFileName::Remapped {
1236                                 // Erase the actual path
1237                                 local_path: None,
1238                                 virtual_name: file_path_abs,
1239                             }
1240                         } else {
1241                             // No kind of remapping applied to this path, so
1242                             // we leave it as it is.
1243                             RealFileName::LocalPath(file_path_abs)
1244                         }
1245                     }
1246                     RealFileName::Remapped {
1247                         local_path: _,
1248                         virtual_name: remapped_working_dir_abs,
1249                     } => {
1250                         // If working_directory has been remapped, then we emit
1251                         // Remapped variant as the expanded path won't be valid
1252                         RealFileName::Remapped {
1253                             local_path: None,
1254                             virtual_name: Path::new(remapped_working_dir_abs)
1255                                 .join(unmapped_file_path_rel),
1256                         }
1257                     }
1258                 }
1259             }
1260         }
1261     }
1262 }