Home
last modified time | relevance | path

Searched refs:ELFRelocationRef (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/XRay/
H A DInstrumentationMap.cpp127 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj()
137 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
/openbsd/gnu/llvm/llvm/include/llvm/Object/
H A DELFObjectFile.h52 friend class ELFRelocationRef; variable
204 class ELFRelocationRef : public RelocationRef {
206 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
225 const ELFRelocationRef *operator->() const {
226 return static_cast<const ELFRelocationRef *>(
230 const ELFRelocationRef &operator*() const {
231 return static_cast<const ELFRelocationRef &>(
/openbsd/gnu/llvm/llvm/lib/Object/
H A DRelocationResolver.cpp34 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1219 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()