Skip to content

Commit 022720b

Browse files
committed
Auto merge of #86091 - JohnTitor:rollup-wceot6d, r=JohnTitor
Rollup of 6 pull requests Successful merges: - #84262 (Fix ICE during type layout when there's a `[type error]`) - #85973 (Replace a `match` with an `if let`) - #85996 (rustbuild: take changes to the standard library into account for `download-rustc`) - #86016 (Unify duplicate linker_and_flavor methods in rustc_codegen_{cranelift,ssa}.) - #86025 (Remove the install prefix from the rpath set when using -Crpath) - #86081 (Use `try_into` instead of asserting manually) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents cc9610b + 7530c7d commit 022720b

File tree

11 files changed

+104
-167
lines changed

11 files changed

+104
-167
lines changed

compiler/rustc_codegen_cranelift/src/toolchain.rs

+1-89
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
33
use std::path::PathBuf;
44

5-
use rustc_middle::bug;
5+
use rustc_codegen_ssa::back::link::linker_and_flavor;
66
use rustc_session::Session;
7-
use rustc_target::spec::LinkerFlavor;
87

98
/// Tries to infer the path of a binary for the target toolchain from the linker name.
109
pub(crate) fn get_toolchain_binary(sess: &Session, tool: &str) -> PathBuf {
@@ -30,90 +29,3 @@ pub(crate) fn get_toolchain_binary(sess: &Session, tool: &str) -> PathBuf {
3029

3130
linker
3231
}
33-
34-
// Adapted from https://github.com/rust-lang/rust/blob/5db778affee7c6600c8e7a177c48282dab3f6292/src/librustc_codegen_ssa/back/link.rs#L848-L931
35-
fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
36-
fn infer_from(
37-
sess: &Session,
38-
linker: Option<PathBuf>,
39-
flavor: Option<LinkerFlavor>,
40-
) -> Option<(PathBuf, LinkerFlavor)> {
41-
match (linker, flavor) {
42-
(Some(linker), Some(flavor)) => Some((linker, flavor)),
43-
// only the linker flavor is known; use the default linker for the selected flavor
44-
(None, Some(flavor)) => Some((
45-
PathBuf::from(match flavor {
46-
LinkerFlavor::Em => {
47-
if cfg!(windows) {
48-
"emcc.bat"
49-
} else {
50-
"emcc"
51-
}
52-
}
53-
LinkerFlavor::Gcc => {
54-
if cfg!(any(target_os = "solaris", target_os = "illumos")) {
55-
// On historical Solaris systems, "cc" may have
56-
// been Sun Studio, which is not flag-compatible
57-
// with "gcc". This history casts a long shadow,
58-
// and many modern illumos distributions today
59-
// ship GCC as "gcc" without also making it
60-
// available as "cc".
61-
"gcc"
62-
} else {
63-
"cc"
64-
}
65-
}
66-
LinkerFlavor::Ld => "ld",
67-
LinkerFlavor::Msvc => "link.exe",
68-
LinkerFlavor::Lld(_) => "lld",
69-
LinkerFlavor::PtxLinker => "rust-ptx-linker",
70-
LinkerFlavor::BpfLinker => "bpf-linker",
71-
}),
72-
flavor,
73-
)),
74-
(Some(linker), None) => {
75-
let stem = linker.file_stem().and_then(|stem| stem.to_str()).unwrap_or_else(|| {
76-
sess.fatal("couldn't extract file stem from specified linker")
77-
});
78-
79-
let flavor = if stem == "emcc" {
80-
LinkerFlavor::Em
81-
} else if stem == "gcc"
82-
|| stem.ends_with("-gcc")
83-
|| stem == "clang"
84-
|| stem.ends_with("-clang")
85-
{
86-
LinkerFlavor::Gcc
87-
} else if stem == "ld" || stem == "ld.lld" || stem.ends_with("-ld") {
88-
LinkerFlavor::Ld
89-
} else if stem == "link" || stem == "lld-link" {
90-
LinkerFlavor::Msvc
91-
} else if stem == "lld" || stem == "rust-lld" {
92-
LinkerFlavor::Lld(sess.target.lld_flavor)
93-
} else {
94-
// fall back to the value in the target spec
95-
sess.target.linker_flavor
96-
};
97-
98-
Some((linker, flavor))
99-
}
100-
(None, None) => None,
101-
}
102-
}
103-
104-
// linker and linker flavor specified via command line have precedence over what the target
105-
// specification specifies
106-
if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), sess.opts.cg.linker_flavor) {
107-
return ret;
108-
}
109-
110-
if let Some(ret) = infer_from(
111-
sess,
112-
sess.target.linker.clone().map(PathBuf::from),
113-
Some(sess.target.linker_flavor),
114-
) {
115-
return ret;
116-
}
117-
118-
bug!("Not enough information provided to determine how to invoke the linker");
119-
}

