Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRelocationResolver.cpp19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h86 AddendT getAddend() const { return Addend; } in getAddend() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFObjectFile.h198 Expected<int64_t> getAddend() const { in getAddend() function