Convenience wrapper around [`Self::spill_callback`]. This function exists for cases in which triggering an unconditional spill is needed, like before entering control flow.
(&mut self, masm: &mut M)
| 653 | /// This function exists for cases in which triggering an unconditional |
| 654 | /// spill is needed, like before entering control flow. |
| 655 | pub fn spill<M: MacroAssembler>(&mut self, masm: &mut M) -> Result<()> { |
| 656 | Self::spill_impl(&mut self.stack, &mut self.regalloc, &self.frame, masm) |
| 657 | } |
| 658 | |
| 659 | /// Prepares the compiler to branch to the given destination |
| 660 | /// frame. |
no outgoing calls
no test coverage detected