(&mut self, id: DynamicLabel,
target_offset: isize, field_offset: u8, ref_offset: u8,
kind: Self::Relocation)
| 482 | } |
| 483 | |
| 484 | fn dynamic_relocation(&mut self, id: DynamicLabel, |
| 485 | target_offset: isize, field_offset: u8, ref_offset: u8, |
| 486 | kind: Self::Relocation) |
| 487 | { |
| 488 | let location = self.offset(); |
| 489 | self.relocs.add_dynamic(id, |
| 490 | PatchLoc::new( |
| 491 | location, target_offset, field_offset, ref_offset, kind |
| 492 | ) |
| 493 | ); |
| 494 | } |
| 495 | |
| 496 | fn forward_relocation(&mut self, name: &'static str, |
| 497 | target_offset: isize, field_offset: u8, ref_offset: u8, |