Skip to content

Commit f414e26

Browse files
committed
Sync from rust 249624b
2 parents 14e66db + 4519e68 commit f414e26

File tree

7 files changed

+36
-11
lines changed

7 files changed

+36
-11
lines changed

example/std_example.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![feature(
22
core_intrinsics,
3-
generators,
4-
generator_trait,
3+
coroutines,
4+
coroutine_trait,
55
is_sorted,
66
repr_simd,
77
tuple_trait,
@@ -12,7 +12,7 @@
1212
use std::arch::x86_64::*;
1313
use std::hint::black_box;
1414
use std::io::Write;
15-
use std::ops::Generator;
15+
use std::ops::Coroutine;
1616

1717
fn main() {
1818
println!("{:?}", std::env::args().collect::<Vec<_>>());

scripts/test_rustc_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ rm -r tests/run-make/compressed-debuginfo
152152

153153
rm -r tests/run-make/extern-fn-explicit-align # argument alignment not yet supported
154154

155-
rm tests/ui/codegen/subtyping-enforces-type-equality.rs # assert_assignable bug with Generator's
155+
rm tests/ui/codegen/subtyping-enforces-type-equality.rs # assert_assignable bug with Coroutine's
156156

157157
# bugs in the test suite
158158
# ======================

src/base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ fn codegen_fn_body(fx: &mut FunctionCx<'_, '_, '_>, start_block: Block) {
478478
TerminatorKind::Yield { .. }
479479
| TerminatorKind::FalseEdge { .. }
480480
| TerminatorKind::FalseUnwind { .. }
481-
| TerminatorKind::GeneratorDrop => {
481+
| TerminatorKind::CoroutineDrop => {
482482
bug!("shouldn't exist at codegen {:?}", bb_data.terminator());
483483
}
484484
TerminatorKind::Drop { place, target, unwind: _, replace: _ } => {

src/common.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -414,11 +414,12 @@ impl<'tcx> FunctionCx<'_, '_, 'tcx> {
414414
// Note: must be kept in sync with get_caller_location from cg_ssa
415415
pub(crate) fn get_caller_location(&mut self, mut source_info: mir::SourceInfo) -> CValue<'tcx> {
416416
let span_to_caller_location = |fx: &mut FunctionCx<'_, '_, 'tcx>, span: Span| {
417+
use rustc_session::RemapFileNameExt;
417418
let topmost = span.ctxt().outer_expn().expansion_cause().unwrap_or(span);
418419
let caller = fx.tcx.sess.source_map().lookup_char_pos(topmost.lo());
419420
let const_loc = fx.tcx.const_caller_location((
420421
rustc_span::symbol::Symbol::intern(
421-
&caller.file.name.prefer_remapped().to_string_lossy(),
422+
&caller.file.name.for_codegen(&fx.tcx.sess).to_string_lossy(),
422423
),
423424
caller.line as u32,
424425
caller.col_display as u32 + 1,

src/constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ pub(crate) fn mir_operand_get_const_val<'tcx>(
510510
| TerminatorKind::Drop { .. }
511511
| TerminatorKind::Assert { .. } => {}
512512
TerminatorKind::Yield { .. }
513-
| TerminatorKind::GeneratorDrop
513+
| TerminatorKind::CoroutineDrop
514514
| TerminatorKind::FalseEdge { .. }
515515
| TerminatorKind::FalseUnwind { .. } => unreachable!(),
516516
TerminatorKind::InlineAsm { .. } => return None,

src/debuginfo/line_info.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ impl DebugContext {
9595
match &source_file.name {
9696
FileName::Real(path) => {
9797
let (dir_path, file_name) =
98-
split_path_dir_and_file(path.remapped_path_if_available());
98+
split_path_dir_and_file(if self.should_remap_filepaths {
99+
path.remapped_path_if_available()
100+
} else {
101+
path.local_path_if_available()
102+
});
99103
let dir_name = osstr_as_utf8_bytes(dir_path.as_os_str());
100104
let file_name = osstr_as_utf8_bytes(file_name);
101105

@@ -116,7 +120,14 @@ impl DebugContext {
116120
filename => {
117121
let dir_id = line_program.default_directory();
118122
let dummy_file_name = LineString::new(
119-
filename.prefer_remapped().to_string().into_bytes(),
123+
filename
124+
.display(if self.should_remap_filepaths {
125+
FileNameDisplayPreference::Remapped
126+
} else {
127+
FileNameDisplayPreference::Local
128+
})
129+
.to_string()
130+
.into_bytes(),
120131
line_program.encoding(),
121132
line_strings,
122133
);

src/debuginfo/mod.rs

+15-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ pub(crate) struct DebugContext {
3131

3232
dwarf: DwarfUnit,
3333
unit_range_list: RangeList,
34+
35+
should_remap_filepaths: bool,
3436
}
3537

3638
pub(crate) struct FunctionDebugContext {
@@ -63,12 +65,18 @@ impl DebugContext {
6365

6466
let mut dwarf = DwarfUnit::new(encoding);
6567

68+
let should_remap_filepaths = tcx.sess.should_prefer_remapped_for_codegen();
69+
6670
let producer = producer();
6771
let comp_dir = tcx
6872
.sess
6973
.opts
7074
.working_dir
71-
.to_string_lossy(FileNameDisplayPreference::Remapped)
75+
.to_string_lossy(if should_remap_filepaths {
76+
FileNameDisplayPreference::Remapped
77+
} else {
78+
FileNameDisplayPreference::Local
79+
})
7280
.into_owned();
7381
let (name, file_info) = match tcx.sess.local_crate_source_file() {
7482
Some(path) => {
@@ -102,7 +110,12 @@ impl DebugContext {
102110
root.set(gimli::DW_AT_low_pc, AttributeValue::Address(Address::Constant(0)));
103111
}
104112

105-
DebugContext { endian, dwarf, unit_range_list: RangeList(Vec::new()) }
113+
DebugContext {
114+
endian,
115+
dwarf,
116+
unit_range_list: RangeList(Vec::new()),
117+
should_remap_filepaths,
118+
}
106119
}
107120

108121
pub(crate) fn define_function(

0 commit comments

Comments
 (0)