cranelift_codegen/machinst/abi.rs
1//! Implementation of a vanilla ABI, shared between several machines. The
2//! implementation here assumes that arguments will be passed in registers
3//! first, then additional args on the stack; that the stack grows downward,
4//! contains a standard frame (return address and frame pointer), and the
5//! compiler is otherwise free to allocate space below that with its choice of
6//! layout; and that the machine has some notion of caller- and callee-save
7//! registers. Most modern machines, e.g. x86-64 and AArch64, should fit this
8//! mold and thus both of these backends use this shared implementation.
9//!
10//! See the documentation in specific machine backends for the "instantiation"
11//! of this generic ABI, i.e., which registers are caller/callee-save, arguments
12//! and return values, and any other special requirements.
13//!
14//! For now the implementation here assumes a 64-bit machine, but we intend to
15//! make this 32/64-bit-generic shortly.
16//!
17//! # Vanilla ABI
18//!
19//! First, arguments and return values are passed in registers up to a certain
20//! fixed count, after which they overflow onto the stack. Multiple return
21//! values either fit in registers, or are returned in a separate return-value
22//! area on the stack, given by a hidden extra parameter.
23//!
24//! Note that the exact stack layout is up to us. We settled on the
25//! below design based on several requirements. In particular, we need
26//! to be able to generate instructions (or instruction sequences) to
27//! access arguments, stack slots, and spill slots before we know how
28//! many spill slots or clobber-saves there will be, because of our
29//! pass structure. We also prefer positive offsets to negative
30//! offsets because of an asymmetry in some machines' addressing modes
31//! (e.g., on AArch64, positive offsets have a larger possible range
32//! without a long-form sequence to synthesize an arbitrary
33//! offset). We also need clobber-save registers to be "near" the
34//! frame pointer: Windows unwind information requires it to be within
35//! 240 bytes of RBP. Finally, it is not allowed to access memory
36//! below the current SP value.
37//!
38//! We assume that a prologue first pushes the frame pointer (and
39//! return address above that, if the machine does not do that in
40//! hardware). We set FP to point to this two-word frame record. We
41//! store all other frame slots below this two-word frame record, as
42//! well as enough space for arguments to the largest possible
43//! function call. The stack pointer then remains at this position
44//! for the duration of the function, allowing us to address all
45//! frame storage at positive offsets from SP.
46//!
47//! Note that if we ever support dynamic stack-space allocation (for
48//! `alloca`), we will need a way to reference spill slots and stack
49//! slots relative to a dynamic SP, because we will no longer be able
50//! to know a static offset from SP to the slots at any particular
51//! program point. Probably the best solution at that point will be to
52//! revert to using the frame pointer as the reference for all slots,
53//! to allow generating spill/reload and stackslot accesses before we
54//! know how large the clobber-saves will be.
55//!
56//! # Stack Layout
57//!
58//! The stack looks like:
59//!
60//! ```plain
61//! (high address)
62//! | ... |
63//! | caller frames |
64//! | ... |
65//! +===========================+
66//! | ... |
67//! | stack args |
68//! Canonical Frame Address --> | (accessed via FP) |
69//! +---------------------------+
70//! SP at function entry -----> | return address |
71//! +---------------------------+
72//! FP after prologue --------> | FP (pushed by prologue) |
73//! +---------------------------+ -----
74//! | ... | |
75//! | clobbered callee-saves | |
76//! unwind-frame base --------> | (pushed by prologue) | |
77//! +---------------------------+ ----- |
78//! | ... | | |
79//! | spill slots | | |
80//! | (accessed via SP) | fixed active
81//! | ... | frame size
82//! | stack slots | storage |
83//! | (accessed via SP) | size |
84//! | (alloc'd by prologue) | | |
85//! +---------------------------+ ----- |
86//! | [alignment as needed] | |
87//! | ... | |
88//! | args for largest call | |
89//! SP -----------------------> | (alloc'd by prologue) | |
90//! +===========================+ -----
91//!
92//! (low address)
93//! ```
94//!
95//! # Multi-value Returns
96//!
97//! We support multi-value returns by using multiple return-value
98//! registers. In some cases this is an extension of the base system
99//! ABI. See each platform's `abi.rs` implementation for details.
100
101use crate::CodegenError;
102use crate::FxHashMap;
103use crate::HashMap;
104use crate::entity::SecondaryMap;
105use crate::ir::{ArgumentExtension, ArgumentPurpose, ExceptionTag, Signature};
106use crate::ir::{StackSlotKey, types::*};
107use crate::isa::TargetIsa;
108use crate::settings::ProbestackStrategy;
109use crate::{ir, isa};
110use crate::{machinst::*, trace};
111use alloc::boxed::Box;
112use core::marker::PhantomData;
113use regalloc2::{MachineEnv, PReg, PRegSet};
114use smallvec::smallvec;
115
116/// A small vector of instructions (with some reasonable size); appropriate for
117/// a small fixed sequence implementing one operation.
118pub type SmallInstVec<I> = SmallVec<[I; 4]>;
119
120/// A type used by backends to track argument-binding info in the "args"
121/// pseudoinst. The pseudoinst holds a vec of `ArgPair` structs.
122#[derive(Clone, Debug)]
123pub struct ArgPair {
124 /// The vreg that is defined by this args pseudoinst.
125 pub vreg: Writable<Reg>,
126 /// The preg that the arg arrives in; this constrains the vreg's
127 /// placement at the pseudoinst.
128 pub preg: Reg,
129}
130
131/// A type used by backends to track return register binding info in the "ret"
132/// pseudoinst. The pseudoinst holds a vec of `RetPair` structs.
133#[derive(Clone, Debug)]
134pub struct RetPair {
135 /// The vreg that is returned by this pseudionst.
136 pub vreg: Reg,
137 /// The preg that the arg is returned through; this constrains the vreg's
138 /// placement at the pseudoinst.
139 pub preg: Reg,
140}
141
142/// A location for (part of) an argument or return value. These "storage slots"
143/// are specified for each register-sized part of an argument.
144#[derive(Clone, Copy, Debug, PartialEq, Eq)]
145pub enum ABIArgSlot {
146 /// In a real register.
147 Reg {
148 /// Register that holds this arg.
149 reg: RealReg,
150 /// Value type of this arg.
151 ty: ir::Type,
152 /// Should this arg be zero- or sign-extended?
153 extension: ir::ArgumentExtension,
154 },
155 /// Arguments only: on stack, at given offset from SP at entry.
156 Stack {
157 /// Offset of this arg relative to the base of stack args.
158 offset: i64,
159 /// Value type of this arg.
160 ty: ir::Type,
161 /// Should this arg be zero- or sign-extended?
162 extension: ir::ArgumentExtension,
163 },
164}
165
166impl ABIArgSlot {
167 /// The type of the value that will be stored in this slot.
168 pub fn get_type(&self) -> ir::Type {
169 match self {
170 ABIArgSlot::Reg { ty, .. } => *ty,
171 ABIArgSlot::Stack { ty, .. } => *ty,
172 }
173 }
174}
175
176/// A vector of `ABIArgSlot`s. Inline capacity for one element because basically
177/// 100% of values use one slot. Only `i128`s need multiple slots, and they are
178/// super rare (and never happen with Wasm).
179pub type ABIArgSlotVec = SmallVec<[ABIArgSlot; 1]>;
180
181/// An ABIArg is composed of one or more parts. This allows for a CLIF-level
182/// Value to be passed with its parts in more than one location at the ABI
183/// level. For example, a 128-bit integer may be passed in two 64-bit registers,
184/// or even a 64-bit register and a 64-bit stack slot, on a 64-bit machine. The
185/// number of "parts" should correspond to the number of registers used to store
186/// this type according to the machine backend.
187///
188/// As an invariant, the `purpose` for every part must match. As a further
189/// invariant, a `StructArg` part cannot appear with any other part.
190#[derive(Clone, Debug)]
191pub enum ABIArg {
192 /// Storage slots (registers or stack locations) for each part of the
193 /// argument value. The number of slots must equal the number of register
194 /// parts used to store a value of this type.
195 Slots {
196 /// Slots, one per register part.
197 slots: ABIArgSlotVec,
198 /// Purpose of this arg.
199 purpose: ir::ArgumentPurpose,
200 },
201 /// Structure argument. We reserve stack space for it, but the CLIF-level
202 /// semantics are a little weird: the value passed to the call instruction,
203 /// and received in the corresponding block param, is a *pointer*. On the
204 /// caller side, we memcpy the data from the passed-in pointer to the stack
205 /// area; on the callee side, we compute a pointer to this stack area and
206 /// provide that as the argument's value.
207 StructArg {
208 /// Offset of this arg relative to base of stack args.
209 offset: i64,
210 /// Size of this arg on the stack.
211 size: u64,
212 /// Purpose of this arg.
213 purpose: ir::ArgumentPurpose,
214 },
215 /// Implicit argument. Similar to a StructArg, except that we have the
216 /// target type, not a pointer type, at the CLIF-level. This argument is
217 /// still being passed via reference implicitly.
218 ImplicitPtrArg {
219 /// Register or stack slot holding a pointer to the buffer.
220 pointer: ABIArgSlot,
221 /// Offset of the argument buffer.
222 offset: i64,
223 /// Type of the implicit argument.
224 ty: Type,
225 /// Purpose of this arg.
226 purpose: ir::ArgumentPurpose,
227 },
228}
229
230impl ABIArg {
231 /// Create an ABIArg from one register.
232 pub fn reg(
233 reg: RealReg,
234 ty: ir::Type,
235 extension: ir::ArgumentExtension,
236 purpose: ir::ArgumentPurpose,
237 ) -> ABIArg {
238 ABIArg::Slots {
239 slots: smallvec![ABIArgSlot::Reg { reg, ty, extension }],
240 purpose,
241 }
242 }
243
244 /// Create an ABIArg from one stack slot.
245 pub fn stack(
246 offset: i64,
247 ty: ir::Type,
248 extension: ir::ArgumentExtension,
249 purpose: ir::ArgumentPurpose,
250 ) -> ABIArg {
251 ABIArg::Slots {
252 slots: smallvec![ABIArgSlot::Stack {
253 offset,
254 ty,
255 extension,
256 }],
257 purpose,
258 }
259 }
260}
261
262/// Are we computing information about arguments or return values? Much of the
263/// handling is factored out into common routines; this enum allows us to
264/// distinguish which case we're handling.
265#[derive(Clone, Copy, Debug, PartialEq, Eq)]
266pub enum ArgsOrRets {
267 /// Arguments.
268 Args,
269 /// Return values.
270 Rets,
271}
272
273/// Whether an ABI argument slot lives in a register or on the stack.
274/// Passed to `get_ext_mode` so backends can apply different extension
275/// rules depending on the argument's location.
276#[derive(Clone, Copy, Debug, PartialEq, Eq)]
277pub enum ABIArgLocation {
278 /// The argument is passed in a register.
279 Reg,
280 /// The argument is passed on the stack.
281 Stack,
282}
283
284/// Abstract location for a machine-specific ABI impl to translate into the
285/// appropriate addressing mode.
286#[derive(Clone, Copy, Debug, PartialEq, Eq)]
287pub enum StackAMode {
288 /// Offset into the current frame's argument area.
289 IncomingArg(i64, u32),
290 /// Offset within the stack slots in the current frame.
291 Slot(i64),
292 /// Offset into the callee frame's argument area.
293 OutgoingArg(i64),
294}
295
296impl StackAMode {
297 fn offset_by(&self, offset: u32) -> Self {
298 match self {
299 StackAMode::IncomingArg(off, size) => {
300 StackAMode::IncomingArg(off.checked_add(i64::from(offset)).unwrap(), *size)
301 }
302 StackAMode::Slot(off) => StackAMode::Slot(off.checked_add(i64::from(offset)).unwrap()),
303 StackAMode::OutgoingArg(off) => {
304 StackAMode::OutgoingArg(off.checked_add(i64::from(offset)).unwrap())
305 }
306 }
307 }
308}
309
310/// Trait implemented by machine-specific backend to represent ISA flags.
311pub trait IsaFlags: Clone {
312 /// Get a flag indicating whether forward-edge CFI is enabled.
313 fn is_forward_edge_cfi_enabled(&self) -> bool {
314 false
315 }
316}
317
318/// Used as an out-parameter to accumulate a sequence of `ABIArg`s in
319/// `ABIMachineSpec::compute_arg_locs`. Wraps the shared allocation for all
320/// `ABIArg`s in `SigSet` and exposes just the args for the current
321/// `compute_arg_locs` call.
322pub struct ArgsAccumulator<'a> {
323 sig_set_abi_args: &'a mut Vec<ABIArg>,
324 start: usize,
325 non_formal_flag: bool,
326}
327
328impl<'a> ArgsAccumulator<'a> {
329 fn new(sig_set_abi_args: &'a mut Vec<ABIArg>) -> Self {
330 let start = sig_set_abi_args.len();
331 ArgsAccumulator {
332 sig_set_abi_args,
333 start,
334 non_formal_flag: false,
335 }
336 }
337
338 #[inline]
339 pub fn push(&mut self, arg: ABIArg) {
340 debug_assert!(!self.non_formal_flag);
341 self.sig_set_abi_args.push(arg)
342 }
343
344 #[inline]
345 pub fn push_non_formal(&mut self, arg: ABIArg) {
346 self.non_formal_flag = true;
347 self.sig_set_abi_args.push(arg)
348 }
349
350 #[inline]
351 pub fn args(&self) -> &[ABIArg] {
352 &self.sig_set_abi_args[self.start..]
353 }
354
355 #[inline]
356 pub fn args_mut(&mut self) -> &mut [ABIArg] {
357 &mut self.sig_set_abi_args[self.start..]
358 }
359}
360
361/// Trait implemented by machine-specific backend to provide information about
362/// register assignments and to allow generating the specific instructions for
363/// stack loads/saves, prologues/epilogues, etc.
364pub trait ABIMachineSpec {
365 /// The instruction type.
366 type I: VCodeInst;
367
368 /// The ISA flags type.
369 type F: IsaFlags;
370
371 /// This is the limit for the size of argument and return-value areas on the
372 /// stack. We place a reasonable limit here to avoid integer overflow issues
373 /// with 32-bit arithmetic.
374 const STACK_ARG_RET_SIZE_LIMIT: u32;
375
376 /// Returns the number of bits in a word, that is 32/64 for 32/64-bit architecture.
377 fn word_bits() -> u32;
378
379 /// Returns the number of bytes in a word.
380 fn word_bytes() -> u32 {
381 return Self::word_bits() / 8;
382 }
383
384 /// Returns word-size integer type.
385 fn word_type() -> Type {
386 match Self::word_bits() {
387 32 => I32,
388 64 => I64,
389 _ => unreachable!(),
390 }
391 }
392
393 /// Returns word register class.
394 fn word_reg_class() -> RegClass {
395 RegClass::Int
396 }
397
398 /// Returns required stack alignment in bytes.
399 fn stack_align(call_conv: isa::CallConv) -> u32;
400
401 /// Process a list of parameters or return values and allocate them to registers
402 /// and stack slots.
403 ///
404 /// The argument locations should be pushed onto the given `ArgsAccumulator`
405 /// in order. Any extra arguments added (such as return area pointers)
406 /// should come at the end of the list so that the first N lowered
407 /// parameters align with the N clif parameters.
408 ///
409 /// Returns the stack-space used (rounded up to as alignment requires), and
410 /// if `add_ret_area_ptr` was passed, the index of the extra synthetic arg
411 /// that was added.
412 fn compute_arg_locs(
413 call_conv: isa::CallConv,
414 flags: &settings::Flags,
415 params: &[ir::AbiParam],
416 args_or_rets: ArgsOrRets,
417 add_ret_area_ptr: bool,
418 args: ArgsAccumulator,
419 ) -> CodegenResult<(u32, Option<usize>)>;
420
421 /// Generate a load from the stack.
422 fn gen_load_stack(mem: StackAMode, into_reg: Writable<Reg>, ty: Type) -> Self::I;
423
424 /// Generate a store to the stack.
425 fn gen_store_stack(mem: StackAMode, from_reg: Reg, ty: Type) -> Self::I;
426
427 /// Generate a move.
428 fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Self::I;
429
430 /// Generate an integer-extend operation.
431 fn gen_extend(
432 to_reg: Writable<Reg>,
433 from_reg: Reg,
434 is_signed: bool,
435 from_bits: u8,
436 to_bits: u8,
437 ) -> Self::I;
438
439 /// Generate an "args" pseudo-instruction to capture input args in
440 /// registers.
441 fn gen_args(args: Vec<ArgPair>) -> Self::I;
442
443 /// Generate a "rets" pseudo-instruction that moves vregs to return
444 /// registers.
445 fn gen_rets(rets: Vec<RetPair>) -> Self::I;
446
447 /// Generate an add-with-immediate. Note that even if this uses a scratch
448 /// register, it must satisfy two requirements:
449 ///
450 /// - The add-imm sequence must only clobber caller-save registers that are
451 /// not used for arguments, because it will be placed in the prologue
452 /// before the clobbered callee-save registers are saved.
453 ///
454 /// - The add-imm sequence must work correctly when `from_reg` and/or
455 /// `into_reg` are the register returned by `get_stacklimit_reg()`.
456 fn gen_add_imm(
457 call_conv: isa::CallConv,
458 into_reg: Writable<Reg>,
459 from_reg: Reg,
460 imm: u32,
461 ) -> SmallInstVec<Self::I>;
462
463 /// Generate a sequence that traps with a `TrapCode::StackOverflow` code if
464 /// the stack pointer is less than the given limit register (assuming the
465 /// stack grows downward).
466 fn gen_stack_lower_bound_trap(limit_reg: Reg) -> SmallInstVec<Self::I>;
467
468 /// Generate an instruction to compute an address of a stack slot (FP- or
469 /// SP-based offset).
470 fn gen_get_stack_addr(mem: StackAMode, into_reg: Writable<Reg>) -> Self::I;
471
472 /// Get a fixed register to use to compute a stack limit. This is needed for
473 /// certain sequences generated after the register allocator has already
474 /// run. This must satisfy two requirements:
475 ///
476 /// - It must be a caller-save register that is not used for arguments,
477 /// because it will be clobbered in the prologue before the clobbered
478 /// callee-save registers are saved.
479 ///
480 /// - It must be safe to pass as an argument and/or destination to
481 /// `gen_add_imm()`. This is relevant when an addition with a large
482 /// immediate needs its own temporary; it cannot use the same fixed
483 /// temporary as this one.
484 fn get_stacklimit_reg(call_conv: isa::CallConv) -> Reg;
485
486 /// Generate a load to the given [base+offset] address.
487 fn gen_load_base_offset(into_reg: Writable<Reg>, base: Reg, offset: i32, ty: Type) -> Self::I;
488
489 /// Generate a store from the given [base+offset] address.
490 fn gen_store_base_offset(base: Reg, offset: i32, from_reg: Reg, ty: Type) -> Self::I;
491
492 /// Adjust the stack pointer up or down.
493 fn gen_sp_reg_adjust(amount: i32) -> SmallInstVec<Self::I>;
494
495 /// Compute a FrameLayout structure containing a sorted list of all clobbered
496 /// registers that are callee-saved according to the ABI, as well as the sizes
497 /// of all parts of the stack frame. The result is used to emit the prologue
498 /// and epilogue routines.
499 fn compute_frame_layout(
500 call_conv: isa::CallConv,
501 flags: &settings::Flags,
502 sig: &Signature,
503 regs: &[Writable<RealReg>],
504 function_calls: FunctionCalls,
505 incoming_args_size: u32,
506 tail_args_size: u32,
507 stackslots_size: u32,
508 fixed_frame_storage_size: u32,
509 outgoing_args_size: u32,
510 ) -> FrameLayout;
511
512 /// Defaults to a conservative 1GiB
513 /// across all backends.
514 fn maximum_frame_size() -> u32 {
515 1 << 30 // 1 GiB
516 }
517
518 /// Generate the usual frame-setup sequence for this architecture: e.g.,
519 /// `push rbp / mov rbp, rsp` on x86-64, or `stp fp, lr, [sp, #-16]!` on
520 /// AArch64.
521 fn gen_prologue_frame_setup(
522 call_conv: isa::CallConv,
523 flags: &settings::Flags,
524 isa_flags: &Self::F,
525 frame_layout: &FrameLayout,
526 ) -> SmallInstVec<Self::I>;
527
528 /// Generate the usual frame-restore sequence for this architecture.
529 fn gen_epilogue_frame_restore(
530 call_conv: isa::CallConv,
531 flags: &settings::Flags,
532 isa_flags: &Self::F,
533 frame_layout: &FrameLayout,
534 ) -> SmallInstVec<Self::I>;
535
536 /// Generate a return instruction.
537 fn gen_return(
538 call_conv: isa::CallConv,
539 isa_flags: &Self::F,
540 frame_layout: &FrameLayout,
541 ) -> SmallInstVec<Self::I>;
542
543 /// Generate a probestack call.
544 fn gen_probestack(insts: &mut SmallInstVec<Self::I>, frame_size: u32);
545
546 /// Generate a inline stack probe.
547 fn gen_inline_probestack(
548 insts: &mut SmallInstVec<Self::I>,
549 call_conv: isa::CallConv,
550 frame_size: u32,
551 guard_size: u32,
552 );
553
554 /// Generate a clobber-save sequence. The implementation here should return
555 /// a sequence of instructions that "push" or otherwise save to the stack all
556 /// registers written/modified by the function body that are callee-saved.
557 /// The sequence of instructions should adjust the stack pointer downward,
558 /// and should align as necessary according to ABI requirements.
559 fn gen_clobber_save(
560 call_conv: isa::CallConv,
561 flags: &settings::Flags,
562 frame_layout: &FrameLayout,
563 ) -> SmallVec<[Self::I; 16]>;
564
565 /// Generate a clobber-restore sequence. This sequence should perform the
566 /// opposite of the clobber-save sequence generated above, assuming that SP
567 /// going into the sequence is at the same point that it was left when the
568 /// clobber-save sequence finished.
569 fn gen_clobber_restore(
570 call_conv: isa::CallConv,
571 flags: &settings::Flags,
572 frame_layout: &FrameLayout,
573 ) -> SmallVec<[Self::I; 16]>;
574
575 /// Generate a memcpy invocation. Used to set up struct
576 /// args. Takes `src`, `dst` as read-only inputs and passes a temporary
577 /// allocator.
578 fn gen_memcpy<F: FnMut(Type) -> Writable<Reg>>(
579 call_conv: isa::CallConv,
580 dst: Reg,
581 src: Reg,
582 size: usize,
583 alloc_tmp: F,
584 ) -> SmallVec<[Self::I; 8]>;
585
586 /// Get the number of spillslots required for the given register-class.
587 fn get_number_of_spillslots_for_value(
588 rc: RegClass,
589 target_vector_bytes: u32,
590 isa_flags: &Self::F,
591 ) -> u32;
592
593 /// Get the ABI-dependent MachineEnv for managing register allocation.
594 fn get_machine_env(flags: &settings::Flags, call_conv: isa::CallConv) -> &MachineEnv;
595
596 /// Get all caller-save registers, that is, registers that we expect
597 /// not to be saved across a call to a callee with the given ABI.
598 fn get_regs_clobbered_by_call(
599 call_conv_of_callee: isa::CallConv,
600 is_exception: bool,
601 ) -> PRegSet;
602
603 /// Get the needed extension mode, given the mode attached to the argument
604 /// in the signature and the calling convention. The input (the attribute in
605 /// the signature) specifies what extension type should be done *if* the ABI
606 /// requires extension to the full register; this method's return value
607 /// indicates whether the extension actually *will* be done.
608 /// The `location` parameter indicates whether the argument is in a register
609 /// or on the stack, allowing backends to apply different rules per location.
610 fn get_ext_mode(
611 call_conv: isa::CallConv,
612 specified: ir::ArgumentExtension,
613 location: ABIArgLocation,
614 ) -> ir::ArgumentExtension;
615
616 /// Get a temporary register that is available to use after a call
617 /// completes and that does not interfere with register-carried
618 /// return values. This is used to move stack-carried return
619 /// values directly into spillslots if needed.
620 fn retval_temp_reg(call_conv_of_callee: isa::CallConv) -> Writable<Reg>;
621
622 /// Get the exception payload registers, if any, for a calling
623 /// convention.
624 ///
625 /// Note that the argument here is the calling convention of the *callee*.
626 /// This might differ from the caller but the exceptional payloads that are
627 /// available are defined by the callee, not the caller.
628 fn exception_payload_regs(callee_conv: isa::CallConv) -> &'static [Reg] {
629 let _ = callee_conv;
630 &[]
631 }
632}
633
634/// Out-of-line data for calls, to keep the size of `Inst` down.
635#[derive(Clone, Debug)]
636pub struct CallInfo<T> {
637 /// Receiver of this call
638 pub dest: T,
639 /// Register uses of this call.
640 pub uses: CallArgList,
641 /// Register defs of this call.
642 pub defs: CallRetList,
643 /// Registers clobbered by this call, as per its calling convention.
644 pub clobbers: PRegSet,
645 /// The calling convention of the callee.
646 pub callee_conv: isa::CallConv,
647 /// The calling convention of the caller.
648 pub caller_conv: isa::CallConv,
649 /// The number of bytes that the callee will pop from the stack for the
650 /// caller, if any. (Used for popping stack arguments with the `tail`
651 /// calling convention.)
652 pub callee_pop_size: u32,
653 /// Information for a try-call, if this is one. We combine
654 /// handling of calls and try-calls as much as possible to share
655 /// argument/return logic; they mostly differ in the metadata that
656 /// they emit, which this information feeds into.
657 pub try_call_info: Option<TryCallInfo>,
658 /// Whether this call is patchable.
659 pub patchable: bool,
660}
661
662/// Out-of-line information present on `try_call` instructions only:
663/// information that is used to generate exception-handling tables and
664/// link up to destination blocks properly.
665#[derive(Clone, Debug)]
666pub struct TryCallInfo {
667 /// The target to jump to on a normal returhn.
668 pub continuation: MachLabel,
669 /// Exception tags to catch and corresponding destination labels.
670 pub exception_handlers: Box<[TryCallHandler]>,
671}
672
673/// Information about an individual handler at a try-call site.
674#[derive(Clone, Debug)]
675pub enum TryCallHandler {
676 /// If the tag matches (given the current context), recover at the
677 /// label.
678 Tag(ExceptionTag, MachLabel),
679 /// Recover at the label unconditionally.
680 Default(MachLabel),
681 /// Set the dynamic context for interpreting tags at this point in
682 /// the handler list.
683 Context(Reg),
684}
685
686impl<T> CallInfo<T> {
687 /// Creates an empty set of info with no clobbers/uses/etc with the
688 /// specified ABI
689 pub fn empty(dest: T, call_conv: isa::CallConv) -> CallInfo<T> {
690 CallInfo {
691 dest,
692 uses: smallvec![],
693 defs: smallvec![],
694 clobbers: PRegSet::empty(),
695 caller_conv: call_conv,
696 callee_conv: call_conv,
697 callee_pop_size: 0,
698 try_call_info: None,
699 patchable: false,
700 }
701 }
702}
703
704/// The id of an ABI signature within the `SigSet`.
705#[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
706pub struct Sig(u32);
707cranelift_entity::entity_impl!(Sig);
708
709impl Sig {
710 fn prev(self) -> Option<Sig> {
711 self.0.checked_sub(1).map(Sig)
712 }
713}
714
715/// ABI information shared between body (callee) and caller.
716#[derive(Clone, Debug)]
717pub struct SigData {
718 /// Currently both return values and arguments are stored in a continuous space vector
719 /// in `SigSet::abi_args`.
720 ///
721 /// ```plain
722 /// +----------------------------------------------+
723 /// | return values |
724 /// | ... |
725 /// rets_end --> +----------------------------------------------+
726 /// | arguments |
727 /// | ... |
728 /// args_end --> +----------------------------------------------+
729 ///
730 /// ```
731 ///
732 /// Note we only store two offsets as rets_end == args_start, and rets_start == prev.args_end.
733 ///
734 /// Argument location ending offset (regs or stack slots). Stack offsets are relative to
735 /// SP on entry to function.
736 ///
737 /// This is a index into the `SigSet::abi_args`.
738 args_end: u32,
739
740 /// Return-value location ending offset. Stack offsets are relative to the return-area
741 /// pointer.
742 ///
743 /// This is a index into the `SigSet::abi_args`.
744 rets_end: u32,
745
746 /// Space on stack used to store arguments. We're storing the size in u32 to
747 /// reduce the size of the struct.
748 sized_stack_arg_space: u32,
749
750 /// Space on stack used to store return values. We're storing the size in u32 to
751 /// reduce the size of the struct.
752 sized_stack_ret_space: u32,
753
754 /// Index in `args` of the stack-return-value-area argument.
755 stack_ret_arg: Option<u16>,
756
757 /// Calling convention used.
758 call_conv: isa::CallConv,
759}
760
761impl SigData {
762 /// Get total stack space required for arguments.
763 pub fn sized_stack_arg_space(&self) -> u32 {
764 self.sized_stack_arg_space
765 }
766
767 /// Get total stack space required for return values.
768 pub fn sized_stack_ret_space(&self) -> u32 {
769 self.sized_stack_ret_space
770 }
771
772 /// Get calling convention used.
773 pub fn call_conv(&self) -> isa::CallConv {
774 self.call_conv
775 }
776
777 /// The index of the stack-return-value-area argument, if any.
778 pub fn stack_ret_arg(&self) -> Option<u16> {
779 self.stack_ret_arg
780 }
781}
782
783/// A (mostly) deduplicated set of ABI signatures.
784///
785/// We say "mostly" because we do not dedupe between signatures interned via
786/// `ir::SigRef` (direct and indirect calls; the vast majority of signatures in
787/// this set) vs via `ir::Signature` (the callee itself and libcalls). Doing
788/// this final bit of deduplication would require filling out the
789/// `ir_signature_to_abi_sig`, which is a bunch of allocations (not just the
790/// hash map itself but params and returns vecs in each signature) that we want
791/// to avoid.
792///
793/// In general, prefer using the `ir::SigRef`-taking methods to the
794/// `ir::Signature`-taking methods when you can get away with it, as they don't
795/// require cloning non-copy types that will trigger heap allocations.
796///
797/// This type can be indexed by `Sig` to access its associated `SigData`.
798pub struct SigSet {
799 /// Interned `ir::Signature`s that we already have an ABI signature for.
800 ir_signature_to_abi_sig: FxHashMap<ir::Signature, Sig>,
801
802 /// Interned `ir::SigRef`s that we already have an ABI signature for.
803 ir_sig_ref_to_abi_sig: SecondaryMap<ir::SigRef, Option<Sig>>,
804
805 /// A single, shared allocation for all `ABIArg`s used by all
806 /// `SigData`s. Each `SigData` references its args/rets via indices into
807 /// this allocation.
808 abi_args: Vec<ABIArg>,
809
810 /// The actual ABI signatures, keyed by `Sig`.
811 sigs: PrimaryMap<Sig, SigData>,
812}
813
814impl SigSet {
815 /// Construct a new `SigSet`, interning all of the signatures used by the
816 /// given function.
817 pub fn new<M>(func: &ir::Function, flags: &settings::Flags) -> CodegenResult<Self>
818 where
819 M: ABIMachineSpec,
820 {
821 let arg_estimate = func.dfg.signatures.len() * 6;
822
823 let mut sigs = SigSet {
824 ir_signature_to_abi_sig: FxHashMap::default(),
825 ir_sig_ref_to_abi_sig: SecondaryMap::with_capacity(func.dfg.signatures.len()),
826 abi_args: Vec::with_capacity(arg_estimate),
827 sigs: PrimaryMap::with_capacity(1 + func.dfg.signatures.len()),
828 };
829
830 sigs.make_abi_sig_from_ir_signature::<M>(func.signature.clone(), flags)?;
831 for sig_ref in func.dfg.signatures.keys() {
832 sigs.make_abi_sig_from_ir_sig_ref::<M>(sig_ref, &func.dfg, flags)?;
833 }
834
835 Ok(sigs)
836 }
837
838 /// Have we already interned an ABI signature for the given `ir::Signature`?
839 pub fn have_abi_sig_for_signature(&self, signature: &ir::Signature) -> bool {
840 self.ir_signature_to_abi_sig.contains_key(signature)
841 }
842
843 /// Construct and intern an ABI signature for the given `ir::Signature`.
844 pub fn make_abi_sig_from_ir_signature<M>(
845 &mut self,
846 signature: ir::Signature,
847 flags: &settings::Flags,
848 ) -> CodegenResult<Sig>
849 where
850 M: ABIMachineSpec,
851 {
852 // Because the `HashMap` entry API requires taking ownership of the
853 // lookup key -- and we want to avoid unnecessary clones of
854 // `ir::Signature`s, even at the cost of duplicate lookups -- we can't
855 // have a single, get-or-create-style method for interning
856 // `ir::Signature`s into ABI signatures. So at least (debug) assert that
857 // we aren't creating duplicate ABI signatures for the same
858 // `ir::Signature`.
859 debug_assert!(!self.have_abi_sig_for_signature(&signature));
860
861 let sig_data = self.from_func_sig::<M>(&signature, flags)?;
862 let sig = self.sigs.push(sig_data);
863 self.ir_signature_to_abi_sig.insert(signature, sig);
864 Ok(sig)
865 }
866
867 fn make_abi_sig_from_ir_sig_ref<M>(
868 &mut self,
869 sig_ref: ir::SigRef,
870 dfg: &ir::DataFlowGraph,
871 flags: &settings::Flags,
872 ) -> CodegenResult<Sig>
873 where
874 M: ABIMachineSpec,
875 {
876 if let Some(sig) = self.ir_sig_ref_to_abi_sig[sig_ref] {
877 return Ok(sig);
878 }
879 let signature = &dfg.signatures[sig_ref];
880 let sig_data = self.from_func_sig::<M>(signature, flags)?;
881 let sig = self.sigs.push(sig_data);
882 self.ir_sig_ref_to_abi_sig[sig_ref] = Some(sig);
883 Ok(sig)
884 }
885
886 /// Get the already-interned ABI signature id for the given `ir::SigRef`.
887 pub fn abi_sig_for_sig_ref(&self, sig_ref: ir::SigRef) -> Sig {
888 self.ir_sig_ref_to_abi_sig[sig_ref]
889 .expect("must call `make_abi_sig_from_ir_sig_ref` before `get_abi_sig_for_sig_ref`")
890 }
891
892 /// Get the already-interned ABI signature id for the given `ir::Signature`.
893 pub fn abi_sig_for_signature(&self, signature: &ir::Signature) -> Sig {
894 self.ir_signature_to_abi_sig
895 .get(signature)
896 .copied()
897 .expect("must call `make_abi_sig_from_ir_signature` before `get_abi_sig_for_signature`")
898 }
899
900 pub fn from_func_sig<M: ABIMachineSpec>(
901 &mut self,
902 sig: &ir::Signature,
903 flags: &settings::Flags,
904 ) -> CodegenResult<SigData> {
905 // Keep in sync with ensure_struct_return_ptr_is_returned
906 if sig.uses_special_return(ArgumentPurpose::StructReturn) {
907 panic!("Explicit StructReturn return value not allowed: {sig:?}")
908 }
909 let tmp;
910 let returns = if let Some(struct_ret_index) =
911 sig.special_param_index(ArgumentPurpose::StructReturn)
912 {
913 if !sig.returns.is_empty() {
914 panic!("No return values are allowed when using StructReturn: {sig:?}");
915 }
916 tmp = [sig.params[struct_ret_index]];
917 &tmp
918 } else {
919 sig.returns.as_slice()
920 };
921
922 // Compute args and retvals from signature. Handle retvals first,
923 // because we may need to add a return-area arg to the args.
924
925 // NOTE: We rely on the order of the args (rets -> args) inserted to compute the offsets in
926 // `SigSet::args()` and `SigSet::rets()`. Therefore, we cannot change the two
927 // compute_arg_locs order.
928 let (sized_stack_ret_space, _) = M::compute_arg_locs(
929 sig.call_conv,
930 flags,
931 &returns,
932 ArgsOrRets::Rets,
933 /* extra ret-area ptr = */ false,
934 ArgsAccumulator::new(&mut self.abi_args),
935 )?;
936 if !flags.enable_multi_ret_implicit_sret() {
937 assert_eq!(sized_stack_ret_space, 0);
938 }
939 let rets_end = u32::try_from(self.abi_args.len()).unwrap();
940
941 // To avoid overflow issues, limit the return size to something reasonable.
942 if sized_stack_ret_space > M::STACK_ARG_RET_SIZE_LIMIT {
943 return Err(CodegenError::ImplLimitExceeded);
944 }
945
946 let need_stack_return_area = sized_stack_ret_space > 0;
947 if need_stack_return_area {
948 assert!(!sig.uses_special_param(ir::ArgumentPurpose::StructReturn));
949 }
950
951 let (sized_stack_arg_space, stack_ret_arg) = M::compute_arg_locs(
952 sig.call_conv,
953 flags,
954 &sig.params,
955 ArgsOrRets::Args,
956 need_stack_return_area,
957 ArgsAccumulator::new(&mut self.abi_args),
958 )?;
959 let args_end = u32::try_from(self.abi_args.len()).unwrap();
960
961 // To avoid overflow issues, limit the arg size to something reasonable.
962 if sized_stack_arg_space > M::STACK_ARG_RET_SIZE_LIMIT {
963 return Err(CodegenError::ImplLimitExceeded);
964 }
965
966 trace!(
967 "ABISig: sig {:?} => args end = {} rets end = {}
968 arg stack = {} ret stack = {} stack_ret_arg = {:?}",
969 sig,
970 args_end,
971 rets_end,
972 sized_stack_arg_space,
973 sized_stack_ret_space,
974 need_stack_return_area,
975 );
976
977 let stack_ret_arg = stack_ret_arg.map(|s| u16::try_from(s).unwrap());
978 Ok(SigData {
979 args_end,
980 rets_end,
981 sized_stack_arg_space,
982 sized_stack_ret_space,
983 stack_ret_arg,
984 call_conv: sig.call_conv,
985 })
986 }
987
988 /// Get this signature's ABI arguments.
989 pub fn args(&self, sig: Sig) -> &[ABIArg] {
990 let sig_data = &self.sigs[sig];
991 // Please see comments in `SigSet::from_func_sig` of how we store the offsets.
992 let start = usize::try_from(sig_data.rets_end).unwrap();
993 let end = usize::try_from(sig_data.args_end).unwrap();
994 &self.abi_args[start..end]
995 }
996
997 /// Get information specifying how to pass the implicit pointer
998 /// to the return-value area on the stack, if required.
999 pub fn get_ret_arg(&self, sig: Sig) -> Option<ABIArg> {
1000 let sig_data = &self.sigs[sig];
1001 if let Some(i) = sig_data.stack_ret_arg {
1002 Some(self.args(sig)[usize::from(i)].clone())
1003 } else {
1004 None
1005 }
1006 }
1007
1008 /// Get information specifying how to pass one argument.
1009 pub fn get_arg(&self, sig: Sig, idx: usize) -> ABIArg {
1010 self.args(sig)[idx].clone()
1011 }
1012
1013 /// Get this signature's ABI returns.
1014 pub fn rets(&self, sig: Sig) -> &[ABIArg] {
1015 let sig_data = &self.sigs[sig];
1016 // Please see comments in `SigSet::from_func_sig` of how we store the offsets.
1017 let start = usize::try_from(sig.prev().map_or(0, |prev| self.sigs[prev].args_end)).unwrap();
1018 let end = usize::try_from(sig_data.rets_end).unwrap();
1019 &self.abi_args[start..end]
1020 }
1021
1022 /// Get information specifying how to pass one return value.
1023 pub fn get_ret(&self, sig: Sig, idx: usize) -> ABIArg {
1024 self.rets(sig)[idx].clone()
1025 }
1026
1027 /// Get the number of arguments expected.
1028 pub fn num_args(&self, sig: Sig) -> usize {
1029 let len = self.args(sig).len();
1030 if self.sigs[sig].stack_ret_arg.is_some() {
1031 len - 1
1032 } else {
1033 len
1034 }
1035 }
1036
1037 /// Get the number of return values expected.
1038 pub fn num_rets(&self, sig: Sig) -> usize {
1039 self.rets(sig).len()
1040 }
1041}
1042
1043// NB: we do _not_ implement `IndexMut` because these signatures are
1044// deduplicated and shared!
1045impl core::ops::Index<Sig> for SigSet {
1046 type Output = SigData;
1047
1048 fn index(&self, sig: Sig) -> &Self::Output {
1049 &self.sigs[sig]
1050 }
1051}
1052
1053/// Structure describing the layout of a function's stack frame.
1054#[derive(Clone, Debug, Default)]
1055pub struct FrameLayout {
1056 /// Word size in bytes, so this struct can be
1057 /// monomorphic/independent of `ABIMachineSpec`.
1058 pub word_bytes: u32,
1059
1060 /// N.B. The areas whose sizes are given in this structure fully
1061 /// cover the current function's stack frame, from high to low
1062 /// stack addresses in the sequence below. Each size contains
1063 /// any alignment padding that may be required by the ABI.
1064
1065 /// Size of incoming arguments on the stack. This is not technically
1066 /// part of this function's frame, but code in the function will still
1067 /// need to access it. Depending on the ABI, we may need to set up a
1068 /// frame pointer to do so; we also may need to pop this area from the
1069 /// stack upon return.
1070 pub incoming_args_size: u32,
1071
1072 /// The size of the incoming argument area, taking into account any
1073 /// potential increase in size required for tail calls present in the
1074 /// function. In the case that no tail calls are present, this value
1075 /// will be the same as [`Self::incoming_args_size`].
1076 pub tail_args_size: u32,
1077
1078 /// Size of the "setup area", typically holding the return address
1079 /// and/or the saved frame pointer. This may be written either during
1080 /// the call itself (e.g. a pushed return address) or by code emitted
1081 /// from gen_prologue_frame_setup. In any case, after that code has
1082 /// completed execution, the stack pointer is expected to point to the
1083 /// bottom of this area. The same holds at the start of code emitted
1084 /// by gen_epilogue_frame_restore.
1085 pub setup_area_size: u32,
1086
1087 /// Size of the area used to save callee-saved clobbered registers.
1088 /// This area is accessed by code emitted from gen_clobber_save and
1089 /// gen_clobber_restore.
1090 pub clobber_size: u32,
1091
1092 /// Storage allocated for the fixed part of the stack frame.
1093 /// This contains stack slots and spill slots.
1094 pub fixed_frame_storage_size: u32,
1095
1096 /// The size of all stackslots.
1097 pub stackslots_size: u32,
1098
1099 /// Stack size to be reserved for outgoing arguments, if used by
1100 /// the current ABI, or 0 otherwise. After gen_clobber_save and
1101 /// before gen_clobber_restore, the stack pointer points to the
1102 /// bottom of this area.
1103 pub outgoing_args_size: u32,
1104
1105 /// Sorted list of callee-saved registers that are clobbered
1106 /// according to the ABI. These registers will be saved and
1107 /// restored by gen_clobber_save and gen_clobber_restore.
1108 pub clobbered_callee_saves: Vec<Writable<RealReg>>,
1109
1110 /// The function's call pattern classification.
1111 pub function_calls: FunctionCalls,
1112}
1113
1114impl FrameLayout {
1115 /// Split the clobbered callee-save registers into integer-class and
1116 /// float-class groups.
1117 ///
1118 /// This method does not currently support vector-class callee-save
1119 /// registers because no current backend has them.
1120 pub fn clobbered_callee_saves_by_class(&self) -> (&[Writable<RealReg>], &[Writable<RealReg>]) {
1121 let (ints, floats) = self.clobbered_callee_saves.split_at(
1122 self.clobbered_callee_saves
1123 .partition_point(|r| r.to_reg().class() == RegClass::Int),
1124 );
1125 debug_assert!(floats.iter().all(|r| r.to_reg().class() == RegClass::Float));
1126 (ints, floats)
1127 }
1128
1129 /// The size of FP to SP while the frame is active (not during prologue
1130 /// setup or epilogue tear down).
1131 pub fn active_size(&self) -> u32 {
1132 self.outgoing_args_size + self.fixed_frame_storage_size + self.clobber_size
1133 }
1134
1135 /// Get the offset from the SP to the sized stack slots area.
1136 pub fn sp_to_sized_stack_slots(&self) -> u32 {
1137 self.outgoing_args_size
1138 }
1139
1140 /// Get the offset of a spill slot from SP.
1141 pub fn spillslot_offset(&self, spillslot: SpillSlot) -> i64 {
1142 // Offset from beginning of spillslot area.
1143 let islot = spillslot.index() as i64;
1144 let spill_off = islot * self.word_bytes as i64;
1145 let sp_off = self.stackslots_size as i64 + spill_off;
1146
1147 sp_off
1148 }
1149
1150 /// Get the offset from SP up to FP.
1151 pub fn sp_to_fp(&self) -> u32 {
1152 self.outgoing_args_size + self.fixed_frame_storage_size + self.clobber_size
1153 }
1154}
1155
1156/// ABI object for a function body.
1157pub struct Callee<M: ABIMachineSpec> {
1158 /// CLIF-level signature, possibly normalized.
1159 ir_sig: ir::Signature,
1160 /// Signature: arg and retval regs.
1161 sig: Sig,
1162 /// Defined dynamic types.
1163 dynamic_type_sizes: HashMap<Type, u32>,
1164 /// Offsets to each dynamic stackslot.
1165 dynamic_stackslots: PrimaryMap<DynamicStackSlot, u32>,
1166 /// Offsets to each sized stackslot.
1167 sized_stackslots: PrimaryMap<StackSlot, u32>,
1168 /// Descriptors for sized stackslots.
1169 sized_stackslot_keys: SecondaryMap<StackSlot, Option<StackSlotKey>>,
1170 /// Total stack size of all stackslots
1171 stackslots_size: u32,
1172 /// Stack size to be reserved for outgoing arguments.
1173 outgoing_args_size: u32,
1174 /// Initially the number of bytes originating in the callers frame where stack arguments will
1175 /// live. After lowering this number may be larger than the size expected by the function being
1176 /// compiled, as tail calls potentially require more space for stack arguments.
1177 tail_args_size: u32,
1178 /// Register-argument defs, to be provided to the `args`
1179 /// pseudo-inst, and pregs to constrain them to.
1180 reg_args: Vec<ArgPair>,
1181 /// Finalized frame layout for this function.
1182 frame_layout: Option<FrameLayout>,
1183 /// The register holding the return-area pointer, if needed.
1184 ret_area_ptr: Option<Reg>,
1185 /// Calling convention this function expects.
1186 call_conv: isa::CallConv,
1187 /// The settings controlling this function's compilation.
1188 flags: settings::Flags,
1189 /// The ISA-specific flag values controlling this function's compilation.
1190 isa_flags: M::F,
1191 /// If this function has a stack limit specified, then `Reg` is where the
1192 /// stack limit will be located after the instructions specified have been
1193 /// executed.
1194 ///
1195 /// Note that this is intended for insertion into the prologue, if
1196 /// present. Also note that because the instructions here execute in the
1197 /// prologue this happens after legalization/register allocation/etc so we
1198 /// need to be extremely careful with each instruction. The instructions are
1199 /// manually register-allocated and carefully only use caller-saved
1200 /// registers and keep nothing live after this sequence of instructions.
1201 stack_limit: Option<(Reg, SmallInstVec<M::I>)>,
1202
1203 _mach: PhantomData<M>,
1204}
1205
1206fn get_special_purpose_param_register(
1207 f: &ir::Function,
1208 sigs: &SigSet,
1209 sig: Sig,
1210 purpose: ir::ArgumentPurpose,
1211) -> Option<Reg> {
1212 let idx = f.signature.special_param_index(purpose)?;
1213 match &sigs.args(sig)[idx] {
1214 &ABIArg::Slots { ref slots, .. } => match &slots[0] {
1215 &ABIArgSlot::Reg { reg, .. } => Some(reg.into()),
1216 _ => None,
1217 },
1218 _ => None,
1219 }
1220}
1221
1222fn checked_round_up(val: u32, mask: u32) -> Option<u32> {
1223 Some(val.checked_add(mask)? & !mask)
1224}
1225
1226impl<M: ABIMachineSpec> Callee<M> {
1227 /// Create a new body ABI instance.
1228 pub fn new(
1229 f: &ir::Function,
1230 isa: &dyn TargetIsa,
1231 isa_flags: &M::F,
1232 sigs: &SigSet,
1233 ) -> CodegenResult<Self> {
1234 trace!("ABI: func signature {:?}", f.signature);
1235
1236 let flags = isa.flags().clone();
1237 let sig = sigs.abi_sig_for_signature(&f.signature);
1238
1239 let call_conv = f.signature.call_conv;
1240 // Only these calling conventions are supported.
1241 debug_assert!(
1242 call_conv == isa::CallConv::SystemV
1243 || call_conv == isa::CallConv::Tail
1244 || call_conv == isa::CallConv::Fast
1245 || call_conv == isa::CallConv::WindowsFastcall
1246 || call_conv == isa::CallConv::AppleAarch64
1247 || call_conv == isa::CallConv::Winch
1248 || call_conv == isa::CallConv::PreserveAll,
1249 "Unsupported calling convention: {call_conv:?}"
1250 );
1251
1252 // Compute sized stackslot locations and total stackslot size.
1253 let mut end_offset: u32 = 0;
1254 let mut sized_stackslots = PrimaryMap::new();
1255 let mut sized_stackslot_keys = SecondaryMap::new();
1256
1257 for (stackslot, data) in f.sized_stack_slots.iter() {
1258 // We start our computation possibly unaligned where the previous
1259 // stackslot left off.
1260 let unaligned_start_offset = end_offset;
1261
1262 // The start of the stackslot must be aligned.
1263 //
1264 // We always at least machine-word-align slots, but also
1265 // satisfy the user's requested alignment.
1266 debug_assert!(data.align_shift < 32);
1267 let align = core::cmp::max(M::word_bytes(), 1u32 << data.align_shift);
1268 let mask = align - 1;
1269 let start_offset = checked_round_up(unaligned_start_offset, mask)
1270 .ok_or(CodegenError::ImplLimitExceeded)?;
1271
1272 // The end offset is the start offset increased by the size
1273 end_offset = start_offset
1274 .checked_add(data.size)
1275 .ok_or(CodegenError::ImplLimitExceeded)?;
1276
1277 debug_assert_eq!(stackslot.as_u32() as usize, sized_stackslots.len());
1278 sized_stackslots.push(start_offset);
1279 sized_stackslot_keys[stackslot] = data.key;
1280 }
1281
1282 // Compute dynamic stackslot locations and total stackslot size.
1283 let mut dynamic_stackslots = PrimaryMap::new();
1284 for (stackslot, data) in f.dynamic_stack_slots.iter() {
1285 debug_assert_eq!(stackslot.as_u32() as usize, dynamic_stackslots.len());
1286
1287 // This computation is similar to the stackslots above
1288 let unaligned_start_offset = end_offset;
1289
1290 let mask = M::word_bytes() - 1;
1291 let start_offset = checked_round_up(unaligned_start_offset, mask)
1292 .ok_or(CodegenError::ImplLimitExceeded)?;
1293
1294 let ty = f.get_concrete_dynamic_ty(data.dyn_ty).ok_or_else(|| {
1295 CodegenError::Unsupported(format!("invalid dynamic vector type: {}", data.dyn_ty))
1296 })?;
1297
1298 end_offset = start_offset
1299 .checked_add(isa.dynamic_vector_bytes(ty))
1300 .ok_or(CodegenError::ImplLimitExceeded)?;
1301
1302 dynamic_stackslots.push(start_offset);
1303 }
1304
1305 // The size of the stackslots needs to be word aligned
1306 let stackslots_size = checked_round_up(end_offset, M::word_bytes() - 1)
1307 .ok_or(CodegenError::ImplLimitExceeded)?;
1308
1309 let mut dynamic_type_sizes = HashMap::with_capacity(f.dfg.dynamic_types.len());
1310 for (dyn_ty, _data) in f.dfg.dynamic_types.iter() {
1311 let ty = f
1312 .get_concrete_dynamic_ty(dyn_ty)
1313 .unwrap_or_else(|| panic!("invalid dynamic vector type: {dyn_ty}"));
1314 let size = isa.dynamic_vector_bytes(ty);
1315 dynamic_type_sizes.insert(ty, size);
1316 }
1317
1318 // Figure out what instructions, if any, will be needed to check the
1319 // stack limit. This can either be specified as a special-purpose
1320 // argument or as a global value which often calculates the stack limit
1321 // from the arguments.
1322 let stack_limit = f
1323 .stack_limit
1324 .map(|gv| gen_stack_limit::<M>(f, sigs, sig, gv));
1325
1326 let tail_args_size = sigs[sig].sized_stack_arg_space;
1327
1328 Ok(Self {
1329 ir_sig: ensure_struct_return_ptr_is_returned(&f.signature),
1330 sig,
1331 dynamic_stackslots,
1332 dynamic_type_sizes,
1333 sized_stackslots,
1334 sized_stackslot_keys,
1335 stackslots_size,
1336 outgoing_args_size: 0,
1337 tail_args_size,
1338 reg_args: vec![],
1339 frame_layout: None,
1340 ret_area_ptr: None,
1341 call_conv,
1342 flags,
1343 isa_flags: isa_flags.clone(),
1344 stack_limit,
1345 _mach: PhantomData,
1346 })
1347 }
1348
1349 /// Inserts instructions necessary for checking the stack limit into the
1350 /// prologue.
1351 ///
1352 /// This function will generate instructions necessary for perform a stack
1353 /// check at the header of a function. The stack check is intended to trap
1354 /// if the stack pointer goes below a particular threshold, preventing stack
1355 /// overflow in wasm or other code. The `stack_limit` argument here is the
1356 /// register which holds the threshold below which we're supposed to trap.
1357 /// This function is known to allocate `stack_size` bytes and we'll push
1358 /// instructions onto `insts`.
1359 ///
1360 /// Note that the instructions generated here are special because this is
1361 /// happening so late in the pipeline (e.g. after register allocation). This
1362 /// means that we need to do manual register allocation here and also be
1363 /// careful to not clobber any callee-saved or argument registers. For now
1364 /// this routine makes do with the `spilltmp_reg` as one temporary
1365 /// register, and a second register of `tmp2` which is caller-saved. This
1366 /// should be fine for us since no spills should happen in this sequence of
1367 /// instructions, so our register won't get accidentally clobbered.
1368 ///
1369 /// No values can be live after the prologue, but in this case that's ok
1370 /// because we just need to perform a stack check before progressing with
1371 /// the rest of the function.
1372 fn insert_stack_check(
1373 &self,
1374 stack_limit: Reg,
1375 stack_size: u32,
1376 insts: &mut SmallInstVec<M::I>,
1377 ) {
1378 // With no explicit stack allocated we can just emit the simple check of
1379 // the stack registers against the stack limit register, and trap if
1380 // it's out of bounds.
1381 if stack_size == 0 {
1382 insts.extend(M::gen_stack_lower_bound_trap(stack_limit));
1383 return;
1384 }
1385
1386 // Note that the 32k stack size here is pretty special. See the
1387 // documentation in x86/abi.rs for why this is here. The general idea is
1388 // that we're protecting against overflow in the addition that happens
1389 // below.
1390 if stack_size >= 32 * 1024 {
1391 insts.extend(M::gen_stack_lower_bound_trap(stack_limit));
1392 }
1393
1394 // Add the `stack_size` to `stack_limit`, placing the result in
1395 // `scratch`.
1396 //
1397 // Note though that `stack_limit`'s register may be the same as
1398 // `scratch`. If our stack size doesn't fit into an immediate this
1399 // means we need a second scratch register for loading the stack size
1400 // into a register.
1401 let scratch = Writable::from_reg(M::get_stacklimit_reg(self.call_conv));
1402 insts.extend(M::gen_add_imm(
1403 self.call_conv,
1404 scratch,
1405 stack_limit,
1406 stack_size,
1407 ));
1408 insts.extend(M::gen_stack_lower_bound_trap(scratch.to_reg()));
1409 }
1410}
1411
1412/// Generates the instructions necessary for the `gv` to be materialized into a
1413/// register.
1414///
1415/// This function will return a register that will contain the result of
1416/// evaluating `gv`. It will also return any instructions necessary to calculate
1417/// the value of the register.
1418///
1419/// Note that global values are typically lowered to instructions via the
1420/// standard legalization pass. Unfortunately though prologue generation happens
1421/// so late in the pipeline that we can't use these legalization passes to
1422/// generate the instructions for `gv`. As a result we duplicate some lowering
1423/// of `gv` here and support only some global values. This is similar to what
1424/// the x86 backend does for now, and hopefully this can be somewhat cleaned up
1425/// in the future too!
1426///
1427/// Also note that this function will make use of `writable_spilltmp_reg()` as a
1428/// temporary register to store values in if necessary. Currently after we write
1429/// to this register there's guaranteed to be no spilled values between where
1430/// it's used, because we're not participating in register allocation anyway!
1431fn gen_stack_limit<M: ABIMachineSpec>(
1432 f: &ir::Function,
1433 sigs: &SigSet,
1434 sig: Sig,
1435 gv: ir::GlobalValue,
1436) -> (Reg, SmallInstVec<M::I>) {
1437 let mut insts = smallvec![];
1438 let reg = generate_gv::<M>(f, sigs, sig, gv, &mut insts);
1439 return (reg, insts);
1440}
1441
1442fn generate_gv<M: ABIMachineSpec>(
1443 f: &ir::Function,
1444 sigs: &SigSet,
1445 sig: Sig,
1446 gv: ir::GlobalValue,
1447 insts: &mut SmallInstVec<M::I>,
1448) -> Reg {
1449 match f.global_values[gv] {
1450 // Return the direct register the vmcontext is in
1451 ir::GlobalValueData::VMContext => {
1452 get_special_purpose_param_register(f, sigs, sig, ir::ArgumentPurpose::VMContext)
1453 .expect("no vmcontext parameter found")
1454 }
1455 // Load our base value into a register, then load from that register
1456 // in to a temporary register.
1457 ir::GlobalValueData::Load {
1458 base,
1459 offset,
1460 global_type: _,
1461 flags: _,
1462 } => {
1463 let base = generate_gv::<M>(f, sigs, sig, base, insts);
1464 let into_reg = Writable::from_reg(M::get_stacklimit_reg(f.stencil.signature.call_conv));
1465 insts.push(M::gen_load_base_offset(
1466 into_reg,
1467 base,
1468 offset.into(),
1469 M::word_type(),
1470 ));
1471 return into_reg.to_reg();
1472 }
1473 ref other => panic!("global value for stack limit not supported: {other}"),
1474 }
1475}
1476
1477/// Returns true if the signature needs to be legalized.
1478fn missing_struct_return(sig: &ir::Signature) -> bool {
1479 sig.uses_special_param(ArgumentPurpose::StructReturn)
1480 && !sig.uses_special_return(ArgumentPurpose::StructReturn)
1481}
1482
1483fn ensure_struct_return_ptr_is_returned(sig: &ir::Signature) -> ir::Signature {
1484 // Keep in sync with Callee::new
1485 let mut sig = sig.clone();
1486 if sig.uses_special_return(ArgumentPurpose::StructReturn) {
1487 panic!("Explicit StructReturn return value not allowed: {sig:?}")
1488 }
1489 if let Some(struct_ret_index) = sig.special_param_index(ArgumentPurpose::StructReturn) {
1490 if !sig.returns.is_empty() {
1491 panic!("No return values are allowed when using StructReturn: {sig:?}");
1492 }
1493 sig.returns.insert(0, sig.params[struct_ret_index]);
1494 }
1495 sig
1496}
1497
1498/// ### Pre-Regalloc Functions
1499///
1500/// These methods of `Callee` may only be called before regalloc.
1501impl<M: ABIMachineSpec> Callee<M> {
1502 /// Access the (possibly legalized) signature.
1503 pub fn signature(&self) -> &ir::Signature {
1504 debug_assert!(
1505 !missing_struct_return(&self.ir_sig),
1506 "`Callee::ir_sig` is always legalized"
1507 );
1508 &self.ir_sig
1509 }
1510
1511 /// Initialize. This is called after the Callee is constructed because it
1512 /// may allocate a temp vreg, which can only be allocated once the lowering
1513 /// context exists.
1514 pub fn init_retval_area(
1515 &mut self,
1516 sigs: &SigSet,
1517 vregs: &mut VRegAllocator<M::I>,
1518 ) -> CodegenResult<()> {
1519 if sigs[self.sig].stack_ret_arg.is_some() {
1520 let ret_area_ptr = vregs.alloc(M::word_type())?;
1521 self.ret_area_ptr = Some(ret_area_ptr.only_reg().unwrap());
1522 }
1523 Ok(())
1524 }
1525
1526 /// Get the return area pointer register, if any.
1527 pub fn ret_area_ptr(&self) -> Option<Reg> {
1528 self.ret_area_ptr
1529 }
1530
1531 /// Accumulate outgoing arguments.
1532 ///
1533 /// This ensures that at least `size` bytes are allocated in the prologue to
1534 /// be available for use in function calls to hold arguments and/or return
1535 /// values. If this function is called multiple times, the maximum of all
1536 /// `size` values will be available.
1537 pub fn accumulate_outgoing_args_size(&mut self, size: u32) {
1538 if size > self.outgoing_args_size {
1539 self.outgoing_args_size = size;
1540 }
1541 }
1542
1543 /// Accumulate the incoming argument area size requirements for a tail call,
1544 /// as it could be larger than the incoming arguments of the function
1545 /// currently being compiled.
1546 pub fn accumulate_tail_args_size(&mut self, size: u32) {
1547 if size > self.tail_args_size {
1548 self.tail_args_size = size;
1549 }
1550 }
1551
1552 pub fn is_forward_edge_cfi_enabled(&self) -> bool {
1553 self.isa_flags.is_forward_edge_cfi_enabled()
1554 }
1555
1556 /// Get the calling convention implemented by this ABI object.
1557 pub fn call_conv(&self) -> isa::CallConv {
1558 self.call_conv
1559 }
1560
1561 /// Get the ABI-dependent MachineEnv for managing register allocation.
1562 pub fn machine_env(&self) -> &MachineEnv {
1563 M::get_machine_env(&self.flags, self.call_conv)
1564 }
1565
1566 /// The offsets of all sized stack slots (not spill slots) for debuginfo purposes.
1567 pub fn sized_stackslot_offsets(&self) -> &PrimaryMap<StackSlot, u32> {
1568 &self.sized_stackslots
1569 }
1570
1571 /// The offsets of all dynamic stack slots (not spill slots) for debuginfo purposes.
1572 pub fn dynamic_stackslot_offsets(&self) -> &PrimaryMap<DynamicStackSlot, u32> {
1573 &self.dynamic_stackslots
1574 }
1575
1576 /// Generate an instruction which copies an argument to a destination
1577 /// register.
1578 pub fn gen_copy_arg_to_regs(
1579 &mut self,
1580 sigs: &SigSet,
1581 idx: usize,
1582 into_regs: ValueRegs<Writable<Reg>>,
1583 vregs: &mut VRegAllocator<M::I>,
1584 ) -> SmallInstVec<M::I> {
1585 let mut insts = smallvec![];
1586 let mut copy_arg_slot_to_reg = |slot: &ABIArgSlot, into_reg: &Writable<Reg>| {
1587 match slot {
1588 &ABIArgSlot::Reg { reg, .. } => {
1589 // Add a preg -> def pair to the eventual `args`
1590 // instruction. Extension mode doesn't matter
1591 // (we're copying out, not in; we ignore high bits
1592 // by convention).
1593 let arg = ArgPair {
1594 vreg: *into_reg,
1595 preg: reg.into(),
1596 };
1597 self.reg_args.push(arg);
1598 }
1599 &ABIArgSlot::Stack {
1600 offset,
1601 ty,
1602 extension,
1603 ..
1604 } => {
1605 // However, we have to respect the extension mode for stack
1606 // slots, or else we grab the wrong bytes on big-endian.
1607 let ext =
1608 M::get_ext_mode(sigs[self.sig].call_conv, extension, ABIArgLocation::Stack);
1609 let ty =
1610 if ext != ArgumentExtension::None && M::word_bits() > ty_bits(ty) as u32 {
1611 M::word_type()
1612 } else {
1613 ty
1614 };
1615 insts.push(M::gen_load_stack(
1616 StackAMode::IncomingArg(offset, sigs[self.sig].sized_stack_arg_space),
1617 *into_reg,
1618 ty,
1619 ));
1620 }
1621 }
1622 };
1623
1624 match &sigs.args(self.sig)[idx] {
1625 &ABIArg::Slots { ref slots, .. } => {
1626 assert_eq!(into_regs.len(), slots.len());
1627 for (slot, into_reg) in slots.iter().zip(into_regs.regs().iter()) {
1628 copy_arg_slot_to_reg(&slot, &into_reg);
1629 }
1630 }
1631 &ABIArg::StructArg { offset, .. } => {
1632 let into_reg = into_regs.only_reg().unwrap();
1633 // Buffer address is implicitly defined by the ABI.
1634 insts.push(M::gen_get_stack_addr(
1635 StackAMode::IncomingArg(offset, sigs[self.sig].sized_stack_arg_space),
1636 into_reg,
1637 ));
1638 }
1639 &ABIArg::ImplicitPtrArg { pointer, ty, .. } => {
1640 let into_reg = into_regs.only_reg().unwrap();
1641 // We need to dereference the pointer.
1642 let base = match &pointer {
1643 &ABIArgSlot::Reg { reg, ty, .. } => {
1644 let tmp = vregs.alloc_with_deferred_error(ty).only_reg().unwrap();
1645 self.reg_args.push(ArgPair {
1646 vreg: Writable::from_reg(tmp),
1647 preg: reg.into(),
1648 });
1649 tmp
1650 }
1651 &ABIArgSlot::Stack { offset, ty, .. } => {
1652 let addr_reg = writable_value_regs(vregs.alloc_with_deferred_error(ty))
1653 .only_reg()
1654 .unwrap();
1655 insts.push(M::gen_load_stack(
1656 StackAMode::IncomingArg(offset, sigs[self.sig].sized_stack_arg_space),
1657 addr_reg,
1658 ty,
1659 ));
1660 addr_reg.to_reg()
1661 }
1662 };
1663 insts.push(M::gen_load_base_offset(into_reg, base, 0, ty));
1664 }
1665 }
1666 insts
1667 }
1668
1669 /// Generate an instruction which copies a source register to a return value slot.
1670 pub fn gen_copy_regs_to_retval(
1671 &self,
1672 sigs: &SigSet,
1673 idx: usize,
1674 from_regs: ValueRegs<Reg>,
1675 vregs: &mut VRegAllocator<M::I>,
1676 ) -> (SmallVec<[RetPair; 2]>, SmallInstVec<M::I>) {
1677 let mut reg_pairs = smallvec![];
1678 let mut ret = smallvec![];
1679 let word_bits = M::word_bits() as u8;
1680 match &sigs.rets(self.sig)[idx] {
1681 &ABIArg::Slots { ref slots, .. } => {
1682 assert_eq!(from_regs.len(), slots.len());
1683 for (slot, &from_reg) in slots.iter().zip(from_regs.regs().iter()) {
1684 match slot {
1685 &ABIArgSlot::Reg {
1686 reg, ty, extension, ..
1687 } => {
1688 let from_bits = ty_bits(ty) as u8;
1689 let ext = M::get_ext_mode(
1690 sigs[self.sig].call_conv,
1691 extension,
1692 ABIArgLocation::Reg,
1693 );
1694 let vreg = match (ext, from_bits) {
1695 (ir::ArgumentExtension::Uext, n)
1696 | (ir::ArgumentExtension::Sext, n)
1697 if n < word_bits =>
1698 {
1699 let signed = ext == ir::ArgumentExtension::Sext;
1700 let dst =
1701 writable_value_regs(vregs.alloc_with_deferred_error(ty))
1702 .only_reg()
1703 .unwrap();
1704 ret.push(M::gen_extend(
1705 dst, from_reg, signed, from_bits,
1706 /* to_bits = */ word_bits,
1707 ));
1708 dst.to_reg()
1709 }
1710 _ => {
1711 // No move needed, regalloc2 will emit it using the constraint
1712 // added by the RetPair.
1713 from_reg
1714 }
1715 };
1716 reg_pairs.push(RetPair {
1717 vreg,
1718 preg: Reg::from(reg),
1719 });
1720 }
1721 &ABIArgSlot::Stack {
1722 offset,
1723 ty,
1724 extension,
1725 ..
1726 } => {
1727 let mut ty = ty;
1728 let from_bits = ty_bits(ty) as u8;
1729 // A machine ABI implementation should ensure that stack frames
1730 // have "reasonable" size. All current ABIs for machinst
1731 // backends (aarch64 and x64) enforce a 128MB limit.
1732 let off = i32::try_from(offset).expect(
1733 "Argument stack offset greater than 2GB; should hit impl limit first",
1734 );
1735 let ext = M::get_ext_mode(
1736 sigs[self.sig].call_conv,
1737 extension,
1738 ABIArgLocation::Stack,
1739 );
1740 // Trash the from_reg; it should be its last use.
1741 match (ext, from_bits) {
1742 (ir::ArgumentExtension::Uext, n)
1743 | (ir::ArgumentExtension::Sext, n)
1744 if n < word_bits =>
1745 {
1746 assert_eq!(M::word_reg_class(), from_reg.class());
1747 let signed = ext == ir::ArgumentExtension::Sext;
1748 let dst =
1749 writable_value_regs(vregs.alloc_with_deferred_error(ty))
1750 .only_reg()
1751 .unwrap();
1752 ret.push(M::gen_extend(
1753 dst, from_reg, signed, from_bits,
1754 /* to_bits = */ word_bits,
1755 ));
1756 // Store the extended version.
1757 ty = M::word_type();
1758 }
1759 _ => {}
1760 };
1761 ret.push(M::gen_store_base_offset(
1762 self.ret_area_ptr.unwrap(),
1763 off,
1764 from_reg,
1765 ty,
1766 ));
1767 }
1768 }
1769 }
1770 }
1771 ABIArg::StructArg { .. } => {
1772 panic!("StructArg in return position is unsupported");
1773 }
1774 ABIArg::ImplicitPtrArg { .. } => {
1775 panic!("ImplicitPtrArg in return position is unsupported");
1776 }
1777 }
1778 (reg_pairs, ret)
1779 }
1780
1781 /// Generate any setup instruction needed to save values to the
1782 /// return-value area. This is usually used when were are multiple return
1783 /// values or an otherwise large return value that must be passed on the
1784 /// stack; typically the ABI specifies an extra hidden argument that is a
1785 /// pointer to that memory.
1786 pub fn gen_retval_area_setup(
1787 &mut self,
1788 sigs: &SigSet,
1789 vregs: &mut VRegAllocator<M::I>,
1790 ) -> Option<M::I> {
1791 if let Some(i) = sigs[self.sig].stack_ret_arg {
1792 let ret_area_ptr = Writable::from_reg(self.ret_area_ptr.unwrap());
1793 let insts =
1794 self.gen_copy_arg_to_regs(sigs, i.into(), ValueRegs::one(ret_area_ptr), vregs);
1795 insts.into_iter().next().map(|inst| {
1796 trace!(
1797 "gen_retval_area_setup: inst {:?}; ptr reg is {:?}",
1798 inst,
1799 ret_area_ptr.to_reg()
1800 );
1801 inst
1802 })
1803 } else {
1804 trace!("gen_retval_area_setup: not needed");
1805 None
1806 }
1807 }
1808
1809 /// Generate a return instruction.
1810 pub fn gen_rets(&self, rets: Vec<RetPair>) -> M::I {
1811 M::gen_rets(rets)
1812 }
1813
1814 /// Set up arguments values `args` for a call with signature `sig`.
1815 /// This will return a series of instructions to be emitted to set
1816 /// up all arguments, as well as a `CallArgList` list representing
1817 /// the arguments passed in registers. The latter need to be added
1818 /// as constraints to the actual call instruction.
1819 pub fn gen_call_args(
1820 &self,
1821 sigs: &SigSet,
1822 sig: Sig,
1823 args: &[ValueRegs<Reg>],
1824 is_tail_call: bool,
1825 flags: &settings::Flags,
1826 vregs: &mut VRegAllocator<M::I>,
1827 ) -> (CallArgList, SmallInstVec<M::I>) {
1828 let mut uses: CallArgList = smallvec![];
1829 let mut insts = smallvec![];
1830
1831 assert_eq!(args.len(), sigs.num_args(sig));
1832
1833 let call_conv = sigs[sig].call_conv;
1834 let stack_arg_space = sigs[sig].sized_stack_arg_space;
1835 let stack_arg = |offset| {
1836 if is_tail_call {
1837 StackAMode::IncomingArg(offset, stack_arg_space)
1838 } else {
1839 StackAMode::OutgoingArg(offset)
1840 }
1841 };
1842
1843 let word_ty = M::word_type();
1844 let word_rc = M::word_reg_class();
1845 let word_bits = M::word_bits() as usize;
1846
1847 if is_tail_call {
1848 debug_assert_eq!(
1849 self.call_conv,
1850 isa::CallConv::Tail,
1851 "Can only do `return_call`s from within a `tail` calling convention function"
1852 );
1853 }
1854
1855 // Helper to process a single argument slot (register or stack slot).
1856 // This will either add the register to the `uses` list or write the
1857 // value to the stack slot in the outgoing argument area (or for tail
1858 // calls, the incoming argument area).
1859 let mut process_arg_slot = |insts: &mut SmallInstVec<M::I>, slot, vreg, ty| {
1860 match &slot {
1861 &ABIArgSlot::Reg { reg, .. } => {
1862 uses.push(CallArgPair {
1863 vreg,
1864 preg: reg.into(),
1865 });
1866 }
1867 &ABIArgSlot::Stack { offset, .. } => {
1868 insts.push(M::gen_store_stack(stack_arg(offset), vreg, ty));
1869 }
1870 };
1871 };
1872
1873 // First pass: Handle `StructArg` arguments. These need to be copied
1874 // into their associated stack buffers. This should happen before any
1875 // of the other arguments are processed, as the `memcpy` call might
1876 // clobber registers used by other arguments.
1877 for (idx, from_regs) in args.iter().enumerate() {
1878 match &sigs.args(sig)[idx] {
1879 &ABIArg::Slots { .. } | &ABIArg::ImplicitPtrArg { .. } => {}
1880 &ABIArg::StructArg { offset, size, .. } => {
1881 let tmp = vregs.alloc_with_deferred_error(word_ty).only_reg().unwrap();
1882 insts.push(M::gen_get_stack_addr(
1883 stack_arg(offset),
1884 Writable::from_reg(tmp),
1885 ));
1886 insts.extend(M::gen_memcpy(
1887 isa::CallConv::for_libcall(flags, call_conv),
1888 tmp,
1889 from_regs.only_reg().unwrap(),
1890 size as usize,
1891 |ty| {
1892 Writable::from_reg(
1893 vregs.alloc_with_deferred_error(ty).only_reg().unwrap(),
1894 )
1895 },
1896 ));
1897 }
1898 }
1899 }
1900
1901 // Second pass: Handle everything except `StructArg` arguments.
1902 for (idx, from_regs) in args.iter().enumerate() {
1903 match sigs.args(sig)[idx] {
1904 ABIArg::Slots { ref slots, .. } => {
1905 assert_eq!(from_regs.len(), slots.len());
1906 for (slot, from_reg) in slots.iter().zip(from_regs.regs().iter()) {
1907 // Load argument slot value from `from_reg`, and perform any zero-
1908 // or sign-extension that is required by the ABI.
1909 let (ty, extension, arg_loc) = match *slot {
1910 ABIArgSlot::Reg { ty, extension, .. } => {
1911 (ty, extension, ABIArgLocation::Reg)
1912 }
1913 ABIArgSlot::Stack { ty, extension, .. } => {
1914 (ty, extension, ABIArgLocation::Stack)
1915 }
1916 };
1917 let ext = M::get_ext_mode(call_conv, extension, arg_loc);
1918 let (vreg, ty) = if ext != ir::ArgumentExtension::None
1919 && ty_bits(ty) < word_bits
1920 {
1921 assert_eq!(word_rc, from_reg.class());
1922 let signed = match ext {
1923 ir::ArgumentExtension::Uext => false,
1924 ir::ArgumentExtension::Sext => true,
1925 _ => unreachable!(),
1926 };
1927 let tmp = vregs.alloc_with_deferred_error(word_ty).only_reg().unwrap();
1928 insts.push(M::gen_extend(
1929 Writable::from_reg(tmp),
1930 *from_reg,
1931 signed,
1932 ty_bits(ty) as u8,
1933 word_bits as u8,
1934 ));
1935 (tmp, word_ty)
1936 } else {
1937 (*from_reg, ty)
1938 };
1939 process_arg_slot(&mut insts, *slot, vreg, ty);
1940 }
1941 }
1942 ABIArg::ImplicitPtrArg {
1943 offset,
1944 pointer,
1945 ty,
1946 ..
1947 } => {
1948 let vreg = from_regs.only_reg().unwrap();
1949 let tmp = vregs.alloc_with_deferred_error(word_ty).only_reg().unwrap();
1950 insts.push(M::gen_get_stack_addr(
1951 stack_arg(offset),
1952 Writable::from_reg(tmp),
1953 ));
1954 insts.push(M::gen_store_base_offset(tmp, 0, vreg, ty));
1955 process_arg_slot(&mut insts, pointer, tmp, word_ty);
1956 }
1957 ABIArg::StructArg { .. } => {}
1958 }
1959 }
1960
1961 // Finally, set the stack-return pointer to the return argument area.
1962 // For tail calls, this means forwarding the incoming stack-return pointer.
1963 if let Some(ret_arg) = sigs.get_ret_arg(sig) {
1964 let ret_area = if is_tail_call {
1965 self.ret_area_ptr.expect(
1966 "if the tail callee has a return pointer, then the tail caller must as well",
1967 )
1968 } else {
1969 let tmp = vregs.alloc_with_deferred_error(word_ty).only_reg().unwrap();
1970 let amode = StackAMode::OutgoingArg(stack_arg_space.into());
1971 insts.push(M::gen_get_stack_addr(amode, Writable::from_reg(tmp)));
1972 tmp
1973 };
1974 match ret_arg {
1975 // The return pointer must occupy a single slot.
1976 ABIArg::Slots { slots, .. } => {
1977 assert_eq!(slots.len(), 1);
1978 process_arg_slot(&mut insts, slots[0], ret_area, word_ty);
1979 }
1980 _ => unreachable!(),
1981 }
1982 }
1983
1984 (uses, insts)
1985 }
1986
1987 /// Set up return values `outputs` for a call with signature `sig`.
1988 /// This does not emit (or return) any instructions, but returns a
1989 /// `CallRetList` representing the return value constraints. This
1990 /// needs to be added to the actual call instruction.
1991 ///
1992 /// If `try_call_payloads` is non-zero, it is expected to hold
1993 /// exception payload registers for try_call instructions. These
1994 /// will be added as needed to the `CallRetList` as well.
1995 pub fn gen_call_rets(
1996 &self,
1997 sigs: &SigSet,
1998 sig: Sig,
1999 outputs: &[ValueRegs<Reg>],
2000 try_call_payloads: Option<&[Writable<Reg>]>,
2001 vregs: &mut VRegAllocator<M::I>,
2002 ) -> CallRetList {
2003 let callee_conv = sigs[sig].call_conv;
2004 let stack_arg_space = sigs[sig].sized_stack_arg_space;
2005
2006 let word_ty = M::word_type();
2007 let word_bits = M::word_bits() as usize;
2008
2009 let mut defs: CallRetList = smallvec![];
2010 let mut outputs = outputs.into_iter();
2011 let num_rets = sigs.num_rets(sig);
2012 for idx in 0..num_rets {
2013 let ret = sigs.rets(sig)[idx].clone();
2014 match ret {
2015 ABIArg::Slots {
2016 ref slots, purpose, ..
2017 } => {
2018 // We do not use the returned copy of the return buffer pointer,
2019 // so skip any StructReturn returns that may be present.
2020 if purpose == ArgumentPurpose::StructReturn {
2021 continue;
2022 }
2023 let retval_regs = outputs.next().unwrap();
2024 assert_eq!(retval_regs.len(), slots.len());
2025 for (slot, retval_reg) in slots.iter().zip(retval_regs.regs().iter()) {
2026 // We do not perform any extension because we're copying out, not in,
2027 // and we ignore high bits in our own registers by convention. However,
2028 // we still need to use the proper extended type to access stack slots
2029 // (this is critical on big-endian systems).
2030 let (ty, extension, arg_loc) = match *slot {
2031 ABIArgSlot::Reg { ty, extension, .. } => {
2032 (ty, extension, ABIArgLocation::Reg)
2033 }
2034 ABIArgSlot::Stack { ty, extension, .. } => {
2035 (ty, extension, ABIArgLocation::Stack)
2036 }
2037 };
2038 let ext = M::get_ext_mode(callee_conv, extension, arg_loc);
2039 let ty = if ext != ir::ArgumentExtension::None && ty_bits(ty) < word_bits {
2040 word_ty
2041 } else {
2042 ty
2043 };
2044
2045 match slot {
2046 &ABIArgSlot::Reg { reg, .. } => {
2047 defs.push(CallRetPair {
2048 vreg: Writable::from_reg(*retval_reg),
2049 location: RetLocation::Reg(reg.into(), ty),
2050 });
2051 }
2052 &ABIArgSlot::Stack { offset, .. } => {
2053 let amode =
2054 StackAMode::OutgoingArg(offset + i64::from(stack_arg_space));
2055 defs.push(CallRetPair {
2056 vreg: Writable::from_reg(*retval_reg),
2057 location: RetLocation::Stack(amode, ty),
2058 });
2059 }
2060 }
2061 }
2062 }
2063 ABIArg::StructArg { .. } => {
2064 panic!("StructArg not supported in return position");
2065 }
2066 ABIArg::ImplicitPtrArg { .. } => {
2067 panic!("ImplicitPtrArg not supported in return position");
2068 }
2069 }
2070 }
2071 assert!(outputs.next().is_none());
2072
2073 if let Some(try_call_payloads) = try_call_payloads {
2074 // Let `M` say where the payload values are going to end up and then
2075 // double-check it's the same size as the calling convention's
2076 // reported number of exception types.
2077 let pregs = M::exception_payload_regs(callee_conv);
2078 assert_eq!(
2079 callee_conv.exception_payload_types(M::word_type()).len(),
2080 pregs.len()
2081 );
2082
2083 // We need to update `defs` to contain the exception
2084 // payload regs as well. We have two sources of info that
2085 // we join:
2086 //
2087 // - The machine-specific ABI implementation `M`, which
2088 // tells us the particular registers that payload values
2089 // must be in
2090 // - The passed-in lowering context, which gives us the
2091 // vregs we must define.
2092 //
2093 // Note that payload values may need to end up in the same
2094 // physical registers as ordinary return values; this is
2095 // not a conflict, because we either get one or the
2096 // other. For regalloc's purposes, we define both starting
2097 // here at the callsite, but we can share one def in the
2098 // `defs` list and alias one vreg to another. Thus we
2099 // handle the two cases below for each payload register:
2100 // overlaps a return value (and we alias to it) or not
2101 // (and we add a def).
2102 for (i, &preg) in pregs.iter().enumerate() {
2103 let vreg = try_call_payloads[i];
2104 if let Some(existing) = defs.iter().find(|def| match def.location {
2105 RetLocation::Reg(r, _) => r == preg,
2106 _ => false,
2107 }) {
2108 vregs.set_vreg_alias(vreg.to_reg(), existing.vreg.to_reg());
2109 } else {
2110 defs.push(CallRetPair {
2111 vreg,
2112 location: RetLocation::Reg(preg, word_ty),
2113 });
2114 }
2115 }
2116 }
2117
2118 defs
2119 }
2120
2121 /// Populate a `CallInfo` for a call with signature `sig`.
2122 ///
2123 /// `dest` is the target-specific call destination value
2124 /// `uses` is the `CallArgList` describing argument constraints
2125 /// `defs` is the `CallRetList` describing return constraints
2126 /// `try_call_info` describes exception targets for try_call instructions
2127 /// `patchable` describes whether this callsite should emit metadata
2128 /// for patching to enable/disable it.
2129 ///
2130 /// The clobber list is computed here from the above data.
2131 pub fn gen_call_info<T>(
2132 &self,
2133 sigs: &SigSet,
2134 sig: Sig,
2135 dest: T,
2136 uses: CallArgList,
2137 defs: CallRetList,
2138 try_call_info: Option<TryCallInfo>,
2139 patchable: bool,
2140 ) -> CallInfo<T> {
2141 let caller_conv = self.call_conv;
2142 let callee_conv = sigs[sig].call_conv;
2143 let stack_arg_space = sigs[sig].sized_stack_arg_space;
2144
2145 let clobbers = {
2146 // Get clobbers: all caller-saves. These may include return value
2147 // regs, which we will remove from the clobber set below.
2148 let mut clobbers =
2149 <M>::get_regs_clobbered_by_call(callee_conv, try_call_info.is_some());
2150
2151 // Remove retval regs from clobbers.
2152 for def in &defs {
2153 if let RetLocation::Reg(preg, _) = def.location {
2154 clobbers.remove(PReg::from(preg.to_real_reg().unwrap()));
2155 }
2156 }
2157
2158 clobbers
2159 };
2160
2161 // Any adjustment to SP to account for required outgoing arguments/stack return values must
2162 // be done inside of the call pseudo-op, to ensure that SP is always in a consistent
2163 // state for all other instructions. For example, if a tail-call abi function is called
2164 // here, the reclamation of the outgoing argument area must be done inside of the call
2165 // pseudo-op's emission to ensure that SP is consistent at all other points in the lowered
2166 // function. (Except the prologue and epilogue, but those are fairly special parts of the
2167 // function that establish the SP invariants that are relied on elsewhere and are generated
2168 // after the register allocator has run and thus cannot have register allocator-inserted
2169 // references to SP offsets.)
2170
2171 let callee_pop_size = if callee_conv == isa::CallConv::Tail {
2172 // The tail calling convention has callees pop stack arguments.
2173 stack_arg_space
2174 } else {
2175 0
2176 };
2177
2178 CallInfo {
2179 dest,
2180 uses,
2181 defs,
2182 clobbers,
2183 callee_conv,
2184 caller_conv,
2185 callee_pop_size,
2186 try_call_info,
2187 patchable,
2188 }
2189 }
2190
2191 /// Get the raw offset of a sized stackslot in the slot region.
2192 pub fn sized_stackslot_offset(&self, slot: StackSlot) -> u32 {
2193 self.sized_stackslots[slot]
2194 }
2195
2196 /// Produce an instruction that computes a sized stackslot address.
2197 pub fn sized_stackslot_addr(
2198 &self,
2199 slot: StackSlot,
2200 offset: u32,
2201 into_reg: Writable<Reg>,
2202 ) -> M::I {
2203 // Offset from beginning of stackslot area.
2204 let stack_off = self.sized_stackslots[slot] as i64;
2205 let sp_off: i64 = stack_off + (offset as i64);
2206 M::gen_get_stack_addr(StackAMode::Slot(sp_off), into_reg)
2207 }
2208
2209 /// Produce an instruction that computes a dynamic stackslot address.
2210 pub fn dynamic_stackslot_addr(&self, slot: DynamicStackSlot, into_reg: Writable<Reg>) -> M::I {
2211 let stack_off = self.dynamic_stackslots[slot] as i64;
2212 M::gen_get_stack_addr(StackAMode::Slot(stack_off), into_reg)
2213 }
2214
2215 /// Get an `args` pseudo-inst, if any, that should appear at the
2216 /// very top of the function body prior to regalloc.
2217 pub fn take_args(&mut self) -> Option<M::I> {
2218 if self.reg_args.len() > 0 {
2219 // Very first instruction is an `args` pseudo-inst that
2220 // establishes live-ranges for in-register arguments and
2221 // constrains them at the start of the function to the
2222 // locations defined by the ABI.
2223 Some(M::gen_args(core::mem::take(&mut self.reg_args)))
2224 } else {
2225 None
2226 }
2227 }
2228}
2229
2230/// ### Post-Regalloc Functions
2231///
2232/// These methods of `Callee` may only be called after
2233/// regalloc.
2234impl<M: ABIMachineSpec> Callee<M> {
2235 /// Compute the final frame layout, post-regalloc.
2236 ///
2237 /// This must be called before gen_prologue or gen_epilogue.
2238 pub fn compute_frame_layout(
2239 &mut self,
2240 sigs: &SigSet,
2241 spillslots: usize,
2242 clobbered: Vec<Writable<RealReg>>,
2243 function_calls: FunctionCalls,
2244 ) -> CodegenResult<()> {
2245 let bytes = M::word_bytes();
2246 let total_stacksize = self.stackslots_size + bytes * spillslots as u32;
2247 let mask = M::stack_align(self.call_conv) - 1;
2248 let total_stacksize = (total_stacksize + mask) & !mask; // 16-align the stack.
2249 let frame_layout = M::compute_frame_layout(
2250 self.call_conv,
2251 &self.flags,
2252 self.signature(),
2253 &clobbered,
2254 function_calls,
2255 self.stack_args_size(sigs),
2256 self.tail_args_size,
2257 self.stackslots_size,
2258 total_stacksize,
2259 self.outgoing_args_size,
2260 );
2261
2262 if Self::frame_layout_exceeds_limit(&frame_layout, M::maximum_frame_size()) {
2263 return Err(CodegenError::ImplLimitExceeded);
2264 }
2265
2266 self.frame_layout = Some(frame_layout);
2267 Ok(())
2268 }
2269
2270 /// Pulled out so that it can be used directly in tests without constructing a full `Callee`.
2271 pub(crate) fn frame_layout_exceeds_limit(
2272 frame_layout: &FrameLayout,
2273 max_frame_size: u32,
2274 ) -> bool {
2275 let total: u64 = frame_layout.incoming_args_size as u64
2276 + frame_layout.tail_args_size as u64
2277 + frame_layout.setup_area_size as u64
2278 + frame_layout.clobber_size as u64
2279 + frame_layout.fixed_frame_storage_size as u64
2280 + frame_layout.outgoing_args_size as u64;
2281 total > max_frame_size as u64
2282 }
2283
2284 /// Generate a prologue, post-regalloc.
2285 ///
2286 /// This should include any stack frame or other setup necessary to use the
2287 /// other methods (`load_arg`, `store_retval`, and spillslot accesses.)
2288 pub fn gen_prologue(&self) -> SmallInstVec<M::I> {
2289 let frame_layout = self.frame_layout();
2290 let mut insts = smallvec![];
2291
2292 // Set up frame.
2293 insts.extend(M::gen_prologue_frame_setup(
2294 self.call_conv,
2295 &self.flags,
2296 &self.isa_flags,
2297 &frame_layout,
2298 ));
2299
2300 // The stack limit check needs to cover all the stack adjustments we
2301 // might make, up to the next stack limit check in any function we
2302 // call. Since this happens after frame setup, the current function's
2303 // setup area needs to be accounted for in the caller's stack limit
2304 // check, but we need to account for any setup area that our callees
2305 // might need. Note that s390x may also use the outgoing args area for
2306 // backtrace support even in leaf functions, so that should be accounted
2307 // for unconditionally.
2308 let total_stacksize = (frame_layout.tail_args_size - frame_layout.incoming_args_size)
2309 + frame_layout.clobber_size
2310 + frame_layout.fixed_frame_storage_size
2311 + frame_layout.outgoing_args_size
2312 + if frame_layout.function_calls == FunctionCalls::None {
2313 0
2314 } else {
2315 frame_layout.setup_area_size
2316 };
2317
2318 // Leaf functions with zero stack don't need a stack check if one's
2319 // specified, otherwise always insert the stack check.
2320 if total_stacksize > 0 || frame_layout.function_calls != FunctionCalls::None {
2321 if let Some((reg, stack_limit_load)) = &self.stack_limit {
2322 insts.extend(stack_limit_load.clone());
2323 self.insert_stack_check(*reg, total_stacksize, &mut insts);
2324 }
2325
2326 if self.flags.enable_probestack() {
2327 let guard_size = 1 << self.flags.probestack_size_log2();
2328 match self.flags.probestack_strategy() {
2329 ProbestackStrategy::Inline => M::gen_inline_probestack(
2330 &mut insts,
2331 self.call_conv,
2332 total_stacksize,
2333 guard_size,
2334 ),
2335 ProbestackStrategy::Outline => {
2336 if total_stacksize >= guard_size {
2337 M::gen_probestack(&mut insts, total_stacksize);
2338 }
2339 }
2340 }
2341 }
2342 }
2343
2344 // Save clobbered registers.
2345 insts.extend(M::gen_clobber_save(
2346 self.call_conv,
2347 &self.flags,
2348 &frame_layout,
2349 ));
2350
2351 insts
2352 }
2353
2354 /// Generate an epilogue, post-regalloc.
2355 ///
2356 /// Note that this must generate the actual return instruction (rather than
2357 /// emitting this in the lowering logic), because the epilogue code comes
2358 /// before the return and the two are likely closely related.
2359 pub fn gen_epilogue(&self) -> SmallInstVec<M::I> {
2360 let frame_layout = self.frame_layout();
2361 let mut insts = smallvec![];
2362
2363 // Restore clobbered registers.
2364 insts.extend(M::gen_clobber_restore(
2365 self.call_conv,
2366 &self.flags,
2367 &frame_layout,
2368 ));
2369
2370 // Tear down frame.
2371 insts.extend(M::gen_epilogue_frame_restore(
2372 self.call_conv,
2373 &self.flags,
2374 &self.isa_flags,
2375 &frame_layout,
2376 ));
2377
2378 // And return.
2379 insts.extend(M::gen_return(
2380 self.call_conv,
2381 &self.isa_flags,
2382 &frame_layout,
2383 ));
2384
2385 trace!("Epilogue: {:?}", insts);
2386 insts
2387 }
2388
2389 /// Return a reference to the computed frame layout information. This
2390 /// function will panic if it's called before [`Self::compute_frame_layout`].
2391 pub fn frame_layout(&self) -> &FrameLayout {
2392 self.frame_layout
2393 .as_ref()
2394 .expect("frame layout not computed before prologue generation")
2395 }
2396
2397 /// Returns the offset from SP to FP for the given function, after
2398 /// the prologue has set up the frame. This comprises the spill
2399 /// slots and stack-storage slots as well as storage for clobbered
2400 /// callee-save registers and outgoing arguments at callsites
2401 /// (space for which is reserved during frame setup).
2402 pub fn sp_to_fp_offset(&self) -> u32 {
2403 let frame_layout = self.frame_layout();
2404 frame_layout.clobber_size
2405 + frame_layout.fixed_frame_storage_size
2406 + frame_layout.outgoing_args_size
2407 }
2408
2409 /// Returns offset from the slot base in the current frame to the caller's SP.
2410 pub fn slot_base_to_caller_sp_offset(&self) -> u32 {
2411 // Note: this looks very similar to `frame_size()` above, but
2412 // it differs in both endpoints: it measures from the bottom
2413 // of stackslots, excluding outgoing args; and it includes the
2414 // setup area (FP/LR) size and any extra tail-args space.
2415 let frame_layout = self.frame_layout();
2416 frame_layout.clobber_size
2417 + frame_layout.fixed_frame_storage_size
2418 + frame_layout.setup_area_size
2419 + (frame_layout.tail_args_size - frame_layout.incoming_args_size)
2420 }
2421
2422 /// Returns the size of arguments expected on the stack.
2423 pub fn stack_args_size(&self, sigs: &SigSet) -> u32 {
2424 sigs[self.sig].sized_stack_arg_space
2425 }
2426
2427 /// Get the spill-slot size.
2428 pub fn get_spillslot_size(&self, rc: RegClass) -> u32 {
2429 let max = if self.dynamic_type_sizes.len() == 0 {
2430 16
2431 } else {
2432 *self
2433 .dynamic_type_sizes
2434 .iter()
2435 .max_by(|x, y| x.1.cmp(&y.1))
2436 .map(|(_k, v)| v)
2437 .unwrap()
2438 };
2439 M::get_number_of_spillslots_for_value(rc, max, &self.isa_flags)
2440 }
2441
2442 /// Get the spill slot offset relative to the fixed allocation area start.
2443 pub fn get_spillslot_offset(&self, slot: SpillSlot) -> i64 {
2444 self.frame_layout().spillslot_offset(slot)
2445 }
2446
2447 /// Generate a spill.
2448 pub fn gen_spill(&self, to_slot: SpillSlot, from_reg: RealReg) -> M::I {
2449 let ty = M::I::canonical_type_for_rc(from_reg.class());
2450 debug_assert_eq!(<M>::I::rc_for_type(&ty).unwrap().1, &[ty]);
2451
2452 let sp_off = self.get_spillslot_offset(to_slot);
2453 trace!("gen_spill: {from_reg:?} into slot {to_slot:?} at offset {sp_off}");
2454
2455 let from = StackAMode::Slot(sp_off);
2456 <M>::gen_store_stack(from, Reg::from(from_reg), ty)
2457 }
2458
2459 /// Generate a reload (fill).
2460 pub fn gen_reload(&self, to_reg: Writable<RealReg>, from_slot: SpillSlot) -> M::I {
2461 let ty = M::I::canonical_type_for_rc(to_reg.to_reg().class());
2462 debug_assert_eq!(<M>::I::rc_for_type(&ty).unwrap().1, &[ty]);
2463
2464 let sp_off = self.get_spillslot_offset(from_slot);
2465 trace!("gen_reload: {to_reg:?} from slot {from_slot:?} at offset {sp_off}");
2466
2467 let from = StackAMode::Slot(sp_off);
2468 <M>::gen_load_stack(from, to_reg.map(Reg::from), ty)
2469 }
2470
2471 /// Provide metadata to be emitted alongside machine code.
2472 ///
2473 /// This metadata describes the frame layout sufficiently to find
2474 /// stack slots, so that runtimes and unwinders can observe state
2475 /// set up by compiled code in stackslots allocated for that
2476 /// purpose.
2477 pub fn frame_slot_metadata(&self) -> MachBufferFrameLayout {
2478 let frame_to_fp_offset = self.sp_to_fp_offset();
2479 let mut stackslots = SecondaryMap::with_capacity(self.sized_stackslots.len());
2480 let storage_area_base = self.frame_layout().outgoing_args_size;
2481 for (slot, storage_area_offset) in &self.sized_stackslots {
2482 stackslots[slot] = MachBufferStackSlot {
2483 offset: storage_area_base.checked_add(*storage_area_offset).unwrap(),
2484 key: self.sized_stackslot_keys[slot],
2485 };
2486 }
2487 MachBufferFrameLayout {
2488 frame_to_fp_offset,
2489 stackslots,
2490 }
2491 }
2492}
2493
2494/// An input argument to a call instruction: the vreg that is used,
2495/// and the preg it is constrained to (per the ABI).
2496#[derive(Clone, Debug)]
2497pub struct CallArgPair {
2498 /// The virtual register to use for the argument.
2499 pub vreg: Reg,
2500 /// The real register into which the arg goes.
2501 pub preg: Reg,
2502}
2503
2504/// An output return value from a call instruction: the vreg that is
2505/// defined, and the preg or stack location it is constrained to (per
2506/// the ABI).
2507#[derive(Clone, Debug)]
2508pub struct CallRetPair {
2509 /// The virtual register to define from this return value.
2510 pub vreg: Writable<Reg>,
2511 /// The real register from which the return value is read.
2512 pub location: RetLocation,
2513}
2514
2515/// A location to load a return-value from after a call completes.
2516#[derive(Clone, Debug, PartialEq, Eq)]
2517pub enum RetLocation {
2518 /// A physical register.
2519 Reg(Reg, Type),
2520 /// A stack location, identified by a `StackAMode`.
2521 Stack(StackAMode, Type),
2522}
2523
2524pub type CallArgList = SmallVec<[CallArgPair; 8]>;
2525pub type CallRetList = SmallVec<[CallRetPair; 8]>;
2526
2527impl<T> CallInfo<T> {
2528 /// Emit loads for any stack-carried return values using the call
2529 /// info and allocations.
2530 pub fn emit_retval_loads<
2531 M: ABIMachineSpec,
2532 EmitFn: FnMut(M::I),
2533 IslandFn: Fn(u32) -> Option<M::I>,
2534 >(
2535 &self,
2536 stackslots_size: u32,
2537 mut emit: EmitFn,
2538 emit_island: IslandFn,
2539 ) {
2540 // Count stack-ret locations and emit an island to account for
2541 // this space usage.
2542 let mut space_needed = 0;
2543 for CallRetPair { location, .. } in &self.defs {
2544 if let RetLocation::Stack(..) = location {
2545 // Assume up to ten instructions, semi-arbitrarily:
2546 // load from stack, store to spillslot, codegen of
2547 // large offsets on RISC ISAs.
2548 space_needed += 10 * M::I::worst_case_size();
2549 }
2550 }
2551 if space_needed > 0 {
2552 if let Some(island_inst) = emit_island(space_needed) {
2553 emit(island_inst);
2554 }
2555 }
2556
2557 let temp = M::retval_temp_reg(self.callee_conv);
2558 // The temporary must be noted as clobbered unless there are
2559 // no returns (hence it isn't needed). The latter can only be
2560 // the case statically for an ABI when the ABI doesn't allow
2561 // any returns at all (e.g., preserve-all ABI).
2562 debug_assert!(
2563 self.defs.is_empty()
2564 || M::get_regs_clobbered_by_call(self.callee_conv, self.try_call_info.is_some())
2565 .contains(PReg::from(temp.to_reg().to_real_reg().unwrap()))
2566 );
2567
2568 for CallRetPair { vreg, location } in &self.defs {
2569 match location {
2570 RetLocation::Reg(preg, ..) => {
2571 // The temporary must not also be an actual return
2572 // value register.
2573 debug_assert!(*preg != temp.to_reg());
2574 }
2575 RetLocation::Stack(amode, ty) => {
2576 if let Some(spillslot) = vreg.to_reg().to_spillslot() {
2577 // `temp` is an integer register of machine word
2578 // width, but `ty` may be floating-point/vector,
2579 // which (i) may not be loadable directly into an
2580 // int reg, and (ii) may be wider than a machine
2581 // word. For simplicity, and because there are not
2582 // always easy choices for volatile float/vec regs
2583 // (see e.g. x86-64, where fastcall clobbers only
2584 // xmm0-xmm5, but tail uses xmm0-xmm7 for
2585 // returns), we use the integer temp register in
2586 // steps.
2587 let parts = (ty.bytes() + M::word_bytes() - 1) / M::word_bytes();
2588 let one_part_load_ty =
2589 Type::int_with_byte_size(M::word_bytes().min(ty.bytes()) as u16)
2590 .unwrap();
2591 for part in 0..parts {
2592 emit(M::gen_load_stack(
2593 amode.offset_by(part * M::word_bytes()),
2594 temp,
2595 one_part_load_ty,
2596 ));
2597 emit(M::gen_store_stack(
2598 StackAMode::Slot(
2599 i64::from(stackslots_size)
2600 + i64::from(M::word_bytes())
2601 * ((spillslot.index() as i64) + (part as i64)),
2602 ),
2603 temp.to_reg(),
2604 M::word_type(),
2605 ));
2606 }
2607 } else {
2608 assert_ne!(*vreg, temp);
2609 emit(M::gen_load_stack(*amode, *vreg, *ty));
2610 }
2611 }
2612 }
2613 }
2614 }
2615}
2616
2617impl TryCallInfo {
2618 pub(crate) fn exception_handlers(
2619 &self,
2620 layout: &FrameLayout,
2621 ) -> impl Iterator<Item = MachExceptionHandler> {
2622 self.exception_handlers.iter().map(|handler| match handler {
2623 TryCallHandler::Tag(tag, label) => MachExceptionHandler::Tag(*tag, *label),
2624 TryCallHandler::Default(label) => MachExceptionHandler::Default(*label),
2625 TryCallHandler::Context(reg) => {
2626 let loc = if let Some(spillslot) = reg.to_spillslot() {
2627 // The spillslot offset is relative to the "fixed
2628 // storage area", which comes after outgoing args.
2629 let offset = layout.spillslot_offset(spillslot) + i64::from(layout.outgoing_args_size);
2630 ExceptionContextLoc::SPOffset(u32::try_from(offset).expect("SP offset cannot be negative or larger than 4GiB"))
2631 } else if let Some(realreg) = reg.to_real_reg() {
2632 ExceptionContextLoc::GPR(realreg.hw_enc())
2633 } else {
2634 panic!("Virtual register present in try-call handler clause after register allocation");
2635 };
2636 MachExceptionHandler::Context(loc)
2637 }
2638 })
2639 }
2640
2641 pub(crate) fn pretty_print_dests(&self) -> String {
2642 self.exception_handlers
2643 .iter()
2644 .map(|handler| match handler {
2645 TryCallHandler::Tag(tag, label) => format!("{tag:?}: {label:?}"),
2646 TryCallHandler::Default(label) => format!("default: {label:?}"),
2647 TryCallHandler::Context(loc) => format!("context {loc:?}"),
2648 })
2649 .collect::<Vec<_>>()
2650 .join(", ")
2651 }
2652
2653 pub(crate) fn collect_operands(&mut self, collector: &mut impl OperandVisitor) {
2654 for handler in &mut self.exception_handlers {
2655 match handler {
2656 TryCallHandler::Context(ctx) => {
2657 collector.any_late_use(ctx);
2658 }
2659 TryCallHandler::Tag(_, _) | TryCallHandler::Default(_) => {}
2660 }
2661 }
2662 }
2663}
2664
2665#[cfg(test)]
2666mod tests {
2667 use super::SigData;
2668
2669 #[test]
2670 fn sig_data_size() {
2671 // The size of `SigData` is performance sensitive, so make sure
2672 // we don't regress it unintentionally.
2673 assert_eq!(core::mem::size_of::<SigData>(), 24);
2674 }
2675}