Home
last modified time | relevance | path

Searched refs:ELFRela (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.h346 struct ELFRela { struct
351 ELFRela(); argument
370 static unsigned RelocType32(const ELFRela &rela) { in RelocType32() argument
375 static unsigned RelocType64(const ELFRela &rela) { in RelocType64() argument
381 static unsigned RelocSymbol32(const ELFRela &rela) { in RelocSymbol32() argument
387 static unsigned RelocSymbol64(const ELFRela &rela) { in RelocSymbol64() argument
DELFHeader.cpp420 ELFRela::ELFRela() { memset(this, 0, sizeof(ELFRela)); } in ELFRela() function in ELFRela
422 bool ELFRela::Parse(const lldb_private::DataExtractor &data, in Parse()
DObjectFileELF.cpp122 typedef llvm::PointerUnion<ELFRel *, ELFRela *> RelocUnion;
131 reloc = new ELFRela(); in ELFRelocation()
142 delete reloc.get<ELFRela *>(); in ~ELFRelocation()
150 return reloc.get<ELFRela *>()->Parse(data, offset); in Parse()
157 return ELFRela::RelocType32(*rel.reloc.get<ELFRela *>()); in RelocType32()
164 return ELFRela::RelocType64(*rel.reloc.get<ELFRela *>()); in RelocType64()
171 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela *>()); in RelocSymbol32()
178 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela *>()); in RelocSymbol64()
185 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset32()
192 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset64()
[all …]