Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit e1ff91f

Browse files
committed
Auto merge of rust-lang#83813 - cbeuw:remap-std, r=michaelwoerister
Fix `--remap-path-prefix` not correctly remapping `rust-src` component paths and unify handling of path mapping with virtualized paths This PR fixes rust-lang#73167 ("Binaries end up containing path to the rust-src component despite `--remap-path-prefix`") by preventing real local filesystem paths from reaching compilation output if the path is supposed to be remapped. `RealFileName::Named` introduced in rust-lang#72767 is now renamed as `LocalPath`, because this variant wraps a (most likely) valid local filesystem path. `RealFileName::Devirtualized` is renamed as `Remapped` to be used for remapped path from a real path via `--remap-path-prefix` argument, as well as real path inferred from a virtualized (during compiler bootstrapping) `/rustc/...` path. The `local_path` field is now an `Option<PathBuf>`, as it will be set to `None` before serialisation, so it never reaches any build output. Attempting to serialise a non-`None` `local_path` will cause an assertion faliure. When a path is remapped, a `RealFileName::Remapped` variant is created. The original path is preserved in `local_path` field and the remapped path is saved in `virtual_name` field. Previously, the `local_path` is directly modified which goes against its purpose of "suitable for reading from the file system on the local host". `rustc_span::SourceFile`'s fields `unmapped_path` (introduced by rust-lang#44940) and `name_was_remapped` (introduced by rust-lang#41508 when `--remap-path-prefix` feature originally added) are removed, as these two pieces of information can be inferred from the `name` field: if it's anything other than a `FileName::Real(_)`, or if it is a `FileName::Real(RealFileName::LocalPath(_))`, then clearly `name_was_remapped` would've been false and `unmapped_path` would've been `None`. If it is a `FileName::Real(RealFileName::Remapped{local_path, virtual_name})`, then `name_was_remapped` would've been true and `unmapped_path` would've been `Some(local_path)`. cc `@eddyb` who implemented `/rustc/...` path devirtualisation
2 parents ac923d9 + 37dbe86 commit e1ff91f

File tree

48 files changed

+442
-265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+442
-265
lines changed

compiler/rustc_builtin_macros/src/source_util.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ pub fn expand_file(
6161

6262
let topmost = cx.expansion_cause().unwrap_or(sp);
6363
let loc = cx.source_map().lookup_char_pos(topmost.lo());
64-
base::MacEager::expr(cx.expr_str(topmost, Symbol::intern(&loc.file.name.to_string())))
64+
base::MacEager::expr(
65+
cx.expr_str(topmost, Symbol::intern(&loc.file.name.prefer_remapped().to_string_lossy())),
66+
)
6567
}
6668

