Searched refs:bufLoc (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | Target.h | 310 inline uint64_t overwriteULEB128(uint8_t *bufLoc, uint64_t val) { in overwriteULEB128() argument 311 while (*bufLoc & 0x80) { in overwriteULEB128() 312 *bufLoc++ = 0x80 | (val & 0x7f); in overwriteULEB128() 315 *bufLoc = val; in overwriteULEB128()
|
| H A D | InputSection.cpp | 445 const uint8_t *bufLoc = sec->content().begin() + rel.offset; in copyRelocations() local 447 addend = target.getImplicitAddend(bufLoc, type); in copyRelocations() 450 target.getRelExpr(type, sym, bufLoc) == R_MIPS_GOTREL) { in copyRelocations() 922 uint8_t *bufLoc = buf + offset; in relocateNonAlloc() local 925 addend += target.getImplicitAddend(bufLoc, type); in relocateNonAlloc() 928 RelExpr expr = target.getRelExpr(type, sym, bufLoc); in relocateNonAlloc() 945 if (overwriteULEB128(bufLoc, val) >= 0x80) in relocateNonAlloc() 993 target.relocateNoSym(bufLoc, type, value); in relocateNonAlloc() 1008 target.relocateNoSym(bufLoc, type, SignExtend64<bits>(sym.getVA(addend))); in relocateNonAlloc() 1013 target.relocateNoSym(bufLoc, type, in relocateNonAlloc() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | PPC64.cpp | 381 uint8_t *bufLoc) { in tryRelaxPPC64TocIndirection() argument 412 static_cast<const PPC64 &>(*target).relaxGot(bufLoc, rel, in tryRelaxPPC64TocIndirection()
|