Skip to content

Commit d32993a

Browse files
committed
Auto merge of rust-lang#90631 - matthiaskrgr:rollup-a5tzjh3, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - rust-lang#89942 (Reorder `widening_impl`s to make the doc clearer) - rust-lang#90569 (Fix tests using `only-i686` to use the correct `only-x86` directive) - rust-lang#90597 (Warn for variables that are no longer captured) - rust-lang#90623 (Remove more checks for LLVM < 12) - rust-lang#90626 (Properly register text_direction_codepoint_in_comment lint.) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0d1754e + f5f6f73 commit d32993a

32 files changed

+384
-196
lines changed

compiler/rustc_codegen_llvm/src/abi.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use crate::builder::Builder;
22
use crate::context::CodegenCx;
33
use crate::llvm::{self, AttributePlace};
4-
use crate::llvm_util;
54
use crate::type_::Type;
65
use crate::type_of::LayoutLlvmExt;
76
use crate::value::Value;
@@ -53,15 +52,10 @@ pub trait ArgAttributesExt {
5352
}
5453

5554
fn should_use_mutable_noalias(cx: &CodegenCx<'_, '_>) -> bool {
56-
// LLVM prior to version 12 has known miscompiles in the presence of
57-
// noalias attributes (see #54878). Only enable mutable noalias by
58-
// default for versions we believe to be safe.
59-
cx.tcx
60-
.sess
61-
.opts
62-
.debugging_opts
63-
.mutable_noalias
64-
.unwrap_or_else(|| llvm_util::get_version() >= (12, 0, 0))
55+
// LLVM prior to version 12 had known miscompiles in the presence of
56+
// noalias attributes (see #54878), but we don't support earlier
57+
// versions at all anymore. We now enable mutable noalias by default.
58+
cx.tcx.sess.opts.debugging_opts.mutable_noalias.unwrap_or(true)
6559
}
6660

6761
impl ArgAttributesExt for ArgAttributes {

compiler/rustc_codegen_llvm/src/builder.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
731731
}
732732

