Searched refs:ELFRel (Results 1 – 3 of 3) sorted by relevance
305 struct ELFRel { struct309 ELFRel(); argument328 static unsigned RelocType32(const ELFRel &rel) { return rel.r_info & 0x0ff; } in RelocType32() argument331 static unsigned RelocType64(const ELFRel &rel) { in RelocType64() argument337 static unsigned RelocSymbol32(const ELFRel &rel) { return rel.r_info >> 8; } in RelocSymbol32() argument341 static unsigned RelocSymbol64(const ELFRel &rel) { return rel.r_info >> 32; } in RelocSymbol64() argument
414 ELFRel::ELFRel() { memset(this, 0, sizeof(ELFRel)); } in ELFRel() function in ELFRel416 bool ELFRel::Parse(const lldb_private::DataExtractor &data, in Parse()
128 typedef llvm::PointerUnion<ELFRel *, ELFRela *> RelocUnion;136 reloc = new ELFRel(); in ELFRelocation()141 reloc = static_cast<ELFRel *>(nullptr); in ELFRelocation()146 if (reloc.is<ELFRel *>()) in ~ELFRelocation()147 delete reloc.get<ELFRel *>(); in ~ELFRelocation()154 if (reloc.is<ELFRel *>()) in Parse()155 return reloc.get<ELFRel *>()->Parse(data, offset); in Parse()161 if (rel.reloc.is<ELFRel *>()) in RelocType32()162 return ELFRel::RelocType32(*rel.reloc.get<ELFRel *>()); in RelocType32()168 if (rel.reloc.is<ELFRel *>()) in RelocType64()[all …]