Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching defs:Addend

136   /// Addend - the relocation addend encoded in the instruction itself.  Also
138 int64_t Addend;
158 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
159 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
162 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
164 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
167 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
169 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
172 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
176 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
187 int64_t Addend;
189 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
194 Addend == Other.Addend && SymbolName == Other.SymbolName;
201 if (Addend != Other.Addend)
202 return Addend < Other.Addend;