Home
last modified time | relevance | path

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

12

/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DMachO_arm64.cpp451 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixExternalBranchEdge()
557 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
575 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
583 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
589 assert((E.getKind() != GOTPage21 || E.getAddend() == 0) && in applyFixup()
592 (E.getTarget().getAddress() + E.getAddend()) & in applyFixup()
611 (E.getTarget().getAddress() + E.getAddend()) & 0xfff; in applyFixup()
625 assert(E.getAddend() == 0 && "GOTPAGEOF12 with non-zero addend"); in applyFixup()
640 assert(E.getAddend() == 0 && "LDRLiteral19 with non-zero addend"); in applyFixup()
661 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
[all …]
DMachO_x86_64.cpp415 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixExternalBranchEdge()
590 E.getTarget().getAddress() - (FixupAddress + 4) + E.getAddend(); in applyFixup()
599 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
608 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
620 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
633 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
635 Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup()
647 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
DJITLink.cpp168 if (E.getAddend() != 0) in printEdge()
169 OS << " + " << E.getAddend(); in printEdge()
DEHFrameSupportImpl.h64 EdgeTarget(const Edge &E) : Target(&E.getTarget()), Addend(E.getAddend()) {} in EdgeTarget()
DELF_x86_64.cpp643 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup()
648 int64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_arm64.cpp427 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixExternalBranchEdge()
539 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
557 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
564 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
570 assert(E.getAddend() == 0 && "PAGE21/GOTPAGE21 with non-zero addend"); in applyFixup()
589 assert(E.getAddend() == 0 && "PAGEOFF12 with non-zero addend"); in applyFixup()
604 assert(E.getAddend() == 0 && "GOTPAGEOF12 with non-zero addend"); in applyFixup()
619 assert(E.getAddend() == 0 && "LDRLiteral19 with non-zero addend"); in applyFixup()
640 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
642 Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup()
DMachO_x86_64.cpp390 assert(E.getAddend() == 0 && "Branch32 edge has non-zero addend?"); in fixExternalBranchEdge()
479 E.getTarget().getAddress() - (FixupAddress + 4) + E.getAddend(); in applyFixup()
488 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
497 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
509 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
522 Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup()
524 Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup()
536 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup()
DEHFrameSupportImpl.h64 EdgeTarget(const Edge &E) : Target(&E.getTarget()), Addend(E.getAddend()) {} in EdgeTarget()
DJITLink.cpp142 << EdgeKindName << " -> " << E.getTarget() << " + " << E.getAddend(); in printEdge()
/external/llvm-project/lld/ELF/
DRelocations.h191 static inline int64_t getAddend(const typename ELFT::Rel &rel) { in getAddend() function
195 static inline int64_t getAddend(const typename ELFT::Rela &rel) { in getAddend() function
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()
DDWARF.cpp130 d.p = getAddend<ELFT>(rel); in findAux()
DICF.cpp247 uint64_t addA = getAddend<ELFT>(ra[i]); in constantEq()
248 uint64_t addB = getAddend<ELFT>(rb[i]); in constantEq()
DInputSection.cpp429 p->r_addend = getAddend<ELFT>(rel); in copyRelocations()
471 int64_t addend = getAddend<ELFT>(rel); in copyRelocations()
887 int64_t addend = getAddend<ELFT>(rel); in relocateNonAlloc()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DInstrumentationMap.cpp112 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj()
117 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
/external/llvm-project/llvm/lib/XRay/
DInstrumentationMap.cpp129 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj()
139 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
/external/llvm/include/llvm/Object/
DRelocVisitor.h250 ErrorOr<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRelocationResolver.cpp19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/external/llvm-project/llvm/lib/Object/
DRelocationResolver.cpp19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp856 if (auto AddendOrErr = i->getAddend()) in findOPDEntrySection()
1196 ErrorOr<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend(); in processRelocationRef()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.cpp1607 static void getAddend(uint64_t &, const Elf_Rel_Impl<ELFT, false> &) {} in getAddend() function
1610 static void getAddend(uint64_t &ToSet, const Elf_Rel_Impl<ELFT, true> &Rela) { in getAddend() function
1620 getAddend(ToAdd.Addend, Rel); in initRelocations()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp647 if (auto AddendOrErr = i->getAddend()) in findOPDEntrySection()
1122 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp640 if (auto AddendOrErr = i->getAddend()) in findOPDEntrySection()
1115 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()
/external/llvm-project/lld/ELF/Arch/
DPPC64.cpp299 return {dyn_cast<Defined>(&sym), getAddend<ELFT>(relas[index])}; in getRelaTocSymAndAddend()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h87 AddendT getAddend() const { return Addend; } in getAddend() function

12