Lines Matching refs:ELFRelocation
95 class ELFRelocation { class
101 ELFRelocation(unsigned type);
103 ~ELFRelocation();
107 static unsigned RelocType32(const ELFRelocation &rel);
109 static unsigned RelocType64(const ELFRelocation &rel);
111 static unsigned RelocSymbol32(const ELFRelocation &rel);
113 static unsigned RelocSymbol64(const ELFRelocation &rel);
115 static unsigned RelocOffset32(const ELFRelocation &rel);
117 static unsigned RelocOffset64(const ELFRelocation &rel);
119 static unsigned RelocAddend32(const ELFRelocation &rel);
121 static unsigned RelocAddend64(const ELFRelocation &rel);
129 ELFRelocation::ELFRelocation(unsigned type) { in ELFRelocation() function in __anon540601cc0111::ELFRelocation
140 ELFRelocation::~ELFRelocation() { in ~ELFRelocation()
147 bool ELFRelocation::Parse(const lldb_private::DataExtractor &data, in Parse()
155 unsigned ELFRelocation::RelocType32(const ELFRelocation &rel) { in RelocType32()
162 unsigned ELFRelocation::RelocType64(const ELFRelocation &rel) { in RelocType64()
169 unsigned ELFRelocation::RelocSymbol32(const ELFRelocation &rel) { in RelocSymbol32()
176 unsigned ELFRelocation::RelocSymbol64(const ELFRelocation &rel) { in RelocSymbol64()
183 unsigned ELFRelocation::RelocOffset32(const ELFRelocation &rel) { in RelocOffset32()
190 unsigned ELFRelocation::RelocOffset64(const ELFRelocation &rel) { in RelocOffset64()
197 unsigned ELFRelocation::RelocAddend32(const ELFRelocation &rel) { in RelocAddend32()
204 unsigned ELFRelocation::RelocAddend64(const ELFRelocation &rel) { in RelocAddend64()
2437 ELFRelocation rel(rel_type); in ParsePLTRelocations()
2446 typedef unsigned (*reloc_info_fn)(const ELFRelocation &rel); in ParsePLTRelocations()
2451 reloc_type = ELFRelocation::RelocType32; in ParsePLTRelocations()
2452 reloc_symbol = ELFRelocation::RelocSymbol32; in ParsePLTRelocations()
2454 reloc_type = ELFRelocation::RelocType64; in ParsePLTRelocations()
2455 reloc_symbol = ELFRelocation::RelocSymbol64; in ParsePLTRelocations()
2571 ELFRelocation rel(rel_hdr->sh_type); in ApplyRelocations()
2574 typedef unsigned (*reloc_info_fn)(const ELFRelocation &rel); in ApplyRelocations()
2579 reloc_type = ELFRelocation::RelocType32; in ApplyRelocations()
2580 reloc_symbol = ELFRelocation::RelocSymbol32; in ApplyRelocations()
2582 reloc_type = ELFRelocation::RelocType64; in ApplyRelocations()
2583 reloc_symbol = ELFRelocation::RelocSymbol64; in ApplyRelocations()
2617 ELFRelocation::RelocOffset64(rel)); in ApplyRelocations()
2618 uint64_t val_offset = value + ELFRelocation::RelocAddend64(rel); in ApplyRelocations()
2629 value += ELFRelocation::RelocAddend32(rel); in ApplyRelocations()
2644 ELFRelocation::RelocOffset32(rel)); in ApplyRelocations()