Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching refs:addend

130   /// Addend - the relocation addend encoded in the instruction itself.  Also
132 int64_t Addend;
152 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
153 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
156 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
158 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
161 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
163 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
166 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
170 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
181 int64_t Addend;
183 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
188 Addend == Other.Addend && SymbolName == Other.SymbolName;
195 if (Addend != Other.Addend)
196 return Addend < Other.Addend;