compiler/rustc_codegen_ssa/src/back/link.rs

+3-12
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,8 @@ pub fn ignored_for_lto(sess: &Session, info: &CrateInfo, cnum: CrateNum) -> bool
11471147
&& (info.compiler_builtins == Some(cnum) || info.is_no_builtins.contains(&cnum))
11481148
}
11491149

1150-
fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
1150+
// This functions tries to determine the appropriate linker (and corresponding LinkerFlavor) to use
1151+
pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
11511152
fn infer_from(
11521153
sess: &Session,
11531154
linker: Option<PathBuf>,
@@ -1714,24 +1715,14 @@ fn add_rpath_args(
17141715
) {
17151716
// FIXME (#2397): At some point we want to rpath our guesses as to
17161717
// where extern libraries might live, based on the
1717-
// addl_lib_search_paths
1718+
// add_lib_search_paths
17181719
if sess.opts.cg.rpath {
1719-
let target_triple = sess.opts.target_triple.triple();
1720-
let mut get_install_prefix_lib_path = || {
1721-
let install_prefix = option_env!("CFG_PREFIX").expect("CFG_PREFIX");
1722-
let tlib = rustc_target::target_rustlib_path(&sess.sysroot, target_triple).join("lib");
1723-
let mut path = PathBuf::from(install_prefix);
1724-
path.push(&tlib);
1725-
1726-
path
1727-
};
17281720
let mut rpath_config = RPathConfig {
17291721
used_crates: &codegen_results.crate_info.used_crates_dynamic,
17301722
out_filename: out_filename.to_path_buf(),
17311723
has_rpath: sess.target.has_rpath,
17321724
is_like_osx: sess.target.is_like_osx,
17331725
linker_is_gnu: sess.target.linker_is_gnu,
1734-
get_install_prefix_lib_path: &mut get_install_prefix_lib_path,
17351726
};
17361727
cmd.args(&rpath::get_rpath_flags(&mut rpath_config));
17371728
}

compiler/rustc_codegen_ssa/src/back/rpath.rs

+4-23
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ pub struct RPathConfig<'a> {
1313
pub is_like_osx: bool,
1414
pub has_rpath: bool,
1515
pub linker_is_gnu: bool,
16-
pub get_install_prefix_lib_path: &'a mut dyn FnMut() -> PathBuf,
1716
}
1817

1918
pub fn get_rpath_flags(config: &mut RPathConfig<'_>) -> Vec<String> {
@@ -63,24 +62,13 @@ fn get_rpaths(config: &mut RPathConfig<'_>, libs: &[PathBuf]) -> Vec<String> {
6362
// Use relative paths to the libraries. Binaries can be moved
6463
// as long as they maintain the relative relationship to the
6564
// crates they depend on.
66-
let rel_rpaths = get_rpaths_relative_to_output(config, libs);
65+
let rpaths = get_rpaths_relative_to_output(config, libs);
6766

68-
// And a final backup rpath to the global library location.
69-
let fallback_rpaths = vec![get_install_prefix_rpath(config)];
70-
71-
fn log_rpaths(desc: &str, rpaths: &[String]) {
72-
debug!("{} rpaths:", desc);
73-
for rpath in rpaths {
74-
debug!(" {}", *rpath);
75-
}
67+
debug!("rpaths:");
68+
for rpath in &rpaths {
69+
debug!(" {}", rpath);
7670
}
7771

78-
log_rpaths("relative", &rel_rpaths);
79-
log_rpaths("fallback", &fallback_rpaths);
80-
81-
let mut rpaths = rel_rpaths;
82-
rpaths.extend_from_slice(&fallback_rpaths);
83-
8472
// Remove duplicates
8573
minimize_rpaths(&rpaths)
8674
}
@@ -113,13 +101,6 @@ fn path_relative_from(path: &Path, base: &Path) -> Option<PathBuf> {
113101
diff_paths(path, base)
114102
}
115103

116-
fn get_install_prefix_rpath(config: &mut RPathConfig<'_>) -> String {
117-
let path = (config.get_install_prefix_lib_path)();
118-
let path = env::current_dir().unwrap().join(&path);
119-
// FIXME (#9639): This needs to handle non-utf8 paths
120-
path.to_str().expect("non-utf8 component in rpath").to_owned()
121-
}
122-
123104
fn minimize_rpaths(rpaths: &[String]) -> Vec<String> {
124105
let mut set = FxHashSet::default();
125106
let mut minimized = Vec::new();

compiler/rustc_codegen_ssa/src/back/rpath/tests.rs

-2
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,13 @@ fn test_rpath_relative() {
4040
is_like_osx: true,
4141
linker_is_gnu: false,
4242
out_filename: PathBuf::from("bin/rustc"),
43-
get_install_prefix_lib_path: &mut || panic!(),
4443
};
4544
let res = get_rpath_relative_to_output(config, Path::new("lib/libstd.so"));
4645
assert_eq!(res, "@loader_path/../lib");
4746
} else {
4847
let config = &mut RPathConfig {
4948
used_crates: &[],
5049
out_filename: PathBuf::from("bin/rustc"),
51-
get_install_prefix_lib_path: &mut || panic!(),
5250
has_rpath: true,
5351
is_like_osx: false,
5452
linker_is_gnu: true,

compiler/rustc_middle/src/ty/layout.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,14 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
367367
for &i in &inverse_memory_index {
368368
let field = fields[i as usize];
369369
if !sized {
370-
bug!("univariant: field #{} of `{}` comes after unsized field", offsets.len(), ty);
370+
self.tcx.sess.delay_span_bug(
371+
DUMMY_SP,
372+
&format!(
373+
"univariant: field #{} of `{}` comes after unsized field",
374+
offsets.len(),
375+
ty
376+
),
377+
);
371378
}
372379

373380
if field.is_unsized() {

compiler/rustc_mir/src/transform/remove_zsts.rs

+22-25
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,29 @@ impl<'tcx> MirPass<'tcx> for RemoveZsts {
1616
let (basic_blocks, local_decls) = body.basic_blocks_and_local_decls_mut();
1717
for block in basic_blocks.iter_mut() {
1818
for statement in block.statements.iter_mut() {
19-
match statement.kind {
20-
StatementKind::Assign(box (place, _)) => {
21-
let place_ty = place.ty(local_decls, tcx).ty;
22-
if !maybe_zst(place_ty) {
23-
continue;
24-
}
25-
let layout = match tcx.layout_of(param_env.and(place_ty)) {
26-
Ok(layout) => layout,
27-
Err(_) => continue,
28-
};
29-
if !layout.is_zst() {
30-
continue;
31-
}
32-
if involves_a_union(place, local_decls, tcx) {
33-
continue;
34-
}
35-
if tcx.consider_optimizing(|| {
36-
format!(
37-
"RemoveZsts - Place: {:?} SourceInfo: {:?}",
38-
place, statement.source_info
39-
)
40-
}) {
41-
statement.make_nop();
42-
}
19+
if let StatementKind::Assign(box (place, _)) = statement.kind {
20+
let place_ty = place.ty(local_decls, tcx).ty;
21+
if !maybe_zst(place_ty) {
22+
continue;
23+
}
24+
let layout = match tcx.layout_of(param_env.and(place_ty)) {
25+
Ok(layout) => layout,
26+
Err(_) => continue,
27+
};
28+
if !layout.is_zst() {
29+
continue;
30+
}
31+
if involves_a_union(place, local_decls, tcx) {
32+
continue;
33+
}
34+
if tcx.consider_optimizing(|| {
35+
format!(
36+
"RemoveZsts - Place: {:?} SourceInfo: {:?}",
37+
place, statement.source_info
38+
)
39+
}) {
40+
statement.make_nop();
4341
}
44-
_ => {}
4542
}
4643
}
4744
}

compiler/rustc_target/src/abi/mod.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -753,11 +753,7 @@ impl FieldsShape {
753753
match *self {
754754
FieldsShape::Primitive => 0,
755755
FieldsShape::Union(count) => count.get(),
756-
FieldsShape::Array { count, .. } => {
757-
let usize_count = count as usize;
758-
assert_eq!(usize_count as u64, count);
759-
usize_count
760-
}
756+
FieldsShape::Array { count, .. } => count.try_into().unwrap(),
761757
FieldsShape::Arbitrary { ref offsets, .. } => offsets.len(),
762758
}
763759
}
@@ -791,11 +787,7 @@ impl FieldsShape {
791787
unreachable!("FieldsShape::memory_index: `Primitive`s have no fields")
792788
}
793789
FieldsShape::Union(_) | FieldsShape::Array { .. } => i,
794-
FieldsShape::Arbitrary { ref memory_index, .. } => {
795-
let r = memory_index[i];
796-
assert_eq!(r as usize as u32, r);
797-
r as usize
798-
}
790+
FieldsShape::Arbitrary { ref memory_index, .. } => memory_index[i].try_into().unwrap(),
799791
}
800792
}
801793

src/bootstrap/bootstrap.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -648,18 +648,20 @@ def maybe_download_ci_toolchain(self):
648648
rev_parse = ["git", "rev-parse", "--show-toplevel"]
649649
top_level = subprocess.check_output(rev_parse, universal_newlines=True).strip()
650650
compiler = "{}/compiler/".format(top_level)
651+
library = "{}/library/".format(top_level)
651652

652653
# Look for a version to compare to based on the current commit.
653654
# Only commits merged by bors will have CI artifacts.
654655
merge_base = ["git", "log", "--author=bors", "--pretty=%H", "-n1"]
655656
commit = subprocess.check_output(merge_base, universal_newlines=True).strip()
656657

657-
# Warn if there were changes to the compiler since the ancestor commit.
658-
status = subprocess.call(["git", "diff-index", "--quiet", commit, "--", compiler])
658+
# Warn if there were changes to the compiler or standard library since the ancestor commit.
659+
status = subprocess.call(["git", "diff-index", "--quiet", commit, "--", compiler, library])
659660
if status != 0:
660661
if download_rustc == "if-unchanged":
661662
return None
662-
print("warning: `download-rustc` is enabled, but there are changes to compiler/")
663+
print("warning: `download-rustc` is enabled, but there are changes to \
664+
compiler/ or library/")
663665

664666
if self.verbose:
665667
print("using downloaded stage1 artifacts from CI (commit {})".format(commit))

src/bootstrap/compile.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -636,8 +636,7 @@ pub fn rustc_cargo_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetS
636636
cargo
637637
.env("CFG_RELEASE", builder.rust_release())
638638
.env("CFG_RELEASE_CHANNEL", &builder.config.channel)
639-
.env("CFG_VERSION", builder.rust_version())
640-
.env("CFG_PREFIX", builder.config.prefix.clone().unwrap_or_default());
639+
.env("CFG_VERSION", builder.rust_version());
641640

642641
let libdir_relative = builder.config.libdir_relative().unwrap_or_else(|| Path::new("lib"));
643642
cargo.env("CFG_LIBDIR_RELATIVE", libdir_relative);

src/test/ui/layout/issue-84108.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// See issue #84108 -- this is a test to ensure we do not ICE
2+
// on this invalid code.
3+
4+
#![crate_type = "lib"]
5+
6+
static FOO: (dyn AsRef<OsStr>, u8) = ("hello", 42);
7+
//~^ ERROR cannot find type `OsStr` in this scope
8+
9+
const BAR: (&Path, [u8], usize) = ("hello", [], 42);
10+
//~^ ERROR cannot find type `Path` in this scope
11+
//~| ERROR the size for values of type `[u8]` cannot be known at compilation time
12+
13+
static BAZ: ([u8], usize) = ([], 0);
14+
//~^ ERROR the size for values of type `[u8]` cannot be known at compilation time

src/test/ui/layout/issue-84108.stderr

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
error[E0412]: cannot find type `OsStr` in this scope
2+
--> $DIR/issue-84108.rs:6:24
3+
|
4+
LL | static FOO: (dyn AsRef<OsStr>, u8) = ("hello", 42);
5+
| ^^^^^ not found in this scope
6+
|
7+
help: consider importing this struct
8+
|
9+
LL | use std::ffi::OsStr;
10+
|
11+
12+
error[E0412]: cannot find type `Path` in this scope
13+
--> $DIR/issue-84108.rs:9:14
14+
|
15+
LL | const BAR: (&Path, [u8], usize) = ("hello", [], 42);
16+
| ^^^^ not found in this scope
17+
|
18+
help: consider importing this struct
19+
|
20+
LL | use std::path::Path;
21+
|
22+
23+
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
24+
--> $DIR/issue-84108.rs:9:12
25+
|
26+
LL | const BAR: (&Path, [u8], usize) = ("hello", [], 42);
27+
| ^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
28+
|
29+
= help: the trait `Sized` is not implemented for `[u8]`
30+
= note: only the last element of a tuple may have a dynamically sized type
31+
32+
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
33+
--> $DIR/issue-84108.rs:13:13
34+
|
35+
LL | static BAZ: ([u8], usize) = ([], 0);
36+
| ^^^^^^^^^^^^^ doesn't have a size known at compile-time
37+
|
38+
= help: the trait `Sized` is not implemented for `[u8]`
39+
= note: only the last element of a tuple may have a dynamically sized type
40+
41+
error: aborting due to 4 previous errors
42+
43+
Some errors have detailed explanations: E0277, E0412.
44+
For more information about an error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)