733733
fn fptoui_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
734-
if llvm_util::get_version() >= (12, 0, 0) && !self.fptoint_sat_broken_in_llvm() {
734+
if !self.fptoint_sat_broken_in_llvm() {
735735
let src_ty = self.cx.val_ty(val);
736736
let float_width = self.cx.float_width(src_ty);
737737
let int_width = self.cx.int_width(dest_ty);
@@ -743,7 +743,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
743743
}
744744

745745
fn fptosi_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
746-
if llvm_util::get_version() >= (12, 0, 0) && !self.fptoint_sat_broken_in_llvm() {
746+
if !self.fptoint_sat_broken_in_llvm() {
747747
let src_ty = self.cx.val_ty(val);
748748
let float_width = self.cx.float_width(src_ty);
749749
let int_width = self.cx.int_width(dest_ty);

compiler/rustc_codegen_llvm/src/context.rs

-3
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,6 @@ pub unsafe fn create_module(
134134
let llmod = llvm::LLVMModuleCreateWithNameInContext(mod_name.as_ptr(), llcx);
135135

136136
let mut target_data_layout = sess.target.data_layout.clone();
137-
if llvm_util::get_version() < (12, 0, 0) && sess.target.arch == "powerpc64" {
138-
target_data_layout = target_data_layout.replace("-v256:256:256-v512:512:512", "");
139-
}
140137
if llvm_util::get_version() < (13, 0, 0) {
141138
if sess.target.arch == "powerpc64" {
142139
target_data_layout = target_data_layout.replace("-S128", "");

compiler/rustc_codegen_llvm/src/llvm_util.rs

-5
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,6 @@ pub fn llvm_global_features(sess: &Session) -> Vec<String> {
406406
// -Ctarget-features
407407
features.extend(sess.opts.cg.target_feature.split(',').flat_map(&filter));
408408

409-
// FIXME: Move outline-atomics to target definition when earliest supported LLVM is 12.
410-
if get_version() >= (12, 0, 0) && sess.target.llvm_target.contains("aarch64-unknown-linux") {
411-
features.push("+outline-atomics".to_string());
412-
}
413-
414409
features
415410
}
416411

compiler/rustc_lint_defs/src/builtin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3054,6 +3054,7 @@ declare_lint_pass! {
30543054
BREAK_WITH_LABEL_AND_LOOP,
30553055
UNUSED_ATTRIBUTES,
30563056
NON_EXHAUSTIVE_OMITTED_PATTERNS,
3057+
TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
30573058
DEREF_INTO_DYN_SUPERTRAIT,
30583059
]
30593060
}

compiler/rustc_middle/src/ty/layout.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -3060,9 +3060,10 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
30603060
// LLVM's definition of `noalias` is based solely on memory
30613061
// dependencies rather than pointer equality
30623062
//
3063-
// Due to miscompiles in LLVM < 12, we apply a separate NoAliasMutRef attribute
3064-
// for UniqueBorrowed arguments, so that the codegen backend can decide
3065-
// whether or not to actually emit the attribute.
3063+
// Due to past miscompiles in LLVM, we apply a separate NoAliasMutRef attribute
3064+
// for UniqueBorrowed arguments, so that the codegen backend can decide whether
3065+
// or not to actually emit the attribute. It can also be controlled with the
3066+
// `-Zmutable-noalias` debugging option.
30663067
let no_alias = match kind {
30673068
PointerKind::Shared | PointerKind::UniqueBorrowed => false,
30683069
PointerKind::UniqueOwned => true,

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ options! {
11931193
move_size_limit: Option<usize> = (None, parse_opt_number, [TRACKED],
11941194
"the size at which the `large_assignments` lint starts to be emitted"),
11951195
mutable_noalias: Option<bool> = (None, parse_opt_bool, [TRACKED],
1196-
"emit noalias metadata for mutable references (default: yes for LLVM >= 12, otherwise no)"),
1196+
"emit noalias metadata for mutable references (default: yes)"),
11971197
new_llvm_pass_manager: Option<bool> = (None, parse_opt_bool, [TRACKED],
11981198
"use new LLVM pass manager (default: no)"),
11991199
nll_facts: bool = (false, parse_bool, [UNTRACKED],

compiler/rustc_target/src/abi/call/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ mod attr_impl {
6868
const NonNull = 1 << 3;
6969
const ReadOnly = 1 << 4;
7070
const InReg = 1 << 5;
71-
// NoAlias on &mut arguments can only be used with LLVM >= 12 due to miscompiles
72-
// in earlier versions. FIXME: Remove this distinction once possible.
71+
// Due to past miscompiles in LLVM, we use a separate attribute for
72+
// &mut arguments, so that the codegen backend can decide whether
73+
// or not to actually emit the attribute. It can also be controlled
74+
// with the `-Zmutable-noalias` debugging option.
7375
const NoAliasMutRef = 1 << 6;
7476
}
7577
}

compiler/rustc_target/src/spec/aarch64_be_unknown_linux_gnu.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pub fn target() -> Target {
88
data_layout: "E-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
99
arch: "aarch64".to_string(),
1010
options: TargetOptions {
11+
features: "+outline-atomics".to_string(),
1112
max_atomic_width: Some(128),
1213
mcount: "\u{1}_mcount".to_string(),
1314
endian: Endian::Big,

compiler/rustc_target/src/spec/aarch64_be_unknown_linux_gnu_ilp32.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pub fn target() -> Target {
1212
arch: "aarch64".to_string(),
1313
options: TargetOptions {
1414
abi: "ilp32".to_string(),
15+
features: "+outline-atomics".to_string(),
1516
mcount: "\u{1}_mcount".to_string(),
1617
endian: Endian::Big,
1718
..base

compiler/rustc_target/src/spec/aarch64_unknown_linux_gnu.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pub fn target() -> Target {
77
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
88
arch: "aarch64".to_string(),
99
options: TargetOptions {
10+
features: "+outline-atomics".to_string(),
1011
mcount: "\u{1}_mcount".to_string(),
1112
max_atomic_width: Some(128),
1213
supported_sanitizers: SanitizerSet::ADDRESS

compiler/rustc_target/src/spec/aarch64_unknown_linux_gnu_ilp32.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pub fn target() -> Target {
88
arch: "aarch64".to_string(),
99
options: TargetOptions {
1010
abi: "ilp32".to_string(),
11+
features: "+outline-atomics".to_string(),
1112
max_atomic_width: Some(128),
1213
mcount: "\u{1}_mcount".to_string(),
1314
..super::linux_gnu_base::opts()

compiler/rustc_target/src/spec/aarch64_unknown_linux_musl.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ pub fn target() -> Target {
99
pointer_width: 64,
1010
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
1111
arch: "aarch64".to_string(),
12-
options: TargetOptions { mcount: "\u{1}_mcount".to_string(), ..base },
12+
options: TargetOptions {
13+
features: "+outline-atomics".to_string(),
14+
mcount: "\u{1}_mcount".to_string(),
15+
..base
16+
},
1317
}
1418
}

0 commit comments

Comments
 (0)