Home
last modified time | relevance | path

Searched refs:getAddend (Results 1 – 20 of 20) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dx86_64.h271 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 DJITLink.h88 AddendT getAddend() const { return Addend; } in getAddend() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_arm64.cpp453 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 DELF_riscv.cpp82 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 DELF_x86_64.cpp441 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 DJITLink.cpp143 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 DEHFrameSupportImpl.h67 EdgeTarget(const Edge &E) : Target(&E.getTarget()), Addend(E.getAddend()) {} in EdgeTarget()
H A DMachO_x86_64.cpp466 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 DRelocations.h192 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 DMarkLive.cpp77 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 DDWARF.cpp130 d.p = getAddend<ELFT>(rel); in findAux()
H A DICF.cpp247 uint64_t addA = getAddend<ELFT>(ra[i]); in constantEq()
248 uint64_t addB = getAddend<ELFT>(rb[i]); in constantEq()
H A DInputSection.cpp422 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 DRelocations.cpp679 addend = getAddend<ELFT>(rel); in computeAddend()
/freebsd-13.1/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp129 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 DRelocationResolver.cpp19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1620 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 DRuntimeDyldELF.cpp705 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 DPPC64.cpp299 return {dyn_cast<Defined>(&sym), getAddend<ELFT>(relas[index])}; in getRelaTocSymAndAddend()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h201 Expected<int64_t> getAddend() const { in getAddend() function