Lines Matching refs:Reloc
139 for (Relocation &Reloc : PendingRelocations) { in flushPendingRelocations()
140 uint64_t Value = Reloc.Addend; in flushPendingRelocations()
141 if (Reloc.Symbol) in flushPendingRelocations()
142 Value += Resolver(Reloc.Symbol); in flushPendingRelocations()
144 Value = Relocation::adjustValue(Reloc.Type, Value, in flushPendingRelocations()
145 SectionAddress + Reloc.Offset); in flushPendingRelocations()
148 Relocation::getSizeForType(Reloc.Type), in flushPendingRelocations()
149 SectionFileOffset + Reloc.Offset); in flushPendingRelocations()
153 << " of size " << Relocation::getSizeForType(Reloc.Type) in flushPendingRelocations()
154 << " at section offset 0x" << Twine::utohexstr(Reloc.Offset) in flushPendingRelocations()
156 << Twine::utohexstr(SectionAddress + Reloc.Offset) in flushPendingRelocations()
158 << Twine::utohexstr(SectionFileOffset + Reloc.Offset) << '\n';); in flushPendingRelocations()