Lines Matching refs:ObjectFileELF
382 const uint32_t ObjectFileELF::g_core_uuid_magic(0xE210C);
387 void ObjectFileELF::Initialize() { in Initialize()
393 void ObjectFileELF::Terminate() { in Terminate()
397 lldb_private::ConstString ObjectFileELF::GetPluginNameStatic() { in GetPluginNameStatic()
402 const char *ObjectFileELF::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
406 ObjectFile *ObjectFileELF::CreateInstance(const lldb::ModuleSP &module_sp, in CreateInstance()
439 std::unique_ptr<ObjectFileELF> objfile_ap(new ObjectFileELF( in CreateInstance()
449 ObjectFile *ObjectFileELF::CreateMemoryInstance( in CreateMemoryInstance()
457 std::unique_ptr<ObjectFileELF> objfile_ap( in CreateMemoryInstance()
458 new ObjectFileELF(module_sp, data_sp, process_sp, header_addr)); in CreateMemoryInstance()
468 bool ObjectFileELF::MagicBytesMatch(DataBufferSP &data_sp, in MagicBytesMatch()
542 uint32_t ObjectFileELF::CalculateELFNotesSegmentsCRC32( in CalculateELFNotesSegmentsCRC32()
631 size_t ObjectFileELF::GetModuleSpecifications( in GetModuleSpecifications()
639 if (ObjectFileELF::MagicBytesMatch(data_sp, 0, data_sp->GetByteSize())) { in GetModuleSpecifications()
762 lldb_private::ConstString ObjectFileELF::GetPluginName() { in GetPluginName()
766 uint32_t ObjectFileELF::GetPluginVersion() { return m_plugin_version; } in GetPluginVersion()
771 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
784 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
795 ObjectFileELF::~ObjectFileELF() {} in ~ObjectFileELF()
797 bool ObjectFileELF::IsExecutable() const { in IsExecutable()
801 bool ObjectFileELF::SetLoadAddress(Target &target, lldb::addr_t value, in SetLoadAddress()
847 ByteOrder ObjectFileELF::GetByteOrder() const { in GetByteOrder()
855 uint32_t ObjectFileELF::GetAddressByteSize() const { in GetAddressByteSize()
859 AddressClass ObjectFileELF::GetAddressClass(addr_t file_addr) { in GetAddressClass()
887 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollIter &I) { in SectionIndex()
891 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollConstIter &I) const { in SectionIndex()
895 bool ObjectFileELF::ParseHeader() { in ParseHeader()
900 bool ObjectFileELF::GetUUID(lldb_private::UUID *uuid) { in GetUUID()
945 lldb_private::FileSpecList ObjectFileELF::GetDebugSymbolFilePaths() { in GetDebugSymbolFilePaths()
955 uint32_t ObjectFileELF::GetDependentModules(FileSpecList &files) { in GetDependentModules()
967 Address ObjectFileELF::GetImageInfoAddress(Target *target) { in GetImageInfoAddress()
1034 lldb_private::Address ObjectFileELF::GetEntryPointAddress() { in GetEntryPointAddress()
1051 Address ObjectFileELF::GetBaseAddress() { in GetBaseAddress()
1066 size_t ObjectFileELF::ParseDependentModules() { in ParseDependentModules()
1127 size_t ObjectFileELF::GetProgramHeaderInfo(ProgramHeaderColl &program_headers, in GetProgramHeaderInfo()
1164 bool ObjectFileELF::ParseProgramHeaders() { in ParseProgramHeaders()
1169 ObjectFileELF::RefineModuleDetailsFromNote(lldb_private::DataExtractor &data, in RefineModuleDetailsFromNote()
1412 void ObjectFileELF::ParseARMAttributes(DataExtractor &data, uint64_t length, in ParseARMAttributes()
1485 size_t ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl §ion_headers, in GetSectionHeaderInfo()
1712 ObjectFileELF::StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const { in StripLinkerSymbolAnnotations()
1720 size_t ObjectFileELF::ParseSectionHeaders() { in ParseSectionHeaders()
1726 const ObjectFileELF::ELFSectionHeaderInfo *
1727 ObjectFileELF::GetSectionHeaderByIndex(lldb::user_id_t id) { in GetSectionHeaderByIndex()
1737 lldb::user_id_t ObjectFileELF::GetSectionIndexByName(const char *name) { in GetSectionIndexByName()
1785 SectionType ObjectFileELF::GetSectionType(const ELFSectionHeaderInfo &H) const { in GetSectionType()
1940 void ObjectFileELF::CreateSections(SectionList &unified_section_list) { in CreateSections()
2044 unsigned ObjectFileELF::ParseSymbols(Symtab *symtab, user_id_t start_id, in ParseSymbols()
2382 unsigned ObjectFileELF::ParseSymbolTable(Symtab *symbol_table, in ParseSymbolTable()
2388 ObjectFileELF *obj_file_elf = in ParseSymbolTable()
2389 static_cast<ObjectFileELF *>(symtab->GetObjectFile()); in ParseSymbolTable()
2425 size_t ObjectFileELF::ParseDynamicSymbols() { in ParseDynamicSymbols()
2458 const ELFDynamic *ObjectFileELF::FindDynamicSymbol(unsigned tag) { in FindDynamicSymbol()
2474 unsigned ObjectFileELF::PLTRelocationType() { in PLTRelocationType()
2594 ObjectFileELF::ParseTrampolineSymbols(Symtab *symbol_table, user_id_t start_id, in ParseTrampolineSymbols()
2664 unsigned ObjectFileELF::ApplyRelocations( in ApplyRelocations()
2757 unsigned ObjectFileELF::RelocateDebugSections(const ELFSectionHeader *rel_hdr, in RelocateDebugSections()
2804 Symtab *ObjectFileELF::GetSymtab() { in GetSymtab()
2890 void ObjectFileELF::RelocateSection(lldb_private::Section *section) in RelocateSection()
2931 void ObjectFileELF::ParseUnwindSymbols(Symtab *symbol_table, in ParseUnwindSymbols()
2984 bool ObjectFileELF::IsStripped() { in IsStripped()
2995 void ObjectFileELF::Dump(Stream *s) { in Dump()
3033 void ObjectFileELF::DumpELFHeader(Stream *s, const ELFHeader &header) { in DumpELFHeader()
3070 void ObjectFileELF::DumpELFHeader_e_type(Stream *s, elf_half e_type) { in DumpELFHeader_e_type()
3097 void ObjectFileELF::DumpELFHeader_e_ident_EI_DATA(Stream *s, in DumpELFHeader_e_ident_EI_DATA()
3119 void ObjectFileELF::DumpELFProgramHeader(Stream *s, in DumpELFProgramHeader()
3137 void ObjectFileELF::DumpELFProgramHeader_p_type(Stream *s, elf_word p_type) { in DumpELFProgramHeader_p_type()
3160 void ObjectFileELF::DumpELFProgramHeader_p_flags(Stream *s, elf_word p_flags) { in DumpELFProgramHeader_p_flags()
3173 void ObjectFileELF::DumpELFProgramHeaders(Stream *s) { in DumpELFProgramHeaders()
3185 ObjectFileELF::DumpELFProgramHeader(s, H.value()); in DumpELFProgramHeaders()
3195 void ObjectFileELF::DumpELFSectionHeader(Stream *s, in DumpELFSectionHeader()
3213 void ObjectFileELF::DumpELFSectionHeader_sh_type(Stream *s, elf_word sh_type) { in DumpELFSectionHeader_sh_type()
3243 void ObjectFileELF::DumpELFSectionHeader_sh_flags(Stream *s, in DumpELFSectionHeader_sh_flags()
3257 void ObjectFileELF::DumpELFSectionHeaders(Stream *s) { in DumpELFSectionHeaders()
3273 ObjectFileELF::DumpELFSectionHeader(s, *I); in DumpELFSectionHeaders()
3280 void ObjectFileELF::DumpDependentModules(lldb_private::Stream *s) { in DumpDependentModules()
3292 ArchSpec ObjectFileELF::GetArchitecture() { in GetArchitecture()
3318 ObjectFile::Type ObjectFileELF::CalculateType() { in CalculateType()
3346 ObjectFile::Strata ObjectFileELF::CalculateStrata() { in CalculateStrata()
3383 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3401 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3442 llvm::ArrayRef<ELFProgramHeader> ObjectFileELF::ProgramHeaders() { in ProgramHeaders()
3447 DataExtractor ObjectFileELF::GetSegmentData(const ELFProgramHeader &H) { in GetSegmentData()
3451 bool ObjectFileELF::AnySegmentHasPhysicalAddress() { in AnySegmentHasPhysicalAddress()
3460 ObjectFileELF::GetLoadableData(Target &target) { in GetLoadableData()