Returns the stack size allocated by this function, excluding incoming tail args or the optional "setup area" of fp/lr.
(&self)
| 629 | /// Returns the stack size allocated by this function, excluding incoming |
| 630 | /// tail args or the optional "setup area" of fp/lr. |
| 631 | fn stack_size(&self) -> u32 { |
| 632 | self.clobber_size + self.fixed_frame_storage_size + self.outgoing_args_size |
| 633 | } |
| 634 | |
| 635 | /// Returns the style of frame being used for this function. |
| 636 | /// |
no outgoing calls