Skip to main content

rucc_codegen/
pipeline.rs

1//! One IR function to one machine function, which is every pass in this crate in order.
2//!
3//! Design: `spec/10-backend.md` section 10.1, which is where the order comes from.
4//!
5//! Each pass here is written and tested on its own and each is useful on its own, but there is
6//! exactly one order they run in and until now that order lived in the tests. A caller outside
7//! this crate would have had to know that splitting critical edges comes after lowering and
8//! before allocation, that the frame is worked out after allocation because the spill slots are
9//! the largest thing in it, and that the prologue is written after the frame. None of that is a
10//! decision a driver should be making, so it is written down once, here.
11//!
12//! # What comes out
13//!
14//! A function whose every register is physical, whose every offset into the frame is a constant,
15//! and whose blocks are in the order they run in with the jumps that order needs. That is the
16//! point at which a function is one an encoder could read, and there is nothing left in it that
17//! is not an instruction of the machine it was compiled for.
18//!
19//! # What is still missing from the middle
20//!
21//! The optimizing path, all of it. What runs here is `spec/10-backend.md` section 10.3's fast
22//! path: one rule per term, a linear scan, and a block order from the shape of the CFG rather
23//! than from block frequency. No scheduling, and the redundant moves a coalescer would take out
24//! are still in the output.
25
26use rucc_base::Interner;
27use rucc_cost::Goal;
28use rucc_ir as ir;
29use rucc_mir as mir;
30use rucc_regalloc::assign::Env;
31use rucc_target::{
32    BitInsts, BranchInsts, CallRegs, FlagInsts, FrameInsts, MachineInsts, PhysReg, RegFile,
33    ShortInsts, TargetInfo, TimingInsts, aarch64, x86_64,
34};
35use rucc_tuple::Arch;
36
37use crate::bits;
38use crate::choice;
39use crate::combine;
40use crate::compare;
41use crate::copies;
42use crate::coverage::Fired;
43use crate::elsewhere::Elsewhere;
44use crate::finish::{Convention, Padding, Probing, Protect, Tracing, finish};
45use crate::fold;
46use crate::frame::{self, Frame, Layout};
47use crate::kept;
48use crate::layout;
49use crate::lower::{self, Unsupported};
50use crate::lowering::{self, Lowerings};
51use crate::pressure::{Cost, Pressure};
52use crate::schedule;
53use crate::select::{self, Selector};
54use crate::shorten;
55use crate::slots::{self, Slots};
56use crate::split;
57use crate::weights;
58
59/// Everything about a machine that compiling a function for it needs.
60///
61/// The fields are different kinds of fact and they come from different places: where the
62/// convention puts things, what registers the machine has, which instructions build a frame,
63/// which instructions a branch becomes, and which registers the allocator may hand out. The last
64/// one is not a target fact on its own, because holding a register back as scratch is a decision
65/// about the allocator rather than about the machine, which is why it is built here rather than
66/// in [`rucc_target`].
67#[derive(Debug)]
68pub struct Machine {
69    /// Where the convention this function is compiled for puts things.
70    pub conv: &'static CallRegs,
71    /// The registers the machine has, which is what says how wide a spill slot of a class is.
72    pub file: RegFile,
73    /// The instructions that take a frame and give it back.
74    pub insts: &'static FrameInsts,
75    /// The instructions a branch becomes once the blocks are in an order.
76    pub branch: &'static BranchInsts,
77    /// How much of a register each of the machine's instructions reads and writes.
78    pub bits: &'static BitInsts,
79    /// What each of the machine's instructions leaves in the condition state.
80    pub flags: &'static FlagInsts,
81    /// What shape each of the machine's instructions is, which is what a pass proposing a new one
82    /// has its proposal held against.
83    pub shapes: &'static MachineInsts,
84    /// How long each of the machine's instructions takes, and what it takes it on.
85    pub timing: &'static TimingInsts,
86    /// Which of the machine's instructions have a shorter spelling of the same answer.
87    pub short: &'static ShortInsts,
88    /// What the selector asks of the machine, which is the rules and the instructions it writes
89    /// itself.
90    pub selector: &'static Selector,
91    /// What the allocator may hand out, and what it holds back.
92    pub env: Env,
93}
94
95/// The scratch registers held back from the allocator on x86-64.
96///
97/// Two, because a move on an edge may have to break a cycle and a spilled value has to be read
98/// into something, and those can want a register at the same instruction. Two is also what nearly
99/// every instruction wants, including the one that looks larger: an instruction that reads two
100/// spilled values and writes a third sends the answer back into a register an operand arrived in
101/// rather than asking for one of its own, and `rewrite` says why that is allowed.
102///
103/// It is not two because two was enough to start with and nobody looked again. There is no third
104/// to hold back. A scratch register has to be one the convention passes nothing in, since the
105/// rewriter puts moves in wherever it likes, and one the callee does not owe back, since the
106/// rewriter runs after the prologue has been decided and cannot ask for a register to be saved. On
107/// SysV that is `r10`, `r11` and `rax`, and `rax` is not one to take: it is the return value, so
108/// holding it back costs a move at every return in the program, which is a price paid everywhere
109/// for a shape that turns up almost nowhere.
110///
111/// An instruction that wants a third is the indexed store with its base, its index and its value
112/// all on the stack, which is tamnd/rucc#913. `rewrite` answers that one by borrowing a register
113/// and putting back what was in it, which costs two memory accesses at the instruction that wanted
114/// it and nothing anywhere else.
115pub(crate) const SCRATCH: [PhysReg; 2] = [x86_64::R10, x86_64::R11];
116
117/// The scratch registers held back from the allocator on AArch64. See [`Machine::aarch64`].
118pub(crate) const AARCH64_SCRATCH: [PhysReg; 2] = [aarch64::X16, aarch64::X17];
119
120/// How many of each class are held back.
121const SCRATCH_COUNT: usize = SCRATCH.len();
122
123/// The second register file's allocation order and the scratch registers taken out of it, which
124/// are the last two in the order that the convention does not preserve.
125fn held_back(conv: &CallRegs) -> (Vec<PhysReg>, Vec<PhysReg>) {
126    let free: Vec<PhysReg> =
127        conv.sse_order.iter().copied().filter(|&reg| !conv.preserves_sse(reg)).collect();
128    let at = free.len().saturating_sub(SCRATCH_COUNT);
129    let scratch: Vec<PhysReg> = free[at..].to_vec();
130    let order = conv.sse_order.iter().copied().filter(|reg| !scratch.contains(reg)).collect();
131    (order, scratch)
132}
133
134impl Machine {
135    /// The x86-64 machine under that convention.
136    ///
137    /// Both files are offered. A value the selector produces is in one or the other, which is
138    /// decided by its type: an integer and an address are general purpose and a `float` or a
139    /// `double` is in a vector register, and the allocator is given each file separately because
140    /// no move goes between them.
141    #[must_use]
142    pub fn x86_64(conv: &'static CallRegs) -> Self {
143        let order: Vec<PhysReg> =
144            conv.int_order.iter().copied().filter(|reg| !SCRATCH.contains(reg)).collect();
145        // The vector file wants its own two, for the same two jobs, and they have to be two the
146        // convention does not preserve: a scratch register is written by a move the rewriter puts
147        // in, which is after the prologue has already been decided, so one the callee owes back
148        // would be one nothing saved. That rules out the upper ten on Windows and nothing at all
149        // on SysV, and taking the last two that are left lands on `xmm14` and `xmm15` there and on
150        // `xmm4` and `xmm5` on Windows, neither of which any argument travels in.
151        let (sse_order, sse_scratch) = held_back(conv);
152        Self {
153            conv,
154            file: x86_64::REGS,
155            insts: &x86_64::FRAME,
156            branch: &x86_64::BRANCH,
157            bits: &x86_64::BITS,
158            flags: &x86_64::FLAGS,
159            shapes: &x86_64::MACHINE,
160            timing: &x86_64::TIMING,
161            short: &x86_64::SHORT,
162            selector: &select::x86_64::SELECTOR,
163            env: Env::new().with(x86_64::GPR, &order, &SCRATCH).with(
164                x86_64::XMM,
165                &sse_order,
166                &sse_scratch,
167            ),
168        }
169    }
170
171    /// The AArch64 machine under that convention.
172    ///
173    /// The scratch registers are `x16` and `x17`, which the convention already keeps out of the
174    /// allocation order because a linker's veneer may write them between a call and the function
175    /// it reaches. That is the property a scratch register wants: nothing lives in one across
176    /// anything the compiler did not write, so a move the rewriter puts in can have it. The vector
177    /// file's two are picked the way the x86 ones are, which lands on `v30` and `v31`.
178    ///
179    /// Nothing selects AArch64 instructions yet, so [`Machine::for_target`] does not return this.
180    #[must_use]
181    pub fn aarch64(conv: &'static CallRegs) -> Self {
182        let order: Vec<PhysReg> =
183            conv.int_order.iter().copied().filter(|reg| !AARCH64_SCRATCH.contains(reg)).collect();
184        let (fp_order, fp_scratch) = held_back(conv);
185        Self {
186            conv,
187            file: aarch64::REGS,
188            insts: &aarch64::FRAME,
189            branch: &aarch64::BRANCH,
190            bits: &aarch64::BITS,
191            flags: &aarch64::FLAGS,
192            shapes: &aarch64::MACHINE,
193            timing: &aarch64::TIMING,
194            short: &aarch64::SHORT,
195            selector: &select::aarch64::SELECTOR,
196            env: Env::new().with(aarch64::GPR, &order, &AARCH64_SCRATCH).with(
197                aarch64::FPR,
198                &fp_order,
199                &fp_scratch,
200            ),
201        }
202    }
203
204    /// The machine a target describes, or `None` when no backend in this crate covers it.
205    ///
206    /// [`TargetInfo`] already carries the convention, because the front end needs it to lay a
207    /// `va_list` out, so the only thing this decides is which architecture's frame instructions
208    /// and register file go with it. RISC-V is `None` until it has a rule file, and a caller that
209    /// gets one reports a target it cannot compile for rather than compiling wrongly.
210    #[must_use]
211    pub fn for_target(target: &TargetInfo) -> Option<Self> {
212        let conv = target.call_regs?;
213        match target.tuple.arch() {
214            Arch::X86_64 => Some(Self::x86_64(conv)),
215            Arch::Aarch64 => Some(Self::aarch64(conv)),
216            _ => None,
217        }
218    }
219}
220
221/// Whether every function calls a profiler on the way in, and where that call goes.
222///
223/// What `-pg` asks for, with `-mfentry` and `-mno-fentry` choosing between the last two. The choice
224/// has already been made against the target by the time this is built, which is why there is no
225/// answer here for a command line that named neither.
226#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
227pub enum Profile {
228    /// It does not, which is what nearly every command line asks for.
229    #[default]
230    No,
231    /// In front of the prologue, which is the hook a tracer can replace while the program runs.
232    Early,
233    /// Once the frame is taken, which is the hook that reads the frame pointer.
234    Late,
235}
236
237/// How much room every function opens with for something to be written over it later.
238///
239/// What `-fpatchable-function-entry=` asks for, as the two halves a prologue deals in rather than
240/// as the total and the part the flag is written in. The room can be on either side of the
241/// function's own label and the two sides are not the same thing: what is after the label is inside
242/// the function, which is what a patcher redirecting a call into it wants, and what is in front of
243/// it is outside, which is where a patcher that needs a whole instruction it can reach from the
244/// first one puts it.
245#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
246pub struct Room {
247    /// How many bytes go after the function's own label.
248    pub after: u32,
249    /// How many go in front of it.
250    pub before: u32,
251}
252
253impl Room {
254    /// Whether any room at all was asked for, which is what decides whether a function gets one.
255    ///
256    /// `=0` is a command line that asked for none, and gcc takes it and writes nothing, so the
257    /// question is about the numbers rather than about whether the flag was written.
258    #[must_use]
259    pub const fn any(self) -> bool {
260        self.after > 0 || self.before > 0
261    }
262}
263
264/// What the command line says, as opposed to what the machine says.
265///
266/// Most of it is about a frame, which is what this held to begin with, and the rest is passes being
267/// asked for or turned off by name. [`Flags::goal`] is neither: it is the one thing here that no
268/// flag names on its own and that every pass below selection may read.
269#[derive(Debug, Clone, Copy, PartialEq, Eq)]
270pub struct Flags {
271    /// Whether every function keeps a frame pointer, which `-fno-omit-frame-pointer` asks for.
272    pub frame_pointer: bool,
273    /// Whether the red zone may be used, which `-mno-red-zone` and every kernel turns off.
274    pub red_zone: bool,
275    /// Whether a frame is taken a page at a time, which `-fstack-clash-protection` asks for.
276    pub stack_clash: bool,
277    /// Whether every address an indirect branch may arrive at opens with a landing pad, which
278    /// `-fcf-protection=branch` asks for. That is every function, and every label of a function
279    /// whose address the program took.
280    pub landing: bool,
281    /// Whether every function calls a profiler on the way in, which `-pg` asks for.
282    pub profile: Profile,
283    /// How much room every function opens with for a patcher, which
284    /// `-fpatchable-function-entry=` asks for. See [`Room`].
285    pub patch: Room,
286    /// Whether the blocks are put in the order the weights say rather than in the order the
287    /// shape of the graph says, which `-freorder-blocks` asks for and every level above `-O0`
288    /// turns on. See [`crate::layout`].
289    pub reorder: bool,
290    /// Whether two locals that are never both wanted may be the same bytes, which
291    /// `-fstack-reuse=none` turns off and `-O0` does not ask for. Spill slots share whatever this
292    /// says, since a spill slot is not a variable and nothing can ask a debugger for one. See
293    /// [`crate::slots`].
294    pub reuse: bool,
295    /// Whether the instructions of a block are put in the order the machine finishes soonest,
296    /// which `-fschedule-insns2` asks for and every level from `-O2` turns on. See
297    /// [`crate::schedule`].
298    pub schedule: bool,
299    /// Whether the head of every hot loop is found, so that the loop can be padded to stay inside
300    /// one line, which `-falign-loops` asks for and no level turns on by itself yet. See
301    /// [`crate::layout::heads`].
302    pub align_loops: bool,
303    /// Whether the target's timing model is believed about the machine's units as well as about
304    /// its latencies, which `-Zcycle-accurate-model=` says and the model itself answers otherwise.
305    ///
306    /// `None` is a command line that did not say, which is nearly every one, and then the model's
307    /// own answer decides. It is here rather than only on the model because section 38.1 asks for
308    /// a way to say the model is better or worse than it claims without editing the model, and
309    /// because the measurement section 38.8 owes is the same corpus compiled both ways.
310    pub accurate: Option<bool>,
311    /// Whether the register allocator runs its own checks on a build that has assertions compiled
312    /// out, which `-Zverify-each` asks for. See [`rucc_regalloc::run`].
313    pub verify: bool,
314    /// Whether the level asked for small code or for fast code.
315    ///
316    /// The level itself lives in `rucc-session`, which is above this crate, so what arrives here is
317    /// the answer rather than the question. It is on the flags rather than on the [`Machine`]
318    /// because it is not a fact about a machine: the same machine compiles the same function both
319    /// ways, and which way is what the command line said.
320    ///
321    /// tamnd/rucc#741 is the issue about this not being here at all, and about `-Os` having been a
322    /// shorter list of middle end passes and nothing else. [`crate::shorten`] is the first pass
323    /// below selection to read it.
324    pub goal: Goal,
325}
326
327impl Default for Flags {
328    /// No frame pointer, the red zone allowed, the frame taken in one subtraction, no landing pad,
329    /// no profiling, no room for a patcher, the blocks in the order the graph's shape gives,
330    /// nothing in the frame sharing with anything, no scheduling, no loop padded to a boundary and
331    /// code that is meant to be fast rather than small, which is what a convention that has a red
332    /// zone says at `-O0` when nobody on the command line has said otherwise.
333    fn default() -> Self {
334        Self {
335            frame_pointer: false,
336            red_zone: true,
337            stack_clash: false,
338            landing: false,
339            profile: Profile::No,
340            patch: Room::default(),
341            reorder: false,
342            reuse: false,
343            schedule: false,
344            align_loops: false,
345            accurate: None,
346            verify: false,
347            goal: Goal::Speed,
348        }
349    }
350}
351
352/// Compiles one function, from the IR the middle end produced to machine instructions.
353///
354/// The function is taken by reference that can be written through, because the first pass is an
355/// IR to IR rewrite: a construct whose lowering is a new shape of control flow cannot be a rule,
356/// since a rule replaces a term with a term and has nowhere to put a block. So the IR that reaches
357/// selection is not quite the IR the middle end produced, and this is the only place that is true.
358/// `--emit=ir` prints before any of this runs.
359///
360/// `elsewhere` is the one thing here that is a fact about the module rather than about the
361/// function, and it is passed in rather than looked up because this only ever sees the one
362/// function. What it decides is how the address of a name is come by, which is the difference
363/// between an address this file can measure to and one only the linker knows.
364///
365/// # Errors
366///
367/// The first thing in it this cannot lower, which is what [`lower::func`] reports, and one thing
368/// after it that is about the shape of the function rather than about an instruction, which is a
369/// frame that grows while it runs in a function whose flags say no frame may. Everything else after
370/// lowering works on machine instructions that exist, so it either runs or it is a bug in this
371/// crate.
372pub fn compile(
373    source: &mut ir::Func,
374    names: &mut Interner,
375    machine: &Machine,
376    elsewhere: &Elsewhere,
377    flags: Flags,
378) -> Result<mir::Func, Unsupported> {
379    let (mut fired, mut pressure, mut lowerings) =
380        (Fired::new(), Pressure::new(), Lowerings::new());
381    compile_recording(
382        source,
383        names,
384        machine,
385        elsewhere,
386        flags,
387        &mut Recording { fired: &mut fired, pressure: &mut pressure, lowerings: &mut lowerings },
388    )
389}
390
391/// Somewhere to put what a compilation did along the way, for the flags that ask.
392///
393/// One of these rather than three parameters, because they are one thing: a caller either wants
394/// the measurements or does not, and a caller that does wants the same three to cover every
395/// function of every file on the command line.
396#[derive(Debug)]
397pub struct Recording<'a> {
398    /// Which lowering rules fired, for `-Zrule-coverage`.
399    pub fired: &'a mut Fired,
400    /// What the allocator had to put on the stack, for `-Zregister-pressure`.
401    pub pressure: &'a mut Pressure,
402    /// What the pre-selection lowering group did, for `-Zlowering`.
403    pub lowerings: &'a mut Lowerings,
404}
405
406/// The same compilation, with what it did along the way recorded.
407///
408/// Two functions rather than one that takes options, because a caller that does not want the
409/// numbers should not have to say so. What each field of the [`Recording`] is for is on the field,
410/// and all of them are added to rather than replaced, so a caller passes the same one for every
411/// function of a module and every module of a command line and gets the answer for all of them.
412///
413/// # Errors
414///
415/// The same as [`compile`]. A function that was refused contributes nothing to any of them, since
416/// a function that did not compile is not evidence about what a rule set or a frame would have
417/// done.
418pub fn compile_recording(
419    source: &mut ir::Func,
420    names: &mut Interner,
421    machine: &Machine,
422    elsewhere: &Elsewhere,
423    flags: Flags,
424    recording: &mut Recording<'_>,
425) -> Result<mir::Func, Unsupported> {
426    // Everything the machine has no rule for, rewritten into things it has, as one group rather
427    // than as a dozen lines here. What is in the group and what the order between its members is
428    // for are both in `crate::lowering`, which is where a new lowering is added.
429    let counting = recording.lowerings.wanted();
430    let ran = lowering::group(source, names, machine.conv, counting);
431    if counting {
432        let called = names.resolve(source.name).to_owned();
433        recording.lowerings.record(&called, ran);
434    }
435    // The function the program said it writes the whole of itself, which is what decides most of
436    // the frame below rather than being one more thing in it. Read here rather than beside the rest
437    // of the layout because the refusal a few lines down is the earliest thing that asks.
438    let naked = source.attrs.set.contains(ir::AttrSet::NAKED);
439    let lowered = lower::func(source, names, machine.selector, machine.conv, elsewhere)?;
440    recording.fired.merge(&lowered.fired);
441    let lower::Lowered { mut func, mut stack, blocks, .. } = lowered;
442    // Straight after selection, because this is the last moment the machine blocks and the IR
443    // blocks still stand one for one, and the pass that reads the numbers is the very last one
444    // there is. See `crate::weights`.
445    if flags.reorder {
446        weights::carry(source, &blocks, &mut func);
447    }
448    // The one thing a frame that grows while it runs cannot be asked for, which is a refusal rather
449    // than wrong code.
450    if let Some(inst) = stack.grown_at {
451        // And the one thing a naked function cannot be asked for either, from the other side of the
452        // same fact. A frame that grows is reached from a frame pointer the prologue establishes,
453        // and there is no prologue here, so the address the array hands out would be counted from a
454        // register holding whatever the caller left in it.
455        if naked {
456            return Err(Unsupported::Dynamic { inst, growing: lower::Growing::Naked });
457        }
458        // The lowering refuses a variable length array that asks for more alignment than a call
459        // leaves the stack pointer on. A fixed local asking for it in the same function is the same
460        // refusal arrived at from the other side: the prologue would force the alignment, and
461        // forcing it and moving the stack pointer afterwards are two frames that each want the one
462        // register that still reaches the rest of the frame. See `Growing` in [`crate::frame`].
463        if stack.locals.iter().any(|local| local.align > machine.conv.stack_align) {
464            return Err(Unsupported::Dynamic { inst, growing: lower::Growing::Aligned });
465        }
466    }
467
468    // Before the fold below, which is the order section 37.6 puts the two in. A widening this takes
469    // out is one whose readers are sent to its source, and one of those readers may be an address
470    // computation, so asking which bits are read first means the fold sees the addresses as they
471    // will be rather than as they were.
472    bits::dead(&mut func, machine.bits, machine.shapes, names);
473
474    // After selection, because the address instruction and the one that reads it are both machine
475    // instructions only once selection has written them, and before allocation, because what makes
476    // the pair safe to put together is that a virtual register is written once. The addresses into
477    // the frame and into the caller's argument area go through it like anything else, and the two
478    // lists `finish` reads are rewritten as they do, so an address that ends up inside its reader
479    // is still an address the frame layout knows to write an offset into.
480    // A constant added to an index goes into the displacement first, so an address that took one
481    // is handed on to its readers with it already inside.
482    fold::offsets(&mut func, machine.insts, machine.shapes, names);
483    let mut pending = fold::Pending {
484        addresses: &mut stack.addresses,
485        arguments: &mut stack.arguments,
486        dynamic: &mut stack.dynamic,
487    };
488    fold::addresses(&mut func, machine.insts, machine.shapes, names, &mut pending);
489
490    // After that fold rather than before it, because what this puts inside an arithmetic
491    // instruction is a load's addressing mode and a load whose address is still a `lea` in front of
492    // it has nothing in its own mode worth carrying. Before allocation for the reason the fold is:
493    // a virtual register is written once, which is the whole of why the value the load produced
494    // cannot have changed between the two instructions this joins.
495    // The run that reads a place, computes on it and writes it back goes first, because it is three
496    // instructions the selector wrote and taking the load out of the middle one first would leave
497    // the same run written a second way.
498    combine::stores(&mut func, machine.shapes, machine.flags, names, &mut pending);
499    combine::loads(&mut func, machine.shapes, names, &mut pending);
500
501    // Whether this function carries a canary is the front end's answer, because what
502    // `-fstack-protector` asks about is the kind of local a function has and the types are gone by
503    // here. What the machine does about it is this crate's answer, and a target with nowhere to
504    // keep the word a canary is copied from does nothing, which is what the driver refuses a
505    // command line over before any of this runs.
506    // Not in a naked function, whatever the command line asked of every function. The canary is a
507    // word the prologue copies into the frame and the check at the end reads back, so a function
508    // with neither has nowhere to put it and nowhere to read it from. gcc leaves one out too.
509    let protect = source.attrs.set.contains(ir::AttrSet::STACK_PROTECT) && !naked;
510    let guard = protect.then_some(machine.conv.guard.as_ref()).flatten();
511    // Nothing at all on a target with no hook to call, which is the same answer the protector gives
512    // on a target with nowhere to keep its word, and the driver refuses the command line over it
513    // before any of this runs.
514    let profile = match machine.conv.trace {
515        Some(_) => flags.profile,
516        None => Profile::No,
517    };
518    let base = stack.layout(Layout::new(machine.conv, machine.file));
519    let layout = Layout {
520        // The later hook reads the frame pointer to find out who called this function, so a
521        // function that calls it is given one whether or not anything else asked. A function that
522        // asked where its own frame is has the same claim on one, and for a plainer reason: the
523        // register is the answer.
524        //
525        // And not at all in a naked function, whatever any of that says. Establishing one is two
526        // instructions of a prologue there is none of, and a function that saves the machine state
527        // by hand is usually saving the frame pointer among it, which is what micropython's
528        // `nlr_push` does on its third line.
529        frame_pointer: !naked
530            && (flags.frame_pointer
531                || profile == Profile::Late
532                || stack.walks_frames
533                || stack.saves_place),
534        // And not in a naked function either, which is not about what the red zone costs but about
535        // what the refusal below has to be able to see. A local small enough to live below the
536        // stack pointer takes no bytes off it, so the frame comes out empty and a function that
537        // wanted somewhere to keep something would be told it asked for nothing. Taking the red
538        // zone away makes every local show up as bytes, and bytes are what gets refused.
539        red_zone: flags.red_zone && !naked,
540        protect: guard.is_some(),
541        naked,
542        // A protected function calls the one that does not come back, on the arm where the check
543        // failed, so it is not a leaf however few calls the program wrote in it. That is what
544        // takes the red zone away from it and what makes its frame leave the stack pointer where
545        // a call needs it. The later hook is a call in the same position and costs the same.
546        //
547        // The earlier one is not, and this is the one place the difference shows. It runs before
548        // the prologue has written anything, so the bytes below the stack pointer it uses are ones
549        // this function has not put anything in yet, and a leaf that keeps its locals down there
550        // stays a leaf. gcc leaves it alone too.
551        leaf: base.leaf && guard.is_none() && profile != Profile::Late,
552        ..base
553    };
554
555    // Before allocation as well, and asked here rather than where it is used because what it asks
556    // is whether anything but the branch reads the byte a comparison wrote. A virtual register is
557    // written once and a physical one is not, so after allocation that question no longer has an
558    // answer.
559    let fusable = layout::fusable(&func, machine.branch, names);
560    // The same question about the selects on a comparison's byte, asked here for the same reason.
561    let choosable = choice::fusable(&func, machine.branch, names);
562
563    // In front of the splitting below, because what it does is take the values off the edges out of
564    // a computed `goto` and the splitting has no answer for one of those: the block they leave ends
565    // in a jump already, so neither end of the edge is somewhere a move can go.
566    split::indirect(&mut func, machine.branch, machine.insts, names);
567
568    // And after it, because what it puts a pad at is the block an address names and the pass above
569    // is what settles which block that is. The pad the prologue opens with is written much later,
570    // with the rest of the prologue, since the address it answers for is the function's own.
571    //
572    // Nothing at all on a target with nothing that marks an address as one an indirect branch may
573    // arrive at, which is the same answer the stack protector gives on a target with nowhere to
574    // keep its word, and the driver refuses the command line over it before any of this runs.
575    let landing = flags.landing.then_some(machine.insts.landing).flatten();
576    split::pads(&mut func, machine.insts, landing, names);
577
578    // Before allocation, because an edge that carries values into a block arrived at more than
579    // one way, out of a block that leaves more than one way, has nowhere to put the moves those
580    // values turn into, and the allocator asserts rather than guessing.
581    split::critical(&mut func);
582
583    // Before allocation, because how far the address of a local gets is a question about values and
584    // a value is written once only until the allocator's rewrite has been through. What is done
585    // with the answer waits until afterwards, since the liveness it is read against is the
586    // allocator's. See [`crate::slots`].
587    //
588    // Only asked at all where the locals are allowed to share, since this is the whole of what says
589    // whether a local may. The spill slots are laid out either way and this says nothing about
590    // them.
591    let reach = flags
592        .reuse
593        .then(|| slots::reach(&func, &stack.addresses, stack.locals.len(), machine.insts, names));
594
595    // The instructions as they are now, for the locals the front end kept in values. The
596    // allocator's liveness is counted along this order and the rewrite is about to put spills,
597    // reloads and edge moves in among them, so the list has to be taken before it runs. Only in a
598    // function that named something, since a function that named nothing has no use for it. See
599    // [`crate::kept`].
600    //
601    // Or where a local the program declared may share its bytes, which is only where there is a
602    // `reach`, since a local that shares is in the frame over part of the function and the part is
603    // asked about the same way.
604    let line = (!func.named.is_empty() || (reach.is_some() && !stack.declared.is_empty()))
605        .then(|| kept::before(&func));
606
607    let called = names.resolve(func.name).to_owned();
608    let allocation = rucc_regalloc::run(&mut func, &machine.env, &called, flags.verify);
609    recording.pressure.record(&called, Cost::of(&allocation));
610
611    // After allocation, because the largest area in most frames is the spill slots and nothing
612    // knows how many of those there are until the allocator has finished running out of registers,
613    // and because a spill slot cannot be shared with a local until it is known there is one.
614    let widths = frame::widths(&layout, &allocation);
615    let share = Slots::share(&func, reach.as_ref(), &allocation, &stack.locals, &widths);
616    let layout = Layout { share: Some(&share), ..layout };
617    let frame = Frame::of(&func, &allocation, &layout);
618    // The one thing a naked function cannot be given. Everything else the attribute asks for is
619    // something left out, and leaving something out always works; bytes are the one thing the body
620    // may want that only a prologue provides. A local, a spilled value and the arguments of a call
621    // are the three ways to want them, and the answer to all three is the same sentence.
622    if naked && frame.size() > 0 {
623        return Err(Unsupported::Naked { bytes: frame.size() });
624    }
625
626    // Here because this is where the two halves of the answer are both in hand: which local is
627    // which declaration came down from selection, and where a local is was settled a line ago.
628    // Nothing further on could work it out, since the frame is not carried past this function and
629    // an offset in a finished instruction says nothing about what the bytes it reaches are for.
630    //
631    // Whatever the command line said about debugging information, because the list is one entry
632    // per local the program named and a function has tens of those at most. Asking the flags would
633    // cost more to thread down here than the list costs to build.
634    //
635    // A local that went in beside something else is left off, because its bytes are its own only
636    // where it is wanted and an answer good at every address would have a debugger print whatever
637    // took its place. It gets stretches instead, at the end with the locals kept in values.
638    func.locals = stack
639        .declared
640        .iter()
641        .filter(|&&(local, _)| share.shared(local).is_none())
642        .filter_map(|&(local, decl)| Some((decl, frame.from_frame_base(local)?)))
643        .collect();
644    let framed: Vec<(u32, i32, &[rucc_regalloc::live::Range])> = stack
645        .declared
646        .iter()
647        .filter_map(|&(local, decl)| {
648            Some((decl, frame.from_frame_base(local)?, share.shared(local)?))
649        })
650        .collect();
651    func.sharing = framed.iter().map(|&(decl, _, _)| decl).collect();
652
653    let scratch = machine.env.scratch(machine.conv.int_class);
654    let protect = guard.map(|guard| Protect {
655        guard,
656        branch: machine.branch,
657        scratch: [scratch[0], scratch[1]],
658    });
659    // A target with no instruction that touches a page without changing it does nothing about the
660    // flag, which is the same answer the protector gives on a target with nowhere to keep its word.
661    // Every target this crate has a back end for has one.
662    //
663    // Or where the platform reaches the pages of every frame whatever the command line said, which
664    // is Windows. The prologue there calls a routine rather than walking, but a frame that grows
665    // while it runs is walked in the body either way: the routine takes its size in a register the
666    // allocator hands out and destroys two more, which is answerable in a prologue and not in the
667    // middle of a function, and the walk needs nothing but the two registers already held back.
668    let probe = (flags.stack_clash || machine.conv.chkstk.is_some())
669        .then_some(machine.insts.probe.as_ref())
670        .flatten()
671        .map(|probe| Probing { probe, branch: machine.branch, scratch: [scratch[0], scratch[1]] });
672    let trace = machine.conv.trace.and_then(|trace| match profile {
673        Profile::No => None,
674        Profile::Early => Some(Tracing { name: trace.early, early: true }),
675        Profile::Late => Some(Tracing { name: trace.late, early: false }),
676    });
677    // And once more for the room a patcher was promised, which is a run of the shortest
678    // instruction that does nothing and so needs the target to have one. Nothing is written on a
679    // target that does not, rather than a run of something longer: the flag counts bytes, and a
680    // patcher writing over the room starts at its front and wants every byte in it to be a place
681    // it could have started at.
682    let pad = flags.patch.any().then_some(machine.insts.pad).flatten().map(|name| Padding {
683        name,
684        before: flags.patch.before,
685        after: flags.patch.after,
686    });
687    let convention = Convention {
688        protect,
689        probe,
690        landing,
691        trace,
692        pad,
693        ..Convention::new(machine.conv, machine.insts)
694    };
695    let moves = finish(&mut func, &allocation, &frame, &stack, convention, names);
696
697    // After the moves are written, because a spill and the reload of it are written by different
698    // decisions of the allocator and what stands between the two is settled by the function they
699    // both went into. Before the layout, because the layout is where the instruction sequence
700    // stops being something a pass may edit.
701    copies::clean(&mut func, &moves, machine.shapes, machine.insts, machine.conv, names);
702
703    // After the allocator's moves have been cleaned up, because a schedule chosen around a move
704    // that is about to be taken out is a schedule built around an instruction that is not in the
705    // output. Before the layout, because the layout is the freeze: it writes the jumps the block
706    // order needs and it puts a comparison and the branch that reads it together, and neither
707    // survives an instruction being moved in afterwards. That is section 38.6's placement, and the
708    // reason it is after allocation rather than before is in [`crate::schedule`].
709    if flags.schedule {
710        schedule::insts(
711            &mut func,
712            machine.timing,
713            machine.shapes,
714            machine.flags,
715            names,
716            flags.accurate.unwrap_or(machine.timing.accurate),
717            &fusable,
718        );
719    }
720
721    // Last, because everything before this finds the blocks a function returns from by looking
722    // for the ones that go nowhere, and after this a block that falls through goes nowhere too.
723    layout::blocks(&mut func, machine.branch, names, &fusable, flags.reorder);
724
725    // After the layout for the reason the branches wait for it: a select that reads what a
726    // comparison left is a pair with nothing allowed between, and nothing past here puts anything
727    // there. Before the compare pass, since the comparison this keeps is one that pass may find
728    // was already made.
729    choice::moves(&mut func, machine.branch, machine.flags, machine.shapes, names, &choosable);
730
731    // After the layout rather than before it, which is the whole of what makes it safe. What a
732    // comparison leaves for the instruction behind it to read is not a register and nothing may
733    // come between the two, and the layout is the other pass that writes such a pair. Running
734    // here means there is nothing left that could put an instruction in the middle of one.
735    compare::redundant(&mut func, machine.flags, machine.shapes, names);
736
737    // After that rather than before it, because a comparison it takes out is a write of the
738    // condition state that is gone with it, and this pass is asking which writes of that state are
739    // read. Running in front would see writes the output does not have and turn down rewrites that
740    // are allowed. Nothing here moves an instruction or changes a block, so being behind the
741    // layout's freeze costs it nothing.
742    shorten::shorter(&mut func, machine.short, machine.flags, machine.shapes, names, flags.goal);
743
744    // Once the blocks will not move again, since a head is a block a jump runs backwards to and
745    // which way a jump runs is the layout's answer. Nothing below adds or takes out a block.
746    if flags.align_loops {
747        func.heads = layout::heads(&func);
748    }
749
750    // Last of all, because a stretch is named by the instructions at either end of it and every
751    // pass above is free to take an instruction out or move one. The frame is wanted here as well
752    // as above, since a value the allocator spilled is in the frame over its stretch rather than in
753    // a register, and it is the same distance from the call frame address the locals were given.
754    func.kept = match line {
755        Some(line) => kept::of(&func, &line, &allocation, &frame, &framed),
756        None => Vec::new(),
757    };
758    Ok(func)
759}
760
761#[cfg(test)]
762mod tests {
763    use rucc_ir::{Builder, Flags as IrFlags, Func, Opcode, Restrict, Signature, Type};
764    use rucc_target::x86_64::{REGS, SYSV, WIN64};
765
766    use super::*;
767
768    /// A function of two integers, and the block to fill.
769    fn blank(params: &[Type]) -> (Interner, Func, ir::Block, Vec<ir::Value>) {
770        let mut names = Interner::new();
771        let mut func = Func::new(names.intern("f"), Signature::new());
772        let block = func.create_block();
773        let values = params.iter().map(|&ty| func.append_param(block, ty)).collect();
774        (names, func, block, values)
775    }
776
777    /// The AArch64 machine holds back the two registers a veneer may write and two vector
778    /// registers nothing is passed in, and hands out everything else the convention orders.
779    #[test]
780    fn the_aarch64_machine_holds_back_what_a_veneer_writes() {
781        use rucc_target::aarch64::{self, AAPCS64, FPR, GPR, v};
782        let machine = Machine::aarch64(&AAPCS64);
783        assert_eq!(machine.env.scratch(GPR), [aarch64::X16, aarch64::X17]);
784        assert_eq!(machine.env.scratch(FPR), [v(30), v(31)]);
785        assert_eq!(machine.env.order(GPR), AAPCS64.int_order);
786        assert_eq!(machine.env.order(FPR).len(), 30);
787        assert_eq!(machine.insts.prefix, "a64.");
788        assert_eq!(machine.timing.prefix, machine.shapes.prefix);
789    }
790
791    /// `int f(int a) { return g(a) + a; }` compiled for AArch64 and printed.
792    fn aarch64_call() -> String {
793        let i32 = Type::int(32);
794        let (mut names, mut source, block, args) = blank(&[i32]);
795        let sig = source.add_signature(Signature::new().with_params(&[i32]).with_returns(&[i32]));
796        let callee = names.intern("g");
797        let call = Builder::new(&mut source, block).call(callee, sig, &[args[0]]);
798        let got = source[call].first_result.expect("an integer comes back");
799        let mut build = Builder::new(&mut source, block);
800        let sum = build.binary(Opcode::Add, got, args[0], IrFlags::default());
801        build.ret(&[sum]);
802
803        let machine = Machine::aarch64(&aarch64::AAPCS64);
804        let out =
805            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
806                .expect("every instruction has a rule");
807        mir::print_func(&out, &names, &aarch64::REGS)
808    }
809
810    #[test]
811    fn an_aarch64_function_that_calls_keeps_its_return_address_in_a_frame_record() {
812        let text = aarch64_call();
813        let lines: Vec<&str> = text.lines().map(str::trim).collect();
814        let first = |what: &str| lines.iter().position(|line| line.contains(what));
815        // The call writes over x30, so it goes on the stack with x29 before anything else, and the
816        // frame pointer is pointed at the pair.
817        let record = first("a64.push_pair_64 $x29, $x30").unwrap_or_else(|| panic!("{text}"));
818        let pointed = first("$x29 = a64.mov_rr_64 $sp").unwrap_or_else(|| panic!("{text}"));
819        let call = first("a64.bl").unwrap_or_else(|| panic!("{text}"));
820        let back = first("a64.pop_pair_64").unwrap_or_else(|| panic!("{text}"));
821        let ret =
822            lines.iter().position(|&line| line == "a64.ret").unwrap_or_else(|| panic!("{text}"));
823        assert!(record < pointed && pointed < call && call < back && back < ret, "{text}");
824        // Every push moves the stack pointer by sixteen, so whatever the frame takes on top of them
825        // is a multiple of sixteen too, and nothing is taken for the word x86 would have owed.
826        for line in &lines {
827            if let Some(rest) = line.split("a64.sub_ri_64 $sp, ").nth(1) {
828                let size: u32 = rest.parse().unwrap_or_else(|_| panic!("{text}"));
829                assert_eq!(size % 16, 0, "{text}");
830            }
831        }
832    }
833
834    #[test]
835    fn an_aarch64_leaf_keeps_no_frame_record() {
836        let i32 = Type::int(32);
837        let (mut names, mut source, block, args) = blank(&[i32, i32]);
838        let mut build = Builder::new(&mut source, block);
839        let sum = build.binary(Opcode::Add, args[0], args[1], IrFlags::default());
840        build.ret(&[sum]);
841
842        let machine = Machine::aarch64(&aarch64::AAPCS64);
843        let out =
844            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
845                .expect("every instruction has a rule");
846        let text = mir::print_func(&out, &names, &aarch64::REGS);
847        assert!(!text.contains("push"), "{text}");
848        assert!(text.contains("a64.add_rr_32"), "{text}");
849    }
850
851    #[test]
852    fn a_function_comes_out_with_no_virtual_register_left_in_it() {
853        let i32 = Type::int(32);
854        let (mut names, mut source, block, args) = blank(&[i32, i32]);
855        let mut build = Builder::new(&mut source, block);
856        let sum = build.binary(Opcode::Add, args[0], args[1], IrFlags::default());
857        build.ret(&[sum]);
858
859        let machine = Machine::x86_64(&SYSV);
860        let out =
861            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
862                .expect("every instruction has a rule");
863
864        // `int f(int a, int b) { return a + b; }` end to end. A leaf that spills nothing needs no
865        // frame at all, so there is no prologue to see. The one move left is the one the machine's
866        // addition needs, since the sum is written into the register the left operand was read
867        // from and the return wants it in `rax`.
868        assert_eq!(
869            mir::print_func(&out, &names, &REGS),
870            "mfunc @f {\n\
871             block0:\n    \
872             $rdi($rdi) = x64.arg_val_32\n    \
873             $rsi($rsi) = x64.arg_val_32\n    \
874             $rdi(reuse 1) = x64.add_rr_32 $rdi, $rsi\n    \
875             $rax = x64.mov_rr_64 $rdi\n    \
876             x64.ret_val_32 $rax($rax)\n    \
877             x64.ret\n\
878             }\n"
879        );
880    }
881
882    #[test]
883    fn a_declared_local_comes_out_saying_how_far_below_the_call_frame_address_it_is() {
884        let i32 = Type::int(32);
885        let (mut names, mut source, block, args) = blank(&[i32]);
886        let mut build = Builder::new(&mut source, block);
887        let info = rucc_ir::MemInfo {
888            size: 4,
889            align: 4,
890            order: rucc_ir::MemOrder::NotAtomic,
891            tbaa: None,
892            owns: 0,
893            restrict: Restrict::NONE,
894        };
895        let mem = build.func().add_mem(info);
896        let slot = build.value(
897            ir::InstData { extra: ir::Extra::Mem(mem), ..ir::InstData::new(Opcode::Alloca) },
898            Type::PTR,
899        );
900        build.func().declare_mem(mem, 5);
901        build.store(args[0], slot, info, IrFlags::default());
902        let loaded = build.load(i32, slot, info, IrFlags::default());
903        build.ret(&[loaded]);
904
905        let machine = Machine::x86_64(&SYSV);
906        let out =
907            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
908                .expect("every instruction has a rule");
909
910        // `int f(int a) { int x = a; return x; }` with the address of `x` taken, so it is four
911        // bytes in the frame. A leaf this small lives in the red zone, so the stack pointer never
912        // moves. What is below it is a whole word, since everything a frame holds is counted in
913        // words whether or not it fills one, and the call frame address is one more word above the
914        // stack pointer for the return address the call pushed.
915        assert_eq!(out.locals, vec![(5, -16)]);
916    }
917
918    #[test]
919    fn a_local_kept_in_a_value_comes_out_saying_which_register_holds_it_and_over_what() {
920        let i32 = Type::int(32);
921        let (mut names, mut source, block, args) = blank(&[i32]);
922        let mut build = Builder::new(&mut source, block);
923        let sum = build.binary(Opcode::Add, args[0], args[0], IrFlags::default());
924        build.func().declare_value(sum, 5);
925        build.ret(&[sum]);
926
927        let machine = Machine::x86_64(&SYSV);
928        let out =
929            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
930                .expect("every instruction has a rule");
931
932        // `int f(int a) { int x = a + a; return x; }` with nothing taking the address of `x`, so
933        // it never reaches the frame and the only answer about it is a register. The sum is
934        // written by the addition and read by the move that puts it where the return wants it, so
935        // the stretch is one instruction long and it is the move rather than the addition.
936        assert_eq!(out.kept.len(), 1, "one stretch: {:?}", out.kept);
937        assert_eq!(out.kept[0].decl, 5);
938        assert!(matches!(out.kept[0].at, mir::Where::Reg { .. }), "a register: {:?}", out.kept[0]);
939        assert!(out.locals.is_empty(), "nothing in the frame: {:?}", out.locals);
940    }
941
942    /// What `-Zlowering` is built out of, and the reason it is worth a test here rather than only
943    /// in `crate::lowering`: the group has to be the thing this pipeline runs. A lowering added to
944    /// a line of this function instead of to `Step::GROUP` would still work and would still be
945    /// untested, and the record coming back with one entry per member is what catches it.
946    #[test]
947    fn every_member_of_the_lowering_group_is_run_by_the_compilation_and_says_what_it_did() {
948        let i32 = Type::int(32);
949        let (mut names, mut source, block, args) = blank(&[i32]);
950        let mut build = Builder::new(&mut source, block);
951        let swapped = build.unary(Opcode::Bswap, args[0], i32);
952        build.ret(&[swapped]);
953
954        let mut lowerings = Lowerings::asked(true);
955        compile_recording(
956            &mut source,
957            &mut names,
958            &Machine::x86_64(&SYSV),
959            &Elsewhere::default(),
960            Flags::default(),
961            &mut Recording {
962                fired: &mut Fired::new(),
963                pressure: &mut Pressure::new(),
964                lowerings: &mut lowerings,
965            },
966        )
967        .expect("every instruction has a rule");
968
969        assert_eq!(lowerings.functions(), 1);
970        let listing = lowerings.listing();
971        assert!(listing.contains("lowering f\n"), "{listing}");
972        for step in lowering::Step::GROUP {
973            assert!(listing.contains(step.name()), "{} did not run: {listing}", step.name());
974        }
975        // The byte reversal went through the group rather than reaching the selector, which has no
976        // rule for one.
977        assert!(listing.contains("bytes"), "{listing}");
978        assert!(!listing.contains("left 1"), "something the group answers for survived: {listing}");
979    }
980
981    /// What `-Zrule-coverage` is built out of: the rules a compilation fired, recorded as it went.
982    /// The second function adds to the first rather than replacing it, which is what makes one of
983    /// these files the answer for a whole command line rather than for whichever function was last.
984    #[test]
985    fn which_rules_lowered_a_function_is_something_the_compilation_can_be_asked_for() {
986        let i32 = Type::int(32);
987        let (mut names, mut source, block, args) = blank(&[i32, i32]);
988        let mut build = Builder::new(&mut source, block);
989        let sum = build.binary(Opcode::Add, args[0], args[1], IrFlags::default());
990        build.ret(&[sum]);
991
992        let machine = Machine::x86_64(&SYSV);
993        let mut fired = Fired::new();
994        compile_recording(
995            &mut source,
996            &mut names,
997            &machine,
998            &Elsewhere::default(),
999            Flags::default(),
1000            &mut Recording {
1001                fired: &mut fired,
1002                pressure: &mut Pressure::new(),
1003                lowerings: &mut Lowerings::asked(true),
1004            },
1005        )
1006        .expect("every instruction has a rule");
1007        let one = fired.count();
1008        assert!(one > 0, "an add and a return went through the table and nothing was recorded");
1009
1010        let listing = fired.listing(&select::x86_64::TABLE);
1011        assert_eq!(listing.lines().filter(|line| line.starts_with("fired ")).count(), one);
1012        assert!(
1013            listing.contains(&format!("{one} of ")),
1014            "{}",
1015            listing.lines().next().unwrap_or("")
1016        );
1017
1018        // The same rules again plus the ones a subtraction needs, into the same record.
1019        let (mut names, mut source, block, args) = blank(&[i32, i32]);
1020        let mut build = Builder::new(&mut source, block);
1021        let difference = build.binary(Opcode::Sub, args[0], args[1], IrFlags::default());
1022        build.ret(&[difference]);
1023        compile_recording(
1024            &mut source,
1025            &mut names,
1026            &machine,
1027            &Elsewhere::default(),
1028            Flags::default(),
1029            &mut Recording {
1030                fired: &mut fired,
1031                pressure: &mut Pressure::new(),
1032                lowerings: &mut Lowerings::asked(true),
1033            },
1034        )
1035        .expect("every instruction has a rule");
1036        assert!(fired.count() > one, "a subtraction is not an addition");
1037    }
1038
1039    #[test]
1040    fn a_function_that_calls_takes_a_frame_and_gives_it_back() {
1041        let i32 = Type::int(32);
1042        let (mut names, mut source, block, args) = blank(&[i32]);
1043        let sig = source.add_signature(Signature::new().with_params(&[i32]).with_returns(&[i32]));
1044        let callee = names.intern("g");
1045        let call = Builder::new(&mut source, block).call(callee, sig, &[args[0]]);
1046        let got = source[call].first_result.expect("an integer comes back");
1047        let mut build = Builder::new(&mut source, block);
1048        let sum = build.binary(Opcode::Add, got, args[0], IrFlags::default());
1049        build.ret(&[sum]);
1050
1051        let machine = Machine::x86_64(&SYSV);
1052        let out =
1053            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1054                .expect("every instruction has a rule");
1055
1056        // `int f(int a) { return g(a) + a; }`. Not a leaf, so the stack pointer moves and the
1057        // register the value that outlives the call went to is one the prologue saves.
1058        let text = mir::print_func(&out, &names, &REGS);
1059        assert!(text.contains("x64.push_64 $rbx"), "{text}");
1060        assert!(text.contains("$rbx = x64.pop_64"), "{text}");
1061        assert!(text.contains("x64.call $rdi($rdi), @g"), "{text}");
1062        assert!(!text.contains('%'), "{text}");
1063    }
1064
1065    #[test]
1066    fn the_other_convention_is_the_same_function_somewhere_else() {
1067        let i32 = Type::int(32);
1068        let (mut names, mut source, block, args) = blank(&[i32, i32]);
1069        let mut build = Builder::new(&mut source, block);
1070        let sum = build.binary(Opcode::Add, args[0], args[1], IrFlags::default());
1071        build.ret(&[sum]);
1072
1073        let machine = Machine::x86_64(&WIN64);
1074        let out =
1075            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1076                .expect("every instruction has a rule");
1077
1078        // The arguments arrive in `rcx` and `rdx` here rather than in `rdi` and `rsi`, which is
1079        // the whole of what changed, and it changed because the convention was asked.
1080        let text = mir::print_func(&out, &names, &REGS);
1081        assert!(text.contains("$rcx($rcx) = x64.arg_val_32"), "{text}");
1082        assert!(text.contains("$rdx($rdx) = x64.arg_val_32"), "{text}");
1083        assert!(!text.contains("$rdi"), "{text}");
1084    }
1085
1086    #[test]
1087    fn a_function_with_a_branch_in_it_goes_through_every_pass() {
1088        let i32 = Type::int(32);
1089        let (mut names, mut source, entry, args) = blank(&[i32, i32]);
1090        let then = source.create_block();
1091        let join = source.create_block();
1092        let got = source.append_param(join, i32);
1093        let mut build = Builder::new(&mut source, entry);
1094        let cond = build.icmp(rucc_ir::IntPred::Slt, args[0], args[1]);
1095        build.br_if(cond, then, &[], join, &[args[1]]);
1096        Builder::new(&mut source, then).jump(join, &[args[0]]);
1097        Builder::new(&mut source, join).ret(&[got]);
1098
1099        let machine = Machine::x86_64(&SYSV);
1100        let out =
1101            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1102                .expect("every instruction has a rule");
1103
1104        // The else arm is a critical edge carrying a value, so a block that nothing lowered is in
1105        // there, which is the pass between lowering and allocation doing its job. Without it the
1106        // allocator would have asserted rather than compiled this.
1107        assert_eq!(out.block_count(), 4);
1108
1109        // `int f(int a, int b) { return a < b ? a : b; }` end to end, and the last pass is what
1110        // this pins. The branch became a test and one jump, and it is the jump taken when the
1111        // condition failed, because the arm the condition is true for is the block laid out next
1112        // and a block falls into the block laid out next. The other arm is the empty block the
1113        // edge splitting left, which is where the move the edge carries ended up, and it falls
1114        // into the join as well. What is left is one jump in the whole function. Both arms write
1115        // the join's parameter straight into `rax`, because the return at the bottom insists on
1116        // that register and the moves the edges carry are free to name it.
1117        let text = mir::print_func(&out, &names, &REGS);
1118        assert_eq!(
1119            text,
1120            "mfunc @f {\n\
1121             block0:\n    \
1122             $rdi($rdi) = x64.arg_val_32\n    \
1123             $rsi($rsi) = x64.arg_val_32\n    \
1124             x64.cmp_rr_32 $rdi, $rsi\n    \
1125             x64.jcc_ge block2, block1\n\
1126             \nblock1:\n    \
1127             $rax = x64.mov_rr_64 $rdi\n    \
1128             x64.jmp block3\n\
1129             \nblock2:\n    \
1130             $rax = x64.mov_rr_64 $rsi, block3\n\
1131             \nblock3:\n    \
1132             x64.ret_val_32 $rax($rax)\n    \
1133             x64.ret\n\
1134             }\n"
1135        );
1136    }
1137
1138    /// A loop that swaps its two values round every time it goes, which is `gcd`, and which is
1139    /// the smallest program that caught two ways of losing a value. Both were found by running
1140    /// what came out rather than by reading it, and both are pinned here rather than only where
1141    /// they were fixed, because what is wrong with either of them is only visible in the whole
1142    /// function.
1143    #[test]
1144    fn a_loop_that_carries_its_values_round_keeps_all_of_them() {
1145        let i32 = Type::int(32);
1146        let (mut names, mut source, entry, args) = blank(&[i32, i32]);
1147        let head = source.create_block();
1148        let body = source.create_block();
1149        let exit = source.create_block();
1150        let left = source.append_param(head, i32);
1151        let right = source.append_param(head, i32);
1152        Builder::new(&mut source, entry).jump(head, &[args[0], args[1]]);
1153        let mut build = Builder::new(&mut source, head);
1154        let zero = build.iconst(i32, 0);
1155        let more = build.icmp(rucc_ir::IntPred::Ne, right, zero);
1156        build.br_if(more, body, &[], exit, &[left]);
1157        let mut build = Builder::new(&mut source, body);
1158        let rest = build.binary(Opcode::SRem, left, right, IrFlags::default());
1159        build.jump(head, &[right, rest]);
1160        let result = source.append_param(exit, i32);
1161        Builder::new(&mut source, exit).ret(&[result]);
1162
1163        let machine = Machine::x86_64(&SYSV);
1164        let out =
1165            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1166                .expect("every instruction has a rule");
1167
1168        // `int gcd(int a, int b) { while (b) { int t = a % b; a = b; b = t; } return a; }`. Two
1169        // things in here were wrong and each of them returned three from a program that gcc
1170        // returns forty two from.
1171        //
1172        // The first is in the entry block. The move the edge into the loop asks for writes `rsi`,
1173        // and the second argument has to be taken out of `rsi` before it does. An edit at the end
1174        // of a block used to go in front of the last instruction, on the reasoning that the last
1175        // instruction is the branch, and the block's jump is not an instruction until the layout
1176        // has run, so it went in front of the `arg_val` whose own move had not been made yet.
1177        //
1178        // The second is in the loop body. A division writes both a quotient and a remainder, and
1179        // only the remainder is wanted here, so the quotient is a value nothing reads. It used to
1180        // be given the same register as the remainder, because a value written early was live at
1181        // one point and that point was in front of where the remainder was written. The copy that
1182        // takes the quotient nowhere then landed on top of the remainder. The remainder is written
1183        // early as well now, which is a separate thing the target has to say and is why both
1184        // answers read `early` here: `rdx` is filled by the sign extension before the division
1185        // reads its divisor, so nothing else may be sitting in it at that point either.
1186        //
1187        // What asks whether the second argument is zero reads as a test rather than a comparison
1188        // because `crate::shorten` runs last and writes the shorter of the two, which asks the
1189        // machine the same thing and leaves the same condition state for the jump behind it.
1190        assert_eq!(
1191            mir::print_func(&out, &names, &REGS),
1192            "mfunc @f {\n\
1193             block0:\n    \
1194             $rdi($rdi) = x64.arg_val_32\n    \
1195             $rsi($rsi) = x64.arg_val_32\n    \
1196             $rcx = x64.mov_rr_64 $rdi, block1\n\
1197             \nblock1:\n    \
1198             x64.test_rr_32 $rsi\n    \
1199             x64.jcc_e block3, block2\n\
1200             \nblock2:\n    \
1201             $rax = x64.mov_rr_64 $rcx\n    \
1202             early $rdx($rdx), early $rax($rax) = x64.idiv_rem_32 $rax($rax), $rsi\n    \
1203             $rdi = x64.mov_rr_64 $rax\n    \
1204             $rcx = x64.mov_rr_64 $rsi\n    \
1205             $rsi = x64.mov_rr_64 $rdx\n    \
1206             x64.jmp block1\n\
1207             \nblock3:\n    \
1208             $rax = x64.mov_rr_64 $rcx\n    \
1209             x64.ret_val_32 $rax($rax)\n    \
1210             x64.ret\n\
1211             }\n"
1212        );
1213    }
1214
1215    /// `spec/10-backend.md` section 10.1 says `--emit=mir-final` round-trips, and a function with
1216    /// a branch in it is the one where that is worth checking: after the layout has run, where a
1217    /// jump goes is nowhere in the instruction, so the text has to carry it on the block and the
1218    /// parser has to put it back on the block it came off.
1219    #[test]
1220    fn a_function_that_has_been_laid_out_reads_back_as_the_same_function() {
1221        let i32 = Type::int(32);
1222        let (mut names, mut source, entry, args) = blank(&[i32, i32]);
1223        let then = source.create_block();
1224        let join = source.create_block();
1225        let got = source.append_param(join, i32);
1226        let mut build = Builder::new(&mut source, entry);
1227        let cond = build.icmp(rucc_ir::IntPred::Slt, args[0], args[1]);
1228        build.br_if(cond, then, &[], join, &[args[1]]);
1229        Builder::new(&mut source, then).jump(join, &[args[0]]);
1230        Builder::new(&mut source, join).ret(&[got]);
1231
1232        let machine = Machine::x86_64(&SYSV);
1233        let out =
1234            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1235                .expect("every instruction has a rule");
1236
1237        let text = mir::print_func(&out, &names, &REGS);
1238        let read = rucc_mir::parse(&text, &mut names, &REGS).expect("what the printer wrote");
1239        assert_eq!(mir::print(&read, &names, &REGS), text);
1240    }
1241
1242    #[test]
1243    fn a_function_this_cannot_lower_is_reported_rather_than_compiled() {
1244        let f80 = Type::float(rucc_ir::Float::F80);
1245        let (mut names, mut source, block, args) = blank(&[f80, Type::int(64)]);
1246        Builder::new(&mut source, block).ret(&args);
1247
1248        // One of these comes back on the x87 stack and a pair comes back in a pair of registers,
1249        // and there is no pair with that stack in it. So this is refused rather than lowered, and
1250        // it is the convention that refuses it rather than anything about the instructions.
1251        let machine = Machine::x86_64(&SYSV);
1252        let failed =
1253            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1254                .expect_err("a long double cannot come back beside another value");
1255        assert_eq!(failed.to_string(), "what this function gives back is on the x87 stack");
1256    }
1257
1258    /// A `long double` in and a `long double` out, which is the whole of what the convention says
1259    /// about the type and is two different answers rather than one.
1260    ///
1261    /// It arrives in the caller's argument area, so what the parameter is is the address of the
1262    /// bytes and the function reads them where they are. It goes back on the x87 stack, so the
1263    /// return is an `fld` and nothing else, and the value is still on that stack when the function
1264    /// returns, which is the one time anything here leaves it that way.
1265    ///
1266    /// The addresses are gone from the instruction listing, which is [`crate::fold`]: an argument's
1267    /// address is a `lea` off the stack pointer and the `fld` that reads it has room for that
1268    /// address itself, so the offset the frame layout works out is written into the `fld`.
1269    #[test]
1270    fn a_long_double_arrives_in_memory_and_goes_back_on_the_x87_stack() {
1271        let f80 = Type::float(rucc_ir::Float::F80);
1272        let (mut names, mut source, block, args) = blank(&[f80, f80]);
1273        let mut build = Builder::new(&mut source, block);
1274        let sum = build.binary(Opcode::FAdd, args[0], args[1], IrFlags::default());
1275        build.ret(&[sum]);
1276
1277        let machine = Machine::x86_64(&SYSV);
1278        let out =
1279            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1280                .expect("every instruction has a rule");
1281
1282        let text = mir::print_func(&out, &names, &REGS);
1283        // The two parameters, sixteen bytes apart, read out of the caller's frame rather than out
1284        // of a register, and the answer left on the stack by the last instruction in the function.
1285        assert!(text.contains("x64.fld_t [$rsp + 32]"), "{text}");
1286        assert!(text.contains("x64.fld_t [$rsp + 48]"), "{text}");
1287        assert!(!text.contains("x64.lea_64"), "an address every reader took is gone: {text}");
1288        assert!(!text.contains("x64.ret_val"), "nothing comes back in a register: {text}");
1289        // What comes after the `fld` is the epilogue, which gives the frame back and touches
1290        // nothing in the unit, so the value is where the caller looks for it when the `ret` runs.
1291        let end: Vec<&str> = text.lines().rev().skip(1).take(3).map(str::trim).collect();
1292        assert_eq!(end, ["x64.ret", "$rsp = x64.add_ri_64 $rsp, 24", "x64.fld_t [$rsp]"], "{text}");
1293    }
1294
1295    /// The whole of the second register class, end to end: two floats arrive in vector registers,
1296    /// the arithmetic happens in one, and the answer goes back in the register the convention
1297    /// names. Nothing here touches the general purpose file, which is the point.
1298    #[test]
1299    fn a_float_is_added_in_the_register_file_it_arrives_in() {
1300        let f32 = Type::float(rucc_ir::Float::F32);
1301        let (mut names, mut source, block, args) = blank(&[f32, f32]);
1302        let mut build = Builder::new(&mut source, block);
1303        let sum = build.binary(Opcode::FAdd, args[0], args[1], ir::Flags::default());
1304        build.ret(&[sum]);
1305
1306        let machine = Machine::x86_64(&SYSV);
1307        let out =
1308            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1309                .expect("every instruction has a rule");
1310
1311        let text = mir::print_func(&out, &names, &REGS);
1312        assert!(text.contains("x64.addss_rr"), "{text}");
1313        assert!(text.contains("$xmm0"), "{text}");
1314        assert!(!text.contains("$rax"), "{text}");
1315    }
1316
1317    /// A float moved between a register and memory, which is the instruction that decides which
1318    /// file the value is in and is a different one from the `mov` that moves the same four bytes.
1319    #[test]
1320    fn a_float_read_from_memory_and_written_back_uses_the_scalar_moves() {
1321        let f64 = Type::float(rucc_ir::Float::F64);
1322        let (mut names, mut source, block, args) = blank(&[Type::PTR, f64]);
1323        let mut build = Builder::new(&mut source, block);
1324        let info = rucc_ir::MemInfo {
1325            size: 8,
1326            align: 8,
1327            order: rucc_ir::MemOrder::NotAtomic,
1328            tbaa: None,
1329            owns: 0,
1330            restrict: Restrict::NONE,
1331        };
1332        let read = build.load(f64, args[0], info, ir::Flags::default());
1333        let sum = build.binary(Opcode::FAdd, read, args[1], ir::Flags::default());
1334        build.store(sum, args[0], info, ir::Flags::default());
1335        build.ret(&[sum]);
1336
1337        let machine = Machine::x86_64(&SYSV);
1338        let out =
1339            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1340                .expect("every instruction has a rule");
1341
1342        let text = mir::print_func(&out, &names, &REGS);
1343        assert!(text.contains("x64.movsd_rm"), "{text}");
1344        assert!(text.contains("x64.movsd_mr"), "{text}");
1345        // Not the aligned whole register move, which is what a spill uses and is the one
1346        // instruction here that would read and write more than the program asked for.
1347        assert!(!text.contains("x64.movaps_rm"), "{text}");
1348        assert!(!text.contains("x64.movaps_mr"), "{text}");
1349    }
1350
1351    /// The same journey at the format the machine only moves, which is the whole of what it can do
1352    /// with one: in from memory, back out to memory, in and out of a register, and back to the
1353    /// caller.
1354    ///
1355    /// No arithmetic, because there is no instruction for any and every one of them is a call to
1356    /// the runtime. What this says is that the value gets where a call would need it to be.
1357    #[test]
1358    fn a_quad_float_read_from_memory_and_written_back_uses_the_whole_register_move() {
1359        let quad = Type::float(rucc_ir::Float::F128);
1360        let (mut names, mut source, block, args) = blank(&[Type::PTR, quad]);
1361        let mut build = Builder::new(&mut source, block);
1362        let info = rucc_ir::MemInfo {
1363            size: 16,
1364            align: 16,
1365            order: rucc_ir::MemOrder::NotAtomic,
1366            tbaa: None,
1367            owns: 0,
1368            restrict: Restrict::NONE,
1369        };
1370        let read = build.load(quad, args[0], info, ir::Flags::default());
1371        build.store(args[1], args[0], info, ir::Flags::default());
1372        build.ret(&[read]);
1373
1374        let machine = Machine::x86_64(&SYSV);
1375        let out =
1376            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1377                .expect("every instruction has a rule");
1378
1379        let text = mir::print_func(&out, &names, &REGS);
1380        assert!(text.contains("x64.movaps_rm"), "{text}");
1381        assert!(text.contains("x64.movaps_mr"), "{text}");
1382        assert!(text.contains("x64.arg_val_f128"), "{text}");
1383        assert!(text.contains("x64.ret_val_f128"), "{text}");
1384        // In the vector file and not the general purpose one, which is where the two eightbytes
1385        // of this value would have gone if it had been classified as a pair of integers.
1386        assert!(text.contains("$xmm0"), "{text}");
1387        assert!(!text.contains("gpr($rax)"), "{text}");
1388    }
1389
1390    /// Both conversions between an unsigned word and a `long double`, all the way to instructions.
1391    ///
1392    /// What the rewrite writes and what the x87 group in [`crate::lower`] has are two lists put
1393    /// together in two different files, and this is where they meet. The rewrite is free to write
1394    /// any instruction it likes at any width, and at this width almost none of them can be
1395    /// lowered, so a correction written the way the narrower ones are written would pass its own
1396    /// tests next door and fail here.
1397    #[test]
1398    fn an_unsigned_word_and_a_long_double_convert_into_each_other() {
1399        let f80 = Type::float(rucc_ir::Float::F80);
1400        let (mut names, mut source, block, args) = blank(&[Type::PTR, Type::int(64)]);
1401        let mut build = Builder::new(&mut source, block);
1402        let info = rucc_ir::MemInfo {
1403            size: 16,
1404            align: 16,
1405            order: rucc_ir::MemOrder::NotAtomic,
1406            tbaa: None,
1407            owns: 0,
1408            restrict: Restrict::NONE,
1409        };
1410        let wide = build.unary(Opcode::UIToFP, args[1], f80);
1411        build.store(wide, args[0], info, ir::Flags::default());
1412        let read = build.load(f80, args[0], info, ir::Flags::default());
1413        let back = build.unary(Opcode::FPToUI, read, Type::int(64));
1414        build.ret(&[back]);
1415
1416        let machine = Machine::x86_64(&SYSV);
1417        let out =
1418            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1419                .expect("every instruction has a rule");
1420
1421        let text = mir::print_func(&out, &names, &REGS);
1422        // The signed conversions in both directions, the constants that correct them, and the
1423        // multiply that takes a correction or leaves it. Nothing here reaches a wide register.
1424        assert!(text.contains("x64.fild_ll"), "the integer goes in as a signed one: {text}");
1425        assert!(text.contains("x64.fistp_ll"), "and comes back out as one: {text}");
1426        assert!(text.contains("x64.fmul_p"), "the correction is taken or not: {text}");
1427        assert!(text.contains("x64.fadd_p"), "and applied one way: {text}");
1428        assert!(text.contains("x64.fsubr_p"), "and the other: {text}");
1429        assert!(!text.contains("xmm"), "no part of this is in a vector register: {text}");
1430    }
1431
1432    /// A value carried from one register file to the other, which is what a conversion is. The
1433    /// instruction reads one file and writes the other, and the allocator has to know that: a
1434    /// conversion whose operands were both said to be in one file would put the answer in a
1435    /// register the next instruction cannot reach.
1436    #[test]
1437    fn a_conversion_carries_the_value_into_the_other_register_file() {
1438        let f64 = Type::float(rucc_ir::Float::F64);
1439        let (mut names, mut source, block, args) = blank(&[f64]);
1440        let mut build = Builder::new(&mut source, block);
1441        let whole = build.unary(Opcode::FPToSI, args[0], Type::int(32));
1442        let back = build.unary(Opcode::SIToFP, whole, f64);
1443        build.ret(&[back]);
1444
1445        let machine = Machine::x86_64(&SYSV);
1446        let out =
1447            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1448                .expect("every instruction has a rule");
1449
1450        // The conversion that cuts towards zero rather than the one that rounds, which is what C
1451        // means by the cast, and the argument and the answer in the register the convention names.
1452        let text = mir::print_func(&out, &names, &REGS);
1453        assert!(text.contains("x64.cvttsd2si_32"), "{text}");
1454        assert!(text.contains("x64.cvtsi2sd_32"), "{text}");
1455        assert!(text.contains("$xmm0"), "{text}");
1456    }
1457
1458    /// The other way of putting a float and a number together, which keeps every bit rather than
1459    /// the value and is what a program reading the bits of a `double` asks for.
1460    #[test]
1461    fn a_bitcast_between_the_files_is_the_move_that_changes_no_bit() {
1462        let f64 = Type::float(rucc_ir::Float::F64);
1463        let (mut names, mut source, block, args) = blank(&[f64]);
1464        let mut build = Builder::new(&mut source, block);
1465        let bits = build.unary(Opcode::Bitcast, args[0], Type::int(64));
1466        build.ret(&[bits]);
1467
1468        let machine = Machine::x86_64(&SYSV);
1469        let out =
1470            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1471                .expect("every instruction has a rule");
1472
1473        let text = mir::print_func(&out, &names, &REGS);
1474        assert!(text.contains("x64.movq_from_xmm"), "{text}");
1475        assert!(!text.contains("cvt"), "{text}");
1476    }
1477
1478    /// A comparison whose answer the machine has a condition for, which is most of them.
1479    #[test]
1480    fn a_float_comparison_is_the_compare_and_the_byte_a_condition_sets() {
1481        let f64 = Type::float(rucc_ir::Float::F64);
1482        let (mut names, mut source, block, args) = blank(&[f64, f64]);
1483        let mut build = Builder::new(&mut source, block);
1484        let less = build.fcmp(rucc_ir::FloatPred::Olt, args[0], args[1], ir::Flags::default());
1485        let wide = build.unary(Opcode::ZExt, less, Type::int(32));
1486        build.ret(&[wide]);
1487
1488        let machine = Machine::x86_64(&SYSV);
1489        let out =
1490            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1491                .expect("every instruction has a rule");
1492
1493        // Less than is greater than with the operands the other way round, and the machine has no
1494        // condition for the first, so the rule that fires is the one that swaps them.
1495        let text = mir::print_func(&out, &names, &REGS);
1496        assert!(text.contains("x64.ucomisd_set_a"), "{text}");
1497    }
1498
1499    /// The two comparisons that are not one condition. An ordered equality is the flag that means
1500    /// equal or unordered and the flag that says it was ordered, so the instruction writes a
1501    /// second byte and reads it back, and what this is about is that the second byte gets a
1502    /// register of its own rather than the one the answer is in.
1503    #[test]
1504    fn an_equality_between_floats_gets_a_register_for_the_byte_it_needs_twice() {
1505        let f64 = Type::float(rucc_ir::Float::F64);
1506        let (mut names, mut source, block, args) = blank(&[f64, f64]);
1507        let mut build = Builder::new(&mut source, block);
1508        let same = build.fcmp(rucc_ir::FloatPred::Oeq, args[0], args[1], ir::Flags::default());
1509        let wide = build.unary(Opcode::ZExt, same, Type::int(32));
1510        build.ret(&[wide]);
1511
1512        let machine = Machine::x86_64(&SYSV);
1513        let out =
1514            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1515                .expect("every instruction has a rule");
1516
1517        let text = mir::print_func(&out, &names, &REGS);
1518        let line = text
1519            .lines()
1520            .find(|line| line.contains("x64.ucomisd_set_e_and_np"))
1521            .expect("the rule for an ordered equality fired");
1522        let written: Vec<&str> = line
1523            .split_once('=')
1524            .expect("the instruction writes something")
1525            .0
1526            .split(',')
1527            .map(str::trim)
1528            .collect();
1529        assert_eq!(written.len(), 2, "{line}");
1530        assert_ne!(written[0], written[1], "{line}");
1531    }
1532
1533    /// A float literal, which is the last float thing a C program writes that had no lowering.
1534    /// The rewrite that puts it in reach is in `expand`, and what this is about is that the two
1535    /// halves meet: the constant is spelled in a general purpose register and moved across.
1536    #[test]
1537    fn a_float_constant_is_the_bits_in_a_register_and_the_move_that_carries_them_over() {
1538        let f64 = Type::float(rucc_ir::Float::F64);
1539        let (mut names, mut source, block, _) = blank(&[]);
1540        let mut build = Builder::new(&mut source, block);
1541        let half = build.fconst(f64, 0x3fe0_0000_0000_0000);
1542        build.ret(&[half]);
1543
1544        let machine = Machine::x86_64(&SYSV);
1545        let out =
1546            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1547                .expect("every instruction has a rule");
1548
1549        let text = mir::print_func(&out, &names, &REGS);
1550        assert!(text.contains("x64.mov_ri_64"), "{text}");
1551        assert!(text.contains("x64.movq_to_xmm"), "{text}");
1552    }
1553
1554    /// A negation, which is the sign bit flipped and nothing else touched, so what the machine
1555    /// does is an exclusive or in a general purpose register rather than any float instruction.
1556    #[test]
1557    fn a_negation_is_the_sign_bit_flipped_and_no_float_instruction_at_all() {
1558        let f64 = Type::float(rucc_ir::Float::F64);
1559        let (mut names, mut source, block, args) = blank(&[f64]);
1560        let mut build = Builder::new(&mut source, block);
1561        let less = build.unary(Opcode::FNeg, args[0], f64);
1562        build.ret(&[less]);
1563
1564        let machine = Machine::x86_64(&SYSV);
1565        let out =
1566            compile(&mut source, &mut names, &machine, &Elsewhere::default(), Flags::default())
1567                .expect("every instruction has a rule");
1568
1569        let text = mir::print_func(&out, &names, &REGS);
1570        assert!(text.contains("x64.xor_rr_64"), "{text}");
1571        assert!(!text.contains("sub"), "a negation is not a subtraction: {text}");
1572    }
1573
1574    #[test]
1575    fn the_flags_reach_the_frame() {
1576        let i32 = Type::int(32);
1577        let (mut names, mut source, block, args) = blank(&[i32]);
1578        Builder::new(&mut source, block).ret(&[args[0]]);
1579
1580        let machine = Machine::x86_64(&SYSV);
1581        let flags = Flags { frame_pointer: true, profile: Profile::No, ..Flags::default() };
1582        let out = compile(&mut source, &mut names, &machine, &Elsewhere::default(), flags)
1583            .expect("every instruction has a rule");
1584
1585        // A function that keeps a frame pointer keeps it whether it needed one or not, which is
1586        // what `-fno-omit-frame-pointer` is for and is the only thing this test is about.
1587        let text = mir::print_func(&out, &names, &REGS);
1588        assert!(text.contains("x64.push_64 $rbp"), "{text}");
1589        assert!(text.contains("$rbp = x64.mov_rr_64 $rsp"), "{text}");
1590    }
1591
1592    #[test]
1593    fn a_target_says_which_machine_it_is_and_which_convention_it_uses() {
1594        let triple = |text: &str| text.parse::<rucc_target::Triple>().expect("a triple");
1595        let info = TargetInfo::new(triple("x86_64-unknown-linux-gnu"));
1596        let machine = Machine::for_target(&info).expect("x86-64 is the target this crate covers");
1597        assert!(std::ptr::eq(machine.conv, &SYSV));
1598
1599        let info = TargetInfo::new(triple("x86_64-pc-windows-msvc"));
1600        let machine = Machine::for_target(&info).expect("x86-64 is the target this crate covers");
1601        assert!(std::ptr::eq(machine.conv, &WIN64));
1602
1603        // The AArch64 machine, with its own selector, so nothing compiles x86-64 instructions for
1604        // an AArch64 program.
1605        let info = TargetInfo::new(triple("aarch64-unknown-linux-gnu"));
1606        let machine = Machine::for_target(&info).expect("aarch64 has a back end");
1607        assert!(std::ptr::eq(machine.conv, &aarch64::AAPCS64));
1608        assert!(std::ptr::eq(machine.selector, &select::aarch64::SELECTOR));
1609
1610        // Not a target this crate has a back end for, and saying so is the whole point.
1611        let info = TargetInfo::new(triple("riscv64-unknown-linux-gnu"));
1612        assert!(Machine::for_target(&info).is_none());
1613    }
1614}