Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marking remapping with an enum, instead of a bool #75616

Closed
wants to merge 11 commits into from
9 changes: 6 additions & 3 deletions src/librustc_errors/emitter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ impl EmitterWriter {
&format!(
"{}:{}:{}",
loc.file.name,
sm.doctest_offset_line(&loc.file.name, loc.line),
sm.doctest_offset_line(&loc.file.name.name(), loc.line),
loc.col.0 + 1,
),
Style::LineAndColumn,
Expand All @@ -1313,7 +1313,7 @@ impl EmitterWriter {
&format!(
"{}:{}:{}: ",
loc.file.name,
sm.doctest_offset_line(&loc.file.name, loc.line),
sm.doctest_offset_line(&loc.file.name.name(), loc.line),
loc.col.0 + 1,
),
Style::LineAndColumn,
Expand All @@ -1337,7 +1337,10 @@ impl EmitterWriter {
format!(
"{}:{}{}",
annotated_file.file.name,
sm.doctest_offset_line(&annotated_file.file.name, first_line.line_index),
sm.doctest_offset_line(
&annotated_file.file.name.name(),
first_line.line_index
),
col
)
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_expand/proc_macro_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ impl server::SourceFile for Rustc<'_> {
Lrc::ptr_eq(file1, file2)
}
fn path(&mut self, file: &Self::SourceFile) -> String {
match file.name {
match file.name.name() {
FileName::Real(ref name) => name
.local_path()
.to_str()
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_interface/passes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ fn write_out_deps(
.iter()
.filter(|fmap| fmap.is_real_file())
.filter(|fmap| !fmap.is_imported())
.map(|fmap| escape_dep_filename(&fmap.unmapped_path.as_ref().unwrap_or(&fmap.name)))
.map(|fmap| escape_dep_filename(&fmap.name.unmapped_path()))
.collect();

if sess.binary_dep_depinfo() {
Expand Down
7 changes: 3 additions & 4 deletions src/librustc_metadata/rmeta/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1635,7 +1635,6 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
// containing the information we need.
let rustc_span::SourceFile {
mut name,
name_was_remapped,
src_hash,
start_pos,
end_pos,
Expand All @@ -1652,7 +1651,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
// on `try_to_translate_virtual_to_real`).
// FIXME(eddyb) we could check `name_was_remapped` here,
// but in practice it seems to be always `false`.
try_to_translate_virtual_to_real(&mut name);
try_to_translate_virtual_to_real(name.name_mut());

let source_length = (end_pos - start_pos).to_usize();

Expand All @@ -1675,8 +1674,8 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
}

let local_version = sess.source_map().new_imported_source_file(
name,
name_was_remapped,
name.name().clone(),
name.was_remapped(),
src_hash,
name_hash,
source_length,
Expand Down
6 changes: 3 additions & 3 deletions src/librustc_metadata/rmeta/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,11 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
(!source_file.is_imported() || self.is_proc_macro)
})
.map(|(_, source_file)| {
let mut adapted = match source_file.name {
let mut adapted = match source_file.name.name() {
// This path of this SourceFile has been modified by
// path-remapping, so we use it verbatim (and avoid
// cloning the whole map in the process).
_ if source_file.name_was_remapped => source_file.clone(),
_ if source_file.name.was_remapped() => source_file.clone(),

// Otherwise expand all paths to absolute paths because
// any relative paths are potentially relative to a
Expand All @@ -460,7 +460,7 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
adapted.name = Path::new(&working_dir).join(name).into();
adapted.name_hash = {
let mut hasher: StableHasher = StableHasher::new();
adapted.name.hash(&mut hasher);
adapted.name.name().hash(&mut hasher);
hasher.finish::<u128>()
};
Lrc::new(adapted)
Expand Down
3 changes: 0 additions & 3 deletions src/librustc_middle/ich/impls_syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ impl<'a> HashStable<StableHashingContext<'a>> for SourceFile {
let SourceFile {
name: _, // We hash the smaller name_hash instead of this
name_hash,
name_was_remapped,
unmapped_path: _,
cnum,
// Do not hash the source as it is not encoded
src: _,
Expand All @@ -72,7 +70,6 @@ impl<'a> HashStable<StableHashingContext<'a>> for SourceFile {
} = *self;

(name_hash as u64).hash_stable(hcx, hasher);
name_was_remapped.hash_stable(hcx, hasher);

src_hash.hash_stable(hcx, hasher);

Expand Down
2 changes: 1 addition & 1 deletion src/librustc_mir/transform/instrument_coverage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ fn make_code_region<'tcx>(tcx: TyCtxt<'tcx>, span: &Span) -> CodeRegion {
);
end
};
match &start.file.name {
match &start.file.name.name() {
FileName::Real(RealFileName::Named(path)) => CodeRegion {
file_name: Symbol::intern(&path.to_string_lossy()),
start_line: start.line as u32,
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_save_analysis/span_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ impl<'a> SpanUtils<'a> {
}

pub fn make_filename_string(&self, file: &SourceFile) -> String {
match &file.name {
FileName::Real(name) if !file.name_was_remapped => {
match file.name.name() {
FileName::Real(name) if !file.name.was_remapped() => {
let path = name.local_path();
if path.is_absolute() {
self.sess
Expand Down
106 changes: 86 additions & 20 deletions src/librustc_span/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1074,18 +1074,91 @@ impl SourceFileHash {
}
}

/// A single source in the `SourceMap`.
#[derive(Clone)]
pub struct SourceFile {
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct SourceFileName {
/// The name of the file that the source came from. Source that doesn't
/// originate from files has names between angle brackets by convention
/// (e.g., `<anon>`).
pub name: FileName,
/// `true` if the `name` field above has been modified by `--remap-path-prefix`.
pub name_was_remapped: bool,
name: FileName,
/// `true` if the name field was modified by `--remap-path-prefix`.
was_remapped: bool,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this field necessary? Could it instead be derived from the state of unmapped_name and name?

/// The unmapped path of the file that the source came from.
/// Set to `None` if the `SourceFile` was imported from an external crate.
pub unmapped_path: Option<FileName>,
unmapped_name: Option<FileName>,
}

impl SourceFileName {
pub fn new(name: FileName, was_remapped: bool, unmapped_name: Option<FileName>) -> Self {
Self { name, was_remapped, unmapped_name }
}

pub fn name(&self) -> &FileName {
&self.name
}

pub fn name_mut(&mut self) -> &mut FileName {
&mut self.name
}

pub fn unmapped_path(&self) -> &FileName {
self.unmapped_name.as_ref().unwrap_or(self.name())
}

fn is_real(&self) -> bool {
self.name.is_real()
}

pub fn was_remapped(&self) -> bool {
self.was_remapped
}
}

/// This conversion assumes that the path was not remapped (ie name == unmapped_name)
impl From<PathBuf> for SourceFileName {
fn from(path: PathBuf) -> Self {
let name: FileName = path.into();
Self::new(name.clone(), false, Some(name))
}
}

impl<S: Encoder> Encodable<S> for SourceFileName {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_struct("SourceFileName", 3, |s| {
s.emit_struct_field("name", 0, |s| self.name.encode(s))?;
s.emit_struct_field("was_remapped", 1, |s| self.was_remapped.encode(s))?;
s.emit_struct_field("unmapped_name", 2, |s| self.unmapped_name.encode(s))?;
Ok(())
})
}
}

impl<D: Decoder> Decodable<D> for SourceFileName {
fn decode(d: &mut D) -> Result<Self, D::Error> {
d.read_struct("SourceFileName", 3, |d| {
let name: FileName = d.read_struct_field("name", 0, |d| Decodable::decode(d))?;
let was_remapped: bool =
d.read_struct_field("was_remapped", 1, |d| Decodable::decode(d))?;
let unmapped_name: Option<FileName> =
d.read_struct_field("unmapped_name", 2, |d| Decodable::decode(d))?;
Ok(Self::new(name, was_remapped, unmapped_name))
})
}
}

impl std::fmt::Display for SourceFileName {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.was_remapped() {
write!(fmt, "SourceFileName({}, remapped from {})", self.name, self.unmapped_path())
} else {
write!(fmt, "SourceFileName({})", self.name)
}
}
}

/// A single source in the `SourceMap`.
#[derive(Clone)]
pub struct SourceFile {
pub name: SourceFileName,
/// The complete source code.
pub src: Option<Lrc<String>>,
/// The source code's hash.
Expand Down Expand Up @@ -1115,7 +1188,6 @@ impl<S: Encoder> Encodable<S> for SourceFile {
fn encode(&self, s: &mut S) -> Result<(), S::Error> {
s.emit_struct("SourceFile", 8, |s| {
s.emit_struct_field("name", 0, |s| self.name.encode(s))?;
s.emit_struct_field("name_was_remapped", 1, |s| self.name_was_remapped.encode(s))?;
s.emit_struct_field("src_hash", 2, |s| self.src_hash.encode(s))?;
s.emit_struct_field("start_pos", 3, |s| self.start_pos.encode(s))?;
s.emit_struct_field("end_pos", 4, |s| self.end_pos.encode(s))?;
Expand Down Expand Up @@ -1184,9 +1256,7 @@ impl<S: Encoder> Encodable<S> for SourceFile {
impl<D: Decoder> Decodable<D> for SourceFile {
fn decode(d: &mut D) -> Result<SourceFile, D::Error> {
d.read_struct("SourceFile", 8, |d| {
let name: FileName = d.read_struct_field("name", 0, |d| Decodable::decode(d))?;
let name_was_remapped: bool =
d.read_struct_field("name_was_remapped", 1, |d| Decodable::decode(d))?;
let name: SourceFileName = d.read_struct_field("name", 0, |d| Decodable::decode(d))?;
let src_hash: SourceFileHash =
d.read_struct_field("src_hash", 2, |d| Decodable::decode(d))?;
let start_pos: BytePos =
Expand Down Expand Up @@ -1230,8 +1300,6 @@ impl<D: Decoder> Decodable<D> for SourceFile {
let cnum: CrateNum = d.read_struct_field("cnum", 10, |d| Decodable::decode(d))?;
Ok(SourceFile {
name,
name_was_remapped,
unmapped_path: None,
start_pos,
end_pos,
src: None,
Expand Down Expand Up @@ -1281,9 +1349,7 @@ impl SourceFile {
analyze_source_file::analyze_source_file(&src[..], start_pos);

SourceFile {
name,
name_was_remapped,
unmapped_path: Some(unmapped_path),
name: SourceFileName::new(name, name_was_remapped, Some(unmapped_path)),
src: Some(Lrc::new(src)),
src_hash,
external_src: Lock::new(ExternalSource::Unneeded),
Expand Down Expand Up @@ -1700,18 +1766,18 @@ pub enum SpanSnippetError {
IllFormedSpan(Span),
DistinctSources(DistinctSources),
MalformedForSourcemap(MalformedSourceMapPositions),
SourceNotAvailable { filename: FileName },
SourceNotAvailable { filename: SourceFileName },
}

#[derive(Clone, PartialEq, Eq, Debug)]
pub struct DistinctSources {
pub begin: (FileName, BytePos),
pub end: (FileName, BytePos),
pub begin: (SourceFileName, BytePos),
pub end: (SourceFileName, BytePos),
}

#[derive(Clone, PartialEq, Eq, Debug)]
pub struct MalformedSourceMapPositions {
pub name: FileName,
pub name: SourceFileName,
pub source_len: usize,
pub begin_pos: BytePos,
pub end_pos: BytePos,
Expand Down
32 changes: 13 additions & 19 deletions src/librustc_span/source_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,15 @@ pub struct StableSourceFileId(u128);
// StableSourceFileId, perhaps built atop source_file.name_hash.
impl StableSourceFileId {
pub fn new(source_file: &SourceFile) -> StableSourceFileId {
let SourceFileName {
name: source_file_name,
was_remapped: source_file_was_remapped,
unmapped_name: source_file_unmapped_path,
} = source_file.name.clone();
StableSourceFileId::new_from_pieces(
&source_file.name,
source_file.name_was_remapped,
source_file.unmapped_path.as_ref(),
&source_file_name,
source_file_was_remapped,
source_file_unmapped_path.as_ref(),
)
}

Expand Down Expand Up @@ -379,9 +384,7 @@ impl SourceMap {
}

let source_file = Lrc::new(SourceFile {
name: filename,
name_was_remapped,
unmapped_path: None,
name: SourceFileName::new(filename, name_was_remapped, None),
src: None,
src_hash,
external_src: Lock::new(ExternalSource::Foreign {
Expand Down Expand Up @@ -540,15 +543,11 @@ impl SourceMap {
}

pub fn span_to_filename(&self, sp: Span) -> FileName {
self.lookup_char_pos(sp.lo()).file.name.clone()
self.lookup_char_pos(sp.lo()).file.name.name().clone()
}

pub fn span_to_unmapped_path(&self, sp: Span) -> FileName {
self.lookup_char_pos(sp.lo())
.file
.unmapped_path
.clone()
.expect("`SourceMap::span_to_unmapped_path` called for imported `SourceFile`?")
self.lookup_char_pos(sp.lo()).file.name.unmapped_path().clone()
}

pub fn is_multiline(&self, sp: Span) -> bool {
Expand Down Expand Up @@ -906,12 +905,7 @@ impl SourceMap {
}

pub fn get_source_file(&self, filename: &FileName) -> Option<Lrc<SourceFile>> {
for sf in self.files.borrow().source_files.iter() {
if *filename == sf.name {
return Some(sf.clone());
}
}
None
self.files.borrow().source_files.iter().find(|sf| sf.name.name() == filename).cloned()
}

/// For a global `BytePos`, computes the local offset within the containing `SourceFile`.
Expand Down Expand Up @@ -1052,7 +1046,7 @@ impl SourceMap {
None
}
pub fn ensure_source_file_source_present(&self, source_file: Lrc<SourceFile>) -> bool {
source_file.add_external_src(|| match source_file.name {
source_file.add_external_src(|| match source_file.name.name() {
FileName::Real(ref name) => self.file_loader.read_file(name.local_path()).ok(),
_ => None,
})
Expand Down