Lines Matching refs:ELFRela
125 bool IsRela() { return (reloc.is<ELFRela *>()); } in IsRela()
128 typedef llvm::PointerUnion<ELFRel *, ELFRela *> RelocUnion;
138 reloc = new ELFRela(); in ELFRelocation()
149 delete reloc.get<ELFRela *>(); in ~ELFRelocation()
157 return reloc.get<ELFRela *>()->Parse(data, offset); in Parse()
164 return ELFRela::RelocType32(*rel.reloc.get<ELFRela *>()); in RelocType32()
171 return ELFRela::RelocType64(*rel.reloc.get<ELFRela *>()); in RelocType64()
178 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela *>()); in RelocSymbol32()
185 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela *>()); in RelocSymbol64()
192 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset32()
199 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset64()
206 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend32()
213 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend64()