Searched refs:getAddend (Results 1 – 14 of 14) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/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 | 87 AddendT getAddend() const { return Addend; } in getAddend() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachO_arm64.cpp | 454 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixPLTEdge() 540 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() 558 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 566 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 572 assert((E.getKind() != GOTPage21 || E.getAddend() == 0) && in applyFixup() 575 (E.getTarget().getAddress() + E.getAddend()) & in applyFixup() 594 (E.getTarget().getAddress() + E.getAddend()) & 0xfff; in applyFixup() 608 assert(E.getAddend() == 0 && "GOTPAGEOF12 with non-zero addend"); in applyFixup() 623 assert(E.getAddend() == 0 && "LDRLiteral19 with non-zero addend"); in applyFixup() 644 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() [all …]
|
H A D | JITLink.cpp | 143 if (E.getAddend() != 0) in printEdge() 144 OS << " + " << E.getAddend(); in printEdge() 289 if (E.getAddend() >= 0) in dump() 290 OS << formatv("+{0:x8}", E.getAddend()); in dump() 292 OS << formatv("-{0:x8}", -E.getAddend()); in dump()
|
H A D | ELF_x86_64.cpp | 794 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 802 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 807 int64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() 812 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 820 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() 825 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() 833 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() 846 E.getTarget().getAddress() - GOTSymbol->getAddress() + E.getAddend(); in applyFixup()
|
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 | 461 assert(E.getAddend() == 0 && in fixPLTEdge() 524 E.setAddend(E.getAddend() - 4); in optimizeMachO_x86_64_GOTAndStubs()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/ |
H A D | LLJITWithObjectLinkingLayerPlugin.cpp | 165 << ", addend = " << formatv("{0:x}", E.getAddend()) in printGraph()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | RelocationResolver.cpp | 19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
H A D | Object.cpp | 1615 static void getAddend(uint64_t &, const Elf_Rel_Impl<ELFT, false> &) {} in getAddend() function 1618 static void getAddend(uint64_t &ToSet, const Elf_Rel_Impl<ELFT, true> &Rela) { in getAddend() function 1628 getAddend(ToAdd.Addend, Rel); in initRelocations()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 705 if (auto AddendOrErr = i->getAddend()) in findOPDEntrySection() 1181 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
H A D | ELFObjectFile.h | 201 Expected<int64_t> getAddend() const { in getAddend() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | JITLink.rst | 294 * ``Addend``, accessible via ``getAddend``, is a constant whose interpretation
|