]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_span/src/source_map.rs
Auto merge of #104431 - alistair23:alistair/rv64-profiler, r=Mark-Simulacrum
[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 it's wrapped by "<>" or "()"
757     /// the algorithm searches if the next character is '>' or ')' after skipping white space
758     /// then searches the previous charactoer to match '<' or '(' after skipping white space
759     /// return true if wrapped by '<>' or '()'
760     pub fn span_wrapped_by_angle_or_parentheses(&self, span: Span) -> bool {
761         self.span_to_source(span, |src, start_index, end_index| {
762             if src.get(start_index..end_index).is_none() {
763                 return Ok(false);
764             }
765             // test the right side to match '>' after skipping white space
766             let end_src = &src[end_index..];
767             let mut i = 0;
768             let mut found_right_parentheses = false;
769             let mut found_right_angle = false;
770             while let Some(cc) = end_src.chars().nth(i) {
771                 if cc == ' ' {
772                     i = i + 1;
773                 } else if cc == '>' {
774                     // found > in the right;
775                     found_right_angle = true;
776                     break;
777                 } else if cc == ')' {
778                     found_right_parentheses = true;
779                     break;
780                 } else {
781                     // failed to find '>' return false immediately
782                     return Ok(false);
783                 }
784             }
785             // test the left side to match '<' after skipping white space
786             i = start_index;
787             let start_src = &src[0..start_index];
788             while let Some(cc) = start_src.chars().nth(i) {
789                 if cc == ' ' {
790                     if i == 0 {
791                         return Ok(false);
792                     }
793                     i = i - 1;
794                 } else if cc == '<' {
795                     // found < in the left
796                     if !found_right_angle {
797                         // skip something like "(< )>"
798                         return Ok(false);
799                     }
800                     break;
801                 } else if cc == '(' {
802                     if !found_right_parentheses {
803                         // skip something like "<(>)"
804                         return Ok(false);
805                     }
806                     break;
807                 } else {
808                     // failed to find '<' return false immediately
809                     return Ok(false);
810                 }
811             }
812             return Ok(true);
813         })
814         .map_or(false, |is_accessible| is_accessible)
815     }
816
817     /// Given a `Span`, tries to get a shorter span ending just after the first occurrence of `char`
818     /// `c`.
819     pub fn span_through_char(&self, sp: Span, c: char) -> Span {
820         if let Ok(snippet) = self.span_to_snippet(sp) {
821             if let Some(offset) = snippet.find(c) {
822                 return sp.with_hi(BytePos(sp.lo().0 + (offset + c.len_utf8()) as u32));
823             }
824         }
825         sp
826     }
827
828     /// Given a `Span`, gets a new `Span` covering the first token and all its trailing whitespace
829     /// or the original `Span`.
830     ///
831     /// If `sp` points to `"let mut x"`, then a span pointing at `"let "` will be returned.
832     pub fn span_until_non_whitespace(&self, sp: Span) -> Span {
833         let mut whitespace_found = false;
834
835         self.span_take_while(sp, |c| {
836             if !whitespace_found && c.is_whitespace() {
837                 whitespace_found = true;
838             }
839
840             !whitespace_found || c.is_whitespace()
841         })
842     }
843
844     /// Given a `Span`, gets a new `Span` covering the first token without its trailing whitespace
845     /// or the original `Span` in case of error.
846     ///
847     /// If `sp` points to `"let mut x"`, then a span pointing at `"let"` will be returned.
848     pub fn span_until_whitespace(&self, sp: Span) -> Span {
849         self.span_take_while(sp, |c| !c.is_whitespace())
850     }
851
852     /// Given a `Span`, gets a shorter one until `predicate` yields `false`.
853     pub fn span_take_while<P>(&self, sp: Span, predicate: P) -> Span
854     where
855         P: for<'r> FnMut(&'r char) -> bool,
856     {
857         if let Ok(snippet) = self.span_to_snippet(sp) {
858             let offset = snippet.chars().take_while(predicate).map(|c| c.len_utf8()).sum::<usize>();
859
860             sp.with_hi(BytePos(sp.lo().0 + (offset as u32)))
861         } else {
862             sp
863         }
864     }
865
866     /// Given a `Span`, return a span ending in the closest `{`. This is useful when you have a
867     /// `Span` enclosing a whole item but we need to point at only the head (usually the first
868     /// line) of that item.
869     ///
870     /// *Only suitable for diagnostics.*
871     pub fn guess_head_span(&self, sp: Span) -> Span {
872         // FIXME: extend the AST items to have a head span, or replace callers with pointing at
873         // the item's ident when appropriate.
874         self.span_until_char(sp, '{')
875     }
876
877     /// Returns a new span representing just the first character of the given span.
878     pub fn start_point(&self, sp: Span) -> Span {
879         let width = {
880             let sp = sp.data();
881             let local_begin = self.lookup_byte_offset(sp.lo);
882             let start_index = local_begin.pos.to_usize();
883             let src = local_begin.sf.external_src.borrow();
884
885             let snippet = if let Some(ref src) = local_begin.sf.src {
886                 Some(&src[start_index..])
887             } else if let Some(src) = src.get_source() {
888                 Some(&src[start_index..])
889             } else {
890                 None
891             };
892
893             match snippet {
894                 None => 1,
895                 Some(snippet) => match snippet.chars().next() {
896                     None => 1,
897                     Some(c) => c.len_utf8(),
898                 },
899             }
900         };
901
902         sp.with_hi(BytePos(sp.lo().0 + width as u32))
903     }
904
905     /// Returns a new span representing just the last character of this span.
906     pub fn end_point(&self, sp: Span) -> Span {
907         let pos = sp.hi().0;
908
909         let width = self.find_width_of_character_at_span(sp, false);
910         let corrected_end_position = pos.checked_sub(width).unwrap_or(pos);
911
912         let end_point = BytePos(cmp::max(corrected_end_position, sp.lo().0));
913         sp.with_lo(end_point)
914     }
915
916     /// Returns a new span representing the next character after the end-point of this span.
917     /// Special cases:
918     /// - if span is a dummy one, returns the same span
919     /// - if next_point reached the end of source, return a span exceeding the end of source,
920     ///   which means sm.span_to_snippet(next_point) will get `Err`
921     /// - respect multi-byte characters
922     pub fn next_point(&self, sp: Span) -> Span {
923         if sp.is_dummy() {
924             return sp;
925         }
926         let start_of_next_point = sp.hi().0;
927
928         let width = self.find_width_of_character_at_span(sp, true);
929         // If the width is 1, then the next span should only contain the next char besides current ending.
930         // However, in the case of a multibyte character, where the width != 1, the next span should
931         // span multiple bytes to include the whole character.
932         let end_of_next_point =
933             start_of_next_point.checked_add(width).unwrap_or(start_of_next_point);
934
935         let end_of_next_point = BytePos(cmp::max(start_of_next_point + 1, end_of_next_point));
936         Span::new(BytePos(start_of_next_point), end_of_next_point, sp.ctxt(), None)
937     }
938
939     /// Returns a new span to check next none-whitespace character or some specified expected character
940     /// If `expect` is none, the first span of non-whitespace character is returned.
941     /// If `expect` presented, the first span of the character `expect` is returned
942     /// Otherwise, the span reached to limit is returned.
943     pub fn span_look_ahead(&self, span: Span, expect: Option<&str>, limit: Option<usize>) -> Span {
944         let mut sp = span;
945         for _ in 0..limit.unwrap_or(100 as usize) {
946             sp = self.next_point(sp);
947             if let Ok(ref snippet) = self.span_to_snippet(sp) {
948                 if expect.map_or(false, |es| snippet == es) {
949                     break;
950                 }
951                 if expect.is_none() && snippet.chars().any(|c| !c.is_whitespace()) {
952                     break;
953                 }
954             }
955         }
956         sp
957     }
958
959     /// Finds the width of the character, either before or after the end of provided span,
960     /// depending on the `forwards` parameter.
961     fn find_width_of_character_at_span(&self, sp: Span, forwards: bool) -> u32 {
962         let sp = sp.data();
963
964         if sp.lo == sp.hi && !forwards {
965             debug!("find_width_of_character_at_span: early return empty span");
966             return 1;
967         }
968
969         let local_begin = self.lookup_byte_offset(sp.lo);
970         let local_end = self.lookup_byte_offset(sp.hi);
971         debug!(
972             "find_width_of_character_at_span: local_begin=`{:?}`, local_end=`{:?}`",
973             local_begin, local_end
974         );
975
976         if local_begin.sf.start_pos != local_end.sf.start_pos {
977             debug!("find_width_of_character_at_span: begin and end are in different files");
978             return 1;
979         }
980
981         let start_index = local_begin.pos.to_usize();
982         let end_index = local_end.pos.to_usize();
983         debug!(
984             "find_width_of_character_at_span: start_index=`{:?}`, end_index=`{:?}`",
985             start_index, end_index
986         );
987
988         // Disregard indexes that are at the start or end of their spans, they can't fit bigger
989         // characters.
990         if (!forwards && end_index == usize::MIN) || (forwards && start_index == usize::MAX) {
991             debug!("find_width_of_character_at_span: start or end of span, cannot be multibyte");
992             return 1;
993         }
994
995         let source_len = (local_begin.sf.end_pos - local_begin.sf.start_pos).to_usize();
996         debug!("find_width_of_character_at_span: source_len=`{:?}`", source_len);
997         // Ensure indexes are also not malformed.
998         if start_index > end_index || end_index > source_len - 1 {
999             debug!("find_width_of_character_at_span: source indexes are malformed");
1000             return 1;
1001         }
1002
1003         let src = local_begin.sf.external_src.borrow();
1004
1005         // We need to extend the snippet to the end of the src rather than to end_index so when
1006         // searching forwards for boundaries we've got somewhere to search.
1007         let snippet = if let Some(ref src) = local_begin.sf.src {
1008             &src[start_index..]
1009         } else if let Some(src) = src.get_source() {
1010             &src[start_index..]
1011         } else {
1012             return 1;
1013         };
1014         debug!("find_width_of_character_at_span: snippet=`{:?}`", snippet);
1015
1016         let mut target = if forwards { end_index + 1 } else { end_index - 1 };
1017         debug!("find_width_of_character_at_span: initial target=`{:?}`", target);
1018
1019         while !snippet.is_char_boundary(target - start_index) && target < source_len {
1020             target = if forwards {
1021                 target + 1
1022             } else {
1023                 match target.checked_sub(1) {
1024                     Some(target) => target,
1025                     None => {
1026                         break;
1027                     }
1028                 }
1029             };
1030             debug!("find_width_of_character_at_span: target=`{:?}`", target);
1031         }
1032         debug!("find_width_of_character_at_span: final target=`{:?}`", target);
1033
1034         if forwards { (target - end_index) as u32 } else { (end_index - target) as u32 }
1035     }
1036
1037     pub fn get_source_file(&self, filename: &FileName) -> Option<Lrc<SourceFile>> {
1038         // Remap filename before lookup
1039         let filename = self.path_mapping().map_filename_prefix(filename).0;
1040         for sf in self.files.borrow().source_files.iter() {
1041             if filename == sf.name {
1042                 return Some(sf.clone());
1043             }
1044         }
1045         None
1046     }
1047
1048     /// For a global `BytePos`, computes the local offset within the containing `SourceFile`.
1049     pub fn lookup_byte_offset(&self, bpos: BytePos) -> SourceFileAndBytePos {
1050         let idx = self.lookup_source_file_idx(bpos);
1051         let sf = (*self.files.borrow().source_files)[idx].clone();
1052         let offset = bpos - sf.start_pos;
1053         SourceFileAndBytePos { sf, pos: offset }
1054     }
1055
1056     // Returns the index of the `SourceFile` (in `self.files`) that contains `pos`.
1057     // This index is guaranteed to be valid for the lifetime of this `SourceMap`,
1058     // since `source_files` is a `MonotonicVec`
1059     pub fn lookup_source_file_idx(&self, pos: BytePos) -> usize {
1060         self.files
1061             .borrow()
1062             .source_files
1063             .binary_search_by_key(&pos, |key| key.start_pos)
1064             .unwrap_or_else(|p| p - 1)
1065     }
1066
1067     pub fn count_lines(&self) -> usize {
1068         self.files().iter().fold(0, |a, f| a + f.count_lines())
1069     }
1070
1071     pub fn ensure_source_file_source_present(&self, source_file: Lrc<SourceFile>) -> bool {
1072         source_file.add_external_src(|| {
1073             match source_file.name {
1074                 FileName::Real(ref name) if let Some(local_path) = name.local_path() => {
1075                     self.file_loader.read_file(local_path).ok()
1076                 }
1077                 _ => None,
1078             }
1079         })
1080     }
1081
1082     pub fn is_imported(&self, sp: Span) -> bool {
1083         let source_file_index = self.lookup_source_file_idx(sp.lo());
1084         let source_file = &self.files()[source_file_index];
1085         source_file.is_imported()
1086     }
1087
1088     /// Gets the span of a statement. If the statement is a macro expansion, the
1089     /// span in the context of the block span is found. The trailing semicolon is included
1090     /// on a best-effort basis.
1091     pub fn stmt_span(&self, stmt_span: Span, block_span: Span) -> Span {
1092         if !stmt_span.from_expansion() {
1093             return stmt_span;
1094         }
1095         let mac_call = original_sp(stmt_span, block_span);
1096         self.mac_call_stmt_semi_span(mac_call).map_or(mac_call, |s| mac_call.with_hi(s.hi()))
1097     }
1098
1099     /// Tries to find the span of the semicolon of a macro call statement.
1100     /// The input must be the *call site* span of a statement from macro expansion.
1101     /// ```ignore (illustrative)
1102     /// //       v output
1103     ///    mac!();
1104     /// // ^^^^^^ input
1105     /// ```
1106     pub fn mac_call_stmt_semi_span(&self, mac_call: Span) -> Option<Span> {
1107         let span = self.span_extend_while(mac_call, char::is_whitespace).ok()?;
1108         let span = span.shrink_to_hi().with_hi(BytePos(span.hi().0.checked_add(1)?));
1109         if self.span_to_snippet(span).as_deref() != Ok(";") {
1110             return None;
1111         }
1112         Some(span)
1113     }
1114 }
1115
1116 #[derive(Clone)]
1117 pub struct FilePathMapping {
1118     mapping: Vec<(PathBuf, PathBuf)>,
1119     filename_display_for_diagnostics: FileNameDisplayPreference,
1120 }
1121
1122 impl FilePathMapping {
1123     pub fn empty() -> FilePathMapping {
1124         FilePathMapping::new(Vec::new())
1125     }
1126
1127     pub fn new(mapping: Vec<(PathBuf, PathBuf)>) -> FilePathMapping {
1128         let filename_display_for_diagnostics = if mapping.is_empty() {
1129             FileNameDisplayPreference::Local
1130         } else {
1131             FileNameDisplayPreference::Remapped
1132         };
1133
1134         FilePathMapping { mapping, filename_display_for_diagnostics }
1135     }
1136
1137     /// Applies any path prefix substitution as defined by the mapping.
1138     /// The return value is the remapped path and a boolean indicating whether
1139     /// the path was affected by the mapping.
1140     pub fn map_prefix(&self, path: PathBuf) -> (PathBuf, bool) {
1141         if path.as_os_str().is_empty() {
1142             // Exit early if the path is empty and therefore there's nothing to remap.
1143             // This is mostly to reduce spam for `RUSTC_LOG=[remap_path_prefix]`.
1144             return (path, false);
1145         }
1146
1147         return remap_path_prefix(&self.mapping, path);
1148
1149         #[instrument(level = "debug", skip(mapping), ret)]
1150         fn remap_path_prefix(mapping: &[(PathBuf, PathBuf)], path: PathBuf) -> (PathBuf, bool) {
1151             // NOTE: We are iterating over the mapping entries from last to first
1152             //       because entries specified later on the command line should
1153             //       take precedence.
1154             for &(ref from, ref to) in mapping.iter().rev() {
1155                 debug!("Trying to apply {from:?} => {to:?}");
1156
1157                 if let Ok(rest) = path.strip_prefix(from) {
1158                     let remapped = if rest.as_os_str().is_empty() {
1159                         // This is subtle, joining an empty path onto e.g. `foo/bar` will
1160                         // result in `foo/bar/`, that is, there'll be an additional directory
1161                         // separator at the end. This can lead to duplicated directory separators
1162                         // in remapped paths down the line.
1163                         // So, if we have an exact match, we just return that without a call
1164                         // to `Path::join()`.
1165                         to.clone()
1166                     } else {
1167                         to.join(rest)
1168                     };
1169                     debug!("Match - remapped");
1170
1171                     return (remapped, true);
1172                 } else {
1173                     debug!("No match - prefix {from:?} does not match");
1174                 }
1175             }
1176
1177             debug!("not remapped");
1178             (path, false)
1179         }
1180     }
1181
1182     fn map_filename_prefix(&self, file: &FileName) -> (FileName, bool) {
1183         match file {
1184             FileName::Real(realfile) if let RealFileName::LocalPath(local_path) = realfile => {
1185                 let (mapped_path, mapped) = self.map_prefix(local_path.to_path_buf());
1186                 let realfile = if mapped {
1187                     RealFileName::Remapped {
1188                         local_path: Some(local_path.clone()),
1189                         virtual_name: mapped_path,
1190                     }
1191                 } else {
1192                     realfile.clone()
1193                 };
1194                 (FileName::Real(realfile), mapped)
1195             }
1196             FileName::Real(_) => unreachable!("attempted to remap an already remapped filename"),
1197             other => (other.clone(), false),
1198         }
1199     }
1200
1201     /// Expand a relative path to an absolute path with remapping taken into account.
1202     /// Use this when absolute paths are required (e.g. debuginfo or crate metadata).
1203     ///
1204     /// The resulting `RealFileName` will have its `local_path` portion erased if
1205     /// possible (i.e. if there's also a remapped path).
1206     pub fn to_embeddable_absolute_path(
1207         &self,
1208         file_path: RealFileName,
1209         working_directory: &RealFileName,
1210     ) -> RealFileName {
1211         match file_path {
1212             // Anything that's already remapped we don't modify, except for erasing
1213             // the `local_path` portion.
1214             RealFileName::Remapped { local_path: _, virtual_name } => {
1215                 RealFileName::Remapped {
1216                     // We do not want any local path to be exported into metadata
1217                     local_path: None,
1218                     // We use the remapped name verbatim, even if it looks like a relative
1219                     // path. The assumption is that the user doesn't want us to further
1220                     // process paths that have gone through remapping.
1221                     virtual_name,
1222                 }
1223             }
1224
1225             RealFileName::LocalPath(unmapped_file_path) => {
1226                 // If no remapping has been applied yet, try to do so
1227                 let (new_path, was_remapped) = self.map_prefix(unmapped_file_path);
1228                 if was_remapped {
1229                     // It was remapped, so don't modify further
1230                     return RealFileName::Remapped { local_path: None, virtual_name: new_path };
1231                 }
1232
1233                 if new_path.is_absolute() {
1234                     // No remapping has applied to this path and it is absolute,
1235                     // so the working directory cannot influence it either, so
1236                     // we are done.
1237                     return RealFileName::LocalPath(new_path);
1238                 }
1239
1240                 debug_assert!(new_path.is_relative());
1241                 let unmapped_file_path_rel = new_path;
1242
1243                 match working_directory {
1244                     RealFileName::LocalPath(unmapped_working_dir_abs) => {
1245                         let file_path_abs = unmapped_working_dir_abs.join(unmapped_file_path_rel);
1246
1247                         // Although neither `working_directory` nor the file name were subject
1248                         // to path remapping, the concatenation between the two may be. Hence
1249                         // we need to do a remapping here.
1250                         let (file_path_abs, was_remapped) = self.map_prefix(file_path_abs);
1251                         if was_remapped {
1252                             RealFileName::Remapped {
1253                                 // Erase the actual path
1254                                 local_path: None,
1255                                 virtual_name: file_path_abs,
1256                             }
1257                         } else {
1258                             // No kind of remapping applied to this path, so
1259                             // we leave it as it is.
1260                             RealFileName::LocalPath(file_path_abs)
1261                         }
1262                     }
1263                     RealFileName::Remapped {
1264                         local_path: _,
1265                         virtual_name: remapped_working_dir_abs,
1266                     } => {
1267                         // If working_directory has been remapped, then we emit
1268                         // Remapped variant as the expanded path won't be valid
1269                         RealFileName::Remapped {
1270                             local_path: None,
1271                             virtual_name: Path::new(remapped_working_dir_abs)
1272                                 .join(unmapped_file_path_rel),
1273                         }
1274                     }
1275                 }
1276             }
1277         }
1278     }
1279 }