Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h57 friend class ELFRelocationRef; variable
214 class ELFRelocationRef : public RelocationRef {
216 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
235 const ELFRelocationRef *operator->() const {
236 return static_cast<const ELFRelocationRef *>(
240 const ELFRelocationRef &operator*() const {
241 return static_cast<const ELFRelocationRef &>(
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DRelocationResolver.cpp33 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1224 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()