6769
pub fn expand_stringify(

compiler/rustc_codegen_cranelift/src/common.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,9 @@ impl<'tcx> FunctionCx<'_, '_, 'tcx> {
334334
let topmost = span.ctxt().outer_expn().expansion_cause().unwrap_or(span);
335335
let caller = self.tcx.sess.source_map().lookup_char_pos(topmost.lo());
336336
let const_loc = self.tcx.const_caller_location((
337-
rustc_span::symbol::Symbol::intern(&caller.file.name.to_string()),
337+
rustc_span::symbol::Symbol::intern(
338+
&caller.file.name.prefer_remapped().to_string_lossy(),
339+
),
338340
caller.line as u32,
339341
caller.col_display as u32 + 1,
340342
));

compiler/rustc_codegen_cranelift/src/debuginfo/line_info.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ fn line_program_add_file(
6666
) -> FileId {
6767
match &file.name {
6868
FileName::Real(path) => {
69-
let (dir_path, file_name) = split_path_dir_and_file(path.stable_name());
69+
let (dir_path, file_name) = split_path_dir_and_file(path.remapped_path_if_available());
7070
let dir_name = osstr_as_utf8_bytes(dir_path.as_os_str());
7171
let file_name = osstr_as_utf8_bytes(file_name);
7272

@@ -87,7 +87,7 @@ fn line_program_add_file(
8787
filename => {
8888
let dir_id = line_program.default_directory();
8989
let dummy_file_name = LineString::new(
90-
filename.to_string().into_bytes(),
90+
filename.prefer_remapped().to_string().into_bytes(),
9191
line_program.encoding(),
9292
line_strings,
9393
);

compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl<'tcx> DebugContext<'tcx> {
6464
// FIXME: how to get version when building out of tree?
6565
// Normally this would use option_env!("CFG_VERSION").
6666
let producer = format!("cg_clif (rustc {})", "unknown version");
67-
let comp_dir = tcx.sess.working_dir.0.to_string_lossy().into_owned();
67+
let comp_dir = tcx.sess.working_dir.to_string_lossy(false).into_owned();
6868
let (name, file_info) = match tcx.sess.local_crate_source_file.clone() {
6969
Some(path) => {
7070
let name = path.to_string_lossy().into_owned();

compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -760,12 +760,12 @@ fn hex_encode(data: &[u8]) -> String {
760760
}
761761

762762
pub fn file_metadata(cx: &CodegenCx<'ll, '_>, source_file: &SourceFile) -> &'ll DIFile {
763-
debug!("file_metadata: file_name: {}", source_file.name);
763+
debug!("file_metadata: file_name: {:?}", source_file.name);
764764

765765
let hash = Some(&source_file.src_hash);
766-
let file_name = Some(source_file.name.to_string());
766+
let file_name = Some(source_file.name.prefer_remapped().to_string());
767767
let directory = if source_file.is_real_file() && !source_file.is_imported() {
768-
Some(cx.sess().working_dir.0.to_string_lossy().to_string())
768+
Some(cx.sess().working_dir.to_string_lossy(false).to_string())
769769
} else {
770770
// If the path comes from an upstream crate we assume it has been made
771771
// independent of the compiler's working directory one way or another.
@@ -993,7 +993,7 @@ pub fn compile_unit_metadata(
993993
let producer = format!("clang LLVM ({})", rustc_producer);
994994

995995
let name_in_debuginfo = name_in_debuginfo.to_string_lossy();
996-
let work_dir = tcx.sess.working_dir.0.to_string_lossy();
996+
let work_dir = tcx.sess.working_dir.to_string_lossy(false);
997997
let flags = "\0";
998998
let out_dir = &tcx.output_filenames(LOCAL_CRATE).out_directory;
999999
let split_name = if tcx.sess.target_can_use_split_dwarf() {

compiler/rustc_codegen_ssa/src/mir/block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
11441144
let topmost = span.ctxt().outer_expn().expansion_cause().unwrap_or(span);
11451145
let caller = tcx.sess.source_map().lookup_char_pos(topmost.lo());
11461146
let const_loc = tcx.const_caller_location((
1147-
Symbol::intern(&caller.file.name.to_string()),
1147+
Symbol::intern(&caller.file.name.prefer_remapped().to_string_lossy()),
11481148
caller.line as u32,
11491149
caller.col_display as u32 + 1,
11501150
));

compiler/rustc_errors/src/annotate_snippet_emitter_writer.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ impl AnnotateSnippetEmitterWriter {
126126
}
127127
// owned: line source, line index, annotations
128128
type Owned = (String, usize, Vec<crate::snippet::Annotation>);
129-
let origin = primary_lo.file.name.to_string();
129+
let filename = primary_lo.file.name.prefer_local();
130+
let origin = filename.to_string_lossy();
130131
let annotated_files: Vec<Owned> = annotated_files
131132
.into_iter()
132133
.flat_map(|annotated_file| {

compiler/rustc_errors/src/emitter.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ impl EmitterWriter {
13241324
buffer_msg_line_offset,
13251325
&format!(
13261326
"{}:{}:{}",
1327-
loc.file.name,
1327+
loc.file.name.prefer_local(),
13281328
sm.doctest_offset_line(&loc.file.name, loc.line),
13291329
loc.col.0 + 1,
13301330
),
@@ -1338,7 +1338,7 @@ impl EmitterWriter {
13381338
0,
13391339
&format!(
13401340
"{}:{}:{}: ",
1341-
loc.file.name,
1341+
loc.file.name.prefer_local(),
13421342
sm.doctest_offset_line(&loc.file.name, loc.line),
13431343
loc.col.0 + 1,
13441344
),
@@ -1362,12 +1362,12 @@ impl EmitterWriter {
13621362
};
13631363
format!(
13641364
"{}:{}{}",
1365-
annotated_file.file.name,
1365+
annotated_file.file.name.prefer_local(),
13661366
sm.doctest_offset_line(&annotated_file.file.name, first_line.line_index),
13671367
col
13681368
)
13691369
} else {
1370-
annotated_file.file.name.to_string()
1370+
format!("{}", annotated_file.file.name.prefer_local())
13711371
};
13721372
buffer.append(buffer_msg_line_offset + 1, &loc, Style::LineAndColumn);
13731373
for _ in 0..max_line_num_len {

compiler/rustc_errors/src/json.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ impl DiagnosticSpan {
468468
});
469469

470470
DiagnosticSpan {
471-
file_name: start.file.name.to_string(),
471+
file_name: start.file.name.prefer_local().to_string(),
472472
byte_start: start.file.original_relative_byte_pos(span.lo()).0,
473473
byte_end: start.file.original_relative_byte_pos(span.hi()).0,
474474
line_start: start.line,

compiler/rustc_expand/src/base.rs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,13 +1084,18 @@ impl<'a> ExtCtxt<'a> {
10841084
// after macro expansion (that is, they are unhygienic).
10851085
if !path.is_absolute() {
10861086
let callsite = span.source_callsite();
1087-
let mut result = match self.source_map().span_to_unmapped_path(callsite) {
1088-
FileName::Real(name) => name.into_local_path(),
1087+
let mut result = match self.source_map().span_to_filename(callsite) {
1088+
FileName::Real(name) => name
1089+
.into_local_path()
1090+
.expect("attempting to resolve a file path in an external file"),
10891091
FileName::DocTest(path, _) => path,
10901092
other => {
10911093
return Err(self.struct_span_err(
10921094
span,
1093-
&format!("cannot resolve relative path in non-file source `{}`", other),
1095+
&format!(
1096+
"cannot resolve relative path in non-file source `{}`",
1097+
other.prefer_local()
1098+
),
10941099
));
10951100
}
10961101
};

0 commit comments

Comments
 (0)