Returns true if the current stack pointer is unbalanced relative to the the expected control frame stack pointer offset. The stack pointer is considered unbalanced relative to the control frame if the stack pointer is greater than the the target stack pointer offset expected by the control frame.
(&self, masm: &mut M)
| 1070 | /// to the control frame if the stack pointer is greater than the |
| 1071 | /// the target stack pointer offset expected by the control frame. |
| 1072 | pub fn unbalanced<M: MacroAssembler>(&self, masm: &mut M) -> Result<bool> { |
| 1073 | Ok(masm.sp_offset()? > self.stack_state().target_offset) |
| 1074 | } |
| 1075 | } |
no test coverage detected