forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Emit error when calling/declaring functions with unavailable vectors.
On some architectures, vector types may have a different ABI when relevant target features are enabled. As discussed in rust-lang/lang-team#235, this turns out to very easily lead to unsound code. This commit makes it an error to declare or call functions using those vector types in a context in which the corresponding target features are disabled, if using an ABI for which the difference is relevant.
- Loading branch information
Showing
6 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
use rustc_abi::Abi; | ||
use rustc_middle::ty::{self, Instance, InstanceKind, Ty, TyCtxt}; | ||
use rustc_span::{def_id::DefId, Span, Symbol}; | ||
use rustc_target::abi::call::FnAbi; | ||
|
||
use crate::errors::{AbiErrorDisabledVectorTypeCall, AbiErrorDisabledVectorTypeDef}; | ||
|
||
fn do_check_abi<'tcx>( | ||
tcx: TyCtxt<'tcx>, | ||
abi: &FnAbi<'tcx, Ty<'tcx>>, | ||
target_feature_def: DefId, | ||
emit_err: impl Fn(&'static str), | ||
) { | ||
// This check is a no-op on non-x86, at least for now. | ||
if tcx.sess.target.arch != "x86" && tcx.sess.target.arch != "x86_64" { | ||
return; | ||
} | ||
let codegen_attrs = tcx.codegen_fn_attrs(target_feature_def); | ||
for arg_abi in abi.args.iter().chain(std::iter::once(&abi.ret)) { | ||
let size = arg_abi.layout.size; | ||
if matches!(arg_abi.layout.abi, Abi::Vector { .. }) { | ||
let required_feature = match size.bits() { | ||
x if x <= 128 => "sse", | ||
x if x <= 256 => "avx", | ||
x if x <= 512 => "avx512f", | ||
_ => { | ||
panic!("Unknown vector size for x86: {}; arg = {:?}", size.bits(), arg_abi) | ||
} | ||
}; | ||
let required_feature_sym = Symbol::intern(required_feature); | ||
if !tcx.sess.unstable_target_features.contains(&required_feature_sym) | ||
&& !codegen_attrs.target_features.contains(&required_feature_sym) | ||
{ | ||
emit_err(required_feature); | ||
} | ||
} | ||
} | ||
} | ||
|
||
/// Checks that the ABI of a given instance of a function does not contain vector-passed arguments | ||
/// or return values for which the corresponding target feature is not enabled. | ||
pub fn check_instance_abi<'tcx>(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) { | ||
let InstanceKind::Item(item_def) = instance.def else { | ||
return; | ||
}; | ||
|
||
let param_env = tcx.param_env(item_def); | ||
let Ok(abi) = tcx.fn_abi_of_instance(param_env.and((instance, ty::List::empty()))) else { | ||
// an error will be reported somewhere else if we cannot determine the ABI of this | ||
// function. | ||
return; | ||
}; | ||
do_check_abi(tcx, abi, item_def, |required_feature| { | ||
tcx.dcx().emit_err(AbiErrorDisabledVectorTypeDef { | ||
span: tcx.def_span(item_def), | ||
required_feature, | ||
}); | ||
}) | ||
} | ||
|
||
/// Checks that a call expression does not try to pass a vector-passed argument which requires a | ||
/// target feature that the caller does not have, as doing so causes UB because of ABI mismatch. | ||
pub fn check_call_abi<'tcx>( | ||
tcx: TyCtxt<'tcx>, | ||
ty: Ty<'tcx>, | ||
span: Span, | ||
caller: InstanceKind<'tcx>, | ||
) { | ||
let InstanceKind::Item(caller_def) = caller else { | ||
return; | ||
}; | ||
let param_env = tcx.param_env(caller_def); | ||
let callee_abi = match *ty.kind() { | ||
ty::FnPtr(sig) => tcx.fn_abi_of_fn_ptr(param_env.and((sig, ty::List::empty()))), | ||
ty::FnDef(def_id, args) => { | ||
// Intrinsics are handled separately by the compiler. | ||
if tcx.intrinsic(def_id).is_some() { | ||
return; | ||
} | ||
let Ok(Some(instance)) = ty::Instance::try_resolve(tcx, param_env, def_id, args) else { | ||
return; | ||
}; | ||
tcx.fn_abi_of_instance(param_env.and((instance, ty::List::empty()))) | ||
} | ||
_ => { | ||
panic!("Invalid function call"); | ||
} | ||
}; | ||
|
||
let Ok(callee_abi) = callee_abi else { | ||
return; | ||
}; | ||
do_check_abi(tcx, callee_abi, caller_def, |required_feature| { | ||
tcx.dcx().emit_err(AbiErrorDisabledVectorTypeCall { span, required_feature }); | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters