Lines Matching full:addend
97 /// Addend - the relocation addend encoded in the instruction itself. Also
99 int64_t Addend; variable
119 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument
120 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
123 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
125 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
128 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
130 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry()
133 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
137 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry()
148 int64_t Addend; variable
150 RelocationValueRef() : SectionID(0), Offset(0), Addend(0), in RelocationValueRef()
155 Addend == Other.Addend && SymbolName == Other.SymbolName;
162 if (Addend != Other.Addend)
163 return Addend < Other.Addend;