Searched refs:bufLoc (Results 1 – 3 of 3) sorted by relevance
| /src/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 | 489 const uint8_t *bufLoc = sec->content().begin() + rel.offset; in copyRelocations() local 491 addend = target.getImplicitAddend(bufLoc, type); in copyRelocations() 494 target.getRelExpr(type, sym, bufLoc) == R_MIPS_GOTREL) { in copyRelocations() 975 uint8_t *bufLoc = buf + offset; in relocateNonAlloc() local 978 addend += target.getImplicitAddend(bufLoc, type); in relocateNonAlloc() 981 RelExpr expr = target.getRelExpr(type, sym, bufLoc); in relocateNonAlloc() 997 if (overwriteULEB128(bufLoc, val) >= 0x80) in relocateNonAlloc() 1045 target.relocateNoSym(bufLoc, type, value); in relocateNonAlloc() 1061 target.relocateNoSym(bufLoc, type, SignExtend64<bits>(sym.getVA(addend))); in relocateNonAlloc() 1066 target.relocateNoSym(bufLoc, type, in relocateNonAlloc() [all …]
|
| /src/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()
|