Skip to content

Commit 01e6e60

Browse files
committed
rustc_codegen_llvm: properly passing backchain attribute to LLVM ...
... this is a special attribute that was made to be a target-feature in LLVM 18+, but in all previous versions, this "feature" is a naked attribute. We will have to handle this situation differently than all other target-features.
1 parent 366bc86 commit 01e6e60

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

compiler/rustc_codegen_llvm/src/attributes.rs

+14
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,17 @@ fn stackprotector_attr<'ll>(cx: &CodegenCx<'ll, '_>) -> Option<&'ll Attribute> {
271271
Some(sspattr.create_attr(cx.llcx))
272272
}
273273

274+
fn backchain_attr<'ll>(cx: &CodegenCx<'ll, '_>) -> Option<&'ll Attribute> {
275+
if cx.sess().target.arch != "s390x" {
276+
return None;
277+
}
278+
279+
let requested_features = cx.sess().opts.cg.target_feature.split(',');
280+
let found_positive = requested_features.clone().any(|r| r == "+backchain");
281+
282+
if found_positive { Some(llvm::CreateAttrString(cx.llcx, "backchain")) } else { None }
283+
}
284+
274285
pub fn target_cpu_attr<'ll>(cx: &CodegenCx<'ll, '_>) -> &'ll Attribute {
275286
let target_cpu = llvm_util::target_cpu(cx.tcx.sess);
276287
llvm::CreateAttrStringValue(cx.llcx, "target-cpu", target_cpu)
@@ -447,6 +458,9 @@ pub fn from_fn_attrs<'ll, 'tcx>(
447458
if let Some(align) = codegen_fn_attrs.alignment {
448459
llvm::set_alignment(llfn, align);
449460
}
461+
if let Some(backchain) = backchain_attr(cx) {
462+
to_add.push(backchain);
463+
}
450464
to_add.extend(sanitize_attrs(cx, codegen_fn_attrs.no_sanitize));
451465
to_add.extend(patchable_function_entry_attrs(cx, codegen_fn_attrs.patchable_function_entry));
452466

compiler/rustc_codegen_llvm/src/llvm_util.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use rustc_session::config::{PrintKind, PrintRequest};
1414
use rustc_session::Session;
1515
use rustc_span::symbol::Symbol;
1616
use rustc_target::spec::{MergeFunctions, PanicStrategy};
17-
use rustc_target::target_features::RUSTC_SPECIFIC_FEATURES;
17+
use rustc_target::target_features::{RUSTC_SPECIAL_FEATURES, RUSTC_SPECIFIC_FEATURES};
1818

1919
use std::ffi::{c_char, c_void, CStr, CString};
2020
use std::fmt::Write;
@@ -321,6 +321,10 @@ pub fn target_features(sess: &Session, allow_unstable: bool) -> Vec<Symbol> {
321321
}
322322
})
323323
.filter(|feature| {
324+
// skip checking special features, as LLVM may not understands them
325+
if RUSTC_SPECIAL_FEATURES.contains(feature) {
326+
return true;
327+
}
324328
// check that all features in a given smallvec are enabled
325329
for llvm_feature in to_llvm_features(sess, feature) {
326330
let cstr = SmallCStr::new(llvm_feature);
@@ -546,6 +550,7 @@ pub(crate) fn global_llvm_features(sess: &Session, diagnostics: bool) -> Vec<Str
546550

547551
// -Ctarget-features
548552
let supported_features = sess.target.supported_target_features();
553+
let (llvm_major, _, _) = get_version();
549554
let mut featsmap = FxHashMap::default();
550555
let feats = sess
551556
.opts
@@ -604,6 +609,13 @@ pub(crate) fn global_llvm_features(sess: &Session, diagnostics: bool) -> Vec<Str
604609
if RUSTC_SPECIFIC_FEATURES.contains(&feature) {
605610
return None;
606611
}
612+
613+
// if the target-feature is "backchain" and LLVM version is greater than 18
614+
// then we also need to add "+backchain" to the target-features attribute.
615+
// otherwise, we will only add the naked `backchain` attribute to the attribute-group.
616+
if feature == "backchain" && llvm_major < 18 {
617+
return None;
618+
}
607619
// ... otherwise though we run through `to_llvm_features` when
608620
// passing requests down to LLVM. This means that all in-language
609621
// features also work on the command line instead of having two

compiler/rustc_target/src/target_features.rs

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ use rustc_span::symbol::Symbol;
44
/// Features that control behaviour of rustc, rather than the codegen.
55
pub const RUSTC_SPECIFIC_FEATURES: &[&str] = &["crt-static"];
66

7+
/// Features that require special handling when passing to LLVM.
8+
pub const RUSTC_SPECIAL_FEATURES: &[&str] = &["backchain"];
9+
710
/// Stability information for target features.
811
#[derive(Debug, Clone, Copy)]
912
pub enum Stability {

0 commit comments

Comments
 (0)