Home
last modified time | relevance | path

Searched refs:bufLoc (Results 1 – 3 of 3) sorted by relevance

/freebsd-src/contrib/llvm-project/lld/ELF/
H A DTarget.h310 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 DInputSection.cpp489 const uint8_t *bufLoc = sec->content().begin() + rel.offset;
491 addend = target.getImplicitAddend(bufLoc, type);
494 target.getRelExpr(type, sym, bufLoc) == R_MIPS_GOTREL) { in getARMUndefinedRelativeWeakVA()
975 uint8_t *bufLoc = buf + offset; in relocateNonAlloc()
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);
1061 target.relocateNoSym(bufLoc, type, SignExtend64<bits>(sym.getVA(addend))); in relocate()
1066 target.relocateNoSym(bufLoc, typ
445 const uint8_t *bufLoc = sec->content().begin() + rel.offset; copyRelocations() local
922 uint8_t *bufLoc = buf + offset; relocateNonAlloc() local
[all...]
/freebsd-src/contrib/llvm-project/lld/ELF/Arch/
H A DPPC64.cpp381 uint8_t *bufLoc) { in tryRelaxPPC64TocIndirection() argument
412 static_cast<const PPC64 &>(*target).relaxGot(bufLoc, rel, in tryRelaxPPC64TocIndirection()