Size occupied by all stack slots associated with this function. Does not include any padding necessary due to offsets
(&self)
| 362 | /// |
| 363 | /// Does not include any padding necessary due to offsets |
| 364 | pub fn fixed_stack_size(&self) -> u32 { |
| 365 | self.sized_stack_slots.values().map(|ss| ss.size).sum() |
| 366 | } |
| 367 | |
| 368 | /// Returns the list of relative source locations for this function. |
| 369 | pub(crate) fn rel_srclocs(&self) -> &SecondaryMap<Inst, RelSourceLoc> { |
no test coverage detected