Lines Matching refs:Off
83 uint64_t Off) { in getLocation() argument
91 std::string Src = S.getSrcMsg(Sym, Off); in getLocation()
94 return Msg + S.getObjMsg(Off); in getLocation()
143 auto AddTlsReloc = [&](uint64_t Off, RelType Type, Symbol *Dest, bool Dyn) { in handleARMTlsRelocation() argument
145 In.RelaDyn->addReloc(Type, In.Got, Off, Dest); in handleARMTlsRelocation()
147 In.Got->Relocations.push_back({R_ABS, Type, Off, 0, Dest}); in handleARMTlsRelocation()
166 uint64_t Off = In.Got->getGlobalDynOffset(Sym); in handleARMTlsRelocation() local
167 AddTlsReloc(Off, Target->TlsModuleIndexRel, &Sym, NeedDynId); in handleARMTlsRelocation()
168 AddTlsReloc(Off + Config->Wordsize, Target->TlsOffsetRel, &Sym, in handleARMTlsRelocation()
193 uint64_t Off = In.Got->getGlobalDynOffset(Sym); in handleTlsRelocation() local
195 {Target->TlsDescRel, In.Got, Off, !Sym.IsPreemptible, &Sym, 0}); in handleTlsRelocation()
238 uint64_t Off = Sym.getGotOffset(); in handleTlsRelocation() local
240 {R_ABS, Target->TlsOffsetRel, Off, 0, &Sym}); in handleTlsRelocation()
250 uint64_t Off = In.Got->getGlobalDynOffset(Sym); in handleTlsRelocation() local
251 In.RelaDyn->addReloc(Target->TlsModuleIndexRel, In.Got, Off, &Sym); in handleTlsRelocation()
255 uint64_t OffsetOff = Off + Config->Wordsize; in handleTlsRelocation()
721 uint64_t get(uint64_t Off) { in get() argument
723 return Off; in get()
725 while (I != Pieces.size() && Pieces[I].InputOff + Pieces[I].Size <= Off) in get()
731 assert(Pieces[I].InputOff <= Off && "Relocation not in any piece"); in get()
736 return Pieces[I].OutputOff + Off - Pieces[I].InputOff; in get()
783 uint64_t Off = Sym.getGotOffset(); in addGotEntry() local
795 In.Got->Relocations.push_back({Expr, Target->GotRel, Off, 0, &Sym}); in addGotEntry()
802 addRelativeReloc(In.Got, Off, &Sym, 0, R_ABS, Target->GotRel); in addGotEntry()
806 Off, &Sym, 0, Sym.IsPreemptible ? R_ADDEND : R_ABS, in addGotEntry()
1382 uint64_t Off) { in addThunkSection() argument
1383 auto *TS = make<ThunkSection>(OS, Off); in addThunkSection()