| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | x86_64.h | 271 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 277 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 291 E.getTarget().getAddress() - (FixupAddress + 4) + E.getAddend(); in applyFixup() 300 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() 306 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() 315 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() 321 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup()
|
| H A D | JITLink.h | 88 AddendT getAddend() const { return Addend; } in getAddend() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachO_arm64.cpp | 453 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixPLTEdge() 539 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() 557 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 565 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 571 assert((E.getKind() != GOTPage21 || E.getAddend() == 0) && in applyFixup() 574 (E.getTarget().getAddress() + E.getAddend()) & in applyFixup() 593 (E.getTarget().getAddress() + E.getAddend()) & 0xfff; in applyFixup() 607 assert(E.getAddend() == 0 && "GOTPAGEOF12 with non-zero addend"); in applyFixup() 622 assert(E.getAddend() == 0 && "LDRLiteral19 with non-zero addend"); in applyFixup() 643 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() [all …]
|
| H A D | ELF_riscv.cpp | 82 int64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 89 int64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 97 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 108 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 119 RelHI20->getAddend() - E.getTarget().getAddress(); in applyFixup() 129 RelHI20->getAddend() - E.getTarget().getAddress(); in applyFixup()
|
| H A D | ELF_x86_64.cpp | 441 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 449 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 454 int64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 459 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 467 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 472 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() 480 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() 493 E.getTarget().getAddress() - GOTSymbol->getAddress() + E.getAddend(); in applyFixup()
|
| H A D | JITLink.cpp | 143 if (E.getAddend() != 0) in printEdge() 144 OS << " + " << E.getAddend(); in printEdge() 292 if (E.getAddend() >= 0) in dump() 293 OS << formatv("+{0:x8}", E.getAddend()); in dump() 295 OS << formatv("-{0:x8}", -E.getAddend()); in dump()
|
| H A D | EHFrameSupportImpl.h | 67 EdgeTarget(const Edge &E) : Target(&E.getTarget()), Addend(E.getAddend()) {} in EdgeTarget()
|
| H A D | MachO_x86_64.cpp | 466 assert(E.getAddend() == 0 && in fixPLTEdge() 529 E.setAddend(E.getAddend() - 4); in optimizeMachO_x86_64_GOTAndStubs()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | Relocations.h | 192 static inline int64_t getAddend(const typename ELFT::Rel &rel) { in getAddend() function 196 static inline int64_t getAddend(const typename ELFT::Rela &rel) { in getAddend() function
|
| H A D | MarkLive.cpp | 77 static uint64_t getAddend(InputSectionBase &sec, in getAddend() function 84 static uint64_t getAddend(InputSectionBase &sec, in getAddend() function 105 offset += getAddend<ELFT>(sec, rel); in resolveReloc()
|
| H A D | DWARF.cpp | 130 d.p = getAddend<ELFT>(rel); in findAux()
|
| H A D | ICF.cpp | 247 uint64_t addA = getAddend<ELFT>(ra[i]); in constantEq() 248 uint64_t addB = getAddend<ELFT>(rb[i]); in constantEq()
|
| H A D | InputSection.cpp | 422 p->r_addend = getAddend<ELFT>(rel); in copyRelocations() 464 int64_t addend = getAddend<ELFT>(rel); in copyRelocations() 899 int64_t addend = getAddend<ELFT>(rel); in relocateNonAlloc()
|
| H A D | Relocations.cpp | 679 addend = getAddend<ELFT>(rel); in computeAddend()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/XRay/ |
| H A D | InstrumentationMap.cpp | 129 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj() 139 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | RelocationResolver.cpp | 19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 1620 static void getAddend(uint64_t &, const Elf_Rel_Impl<ELFT, false> &) {} in getAddend() function 1623 static void getAddend(uint64_t &ToSet, const Elf_Rel_Impl<ELFT, true> &Rela) { in getAddend() function 1633 getAddend(ToAdd.Addend, Rel); in initRelocations()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldELF.cpp | 705 if (auto AddendOrErr = i->getAddend()) in findOPDEntrySection() 1184 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | PPC64.cpp | 299 return {dyn_cast<Defined>(&sym), getAddend<ELFT>(relas[index])}; in getRelaTocSymAndAddend()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELFObjectFile.h | 201 Expected<int64_t> getAddend() const { in getAddend() function
|