1use std::iter;
23use rustc_index::IndexVec;
4use rustc_index::bit_set::DenseBitSet;
5use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
6use rustc_middle::mir::{Body, Local, UnwindTerminateReason, traversal};
7use rustc_middle::ty::layout::{FnAbiOf, HasTyCtxt, HasTypingEnv, TyAndLayout};
8use rustc_middle::ty::{self, Instance, Ty, TyCtxt, TypeFoldable, TypeVisitableExt};
9use rustc_middle::{bug, mir, span_bug};
10use rustc_span::ErrorGuaranteed;
11use rustc_target::callconv::{FnAbi, PassMode};
12use tracing::{debug, instrument};
1314use crate::base;
15use crate::traits::*;
1617mod analyze;
18mod block;
19mod constant;
20mod coverageinfo;
21pub mod debuginfo;
22mod intrinsic;
23mod locals;
24pub mod naked_asm;
25pub mod operand;
26pub mod place;
27mod retag;
28mod rvalue;
29mod statement;
3031pub use self::block::store_cast;
32use self::debuginfo::{FunctionDebugContext, PerLocalVarDebugInfo};
33use self::operand::{OperandRef, OperandValue};
34use self::place::PlaceRef;
3536// Used for tracking the state of generated basic blocks.
37enum CachedLlbb<T> {
38/// Nothing created yet.
39None,
4041/// Has been created.
42Some(T),
4344/// Nothing created yet, and nothing should be.
45Skip,
46}
4748type PerLocalVarDebugInfoIndexVec<'tcx, V> =
49IndexVec<mir::Local, Vec<PerLocalVarDebugInfo<'tcx, V>>>;
5051/// Master context for codegenning from MIR.
52pub struct FunctionCx<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> {
53 instance: Instance<'tcx>,
5455 mir: &'tcx mir::Body<'tcx>,
5657 debug_context: Option<FunctionDebugContext<'tcx, Bx::DIScope, Bx::DILocation>>,
5859 llfn: Bx::Function,
6061 cx: &'a Bx::CodegenCx,
6263 fn_abi: &'tcx FnAbi<'tcx, Ty<'tcx>>,
6465/// When unwinding is initiated, we have to store this personality
66 /// value somewhere so that we can load it and re-use it in the
67 /// resume instruction. The personality is (afaik) some kind of
68 /// value used for C++ unwinding, which must filter by type: we
69 /// don't really care about it very much. Anyway, this value
70 /// contains an alloca into which the personality is stored and
71 /// then later loaded when generating the DIVERGE_BLOCK.
72personality_slot: Option<PlaceRef<'tcx, Bx::Value>>,
7374/// A backend `BasicBlock` for each MIR `BasicBlock`, created lazily
75 /// as-needed (e.g. RPO reaching it or another block branching to it).
76// FIXME(eddyb) rename `llbbs` and other `ll`-prefixed things to use a
77 // more backend-agnostic prefix such as `cg` (i.e. this would be `cgbbs`).
78cached_llbbs: IndexVec<mir::BasicBlock, CachedLlbb<Bx::BasicBlock>>,
7980/// The funclet status of each basic block
81cleanup_kinds: Option<IndexVec<mir::BasicBlock, analyze::CleanupKind>>,
8283/// When targeting MSVC, this stores the cleanup info for each funclet BB.
84 /// This is initialized at the same time as the `landing_pads` entry for the
85 /// funclets' head block, i.e. when needed by an unwind / `cleanup_ret` edge.
86funclets: IndexVec<mir::BasicBlock, Option<Bx::Funclet>>,
8788/// This stores the cached landing/cleanup pad block for a given BB.
89// FIXME(eddyb) rename this to `eh_pads`.
90landing_pads: IndexVec<mir::BasicBlock, Option<Bx::BasicBlock>>,
9192/// Cached unreachable block
93unreachable_block: Option<Bx::BasicBlock>,
9495/// Cached terminate upon unwinding block and its reason. For non-wasm
96 /// targets, there is at most one such block per function, stored at index
97 /// `START_BLOCK`. For wasm targets, each funclet needs its own terminate
98 /// block, indexed by the cleanup block that is the funclet's head.
99terminate_blocks: IndexVec<mir::BasicBlock, Option<(Bx::BasicBlock, UnwindTerminateReason)>>,
100101/// A bool flag for each basic block indicating whether it is a cold block.
102 /// A cold block is a block that is unlikely to be executed at runtime.
103cold_blocks: IndexVec<mir::BasicBlock, bool>,
104105 nop_landing_pads: DenseBitSet<mir::BasicBlock>,
106107/// The location where each MIR arg/var/tmp/ret is stored. This is
108 /// usually an `PlaceRef` representing an alloca, but not always:
109 /// sometimes we can skip the alloca and just store the value
110 /// directly using an `OperandRef`, which makes for tighter LLVM
111 /// IR. The conditions for using an `OperandRef` are as follows:
112 ///
113 /// - the type of the local must be judged "immediate" by `is_llvm_immediate`
114 /// - the operand must never be referenced indirectly
115 /// - we should not take its address using the `&` operator
116 /// - nor should it appear in a place path like `tmp.a`
117 /// - the operand must be defined by an rvalue that can generate immediate
118 /// values
119 ///
120 /// Avoiding allocs can also be important for certain intrinsics,
121 /// notably `expect`.
122locals: locals::Locals<'tcx, Bx::Value>,
123124/// All `VarDebugInfo` from the MIR body, partitioned by `Local`.
125 /// This is `None` if no variable debuginfo/names are needed.
126per_local_var_debug_info: Option<PerLocalVarDebugInfoIndexVec<'tcx, Bx::DIVariable>>,
127128/// Caller location propagated if this function has `#[track_caller]`.
129caller_location: Option<OperandRef<'tcx, Bx::Value>>,
130}
131132impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
133pub fn monomorphize<T>(&self, value: T) -> T
134where
135T: Copy + TypeFoldable<TyCtxt<'tcx>>,
136 {
137{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:137",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(137u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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!("monomorphize: self.instance={0:?}",
self.instance) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("monomorphize: self.instance={:?}", self.instance);
138self.instance.instantiate_mir_and_normalize_erasing_regions(
139self.cx.tcx(),
140self.cx.typing_env(),
141 ty::EarlyBinder::bind(self.cx.tcx(), value),
142 )
143 }
144}
145146enum LocalRef<'tcx, V> {
147 Place(PlaceRef<'tcx, V>),
148/// `UnsizedPlace(p)`: `p` itself is a thin pointer (indirect place).
149 /// `*p` is the wide pointer that references the actual unsized place.
150 ///
151 /// MIR only supports unsized args, not dynamically-sized locals, so
152 /// new unsized temps don't exist and we must reuse the referred-to place.
153 ///
154 /// FIXME: Since the removal of unsized locals in <https://github.com/rust-lang/rust/pull/142911>,
155 /// can we maybe use `Place` here? Or refactor it in another way? There are quite a few
156 /// `UnsizedPlace => bug` branches now.
157UnsizedPlace(PlaceRef<'tcx, V>),
158/// The backend [`OperandValue`] has already been generated.
159Operand(OperandRef<'tcx, V>),
160/// Will be a `Self::Operand` once we get to its definition.
161PendingOperand,
162}
163164pub enum IntrinsicResult<'tcx, V> {
165/// This intrinsic created an operand without using the `result_place` argument.
166 ///
167 /// `codegen_call_terminator` will handle writing the result into the place,
168 /// if doing so is needed.
169 ///
170 /// The vast majority of intrinsics can do this, see MCP#970
171Operand(OperandValue<V>),
172173/// The intrinsic wrote its result into the `result_place` argument.
174 ///
175 /// Most things don't need to do this, but there are some: `volatile_load`
176 /// of a non-scalar type, for example, has to.
177WroteIntoPlace,
178179/// Another instance should be called instead. This is used to invoke intrinsic
180 /// default bodies in case an intrinsic is not implemented by the backend.
181Fallback(ty::Instance<'tcx>),
182183/// Arguably this shouldn't exist, per MCP#620, but a bunch do it.
184Err(ErrorGuaranteed),
185}
186187impl<'tcx, V: CodegenObject> LocalRef<'tcx, V> {
188fn new_operand(layout: TyAndLayout<'tcx>) -> LocalRef<'tcx, V> {
189if layout.is_zst() {
190// Zero-size temporaries aren't always initialized, which
191 // doesn't matter because they don't contain data, but
192 // we need something sufficiently aligned in the operand.
193LocalRef::Operand(OperandRef::zero_sized(layout))
194 } else {
195 LocalRef::PendingOperand196 }
197 }
198}
199200///////////////////////////////////////////////////////////////////////////
201202#[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("codegen_mir",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(202u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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: () = loop {};
return __tracing_attr_fake_return;
}
{
if !!instance.args.has_infer() {
::core::panicking::panic("assertion failed: !instance.args.has_infer()")
};
let tcx = cx.tcx();
let llfn = cx.get_fn(instance);
let mut mir = tcx.instance_mir(instance.def);
let fn_abi = cx.fn_abi_of_instance(instance, ty::List::empty());
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:218",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(218u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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: {0:?}",
fn_abi) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let nop_landing_pads =
rustc_mir_transform::remove_noop_landing_pads::find_noop_landing_pads(mir,
Some(rustc_mir_transform::remove_noop_landing_pads::ExtraInfo {
tcx,
instance,
typing_env: cx.typing_env(),
}));
if tcx.features().ergonomic_clones() {
let monomorphized_mir =
instance.instantiate_mir_and_normalize_erasing_regions(tcx,
ty::TypingEnv::fully_monomorphized(),
ty::EarlyBinder::bind(tcx, mir.clone()));
mir =
tcx.arena.alloc(optimize_use_clone::<Bx>(cx,
monomorphized_mir));
}
let start_llbb = Bx::append_block(cx, llfn, "start");
let mut start_bx = Bx::build(cx, start_llbb);
if mir::traversal::mono_reachable(&mir, tcx,
instance).any(|(bb, block)|
{
(block.is_cleanup && !nop_landing_pads.contains(bb)) ||
#[allow(non_exhaustive_omitted_patterns)] match block.terminator().unwind()
{
Some(mir::UnwindAction::Terminate(_)) => true,
_ => false,
}
}) {
start_bx.set_personality_fn(cx.eh_personality());
}
let cleanup_kinds =
base::wants_new_eh_instructions(tcx.sess).then(||
analyze::cleanup_kinds(&mir, &nop_landing_pads));
let cached_llbbs:
IndexVec<mir::BasicBlock, CachedLlbb<Bx::BasicBlock>> =
mir.basic_blocks.indices().map(|bb|
{
if bb == mir::START_BLOCK {
CachedLlbb::Some(start_llbb)
} else { CachedLlbb::None }
}).collect();
let mut fx =
FunctionCx {
instance,
mir,
llfn,
fn_abi,
cx,
personality_slot: None,
cached_llbbs,
unreachable_block: None,
terminate_blocks: IndexVec::from_elem(None,
&mir.basic_blocks),
cleanup_kinds,
landing_pads: IndexVec::from_elem(None, &mir.basic_blocks),
funclets: IndexVec::from_fn_n(|_| None,
mir.basic_blocks.len()),
cold_blocks: find_cold_blocks(tcx, mir),
locals: locals::Locals::empty(),
debug_context: None,
per_local_var_debug_info: None,
caller_location: None,
nop_landing_pads,
};
fx.fill_function_debug_context(&mut start_bx);
let (per_local_var_debug_info, consts_debug_info) =
fx.compute_per_local_var_debug_info(&mut start_bx).unzip();
fx.per_local_var_debug_info = per_local_var_debug_info;
let mut traversal_order =
traversal::mono_reachable_reverse_postorder(mir, tcx,
instance);
{
let mut reachable =
DenseBitSet::new_empty(mir.basic_blocks.len());
let mut to_visit =
::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[mir::START_BLOCK]));
while let Some(next) = to_visit.pop() {
if !reachable.insert(next) { continue; }
let block = &mir.basic_blocks[next];
if let Some(mir::UnwindAction::Cleanup(target)) =
block.terminator().unwind() &&
fx.nop_landing_pads.contains(*target) {
to_visit.extend(block.terminator().successors().filter(|s|
s != target));
} else { to_visit.extend(block.terminator().successors()); }
}
traversal_order.retain(|bb| reachable.contains(*bb));
}
let memory_locals =
analyze::non_ssa_locals(&fx, &traversal_order);
let local_values =
{
let args =
arg_local_refs(&mut start_bx, &mut fx, &memory_locals);
let mut allocate_local =
|local: Local|
{
let decl = &mir.local_decls[local];
let layout = start_bx.layout_of(fx.monomorphize(decl.ty));
if !!layout.ty.has_erasable_regions() {
::core::panicking::panic("assertion failed: !layout.ty.has_erasable_regions()")
};
if local == mir::RETURN_PLACE {
match fx.fn_abi.ret.mode {
PassMode::Indirect { .. } => {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:335",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(335u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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!("alloc: {0:?} (return place) -> place",
local) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let llretptr = start_bx.get_param(0);
return LocalRef::Place(PlaceRef::new_sized(llretptr,
layout));
}
PassMode::Cast { ref cast, .. } => {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:340",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(340u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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!("alloc: {0:?} (return place) -> place",
local) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let size = cast.size(&start_bx).max(layout.size);
return LocalRef::Place(PlaceRef::alloca_size(&mut start_bx,
size, layout));
}
_ => {}
};
}
if memory_locals.contains(local) {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:349",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(349u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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!("alloc: {0:?} -> place",
local) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
if layout.is_unsized() {
LocalRef::UnsizedPlace(PlaceRef::alloca_unsized_indirect(&mut start_bx,
layout))
} else {
LocalRef::Place(PlaceRef::alloca(&mut start_bx, layout))
}
} else {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/mod.rs:356",
"rustc_codegen_ssa::mir", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/mod.rs"),
::tracing_core::__macro_support::Option::Some(356u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir"),
::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!("alloc: {0:?} -> operand",
local) as &dyn ::tracing::field::Value))])
});
} else { ; }
};
LocalRef::new_operand(layout)
}
};
let retptr = allocate_local(mir::RETURN_PLACE);
iter::once(retptr).chain(args.into_iter()).chain(mir.vars_and_temps_iter().map(allocate_local)).collect()
};
fx.initialize_locals(local_values);
fx.debug_introduce_locals(&mut start_bx,
consts_debug_info.unwrap_or_default());
drop(start_bx);
let mut unreached_blocks =
DenseBitSet::new_filled(mir.basic_blocks.len());
for bb in traversal_order {
fx.codegen_block(bb);
unreached_blocks.remove(bb);
}
for bb in unreached_blocks.iter() {
fx.codegen_block_as_unreachable(bb);
}
}
}
}#[instrument(level = "debug", skip(cx))]203pub fn codegen_mir<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
204 cx: &'a Bx::CodegenCx,
205 instance: Instance<'tcx>,
206) {
207assert!(!instance.args.has_infer());
208209let tcx = cx.tcx();
210let llfn = cx.get_fn(instance);
211212let mut mir = tcx.instance_mir(instance.def);
213// Note that the ABI logic has deduced facts about the functions' parameters based on the MIR we
214 // got here (`deduce_param_attrs`). That means we can *not* apply arbitrary further MIR
215 // transforms as that may invalidate those deduced facts!
216217let fn_abi = cx.fn_abi_of_instance(instance, ty::List::empty());
218debug!("fn_abi: {:?}", fn_abi);
219220let nop_landing_pads = rustc_mir_transform::remove_noop_landing_pads::find_noop_landing_pads(
221 mir,
222Some(rustc_mir_transform::remove_noop_landing_pads::ExtraInfo {
223 tcx,
224 instance,
225 typing_env: cx.typing_env(),
226 }),
227 );
228229if tcx.features().ergonomic_clones() {
230let monomorphized_mir = instance.instantiate_mir_and_normalize_erasing_regions(
231 tcx,
232 ty::TypingEnv::fully_monomorphized(),
233 ty::EarlyBinder::bind(tcx, mir.clone()),
234 );
235 mir = tcx.arena.alloc(optimize_use_clone::<Bx>(cx, monomorphized_mir));
236 }
237238let start_llbb = Bx::append_block(cx, llfn, "start");
239let mut start_bx = Bx::build(cx, start_llbb);
240241if mir::traversal::mono_reachable(&mir, tcx, instance).any(|(bb, block)| {
242 (block.is_cleanup && !nop_landing_pads.contains(bb))
243 || matches!(block.terminator().unwind(), Some(mir::UnwindAction::Terminate(_)))
244 }) {
245 start_bx.set_personality_fn(cx.eh_personality());
246 }
247248let cleanup_kinds = base::wants_new_eh_instructions(tcx.sess)
249 .then(|| analyze::cleanup_kinds(&mir, &nop_landing_pads));
250251let cached_llbbs: IndexVec<mir::BasicBlock, CachedLlbb<Bx::BasicBlock>> =
252 mir.basic_blocks
253 .indices()
254 .map(|bb| {
255if bb == mir::START_BLOCK { CachedLlbb::Some(start_llbb) } else { CachedLlbb::None }
256 })
257 .collect();
258259let mut fx = FunctionCx {
260 instance,
261 mir,
262 llfn,
263 fn_abi,
264 cx,
265 personality_slot: None,
266 cached_llbbs,
267 unreachable_block: None,
268 terminate_blocks: IndexVec::from_elem(None, &mir.basic_blocks),
269 cleanup_kinds,
270 landing_pads: IndexVec::from_elem(None, &mir.basic_blocks),
271 funclets: IndexVec::from_fn_n(|_| None, mir.basic_blocks.len()),
272 cold_blocks: find_cold_blocks(tcx, mir),
273 locals: locals::Locals::empty(),
274 debug_context: None,
275 per_local_var_debug_info: None,
276 caller_location: None,
277 nop_landing_pads,
278 };
279280// It may seem like we should iterate over `required_consts` to ensure they all successfully
281 // evaluate; however, the `MirUsedCollector` already did that during the collection phase of
282 // monomorphization, and if there is an error during collection then codegen never starts -- so
283 // we don't have to do it again.
284285fx.fill_function_debug_context(&mut start_bx);
286287let (per_local_var_debug_info, consts_debug_info) =
288 fx.compute_per_local_var_debug_info(&mut start_bx).unzip();
289 fx.per_local_var_debug_info = per_local_var_debug_info;
290291let mut traversal_order = traversal::mono_reachable_reverse_postorder(mir, tcx, instance);
292293// Filter out blocks that won't be codegen'd because of nop_landing_pads optimization.
294 // FIXME: We might want to integrate the nop_landing_pads analysis into mono reachability.
295{
296let mut reachable = DenseBitSet::new_empty(mir.basic_blocks.len());
297let mut to_visit = vec![mir::START_BLOCK];
298while let Some(next) = to_visit.pop() {
299if !reachable.insert(next) {
300continue;
301 }
302303let block = &mir.basic_blocks[next];
304if let Some(mir::UnwindAction::Cleanup(target)) = block.terminator().unwind()
305 && fx.nop_landing_pads.contains(*target)
306 {
307// This edge will not be followed when we actually codegen, so skip generating it here.
308 //
309 // It's guaranteed that the cleanup block (`target`) occurs only in
310 // UnwindAction::Cleanup(...) -- i.e., we can't incorrectly filter too much here --
311 // because cleanup transitions must happen via UnwindAction::Cleanup.
312to_visit.extend(block.terminator().successors().filter(|s| s != target));
313 } else {
314 to_visit.extend(block.terminator().successors());
315 }
316 }
317318 traversal_order.retain(|bb| reachable.contains(*bb));
319 }
320321let memory_locals = analyze::non_ssa_locals(&fx, &traversal_order);
322323// Allocate variable and temp allocas
324let local_values = {
325let args = arg_local_refs(&mut start_bx, &mut fx, &memory_locals);
326327let mut allocate_local = |local: Local| {
328let decl = &mir.local_decls[local];
329let layout = start_bx.layout_of(fx.monomorphize(decl.ty));
330assert!(!layout.ty.has_erasable_regions());
331332if local == mir::RETURN_PLACE {
333match fx.fn_abi.ret.mode {
334 PassMode::Indirect { .. } => {
335debug!("alloc: {:?} (return place) -> place", local);
336let llretptr = start_bx.get_param(0);
337return LocalRef::Place(PlaceRef::new_sized(llretptr, layout));
338 }
339 PassMode::Cast { ref cast, .. } => {
340debug!("alloc: {:?} (return place) -> place", local);
341let size = cast.size(&start_bx).max(layout.size);
342return LocalRef::Place(PlaceRef::alloca_size(&mut start_bx, size, layout));
343 }
344_ => {}
345 };
346 }
347348if memory_locals.contains(local) {
349debug!("alloc: {:?} -> place", local);
350if layout.is_unsized() {
351 LocalRef::UnsizedPlace(PlaceRef::alloca_unsized_indirect(&mut start_bx, layout))
352 } else {
353 LocalRef::Place(PlaceRef::alloca(&mut start_bx, layout))
354 }
355 } else {
356debug!("alloc: {:?} -> operand", local);
357 LocalRef::new_operand(layout)
358 }
359 };
360361let retptr = allocate_local(mir::RETURN_PLACE);
362 iter::once(retptr)
363 .chain(args.into_iter())
364 .chain(mir.vars_and_temps_iter().map(allocate_local))
365 .collect()
366 };
367 fx.initialize_locals(local_values);
368369// Apply debuginfo to the newly allocated locals.
370fx.debug_introduce_locals(&mut start_bx, consts_debug_info.unwrap_or_default());
371372// The builders will be created separately for each basic block at `codegen_block`.
373 // So drop the builder of `start_llbb` to avoid having two at the same time.
374drop(start_bx);
375376let mut unreached_blocks = DenseBitSet::new_filled(mir.basic_blocks.len());
377// Codegen the body of each reachable block using our reverse postorder list.
378for bb in traversal_order {
379 fx.codegen_block(bb);
380 unreached_blocks.remove(bb);
381 }
382383// FIXME: These empty unreachable blocks are *mostly* a waste. They are occasionally
384 // targets for a SwitchInt terminator, but the reimplementation of the mono-reachable
385 // simplification in SwitchInt lowering sometimes misses cases that
386 // mono_reachable_reverse_postorder manages to figure out.
387 // The solution is to do something like post-mono GVN. But for now we have this hack.
388for bb in unreached_blocks.iter() {
389 fx.codegen_block_as_unreachable(bb);
390 }
391}
392393/// Replace `clone` calls that come from `use` statements with direct copies if possible.
394// FIXME: Move this function to mir::transform when post-mono MIR passes land.
395fn optimize_use_clone<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
396 cx: &'a Bx::CodegenCx,
397mut mir: Body<'tcx>,
398) -> Body<'tcx> {
399let tcx = cx.tcx();
400401if tcx.features().ergonomic_clones() {
402for bb in mir.basic_blocks.as_mut() {
403let mir::TerminatorKind::Call {
404 args,
405 destination,
406 target,
407 call_source: mir::CallSource::Use,
408 ..
409 } = &bb.terminator().kind
410else {
411continue;
412 };
413414// CallSource::Use calls always use 1 argument.
415{
match (&args.len(), &1) {
(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);
}
}
}
};assert_eq!(args.len(), 1);
416let arg = &args[0];
417418// These types are easily available from locals, so check that before
419 // doing DefId lookups to figure out what we're actually calling.
420let arg_ty = arg.node.ty(&mir.local_decls, tcx);
421422let ty::Ref(_region, inner_ty, mir::Mutability::Not) = *arg_ty.kind() else { continue };
423424if !tcx.type_is_copy_modulo_regions(cx.typing_env(), inner_ty) {
425continue;
426 }
427428let Some(arg_place) = arg.node.place() else { continue };
429430let destination_block = target.unwrap();
431432 bb.statements.push(mir::Statement::new(
433 bb.terminator().source_info,
434 mir::StatementKind::Assign(Box::new((
435*destination,
436 mir::Rvalue::Use(
437 mir::Operand::Copy(
438 arg_place.project_deeper(&[mir::ProjectionElem::Deref], tcx),
439 ),
440 mir::WithRetag::Yes,
441 ),
442 ))),
443 ));
444445 bb.terminator_mut().kind = mir::TerminatorKind::Goto { target: destination_block };
446 }
447 }
448449mir450}
451452/// Produces, for each argument, a `Value` pointing at the
453/// argument's value. As arguments are places, these are always
454/// indirect.
455fn arg_local_refs<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
456 bx: &mut Bx,
457 fx: &mut FunctionCx<'a, 'tcx, Bx>,
458 memory_locals: &DenseBitSet<mir::Local>,
459) -> Vec<LocalRef<'tcx, Bx::Value>> {
460let mir = fx.mir;
461let mut idx = 0;
462let mut llarg_idx = fx.fn_abi.ret.is_indirect() as usize;
463464let mut num_untupled = None;
465466let codegen_fn_attrs = bx.tcx().codegen_instance_attrs(fx.instance.def);
467if codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::NAKED) {
468return ::alloc::vec::Vec::new()vec![];
469 }
470471let mut args = mir472 .args_iter()
473 .enumerate()
474 .map(|(arg_index, local)| {
475let arg_decl = &mir.local_decls[local];
476let arg_ty = fx.monomorphize(arg_decl.ty);
477478// FIXME(splat): re-tuple splatted arguments that were un-tupled in the ABI
479if Some(local) == mir.spread_arg {
480// This argument (e.g., the last argument in the "rust-call" ABI)
481 // is a tuple that was spread at the ABI level and now we have
482 // to reconstruct it into a tuple local variable, from multiple
483 // individual LLVM function arguments.
484let ty::Tuple(tupled_arg_tys) = arg_ty.kind() else {
485::rustc_middle::util::bug::bug_fmt(format_args!("spread argument isn\'t a tuple?!"));bug!("spread argument isn't a tuple?!");
486 };
487488let layout = bx.layout_of(arg_ty);
489490// FIXME: support unsized params in "rust-call" ABI
491if layout.is_unsized() {
492::rustc_middle::util::bug::span_bug_fmt(arg_decl.source_info.span,
format_args!("\"rust-call\" ABI does not support unsized params"));span_bug!(
493 arg_decl.source_info.span,
494"\"rust-call\" ABI does not support unsized params",
495 );
496 }
497498let place = PlaceRef::alloca(bx, layout);
499for i in 0..tupled_arg_tys.len() {
500let arg = &fx.fn_abi.args[idx];
501 idx += 1;
502if let PassMode::Cast { pad_i32: true, .. } = arg.mode {
503 llarg_idx += 1;
504 }
505let pr_field = place.project_field(bx, i);
506 bx.store_fn_arg(arg, &mut llarg_idx, pr_field);
507 }
508{
match (&None, &num_untupled.replace(tupled_arg_tys.len())) {
(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::Some(format_args!("Replaced existing num_untupled")));
}
}
}
};assert_eq!(
509None,
510 num_untupled.replace(tupled_arg_tys.len()),
511"Replaced existing num_untupled"
512);
513514return LocalRef::Place(place);
515 }
516517if fx.fn_abi.c_variadic && arg_index == fx.fn_abi.args.len() {
518let va_list = PlaceRef::alloca(bx, bx.layout_of(arg_ty));
519520// Explicitly start the lifetime of the `va_list`, improves LLVM codegen.
521bx.lifetime_start(va_list.val.llval, va_list.layout.size);
522523bx.va_start(va_list.val.llval);
524525return LocalRef::Place(va_list);
526 }
527528let arg = &fx.fn_abi.args[idx];
529idx += 1;
530if let PassMode::Cast { pad_i32: true, .. } = arg.mode {
531llarg_idx += 1;
532 }
533534if !memory_locals.contains(local) {
535// We don't have to cast or keep the argument in the alloca.
536 // FIXME(eddyb): We should figure out how to use llvm.dbg.value instead
537 // of putting everything in allocas just so we can use llvm.dbg.declare.
538let local = |op| LocalRef::Operand(op);
539match arg.mode {
540 PassMode::Ignore => {
541return local(OperandRef::zero_sized(arg.layout));
542 }
543 PassMode::Direct(_) => {
544let llarg = bx.get_param(llarg_idx);
545llarg_idx += 1;
546if true {
if !arg.layout.backend_repr.is_scalar_or_simd() {
::core::panicking::panic("assertion failed: arg.layout.backend_repr.is_scalar_or_simd()")
};
};debug_assert!(arg.layout.backend_repr.is_scalar_or_simd());
547return local(OperandRef {
548 val: OperandValue::Immediate(llarg),
549 layout: arg.layout,
550 move_annotation: None,
551 });
552 }
553 PassMode::Pair(..) => {
554let (a, b) = (bx.get_param(llarg_idx), bx.get_param(llarg_idx + 1));
555llarg_idx += 2;
556557return local(OperandRef {
558 val: OperandValue::Pair(a, b),
559 layout: arg.layout,
560 move_annotation: None,
561 });
562 }
563_ => {}
564 }
565 }
566567match arg.mode {
568// Sized indirect arguments
569PassMode::Indirect { attrs, meta_attrs: None, on_stack: _ } => {
570// Don't copy an indirect argument to an alloca, the caller already put it
571 // in a temporary alloca and gave it up.
572 // FIXME: lifetimes
573if let Some(pointee_align) = attrs.pointee_align
574 && pointee_align < arg.layout.align.abi
575 {
576// ...unless the argument is underaligned, then we need to copy it to
577 // a higher-aligned alloca.
578let tmp = PlaceRef::alloca(bx, arg.layout);
579bx.store_fn_arg(arg, &mut llarg_idx, tmp);
580 LocalRef::Place(tmp)
581 } else {
582let llarg = bx.get_param(llarg_idx);
583llarg_idx += 1;
584 LocalRef::Place(PlaceRef::new_sized(llarg, arg.layout))
585 }
586 }
587// Unsized indirect arguments
588PassMode::Indirect { attrs: _, meta_attrs: Some(_), on_stack: _ } => {
589// As the storage for the indirect argument lives during
590 // the whole function call, we just copy the wide pointer.
591let llarg = bx.get_param(llarg_idx);
592llarg_idx += 1;
593let llextra = bx.get_param(llarg_idx);
594llarg_idx += 1;
595let indirect_operand = OperandValue::Pair(llarg, llextra);
596597let tmp = PlaceRef::alloca_unsized_indirect(bx, arg.layout);
598indirect_operand.store(bx, tmp);
599 LocalRef::UnsizedPlace(tmp)
600 }
601_ => {
602let tmp = PlaceRef::alloca(bx, arg.layout);
603bx.store_fn_arg(arg, &mut llarg_idx, tmp);
604 LocalRef::Place(tmp)
605 }
606 }
607 })
608 .collect::<Vec<_>>();
609if bx.tcx().sess.opts.unstable_opts.codegen_emit_retag.is_some() {
610args = args611 .iter()
612 .map(|arg| match arg {
613&LocalRef::Place(place_ref) => {
614fx.codegen_retag_place(bx, place_ref, true);
615 LocalRef::Place(place_ref)
616 }
617&LocalRef::UnsizedPlace(place_ref) => {
618let operand = bx.load_operand(place_ref);
619let retagged = fx.codegen_retag_operand(bx, operand, true);
620if !#[allow(non_exhaustive_omitted_patterns)] match retagged.val {
OperandValue::Pair(_, _) => true,
_ => false,
} {
::core::panicking::panic("assertion failed: matches!(retagged.val, OperandValue::Pair(_, _))")
};assert!(matches!(retagged.val, OperandValue::Pair(_, _)));
621retagged.val.store(bx, place_ref);
622 LocalRef::UnsizedPlace(place_ref)
623 }
624&LocalRef::Operand(operand_ref) => {
625let retagged = fx.codegen_retag_operand(bx, operand_ref, true);
626 LocalRef::Operand(retagged)
627 }
628 LocalRef::PendingOperand => LocalRef::PendingOperand,
629 })
630 .collect::<Vec<_>>();
631// If we branched during retagging, then we need to update the
632 // start block to the new location.
633fx.cached_llbbs[mir::START_BLOCK] = CachedLlbb::Some(bx.llbb());
634 }
635636if fx.instance.def.requires_caller_location(bx.tcx()) {
637let mir_args = if let Some(num_untupled) = num_untupled {
638// Subtract off the tupled argument that gets 'expanded'
639args.len() - 1 + num_untupled640 } else {
641args.len()
642 };
643{
match (&fx.fn_abi.args.len(), &(mir_args + 1)) {
(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::Some(format_args!("#[track_caller] instance {0:?} must have 1 more argument in their ABI than in their MIR",
fx.instance)));
}
}
}
};assert_eq!(
644 fx.fn_abi.args.len(),
645 mir_args + 1,
646"#[track_caller] instance {:?} must have 1 more argument in their ABI than in their MIR",
647 fx.instance
648 );
649650let arg = fx.fn_abi.args.last().unwrap();
651match arg.mode {
652 PassMode::Direct(_) => (),
653_ => ::rustc_middle::util::bug::bug_fmt(format_args!("caller location must be PassMode::Direct, found {0:?}",
arg.mode))bug!("caller location must be PassMode::Direct, found {:?}", arg.mode),
654 }
655656fx.caller_location = Some(OperandRef {
657 val: OperandValue::Immediate(bx.get_param(llarg_idx)),
658 layout: arg.layout,
659 move_annotation: None,
660 });
661 }
662663args664}
665666fn find_cold_blocks<'tcx>(
667 tcx: TyCtxt<'tcx>,
668 mir: &mir::Body<'tcx>,
669) -> IndexVec<mir::BasicBlock, bool> {
670let local_decls = &mir.local_decls;
671672let mut cold_blocks: IndexVec<mir::BasicBlock, bool> =
673IndexVec::from_elem(false, &mir.basic_blocks);
674675// Traverse all basic blocks from end of the function to the start.
676for (bb, bb_data) in traversal::postorder(mir) {
677let terminator = bb_data.terminator();
678679match terminator.kind {
680// If a BB ends with a call to a cold function, mark it as cold.
681mir::TerminatorKind::Call { ref func, .. }
682 | mir::TerminatorKind::TailCall { ref func, .. }
683if let ty::FnDef(def_id, ..) = *func.ty(local_decls, tcx).kind()
684 && let attrs = tcx.codegen_fn_attrs(def_id)
685 && attrs.flags.contains(CodegenFnAttrFlags::COLD) =>
686 {
687 cold_blocks[bb] = true;
688continue;
689 }
690691// If a BB ends with an `unreachable`, also mark it as cold.
692mir::TerminatorKind::Unreachable => {
693 cold_blocks[bb] = true;
694continue;
695 }
696697_ => {}
698 }
699700// If all successors of a BB are cold and there's at least one of them, mark this BB as cold
701let mut succ = terminator.successors();
702if let Some(first) = succ.next()
703 && cold_blocks[first]
704 && succ.all(|s| cold_blocks[s])
705 {
706 cold_blocks[bb] = true;
707 }
708 }
709710cold_blocks711}