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.h61 friend class ELFRelocationRef; variable
231 class ELFRelocationRef : public RelocationRef {
233 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
252 const ELFRelocationRef *operator->() const {
253 return static_cast<const ELFRelocationRef *>(
257 const ELFRelocationRef &operator*() const {
258 return static_cast<const ELFRelocationRef &>(
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRelocationResolver.cpp32 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1603 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()