1use std::{assert_matches, iter};
2
3use rustc_abi::Primitive::Pointer;
4use rustc_abi::{Align, BackendRepr, ExternAbi, PointerKind, Scalar, Size};
5use rustc_hir::lang_items::LangItem;
6use rustc_hir::{self as hir, find_attr};
7use rustc_middle::bug;
8use rustc_middle::middle::deduced_param_attrs::DeducedParamAttrs;
9use rustc_middle::query::Providers;
10use rustc_middle::ty::layout::{
11 FnAbiError, HasTyCtxt, HasTypingEnv, LayoutCx, LayoutOf, TyAndLayout, fn_can_unwind,
12};
13use rustc_middle::ty::{self, InstanceKind, ShimKind, Ty, TyCtxt, Unnormalized};
14use rustc_span::DUMMY_SP;
15use rustc_span::def_id::DefId;
16use rustc_target::callconv::{
17 AbiMap, ArgAbi, ArgAttribute, ArgAttributes, ArgExtension, FnAbi, PassMode,
18};
19use tracing::debug;
20
21pub(crate) fn provide(providers: &mut Providers) {
22 *providers = Providers {
23 fn_abi_of_fn_ptr,
24 fn_abi_of_instance_no_deduced_attrs,
25 fn_abi_of_instance_raw,
26 ..*providers
27 };
28}
29
30#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("fn_sig_for_fn_abi",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(35u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("instance")
}> =
::tracing::__macro_support::FieldName::new("instance");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&instance)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: ty::FnSig<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
if let InstanceKind::Shim(ShimKind::ThreadLocal(..)) =
instance.def {
return tcx.mk_fn_sig_safe_rust_abi([],
tcx.thread_local_ptr_ty(instance.def_id()));
}
let ty = instance.ty(tcx, typing_env);
match *ty.kind() {
ty::FnDef(def_id, args) => {
let mut sig =
tcx.instantiate_bound_regions_with_erased(tcx.fn_sig(def_id).instantiate(tcx,
args.no_bound_vars().unwrap()).skip_norm_wip());
if let ty::InstanceKind::Shim(ty::ShimKind::VTable(..)) =
instance.def {
let mut inputs_and_output = sig.inputs_and_output.to_vec();
inputs_and_output[0] =
Ty::new_mut_ptr(tcx, inputs_and_output[0]);
sig.inputs_and_output =
tcx.mk_type_list(&inputs_and_output);
}
sig
}
ty::Closure(def_id, args) => {
let sig =
tcx.instantiate_bound_regions_with_erased(args.as_closure().sig());
let env_ty =
tcx.closure_env_ty(Ty::new_closure(tcx, def_id, args),
args.as_closure().kind(), tcx.lifetimes.re_erased);
tcx.mk_fn_sig(iter::once(env_ty).chain(sig.inputs().iter().cloned()),
sig.output(), sig.fn_sig_kind)
}
ty::CoroutineClosure(def_id, args) => {
let coroutine_ty =
Ty::new_coroutine_closure(tcx, def_id, args);
let sig =
args.as_coroutine_closure().coroutine_closure_sig();
let mut coroutine_kind = args.as_coroutine_closure().kind();
let env_ty =
if let InstanceKind::Shim(ShimKind::ConstructCoroutineInClosure {
receiver_by_ref, .. }) = instance.def {
coroutine_kind = ty::ClosureKind::FnOnce;
if receiver_by_ref {
Ty::new_imm_ref(tcx, tcx.lifetimes.re_erased, coroutine_ty)
} else { coroutine_ty }
} else {
tcx.closure_env_ty(coroutine_ty, coroutine_kind,
tcx.lifetimes.re_erased)
};
let sig = tcx.instantiate_bound_regions_with_erased(sig);
tcx.mk_fn_sig(iter::once(env_ty).chain([sig.tupled_inputs_ty]),
sig.to_coroutine_given_kind_and_upvars(tcx,
args.as_coroutine_closure().parent_args(),
tcx.coroutine_for_closure(def_id), coroutine_kind,
tcx.lifetimes.re_erased,
args.as_coroutine_closure().tupled_upvars_ty(),
args.as_coroutine_closure().coroutine_captures_by_ref_ty()),
sig.fn_sig_kind)
}
ty::Coroutine(did, args) => {
let coroutine_kind = tcx.coroutine_kind(did).unwrap();
let sig = args.as_coroutine().sig();
let env_ty =
Ty::new_mut_ref(tcx, tcx.lifetimes.re_erased, ty);
let pin_did =
tcx.require_lang_item(LangItem::Pin, DUMMY_SP);
let pin_adt_ref = tcx.adt_def(pin_did);
let pin_args = tcx.mk_args(&[env_ty.into()]);
let env_ty =
match coroutine_kind {
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Gen,
_) => {
env_ty
}
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Async,
_) |
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::AsyncGen,
_) | hir::CoroutineKind::Coroutine(_) =>
Ty::new_adt(tcx, pin_adt_ref, pin_args),
};
let (resume_ty, ret_ty) =
match coroutine_kind {
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Async,
_) => {
{
match (&sig.yield_ty, &tcx.types.unit) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
let poll_did =
tcx.require_lang_item(LangItem::Poll, DUMMY_SP);
let poll_adt_ref = tcx.adt_def(poll_did);
let poll_args = tcx.mk_args(&[sig.return_ty.into()]);
let ret_ty = Ty::new_adt(tcx, poll_adt_ref, poll_args);
{
if let ty::Adt(resume_ty_adt, _) = sig.resume_ty.kind() {
let expected_adt =
tcx.adt_def(tcx.require_lang_item(LangItem::ResumeTy,
DUMMY_SP));
{
match (&*resume_ty_adt, &expected_adt) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
} else {
{
::core::panicking::panic_fmt(format_args!("expected `ResumeTy`, found `{0:?}`",
sig.resume_ty));
};
};
}
let context_mut_ref = Ty::new_task_context(tcx);
(Some(context_mut_ref), ret_ty)
}
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Gen,
_) => {
let option_did =
tcx.require_lang_item(LangItem::Option, DUMMY_SP);
let option_adt_ref = tcx.adt_def(option_did);
let option_args = tcx.mk_args(&[sig.yield_ty.into()]);
let ret_ty = Ty::new_adt(tcx, option_adt_ref, option_args);
{
match (&sig.return_ty, &tcx.types.unit) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
{
match (&sig.resume_ty, &tcx.types.unit) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
(None, ret_ty)
}
hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::AsyncGen,
_) => {
{
match (&sig.return_ty, &tcx.types.unit) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
let ret_ty = sig.yield_ty;
{
if let ty::Adt(resume_ty_adt, _) = sig.resume_ty.kind() {
let expected_adt =
tcx.adt_def(tcx.require_lang_item(LangItem::ResumeTy,
DUMMY_SP));
{
match (&*resume_ty_adt, &expected_adt) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
} else {
{
::core::panicking::panic_fmt(format_args!("expected `ResumeTy`, found `{0:?}`",
sig.resume_ty));
};
};
}
let context_mut_ref = Ty::new_task_context(tcx);
(Some(context_mut_ref), ret_ty)
}
hir::CoroutineKind::Coroutine(_) => {
let state_did =
tcx.require_lang_item(LangItem::CoroutineState, DUMMY_SP);
let state_adt_ref = tcx.adt_def(state_did);
let state_args =
tcx.mk_args(&[sig.yield_ty.into(), sig.return_ty.into()]);
let ret_ty = Ty::new_adt(tcx, state_adt_ref, state_args);
(Some(sig.resume_ty), ret_ty)
}
};
if let Some(resume_ty) = resume_ty {
tcx.mk_fn_sig_safe_rust_abi([env_ty, resume_ty], ret_ty)
} else { tcx.mk_fn_sig_safe_rust_abi([env_ty], ret_ty) }
}
_ =>
::rustc_middle::util::bug::bug_fmt(format_args!("unexpected type {0:?} in Instance::fn_sig",
ty)),
}
}
}
}#[tracing::instrument(level = "debug", skip(tcx, typing_env))]
36fn fn_sig_for_fn_abi<'tcx>(
37 tcx: TyCtxt<'tcx>,
38 instance: ty::Instance<'tcx>,
39 typing_env: ty::TypingEnv<'tcx>,
40) -> ty::FnSig<'tcx> {
41 if let InstanceKind::Shim(ShimKind::ThreadLocal(..)) = instance.def {
42 return tcx.mk_fn_sig_safe_rust_abi([], tcx.thread_local_ptr_ty(instance.def_id()));
43 }
44
45 let ty = instance.ty(tcx, typing_env);
46 match *ty.kind() {
47 ty::FnDef(def_id, args) => {
48 let mut sig = tcx.instantiate_bound_regions_with_erased(
49 tcx.fn_sig(def_id).instantiate(tcx, args.no_bound_vars().unwrap()).skip_norm_wip(),
50 );
51
52 if let ty::InstanceKind::Shim(ty::ShimKind::VTable(..)) = instance.def {
54 let mut inputs_and_output = sig.inputs_and_output.to_vec();
55 inputs_and_output[0] = Ty::new_mut_ptr(tcx, inputs_and_output[0]);
56 sig.inputs_and_output = tcx.mk_type_list(&inputs_and_output);
57 }
58
59 sig
60 }
61 ty::Closure(def_id, args) => {
62 let sig = tcx.instantiate_bound_regions_with_erased(args.as_closure().sig());
63 let env_ty = tcx.closure_env_ty(
64 Ty::new_closure(tcx, def_id, args),
65 args.as_closure().kind(),
66 tcx.lifetimes.re_erased,
67 );
68
69 tcx.mk_fn_sig(
70 iter::once(env_ty).chain(sig.inputs().iter().cloned()),
71 sig.output(),
72 sig.fn_sig_kind,
73 )
74 }
75 ty::CoroutineClosure(def_id, args) => {
76 let coroutine_ty = Ty::new_coroutine_closure(tcx, def_id, args);
77 let sig = args.as_coroutine_closure().coroutine_closure_sig();
78
79 let mut coroutine_kind = args.as_coroutine_closure().kind();
84
85 let env_ty = if let InstanceKind::Shim(ShimKind::ConstructCoroutineInClosure {
86 receiver_by_ref,
87 ..
88 }) = instance.def
89 {
90 coroutine_kind = ty::ClosureKind::FnOnce;
91
92 if receiver_by_ref {
95 Ty::new_imm_ref(tcx, tcx.lifetimes.re_erased, coroutine_ty)
96 } else {
97 coroutine_ty
98 }
99 } else {
100 tcx.closure_env_ty(coroutine_ty, coroutine_kind, tcx.lifetimes.re_erased)
101 };
102
103 let sig = tcx.instantiate_bound_regions_with_erased(sig);
104
105 tcx.mk_fn_sig(
106 iter::once(env_ty).chain([sig.tupled_inputs_ty]),
107 sig.to_coroutine_given_kind_and_upvars(
108 tcx,
109 args.as_coroutine_closure().parent_args(),
110 tcx.coroutine_for_closure(def_id),
111 coroutine_kind,
112 tcx.lifetimes.re_erased,
113 args.as_coroutine_closure().tupled_upvars_ty(),
114 args.as_coroutine_closure().coroutine_captures_by_ref_ty(),
115 ),
116 sig.fn_sig_kind,
117 )
118 }
119 ty::Coroutine(did, args) => {
120 let coroutine_kind = tcx.coroutine_kind(did).unwrap();
121 let sig = args.as_coroutine().sig();
122
123 let env_ty = Ty::new_mut_ref(tcx, tcx.lifetimes.re_erased, ty);
124
125 let pin_did = tcx.require_lang_item(LangItem::Pin, DUMMY_SP);
126 let pin_adt_ref = tcx.adt_def(pin_did);
127 let pin_args = tcx.mk_args(&[env_ty.into()]);
128 let env_ty = match coroutine_kind {
129 hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Gen, _) => {
130 env_ty
133 }
134 hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Async, _)
135 | hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::AsyncGen, _)
136 | hir::CoroutineKind::Coroutine(_) => Ty::new_adt(tcx, pin_adt_ref, pin_args),
137 };
138
139 let (resume_ty, ret_ty) = match coroutine_kind {
146 hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Async, _) => {
147 assert_eq!(sig.yield_ty, tcx.types.unit);
149
150 let poll_did = tcx.require_lang_item(LangItem::Poll, DUMMY_SP);
151 let poll_adt_ref = tcx.adt_def(poll_did);
152 let poll_args = tcx.mk_args(&[sig.return_ty.into()]);
153 let ret_ty = Ty::new_adt(tcx, poll_adt_ref, poll_args);
154
155 #[cfg(debug_assertions)]
158 {
159 if let ty::Adt(resume_ty_adt, _) = sig.resume_ty.kind() {
160 let expected_adt =
161 tcx.adt_def(tcx.require_lang_item(LangItem::ResumeTy, DUMMY_SP));
162 assert_eq!(*resume_ty_adt, expected_adt);
163 } else {
164 panic!("expected `ResumeTy`, found `{:?}`", sig.resume_ty);
165 };
166 }
167 let context_mut_ref = Ty::new_task_context(tcx);
168
169 (Some(context_mut_ref), ret_ty)
170 }
171 hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::Gen, _) => {
172 let option_did = tcx.require_lang_item(LangItem::Option, DUMMY_SP);
174 let option_adt_ref = tcx.adt_def(option_did);
175 let option_args = tcx.mk_args(&[sig.yield_ty.into()]);
176 let ret_ty = Ty::new_adt(tcx, option_adt_ref, option_args);
177
178 assert_eq!(sig.return_ty, tcx.types.unit);
179 assert_eq!(sig.resume_ty, tcx.types.unit);
180
181 (None, ret_ty)
182 }
183 hir::CoroutineKind::Desugared(hir::CoroutineDesugaring::AsyncGen, _) => {
184 assert_eq!(sig.return_ty, tcx.types.unit);
187
188 let ret_ty = sig.yield_ty;
190
191 #[cfg(debug_assertions)]
194 {
195 if let ty::Adt(resume_ty_adt, _) = sig.resume_ty.kind() {
196 let expected_adt =
197 tcx.adt_def(tcx.require_lang_item(LangItem::ResumeTy, DUMMY_SP));
198 assert_eq!(*resume_ty_adt, expected_adt);
199 } else {
200 panic!("expected `ResumeTy`, found `{:?}`", sig.resume_ty);
201 };
202 }
203 let context_mut_ref = Ty::new_task_context(tcx);
204
205 (Some(context_mut_ref), ret_ty)
206 }
207 hir::CoroutineKind::Coroutine(_) => {
208 let state_did = tcx.require_lang_item(LangItem::CoroutineState, DUMMY_SP);
210 let state_adt_ref = tcx.adt_def(state_did);
211 let state_args = tcx.mk_args(&[sig.yield_ty.into(), sig.return_ty.into()]);
212 let ret_ty = Ty::new_adt(tcx, state_adt_ref, state_args);
213
214 (Some(sig.resume_ty), ret_ty)
215 }
216 };
217
218 if let Some(resume_ty) = resume_ty {
219 tcx.mk_fn_sig_safe_rust_abi([env_ty, resume_ty], ret_ty)
220 } else {
221 tcx.mk_fn_sig_safe_rust_abi([env_ty], ret_ty)
223 }
224 }
225 _ => bug!("unexpected type {:?} in Instance::fn_sig", ty),
226 }
227}
228
229struct FnAbiDesc<'tcx> {
231 layout_cx: LayoutCx<'tcx>,
232 sig: ty::FnSig<'tcx>,
233
234 determined_fn_def_id: Option<DefId>,
236 caller_location: Option<Ty<'tcx>>,
237 is_virtual_call: bool,
238 extra_args: &'tcx [Ty<'tcx>],
239}
240
241impl<'tcx> FnAbiDesc<'tcx> {
242 fn for_fn_ptr(
243 tcx: TyCtxt<'tcx>,
244 query: ty::PseudoCanonicalInput<'tcx, (ty::PolyFnSig<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
245 ) -> Self {
246 let ty::PseudoCanonicalInput { typing_env, value: (sig, extra_args) } = query;
247 Self {
248 layout_cx: LayoutCx::new(tcx, typing_env),
249 sig: tcx.normalize_erasing_regions(
250 typing_env,
251 Unnormalized::new_wip(tcx.instantiate_bound_regions_with_erased(sig)),
252 ),
253 determined_fn_def_id: None,
256 caller_location: None,
257 is_virtual_call: false,
258 extra_args,
259 }
260 }
261
262 fn for_instance(
263 tcx: TyCtxt<'tcx>,
264 query: ty::PseudoCanonicalInput<'tcx, (ty::Instance<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
265 ) -> Self {
266 let ty::PseudoCanonicalInput { typing_env, value: (instance, extra_args) } = query;
267 let is_virtual_call = #[allow(non_exhaustive_omitted_patterns)] match instance.def {
ty::InstanceKind::Virtual(..) => true,
_ => false,
}matches!(instance.def, ty::InstanceKind::Virtual(..));
268 let is_tls_shim_call =
269 #[allow(non_exhaustive_omitted_patterns)] match instance.def {
ty::InstanceKind::Shim(ty::ShimKind::ThreadLocal(_)) => true,
_ => false,
}matches!(instance.def, ty::InstanceKind::Shim(ty::ShimKind::ThreadLocal(_)));
270 Self {
271 layout_cx: LayoutCx::new(tcx, typing_env),
272 sig: tcx.normalize_erasing_regions(
273 typing_env,
274 Unnormalized::new_wip(fn_sig_for_fn_abi(tcx, instance, typing_env)),
275 ),
276 determined_fn_def_id: (!is_virtual_call && !is_tls_shim_call)
280 .then(|| instance.def_id()),
281 caller_location: instance
282 .def
283 .requires_caller_location(tcx)
284 .then(|| tcx.caller_location_ty()),
285 is_virtual_call,
286 extra_args,
287 }
288 }
289}
290
291fn fn_abi_of_fn_ptr<'tcx>(
292 tcx: TyCtxt<'tcx>,
293 query: ty::PseudoCanonicalInput<'tcx, (ty::PolyFnSig<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
294) -> Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>> {
295 let desc = FnAbiDesc::for_fn_ptr(tcx, query);
296 fn_abi_new_uncached(desc)
297}
298
299fn fn_abi_of_instance_no_deduced_attrs<'tcx>(
300 tcx: TyCtxt<'tcx>,
301 query: ty::PseudoCanonicalInput<'tcx, (ty::Instance<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
302) -> Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>> {
303 let desc = FnAbiDesc::for_instance(tcx, query);
304 fn_abi_new_uncached(desc)
305}
306
307fn fn_abi_of_instance_raw<'tcx>(
308 tcx: TyCtxt<'tcx>,
309 query: ty::PseudoCanonicalInput<'tcx, (ty::Instance<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
310) -> Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>> {
311 tcx.fn_abi_of_instance_no_deduced_attrs(query).map(|fn_abi| {
314 let params = FnAbiDesc::for_instance(tcx, query);
315 params.determined_fn_def_id.map_or(fn_abi, |fn_def_id| {
318 fn_abi_adjust_for_deduced_attrs(¶ms.layout_cx, fn_abi, params.sig.abi(), fn_def_id)
319 })
320 })
321}
322
323fn arg_attrs_for_rust_scalar<'tcx>(
325 cx: LayoutCx<'tcx>,
326 scalar: Scalar,
327 layout: TyAndLayout<'tcx>,
328 offset: Size,
329 is_return: bool,
330 determined_fn_def_id: Option<DefId>,
331) -> ArgAttributes {
332 let mut attrs = ArgAttributes::new();
333
334 if scalar.is_bool() {
336 attrs.ext(ArgExtension::Zext);
337 attrs.set(ArgAttribute::NoUndef);
338 return attrs;
339 }
340
341 if !scalar.is_uninit_valid() {
342 attrs.set(ArgAttribute::NoUndef);
343 }
344
345 let Scalar::Initialized { value: Pointer(_), valid_range } = scalar else { return attrs };
347
348 if !valid_range.contains(0) {
350 attrs.set(ArgAttribute::NonNull);
351 }
352
353 let tcx = cx.tcx();
354
355 if let Some(pointee) = layout.pointee_info_at(&cx, offset) {
356 if pointee.align > Align::ONE {
357 attrs.pointee_align =
358 Some(pointee.align.min(cx.tcx().sess.target.max_reliable_alignment()));
359 }
360
361 attrs.pointee_size = pointee.size;
362
363 if let Some(kind) = pointee.safe {
364 let noalias_for_box = tcx.sess.opts.unstable_opts.box_noalias;
368
369 let no_alias = match kind {
376 PointerKind::SharedRef { frozen } => frozen,
377 PointerKind::MutableRef { unpin } => unpin,
378 PointerKind::Box { unpin, global } => unpin && global && noalias_for_box,
379 };
380 if no_alias && !is_return {
383 attrs.set(ArgAttribute::NoAlias);
384 }
385
386 if tcx.sess.opts.unstable_opts.llvm_writable
388 && #[allow(non_exhaustive_omitted_patterns)] match kind {
PointerKind::MutableRef { unpin: true } => true,
_ => false,
}matches!(kind, PointerKind::MutableRef { unpin: true })
389 && !is_return
390 {
391 let rustc_no_writable = match determined_fn_def_id {
392 Some(def_id) => {
{
'done:
{
for i in ::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &tcx)
{
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(RustcNoWritable) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}.is_some()find_attr!(tcx, def_id, RustcNoWritable),
393 None => true, };
395
396 if !rustc_no_writable {
397 attrs.set(ArgAttribute::Writable);
398 }
399 }
400
401 let no_free = !is_return
405 && match kind {
406 PointerKind::SharedRef { frozen } => frozen,
410 PointerKind::MutableRef { unpin } => unpin,
414 PointerKind::Box { .. } => false,
416 };
417 if no_free {
418 attrs.set(ArgAttribute::NoFree);
419 }
420
421 if #[allow(non_exhaustive_omitted_patterns)] match kind {
PointerKind::SharedRef { frozen: true } => true,
_ => false,
}matches!(kind, PointerKind::SharedRef { frozen: true }) && !is_return {
422 attrs.set(ArgAttribute::ReadOnly);
423 attrs.set(ArgAttribute::CapturesReadOnly);
424 }
425 }
426 }
427
428 attrs
429}
430
431fn fn_abi_sanity_check<'tcx>(
433 cx: &LayoutCx<'tcx>,
434 fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
435 spec_abi: ExternAbi,
436) {
437 fn fn_arg_attrs_sanity_check(attrs: &ArgAttributes, is_ret: bool) {
438 if attrs.regular.contains(ArgAttribute::NoFree) {
439 if !!is_ret {
{
::core::panicking::panic_fmt(format_args!("NoFree not valid on return values"));
}
};assert!(!is_ret, "NoFree not valid on return values");
440 }
441 }
442
443 fn fn_arg_sanity_check<'tcx>(
444 cx: &LayoutCx<'tcx>,
445 fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
446 spec_abi: ExternAbi,
447 arg: &ArgAbi<'tcx, Ty<'tcx>>,
448 is_ret: bool,
449 ) {
450 let tcx = cx.tcx();
451
452 if spec_abi.is_rustic_abi() {
453 if arg.layout.is_zst() {
454 if !arg.is_ignore() {
::core::panicking::panic("assertion failed: arg.is_ignore()")
};assert!(arg.is_ignore());
457 }
458 if let PassMode::Indirect { on_stack, .. } = arg.mode
459 && spec_abi != ExternAbi::RustTail
460 {
461 if !!on_stack {
{
::core::panicking::panic_fmt(format_args!("rustic abi {0:?} shouldn\'t use on_stack",
spec_abi));
}
};assert!(!on_stack, "rustic abi {spec_abi:?} shouldn't use on_stack");
462 }
463 } else if arg.layout.pass_indirectly_in_non_rustic_abis(cx) {
464 {
match arg.mode {
PassMode::Indirect { on_stack: false, .. } => {}
ref left_val => {
::core::panicking::assert_matches_failed(left_val,
"PassMode::Indirect { on_stack: false, .. }",
::core::option::Option::Some(format_args!("the {0} ABI does not implement `#[rustc_pass_indirectly_in_non_rustic_abis]`",
spec_abi)));
}
}
};assert_matches!(
465 arg.mode,
466 PassMode::Indirect { on_stack: false, .. },
467 "the {spec_abi} ABI does not implement `#[rustc_pass_indirectly_in_non_rustic_abis]`"
468 );
469 }
470
471 match &arg.mode {
472 PassMode::Ignore => {
473 if !arg.layout.is_zst() {
::core::panicking::panic("assertion failed: arg.layout.is_zst()")
};assert!(arg.layout.is_zst());
474 }
475 PassMode::Direct(attrs) => {
476 match arg.layout.backend_repr {
481 BackendRepr::Scalar(_)
482 | BackendRepr::SimdVector { .. }
483 | BackendRepr::SimdScalableVector { .. } => {}
484 BackendRepr::ScalarPair { .. } => {
485 {
::core::panicking::panic_fmt(format_args!("`PassMode::Direct` used for ScalarPair type {0}",
arg.layout.ty));
}panic!("`PassMode::Direct` used for ScalarPair type {}", arg.layout.ty)
486 }
487 BackendRepr::Memory { sized } => {
488 if !sized {
{
::core::panicking::panic_fmt(format_args!("`PassMode::Direct` for unsized type in ABI: {0:#?}",
fn_abi));
}
};assert!(sized, "`PassMode::Direct` for unsized type in ABI: {:#?}", fn_abi);
491
492 if !#[allow(non_exhaustive_omitted_patterns)] match spec_abi {
ExternAbi::Unadjusted => true,
_ => false,
} {
{
::core::panicking::panic_fmt(format_args!("`PassMode::Direct` for aggregates only allowed for \"unadjusted\"\nProblematic type: {0:#?}",
arg.layout));
}
};assert!(
498 matches!(spec_abi, ExternAbi::Unadjusted),
499 "`PassMode::Direct` for aggregates only allowed for \"unadjusted\"\n\
500 Problematic type: {:#?}",
501 arg.layout,
502 );
503 }
504 }
505 fn_arg_attrs_sanity_check(attrs, is_ret);
506 }
507 PassMode::Pair(attrs1, attrs2) => {
508 if !#[allow(non_exhaustive_omitted_patterns)] match arg.layout.backend_repr {
BackendRepr::ScalarPair { .. } => true,
_ => false,
} {
{
::core::panicking::panic_fmt(format_args!("PassMode::Pair for type {0}",
arg.layout.ty));
}
};assert!(
511 matches!(arg.layout.backend_repr, BackendRepr::ScalarPair { .. }),
512 "PassMode::Pair for type {}",
513 arg.layout.ty
514 );
515 fn_arg_attrs_sanity_check(attrs1, is_ret);
516 fn_arg_attrs_sanity_check(attrs2, is_ret);
517 }
518 PassMode::Cast { .. } => {
519 if !arg.layout.is_sized() {
::core::panicking::panic("assertion failed: arg.layout.is_sized()")
};assert!(arg.layout.is_sized());
521 }
522 PassMode::Indirect { meta_attrs: None, attrs, .. } => {
523 if !arg.layout.is_sized() {
::core::panicking::panic("assertion failed: arg.layout.is_sized()")
};assert!(arg.layout.is_sized());
528 fn_arg_attrs_sanity_check(attrs, false);
530 }
531 PassMode::Indirect { meta_attrs: Some(meta_attrs), attrs, on_stack } => {
532 if !(arg.layout.is_unsized() && !on_stack) {
::core::panicking::panic("assertion failed: arg.layout.is_unsized() && !on_stack")
};assert!(arg.layout.is_unsized() && !on_stack);
534 let tail = tcx.struct_tail_for_codegen(arg.layout.ty, cx.typing_env);
536 if #[allow(non_exhaustive_omitted_patterns)] match tail.kind() {
ty::Foreign(..) => true,
_ => false,
}matches!(tail.kind(), ty::Foreign(..)) {
537 {
::core::panicking::panic_fmt(format_args!("unsized arguments must not be `extern` types"));
};panic!("unsized arguments must not be `extern` types");
542 }
543 fn_arg_attrs_sanity_check(attrs, false);
545 fn_arg_attrs_sanity_check(meta_attrs, false);
546 }
547 }
548 }
549
550 for arg in fn_abi.args.iter() {
551 fn_arg_sanity_check(cx, fn_abi, spec_abi, arg, false);
552 }
553 fn_arg_sanity_check(cx, fn_abi, spec_abi, &fn_abi.ret, true);
554}
555
556#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("fn_abi_new_uncached",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(556u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("sig")
}> =
::tracing::__macro_support::FieldName::new("sig");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("extra_args")
}> =
::tracing::__macro_support::FieldName::new("extra_args");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&sig)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&extra_args)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return:
Result<&'tcx FnAbi<'tcx, Ty<'tcx>>,
&'tcx FnAbiError<'tcx>> = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = cx.tcx();
let abi_map = AbiMap::from_target(&tcx.sess.target);
let conv =
abi_map.canonize_abi(sig.abi(), sig.c_variadic()).unwrap();
let mut inputs = sig.inputs();
let extra_args =
if sig.abi() == ExternAbi::RustCall {
if !(!sig.c_variadic() && extra_args.is_empty()) {
::core::panicking::panic("assertion failed: !sig.c_variadic() && extra_args.is_empty()")
};
if let Some(input) = sig.inputs().last() &&
let ty::Tuple(tupled_arguments) = input.kind() {
inputs = &sig.inputs()[0..sig.inputs().len() - 1];
tupled_arguments
} else {
::rustc_middle::util::bug::bug_fmt(format_args!("argument to function with \"rust-call\" ABI is not a tuple"));
}
} else {
if !(sig.c_variadic() || extra_args.is_empty()) {
::core::panicking::panic("assertion failed: sig.c_variadic() || extra_args.is_empty()")
};
extra_args
};
let arg_of =
|ty: Ty<'tcx>, arg_idx: Option<usize>|
-> Result<_, &'tcx FnAbiError<'tcx>>
{
let span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("arg_of",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(596u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{ meta.fields().value_set_all(&[]) })
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
let _entered = span.enter();
let is_return = arg_idx.is_none();
let layout =
cx.layout_of(ty).map_err(|err|
&*tcx.arena.alloc(FnAbiError::Layout(*err)))?;
let layout =
if is_virtual_call && arg_idx == Some(0) {
make_thin_self_ptr(cx, layout)
} else { layout };
Ok(ArgAbi::new(layout,
|scalar, offset|
{
arg_attrs_for_rust_scalar(*cx, scalar, layout, offset,
is_return, determined_fn_def_id)
}))
};
let mut fn_abi =
FnAbi {
ret: arg_of(sig.output(), None)?,
args: inputs.iter().copied().chain(extra_args.iter().copied()).chain(caller_location).enumerate().map(|(i,
ty)| arg_of(ty, Some(i))).collect::<Result<_, _>>()?,
c_variadic: sig.c_variadic(),
fixed_count: inputs.len() as u32,
conv,
can_unwind: fn_can_unwind(tcx, determined_fn_def_id,
sig.abi()),
};
fn_abi_adjust_for_abi(cx, &mut fn_abi, sig.abi());
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_ty_utils/src/abi.rs:637",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(637u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("fn_abi_new_uncached = {0:?}",
fn_abi) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
fn_abi_sanity_check(cx, &fn_abi, sig.abi());
Ok(tcx.arena.alloc(fn_abi))
}
}
}#[tracing::instrument(
557 level = "debug",
558 skip(cx, caller_location, determined_fn_def_id, is_virtual_call)
559)]
560fn fn_abi_new_uncached<'tcx>(
561 FnAbiDesc {
562 layout_cx: ref cx,
563 sig,
564 determined_fn_def_id,
565 caller_location,
566 is_virtual_call,
567 extra_args,
568 }: FnAbiDesc<'tcx>,
569) -> Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>> {
570 let tcx = cx.tcx();
571
572 let abi_map = AbiMap::from_target(&tcx.sess.target);
573 let conv = abi_map.canonize_abi(sig.abi(), sig.c_variadic()).unwrap();
574
575 let mut inputs = sig.inputs();
576 let extra_args = if sig.abi() == ExternAbi::RustCall {
577 assert!(!sig.c_variadic() && extra_args.is_empty());
578
579 if let Some(input) = sig.inputs().last()
580 && let ty::Tuple(tupled_arguments) = input.kind()
581 {
582 inputs = &sig.inputs()[0..sig.inputs().len() - 1];
583 tupled_arguments
584 } else {
585 bug!(
586 "argument to function with \"rust-call\" ABI \
587 is not a tuple"
588 );
589 }
590 } else {
591 assert!(sig.c_variadic() || extra_args.is_empty());
592 extra_args
593 };
594
595 let arg_of = |ty: Ty<'tcx>, arg_idx: Option<usize>| -> Result<_, &'tcx FnAbiError<'tcx>> {
596 let span = tracing::debug_span!("arg_of");
597 let _entered = span.enter();
598 let is_return = arg_idx.is_none();
599
600 let layout = cx.layout_of(ty).map_err(|err| &*tcx.arena.alloc(FnAbiError::Layout(*err)))?;
601 let layout = if is_virtual_call && arg_idx == Some(0) {
602 make_thin_self_ptr(cx, layout)
606 } else {
607 layout
608 };
609
610 Ok(ArgAbi::new(layout, |scalar, offset| {
611 arg_attrs_for_rust_scalar(*cx, scalar, layout, offset, is_return, determined_fn_def_id)
612 }))
613 };
614
615 let mut fn_abi = FnAbi {
616 ret: arg_of(sig.output(), None)?,
617 args: inputs
618 .iter()
619 .copied()
620 .chain(extra_args.iter().copied())
621 .chain(caller_location)
622 .enumerate()
623 .map(|(i, ty)| arg_of(ty, Some(i)))
624 .collect::<Result<_, _>>()?,
625 c_variadic: sig.c_variadic(),
626 fixed_count: inputs.len() as u32,
627 conv,
628 can_unwind: fn_can_unwind(
630 tcx,
631 determined_fn_def_id,
633 sig.abi(),
634 ),
635 };
636 fn_abi_adjust_for_abi(cx, &mut fn_abi, sig.abi());
637 debug!("fn_abi_new_uncached = {:?}", fn_abi);
638 fn_abi_sanity_check(cx, &fn_abi, sig.abi());
639 Ok(tcx.arena.alloc(fn_abi))
640}
641
642#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("fn_abi_adjust_for_abi",
"rustc_ty_utils::abi", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(642u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("fn_abi")
}> =
::tracing::__macro_support::FieldName::new("fn_abi");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("abi")
}> =
::tracing::__macro_support::FieldName::new("abi");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fn_abi)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&abi)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
if abi == ExternAbi::Unadjusted {
fn unadjust<'tcx>(arg: &mut ArgAbi<'tcx, Ty<'tcx>>) {
if #[allow(non_exhaustive_omitted_patterns)] match arg.layout.backend_repr
{
BackendRepr::Memory { .. } => true,
_ => false,
} {
if !arg.layout.backend_repr.is_sized() {
{
::core::panicking::panic_fmt(format_args!("\'unadjusted\' ABI does not support unsized arguments"));
}
};
}
arg.make_direct_deprecated();
}
unadjust(&mut fn_abi.ret);
for arg in fn_abi.args.iter_mut() { unadjust(arg); }
} else if abi.is_rustic_abi() {
fn_abi.adjust_for_rust_abi(cx);
} else { fn_abi.adjust_for_foreign_abi(cx, abi); }
}
}
}#[tracing::instrument(level = "trace", skip(cx))]
643fn fn_abi_adjust_for_abi<'tcx>(
644 cx: &LayoutCx<'tcx>,
645 fn_abi: &mut FnAbi<'tcx, Ty<'tcx>>,
646 abi: ExternAbi,
647) {
648 if abi == ExternAbi::Unadjusted {
649 fn unadjust<'tcx>(arg: &mut ArgAbi<'tcx, Ty<'tcx>>) {
652 if matches!(arg.layout.backend_repr, BackendRepr::Memory { .. }) {
655 assert!(
656 arg.layout.backend_repr.is_sized(),
657 "'unadjusted' ABI does not support unsized arguments"
658 );
659 }
660 arg.make_direct_deprecated();
661 }
662
663 unadjust(&mut fn_abi.ret);
664 for arg in fn_abi.args.iter_mut() {
665 unadjust(arg);
666 }
667 } else if abi.is_rustic_abi() {
668 fn_abi.adjust_for_rust_abi(cx);
669 } else {
670 fn_abi.adjust_for_foreign_abi(cx, abi);
671 }
672}
673
674#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("fn_abi_adjust_for_deduced_attrs",
"rustc_ty_utils::abi", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(674u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("fn_abi")
}> =
::tracing::__macro_support::FieldName::new("fn_abi");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("abi")
}> =
::tracing::__macro_support::FieldName::new("abi");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("fn_def_id")
}> =
::tracing::__macro_support::FieldName::new("fn_def_id");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fn_abi)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&abi)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fn_def_id)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: &'tcx FnAbi<'tcx, Ty<'tcx>> =
loop {};
return __tracing_attr_fake_return;
}
{
let tcx = cx.tcx();
let deduced =
if abi.is_rustic_abi() {
tcx.deduced_param_attrs(fn_def_id)
} else { &[] };
if deduced.is_empty() {
fn_abi
} else {
let mut fn_abi = fn_abi.clone();
apply_deduced_attributes(cx, deduced, 0, &mut fn_abi.ret);
for (arg_idx, arg) in fn_abi.args.iter_mut().enumerate() {
apply_deduced_attributes(cx, deduced, arg_idx + 1, arg);
}
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_ty_utils/src/abi.rs:693",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(693u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("fn_abi_adjust_for_deduced_attrs = {0:?}",
fn_abi) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
fn_abi_sanity_check(cx, &fn_abi, abi);
tcx.arena.alloc(fn_abi)
}
}
}
}#[tracing::instrument(level = "trace", skip(cx))]
675fn fn_abi_adjust_for_deduced_attrs<'tcx>(
676 cx: &LayoutCx<'tcx>,
677 fn_abi: &'tcx FnAbi<'tcx, Ty<'tcx>>,
678 abi: ExternAbi,
679 fn_def_id: DefId,
680) -> &'tcx FnAbi<'tcx, Ty<'tcx>> {
681 let tcx = cx.tcx();
682 let deduced = if abi.is_rustic_abi() { tcx.deduced_param_attrs(fn_def_id) } else { &[] };
685 if deduced.is_empty() {
686 fn_abi
687 } else {
688 let mut fn_abi = fn_abi.clone();
689 apply_deduced_attributes(cx, deduced, 0, &mut fn_abi.ret);
690 for (arg_idx, arg) in fn_abi.args.iter_mut().enumerate() {
691 apply_deduced_attributes(cx, deduced, arg_idx + 1, arg);
692 }
693 debug!("fn_abi_adjust_for_deduced_attrs = {:?}", fn_abi);
694 fn_abi_sanity_check(cx, &fn_abi, abi);
695 tcx.arena.alloc(fn_abi)
696 }
697}
698
699fn apply_deduced_attributes<'tcx>(
704 cx: &LayoutCx<'tcx>,
705 deduced: &[DeducedParamAttrs],
706 idx: usize,
707 arg: &mut ArgAbi<'tcx, Ty<'tcx>>,
708) {
709 let PassMode::Indirect { ref mut attrs, .. } = arg.mode else {
711 return;
712 };
713 let Some(deduced) = deduced.get(idx) else {
715 return;
716 };
717 if deduced.read_only(cx.tcx(), cx.typing_env, arg.layout.ty) {
718 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_ty_utils/src/abi.rs:718",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(718u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("added deduced ReadOnly attribute")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("added deduced ReadOnly attribute");
719 attrs.regular.insert(ArgAttribute::ReadOnly);
720 }
721 if deduced.captures_none(cx.tcx(), cx.typing_env, arg.layout.ty) {
722 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_ty_utils/src/abi.rs:722",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(722u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("added deduced CapturesNone attribute")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("added deduced CapturesNone attribute");
723 attrs.regular.insert(ArgAttribute::CapturesNone);
724 }
725}
726
727#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("make_thin_self_ptr",
"rustc_ty_utils::abi", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_ty_utils/src/abi.rs"),
::tracing_core::__macro_support::Option::Some(727u32),
::tracing_core::__macro_support::Option::Some("rustc_ty_utils::abi"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("layout")
}> =
::tracing::__macro_support::FieldName::new("layout");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&layout)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: TyAndLayout<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = cx.tcx();
let wide_pointer_ty =
if layout.is_unsized() {
Ty::new_mut_ptr(tcx, layout.ty)
} else {
match layout.backend_repr {
BackendRepr::ScalarPair { .. } | BackendRepr::Scalar(..) =>
(),
_ =>
::rustc_middle::util::bug::bug_fmt(format_args!("receiver type has unsupported layout: {0:?}",
layout)),
}
let mut wide_pointer_layout = layout;
while !wide_pointer_layout.ty.is_raw_ptr() &&
!wide_pointer_layout.ty.is_ref() {
wide_pointer_layout =
wide_pointer_layout.non_1zst_field(cx).expect("not exactly one non-1-ZST field in a `DispatchFromDyn` type").1
}
wide_pointer_layout.ty
};
let unit_ptr_ty = Ty::new_mut_ptr(tcx, tcx.types.unit);
TyAndLayout {
ty: wide_pointer_ty,
..tcx.layout_of(ty::TypingEnv::fully_monomorphized().as_query_input(unit_ptr_ty)).unwrap()
}
}
}
}#[tracing::instrument(level = "debug", skip(cx))]
728fn make_thin_self_ptr<'tcx>(
729 cx: &(impl HasTyCtxt<'tcx> + HasTypingEnv<'tcx>),
730 layout: TyAndLayout<'tcx>,
731) -> TyAndLayout<'tcx> {
732 let tcx = cx.tcx();
733 let wide_pointer_ty = if layout.is_unsized() {
734 Ty::new_mut_ptr(tcx, layout.ty)
737 } else {
738 match layout.backend_repr {
739 BackendRepr::ScalarPair { .. } | BackendRepr::Scalar(..) => (),
740 _ => bug!("receiver type has unsupported layout: {:?}", layout),
741 }
742
743 let mut wide_pointer_layout = layout;
749 while !wide_pointer_layout.ty.is_raw_ptr() && !wide_pointer_layout.ty.is_ref() {
750 wide_pointer_layout = wide_pointer_layout
751 .non_1zst_field(cx)
752 .expect("not exactly one non-1-ZST field in a `DispatchFromDyn` type")
753 .1
754 }
755
756 wide_pointer_layout.ty
757 };
758
759 let unit_ptr_ty = Ty::new_mut_ptr(tcx, tcx.types.unit);
763
764 TyAndLayout {
765 ty: wide_pointer_ty,
766
767 ..tcx.layout_of(ty::TypingEnv::fully_monomorphized().as_query_input(unit_ptr_ty)).unwrap()
770 }
771}