Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp128 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj()
138 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h58 friend class ELFRelocationRef; variable
228 class ELFRelocationRef : public RelocationRef {
230 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
249 const ELFRelocationRef *operator->() const {
250 return static_cast<const ELFRelocationRef *>(
254 const ELFRelocationRef &operator*() const {
255 return static_cast<const ELFRelocationRef &>(
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRelocationResolver.cpp33 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1231 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()