Skip to main content

rucc_codegen/
split.rs

1//! Splitting critical edges, so that every edge that carries values has somewhere to put them.
2//!
3//! Design: `spec/10-backend.md` section 10.4.
4//!
5//! An edge carries values when the block it goes to takes parameters, and giving a parameter its
6//! value is a move. The move has to happen on the edge and not before it or after it, because
7//! before it is a block that goes somewhere else too and after it is a block that is arrived at
8//! from somewhere else too, and in either case the move would run on a path it was not written
9//! for. An edge out of a block with one successor can put its moves at the end of that block,
10//! since every path through it takes the edge. An edge into a block with one predecessor can put
11//! them at the start of that block, for the same reason the other way round. An edge that is
12//! neither, which is what a critical edge is, has neither place, and the allocator says so:
13//! `rucc_regalloc` asserts that it never sees one.
14//!
15//! So one is turned into two. A block with nothing in it goes on the edge, the arguments move on
16//! to the second half, and both halves are now uncritical: the first goes to a block with one
17//! predecessor and the second leaves a block with one successor. Which of the two the moves end
18//! up in is the allocator's answer and not this one's, and either is correct.
19//!
20//! # What it leaves behind
21//!
22//! An empty block, which is a jump to the next thing unless the layout puts it where it falls
23//! through. That is a cost, and it is why an edge with nothing to carry is left alone: there are
24//! no moves to find a place for, so splitting it would buy a jump and nothing else.
25//!
26//! # The other edge with nowhere to put a move
27//!
28//! A computed `goto` leaves its block through a register, and the moves an edge out of it carries
29//! would have to be written somewhere the jump has already gone past. So there is a second pass
30//! here, [`indirect`], which takes the values off those edges and puts them in a block of their
31//! own in front of each label. It runs first, and what it leaves behind is edges the splitting
32//! below then has nothing to do about.
33//!
34//! [`pads`] is here for the same reason and not for a reason of its own: the blocks those labels
35//! begin at are addresses an indirect branch arrives at, and a machine that checks the forward edge
36//! wants a landing pad at every one of them. Which block an address names is settled by the pass
37//! above, so the pad is written after it and not where the prologue's own pad is written.
38
39use std::collections::HashMap;
40
41use rucc_base::Interner;
42use rucc_mir as mir;
43use rucc_target::{BranchInsts, FrameInsts};
44
45/// Splits every critical edge that carries values, and gives back how many it split.
46///
47/// Run after lowering and before allocation. Running it twice is running it once, because the
48/// blocks it adds have one successor each and are never the source of a critical edge.
49pub fn critical(func: &mut mir::Func) -> usize {
50    let preds = preds(func);
51    let blocks: Vec<mir::Block> = func.blocks().collect();
52    let mut split = 0;
53    for block in blocks {
54        if func[block].succs.len() < 2 {
55            continue;
56        }
57        for index in 0..func[block].succs.len() {
58            let call = func[block].succs[index].clone();
59            if call.args.is_empty() || preds[call.block.index()] < 2 {
60                continue;
61            }
62            // The new block is at the end of the layout, which is where a block that is a jump
63            // and nothing else does the least harm before the layout pass has an opinion.
64            //
65            // It runs exactly as often as the edge it sits on is taken, and both halves of that
66            // edge are now that edge, which is why the weight is copied onto all three rather
67            // than left at what a block nobody told anything runs. A block on a cold edge that
68            // claimed to run once per call would be one the layout put in the middle of the hot
69            // path.
70            let weight = call.weight;
71            let half = func.create_block();
72            func.set_weight(half, weight);
73            *func.succs_mut(half) = vec![call];
74            func.succs_mut(block)[index] = mir::BlockCall::to(half).taken(weight);
75            split += 1;
76        }
77    }
78    split
79}
80
81/// Takes the values off every edge out of a computed `goto`, and gives back how many blocks it
82/// made to hold them.
83///
84/// Run after lowering and before [`critical`], which then sees edges with nothing on them and
85/// leaves them alone. Running it twice is running it once, for the reason the splitting above is:
86/// the blocks it adds end in a jump rather than in a branch through a register.
87///
88/// # What is wrong with the edge it takes the values off
89///
90/// Every other edge in the function is out of a block whose last instruction the layout writes, so
91/// an edge that is the only way out of its block can put its moves at the end of that block and
92/// they land in front of the jump. A block that leaves through a register already ends in the jump
93/// when the allocator runs, because where it goes is a value and a value is something selection
94/// reads rather than something the layout knows. Moves at the end of that block would be written
95/// after the jump, where nothing runs them, and moves in front of it would be written across the
96/// register the jump reads, which the allocator believes is dead from the jump onwards and is free
97/// to hand to one of the moves.
98///
99/// So the moves go somewhere else. Each label an indirect branch reaches gets a block in front of
100/// it that carries the values, the branch goes to that block with nothing on the edge, and the
101/// address the `&&label` produces is the address of that block rather than of the label's own. The
102/// new block is arrived at one way and leaves one way, so its own edge has both of the places the
103/// splitting above talks about and the allocator is content.
104///
105/// # One label, one address, and two branches that disagree
106///
107/// A label has one address, so two computed `goto`s that reach it both arrive at whatever block
108/// that address names, and the values they carry are not the same values. One block in front of
109/// the label cannot move two different sets of registers.
110///
111/// So they are made to agree first. Each parameter of the label gets a register of its own, every
112/// branch writes that register in front of its jump, and the block in front of the label carries
113/// those registers and nothing else. That is what gcc does about the same problem, which it calls
114/// coalescing across an abnormal edge, done here rather than while the values are still the
115/// optimizer's.
116///
117/// Writing them in front of the jump is safe, which is not obvious, since a branch that goes five
118/// ways writes the registers of one of those ways on the path to all five. What makes it safe is
119/// that nothing reads those registers except the block in front of the label, and the only way to
120/// reach that block is an edge out of a branch, which writes them on the way. So a value written
121/// here and not used is a value overwritten before anything looks, whichever way the jump went.
122///
123/// # Panics
124///
125/// Panics on a class of register the machine named no move for, which is a function carrying a
126/// value of a kind the target never said how to copy, and on a branch that has lost the terminator
127/// it was found by, which nothing between the finding and the use of it can do. Both are a target
128/// description or a function that was built wrongly, and both are worth finding here rather than as
129/// a value that arrives somewhere it was never written.
130pub fn indirect(
131    func: &mut mir::Func,
132    branch: &BranchInsts,
133    frame: &FrameInsts,
134    names: &mut Interner,
135) -> usize {
136    let jump = mir::Opcode::new(names.intern(&format!("{}{}", branch.prefix, branch.indirect)));
137    let branches: Vec<mir::Block> = func
138        .blocks()
139        .filter(|&block| func.terminator(block).is_some_and(|last| func[last].opcode == jump))
140        .collect();
141    // Nothing at all in almost every function, and the walk at the bottom is over every instruction
142    // in it, so the answer is arrived at here rather than paid for everywhere.
143    if branches.is_empty() {
144        return 0;
145    }
146    // In the order the branches name them rather than in whatever order a hash gives, so that two
147    // runs of the compiler over one program write the same blocks.
148    let mut targets: Vec<mir::Block> = Vec::new();
149    for &block in &branches {
150        for call in &func[block].succs {
151            if !call.args.is_empty() && !targets.contains(&call.block) {
152                targets.push(call.block);
153            }
154        }
155    }
156
157    let mut entries: HashMap<mir::Block, mir::Block> = HashMap::new();
158    for target in targets {
159        let params = func[target].params.clone();
160        let homes: Vec<mir::Reg> = params.iter().map(|param| func.new_vreg(param.class)).collect();
161        let entry = func.create_block();
162        let mut total = mir::Weight::NEVER;
163        for &block in &branches {
164            for index in 0..func[block].succs.len() {
165                if func[block].succs[index].block != target {
166                    continue;
167                }
168                let call = func[block].succs[index].clone();
169                let last = func.terminator(block).expect("a block that ends in a jump");
170                for (home, (arg, param)) in homes.iter().zip(call.args.iter().zip(&params)) {
171                    let name = frame.moves(param.class).expect("a class this machine can move").mov;
172                    let opcode = mir::Opcode::new(names.intern(&format!("{}{name}", frame.prefix)));
173                    let inst = func
174                        .build_loose(opcode)
175                        .def(*home, param.class)
176                        .uses(*arg, param.class)
177                        .finish();
178                    func.insert_before(last, inst);
179                }
180                // The block in front of the label runs as often as every branch that reaches it,
181                // which is the same sum the weight of a block with that many edges into it would
182                // be.
183                total = mir::Weight::parts(total.raw().saturating_add(call.weight.raw()));
184                func.succs_mut(block)[index] = mir::BlockCall::to(entry).taken(call.weight);
185            }
186        }
187        func.set_weight(entry, total);
188        *func.succs_mut(entry) = vec![mir::BlockCall::with(target, homes).taken(total)];
189        entries.insert(target, entry);
190    }
191
192    // And the addresses, which is the half of this that is not about edges. Every `&&label` in the
193    // function names a block, and a label with a block in front of it now begins at that block, so
194    // an address left pointing at the label's own block would be a jump past the moves.
195    let mut addresses: Vec<mir::MemRef> = Vec::new();
196    for block in func.blocks() {
197        for inst in func.insts(block) {
198            if let Some(mem) = func[inst].mem {
199                addresses.push(mem);
200            }
201        }
202    }
203    for mem in addresses {
204        if let Some(named) = func[mem].block {
205            if let Some(&entry) = entries.get(&named) {
206                func[mem].block = Some(entry);
207            }
208        }
209    }
210    entries.len()
211}
212
213/// Puts a landing pad at the front of every block whose address is taken, and gives back how many
214/// it wrote.
215///
216/// Run after [`indirect`], because the block an address names is not settled until that has moved
217/// the addresses on to the blocks it made, and only when the command line asked for the forward
218/// edge to be checked. Nothing is written otherwise, which is why the name comes in as an option
219/// and why a target with no such instruction is a target this does nothing on.
220///
221/// The pad a prologue opens with is written elsewhere, in `crate::finish`, because the address it
222/// makes reachable is the address of the function rather than a place inside it. These are the
223/// other addresses an indirect branch may arrive at, and a machine that checks the forward edge
224/// faults on one that has no pad, so a computed `goto` compiled without this would be a program
225/// that ran everywhere except on the hardware the flag was turned on for.
226pub fn pads(
227    func: &mut mir::Func,
228    frame: &FrameInsts,
229    landing: Option<&'static str>,
230    names: &mut Interner,
231) -> usize {
232    let Some(name) = landing else { return 0 };
233    let opcode = mir::Opcode::new(names.intern(&format!("{}{name}", frame.prefix)));
234    let mut addressed: Vec<mir::Block> = Vec::new();
235    for block in func.blocks() {
236        for inst in func.insts(block) {
237            if let Some(mem) = func[inst].mem {
238                if let Some(named) = func[mem].block {
239                    if !addressed.contains(&named) {
240                        addressed.push(named);
241                    }
242                }
243            }
244        }
245    }
246    for &block in &addressed {
247        let inst = func.build_loose(opcode).finish();
248        func.prepend_inst(block, inst);
249    }
250    addressed.len()
251}
252
253/// How many edges arrive at each block, counted by index rather than in layout order so that a
254/// block added while splitting can be looked up in the same table.
255fn preds(func: &mir::Func) -> Vec<usize> {
256    let mut counts = vec![0; func.block_count()];
257    for block in func.blocks() {
258        for call in &func[block].succs {
259            counts[call.block.index()] += 1;
260        }
261    }
262    counts
263}
264
265#[cfg(test)]
266mod tests {
267    use rucc_base::Interner;
268    use rucc_target::x86_64::{BRANCH, FRAME, GPR, REGS};
269
270    use super::*;
271
272    /// A diamond: one block that goes two ways and one block both ways arrive at, with as many
273    /// parameters on the block they arrive at as the test asks for.
274    fn diamond(params: usize) -> (Interner, mir::Func, [mir::Block; 4]) {
275        let mut names = Interner::new();
276        let mut func = mir::Func::new(names.intern("f"));
277        let head = func.create_block();
278        let left = func.create_block();
279        let right = func.create_block();
280        let join = func.create_block();
281        // The values arrive in the head, so that they have somewhere to be defined and the
282        // printer has a name for them. Nothing here runs an allocator, which is the one thing
283        // that would object to a first block with parameters.
284        let args: Vec<mir::Reg> = (0..params).map(|_| func.append_param(head, GPR)).collect();
285        for _ in 0..params {
286            func.append_param(join, GPR);
287        }
288        *func.succs_mut(head) = vec![mir::BlockCall::to(left), mir::BlockCall::to(right)];
289        *func.succs_mut(left) = vec![mir::BlockCall::with(join, args.clone())];
290        *func.succs_mut(right) = vec![mir::BlockCall::with(join, args)];
291        (names, func, [head, left, right, join])
292    }
293
294    /// Where each block goes, which is the whole of what this changes.
295    fn edges(func: &mir::Func) -> Vec<Vec<usize>> {
296        func.blocks()
297            .map(|block| func[block].succs.iter().map(|call| call.block.index()).collect())
298            .collect()
299    }
300
301    #[test]
302    fn an_edge_that_is_the_only_way_out_is_left_alone() {
303        let (_, mut func, _) = diamond(1);
304        // The two edges into the join carry a value each and neither is critical, because the
305        // block each leaves goes nowhere else.
306        assert_eq!(critical(&mut func), 0);
307        assert_eq!(edges(&func), vec![vec![1, 2], vec![3], vec![3], vec![]]);
308    }
309
310    #[test]
311    fn a_critical_edge_carrying_a_value_is_split_in_two() {
312        let (_, mut func, [head, _, _, join]) = diamond(1);
313        // Now the head goes straight to the join as well, so both of its arms are critical: it
314        // has two ways out and the join has three ways in.
315        let arg = func.append_param(head, GPR);
316        func.succs_mut(head).push(mir::BlockCall::with(join, vec![arg]));
317        func.succs_mut(head).swap(1, 2);
318
319        assert_eq!(critical(&mut func), 1);
320        assert_eq!(
321            edges(&func),
322            // The head's second arm is the new block and the new block goes to the join. The
323            // other two arms are untouched, because each goes to a block with one way in.
324            vec![vec![1, 4, 2], vec![3], vec![3], vec![], vec![3]]
325        );
326    }
327
328    #[test]
329    fn a_critical_edge_carrying_nothing_is_left_alone() {
330        let (_, mut func, [head, _, _, join]) = diamond(0);
331        func.succs_mut(head).push(mir::BlockCall::to(join));
332
333        // Critical and not split, because there is no move to find a place for and a block that
334        // is a jump and nothing else is worth more than nothing.
335        assert_eq!(critical(&mut func), 0);
336    }
337
338    #[test]
339    fn the_arguments_move_on_to_the_half_that_arrives() {
340        let (names, mut func, [head, _, _, join]) = diamond(1);
341        let arg = func.append_param(head, GPR);
342        func.succs_mut(head).push(mir::BlockCall::with(join, vec![arg]));
343
344        assert_eq!(critical(&mut func), 1);
345        // What the first half carries is nothing, since the block it goes to asks for nothing,
346        // and what the second half carries is what the whole edge used to.
347        let half = func.blocks().last().expect("the block the split added");
348        assert_eq!(func[head].succs[2].args, Vec::new());
349        assert_eq!(func[half].succs[0].args, vec![arg]);
350        assert_eq!(
351            mir::print_func(&func, &names, &REGS),
352            "mfunc @f {\nblock0(%0:gpr, %1:gpr):\n    block1, block2, block4\n\n\
353             block1:\n    block3(%0)\n\nblock2:\n    block3(%0)\n\n\
354             block3(%2:gpr):\n\nblock4:\n    block3(%1)\n}\n"
355        );
356    }
357
358    #[test]
359    fn splitting_twice_is_splitting_once() {
360        let (_, mut func, [head, _, _, join]) = diamond(1);
361        let arg = func.append_param(head, GPR);
362        func.succs_mut(head).push(mir::BlockCall::with(join, vec![arg]));
363
364        assert_eq!(critical(&mut func), 1);
365        assert_eq!(critical(&mut func), 0);
366    }
367
368    /// A function with one label whose address is taken and as many blocks leaving through that
369    /// address as the test asks for, each carrying as many values to the label as it asks for.
370    fn computed(branches: usize, params: usize) -> (Interner, mir::Func) {
371        let mut names = Interner::new();
372        let mut func = mir::Func::new(names.intern("f"));
373        let head = func.create_block();
374        let label = func.create_block();
375        for _ in 0..params {
376            func.append_param(label, GPR);
377        }
378        let lea = mir::Opcode::new(names.intern("x64.lea_64"));
379        let jump = mir::Opcode::new(names.intern("x64.jmp_reg"));
380        for _ in 0..branches {
381            // Every branch works the address out for itself, which is what a program that takes
382            // the address of a label twice looks like once the values are in registers.
383            let args: Vec<mir::Reg> = (0..params).map(|_| func.append_param(head, GPR)).collect();
384            let address = func.new_vreg(GPR);
385            let at = if branches == 1 { head } else { func.create_block() };
386            func.build(at, lea).def(address, GPR).mem(mir::Mem::block(label)).finish();
387            func.build(at, jump).operand(mir::Operand::read(address, GPR)).finish();
388            *func.succs_mut(at) = vec![mir::BlockCall::with(label, args)];
389        }
390        (names, func)
391    }
392
393    /// Which block each address in the function names, in the order the instructions are in.
394    fn addressed(func: &mir::Func) -> Vec<usize> {
395        func.blocks()
396            .flat_map(|block| func.insts(block).collect::<Vec<_>>())
397            .filter_map(|inst| func[inst].mem)
398            .filter_map(|mem| func[mem].block)
399            .map(mir::Block::index)
400            .collect()
401    }
402
403    #[test]
404    fn the_values_a_computed_goto_carries_move_into_a_block_in_front_of_the_label() {
405        let (mut names, mut func) = computed(1, 1);
406        assert_eq!(indirect(&mut func, &BRANCH, &FRAME, &mut names), 1);
407
408        // The branch goes to the new block carrying nothing, and the new block carries the value
409        // the branch used to. The address the `lea` works out is the new block's as well, since
410        // arriving at the label without going through the new block is arriving without the value.
411        assert_eq!(edges(&func), vec![vec![2], vec![], vec![1]]);
412        assert_eq!(func[mir::Block::new(0)].succs[0].args, Vec::new());
413        assert_eq!(addressed(&func), vec![2]);
414    }
415
416    #[test]
417    fn two_computed_gotos_that_reach_one_label_are_made_to_agree() {
418        let (mut names, mut func) = computed(2, 1);
419        assert_eq!(indirect(&mut func, &BRANCH, &FRAME, &mut names), 1);
420
421        // One block in front of the label and not two, because the label has one address and both
422        // branches arrive at it. What makes that sound is the move each branch writes in front of
423        // its own jump, which puts its value in the register that block carries.
424        assert_eq!(edges(&func), vec![vec![], vec![], vec![4], vec![4], vec![1]]);
425        let text = mir::print_func(&func, &names, &REGS);
426        assert_eq!(text.matches("x64.mov_rr_64").count(), 2, "{text}");
427        // In front of the jump rather than behind it, since nothing behind a jump runs.
428        for line in text.lines().collect::<Vec<_>>().windows(2) {
429            if line[1].contains("x64.jmp_reg") {
430                assert!(line[0].contains("x64.mov_rr_64"), "{text}");
431            }
432        }
433        assert_eq!(addressed(&func), vec![4, 4]);
434    }
435
436    #[test]
437    fn an_edge_out_of_a_computed_goto_that_carries_nothing_is_left_alone() {
438        let (mut names, mut func) = computed(1, 0);
439
440        // No values to carry, so no block to carry them, and the address stays the label's own.
441        assert_eq!(indirect(&mut func, &BRANCH, &FRAME, &mut names), 0);
442        assert_eq!(addressed(&func), vec![1]);
443    }
444
445    #[test]
446    fn a_function_with_no_computed_goto_in_it_is_left_alone() {
447        let (mut names, mut func, _) = diamond(1);
448        assert_eq!(indirect(&mut func, &BRANCH, &FRAME, &mut names), 0);
449        assert_eq!(edges(&func), vec![vec![1, 2], vec![3], vec![3], vec![]]);
450    }
451
452    #[test]
453    fn what_it_leaves_is_nothing_for_the_splitting_below_to_do() {
454        let (mut names, mut func) = computed(2, 1);
455        indirect(&mut func, &BRANCH, &FRAME, &mut names);
456        // The edges out of the branches carry nothing now, and the edges out of the blocks it
457        // added are the only way out of those blocks, so neither kind is critical.
458        assert_eq!(critical(&mut func), 0);
459    }
460
461    /// The first instruction of each block, by opcode, and an empty string for a block with
462    /// nothing in it.
463    fn opens(func: &mir::Func, names: &Interner) -> Vec<String> {
464        func.blocks()
465            .map(|block| match func.insts(block).next() {
466                Some(inst) => names.resolve(func[inst].opcode.name()).to_owned(),
467                None => String::new(),
468            })
469            .collect()
470    }
471
472    #[test]
473    fn the_block_a_label_begins_at_gets_a_landing_pad_when_the_forward_edge_is_checked() {
474        let (mut names, mut func) = computed(2, 1);
475        indirect(&mut func, &BRANCH, &FRAME, &mut names);
476
477        // One pad, at the block in front of the label, because that is the block both addresses
478        // name once the values have been moved on to it. The label's own block is arrived at by an
479        // ordinary edge from there and wants nothing.
480        assert_eq!(pads(&mut func, &FRAME, FRAME.landing, &mut names), 1);
481        assert_eq!(opens(&func, &names), ["", "", "x64.lea_64", "x64.lea_64", "x64.endbr64"]);
482    }
483
484    #[test]
485    fn a_label_with_no_block_in_front_of_it_gets_the_pad_itself() {
486        let (mut names, mut func) = computed(1, 0);
487        indirect(&mut func, &BRANCH, &FRAME, &mut names);
488
489        // Nothing was moved on to anything, so the address still names the label and the pad goes
490        // where the address goes.
491        assert_eq!(pads(&mut func, &FRAME, FRAME.landing, &mut names), 1);
492        assert_eq!(opens(&func, &names), ["x64.lea_64", "x64.endbr64"]);
493    }
494
495    #[test]
496    fn nothing_is_written_when_the_forward_edge_is_not_checked() {
497        let (mut names, mut func) = computed(1, 0);
498        assert_eq!(pads(&mut func, &FRAME, None, &mut names), 0);
499        assert_eq!(opens(&func, &names), ["x64.lea_64", ""]);
500    }
501}