Creates a sized stack slot in the function, to be used by `stack_load`, `stack_store` and `stack_addr` instructions.
(&mut self, data: StackSlotData)
| 238 | /// Creates a sized stack slot in the function, to be used by `stack_load`, `stack_store` |
| 239 | /// and `stack_addr` instructions. |
| 240 | pub fn create_sized_stack_slot(&mut self, data: StackSlotData) -> StackSlot { |
| 241 | self.sized_stack_slots.push(data) |
| 242 | } |
| 243 | |
| 244 | /// Creates a dynamic stack slot in the function, to be used by `dynamic_stack_load`, |
| 245 | /// `dynamic_stack_store` and `dynamic_stack_addr` instructions. |