Lines Matching refs:addend

52   AArch64ABSLongThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {}
60 AArch64ADRPThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {}
244 // For R_PPC_PLTREL24, Thunk::addend records the addend which will be used to
248 : Thunk(dest, rel.addend), file(isec.file) {}
261 PPC32LongThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {}
298 PPC64LongBranchThunk(Symbol &dest, int64_t addend) : Thunk(dest, addend) {}
303 PPC64PILongBranchThunk(Symbol &dest, int64_t addend)
304 : PPC64LongBranchThunk(dest, addend) {
307 in.ppc64LongBranchTarget->addEntry(&dest, addend)) {
311 addend + getPPC64GlobalEntryToLocalEntryOffset(dest.stOther)});
318 PPC64PDLongBranchThunk(Symbol &dest, int64_t addend)
319 : PPC64LongBranchThunk(dest, addend) {
320 in.ppc64LongBranchTarget->addEntry(&dest, addend);
353 uint64_t s = getAArch64ThunkDestVA(destination, addend);
376 uint64_t s = getAArch64ThunkDestVA(destination, addend);
718 const InputFile *file, int64_t addend) {
727 if (addend >= 0x8000) {
732 file->ppc32Got2OutSecOff + addend);
753 writePPC32PltCallStub(buf, destination.getGotPltVA(), file, addend);
759 os << format_hex_no_prefix(addend, 8);
762 else if (addend >= 0x8000)
772 return !config->isPic || (isec.file == file && rel.addend == addend);
783 uint32_t d = destination.getVA(addend);
827 int64_t offset = in.ppc64LongBranchTarget->getEntryVA(&destination, addend) -
837 Thunk::Thunk(Symbol &d, int64_t a) : destination(d), addend(a), offset(0) {}
944 return make<PPC32LongThunk>(s, rel.addend);
960 int64_t a = rel.addend;