Home | History | Annotate | Download | only in dsymutil

Lines Matching defs:Addend

1136       uint64_t Addend;
1139 ValidReloc(uint32_t Offset, uint32_t Size, uint64_t Addend,
1141 : Offset(Offset), Size(Size), Addend(Addend), Mapping(Mapping) {}
1896 // Mach-o uses REL relocations, the addend is at the relocation offset.
1897 uint64_t Addend = Data.getUnsigned(&Offset, RelocSize);
1907 ValidRelocs.emplace_back(Offset64, RelocSize, Addend, Mapping);
1908 } else if (const auto *Mapping = DMO.lookupObjectAddress(Addend)) {
1909 // Do not store the addend. The addend was the address of the
1994 Info.AddrAdjust = int64_t(Mapping.BinaryAddress) + ValidReloc.Addend -
2578 Value += ValidReloc.Addend;