Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DELFObjectFile.h52 friend class ELFRelocationRef; variable
203 class ELFRelocationRef : public RelocationRef {
205 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
224 const ELFRelocationRef *operator->() const {
225 return static_cast<const ELFRelocationRef *>(
229 const ELFRelocationRef &operator*() const {
230 return static_cast<const ELFRelocationRef &>(
/llvm-project-15.0.7/llvm/lib/Object/
H A DRelocationResolver.cpp34 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1219 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()