| 515 | |
| 516 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] |
| 517 | pub struct LoadMetadata { |
| 518 | /// The offset of the load expression in the pcode array. |
| 519 | offset: usize, |
| 520 | /// The minimum bit of the load that persists outside of the current block. |
| 521 | min_bit: u8, |
| 522 | /// The maximum bit of the load that persists outside of the current block. |
| 523 | max_bit: u8, |
| 524 | } |
| 525 | |
| 526 | impl LoadMetadata { |
| 527 | fn add_use(&mut self, new_use: &Use) { |
nothing calls this directly
no outgoing calls
no test coverage detected