summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_passes/src/abi_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_passes/src/abi_test.rs')
-rw-r--r--compiler/rustc_passes/src/abi_test.rs197
1 files changed, 197 insertions, 0 deletions
diff --git a/compiler/rustc_passes/src/abi_test.rs b/compiler/rustc_passes/src/abi_test.rs
new file mode 100644
index 000000000..153c39977
--- /dev/null
+++ b/compiler/rustc_passes/src/abi_test.rs
@@ -0,0 +1,197 @@
+use rustc_ast::Attribute;
+use rustc_hir::def::DefKind;
+use rustc_hir::def_id::LocalDefId;
+use rustc_middle::ty::layout::{FnAbiError, LayoutError};
+use rustc_middle::ty::{self, GenericArgs, Instance, Ty, TyCtxt};
+use rustc_span::source_map::Spanned;
+use rustc_span::symbol::sym;
+use rustc_target::abi::call::FnAbi;
+
+use super::layout_test::ensure_wf;
+use crate::errors::{AbiInvalidAttribute, AbiNe, AbiOf, UnrecognizedField};
+
+pub fn test_abi(tcx: TyCtxt<'_>) {
+ if !tcx.features().rustc_attrs {
+ // if the `rustc_attrs` feature is not enabled, don't bother testing ABI
+ return;
+ }
+ for id in tcx.hir_crate_items(()).definitions() {
+ for attr in tcx.get_attrs(id, sym::rustc_abi) {
+ match tcx.def_kind(id) {
+ DefKind::Fn | DefKind::AssocFn => {
+ dump_abi_of_fn_item(tcx, id, attr);
+ }
+ DefKind::TyAlias => {
+ dump_abi_of_fn_type(tcx, id, attr);
+ }
+ _ => {
+ tcx.sess.emit_err(AbiInvalidAttribute { span: tcx.def_span(id) });
+ }
+ }
+ }
+ }
+}
+
+fn unwrap_fn_abi<'tcx>(
+ abi: Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>>,
+ tcx: TyCtxt<'tcx>,
+ item_def_id: LocalDefId,
+) -> &'tcx FnAbi<'tcx, Ty<'tcx>> {
+ match abi {
+ Ok(abi) => abi,
+ Err(FnAbiError::Layout(layout_error)) => {
+ tcx.sess.emit_fatal(Spanned {
+ node: layout_error.into_diagnostic(),
+ span: tcx.def_span(item_def_id),
+ });
+ }
+ Err(FnAbiError::AdjustForForeignAbi(e)) => {
+ // Sadly there seems to be no `into_diagnostic` for this case... and I am not sure if
+ // this can even be reached. Anyway this is a perma-unstable debug attribute, an ICE
+ // isn't the worst thing. Also this matches what codegen does.
+ span_bug!(
+ tcx.def_span(item_def_id),
+ "error computing fn_abi_of_instance, cannot adjust for foreign ABI: {e:?}",
+ )
+ }
+ }
+}
+
+fn dump_abi_of_fn_item(tcx: TyCtxt<'_>, item_def_id: LocalDefId, attr: &Attribute) {
+ let param_env = tcx.param_env(item_def_id);
+ let args = GenericArgs::identity_for_item(tcx, item_def_id);
+ let instance = match Instance::resolve(tcx, param_env, item_def_id.into(), args) {
+ Ok(Some(instance)) => instance,
+ Ok(None) => {
+ // Not sure what to do here, but `LayoutError::Unknown` seems reasonable?
+ let ty = tcx.type_of(item_def_id).instantiate_identity();
+ tcx.sess.emit_fatal(Spanned {
+ node: LayoutError::Unknown(ty).into_diagnostic(),
+
+ span: tcx.def_span(item_def_id),
+ });
+ }
+ Err(_guaranteed) => return,
+ };
+ let abi = unwrap_fn_abi(
+ tcx.fn_abi_of_instance(param_env.and((instance, /* extra_args */ ty::List::empty()))),
+ tcx,
+ item_def_id,
+ );
+
+ // Check out the `#[rustc_abi(..)]` attribute to tell what to dump.
+ // The `..` are the names of fields to dump.
+ let meta_items = attr.meta_item_list().unwrap_or_default();
+ for meta_item in meta_items {
+ match meta_item.name_or_empty() {
+ sym::debug => {
+ let fn_name = tcx.item_name(item_def_id.into());
+ tcx.sess.emit_err(AbiOf {
+ span: tcx.def_span(item_def_id),
+ fn_name,
+ // FIXME: using the `Debug` impl here isn't ideal.
+ fn_abi: format!("{:#?}", abi),
+ });
+ }
+
+ name => {
+ tcx.sess.emit_err(UnrecognizedField { span: meta_item.span(), name });
+ }
+ }
+ }
+}
+
+fn test_abi_eq<'tcx>(abi1: &'tcx FnAbi<'tcx, Ty<'tcx>>, abi2: &'tcx FnAbi<'tcx, Ty<'tcx>>) -> bool {
+ if abi1.conv != abi2.conv
+ || abi1.args.len() != abi2.args.len()
+ || abi1.c_variadic != abi2.c_variadic
+ || abi1.fixed_count != abi2.fixed_count
+ || abi1.can_unwind != abi2.can_unwind
+ {
+ return false;
+ }
+
+ abi1.ret.eq_abi(&abi2.ret)
+ && abi1.args.iter().zip(abi2.args.iter()).all(|(arg1, arg2)| arg1.eq_abi(arg2))
+}
+
+fn dump_abi_of_fn_type(tcx: TyCtxt<'_>, item_def_id: LocalDefId, attr: &Attribute) {
+ let param_env = tcx.param_env(item_def_id);
+ let ty = tcx.type_of(item_def_id).instantiate_identity();
+ let span = tcx.def_span(item_def_id);
+ if !ensure_wf(tcx, param_env, ty, item_def_id, span) {
+ return;
+ }
+ let meta_items = attr.meta_item_list().unwrap_or_default();
+ for meta_item in meta_items {
+ match meta_item.name_or_empty() {
+ sym::debug => {
+ let ty::FnPtr(sig) = ty.kind() else {
+ span_bug!(
+ meta_item.span(),
+ "`#[rustc_abi(debug)]` on a type alias requires function pointer type"
+ );
+ };
+ let abi = unwrap_fn_abi(
+ tcx.fn_abi_of_fn_ptr(param_env.and((*sig, /* extra_args */ ty::List::empty()))),
+ tcx,
+ item_def_id,
+ );
+
+ let fn_name = tcx.item_name(item_def_id.into());
+ tcx.sess.emit_err(AbiOf { span, fn_name, fn_abi: format!("{:#?}", abi) });
+ }
+ sym::assert_eq => {
+ let ty::Tuple(fields) = ty.kind() else {
+ span_bug!(
+ meta_item.span(),
+ "`#[rustc_abi(assert_eq)]` on a type alias requires pair type"
+ );
+ };
+ let [field1, field2] = ***fields else {
+ span_bug!(
+ meta_item.span(),
+ "`#[rustc_abi(assert_eq)]` on a type alias requires pair type"
+ );
+ };
+ let ty::FnPtr(sig1) = field1.kind() else {
+ span_bug!(
+ meta_item.span(),
+ "`#[rustc_abi(assert_eq)]` on a type alias requires pair of function pointer types"
+ );
+ };
+ let abi1 = unwrap_fn_abi(
+ tcx.fn_abi_of_fn_ptr(
+ param_env.and((*sig1, /* extra_args */ ty::List::empty())),
+ ),
+ tcx,
+ item_def_id,
+ );
+ let ty::FnPtr(sig2) = field2.kind() else {
+ span_bug!(
+ meta_item.span(),
+ "`#[rustc_abi(assert_eq)]` on a type alias requires pair of function pointer types"
+ );
+ };
+ let abi2 = unwrap_fn_abi(
+ tcx.fn_abi_of_fn_ptr(
+ param_env.and((*sig2, /* extra_args */ ty::List::empty())),
+ ),
+ tcx,
+ item_def_id,
+ );
+
+ if !test_abi_eq(abi1, abi2) {
+ tcx.sess.emit_err(AbiNe {
+ span,
+ left: format!("{:#?}", abi1),
+ right: format!("{:#?}", abi2),
+ });
+ }
+ }
+ name => {
+ tcx.sess.emit_err(UnrecognizedField { span: meta_item.span(), name });
+ }
+ }
+ }
+}